ETH Price: $3,265.53 (+0.55%)
Gas: 3 Gwei

Token

PoorPleb (PP)
 

Overview

Max Total Supply

987,000,001,991.00000987800000149 PP

Holders

59

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
46,084,794.84 PP

Value
$0.00
0xbf52864feb04cec892f4368bb7a285955afffce3
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:
PoorPleb

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : contract-06ad5567a3.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "@openzeppelin/[email protected]/token/ERC20/ERC20.sol";
import "@openzeppelin/[email protected]/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/[email protected]/token/ERC20/extensions/ERC20FlashMint.sol";

/// @custom:security-contact [email protected]
contract PoorPleb is ERC20, ERC20Burnable, ERC20FlashMint {
    constructor() ERC20("PoorPleb", "PP") {
        _mint(msg.sender, 1000000000000 * 10 ** decimals());
    }
}

File 2 of 9 : ERC20FlashMint.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/extensions/ERC20FlashMint.sol)

pragma solidity ^0.8.0;

import "../../../interfaces/IERC3156FlashBorrower.sol";
import "../../../interfaces/IERC3156FlashLender.sol";
import "../ERC20.sol";

/**
 * @dev Implementation of the ERC3156 Flash loans extension, as defined in
 * https://eips.ethereum.org/EIPS/eip-3156[ERC-3156].
 *
 * Adds the {flashLoan} method, which provides flash loan support at the token
 * level. By default there is no fee, but this can be changed by overriding {flashFee}.
 *
 * _Available since v4.1._
 */
abstract contract ERC20FlashMint is ERC20, IERC3156FlashLender {
    bytes32 private constant _RETURN_VALUE = keccak256("ERC3156FlashBorrower.onFlashLoan");

    /**
     * @dev Returns the maximum amount of tokens available for loan.
     * @param token The address of the token that is requested.
     * @return The amount of token that can be loaned.
     */
    function maxFlashLoan(address token) public view virtual override returns (uint256) {
        return token == address(this) ? type(uint256).max - ERC20.totalSupply() : 0;
    }

    /**
     * @dev Returns the fee applied when doing flash loans. By default this
     * implementation has 0 fees. This function can be overloaded to make
     * the flash loan mechanism deflationary.
     * @param token The token to be flash loaned.
     * @param amount The amount of tokens to be loaned.
     * @return The fees applied to the corresponding flash loan.
     */
    function flashFee(address token, uint256 amount) public view virtual override returns (uint256) {
        require(token == address(this), "ERC20FlashMint: wrong token");
        // silence warning about unused variable without the addition of bytecode.
        amount;
        return 0;
    }

    /**
     * @dev Returns the receiver address of the flash fee. By default this
     * implementation returns the address(0) which means the fee amount will be burnt.
     * This function can be overloaded to change the fee receiver.
     * @return The address for which the flash fee will be sent to.
     */
    function _flashFeeReceiver() internal view virtual returns (address) {
        return address(0);
    }

    /**
     * @dev Performs a flash loan. New tokens are minted and sent to the
     * `receiver`, who is required to implement the {IERC3156FlashBorrower}
     * interface. By the end of the flash loan, the receiver is expected to own
     * amount + fee tokens and have them approved back to the token contract itself so
     * they can be burned.
     * @param receiver The receiver of the flash loan. Should implement the
     * {IERC3156FlashBorrower.onFlashLoan} interface.
     * @param token The token to be flash loaned. Only `address(this)` is
     * supported.
     * @param amount The amount of tokens to be loaned.
     * @param data An arbitrary datafield that is passed to the receiver.
     * @return `true` if the flash loan was successful.
     */
    // This function can reenter, but it doesn't pose a risk because it always preserves the property that the amount
    // minted at the beginning is always recovered and burned at the end, or else the entire function will revert.
    // slither-disable-next-line reentrancy-no-eth
    function flashLoan(
        IERC3156FlashBorrower receiver,
        address token,
        uint256 amount,
        bytes calldata data
    ) public virtual override returns (bool) {
        require(amount <= maxFlashLoan(token), "ERC20FlashMint: amount exceeds maxFlashLoan");
        uint256 fee = flashFee(token, amount);
        _mint(address(receiver), amount);
        require(
            receiver.onFlashLoan(msg.sender, token, amount, fee, data) == _RETURN_VALUE,
            "ERC20FlashMint: invalid return value"
        );
        address flashFeeReceiver = _flashFeeReceiver();
        _spendAllowance(address(receiver), address(this), amount + fee);
        if (fee == 0 || flashFeeReceiver == address(0)) {
            _burn(address(receiver), amount + fee);
        } else {
            _burn(address(receiver), amount);
            _transfer(address(receiver), flashFeeReceiver, fee);
        }
        return true;
    }
}

File 3 of 9 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (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 {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

File 4 of 9 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 9 : IERC3156FlashLender.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC3156FlashLender.sol)

pragma solidity ^0.8.0;

import "./IERC3156FlashBorrower.sol";

/**
 * @dev Interface of the ERC3156 FlashLender, as defined in
 * https://eips.ethereum.org/EIPS/eip-3156[ERC-3156].
 *
 * _Available since v4.1._
 */
interface IERC3156FlashLender {
    /**
     * @dev The amount of currency available to be lended.
     * @param token The loan currency.
     * @return The amount of `token` that can be borrowed.
     */
    function maxFlashLoan(address token) external view returns (uint256);

    /**
     * @dev The fee to be charged for a given loan.
     * @param token The loan currency.
     * @param amount The amount of tokens lent.
     * @return The amount of `token` to be charged for the loan, on top of the returned principal.
     */
    function flashFee(address token, uint256 amount) external view returns (uint256);

    /**
     * @dev Initiate a flash loan.
     * @param receiver The receiver of the tokens in the loan, and the receiver of the callback.
     * @param token The loan currency.
     * @param amount The amount of tokens lent.
     * @param data Arbitrary data structure, intended to contain user-defined parameters.
     */
    function flashLoan(
        IERC3156FlashBorrower receiver,
        address token,
        uint256 amount,
        bytes calldata data
    ) external returns (bool);
}

File 6 of 9 : IERC3156FlashBorrower.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (interfaces/IERC3156FlashBorrower.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC3156 FlashBorrower, as defined in
 * https://eips.ethereum.org/EIPS/eip-3156[ERC-3156].
 *
 * _Available since v4.1._
 */
interface IERC3156FlashBorrower {
    /**
     * @dev Receive a flash loan.
     * @param initiator The initiator of the loan.
     * @param token The loan currency.
     * @param amount The amount of tokens lent.
     * @param fee The additional amount of tokens to repay.
     * @param data Arbitrary data structure, intended to contain user-defined parameters.
     * @return The keccak256 hash of "IERC3156FlashBorrower.onFlashLoan"
     */
    function onFlashLoan(
        address initiator,
        address token,
        uint256 amount,
        uint256 fee,
        bytes calldata data
    ) external returns (bytes32);
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","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":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"flashFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC3156FlashBorrower","name":"receiver","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"flashLoan","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":"token","type":"address"}],"name":"maxFlashLoan","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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600881526020017f506f6f72506c65620000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f505000000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000285565b508060049080519060200190620000af92919062000285565b505050620000f333620000c7620000f960201b60201c565b600a620000d5919062000475565b64e8d4a51000620000e79190620005b2565b6200010260201b60201c565b620006f4565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000175576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016c906200036d565b60405180910390fd5b62000189600083836200027b60201b60201c565b80600260008282546200019d9190620003bd565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620001f49190620003bd565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200025b91906200038f565b60405180910390a362000277600083836200028060201b60201c565b5050565b505050565b505050565b82805462000293906200062a565b90600052602060002090601f016020900481019282620002b7576000855562000303565b82601f10620002d257805160ff191683800117855562000303565b8280016001018555821562000303579182015b8281111562000302578251825591602001919060010190620002e5565b5b50905062000312919062000316565b5090565b5b808211156200033157600081600090555060010162000317565b5090565b600062000344601f83620003ac565b91506200035182620006cb565b602082019050919050565b620003678162000613565b82525050565b60006020820190508181036000830152620003888162000335565b9050919050565b6000602082019050620003a660008301846200035c565b92915050565b600082825260208201905092915050565b6000620003ca8262000613565b9150620003d78362000613565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200040f576200040e62000660565b5b828201905092915050565b6000808291508390505b60018511156200046c5780860481111562000444576200044362000660565b5b6001851615620004545780820291505b80810290506200046485620006be565b945062000424565b94509492505050565b6000620004828262000613565b91506200048f836200061d565b9250620004be7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620004c6565b905092915050565b600082620004d85760019050620005ab565b81620004e85760009050620005ab565b81600181146200050157600281146200050c5762000542565b6001915050620005ab565b60ff84111562000521576200052062000660565b5b8360020a9150848211156200053b576200053a62000660565b5b50620005ab565b5060208310610133831016604e8410600b84101617156200057c5782820a90508381111562000576576200057562000660565b5b620005ab565b6200058b84848460016200041a565b92509050818404811115620005a557620005a462000660565b5b81810290505b9392505050565b6000620005bf8262000613565b9150620005cc8362000613565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000608576200060762000660565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b600060028204905060018216806200064357607f821691505b602082108114156200065a57620006596200068f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611fb080620007046000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063613255ab11610097578063a457c2d711610066578063a457c2d7146102d5578063a9059cbb14610305578063d9d98ce414610335578063dd62ed3e1461036557610100565b8063613255ab1461023b57806370a082311461026b57806379cc67901461029b57806395d89b41146102b757610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806342966c68146101ef5780635cffe9de1461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610395565b60405161011a9190611771565b60405180910390f35b61013d6004803603810190610138919061136f565b610427565b60405161014a9190611756565b60405180910390f35b61015b61044a565b6040516101689190611933565b60405180910390f35b61018b6004803603810190610186919061131c565b610454565b6040516101989190611756565b60405180910390f35b6101a9610483565b6040516101b6919061194e565b60405180910390f35b6101d960048036038101906101d4919061136f565b61048c565b6040516101e69190611756565b60405180910390f35b61020960048036038101906102049190611464565b6104c3565b005b610225600480360381019061022091906113dc565b6104d7565b6040516102329190611756565b60405180910390f35b610255600480360381019061025091906112af565b6106d3565b6040516102629190611933565b60405180910390f35b610285600480360381019061028091906112af565b61074a565b6040516102929190611933565b60405180910390f35b6102b560048036038101906102b0919061136f565b610792565b005b6102bf6107b2565b6040516102cc9190611771565b60405180910390f35b6102ef60048036038101906102ea919061136f565b610844565b6040516102fc9190611756565b60405180910390f35b61031f600480360381019061031a919061136f565b6108bb565b60405161032c9190611756565b60405180910390f35b61034f600480360381019061034a919061136f565b6108de565b60405161035c9190611933565b60405180910390f35b61037f600480360381019061037a91906112dc565b610958565b60405161038c9190611933565b60405180910390f35b6060600380546103a490611ad3565b80601f01602080910402602001604051908101604052809291908181526020018280546103d090611ad3565b801561041d5780601f106103f25761010080835404028352916020019161041d565b820191906000526020600020905b81548152906001019060200180831161040057829003601f168201915b5050505050905090565b6000806104326109df565b905061043f8185856109e7565b600191505092915050565b6000600254905090565b60008061045f6109df565b905061046c858285610bb2565b610477858585610c3e565b60019150509392505050565b60006012905090565b6000806104976109df565b90506104b88185856104a98589610958565b6104b39190611996565b6109e7565b600191505092915050565b6104d46104ce6109df565b82610ebf565b50565b60006104e2856106d3565b841115610524576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051b90611873565b60405180910390fd5b600061053086866108de565b905061053c8786611096565b7f439148f0bbc682ca079e46d6e2c2f0c1e3b820f1a291b069d8882abf8cf18dd98773ffffffffffffffffffffffffffffffffffffffff166323e30c8b338989868a8a6040518763ffffffff1660e01b81526004016105a0969594939291906116fa565b602060405180830381600087803b1580156105ba57600080fd5b505af11580156105ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105f291906113af565b14610632576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062990611833565b60405180910390fd5b600061063c6111f6565b90506106548830848961064f9190611996565b610bb2565b600082148061068f5750600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b156106ae576106a98883886106a49190611996565b610ebf565b6106c4565b6106b88887610ebf565b6106c3888284610c3e565b5b60019250505095945050505050565b60003073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461070f576000610743565b61071761044a565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61074291906119ec565b5b9050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107a48261079e6109df565b83610bb2565b6107ae8282610ebf565b5050565b6060600480546107c190611ad3565b80601f01602080910402602001604051908101604052809291908181526020018280546107ed90611ad3565b801561083a5780601f1061080f5761010080835404028352916020019161083a565b820191906000526020600020905b81548152906001019060200180831161081d57829003601f168201915b5050505050905090565b60008061084f6109df565b9050600061085d8286610958565b9050838110156108a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610899906118f3565b60405180910390fd5b6108af82868684036109e7565b60019250505092915050565b6000806108c66109df565b90506108d3818585610c3e565b600191505092915050565b60003073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461094e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094590611853565b60405180910390fd5b6000905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4e906118d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abe906117d3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ba59190611933565b60405180910390a3505050565b6000610bbe8484610958565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c385781811015610c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c21906117f3565b60405180910390fd5b610c3784848484036109e7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca5906118b3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1590611793565b60405180910390fd5b610d298383836111fb565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da690611813565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e429190611996565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ea69190611933565b60405180910390a3610eb9848484611200565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2690611893565b60405180910390fd5b610f3b826000836111fb565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb8906117b3565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461101891906119ec565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161107d9190611933565b60405180910390a361109183600084611200565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fd90611913565b60405180910390fd5b611112600083836111fb565b80600260008282546111249190611996565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111799190611996565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111de9190611933565b60405180910390a36111f260008383611200565b5050565b600090565b505050565b505050565b60008135905061121481611f1e565b92915050565b60008151905061122981611f35565b92915050565b60008083601f84011261124557611244611b68565b5b8235905067ffffffffffffffff81111561126257611261611b63565b5b60208301915083600182028301111561127e5761127d611b6d565b5b9250929050565b60008135905061129481611f4c565b92915050565b6000813590506112a981611f63565b92915050565b6000602082840312156112c5576112c4611b77565b5b60006112d384828501611205565b91505092915050565b600080604083850312156112f3576112f2611b77565b5b600061130185828601611205565b925050602061131285828601611205565b9150509250929050565b60008060006060848603121561133557611334611b77565b5b600061134386828701611205565b935050602061135486828701611205565b92505060406113658682870161129a565b9150509250925092565b6000806040838503121561138657611385611b77565b5b600061139485828601611205565b92505060206113a58582860161129a565b9150509250929050565b6000602082840312156113c5576113c4611b77565b5b60006113d38482850161121a565b91505092915050565b6000806000806000608086880312156113f8576113f7611b77565b5b600061140688828901611285565b955050602061141788828901611205565b94505060406114288882890161129a565b935050606086013567ffffffffffffffff81111561144957611448611b72565b5b6114558882890161122f565b92509250509295509295909350565b60006020828403121561147a57611479611b77565b5b60006114888482850161129a565b91505092915050565b61149a81611a20565b82525050565b6114a981611a32565b82525050565b60006114bb8385611974565b93506114c8838584611a91565b6114d183611b7c565b840190509392505050565b60006114e782611969565b6114f18185611985565b9350611501818560208601611aa0565b61150a81611b7c565b840191505092915050565b6000611522602383611985565b915061152d82611b8d565b604082019050919050565b6000611545602283611985565b915061155082611bdc565b604082019050919050565b6000611568602283611985565b915061157382611c2b565b604082019050919050565b600061158b601d83611985565b915061159682611c7a565b602082019050919050565b60006115ae602683611985565b91506115b982611ca3565b604082019050919050565b60006115d1602483611985565b91506115dc82611cf2565b604082019050919050565b60006115f4601b83611985565b91506115ff82611d41565b602082019050919050565b6000611617602b83611985565b915061162282611d6a565b604082019050919050565b600061163a602183611985565b915061164582611db9565b604082019050919050565b600061165d602583611985565b915061166882611e08565b604082019050919050565b6000611680602483611985565b915061168b82611e57565b604082019050919050565b60006116a3602583611985565b91506116ae82611ea6565b604082019050919050565b60006116c6601f83611985565b91506116d182611ef5565b602082019050919050565b6116e581611a7a565b82525050565b6116f481611a84565b82525050565b600060a08201905061170f6000830189611491565b61171c6020830188611491565b61172960408301876116dc565b61173660608301866116dc565b81810360808301526117498184866114af565b9050979650505050505050565b600060208201905061176b60008301846114a0565b92915050565b6000602082019050818103600083015261178b81846114dc565b905092915050565b600060208201905081810360008301526117ac81611515565b9050919050565b600060208201905081810360008301526117cc81611538565b9050919050565b600060208201905081810360008301526117ec8161155b565b9050919050565b6000602082019050818103600083015261180c8161157e565b9050919050565b6000602082019050818103600083015261182c816115a1565b9050919050565b6000602082019050818103600083015261184c816115c4565b9050919050565b6000602082019050818103600083015261186c816115e7565b9050919050565b6000602082019050818103600083015261188c8161160a565b9050919050565b600060208201905081810360008301526118ac8161162d565b9050919050565b600060208201905081810360008301526118cc81611650565b9050919050565b600060208201905081810360008301526118ec81611673565b9050919050565b6000602082019050818103600083015261190c81611696565b9050919050565b6000602082019050818103600083015261192c816116b9565b9050919050565b600060208201905061194860008301846116dc565b92915050565b600060208201905061196360008301846116eb565b92915050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006119a182611a7a565b91506119ac83611a7a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156119e1576119e0611b05565b5b828201905092915050565b60006119f782611a7a565b9150611a0283611a7a565b925082821015611a1557611a14611b05565b5b828203905092915050565b6000611a2b82611a5a565b9050919050565b60008115159050919050565b6000819050919050565b6000611a5382611a20565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015611abe578082015181840152602081019050611aa3565b83811115611acd576000848401525b50505050565b60006002820490506001821680611aeb57607f821691505b60208210811415611aff57611afe611b34565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4552433230466c6173684d696e743a20696e76616c69642072657475726e207660008201527f616c756500000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230466c6173684d696e743a2077726f6e6720746f6b656e0000000000600082015250565b7f4552433230466c6173684d696e743a20616d6f756e742065786365656473206d60008201527f6178466c6173684c6f616e000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611f2781611a20565b8114611f3257600080fd5b50565b611f3e81611a3e565b8114611f4957600080fd5b50565b611f5581611a48565b8114611f6057600080fd5b50565b611f6c81611a7a565b8114611f7757600080fd5b5056fea2646970667358221220011ca34657f26a98b892caf460b4c8f347df03acd39e42bbf612fc30f45ef83664736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063613255ab11610097578063a457c2d711610066578063a457c2d7146102d5578063a9059cbb14610305578063d9d98ce414610335578063dd62ed3e1461036557610100565b8063613255ab1461023b57806370a082311461026b57806379cc67901461029b57806395d89b41146102b757610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806342966c68146101ef5780635cffe9de1461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610395565b60405161011a9190611771565b60405180910390f35b61013d6004803603810190610138919061136f565b610427565b60405161014a9190611756565b60405180910390f35b61015b61044a565b6040516101689190611933565b60405180910390f35b61018b6004803603810190610186919061131c565b610454565b6040516101989190611756565b60405180910390f35b6101a9610483565b6040516101b6919061194e565b60405180910390f35b6101d960048036038101906101d4919061136f565b61048c565b6040516101e69190611756565b60405180910390f35b61020960048036038101906102049190611464565b6104c3565b005b610225600480360381019061022091906113dc565b6104d7565b6040516102329190611756565b60405180910390f35b610255600480360381019061025091906112af565b6106d3565b6040516102629190611933565b60405180910390f35b610285600480360381019061028091906112af565b61074a565b6040516102929190611933565b60405180910390f35b6102b560048036038101906102b0919061136f565b610792565b005b6102bf6107b2565b6040516102cc9190611771565b60405180910390f35b6102ef60048036038101906102ea919061136f565b610844565b6040516102fc9190611756565b60405180910390f35b61031f600480360381019061031a919061136f565b6108bb565b60405161032c9190611756565b60405180910390f35b61034f600480360381019061034a919061136f565b6108de565b60405161035c9190611933565b60405180910390f35b61037f600480360381019061037a91906112dc565b610958565b60405161038c9190611933565b60405180910390f35b6060600380546103a490611ad3565b80601f01602080910402602001604051908101604052809291908181526020018280546103d090611ad3565b801561041d5780601f106103f25761010080835404028352916020019161041d565b820191906000526020600020905b81548152906001019060200180831161040057829003601f168201915b5050505050905090565b6000806104326109df565b905061043f8185856109e7565b600191505092915050565b6000600254905090565b60008061045f6109df565b905061046c858285610bb2565b610477858585610c3e565b60019150509392505050565b60006012905090565b6000806104976109df565b90506104b88185856104a98589610958565b6104b39190611996565b6109e7565b600191505092915050565b6104d46104ce6109df565b82610ebf565b50565b60006104e2856106d3565b841115610524576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051b90611873565b60405180910390fd5b600061053086866108de565b905061053c8786611096565b7f439148f0bbc682ca079e46d6e2c2f0c1e3b820f1a291b069d8882abf8cf18dd98773ffffffffffffffffffffffffffffffffffffffff166323e30c8b338989868a8a6040518763ffffffff1660e01b81526004016105a0969594939291906116fa565b602060405180830381600087803b1580156105ba57600080fd5b505af11580156105ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105f291906113af565b14610632576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062990611833565b60405180910390fd5b600061063c6111f6565b90506106548830848961064f9190611996565b610bb2565b600082148061068f5750600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b156106ae576106a98883886106a49190611996565b610ebf565b6106c4565b6106b88887610ebf565b6106c3888284610c3e565b5b60019250505095945050505050565b60003073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461070f576000610743565b61071761044a565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61074291906119ec565b5b9050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107a48261079e6109df565b83610bb2565b6107ae8282610ebf565b5050565b6060600480546107c190611ad3565b80601f01602080910402602001604051908101604052809291908181526020018280546107ed90611ad3565b801561083a5780601f1061080f5761010080835404028352916020019161083a565b820191906000526020600020905b81548152906001019060200180831161081d57829003601f168201915b5050505050905090565b60008061084f6109df565b9050600061085d8286610958565b9050838110156108a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610899906118f3565b60405180910390fd5b6108af82868684036109e7565b60019250505092915050565b6000806108c66109df565b90506108d3818585610c3e565b600191505092915050565b60003073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461094e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094590611853565b60405180910390fd5b6000905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4e906118d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abe906117d3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ba59190611933565b60405180910390a3505050565b6000610bbe8484610958565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c385781811015610c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c21906117f3565b60405180910390fd5b610c3784848484036109e7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca5906118b3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1590611793565b60405180910390fd5b610d298383836111fb565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da690611813565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e429190611996565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ea69190611933565b60405180910390a3610eb9848484611200565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2690611893565b60405180910390fd5b610f3b826000836111fb565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb8906117b3565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461101891906119ec565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161107d9190611933565b60405180910390a361109183600084611200565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fd90611913565b60405180910390fd5b611112600083836111fb565b80600260008282546111249190611996565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111799190611996565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111de9190611933565b60405180910390a36111f260008383611200565b5050565b600090565b505050565b505050565b60008135905061121481611f1e565b92915050565b60008151905061122981611f35565b92915050565b60008083601f84011261124557611244611b68565b5b8235905067ffffffffffffffff81111561126257611261611b63565b5b60208301915083600182028301111561127e5761127d611b6d565b5b9250929050565b60008135905061129481611f4c565b92915050565b6000813590506112a981611f63565b92915050565b6000602082840312156112c5576112c4611b77565b5b60006112d384828501611205565b91505092915050565b600080604083850312156112f3576112f2611b77565b5b600061130185828601611205565b925050602061131285828601611205565b9150509250929050565b60008060006060848603121561133557611334611b77565b5b600061134386828701611205565b935050602061135486828701611205565b92505060406113658682870161129a565b9150509250925092565b6000806040838503121561138657611385611b77565b5b600061139485828601611205565b92505060206113a58582860161129a565b9150509250929050565b6000602082840312156113c5576113c4611b77565b5b60006113d38482850161121a565b91505092915050565b6000806000806000608086880312156113f8576113f7611b77565b5b600061140688828901611285565b955050602061141788828901611205565b94505060406114288882890161129a565b935050606086013567ffffffffffffffff81111561144957611448611b72565b5b6114558882890161122f565b92509250509295509295909350565b60006020828403121561147a57611479611b77565b5b60006114888482850161129a565b91505092915050565b61149a81611a20565b82525050565b6114a981611a32565b82525050565b60006114bb8385611974565b93506114c8838584611a91565b6114d183611b7c565b840190509392505050565b60006114e782611969565b6114f18185611985565b9350611501818560208601611aa0565b61150a81611b7c565b840191505092915050565b6000611522602383611985565b915061152d82611b8d565b604082019050919050565b6000611545602283611985565b915061155082611bdc565b604082019050919050565b6000611568602283611985565b915061157382611c2b565b604082019050919050565b600061158b601d83611985565b915061159682611c7a565b602082019050919050565b60006115ae602683611985565b91506115b982611ca3565b604082019050919050565b60006115d1602483611985565b91506115dc82611cf2565b604082019050919050565b60006115f4601b83611985565b91506115ff82611d41565b602082019050919050565b6000611617602b83611985565b915061162282611d6a565b604082019050919050565b600061163a602183611985565b915061164582611db9565b604082019050919050565b600061165d602583611985565b915061166882611e08565b604082019050919050565b6000611680602483611985565b915061168b82611e57565b604082019050919050565b60006116a3602583611985565b91506116ae82611ea6565b604082019050919050565b60006116c6601f83611985565b91506116d182611ef5565b602082019050919050565b6116e581611a7a565b82525050565b6116f481611a84565b82525050565b600060a08201905061170f6000830189611491565b61171c6020830188611491565b61172960408301876116dc565b61173660608301866116dc565b81810360808301526117498184866114af565b9050979650505050505050565b600060208201905061176b60008301846114a0565b92915050565b6000602082019050818103600083015261178b81846114dc565b905092915050565b600060208201905081810360008301526117ac81611515565b9050919050565b600060208201905081810360008301526117cc81611538565b9050919050565b600060208201905081810360008301526117ec8161155b565b9050919050565b6000602082019050818103600083015261180c8161157e565b9050919050565b6000602082019050818103600083015261182c816115a1565b9050919050565b6000602082019050818103600083015261184c816115c4565b9050919050565b6000602082019050818103600083015261186c816115e7565b9050919050565b6000602082019050818103600083015261188c8161160a565b9050919050565b600060208201905081810360008301526118ac8161162d565b9050919050565b600060208201905081810360008301526118cc81611650565b9050919050565b600060208201905081810360008301526118ec81611673565b9050919050565b6000602082019050818103600083015261190c81611696565b9050919050565b6000602082019050818103600083015261192c816116b9565b9050919050565b600060208201905061194860008301846116dc565b92915050565b600060208201905061196360008301846116eb565b92915050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006119a182611a7a565b91506119ac83611a7a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156119e1576119e0611b05565b5b828201905092915050565b60006119f782611a7a565b9150611a0283611a7a565b925082821015611a1557611a14611b05565b5b828203905092915050565b6000611a2b82611a5a565b9050919050565b60008115159050919050565b6000819050919050565b6000611a5382611a20565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015611abe578082015181840152602081019050611aa3565b83811115611acd576000848401525b50505050565b60006002820490506001821680611aeb57607f821691505b60208210811415611aff57611afe611b34565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4552433230466c6173684d696e743a20696e76616c69642072657475726e207660008201527f616c756500000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230466c6173684d696e743a2077726f6e6720746f6b656e0000000000600082015250565b7f4552433230466c6173684d696e743a20616d6f756e742065786365656473206d60008201527f6178466c6173684c6f616e000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611f2781611a20565b8114611f3257600080fd5b50565b611f3e81611a3e565b8114611f4957600080fd5b50565b611f5581611a48565b8114611f6057600080fd5b50565b611f6c81611a7a565b8114611f7757600080fd5b5056fea2646970667358221220011ca34657f26a98b892caf460b4c8f347df03acd39e42bbf612fc30f45ef83664736f6c63430008070033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.