ETH Price: $3,463.37 (+1.92%)
Gas: 8 Gwei

Token

IGLOO (IG)
 

Overview

Max Total Supply

239,870.418333333282673112 IG

Holders

39

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
mlotta.eth
Balance
15,808.064999999993676774 IG

Value
$0.00
0xb835367ae1cafcea58a10a51b17fea25d16c3dab
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
IglooToken

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : IglooToken.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

contract IglooToken is Ownable, Pausable, ERC20("IGLOO", "IG"), ERC20Burnable {
    // 10 igloo per day on staking penguin

    constructor () {
        whitelist[0x9A31A088797157141BCB058E7eADEB04558603A0] = true; // whitelist staking contract
    }

    // mint limit
    uint mintingLimit = 1 * 1e9 * 1e18; // 1 Billion Supply = 1 * 9 zeros * 18 zeros = (1 * 9 zeros = 1 Billion) * (18 zeros = 18 decimals)

    function setMintingLimit(uint _mintingLimit) external onlyOwner {
        mintingLimit = _mintingLimit;
    }

    // minting
    bool public mintStopped = false;

    function mint(address account, uint256 amount) public onlyOwner {
        require(!mintStopped, "mint is stopped");
        _mint(account, amount);
        require(totalSupply() <= mintingLimit, "Increase the mint limit first.");   
    }

    function stopMint() public onlyOwner {
        mintStopped = true;
    }

    // white list
    mapping(address => bool) private whitelist;

    function setWhitelist(address[] calldata minters, bool allow) external onlyOwner {
        for (uint256 i; i < minters.length; i++) whitelist[minters[i]] = allow;
    }

    function whitelist_mint(address account, uint256 amount) external whenNotPaused {
        require(!mintStopped, "mint is stopped");
        require(whitelist[msg.sender], "Sender must be whitelisted");
        _mint(account, amount);
        require(totalSupply() <= mintingLimit, "Ask the owner to increase the mint limit first.");   
    }

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

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

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

File 2 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;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @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);
}

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

    /**
     * @dev 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 7 of 8 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

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

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        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 8 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintStopped","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"uint256","name":"_mintingLimit","type":"uint256"}],"name":"setMintingLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"minters","type":"address[]"},{"internalType":"bool","name":"allow","type":"bool"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopMint","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"whitelist_mint","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526b033b2e3c9fd0803ce80000006006556007805460ff191690553480156200002b57600080fd5b506040518060400160405280600581526020016449474c4f4f60d81b81525060405180604001604052806002815260200161494760f01b8152506200007f620000796200010960201b60201c565b6200010d565b6000805460ff60a01b191690558151620000a19060049060208501906200015d565b508051620000b79060059060208401906200015d565b5050739a31a088797157141bcb058e7eadeb04558603a06000525060086020527f49fb120219a2241a3d904891f806234e8a5cf0ee31ead48a3199f29c6cec7a96805460ff1916600117905562000240565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200016b9062000203565b90600052602060002090601f0160209004810192826200018f5760008555620001da565b82601f10620001aa57805160ff1916838001178555620001da565b82800160010185558215620001da579182015b82811115620001da578251825591602001919060010190620001bd565b50620001e8929150620001ec565b5090565b5b80821115620001e85760008155600101620001ed565b6002810460018216806200021857607f821691505b602082108114156200023a57634e487b7160e01b600052602260045260246000fd5b50919050565b61166580620002506000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806370a08231116100de578063a457c2d711610097578063d558296511610071578063d5582965146102e5578063d9c9adc3146102ed578063dd62ed3e14610300578063f2fde38b1461031357610173565b8063a457c2d7146102b7578063a9059cbb146102ca578063d428ea5c146102dd57610173565b806370a0823114610264578063715018a61461027757806379cc67901461027f5780638456cb59146102925780638da5cb5b1461029a57806395d89b41146102af57610173565b8063395093511161013057806339509351146102085780633c271a051461021b5780633f4ba83a1461022e57806340c10f191461023657806342966c68146102495780635c975abb1461025c57610173565b806306fdde0314610178578063095ea7b31461019657806318160ddd146101b657806320e45f6e146101cb57806323b872dd146101e0578063313ce567146101f3575b600080fd5b610180610326565b60405161018d9190611092565b60405180910390f35b6101a96101a4366004610fae565b6103b8565b60405161018d9190611087565b6101be6103d5565b60405161018d919061157d565b6101de6101d9366004610fae565b6103db565b005b6101a96101ee366004610f73565b610492565b6101fb610522565b60405161018d9190611586565b6101a9610216366004610fae565b610527565b6101de610229366004610fd7565b61057b565b6101de61063f565b6101de610244366004610fae565b610688565b6101de61025736600461105b565b61071d565b6101a9610731565b6101be610272366004610f20565b610741565b6101de610760565b6101de61028d366004610fae565b6107a9565b6101de6107fc565b6102a2610843565b60405161018d9190611073565b610180610852565b6101a96102c5366004610fae565b610861565b6101a96102d8366004610fae565b6108da565b6101a96108ee565b6101de6108f7565b6101de6102fb36600461105b565b610945565b6101be61030e366004610f41565b610989565b6101de610321366004610f20565b6109b4565b606060048054610335906115c3565b80601f0160208091040260200160405190810160405280929190818152602001828054610361906115c3565b80156103ae5780601f10610383576101008083540402835291602001916103ae565b820191906000526020600020905b81548152906001019060200180831161039157829003601f168201915b5050505050905090565b60006103cc6103c5610a22565b8484610a26565b50600192915050565b60035490565b6103e3610731565b156104095760405162461bcd60e51b815260040161040090611266565b60405180910390fd5b60075460ff161561042c5760405162461bcd60e51b815260040161040090611452565b3360009081526008602052604090205460ff1661045b5760405162461bcd60e51b815260040161040090611546565b6104658282610ada565b6006546104706103d5565b111561048e5760405162461bcd60e51b81526004016104009061147b565b5050565b600061049f848484610ba2565b6001600160a01b0384166000908152600260205260408120816104c0610a22565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156105035760405162461bcd60e51b8152600401610400906112c7565b6105178561050f610a22565b858403610a26565b506001949350505050565b601290565b60006103cc610534610a22565b848460026000610542610a22565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546105769190611594565b610a26565b610583610a22565b6001600160a01b0316610594610843565b6001600160a01b0316146105ba5760405162461bcd60e51b81526004016104009061130f565b60005b828110156106395781600860008686858181106105ea57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906105ff9190610f20565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610631816115fe565b9150506105bd565b50505050565b610647610a22565b6001600160a01b0316610658610843565b6001600160a01b03161461067e5760405162461bcd60e51b81526004016104009061130f565b610686610cc6565b565b610690610a22565b6001600160a01b03166106a1610843565b6001600160a01b0316146106c75760405162461bcd60e51b81526004016104009061130f565b60075460ff16156106ea5760405162461bcd60e51b815260040161040090611452565b6106f48282610ada565b6006546106ff6103d5565b111561048e5760405162461bcd60e51b815260040161040090611290565b61072e610728610a22565b82610d37565b50565b600054600160a01b900460ff1690565b6001600160a01b0381166000908152600160205260409020545b919050565b610768610a22565b6001600160a01b0316610779610843565b6001600160a01b03161461079f5760405162461bcd60e51b81526004016104009061130f565b6106866000610e28565b60006107b78361030e610a22565b9050818110156107d95760405162461bcd60e51b815260040161040090611344565b6107ed836107e5610a22565b848403610a26565b6107f78383610d37565b505050565b610804610a22565b6001600160a01b0316610815610843565b6001600160a01b03161461083b5760405162461bcd60e51b81526004016104009061130f565b610686610e78565b6000546001600160a01b031690565b606060058054610335906115c3565b60008060026000610870610a22565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156108bc5760405162461bcd60e51b8152600401610400906114ca565b6108d06108c7610a22565b85858403610a26565b5060019392505050565b60006103cc6108e7610a22565b8484610ba2565b60075460ff1681565b6108ff610a22565b6001600160a01b0316610910610843565b6001600160a01b0316146109365760405162461bcd60e51b81526004016104009061130f565b6007805460ff19166001179055565b61094d610a22565b6001600160a01b031661095e610843565b6001600160a01b0316146109845760405162461bcd60e51b81526004016104009061130f565b600655565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6109bc610a22565b6001600160a01b03166109cd610843565b6001600160a01b0316146109f35760405162461bcd60e51b81526004016104009061130f565b6001600160a01b038116610a195760405162461bcd60e51b815260040161040090611198565b61072e81610e28565b3390565b6001600160a01b038316610a4c5760405162461bcd60e51b81526004016104009061140e565b6001600160a01b038216610a725760405162461bcd60e51b8152600401610400906111de565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610acd90859061157d565b60405180910390a3505050565b6001600160a01b038216610b005760405162461bcd60e51b81526004016104009061150f565b610b0c60008383610ed9565b8060036000828254610b1e9190611594565b90915550506001600160a01b03821660009081526001602052604081208054839290610b4b908490611594565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610b8e90859061157d565b60405180910390a361048e600083836107f7565b6001600160a01b038316610bc85760405162461bcd60e51b8152600401610400906113c9565b6001600160a01b038216610bee5760405162461bcd60e51b8152600401610400906110e5565b610bf9838383610ed9565b6001600160a01b03831660009081526001602052604090205481811015610c325760405162461bcd60e51b815260040161040090611220565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610c69908490611594565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cb3919061157d565b60405180910390a36106398484846107f7565b610cce610731565b610cea5760405162461bcd60e51b815260040161040090611128565b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610d20610a22565b604051610d2d9190611073565b60405180910390a1565b6001600160a01b038216610d5d5760405162461bcd60e51b815260040161040090611388565b610d6982600083610ed9565b6001600160a01b03821660009081526001602052604090205481811015610da25760405162461bcd60e51b815260040161040090611156565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610dd19084906115ac565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e1490869061157d565b60405180910390a36107f7836000846107f7565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610e80610731565b15610e9d5760405162461bcd60e51b815260040161040090611266565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610d20610a22565b610ee1610731565b15610efe5760405162461bcd60e51b815260040161040090611266565b6107f78383836107f7565b80356001600160a01b038116811461075b57600080fd5b600060208284031215610f31578081fd5b610f3a82610f09565b9392505050565b60008060408385031215610f53578081fd5b610f5c83610f09565b9150610f6a60208401610f09565b90509250929050565b600080600060608486031215610f87578081fd5b610f9084610f09565b9250610f9e60208501610f09565b9150604084013590509250925092565b60008060408385031215610fc0578182fd5b610fc983610f09565b946020939093013593505050565b600080600060408486031215610feb578283fd5b833567ffffffffffffffff80821115611002578485fd5b818601915086601f830112611015578485fd5b813581811115611023578586fd5b8760208083028501011115611036578586fd5b602092830195509350508401358015158114611050578182fd5b809150509250925092565b60006020828403121561106c578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b818110156110be578581018301518582016040015282016110a2565b818111156110cf5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252601e908201527f496e63726561736520746865206d696e74206c696d69742066697273742e0000604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604082015263616e636560e01b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252600f908201526e1b5a5b9d081a5cc81cdd1bdc1c1959608a1b604082015260600190565b6020808252602f908201527f41736b20746865206f776e657220746f20696e63726561736520746865206d6960408201526e373a103634b6b4ba103334b939ba1760891b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b6020808252601a908201527f53656e646572206d7573742062652077686974656c6973746564000000000000604082015260600190565b90815260200190565b60ff91909116815260200190565b600082198211156115a7576115a7611619565b500190565b6000828210156115be576115be611619565b500390565b6002810460018216806115d757607f821691505b602082108114156115f857634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561161257611612611619565b5060010190565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220d904a03870bdd2830853f4af291f782fa240ebdcc3d0ef2073ff7b45823e8aba64736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c806370a08231116100de578063a457c2d711610097578063d558296511610071578063d5582965146102e5578063d9c9adc3146102ed578063dd62ed3e14610300578063f2fde38b1461031357610173565b8063a457c2d7146102b7578063a9059cbb146102ca578063d428ea5c146102dd57610173565b806370a0823114610264578063715018a61461027757806379cc67901461027f5780638456cb59146102925780638da5cb5b1461029a57806395d89b41146102af57610173565b8063395093511161013057806339509351146102085780633c271a051461021b5780633f4ba83a1461022e57806340c10f191461023657806342966c68146102495780635c975abb1461025c57610173565b806306fdde0314610178578063095ea7b31461019657806318160ddd146101b657806320e45f6e146101cb57806323b872dd146101e0578063313ce567146101f3575b600080fd5b610180610326565b60405161018d9190611092565b60405180910390f35b6101a96101a4366004610fae565b6103b8565b60405161018d9190611087565b6101be6103d5565b60405161018d919061157d565b6101de6101d9366004610fae565b6103db565b005b6101a96101ee366004610f73565b610492565b6101fb610522565b60405161018d9190611586565b6101a9610216366004610fae565b610527565b6101de610229366004610fd7565b61057b565b6101de61063f565b6101de610244366004610fae565b610688565b6101de61025736600461105b565b61071d565b6101a9610731565b6101be610272366004610f20565b610741565b6101de610760565b6101de61028d366004610fae565b6107a9565b6101de6107fc565b6102a2610843565b60405161018d9190611073565b610180610852565b6101a96102c5366004610fae565b610861565b6101a96102d8366004610fae565b6108da565b6101a96108ee565b6101de6108f7565b6101de6102fb36600461105b565b610945565b6101be61030e366004610f41565b610989565b6101de610321366004610f20565b6109b4565b606060048054610335906115c3565b80601f0160208091040260200160405190810160405280929190818152602001828054610361906115c3565b80156103ae5780601f10610383576101008083540402835291602001916103ae565b820191906000526020600020905b81548152906001019060200180831161039157829003601f168201915b5050505050905090565b60006103cc6103c5610a22565b8484610a26565b50600192915050565b60035490565b6103e3610731565b156104095760405162461bcd60e51b815260040161040090611266565b60405180910390fd5b60075460ff161561042c5760405162461bcd60e51b815260040161040090611452565b3360009081526008602052604090205460ff1661045b5760405162461bcd60e51b815260040161040090611546565b6104658282610ada565b6006546104706103d5565b111561048e5760405162461bcd60e51b81526004016104009061147b565b5050565b600061049f848484610ba2565b6001600160a01b0384166000908152600260205260408120816104c0610a22565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156105035760405162461bcd60e51b8152600401610400906112c7565b6105178561050f610a22565b858403610a26565b506001949350505050565b601290565b60006103cc610534610a22565b848460026000610542610a22565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546105769190611594565b610a26565b610583610a22565b6001600160a01b0316610594610843565b6001600160a01b0316146105ba5760405162461bcd60e51b81526004016104009061130f565b60005b828110156106395781600860008686858181106105ea57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906105ff9190610f20565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610631816115fe565b9150506105bd565b50505050565b610647610a22565b6001600160a01b0316610658610843565b6001600160a01b03161461067e5760405162461bcd60e51b81526004016104009061130f565b610686610cc6565b565b610690610a22565b6001600160a01b03166106a1610843565b6001600160a01b0316146106c75760405162461bcd60e51b81526004016104009061130f565b60075460ff16156106ea5760405162461bcd60e51b815260040161040090611452565b6106f48282610ada565b6006546106ff6103d5565b111561048e5760405162461bcd60e51b815260040161040090611290565b61072e610728610a22565b82610d37565b50565b600054600160a01b900460ff1690565b6001600160a01b0381166000908152600160205260409020545b919050565b610768610a22565b6001600160a01b0316610779610843565b6001600160a01b03161461079f5760405162461bcd60e51b81526004016104009061130f565b6106866000610e28565b60006107b78361030e610a22565b9050818110156107d95760405162461bcd60e51b815260040161040090611344565b6107ed836107e5610a22565b848403610a26565b6107f78383610d37565b505050565b610804610a22565b6001600160a01b0316610815610843565b6001600160a01b03161461083b5760405162461bcd60e51b81526004016104009061130f565b610686610e78565b6000546001600160a01b031690565b606060058054610335906115c3565b60008060026000610870610a22565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156108bc5760405162461bcd60e51b8152600401610400906114ca565b6108d06108c7610a22565b85858403610a26565b5060019392505050565b60006103cc6108e7610a22565b8484610ba2565b60075460ff1681565b6108ff610a22565b6001600160a01b0316610910610843565b6001600160a01b0316146109365760405162461bcd60e51b81526004016104009061130f565b6007805460ff19166001179055565b61094d610a22565b6001600160a01b031661095e610843565b6001600160a01b0316146109845760405162461bcd60e51b81526004016104009061130f565b600655565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6109bc610a22565b6001600160a01b03166109cd610843565b6001600160a01b0316146109f35760405162461bcd60e51b81526004016104009061130f565b6001600160a01b038116610a195760405162461bcd60e51b815260040161040090611198565b61072e81610e28565b3390565b6001600160a01b038316610a4c5760405162461bcd60e51b81526004016104009061140e565b6001600160a01b038216610a725760405162461bcd60e51b8152600401610400906111de565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610acd90859061157d565b60405180910390a3505050565b6001600160a01b038216610b005760405162461bcd60e51b81526004016104009061150f565b610b0c60008383610ed9565b8060036000828254610b1e9190611594565b90915550506001600160a01b03821660009081526001602052604081208054839290610b4b908490611594565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610b8e90859061157d565b60405180910390a361048e600083836107f7565b6001600160a01b038316610bc85760405162461bcd60e51b8152600401610400906113c9565b6001600160a01b038216610bee5760405162461bcd60e51b8152600401610400906110e5565b610bf9838383610ed9565b6001600160a01b03831660009081526001602052604090205481811015610c325760405162461bcd60e51b815260040161040090611220565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610c69908490611594565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cb3919061157d565b60405180910390a36106398484846107f7565b610cce610731565b610cea5760405162461bcd60e51b815260040161040090611128565b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610d20610a22565b604051610d2d9190611073565b60405180910390a1565b6001600160a01b038216610d5d5760405162461bcd60e51b815260040161040090611388565b610d6982600083610ed9565b6001600160a01b03821660009081526001602052604090205481811015610da25760405162461bcd60e51b815260040161040090611156565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610dd19084906115ac565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e1490869061157d565b60405180910390a36107f7836000846107f7565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610e80610731565b15610e9d5760405162461bcd60e51b815260040161040090611266565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610d20610a22565b610ee1610731565b15610efe5760405162461bcd60e51b815260040161040090611266565b6107f78383836107f7565b80356001600160a01b038116811461075b57600080fd5b600060208284031215610f31578081fd5b610f3a82610f09565b9392505050565b60008060408385031215610f53578081fd5b610f5c83610f09565b9150610f6a60208401610f09565b90509250929050565b600080600060608486031215610f87578081fd5b610f9084610f09565b9250610f9e60208501610f09565b9150604084013590509250925092565b60008060408385031215610fc0578182fd5b610fc983610f09565b946020939093013593505050565b600080600060408486031215610feb578283fd5b833567ffffffffffffffff80821115611002578485fd5b818601915086601f830112611015578485fd5b813581811115611023578586fd5b8760208083028501011115611036578586fd5b602092830195509350508401358015158114611050578182fd5b809150509250925092565b60006020828403121561106c578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b818110156110be578581018301518582016040015282016110a2565b818111156110cf5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252601e908201527f496e63726561736520746865206d696e74206c696d69742066697273742e0000604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604082015263616e636560e01b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252600f908201526e1b5a5b9d081a5cc81cdd1bdc1c1959608a1b604082015260600190565b6020808252602f908201527f41736b20746865206f776e657220746f20696e63726561736520746865206d6960408201526e373a103634b6b4ba103334b939ba1760891b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b6020808252601a908201527f53656e646572206d7573742062652077686974656c6973746564000000000000604082015260600190565b90815260200190565b60ff91909116815260200190565b600082198211156115a7576115a7611619565b500190565b6000828210156115be576115be611619565b500390565b6002810460018216806115d757607f821691505b602082108114156115f857634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561161257611612611619565b5060010190565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220d904a03870bdd2830853f4af291f782fa240ebdcc3d0ef2073ff7b45823e8aba64736f6c63430008000033

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.