ETH Price: $3,455.54 (+1.00%)
Gas: 9 Gwei

Token

Big Chungus ($CHUNGUS)
 

Overview

Max Total Supply

5,900,519,210 $CHUNGUS

Holders

61

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,666,018.525694047522632723 $CHUNGUS

Value
$0.00
0x616072655b0f7f4f2951a67ad211eb28eee6f7a2
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:
BigChungus

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : BigChungus.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;

/// @title $CHUNGUS

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

/**
 * @dev Interface for the optional metadata functions from the ERC-20 standard.
 */
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);
}

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)


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

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.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);
    }
}

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @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}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC-20
 * 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 ERC may not emit
 * these events, as it isn't required by the specification.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the ERC. 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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

/**
 * @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 {
    bool private _paused;

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

    /**
     * @dev The operation failed because the contract is paused.
     */
    error EnforcedPause();

    /**
     * @dev The operation failed because the contract is not paused.
     */
    error ExpectedPause();

    /**
     * @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 {
        if (paused()) {
            revert EnforcedPause();
        }
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        if (!paused()) {
            revert ExpectedPause();
        }
    }

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

contract BigChungus is ERC20, Ownable, Pausable {

    uint256 public constant maxSupply = 9999999999 * 10 ** 18;

    mapping (address => bool) public  _isBlacklisted;

    constructor() ERC20("Big Chungus", "$CHUNGUS") {

        /*
            SEED: 15%
            FARMERS' PRESALE: 30%
            PUBLIC: 10%
            LIQUIDITY: 10%
            CEX: 5%
            AIRDROP: 15%
            MARKETING & GROWTH: 10%
            TEAM & ADVISORS: 5%
        */

        //CHANGE ADDRESSES

        /// FARMERS' PRESALE
        _mint(0x06Db4de85afd48cA966F996635c69aCf14eF472b, 2999999999 * 10 ** 18);

        /// SEED
        _mint(0x06Db4de85afd48cA966F996635c69aCf14eF472b, 1500000000 * 10 ** 18);

        /// PUBLIC
        _mint(0x06Db4de85afd48cA966F996635c69aCf14eF472b, 1000000000 * 10 ** 18);

        /// LIQUIDITY
        _mint(0xC80f60e852ff4BB34311bFeB4BE75039acd3b27F, 1000000000 * 10 ** 18);

        /// CEX
        _mint(0x59B447163Dc0077e20Cea77973755A17b6c0d48e, 500000000 * 10 ** 18);

        /// AIRDROP
        _mint(0x81A4bfACD3395d5b8dF7DbfA3D1768781adf2B1B, 1500000000 * 10 ** 18);

        /// MARKETING & GROWTH
        _mint(0x6db8985833A95F8c9D85EF723125DD42EE94961F, 1000000000 * 10 ** 18);

        /// TEAM & ADVISORS
        _mint(0xb82d904653c45dE3ff1BaA960a83AcB26A05881D, 500000000 * 10 ** 18);

    }

    /// PAUSABLE

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override whenNotPaused {
        require(!_isBlacklisted[from] && !_isBlacklisted[to], "To Or From Address Is Blacklisted!");    
        super._transfer(from, to, amount);
  
    }

    /// BURN
    
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

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

    /// ADMIN

    /**
     * @dev Adds or removes an address from the blacklist.
     * @param account The address to be blacklisted or removed from the blacklist.
     * @param value True to add to the blacklist, false to remove.
     * Only callable by the contract owner.
     */
    function setBlacklist(address account, bool value) external onlyOwner {
        _isBlacklisted[account] = value;
    }

    /**
     * @dev Withdraws Ether from the contract to a specified recipient.
     * @param recipient The address of the recipient to send Ether to.
     * @param amount The amount of Ether to send.
     * Only callable by the contract owner.
     * Requires the recipient address to be non-zero.
     * Requires the transaction to successfully send Ether.
     */
    function withdraw(address recipient, uint256 amount) external onlyOwner {
        require(recipient != address(0), "Invalid Address!");

        (bool sent, ) = recipient.call{value: amount}("");
        require(sent, "Failed to send Ether");
    }

    /**
     * @dev Withdraws ERC20 tokens from the contract to a specified recipient.
     * @param token The ERC20 token contract address.
     * @param recipient The address of the recipient to send the tokens to.
     * @param amount The amount of tokens to send.
     */
    function withdrawToken(address token, address recipient, uint256 amount) external onlyOwner {
        require(recipient != address(0), "Invalid recipient address!");
        require(token != address(0), "Invalid token address!");

        bool sent = IERC20(token).transfer(recipient, amount);
        require(sent, "Failed to send tokens");
    }

    /**
     * @dev Pauses all functions affected by the `whenNotPaused` modifier.
     * Only callable by the contract owner.
     */
    function pause() external onlyOwner {
        _pause();
    }

    /**
     * @dev Unpauses all functions affected by the `whenNotPaused` modifier.
     * Only callable by the contract owner.
     */
    function unpause() external onlyOwner whenPaused {
        _unpause();
    }

    /**
     * Revert any funds sent to the contract directly
     */
    receive() external payable {}

}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"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":"","type":"address"}],"name":"_isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBlacklist","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":"value","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":"value","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405234801562000010575f80fd5b506040518060400160405280600b81526020017f426967204368756e6775730000000000000000000000000000000000000000008152506040518060400160405280600881526020017f244348554e47555300000000000000000000000000000000000000000000000081525081600390816200008e91906200084f565b508060049081620000a091906200084f565b505050620000c3620000b76200027360201b60201c565b6200027a60201b60201c565b5f600560146101000a81548160ff0219169083151502179055506200010f7306db4de85afd48ca966f996635c69acf14ef472b6b09b18ab5d190ca03109c00006200033d60201b60201c565b620001417306db4de85afd48ca966f996635c69acf14ef472b6b04d8c55aefb8c05b5c0000006200033d60201b60201c565b620001737306db4de85afd48ca966f996635c69acf14ef472b6b033b2e3c9fd0803ce80000006200033d60201b60201c565b620001a573c80f60e852ff4bb34311bfeb4be75039acd3b27f6b033b2e3c9fd0803ce80000006200033d60201b60201c565b620001d77359b447163dc0077e20cea77973755a17b6c0d48e6b019d971e4fe8401e740000006200033d60201b60201c565b620002097381a4bfacd3395d5b8df7dbfa3d1768781adf2b1b6b04d8c55aefb8c05b5c0000006200033d60201b60201c565b6200023b736db8985833a95f8c9d85ef723125dd42ee94961f6b033b2e3c9fd0803ce80000006200033d60201b60201c565b6200026d73b82d904653c45de3ff1baa960a83acb26a05881d6b019d971e4fe8401e740000006200033d60201b60201c565b62000a5f565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003b0575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620003a7919062000976565b60405180910390fd5b620003c35f8383620003c760201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200041b578060025f8282546200040e9190620009be565b92505081905550620004ec565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015620004a7578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016200049e9392919062000a09565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000535578060025f82825403925050819055506200057f565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005de919062000a44565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200066757607f821691505b6020821081036200067d576200067c62000622565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620006e17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006a4565b620006ed8683620006a4565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000737620007316200072b8462000705565b6200070e565b62000705565b9050919050565b5f819050919050565b620007528362000717565b6200076a62000761826200073e565b848454620006b0565b825550505050565b5f90565b6200078062000772565b6200078d81848462000747565b505050565b5b81811015620007b457620007a85f8262000776565b60018101905062000793565b5050565b601f8211156200080357620007cd8162000683565b620007d88462000695565b81016020851015620007e8578190505b62000800620007f78562000695565b83018262000792565b50505b505050565b5f82821c905092915050565b5f620008255f198460080262000808565b1980831691505092915050565b5f6200083f838362000814565b9150826002028217905092915050565b6200085a82620005eb565b67ffffffffffffffff811115620008765762000875620005f5565b5b6200088282546200064f565b6200088f828285620007b8565b5f60209050601f831160018114620008c5575f8415620008b0578287015190505b620008bc858262000832565b8655506200092b565b601f198416620008d58662000683565b5f5b82811015620008fe57848901518255600182019150602085019450602081019050620008d7565b868310156200091e57848901516200091a601f89168262000814565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200095e8262000933565b9050919050565b620009708162000952565b82525050565b5f6020820190506200098b5f83018462000965565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620009ca8262000705565b9150620009d78362000705565b9250828201905080821115620009f257620009f162000991565b5b92915050565b62000a038162000705565b82525050565b5f60608201905062000a1e5f83018662000965565b62000a2d6020830185620009f8565b62000a3c6040830184620009f8565b949350505050565b5f60208201905062000a595f830184620009f8565b92915050565b611e4d8062000a6d5f395ff3fe608060405260043610610138575f3560e01c806370a08231116100aa57806395d89b411161006e57806395d89b41146103e7578063a9059cbb14610411578063d5abeb011461044d578063dd62ed3e14610477578063f2fde38b146104b3578063f3fef3a3146104db5761013f565b806370a082311461032d578063715018a61461036957806379cc67901461037f5780638456cb59146103a75780638da5cb5b146103bd5761013f565b80631cdd3be3116100fc5780631cdd3be31461022357806323b872dd1461025f578063313ce5671461029b5780633f4ba83a146102c557806342966c68146102db5780635c975abb146103035761013f565b806301e336671461014357806306fdde031461016b578063095ea7b314610195578063153b0d1e146101d157806318160ddd146101f95761013f565b3661013f57005b5f80fd5b34801561014e575f80fd5b5061016960048036038101906101649190611607565b610503565b005b348015610176575f80fd5b5061017f6106ab565b60405161018c91906116e1565b60405180910390f35b3480156101a0575f80fd5b506101bb60048036038101906101b69190611701565b61073b565b6040516101c89190611759565b60405180910390f35b3480156101dc575f80fd5b506101f760048036038101906101f2919061179c565b61075d565b005b348015610204575f80fd5b5061020d6107bd565b60405161021a91906117e9565b60405180910390f35b34801561022e575f80fd5b5061024960048036038101906102449190611802565b6107c6565b6040516102569190611759565b60405180910390f35b34801561026a575f80fd5b5061028560048036038101906102809190611607565b6107e3565b6040516102929190611759565b60405180910390f35b3480156102a6575f80fd5b506102af610811565b6040516102bc9190611848565b60405180910390f35b3480156102d0575f80fd5b506102d9610819565b005b3480156102e6575f80fd5b5061030160048036038101906102fc9190611861565b610833565b005b34801561030e575f80fd5b50610317610847565b6040516103249190611759565b60405180910390f35b348015610338575f80fd5b50610353600480360381019061034e9190611802565b61085d565b60405161036091906117e9565b60405180910390f35b348015610374575f80fd5b5061037d6108a2565b005b34801561038a575f80fd5b506103a560048036038101906103a09190611701565b6108b5565b005b3480156103b2575f80fd5b506103bb6108d5565b005b3480156103c8575f80fd5b506103d16108e7565b6040516103de919061189b565b60405180910390f35b3480156103f2575f80fd5b506103fb61090f565b60405161040891906116e1565b60405180910390f35b34801561041c575f80fd5b5061043760048036038101906104329190611701565b61099f565b6040516104449190611759565b60405180910390f35b348015610458575f80fd5b506104616109c1565b60405161046e91906117e9565b60405180910390f35b348015610482575f80fd5b5061049d600480360381019061049891906118b4565b6109d1565b6040516104aa91906117e9565b60405180910390f35b3480156104be575f80fd5b506104d960048036038101906104d49190611802565b610a53565b005b3480156104e6575f80fd5b5061050160048036038101906104fc9190611701565b610ad5565b005b61050b610bf8565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610579576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105709061193c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105de906119a4565b60405180910390fd5b5f8373ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b81526004016106239291906119c2565b6020604051808303815f875af115801561063f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061066391906119fd565b9050806106a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069c90611a72565b60405180910390fd5b50505050565b6060600380546106ba90611abd565b80601f01602080910402602001604051908101604052809291908181526020018280546106e690611abd565b80156107315780601f1061070857610100808354040283529160200191610731565b820191905f5260205f20905b81548152906001019060200180831161071457829003601f168201915b5050505050905090565b5f80610745610c76565b9050610752818585610c7d565b600191505092915050565b610765610bf8565b8060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f600254905090565b6006602052805f5260405f205f915054906101000a900460ff1681565b5f806107ed610c76565b90506107fa858285610c8f565b610805858585610d21565b60019150509392505050565b5f6012905090565b610821610bf8565b610829610e16565b610831610e56565b565b61084461083e610c76565b82610eb8565b50565b5f600560149054906101000a900460ff16905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6108aa610bf8565b6108b35f610f37565b565b6108c7826108c1610c76565b83610c8f565b6108d18282610eb8565b5050565b6108dd610bf8565b6108e5610ffa565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461091e90611abd565b80601f016020809104026020016040519081016040528092919081815260200182805461094a90611abd565b80156109955780601f1061096c57610100808354040283529160200191610995565b820191905f5260205f20905b81548152906001019060200180831161097857829003601f168201915b5050505050905090565b5f806109a9610c76565b90506109b6818585610d21565b600191505092915050565b6b204fce5e30444bad689c000081565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610a5b610bf8565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac090611b5d565b60405180910390fd5b610ad281610f37565b50565b610add610bf8565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4290611bc5565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff1682604051610b7090611c10565b5f6040518083038185875af1925050503d805f8114610baa576040519150601f19603f3d011682016040523d82523d5f602084013e610baf565b606091505b5050905080610bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bea90611c6e565b60405180910390fd5b505050565b610c00610c76565b73ffffffffffffffffffffffffffffffffffffffff16610c1e6108e7565b73ffffffffffffffffffffffffffffffffffffffff1614610c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6b90611cd6565b60405180910390fd5b565b5f33905090565b610c8a838383600161105d565b505050565b5f610c9a84846109d1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d1b5781811015610d0c578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610d0393929190611cf4565b60405180910390fd5b610d1a84848484035f61105d565b5b50505050565b610d2961122c565b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015610dc7575060065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd90611d99565b60405180910390fd5b610e1183838361126d565b505050565b610e1e610847565b610e54576040517f8dfc202b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b610e5e610e16565b5f600560146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610ea1610c76565b604051610eae919061189b565b60405180910390a1565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f28575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610f1f919061189b565b60405180910390fd5b610f33825f8361135d565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61100261122c565b6001600560146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611046610c76565b604051611053919061189b565b60405180910390a1565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036110cd575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016110c4919061189b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361113d575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401611134919061189b565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611226578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161121d91906117e9565b60405180910390a35b50505050565b611234610847565b1561126b576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112dd575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016112d4919061189b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361134d575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401611344919061189b565b60405180910390fd5b61135883838361135d565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113ad578060025f8282546113a19190611de4565b9250508190555061147b565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611436578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161142d93929190611cf4565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114c2578060025f828254039250508190555061150c565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161156991906117e9565b60405180910390a3505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6115a38261157a565b9050919050565b6115b381611599565b81146115bd575f80fd5b50565b5f813590506115ce816115aa565b92915050565b5f819050919050565b6115e6816115d4565b81146115f0575f80fd5b50565b5f81359050611601816115dd565b92915050565b5f805f6060848603121561161e5761161d611576565b5b5f61162b868287016115c0565b935050602061163c868287016115c0565b925050604061164d868287016115f3565b9150509250925092565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561168e578082015181840152602081019050611673565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6116b382611657565b6116bd8185611661565b93506116cd818560208601611671565b6116d681611699565b840191505092915050565b5f6020820190508181035f8301526116f981846116a9565b905092915050565b5f806040838503121561171757611716611576565b5b5f611724858286016115c0565b9250506020611735858286016115f3565b9150509250929050565b5f8115159050919050565b6117538161173f565b82525050565b5f60208201905061176c5f83018461174a565b92915050565b61177b8161173f565b8114611785575f80fd5b50565b5f8135905061179681611772565b92915050565b5f80604083850312156117b2576117b1611576565b5b5f6117bf858286016115c0565b92505060206117d085828601611788565b9150509250929050565b6117e3816115d4565b82525050565b5f6020820190506117fc5f8301846117da565b92915050565b5f6020828403121561181757611816611576565b5b5f611824848285016115c0565b91505092915050565b5f60ff82169050919050565b6118428161182d565b82525050565b5f60208201905061185b5f830184611839565b92915050565b5f6020828403121561187657611875611576565b5b5f611883848285016115f3565b91505092915050565b61189581611599565b82525050565b5f6020820190506118ae5f83018461188c565b92915050565b5f80604083850312156118ca576118c9611576565b5b5f6118d7858286016115c0565b92505060206118e8858286016115c0565b9150509250929050565b7f496e76616c696420726563697069656e742061646472657373210000000000005f82015250565b5f611926601a83611661565b9150611931826118f2565b602082019050919050565b5f6020820190508181035f8301526119538161191a565b9050919050565b7f496e76616c696420746f6b656e206164647265737321000000000000000000005f82015250565b5f61198e601683611661565b91506119998261195a565b602082019050919050565b5f6020820190508181035f8301526119bb81611982565b9050919050565b5f6040820190506119d55f83018561188c565b6119e260208301846117da565b9392505050565b5f815190506119f781611772565b92915050565b5f60208284031215611a1257611a11611576565b5b5f611a1f848285016119e9565b91505092915050565b7f4661696c656420746f2073656e6420746f6b656e7300000000000000000000005f82015250565b5f611a5c601583611661565b9150611a6782611a28565b602082019050919050565b5f6020820190508181035f830152611a8981611a50565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611ad457607f821691505b602082108103611ae757611ae6611a90565b5b50919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611b47602683611661565b9150611b5282611aed565b604082019050919050565b5f6020820190508181035f830152611b7481611b3b565b9050919050565b7f496e76616c6964204164647265737321000000000000000000000000000000005f82015250565b5f611baf601083611661565b9150611bba82611b7b565b602082019050919050565b5f6020820190508181035f830152611bdc81611ba3565b9050919050565b5f81905092915050565b50565b5f611bfb5f83611be3565b9150611c0682611bed565b5f82019050919050565b5f611c1a82611bf0565b9150819050919050565b7f4661696c656420746f2073656e642045746865720000000000000000000000005f82015250565b5f611c58601483611661565b9150611c6382611c24565b602082019050919050565b5f6020820190508181035f830152611c8581611c4c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611cc0602083611661565b9150611ccb82611c8c565b602082019050919050565b5f6020820190508181035f830152611ced81611cb4565b9050919050565b5f606082019050611d075f83018661188c565b611d1460208301856117da565b611d2160408301846117da565b949350505050565b7f546f204f722046726f6d204164647265737320497320426c61636b6c697374655f8201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b5f611d83602283611661565b9150611d8e82611d29565b604082019050919050565b5f6020820190508181035f830152611db081611d77565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611dee826115d4565b9150611df9836115d4565b9250828201905080821115611e1157611e10611db7565b5b9291505056fea26469706673582212208bb4040016ac1c46bb0c1f781288e5cddf6d0ecb4fb53d0de1a4915307a17e7a64736f6c63430008140033

Deployed Bytecode

0x608060405260043610610138575f3560e01c806370a08231116100aa57806395d89b411161006e57806395d89b41146103e7578063a9059cbb14610411578063d5abeb011461044d578063dd62ed3e14610477578063f2fde38b146104b3578063f3fef3a3146104db5761013f565b806370a082311461032d578063715018a61461036957806379cc67901461037f5780638456cb59146103a75780638da5cb5b146103bd5761013f565b80631cdd3be3116100fc5780631cdd3be31461022357806323b872dd1461025f578063313ce5671461029b5780633f4ba83a146102c557806342966c68146102db5780635c975abb146103035761013f565b806301e336671461014357806306fdde031461016b578063095ea7b314610195578063153b0d1e146101d157806318160ddd146101f95761013f565b3661013f57005b5f80fd5b34801561014e575f80fd5b5061016960048036038101906101649190611607565b610503565b005b348015610176575f80fd5b5061017f6106ab565b60405161018c91906116e1565b60405180910390f35b3480156101a0575f80fd5b506101bb60048036038101906101b69190611701565b61073b565b6040516101c89190611759565b60405180910390f35b3480156101dc575f80fd5b506101f760048036038101906101f2919061179c565b61075d565b005b348015610204575f80fd5b5061020d6107bd565b60405161021a91906117e9565b60405180910390f35b34801561022e575f80fd5b5061024960048036038101906102449190611802565b6107c6565b6040516102569190611759565b60405180910390f35b34801561026a575f80fd5b5061028560048036038101906102809190611607565b6107e3565b6040516102929190611759565b60405180910390f35b3480156102a6575f80fd5b506102af610811565b6040516102bc9190611848565b60405180910390f35b3480156102d0575f80fd5b506102d9610819565b005b3480156102e6575f80fd5b5061030160048036038101906102fc9190611861565b610833565b005b34801561030e575f80fd5b50610317610847565b6040516103249190611759565b60405180910390f35b348015610338575f80fd5b50610353600480360381019061034e9190611802565b61085d565b60405161036091906117e9565b60405180910390f35b348015610374575f80fd5b5061037d6108a2565b005b34801561038a575f80fd5b506103a560048036038101906103a09190611701565b6108b5565b005b3480156103b2575f80fd5b506103bb6108d5565b005b3480156103c8575f80fd5b506103d16108e7565b6040516103de919061189b565b60405180910390f35b3480156103f2575f80fd5b506103fb61090f565b60405161040891906116e1565b60405180910390f35b34801561041c575f80fd5b5061043760048036038101906104329190611701565b61099f565b6040516104449190611759565b60405180910390f35b348015610458575f80fd5b506104616109c1565b60405161046e91906117e9565b60405180910390f35b348015610482575f80fd5b5061049d600480360381019061049891906118b4565b6109d1565b6040516104aa91906117e9565b60405180910390f35b3480156104be575f80fd5b506104d960048036038101906104d49190611802565b610a53565b005b3480156104e6575f80fd5b5061050160048036038101906104fc9190611701565b610ad5565b005b61050b610bf8565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610579576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105709061193c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105de906119a4565b60405180910390fd5b5f8373ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b81526004016106239291906119c2565b6020604051808303815f875af115801561063f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061066391906119fd565b9050806106a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069c90611a72565b60405180910390fd5b50505050565b6060600380546106ba90611abd565b80601f01602080910402602001604051908101604052809291908181526020018280546106e690611abd565b80156107315780601f1061070857610100808354040283529160200191610731565b820191905f5260205f20905b81548152906001019060200180831161071457829003601f168201915b5050505050905090565b5f80610745610c76565b9050610752818585610c7d565b600191505092915050565b610765610bf8565b8060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f600254905090565b6006602052805f5260405f205f915054906101000a900460ff1681565b5f806107ed610c76565b90506107fa858285610c8f565b610805858585610d21565b60019150509392505050565b5f6012905090565b610821610bf8565b610829610e16565b610831610e56565b565b61084461083e610c76565b82610eb8565b50565b5f600560149054906101000a900460ff16905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6108aa610bf8565b6108b35f610f37565b565b6108c7826108c1610c76565b83610c8f565b6108d18282610eb8565b5050565b6108dd610bf8565b6108e5610ffa565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461091e90611abd565b80601f016020809104026020016040519081016040528092919081815260200182805461094a90611abd565b80156109955780601f1061096c57610100808354040283529160200191610995565b820191905f5260205f20905b81548152906001019060200180831161097857829003601f168201915b5050505050905090565b5f806109a9610c76565b90506109b6818585610d21565b600191505092915050565b6b204fce5e30444bad689c000081565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610a5b610bf8565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac090611b5d565b60405180910390fd5b610ad281610f37565b50565b610add610bf8565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4290611bc5565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff1682604051610b7090611c10565b5f6040518083038185875af1925050503d805f8114610baa576040519150601f19603f3d011682016040523d82523d5f602084013e610baf565b606091505b5050905080610bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bea90611c6e565b60405180910390fd5b505050565b610c00610c76565b73ffffffffffffffffffffffffffffffffffffffff16610c1e6108e7565b73ffffffffffffffffffffffffffffffffffffffff1614610c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6b90611cd6565b60405180910390fd5b565b5f33905090565b610c8a838383600161105d565b505050565b5f610c9a84846109d1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d1b5781811015610d0c578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610d0393929190611cf4565b60405180910390fd5b610d1a84848484035f61105d565b5b50505050565b610d2961122c565b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015610dc7575060065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd90611d99565b60405180910390fd5b610e1183838361126d565b505050565b610e1e610847565b610e54576040517f8dfc202b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b610e5e610e16565b5f600560146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610ea1610c76565b604051610eae919061189b565b60405180910390a1565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f28575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610f1f919061189b565b60405180910390fd5b610f33825f8361135d565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61100261122c565b6001600560146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611046610c76565b604051611053919061189b565b60405180910390a1565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036110cd575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016110c4919061189b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361113d575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401611134919061189b565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611226578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161121d91906117e9565b60405180910390a35b50505050565b611234610847565b1561126b576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112dd575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016112d4919061189b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361134d575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401611344919061189b565b60405180910390fd5b61135883838361135d565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113ad578060025f8282546113a19190611de4565b9250508190555061147b565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611436578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161142d93929190611cf4565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114c2578060025f828254039250508190555061150c565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161156991906117e9565b60405180910390a3505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6115a38261157a565b9050919050565b6115b381611599565b81146115bd575f80fd5b50565b5f813590506115ce816115aa565b92915050565b5f819050919050565b6115e6816115d4565b81146115f0575f80fd5b50565b5f81359050611601816115dd565b92915050565b5f805f6060848603121561161e5761161d611576565b5b5f61162b868287016115c0565b935050602061163c868287016115c0565b925050604061164d868287016115f3565b9150509250925092565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561168e578082015181840152602081019050611673565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6116b382611657565b6116bd8185611661565b93506116cd818560208601611671565b6116d681611699565b840191505092915050565b5f6020820190508181035f8301526116f981846116a9565b905092915050565b5f806040838503121561171757611716611576565b5b5f611724858286016115c0565b9250506020611735858286016115f3565b9150509250929050565b5f8115159050919050565b6117538161173f565b82525050565b5f60208201905061176c5f83018461174a565b92915050565b61177b8161173f565b8114611785575f80fd5b50565b5f8135905061179681611772565b92915050565b5f80604083850312156117b2576117b1611576565b5b5f6117bf858286016115c0565b92505060206117d085828601611788565b9150509250929050565b6117e3816115d4565b82525050565b5f6020820190506117fc5f8301846117da565b92915050565b5f6020828403121561181757611816611576565b5b5f611824848285016115c0565b91505092915050565b5f60ff82169050919050565b6118428161182d565b82525050565b5f60208201905061185b5f830184611839565b92915050565b5f6020828403121561187657611875611576565b5b5f611883848285016115f3565b91505092915050565b61189581611599565b82525050565b5f6020820190506118ae5f83018461188c565b92915050565b5f80604083850312156118ca576118c9611576565b5b5f6118d7858286016115c0565b92505060206118e8858286016115c0565b9150509250929050565b7f496e76616c696420726563697069656e742061646472657373210000000000005f82015250565b5f611926601a83611661565b9150611931826118f2565b602082019050919050565b5f6020820190508181035f8301526119538161191a565b9050919050565b7f496e76616c696420746f6b656e206164647265737321000000000000000000005f82015250565b5f61198e601683611661565b91506119998261195a565b602082019050919050565b5f6020820190508181035f8301526119bb81611982565b9050919050565b5f6040820190506119d55f83018561188c565b6119e260208301846117da565b9392505050565b5f815190506119f781611772565b92915050565b5f60208284031215611a1257611a11611576565b5b5f611a1f848285016119e9565b91505092915050565b7f4661696c656420746f2073656e6420746f6b656e7300000000000000000000005f82015250565b5f611a5c601583611661565b9150611a6782611a28565b602082019050919050565b5f6020820190508181035f830152611a8981611a50565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611ad457607f821691505b602082108103611ae757611ae6611a90565b5b50919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611b47602683611661565b9150611b5282611aed565b604082019050919050565b5f6020820190508181035f830152611b7481611b3b565b9050919050565b7f496e76616c6964204164647265737321000000000000000000000000000000005f82015250565b5f611baf601083611661565b9150611bba82611b7b565b602082019050919050565b5f6020820190508181035f830152611bdc81611ba3565b9050919050565b5f81905092915050565b50565b5f611bfb5f83611be3565b9150611c0682611bed565b5f82019050919050565b5f611c1a82611bf0565b9150819050919050565b7f4661696c656420746f2073656e642045746865720000000000000000000000005f82015250565b5f611c58601483611661565b9150611c6382611c24565b602082019050919050565b5f6020820190508181035f830152611c8581611c4c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611cc0602083611661565b9150611ccb82611c8c565b602082019050919050565b5f6020820190508181035f830152611ced81611cb4565b9050919050565b5f606082019050611d075f83018661188c565b611d1460208301856117da565b611d2160408301846117da565b949350505050565b7f546f204f722046726f6d204164647265737320497320426c61636b6c697374655f8201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b5f611d83602283611661565b9150611d8e82611d29565b604082019050919050565b5f6020820190508181035f830152611db081611d77565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611dee826115d4565b9150611df9836115d4565b9250828201905080821115611e1157611e10611db7565b5b9291505056fea26469706673582212208bb4040016ac1c46bb0c1f781288e5cddf6d0ecb4fb53d0de1a4915307a17e7a64736f6c63430008140033

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.