ETH Price: $3,130.95 (+0.48%)
Gas: 13 Gwei

Token

BNPL Pay (BNPL)
 

Overview

Max Total Supply

1,000,000,000 BNPL

Holders

849 (0.00%)

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

OVERVIEW

BNPL Pay is a decentralized lending protocol that puts credit in the hands of those who need it the most - those who cannot meet the requirements for collateralized loans. We tackle the counterparty risk associated with uncollateralized borrowing through a distributed network of Banking Nodes.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BNPLToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-26
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;



// File: @openzeppelin/contracts/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;
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
 interface IERC20 {
  /**
   * @dev Returns the amount of tokens in existence.
   */
  function totalSupply() external view returns (uint256);

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

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

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

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

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

  /**
   * @dev Emitted when `value` tokens are moved from one account (`from`) to
   * another (`to`).
   *
   * Note that `value` may be zero.
   */
  event Transfer(address indexed from, address indexed to, uint256 value);

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.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: @openzeppelin/contracts/token/ERC20/IERC20.sol





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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol



/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol



/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/access/IAccessControl.sol



/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

// File: @openzeppelin/contracts/access/AccessControl.sol





/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}



contract BNPLToken is ERC20, AccessControl {
    constructor() ERC20("BNPL Pay", "BNPL") {
        _mint(msg.sender, 1000000000*(10**18));
    }

}

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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"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":[],"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":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040805180820182526008815267424e504c2050617960c01b6020808301918252835180850190945260048452631093941360e21b9084015281519192916200005e9160039162000183565b5080516200007490600490602084019062000183565b50505062000095336b033b2e3c9fd0803ce80000006200009b60201b60201c565b6200028d565b6001600160a01b038216620000f65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200010a919062000229565b90915550506001600160a01b038216600090815260208190526040812080548392906200013990849062000229565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620001919062000250565b90600052602060002090601f016020900481019282620001b5576000855562000200565b82601f10620001d057805160ff191683800117855562000200565b8280016001018555821562000200579182015b8281111562000200578251825591602001919060010190620001e3565b506200020e92915062000212565b5090565b5b808211156200020e576000815560010162000213565b600082198211156200024b57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200026557607f821691505b602082108114156200028757634e487b7160e01b600052602260045260246000fd5b50919050565b610f27806200029d6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806339509351116100a2578063a217fddf11610071578063a217fddf14610241578063a457c2d714610249578063a9059cbb1461025c578063d547741f1461026f578063dd62ed3e1461028257600080fd5b806339509351146101ea57806370a08231146101fd57806391d148541461022657806395d89b411461023957600080fd5b806323b872dd116100e957806323b872dd1461017d578063248a9ca3146101905780632f2ff15d146101b3578063313ce567146101c857806336568abe146101d757600080fd5b806301ffc9a71461011b57806306fdde0314610143578063095ea7b31461015857806318160ddd1461016b575b600080fd5b61012e610129366004610d28565b6102bb565b60405190151581526020015b60405180910390f35b61014b6102f2565b60405161013a9190610dc7565b61012e610166366004610cc2565b610384565b6002545b60405190815260200161013a565b61012e61018b366004610c86565b61039a565b61016f61019e366004610cec565b60009081526005602052604090206001015490565b6101c66101c1366004610d05565b610449565b005b6040516012815260200161013a565b6101c66101e5366004610d05565b610474565b61012e6101f8366004610cc2565b6104f2565b61016f61020b366004610c38565b6001600160a01b031660009081526020819052604090205490565b61012e610234366004610d05565b61052e565b61014b610559565b61016f600081565b61012e610257366004610cc2565b610568565b61012e61026a366004610cc2565b610601565b6101c661027d366004610d05565b61060e565b61016f610290366004610c53565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60006001600160e01b03198216637965db0b60e01b14806102ec57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461030190610e74565b80601f016020809104026020016040519081016040528092919081815260200182805461032d90610e74565b801561037a5780601f1061034f5761010080835404028352916020019161037a565b820191906000526020600020905b81548152906001019060200180831161035d57829003601f168201915b5050505050905090565b6000610391338484610634565b50600192915050565b60006103a7848484610758565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104315760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61043e8533858403610634565b506001949350505050565b6000828152600560205260409020600101546104658133610928565b61046f838361098c565b505050565b6001600160a01b03811633146104e45760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610428565b6104ee8282610a12565b5050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610391918590610529908690610dfa565b610634565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461030190610e74565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156105ea5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610428565b6105f73385858403610634565b5060019392505050565b6000610391338484610758565b60008281526005602052604090206001015461062a8133610928565b61046f8383610a12565b6001600160a01b0383166106965760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610428565b6001600160a01b0382166106f75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610428565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107bc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610428565b6001600160a01b03821661081e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610428565b6001600160a01b038316600090815260208190526040902054818110156108965760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610428565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906108cd908490610dfa565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161091991815260200190565b60405180910390a35b50505050565b610932828261052e565b6104ee5761094a816001600160a01b03166014610a79565b610955836020610a79565b604051602001610966929190610d52565b60408051601f198184030181529082905262461bcd60e51b825261042891600401610dc7565b610996828261052e565b6104ee5760008281526005602090815260408083206001600160a01b03851684529091529020805460ff191660011790556109ce3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610a1c828261052e565b156104ee5760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60606000610a88836002610e12565b610a93906002610dfa565b67ffffffffffffffff811115610aab57610aab610edb565b6040519080825280601f01601f191660200182016040528015610ad5576020820181803683370190505b509050600360fc1b81600081518110610af057610af0610ec5565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610b1f57610b1f610ec5565b60200101906001600160f81b031916908160001a9053506000610b43846002610e12565b610b4e906001610dfa565b90505b6001811115610bc6576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610b8257610b82610ec5565b1a60f81b828281518110610b9857610b98610ec5565b60200101906001600160f81b031916908160001a90535060049490941c93610bbf81610e5d565b9050610b51565b508315610c155760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610428565b9392505050565b80356001600160a01b0381168114610c3357600080fd5b919050565b600060208284031215610c4a57600080fd5b610c1582610c1c565b60008060408385031215610c6657600080fd5b610c6f83610c1c565b9150610c7d60208401610c1c565b90509250929050565b600080600060608486031215610c9b57600080fd5b610ca484610c1c565b9250610cb260208501610c1c565b9150604084013590509250925092565b60008060408385031215610cd557600080fd5b610cde83610c1c565b946020939093013593505050565b600060208284031215610cfe57600080fd5b5035919050565b60008060408385031215610d1857600080fd5b82359150610c7d60208401610c1c565b600060208284031215610d3a57600080fd5b81356001600160e01b031981168114610c1557600080fd5b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351610d8a816017850160208801610e31565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351610dbb816028840160208801610e31565b01602801949350505050565b6020815260008251806020840152610de6816040850160208701610e31565b601f01601f19169190910160400192915050565b60008219821115610e0d57610e0d610eaf565b500190565b6000816000190483118215151615610e2c57610e2c610eaf565b500290565b60005b83811015610e4c578181015183820152602001610e34565b838111156109225750506000910152565b600081610e6c57610e6c610eaf565b506000190190565b600181811c90821680610e8857607f821691505b60208210811415610ea957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea2646970667358221220f8442953bd909b6fbe157ae84100e028930e57f13053ccee3a9f7c75e8ba20fa64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c806339509351116100a2578063a217fddf11610071578063a217fddf14610241578063a457c2d714610249578063a9059cbb1461025c578063d547741f1461026f578063dd62ed3e1461028257600080fd5b806339509351146101ea57806370a08231146101fd57806391d148541461022657806395d89b411461023957600080fd5b806323b872dd116100e957806323b872dd1461017d578063248a9ca3146101905780632f2ff15d146101b3578063313ce567146101c857806336568abe146101d757600080fd5b806301ffc9a71461011b57806306fdde0314610143578063095ea7b31461015857806318160ddd1461016b575b600080fd5b61012e610129366004610d28565b6102bb565b60405190151581526020015b60405180910390f35b61014b6102f2565b60405161013a9190610dc7565b61012e610166366004610cc2565b610384565b6002545b60405190815260200161013a565b61012e61018b366004610c86565b61039a565b61016f61019e366004610cec565b60009081526005602052604090206001015490565b6101c66101c1366004610d05565b610449565b005b6040516012815260200161013a565b6101c66101e5366004610d05565b610474565b61012e6101f8366004610cc2565b6104f2565b61016f61020b366004610c38565b6001600160a01b031660009081526020819052604090205490565b61012e610234366004610d05565b61052e565b61014b610559565b61016f600081565b61012e610257366004610cc2565b610568565b61012e61026a366004610cc2565b610601565b6101c661027d366004610d05565b61060e565b61016f610290366004610c53565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60006001600160e01b03198216637965db0b60e01b14806102ec57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461030190610e74565b80601f016020809104026020016040519081016040528092919081815260200182805461032d90610e74565b801561037a5780601f1061034f5761010080835404028352916020019161037a565b820191906000526020600020905b81548152906001019060200180831161035d57829003601f168201915b5050505050905090565b6000610391338484610634565b50600192915050565b60006103a7848484610758565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104315760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61043e8533858403610634565b506001949350505050565b6000828152600560205260409020600101546104658133610928565b61046f838361098c565b505050565b6001600160a01b03811633146104e45760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610428565b6104ee8282610a12565b5050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610391918590610529908690610dfa565b610634565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461030190610e74565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156105ea5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610428565b6105f73385858403610634565b5060019392505050565b6000610391338484610758565b60008281526005602052604090206001015461062a8133610928565b61046f8383610a12565b6001600160a01b0383166106965760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610428565b6001600160a01b0382166106f75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610428565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107bc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610428565b6001600160a01b03821661081e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610428565b6001600160a01b038316600090815260208190526040902054818110156108965760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610428565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906108cd908490610dfa565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161091991815260200190565b60405180910390a35b50505050565b610932828261052e565b6104ee5761094a816001600160a01b03166014610a79565b610955836020610a79565b604051602001610966929190610d52565b60408051601f198184030181529082905262461bcd60e51b825261042891600401610dc7565b610996828261052e565b6104ee5760008281526005602090815260408083206001600160a01b03851684529091529020805460ff191660011790556109ce3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610a1c828261052e565b156104ee5760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60606000610a88836002610e12565b610a93906002610dfa565b67ffffffffffffffff811115610aab57610aab610edb565b6040519080825280601f01601f191660200182016040528015610ad5576020820181803683370190505b509050600360fc1b81600081518110610af057610af0610ec5565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610b1f57610b1f610ec5565b60200101906001600160f81b031916908160001a9053506000610b43846002610e12565b610b4e906001610dfa565b90505b6001811115610bc6576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610b8257610b82610ec5565b1a60f81b828281518110610b9857610b98610ec5565b60200101906001600160f81b031916908160001a90535060049490941c93610bbf81610e5d565b9050610b51565b508315610c155760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610428565b9392505050565b80356001600160a01b0381168114610c3357600080fd5b919050565b600060208284031215610c4a57600080fd5b610c1582610c1c565b60008060408385031215610c6657600080fd5b610c6f83610c1c565b9150610c7d60208401610c1c565b90509250929050565b600080600060608486031215610c9b57600080fd5b610ca484610c1c565b9250610cb260208501610c1c565b9150604084013590509250925092565b60008060408385031215610cd557600080fd5b610cde83610c1c565b946020939093013593505050565b600060208284031215610cfe57600080fd5b5035919050565b60008060408385031215610d1857600080fd5b82359150610c7d60208401610c1c565b600060208284031215610d3a57600080fd5b81356001600160e01b031981168114610c1557600080fd5b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351610d8a816017850160208801610e31565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351610dbb816028840160208801610e31565b01602801949350505050565b6020815260008251806020840152610de6816040850160208701610e31565b601f01601f19169190910160400192915050565b60008219821115610e0d57610e0d610eaf565b500190565b6000816000190483118215151615610e2c57610e2c610eaf565b500290565b60005b83811015610e4c578181015183820152602001610e34565b838111156109225750506000910152565b600081610e6c57610e6c610eaf565b506000190190565b600181811c90821680610e8857607f821691505b60208210811415610ea957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea2646970667358221220f8442953bd909b6fbe157ae84100e028930e57f13053ccee3a9f7c75e8ba20fa64736f6c63430008070033

Deployed Bytecode Sourcemap

29901:152:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25275:204;;;;;;:::i;:::-;;:::i;:::-;;;2931:14:1;;2924:22;2906:41;;2894:2;2879:18;25275:204:0;;;;;;;;6149:100;;;:::i;:::-;;;;;;;:::i;8316:169::-;;;;;;:::i;:::-;;:::i;7269:108::-;7357:12;;7269:108;;;3104:25:1;;;3092:2;3077:18;7269:108:0;2958:177:1;8967:492:0;;;;;;:::i;:::-;;:::i;26686:123::-;;;;;;:::i;:::-;26752:7;26779:12;;;:6;:12;;;;;:22;;;;26686:123;27071:147;;;;;;:::i;:::-;;:::i;:::-;;7111:93;;;7194:2;7469:36:1;;7457:2;7442:18;7111:93:0;7327:184:1;28119:218:0;;;;;;:::i;:::-;;:::i;9868:215::-;;;;;;:::i;:::-;;:::i;7440:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7541:18:0;7514:7;7541:18;;;;;;;;;;;;7440:127;25571:139;;;;;;:::i;:::-;;:::i;6368:104::-;;;:::i;24662:49::-;;24707:4;24662:49;;10586:413;;;;;;:::i;:::-;;:::i;7780:175::-;;;;;;:::i;:::-;;:::i;27463:149::-;;;;;;:::i;:::-;;:::i;8018:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8134:18:0;;;8107:7;8134:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8018:151;25275:204;25360:4;-1:-1:-1;;;;;;25384:47:0;;-1:-1:-1;;;25384:47:0;;:87;;-1:-1:-1;;;;;;;;;;17741:40:0;;;25435:36;25377:94;25275:204;-1:-1:-1;;25275:204:0:o;6149:100::-;6203:13;6236:5;6229:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6149:100;:::o;8316:169::-;8399:4;8416:39;744:10;8439:7;8448:6;8416:8;:39::i;:::-;-1:-1:-1;8473:4:0;8316:169;;;;:::o;8967:492::-;9107:4;9124:36;9134:6;9142:9;9153:6;9124:9;:36::i;:::-;-1:-1:-1;;;;;9200:19:0;;9173:24;9200:19;;;:11;:19;;;;;;;;744:10;9200:33;;;;;;;;9252:26;;;;9244:79;;;;-1:-1:-1;;;9244:79:0;;5305:2:1;9244:79:0;;;5287:21:1;5344:2;5324:18;;;5317:30;5383:34;5363:18;;;5356:62;-1:-1:-1;;;5434:18:1;;;5427:38;5482:19;;9244:79:0;;;;;;;;;9359:57;9368:6;744:10;9409:6;9390:16;:25;9359:8;:57::i;:::-;-1:-1:-1;9447:4:0;;8967:492;-1:-1:-1;;;;8967:492:0:o;27071:147::-;26752:7;26779:12;;;:6;:12;;;;;:22;;;25153:30;25164:4;744:10;25153;:30::i;:::-;27185:25:::1;27196:4;27202:7;27185:10;:25::i;:::-;27071:147:::0;;;:::o;28119:218::-;-1:-1:-1;;;;;28215:23:0;;744:10;28215:23;28207:83;;;;-1:-1:-1;;;28207:83:0;;6931:2:1;28207:83:0;;;6913:21:1;6970:2;6950:18;;;6943:30;7009:34;6989:18;;;6982:62;-1:-1:-1;;;7060:18:1;;;7053:45;7115:19;;28207:83:0;6729:411:1;28207:83:0;28303:26;28315:4;28321:7;28303:11;:26::i;:::-;28119:218;;:::o;9868:215::-;744:10;9956:4;10005:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10005:34:0;;;;;;;;;;9956:4;;9973:80;;9996:7;;10005:47;;10042:10;;10005:47;:::i;:::-;9973:8;:80::i;25571:139::-;25649:4;25673:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;25673:29:0;;;;;;;;;;;;;;;25571:139::o;6368:104::-;6424:13;6457:7;6450:14;;;;;:::i;10586:413::-;744:10;10679:4;10723:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10723:34:0;;;;;;;;;;10776:35;;;;10768:85;;;;-1:-1:-1;;;10768:85:0;;6525:2:1;10768:85:0;;;6507:21:1;6564:2;6544:18;;;6537:30;6603:34;6583:18;;;6576:62;-1:-1:-1;;;6654:18:1;;;6647:35;6699:19;;10768:85:0;6323:401:1;10768:85:0;10889:67;744:10;10912:7;10940:15;10921:16;:34;10889:8;:67::i;:::-;-1:-1:-1;10987:4:0;;10586:413;-1:-1:-1;;;10586:413:0:o;7780:175::-;7866:4;7883:42;744:10;7907:9;7918:6;7883:9;:42::i;27463:149::-;26752:7;26779:12;;;:6;:12;;;;;:22;;;25153:30;25164:4;744:10;25153;:30::i;:::-;27578:26:::1;27590:4;27596:7;27578:11;:26::i;14270:380::-:0;-1:-1:-1;;;;;14406:19:0;;14398:68;;;;-1:-1:-1;;;14398:68:0;;6120:2:1;14398:68:0;;;6102:21:1;6159:2;6139:18;;;6132:30;6198:34;6178:18;;;6171:62;-1:-1:-1;;;6249:18:1;;;6242:34;6293:19;;14398:68:0;5918:400:1;14398:68:0;-1:-1:-1;;;;;14485:21:0;;14477:68;;;;-1:-1:-1;;;14477:68:0;;4495:2:1;14477:68:0;;;4477:21:1;4534:2;4514:18;;;4507:30;4573:34;4553:18;;;4546:62;-1:-1:-1;;;4624:18:1;;;4617:32;4666:19;;14477:68:0;4293:398:1;14477:68:0;-1:-1:-1;;;;;14558:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14610:32;;3104:25:1;;;14610:32:0;;3077:18:1;14610:32:0;;;;;;;14270:380;;;:::o;11489:733::-;-1:-1:-1;;;;;11629:20:0;;11621:70;;;;-1:-1:-1;;;11621:70:0;;5714:2:1;11621:70:0;;;5696:21:1;5753:2;5733:18;;;5726:30;5792:34;5772:18;;;5765:62;-1:-1:-1;;;5843:18:1;;;5836:35;5888:19;;11621:70:0;5512:401:1;11621:70:0;-1:-1:-1;;;;;11710:23:0;;11702:71;;;;-1:-1:-1;;;11702:71:0;;4091:2:1;11702:71:0;;;4073:21:1;4130:2;4110:18;;;4103:30;4169:34;4149:18;;;4142:62;-1:-1:-1;;;4220:18:1;;;4213:33;4263:19;;11702:71:0;3889:399:1;11702:71:0;-1:-1:-1;;;;;11870:17:0;;11846:21;11870:17;;;;;;;;;;;11906:23;;;;11898:74;;;;-1:-1:-1;;;11898:74:0;;4898:2:1;11898:74:0;;;4880:21:1;4937:2;4917:18;;;4910:30;4976:34;4956:18;;;4949:62;-1:-1:-1;;;5027:18:1;;;5020:36;5073:19;;11898:74:0;4696:402:1;11898:74:0;-1:-1:-1;;;;;12008:17:0;;;:9;:17;;;;;;;;;;;12028:22;;;12008:42;;12072:20;;;;;;;;:30;;12044:6;;12008:9;12072:30;;12044:6;;12072:30;:::i;:::-;;;;;;;;12137:9;-1:-1:-1;;;;;12120:35:0;12129:6;-1:-1:-1;;;;;12120:35:0;;12148:6;12120:35;;;;3104:25:1;;3092:2;3077:18;;2958:177;12120:35:0;;;;;;;;12168:46;11610:612;11489:733;;;:::o;26000:497::-;26081:22;26089:4;26095:7;26081;:22::i;:::-;26076:414;;26269:41;26297:7;-1:-1:-1;;;;;26269:41:0;26307:2;26269:19;:41::i;:::-;26383:38;26411:4;26418:2;26383:19;:38::i;:::-;26174:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;26174:270:0;;;;;;;;;;-1:-1:-1;;;26120:358:0;;;;;;;:::i;29423:229::-;29498:22;29506:4;29512:7;29498;:22::i;:::-;29493:152;;29537:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;29537:29:0;;;;;;;;;:36;;-1:-1:-1;;29537:36:0;29569:4;29537:36;;;29620:12;744:10;;664:98;29620:12;-1:-1:-1;;;;;29593:40:0;29611:7;-1:-1:-1;;;;;29593:40:0;29605:4;29593:40;;;;;;;;;;29423:229;;:::o;29660:230::-;29735:22;29743:4;29749:7;29735;:22::i;:::-;29731:152;;;29806:5;29774:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;29774:29:0;;;;;;;;;;:37;;-1:-1:-1;;29774:37:0;;;29831:40;744:10;;29774:12;;29831:40;;29806:5;29831:40;29660:230;;:::o;19381:451::-;19456:13;19482:19;19514:10;19518:6;19514:1;:10;:::i;:::-;:14;;19527:1;19514:14;:::i;:::-;19504:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19504:25:0;;19482:47;;-1:-1:-1;;;19540:6:0;19547:1;19540:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;19540:15:0;;;;;;;;;-1:-1:-1;;;19566:6:0;19573:1;19566:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;19566:15:0;;;;;;;;-1:-1:-1;19597:9:0;19609:10;19613:6;19609:1;:10;:::i;:::-;:14;;19622:1;19609:14;:::i;:::-;19597:26;;19592:135;19629:1;19625;:5;19592:135;;;-1:-1:-1;;;19677:5:0;19685:3;19677:11;19664:25;;;;;;;:::i;:::-;;;;19652:6;19659:1;19652:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;19652:37:0;;;;;;;;-1:-1:-1;19714:1:0;19704:11;;;;;19632:3;;;:::i;:::-;;;19592:135;;;-1:-1:-1;19745:10:0;;19737:55;;;;-1:-1:-1;;;19737:55:0;;3730:2:1;19737:55:0;;;3712:21:1;;;3749:18;;;3742:30;3808:34;3788:18;;;3781:62;3860:18;;19737:55:0;3528:356:1;19737:55:0;19817:6;19381:451;-1:-1:-1;;;19381:451:0:o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:52;;;1126:1;1123;1116:12;1078:52;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;981:254:1:o;1240:180::-;1299:6;1352:2;1340:9;1331:7;1327:23;1323:32;1320:52;;;1368:1;1365;1358:12;1320:52;-1:-1:-1;1391:23:1;;1240:180;-1:-1:-1;1240:180:1:o;1425:254::-;1493:6;1501;1554:2;1542:9;1533:7;1529:23;1525:32;1522:52;;;1570:1;1567;1560:12;1522:52;1606:9;1593:23;1583:33;;1635:38;1669:2;1658:9;1654:18;1635:38;:::i;1684:286::-;1742:6;1795:2;1783:9;1774:7;1770:23;1766:32;1763:52;;;1811:1;1808;1801:12;1763:52;1837:23;;-1:-1:-1;;;;;;1889:32:1;;1879:43;;1869:71;;1936:1;1933;1926:12;1975:786;2386:25;2381:3;2374:38;2356:3;2441:6;2435:13;2457:62;2512:6;2507:2;2502:3;2498:12;2491:4;2483:6;2479:17;2457:62;:::i;:::-;-1:-1:-1;;;2578:2:1;2538:16;;;2570:11;;;2563:40;2628:13;;2650:63;2628:13;2699:2;2691:11;;2684:4;2672:17;;2650:63;:::i;:::-;2733:17;2752:2;2729:26;;1975:786;-1:-1:-1;;;;1975:786:1:o;3140:383::-;3289:2;3278:9;3271:21;3252:4;3321:6;3315:13;3364:6;3359:2;3348:9;3344:18;3337:34;3380:66;3439:6;3434:2;3423:9;3419:18;3414:2;3406:6;3402:15;3380:66;:::i;:::-;3507:2;3486:15;-1:-1:-1;;3482:29:1;3467:45;;;;3514:2;3463:54;;3140:383;-1:-1:-1;;3140:383:1:o;7516:128::-;7556:3;7587:1;7583:6;7580:1;7577:13;7574:39;;;7593:18;;:::i;:::-;-1:-1:-1;7629:9:1;;7516:128::o;7649:168::-;7689:7;7755:1;7751;7747:6;7743:14;7740:1;7737:21;7732:1;7725:9;7718:17;7714:45;7711:71;;;7762:18;;:::i;:::-;-1:-1:-1;7802:9:1;;7649:168::o;7822:258::-;7894:1;7904:113;7918:6;7915:1;7912:13;7904:113;;;7994:11;;;7988:18;7975:11;;;7968:39;7940:2;7933:10;7904:113;;;8035:6;8032:1;8029:13;8026:48;;;-1:-1:-1;;8070:1:1;8052:16;;8045:27;7822:258::o;8085:136::-;8124:3;8152:5;8142:39;;8161:18;;:::i;:::-;-1:-1:-1;;;8197:18:1;;8085:136::o;8226:380::-;8305:1;8301:12;;;;8348;;;8369:61;;8423:4;8415:6;8411:17;8401:27;;8369:61;8476:2;8468:6;8465:14;8445:18;8442:38;8439:161;;;8522:10;8517:3;8513:20;8510:1;8503:31;8557:4;8554:1;8547:15;8585:4;8582:1;8575:15;8439:161;;8226:380;;;:::o;8611:127::-;8672:10;8667:3;8663:20;8660:1;8653:31;8703:4;8700:1;8693:15;8727:4;8724:1;8717:15;8743:127;8804:10;8799:3;8795:20;8792:1;8785:31;8835:4;8832:1;8825:15;8859:4;8856:1;8849:15;8875:127;8936:10;8931:3;8927:20;8924:1;8917:31;8967:4;8964:1;8957:15;8991:4;8988:1;8981:15

Swarm Source

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