ETH Price: $2,053.12 (+0.21%)

Token

Bullets (BLT)

Overview

Max Total Supply

10,000,000 BLT

Holders

37

Total Transfers

-

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

Click here to update the token information / general information
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
BulletERC20

Compiler Version
v0.8.17+commit.8df45f5f

ZkSolc Version
v1.3.5

Optimization Enabled:
Yes with Mode 3

Other Settings:
default evmVersion, MIT license
File 1 of 8 : BulletERC20.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

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

contract BulletERC20 is ERC20, Pausable, Ownable, ERC20Capped {
    constructor(string memory name, string memory symbol, uint256 cap)
        ERC20(name, symbol)
        ERC20Capped(cap) 
        {}

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function mint(address to, uint256 amount) public onlyOwner {
        _mint(to, amount);
    }

    function burn(uint256 amount) public {
        _burn(msg.sender, amount);
    }

    function _mint(address to, uint256 amount) internal override(ERC20, ERC20Capped) {
        super._mint(to, amount);
    }

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

File 2 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../ERC20.sol";

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

Settings
{
  "optimizer": {
    "enabled": true
  }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"cap","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[{"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":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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"}]

9c4d535b000000000000000000000000000000000000000000000000000000000000000001000219d9ca50fc3c413784d78a79c88c5a7da9a92f05daab28c88d8efabc1e000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000084595161401484a000000000000000000000000000000000000000000000000000000000000000000000742756c6c657473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003424c540000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x0002000000000002000600000000000200010000000103550000006001100270000001d30010019d00000001012001900000006d0000c13d0000008001000039000000400010043f0000000001000031000000040110008c000000ac0000413d0000000101000367000000000101043b000000e001100270000001df0210009c000002750000613d000001e00210009c000002a10000613d000001e10210009c000002bf0000613d000001e20210009c000002d70000613d000001e30210009c000000e50000613d000001e40210009c000000fc0000613d000001e50210009c0000011b0000613d000001e60210009c0000031c0000613d000001e70210009c0000014e0000613d000001e80210009c000001790000613d000001e90210009c000003400000613d000001ea0210009c000001a20000613d000001eb0210009c0000035b0000613d000001ec0210009c000001c00000613d000001ed0210009c000003810000613d000001ee0210009c0000039b0000613d000001ef0210009c000001ed0000613d000001f00210009c0000022c0000613d000001f10210009c0000024a0000613d000001f20110009c000000ac0000c13d0000000001000416000000000110004c000000ac0000c13d000000040100008a0000000001100031000001d402000041000000000310004c00000000030000190000000003024019000001d401100197000000000410004c000000000200a019000001d40110009c00000000010300190000000001026019000000000110004c000000ac0000c13d0000000303000039000000000203041a000000010420019000000001012002700000007f0510018f00000000010560190000001f0510008c00000000050000190000000105002039000000000552013f00000001055001900000041e0000c13d000000800010043f000000000440004c000004ce0000c13d000001000300008a000000000232016f000000a00020043f000000000110004c000000c004000039000000a0040060390000001f01400039000000200200008a000000000221016f0000020801200041000002090110009c0000040b0000413d000000400020043f0000000001020019000600000001001d00000080020000390747061b0000040f0000000603000029000000000231004900000000010300190000000003000019074705ba0000040f000000a001000039000000400010043f0000000001000416000000000110004c000000ac0000c13d0000000001000031000600000001001d074705cd0000040f00000006080000290000001f0280018f000000010300036700000000070100190000000501800272000000840000613d000000000400001900000005054002100000000006570019000000000553034f000000000505043b00000000005604350000000104400039000000000514004b0000007c0000413d000000000420004c000000930000613d0000000501100210000000000313034f00000000011700190000000302200210000000000401043300000000042401cf000000000424022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000242019f0000000000210435000001d401000041000000600280008c00000000020000190000000002014019000001d403800197000000000430004c000000000100a019000001d40330009c000000000102c019000000000110004c000000ac0000c13d0000000001070433000001d50210009c000000ac0000213d00000000028700190000000001710019000600000002001d000500000007001d074705e20000040f0000000504000029000000000301001900000020014000390000000001010433000001d50210009c000000af0000a13d00000000010000190000000002000019074705c40000040f00000000014100190000000602000029000600000003001d074705e20000040f000000060800002900000005020000290000004002200039000000000402043300000000050100190000000007080433000001d60170009c0000040b0000813d0000000306000039000000000106041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b0000041e0000c13d000000200130008c000200000004001d000500000005001d000400000006001d000300000007001d000003d60000413d000000000060043500000020020000390000000001000019000100000003001d074705940000040f00000006080000290000000307000029000000040600002900000005050000290000001f027000390000000502200270000000200370008c0000000003020019000000000300401900000001020000290000001f02200039000000050220027000000000022100190000000001310019000000000321004b000003d60000813d000000000001041b0000000101100039000000e00000013d0000000001000416000000000110004c000000ac0000c13d000000040100008a0000000001100031000001d402000041000000000310004c00000000030000190000000003024019000001d401100197000000000410004c000000000200a019000001d40110009c00000000010300190000000001026019000000000110004c000000ac0000c13d000000400100043d0000001202000039000000000021043500000020020000390000000003000019074705ba0000040f0000000001000416000000000110004c000000ac0000c13d000000040100008a0000000001100031000001d402000041000000000310004c00000000030000190000000003024019000001d401100197000000000410004c000000000200a019000001d40110009c00000000010300190000000001026019000000000110004c000000ac0000c13d000000400100043d000600000001001d00000200010000410000000000100439000000000100041200000004001004430000002400000443074705ab0000040f00000006030000290000000000130435000000200200003900000000010300190000000003000019074705ba0000040f0000000001000416000000000110004c000000ac0000c13d000000040100008a0000000001100031000001d402000041000000400310008c00000000030000190000000003024019000001d401100197000000000410004c000000000200a019000001d40110009c00000000010300190000000001026019000000000110004c000000ac0000c13d074706310000040f0000000002000411000400000002001d00000000002004350000000102000039000500000002001d000000200020043f000600000001001d0000004002000039000300000002001d0000000001000019074705940000040f0000000602000029000001da022001970000000000200435000000200010043f00000000010000190000000302000029074705940000040f00000024020000390000000102200367000000000202043b000000000101041a074706580000040f000000000301001900000004010000290000000602000029074706d90000040f000000400100043d0000000502000029000000000021043500000020020000390000000003000019074705ba0000040f0000000001000416000000000110004c000000ac0000c13d000000040100008a0000000001100031000001d402000041000000400310008c00000000030000190000000003024019000001d401100197000000000410004c000000000200a019000001d40110009c00000000010300190000000001026019000000000110004c000000ac0000c13d00000001010003670000000402100370000000000302043b000001da0230009c000000ac0000213d000500000003001d0000002401100370000000000101043b000600000001001d074706430000040f0000000202000039000000000102041a00000006030000290000000003310019000000000113004b000000000100001900000001010040390000000101100190000004d90000613d000002030100004100000000001004350000001101000039000000040010043f00000024020000390000000001000019074705c40000040f0000000001000416000000000110004c000000ac0000c13d000000040100008a0000000001100031000001d402000041000000200310008c00000000030000190000000003024019000001d401100197000000000410004c000000000200a019000001d40110009c00000000010300190000000001026019000000000110004c000000ac0000c13d00000004010000390000000101100367000000000201043b0000000001000411000600000001001d000000000110004c000004560000c13d000000400100043d0000006402100039000001fe0300004100000000003204350000004402100039000001ff030000410000000000320435000000240210003900000021030000390000000000320435000001de0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039074705c40000040f0000000001000416000000000110004c000000ac0000c13d000000040100008a0000000001100031000001d402000041000000200310008c00000000030000190000000003024019000001d401100197000000000410004c000000000200a019000001d40110009c00000000010300190000000001026019000000000110004c000000ac0000c13d074706310000040f000001da011001970000000000100435000000200000043f00000040020000390000000001000019074705940000040f000000000201041a000000400100043d000000000021043500000020020000390000000003000019074705ba0000040f0000000001000416000000000110004c000000ac0000c13d000000040100008a0000000001100031000001d402000041000000000310004c00000000030000190000000003024019000001d401100197000000000410004c000000000200a019000001d40110009c00000000010300190000000001026019000000000110004c000000ac0000c13d074706430000040f0747072a0000040f0000000501000039000000000201041a000001000300008a000000000232016f00000001022001bf000000000021041b0000000001000411000000400200043d0000000000120435000001d3010000410000000003000414000001d30430009c0000000003018019000001d30420009c00000000010240190000004001100210000000c002300210000000000112019f000001f9011001c70000800d020000390000000103000039000001fa040000410747073d0000040f0000000101200190000005900000c13d000000ac0000013d0000000001000416000000000110004c000000ac0000c13d000000040100008a0000000001100031000001d402000041000000400310008c00000000030000190000000003024019000001d401100197000000000410004c000000000200a019000001d40110009c00000000010300190000000001026019000000000110004c000000ac0000c13d00000001010003670000000402100370000000000202043b000600000002001d000001da0220009c000000ac0000213d0000002401100370000000000101043b000500000001001d0000000001000411000200000001001d00000000001004350000000101000039000300000001001d000000200010043f0000004002000039000400000002001d0000000001000019074705940000040f00000006020000290000000000200435000000200010043f00000000010000190000000402000029074705940000040f0000000503000029000000000101041a000000000231004b000004f20000813d000000400100043d0000006402100039000001f60300004100000000003204350000004402100039000001f7030000410000000000320435000000240210003900000025030000390000000000320435000001de0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039074705c40000040f0000000001000416000000000110004c000000ac0000c13d000000040100008a0000000001100031000001d402000041000000400310008c00000000030000190000000003024019000001d401100197000000000410004c000000000200a019000001d40110009c00000000010300190000000001026019000000000110004c000000ac0000c13d074706310000040f00000024020000390000000102200367000000000302043b00000000020100190000000001000411074706660000040f0000000102000039000000400100043d000000000021043500000020020000390000000003000019074705ba0000040f0000000001000416000000000110004c000000ac0000c13d000000040100008a0000000001100031000001d402000041000000400310008c00000000030000190000000003024019000001d401100197000000000410004c000000000200a019000001d40110009c00000000010300190000000001026019000000000110004c000000ac0000c13d074706310000040f000600000001001d0747063a0000040f0000000602000029000001da0220019700000000002004350000000102000039000000200020043f000500000001001d0000004002000039000600000002001d0000000001000019074705940000040f0000000502000029000001da022001970000000000200435000000200010043f00000000010000190000000602000029074705940000040f000000000201041a000000400100043d000000000021043500000020020000390000000003000019074705ba0000040f0000000001000416000000000110004c000000ac0000c13d000000040100008a0000000001100031000001d402000041000000200310008c00000000030000190000000003024019000001d401100197000000000410004c000000000200a019000001d40110009c00000000010300190000000001026019000000000110004c000000ac0000c13d00000004010000390000000101100367000000000201043b000001da0120009c000000ac0000213d000600000002001d074706430000040f0000000606000029000000000160004c000005200000c13d000000400100043d0000006402100039000001f40300004100000000003204350000004402100039000001f5030000410000000000320435000000240210003900000026030000390000000000320435000001de0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039074705c40000040f0000000001000416000000000110004c000000ac0000c13d000000040100008a0000000001100031000001d402000041000000400310008c00000000030000190000000003024019000001d401100197000000000410004c000000000200a019000001d40110009c00000000010300190000000001026019000000000110004c000000ac0000c13d074706310000040f00000024020000390000000102200367000000000302043b00000000020100190000000001000411074706d90000040f0000000102000039000000400100043d000000000021043500000020020000390000000003000019074705ba0000040f0000000001000416000000000110004c000000ac0000c13d000000040100008a0000000001100031000001d402000041000000000310004c00000000030000190000000003024019000001d401100197000000000410004c000000000200a019000001d40110009c00000000010300190000000001026019000000000110004c000000ac0000c13d0000000201000039000000000201041a000000400100043d000000000021043500000020020000390000000003000019074705ba0000040f0000000001000416000000000110004c000000ac0000c13d000000040100008a0000000001100031000001d402000041000000600310008c00000000030000190000000003024019000001d401100197000000000410004c000000000200a019000001d40110009c00000000010300190000000001026019000000000110004c000000ac0000c13d00000001010003670000000402100370000000000302043b000001da0230009c000000ac0000213d0000002402100370000000000402043b000001da0240009c000000ac0000213d000200000004001d0000004401100370000000000101043b000500000001001d00000000003004350000000101000039000600000001001d000000200010043f0000004002000039000300000002001d0000000001000019000400000003001d074705940000040f0000000002000411000100000002001d0000000000200435000000200010043f00000000010000190000000302000029074705940000040f000000000101041a000000010200008a000000000221004b000005640000613d000000060200002900000004040000290000000502000029000000000221004b0000055e0000813d000000400100043d00000044021000390000020603000041000000000032043500000024021000390000001d030000390000000000320435000001de0200004100000000002104350000000402100039000000200300003900000000003204350000006402000039074705c40000040f0000000001000416000000000110004c000000ac0000c13d000000040100008a0000000001100031000001d402000041000000000310004c00000000030000190000000003024019000001d401100197000000000410004c000000000200a019000001d40110009c00000000010300190000000001026019000000000110004c000000ac0000c13d074706430000040f0000000501000039000000000201041a000000ff03200190000004730000c13d000000400100043d000000440210003900000205030000410000000000320435000000240210003900000014030000390000000000320435000001de0200004100000000002104350000000402100039000000200300003900000000003204350000006402000039074705c40000040f0000000001000416000000000110004c000000ac0000c13d000000040100008a0000000001100031000001d402000041000000000310004c00000000030000190000000003024019000001d401100197000000000410004c000000000200a019000001d40110009c00000000010300190000000001026019000000000110004c000000ac0000c13d0000000501000039000000000101041a000000ff011001900000000002000019000000010200c039000000400100043d000000000021043500000020020000390000000003000019074705ba0000040f0000000001000416000000000110004c000000ac0000c13d000000040100008a0000000001100031000001d402000041000000000310004c00000000030000190000000003024019000001d401100197000000000410004c000000000200a019000001d40110009c00000000010300190000000001026019000000000110004c000000ac0000c13d074706430000040f0000000501000039000000000201041a000001f303200197000000000031041b000001d3010000410000000003000414000001d30430009c0000000001034019000000c001100210000001d9011001c70000000802200270000001da052001970000800d020000390000000303000039000001db0400004100000000060000190747073d0000040f0000000101200190000005900000c13d000000ac0000013d0000000001000416000000000110004c000000ac0000c13d000000040100008a0000000001100031000001d402000041000000000310004c00000000030000190000000003024019000001d401100197000000000410004c000000000200a019000001d40110009c00000000010300190000000001026019000000000110004c000000ac0000c13d0000000501000039000000000101041a0000000801100270000001da02100197000000400100043d000000000021043500000020020000390000000003000019074705ba0000040f0000000001000416000000000110004c000000ac0000c13d000000040100008a0000000001100031000001d402000041000000000310004c00000000030000190000000003024019000001d401100197000000000410004c000000000200a019000001d40110009c00000000010300190000000001026019000000000110004c000000ac0000c13d0000000404000039000000000304041a000000010530019000000001013002700000007f0210018f00000000010260190000001f0210008c00000000020000190000000102002039000000000223013f00000001022001900000041e0000c13d000000400200043d0000000000120435000000000550004c000005360000c13d000001000400008a000000000343016f00000020042000390000000000340435000000000110004c000000200300003900000000030060190000003f01300039000000200300008a000000000331016f0000000001230019000000000331004b00000000040000190000000104004039000001d50310009c0000040b0000213d00000001034001900000040b0000c13d000000400010043f000600000001001d0747061b0000040f0000000603000029000000000231004900000000010300190000000003000019074705ba0000040f0000001f0170008c000003ed0000a13d00000000006004350000002002000039000100000002001d0000000001000019074705940000040f0000000108000029000000060700002900000003060000290000000505000029000000200200008a000000000226016f0000000003000019000000000423004b0000000004780019000003f90000813d0000000004040433000000000041041b000000200330003900000020088000390000000101100039000003e40000013d000000000170004c0000000001000019000003f20000613d000000200180003900000000010104330000000302700210000000010300008a000000000223022f000000000232013f000000000221016f0000000101700210000004060000013d000000000262004b000004030000813d0000000302600210000000f80220018f000000010300008a000000000223022f000000000232013f0000000003040433000000000223016f000000000021041b000000010100003900000001026002100000000406000029000000000112019f000000000016041b0000000006050433000001d50160009c000004120000a13d000002030100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019074705c40000040f0000000404000039000000000104041a000000010210019000000001021002700000007f0320018f000000000302c0190000001f0230008c00000000020000190000000102002039000000000121013f0000000101100190000004250000613d000002030100004100000000001004350000002201000039000000040010043f00000024020000390000000001000019074705c40000040f000000200130008c000600000004001d000400000006001d000004400000413d000000000040043500000020020000390000000001000019000300000003001d074705940000040f0000000406000029000000060400002900000005050000290000001f026000390000000502200270000000200360008c0000000003020019000000000300401900000003020000290000001f02200039000000050220027000000000022100190000000001310019000000000321004b000004400000813d000000000001041b00000001011000390000043b0000013d0000001f0160008c0000048a0000a13d00000000004004350000002002000039000300000002001d0000000001000019074705940000040f000000030700002900000004060000290000000505000029000000200200008a000000000226016f0000000003000019000000000423004b0000000004570019000004960000813d0000000004040433000000000041041b0000002003300039000000200770003900000001011000390000044d0000013d000500000002001d0747072a0000040f00000006010000290000000000100435000000200000043f00000040020000390000000001000019074705940000040f0000000502000029000000000301041a000000000123004b000004fc0000813d000000400100043d0000006402100039000001fc0300004100000000003204350000004402100039000001fd030000410000000000320435000000240210003900000022030000390000000000320435000001de0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039074705c40000040f000001000300008a000000000232016f000000000021041b0000000001000411000000400200043d0000000000120435000001d3010000410000000003000414000001d30430009c0000000003018019000001d30420009c00000000010240190000004001100210000000c002300210000000000112019f000001f9011001c70000800d02000039000000010300003900000204040000410747073d0000040f0000000101200190000000ac0000613d000005900000013d000000000160004c00000000010000190000048f0000613d000000200150003900000000010104330000000302600210000000010300008a000000000223022f000000000232013f000000000221016f0000000101600210000004a30000013d000000000262004b000004a00000813d0000000302600210000000f80220018f000000010300008a000000000223022f000000000232013f0000000003040433000000000223016f000000000021041b000000010100003900000001026002100000000604000029000000000112019f000000000014041b00000000060004110000000801600210000001d7011001970000000502000039000000000302041a000001d804300197000000000141019f000000000012041b000001d301000041000000400200043d000600000002001d0000000002000414000001d30420009c0000000001024019000000c001100210000001d9011001c70000000802300270000001da052001970000800d020000390000000303000039000001db040000410747073d0000040f0000000101200190000000ac0000613d0000000202000029000000000120004c000005420000c13d00000006010000290000004403100039000001dd020000410000000000230435000000240310003900000015020000390000000000230435000001de0200004100000000002104350000000403100039000000200200003900000000002304350000006402000039074705c40000040f000000000030043500000207020000410000000003000019000000a004300039000000000513004b0000005d0000813d000000000502041a000000000054043500000020033000390000000102200039000004d10000013d000300000002001d00000200010000410000000000100439000000000100041200000004001004430000002400000443000400000003001d074705ab0000040f0000000403000029000000000113004b0000054d0000a13d000000400100043d000000440210003900000202030000410000000000320435000000240210003900000019030000390000000000320435000001de0200004100000000002104350000000402100039000000200300003900000000003204350000006402000039074705c40000040f000000000331004900000002010000290000000602000029074706d90000040f000000400100043d0000000302000029000000000021043500000020020000390000000003000019074705ba0000040f00000006010000290000000000100435000000200000043f00000040020000390000000001000019000400000003001d074705940000040f000000050300002900000004020000290000000002320049000000000021041b0000000201000039000000000201041a0000000002320049000000000021041b000000400100043d0000000000310435000001d3020000410000000003000414000001d30430009c0000000003028019000001d30410009c00000000010280190000004001100210000000c002300210000000000112019f000001f9011001c70000800d020000390000000303000039000001fb04000041000000060500002900000000060000190747073d0000040f0000000101200190000005900000c13d000000ac0000013d0000000801600210000001d7011001970000000502000039000000000302041a000001f304300197000000000114019f000000000012041b000001d3010000410000000002000414000001d30420009c0000000001024019000000c001100210000001d9011001c70000000802300270000001da052001970000800d020000390000000303000039000001db040000410747073d0000040f0000000101200190000005900000c13d000000ac0000013d0000000000400435000001f80400004100000020052000390000000003000019000000000613004b000003c30000813d0000000006350019000000000704041a0000000000760435000000200330003900000001044000390000053a0000013d000000800020043f00000140000004430000016000200443000000200100003900000100001004430000000101000039000001200010044300000100010000390000008002000039000001dc03000041074705ba0000040f0000000502000029000000000120004c0000056e0000c13d000000400100043d00000044021000390000020103000041000000000032043500000024021000390000001f030000390000000000320435000001de0200004100000000002104350000000402100039000000200300003900000000003204350000006402000039074705c40000040f0000000502000029000000000321004900000000010400190000000102000029074706d90000040f0000000601000029000000040100002900000002020000290000000503000029074706660000040f000000400100043d0000000602000029000000000021043500000020020000390000000003000019074705ba0000040f0747072a0000040f00000003010000290000000402000029000000000021041b00000005010000290000000000100435000000200000043f00000040020000390000000001000019074705940000040f000000000201041a00000006030000290000000002320019000000000021041b000000400100043d0000000000310435000001d3020000410000000003000414000001d30430009c0000000003028019000001d30410009c00000000010280190000004001100210000000c002300210000000000112019f000001f9011001c70000800d020000390000000303000039000001fb04000041000000000500001900000005060000290747073d0000040f0000000101200190000000ac0000613d000000000100001900000000020000190000000003000019074705ba0000040f000001d303000041000001d30410009c00000000010380190000004001100210000001d30420009c00000000020380190000006002200210000000000112019f0000000002000414000001d30420009c0000000002038019000000c002200210000000000112019f000001d9011001c70000801002000039074707420000040f0000000102200190000005a80000613d000000000101043b000000000001042d00000000010000190000000002000019074705c40000040f000001d3010000410000000002000414000001d30320009c0000000001024019000000c0011002100000020a011001c70000800502000039074707420000040f0000000102200190000005b70000613d000000000101043b000000000001042d00000000010000190000000002000019074705c40000040f000001d304000041000001d30510009c000000000104801900000040011002100000000001310019000001d30320009c000000000204801900000060022002100000000001210019000007480001042e000001d303000041000001d30420009c0000000002038019000001d30410009c000000000103801900000040011002100000006002200210000000000112019f00000749000104300000001f01100039000000200200008a000000000221016f000000400100043d0000000002210019000000000312004b00000000030000190000000103004039000001d50420009c000005db0000213d0000000103300190000005db0000c13d000000400020043f000000000001042d000002030100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019074705c40000040f00030000000000020000001f05100039000001d407000041000000000325004b00000000030000190000000003074019000001d404200197000001d406500197000000000546004b00000000050000190000000005072019000000000446013f000001d40440009c0000000003056019000000000330004c000006110000613d000300000002001d0000000003010433000001d60230009c000200000001001d000006140000813d0000003f01300039000000200200008a000000000121016f000100000003001d074705cd0000040f000000010600002900000000006104350000000205000029000000000265001900000020022000390000000303000029000000000232004b000006110000213d0000000002000019000000000362004b0000060d0000813d00000020022000390000000003120019000000000452001900000000040404330000000000430435000006050000013d000000000216001900000020022000390000000000020435000000000001042d00000000010000190000000002000019074705c40000040f000002030100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019074705c40000040f0000002003000039000000000031043500000000030204330000002004100039000000000034043500000040011000390000000004000019000000000534004b0000062a0000813d00000000054100190000002004400039000000000624001900000000060604330000000000650435000006220000013d000000000231001900000000000204350000001f02300039000000200300008a000000000232016f0000000001210019000000000001042d00000004010000390000000101100367000000000101043b0000020b0210009c000006370000813d000000000001042d00000000010000190000000002000019074705c40000040f00000024010000390000000101100367000000000101043b0000020b0210009c000006400000813d000000000001042d00000000010000190000000002000019074705c40000040f0000000501000039000000000101041a0000000801100270000001da011001970000000002000411000000000121004b0000064b0000c13d000000000001042d000000400100043d00000044021000390000020c030000410000000000320435000001de020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000006402000039074705c40000040f0000000001120019000000000221004b0000000002000019000000010200403900000001022001900000065f0000c13d000000000001042d000002030100004100000000001004350000001101000039000000040010043f00000024020000390000000001000019074705c40000040f0005000000000002000001da01100198000006a30000613d000400000003001d000500000001001d000001da01200198000300000001001d000006b40000613d0747072a0000040f00000005010000290000000000100435000000200000043f00000040020000390000000001000019074705940000040f000000000201041a0000000401000029000200000002001d000000000112004b000006c50000413d00000005010000290000000000100435000000200000043f0000004002000039000100000002001d0000000001000019074705940000040f000000040300002900000002020000290000000002320049000000000021041b0000000301000029000000000010043500000000010000190000000102000029074705940000040f000000000201041a00000004030000290000000002320019000000000021041b000000400100043d0000000000310435000001d3020000410000000003000414000001d30430009c0000000003028019000001d30410009c00000000010280190000004001100210000000c002300210000000000112019f000001f9011001c70000800d020000390000000303000039000001fb04000041000000050500002900000003060000290747073d0000040f0000000101200190000006d60000613d000000000001042d000000400100043d000000640210003900000211030000410000000000320435000000440210003900000212030000410000000000320435000000240210003900000025030000390000000000320435000001de0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039074705c40000040f000000400100043d00000064021000390000020f030000410000000000320435000000440210003900000210030000410000000000320435000000240210003900000023030000390000000000320435000001de0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039074705c40000040f000000400100043d00000064021000390000020d03000041000000000032043500000044021000390000020e030000410000000000320435000000240210003900000026030000390000000000320435000001de0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039074705c40000040f00000000010000190000000002000019074705c40000040f0004000000000002000001da04100198000007050000613d000300000003001d000001da01200198000400000001001d000007160000613d00000000004004350000000101000039000000200010043f0000004002000039000100000002001d0000000001000019000200000004001d074705940000040f00000004020000290000000000200435000000200010043f00000000010000190000000102000029074705940000040f0000000302000029000000000021041b000000400100043d0000000000210435000001d3020000410000000003000414000001d30430009c0000000003028019000001d30410009c00000000010280190000004001100210000000c002300210000000000112019f000001f9011001c70000800d0200003900000003030000390000021304000041000000020500002900000004060000290747073d0000040f0000000101200190000007270000613d000000000001042d000000400100043d000000640210003900000216030000410000000000320435000000440210003900000217030000410000000000320435000000240210003900000024030000390000000000320435000001de0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039074705c40000040f000000400100043d000000640210003900000214030000410000000000320435000000440210003900000215030000410000000000320435000000240210003900000022030000390000000000320435000001de0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039074705c40000040f00000000010000190000000002000019074705c40000040f0000000501000039000000000101041a000000ff011001900000072f0000c13d000000000001042d000000400100043d000000440210003900000218030000410000000000320435000000240210003900000010030000390000000000320435000001de0200004100000000002104350000000402100039000000200300003900000000003204350000006402000039074705c40000040f00000740002104210000000102000039000000000001042d00000000020000190000073f0000013d00000745002104230000000102000039000000000001042d0000000002000019000007440000013d0000074700000432000007480001042e00000749000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000000000000000000000000000000000000100000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffff0000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0000000020000000000000000000000000000000000000000000000000000000045524332304361707065643a206361702069732030000000000000000000000008c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000313ce56700000000000000000000000000000000000000000000000000000000355274ea0000000000000000000000000000000000000000000000000000000039509351000000000000000000000000000000000000000000000000000000003f4ba83a0000000000000000000000000000000000000000000000000000000040c10f190000000000000000000000000000000000000000000000000000000042966c68000000000000000000000000000000000000000000000000000000005c975abb0000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000008456cb59000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000dd62ed3e0000000000000000000000000000000000000000000000000000000006fdde03ffffffffffffffffffffff0000000000000000000000000000000000000000ff64647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f2061207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f778a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b020000000000000000000000000000000000002000000000000000000000000062e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef636500000000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e7420657863656564732062616c616e730000000000000000000000000000000000000000000000000000000000000045524332303a206275726e2066726f6d20746865207a65726f20616464726573310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e45524332303a206d696e7420746f20746865207a65726f20616464726573730045524332304361707065643a20636170206578636565646564000000000000004e487b71000000000000000000000000000000000000000000000000000000005db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa5061757361626c653a206e6f742070617573656400000000000000000000000045524332303a20696e73756666696369656e7420616c6c6f77616e6365000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85bffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff0000000000000080020000020000000000000000000000000000004400000000000000000000000000000000000000000000000100000000000000000000000000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f2061648c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f206164645061757361626c653a2070617573656400000000000000000000000000000000

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

0x000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000084595161401484a000000000000000000000000000000000000000000000000000000000000000000000742756c6c657473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003424c540000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Bullets
Arg [1] : symbol (string): BLT
Arg [2] : cap (uint256): 10000000000000000000000000

-----Encoded View---------------


[ 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.