MOVR Price: $21.59 (-1.75%)
Gas: 1 GWei

Contract

0x6bD193Ee6D2104F14F94E2cA6efefae561A4334B

Overview

MOVR Balance

Moonriver Chain LogoMoonriver Chain LogoMoonriver Chain Logo0 MOVR

MOVR Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

Transaction Hash
Method
Block
From
To
Value
Approve64302812024-03-28 10:00:2413 mins ago1711620024IN
Solarbeam: SOLAR Token
0 MOVR0.000060611.25
Approve64280382024-03-28 2:06:008 hrs ago1711591560IN
Solarbeam: SOLAR Token
0 MOVR0.000157983.2385
Approve64278862024-03-28 1:32:248 hrs ago1711589544IN
Solarbeam: SOLAR Token
0 MOVR0.000157983.2385
Transfer64274122024-03-27 23:49:3610 hrs ago1711583376IN
Solarbeam: SOLAR Token
0 MOVR0.000190033.4
Transfer64258382024-03-27 18:11:4816 hrs ago1711563108IN
Solarbeam: SOLAR Token
0 MOVR0.000068261.5
Approve64254372024-03-27 16:48:0017 hrs ago1711558080IN
Solarbeam: SOLAR Token
0 MOVR0.000060971.25
Transfer64239712024-03-27 11:32:0622 hrs ago1711539126IN
Solarbeam: SOLAR Token
0 MOVR0.000146513.20998892
Approve64235332024-03-27 9:59:0624 hrs ago1711533546IN
Solarbeam: SOLAR Token
0 MOVR0.000140133.125
Approve64235212024-03-27 9:56:3624 hrs ago1711533396IN
Solarbeam: SOLAR Token
0 MOVR0.00015153.125
Approve64233242024-03-27 9:14:3024 hrs ago1711530870IN
Solarbeam: SOLAR Token
0 MOVR0.000060971.25
Approve64225952024-03-27 6:37:5427 hrs ago1711521474IN
Solarbeam: SOLAR Token
0 MOVR0.000157983.2385
Approve64223032024-03-27 5:35:3628 hrs ago1711517736IN
Solarbeam: SOLAR Token
0 MOVR0.000160983.3
Approve64218062024-03-27 3:49:0030 hrs ago1711511340IN
Solarbeam: SOLAR Token
0 MOVR0.000134152.75
Transfer64200852024-03-26 21:42:1836 hrs ago1711489338IN
Solarbeam: SOLAR Token
0 MOVR0.000063141.3875
Approve64196342024-03-26 20:06:4238 hrs ago1711483602IN
Solarbeam: SOLAR Token
0 MOVR0.000152443.125
Transfer64192852024-03-26 18:51:3639 hrs ago1711479096IN
Solarbeam: SOLAR Token
0 MOVR0.000069821.25
Approve64170102024-03-26 10:50:0647 hrs ago1711450206IN
Solarbeam: SOLAR Token
0 MOVR0.000147533.3
Approve64164312024-03-26 8:49:302 days ago1711442970IN
Solarbeam: SOLAR Token
0 MOVR0.000151583.125
Transfer64164272024-03-26 8:48:422 days ago1711442922IN
Solarbeam: SOLAR Token
0 MOVR0.000056881.25
Transfer64157772024-03-26 6:28:122 days ago1711434492IN
Solarbeam: SOLAR Token
0 MOVR0.000069821.25
Transfer64156662024-03-26 6:05:302 days ago1711433130IN
Solarbeam: SOLAR Token
0 MOVR0.000069821.25
Approve64155782024-03-26 5:47:122 days ago1711432032IN
Solarbeam: SOLAR Token
0 MOVR0.000152443.125
Transfer64155542024-03-26 5:42:122 days ago1711431732IN
Solarbeam: SOLAR Token
0 MOVR0.000056881.25
Approve64153892024-03-26 5:07:002 days ago1711429620IN
Solarbeam: SOLAR Token
0 MOVR0.000140133.125
Approve64153552024-03-26 5:00:002 days ago1711429200IN
Solarbeam: SOLAR Token
0 MOVR0.000152443.125
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
SolarBeamToken

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at moonriver.moonscan.io on 2021-10-28
*/

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

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

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

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

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

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

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

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

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


/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}


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


/*
 * @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 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 guidelines: functions revert instead
 * of 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 {}
}

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return recover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return recover(hash, r, vs);
        } else {
            revert("ECDSA: invalid signature length");
        }
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return recover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`, `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        require(
            uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0,
            "ECDSA: invalid signature 's' value"
        );
        require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value");

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        require(signer != address(0), "ECDSA: invalid signature");

        return signer;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}


/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}


/**
 * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 *
 * _Available since v3.4._
 */
abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {
    using Counters for Counters.Counter;

    mapping(address => Counters.Counter) private _nonces;

    // solhint-disable-next-line var-name-mixedcase
    bytes32 private immutable _PERMIT_TYPEHASH =
        keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");

    /**
     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`.
     *
     * It's a good idea to use the same `name` that is defined as the ERC20 token name.
     */
    constructor(string memory name) EIP712(name, "1") {}

    /**
     * @dev See {IERC20Permit-permit}.
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual override {
        require(block.timestamp <= deadline, "ERC20Permit: expired deadline");

        bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));

        bytes32 hash = _hashTypedDataV4(structHash);

        address signer = ECDSA.recover(hash, v, r, s);
        require(signer == owner, "ERC20Permit: invalid signature");

        _approve(owner, spender, value);
    }

    /**
     * @dev See {IERC20Permit-nonces}.
     */
    function nonces(address owner) public view virtual override returns (uint256) {
        return _nonces[owner].current();
    }

    /**
     * @dev See {IERC20Permit-DOMAIN_SEPARATOR}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view override returns (bytes32) {
        return _domainSeparatorV4();
    }

    /**
     * @dev "Consume a nonce": return the current value and increment.
     *
     * _Available since v4.1._
     */
    function _useNonce(address owner) internal virtual returns (uint256 current) {
        Counters.Counter storage nonce = _nonces[owner];
        current = nonce.current();
        nonce.increment();
    }
}

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

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

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

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


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

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    function hasRole(bytes32 role, address account) external view returns (bool);

    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    function grantRole(bytes32 role, address account) external;

    function revokeRole(bytes32 role, address account) external;

    function renounceRole(bytes32 role, address account) external;
}

/**
 * @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 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 {_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 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]{20}) is missing role (0x[0-9a-f]{32})$/
     *
     * _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]{20}) is missing role (0x[0-9a-f]{32})$/
     */
    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 {
        emit RoleAdminChanged(role, getRoleAdmin(role), adminRole);
        _roles[role].adminRole = 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());
        }
    }
}

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

/*
 * @dev Context variant with ERC2771 support.
 */
abstract contract ERC2771Context is Context {
    address immutable _trustedForwarder;

    constructor(address trustedForwarder) {
        _trustedForwarder = trustedForwarder;
    }

    function isTrustedForwarder(address forwarder) public view virtual returns (bool) {
        return forwarder == _trustedForwarder;
    }

    function _msgSender() internal view virtual override returns (address sender) {
        if (isTrustedForwarder(msg.sender)) {
            // The assembly code is more direct than the Solidity version using `abi.decode`.
            assembly {
                sender := shr(96, calldataload(sub(calldatasize(), 20)))
            }
        } else {
            return super._msgSender();
        }
    }

    function _msgData() internal view virtual override returns (bytes calldata) {
        if (isTrustedForwarder(msg.sender)) {
            return msg.data[:msg.data.length - 20];
        } else {
            return super._msgData();
        }
    }
}

contract SolarBeamToken is ERC20, ERC20Permit, Pausable, AccessControl {
    using SafeERC20 for IERC20;
    using SafeMath for uint256;

    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant RESCUER_ROLE = keccak256("RESCUER_ROLE");
    bytes32 public constant TAKE_FEE_ROLE = keccak256("TAKE_FEE_ROLE");
    bytes32 public constant ROUTER_ROLE = keccak256("ROUTER_ROLE");

    uint256 private _maxSupply = 1000000000 * 10**decimals(); // 1 billion tokens is maximum supply
    uint256 private _initialSupply = 100000 * 10**decimals(); // 100,000 tokens is the initial supply

    address private _trustedForwarder;

    // Control support for EIP-2771 Meta Transactions
    bool public metaTxnsEnabled = false;

    event TokensRescued(address indexed sender, address indexed token, uint256 value);
    event MetaTxnsEnabled(address indexed caller);
    event MetaTxnsDisabled(address indexed caller);

    constructor(address trustedForwarder) ERC20("SolarBeam Token", "SOLAR") ERC20Permit("SolarBeam Token") {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
        _setupRole(PAUSER_ROLE, _msgSender());
        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(RESCUER_ROLE, _msgSender());

        _trustedForwarder = trustedForwarder;

        _mint(_msgSender(), _initialSupply);
    }

    function isTrustedForwarder(address forwarder) public view virtual returns (bool) {
        return forwarder == _trustedForwarder;
    }

    function _msgSender() internal view override returns (address sender) {
        if (isTrustedForwarder(msg.sender)) {
            // The assembly code is more direct than the Solidity version using `abi.decode`.
            assembly {
                sender := shr(96, calldataload(sub(calldatasize(), 20)))
            }
        } else {
            return super._msgSender();
        }
    }

    function _msgData() internal view override returns (bytes calldata) {
        if (isTrustedForwarder(msg.sender)) {
            return msg.data[:msg.data.length - 20];
        } else {
            return super._msgData();
        }
    }

    /**
     * @dev Returns the maximum amount of tokens that can be minted.
     */
    function maxSupply() public view returns (uint256) {
        return _maxSupply;
    }

    function pause() public onlyRole(PAUSER_ROLE) {
        _pause();
    }

    function unpause() public onlyRole(PAUSER_ROLE) {
        _unpause();
    }

    function mint(address to, uint256 amount) public onlyRole(MINTER_ROLE) {
        require(totalSupply() + amount <= _maxSupply, "ERC20: cannot mint more tokens, cap exceeded");
        _mint(to, amount);
    }

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

    function rescueTokens(IERC20 token, uint256 value) external onlyRole(RESCUER_ROLE) {
        token.transfer(_msgSender(), value);

        emit TokensRescued(_msgSender(), address(token), value);
    }

    // Enable support for meta transactions
    function enableMetaTxns() public onlyRole(DEFAULT_ADMIN_ROLE) {
        require(!metaTxnsEnabled, "Meta transactions are already enabled");

        metaTxnsEnabled = true;
        emit MetaTxnsEnabled(_msgSender());
    }

    // Disable support for meta transactions
    function disableMetaTxns() public onlyRole(DEFAULT_ADMIN_ROLE) {
        require(metaTxnsEnabled, "Meta transactions are already disabled");

        metaTxnsEnabled = false;
        emit MetaTxnsDisabled(_msgSender());
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"trustedForwarder","type":"address"}],"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":"caller","type":"address"}],"name":"MetaTxnsDisabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"caller","type":"address"}],"name":"MetaTxnsEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TokensRescued","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESCUER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROUTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TAKE_FEE_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":[],"name":"disableMetaTxns","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableMetaTxns","outputs":[],"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":[{"internalType":"address","name":"forwarder","type":"address"}],"name":"isTrustedForwarder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metaTxnsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"rescueTokens","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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101406040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c96101205262000034620002ba565b6200004190600a6200069d565b6200005190633b9aca0062000788565b6008556200005e620002ba565b6200006b90600a6200069d565b6200007a90620186a062000788565b600955600a805460ff60a01b191690553480156200009757600080fd5b506040516200305f3803806200305f833981016040819052620000ba916200060c565b6040518060400160405280600f81526020016e29b7b630b92132b0b6902a37b5b2b760891b81525080604051806040016040528060018152602001603160f81b8152506040518060400160405280600f81526020016e29b7b630b92132b0b6902a37b5b2b760891b8152506040518060400160405280600581526020016429a7a620a960d91b81525081600390805190602001906200015b92919062000566565b5080516200017190600490602084019062000566565b5050825160208085019190912083519184019190912060c082905260e08190524660a0529091507f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f620001c6818484620002c0565b6080526101005250506006805460ff1916905550620001f4915060009050620001ee6200030a565b6200034e565b620002237f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a620001ee6200030a565b620002527f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6620001ee6200030a565b620002817fcf6f9f892731e14b8859835f2ff35575f447fb501f46243c4eb8bac19e31a050620001ee6200030a565b600a80546001600160a01b0319166001600160a01b038316179055620002b3620002aa6200030a565b6009546200035e565b50620007fd565b60125b90565b6040805160208101859052908101839052606081018290524660808201523060a082015260009060c0016040516020818303038152906040528051906020012090505b9392505050565b600a546000906001600160a01b031633141562000331575060131936013560601c620002bd565b620003466200045760201b620012231760201c565b9050620002bd565b6200035a82826200045b565b5050565b6001600160a01b038216620003ba5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620003c86000838362000501565b8060026000828254620003dc919062000635565b90915550506001600160a01b038216600090815260208190526040812080548392906200040b90849062000635565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a36200035a565b3390565b60008281526007602090815260408083206001600160a01b038516845290915290205460ff166200035a5760008281526007602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620004bd6200030a565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60065460ff1615620005495760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401620003b1565b620005618383836200056160201b620009bb1760201c565b505050565b8280546200057490620007aa565b90600052602060002090601f016020900481019282620005985760008555620005e3565b82601f10620005b357805160ff1916838001178555620005e3565b82800160010185558215620005e3579182015b82811115620005e3578251825591602001919060010190620005c6565b50620005f1929150620005f5565b5090565b5b80821115620005f15760008155600101620005f6565b6000602082840312156200061e578081fd5b81516001600160a01b038116811462000303578182fd5b600082198211156200064b576200064b620007e7565b500190565b80825b600180861162000664575062000694565b818704821115620006795762000679620007e7565b808616156200068757918102915b9490941c93800262000653565b94509492505050565b60006200030360001960ff851684600082620006bc5750600162000303565b81620006cb5750600062000303565b8160018114620006e45760028114620006ef5762000723565b600191505062000303565b60ff841115620007035762000703620007e7565b6001841b9150848211156200071c576200071c620007e7565b5062000303565b5060208310610133831016604e8410600b84101617156200075b575081810a83811115620007555762000755620007e7565b62000303565b6200076a848484600162000650565b8086048211156200077f576200077f620007e7565b02949350505050565b6000816000190483118215151615620007a557620007a5620007e7565b500290565b600281046001821680620007bf57607f821691505b60208210811415620007e157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60805160a05160c05160e05161010051610120516128126200084d60003960006110aa015260006119090152600061195801526000611933015260006118b6015260006118df01526128126000f3fe608060405234801561001057600080fd5b506004361061025c5760003560e01c80635c975abb11610145578063a457c2d7116100bd578063d53913931161008c578063d5abeb0111610071578063d5abeb0114610577578063dd62ed3e1461057f578063e63ab1e9146105c55761025c565b8063d53913931461053d578063d547741f146105645761025c565b8063a457c2d7146104df578063a8c95dc0146104f2578063a9059cbb14610517578063d505accf1461052a5761025c565b806381566eaa1161011457806391d14854116100f957806391d148541461048957806395d89b41146104cf578063a217fddf146104d75761025c565b806381566eaa1461045a5780638456cb59146104815761025c565b80635c975abb146103df57806370a08231146103ea57806371372544146104205780637ecebe00146104475761025c565b8063313ce567116101d85780633f4ba83a116101a7578063572b6c051161018c578063572b6c051461039557806357376198146103c4578063578bb42d146103d75761025c565b80633f4ba83a1461037a57806340c10f19146103825761025c565b8063313ce5671461033d5780633644e5151461034c57806336568abe1461035457806339509351146103675761025c565b806318160ddd1161022f578063248a9ca311610214578063248a9ca3146102e05780632f2ff15d1461030357806330d643b5146103165761025c565b806318160ddd146102bb57806323b872dd146102cd5761025c565b806301ffc9a71461026157806306fdde0314610289578063083836401461029e578063095ea7b3146102a8575b600080fd5b61027461026f366004612575565b6105ec565b60405190151581526020015b60405180910390f35b610291610685565b6040516102809190612636565b6102a6610718565b005b6102746102b63660046124ee565b61084f565b6002545b604051908152602001610280565b6102746102db366004612439565b61086c565b6102bf6102ee366004612539565b60009081526007602052604090206001015490565b6102a6610311366004612551565b610993565b6102bf7f7a05a596cb0ce7fdea8a1e1ec73be300bdb35097c944ce1897202f7a13122eb281565b60405160128152602001610280565b6102bf6109c0565b6102a6610362366004612551565b6109cf565b6102746103753660046124ee565b610a9f565b6102a6610b00565b6102a66103903660046124ee565b610b38565b6102746103a33660046123e5565b600a5473ffffffffffffffffffffffffffffffffffffffff90811691161490565b6102a66103d23660046124ee565b610c14565b6102a6610d7e565b60065460ff16610274565b6102bf6103f83660046123e5565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6102bf7fcf6f9f892731e14b8859835f2ff35575f447fb501f46243c4eb8bac19e31a05081565b6102bf6104553660046123e5565b610ec3565b6102bf7ffca79f3adba7490137e2d16caa9b169b63452adad6a6798627350f3fe4a4aaf081565b6102a6610eee565b610274610497366004612551565b600091825260076020908152604080842073ffffffffffffffffffffffffffffffffffffffff93909316845291905290205460ff1690565b610291610f23565b6102bf600081565b6102746104ed3660046124ee565b610f32565b600a546102749074010000000000000000000000000000000000000000900460ff1681565b6102746105253660046124ee565b611028565b6102a6610538366004612479565b61103c565b6102bf7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102a6610572366004612551565b6111fb565b6008546102bf565b6102bf61058d366004612401565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b6102bf7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b00000000000000000000000000000000000000000000000000000000148061067f57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600380546106949061273d565b80601f01602080910402602001604051908101604052809291908181526020018280546106c09061273d565b801561070d5780601f106106e25761010080835404028352916020019161070d565b820191906000526020600020905b8154815290600101906020018083116106f057829003601f168201915b505050505090505b90565b600061072b81610726611227565b611280565b600a5474010000000000000000000000000000000000000000900460ff166107da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4d657461207472616e73616374696f6e732061726520616c726561647920646960448201527f7361626c6564000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b600a80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16905561080a611227565b73ffffffffffffffffffffffffffffffffffffffff167f096be170ccc67847e55535e7d8334b2afedd95805baedc160005addb9144745060405160405180910390a250565b600061086361085c611227565b8484611352565b50600192915050565b60006108798484846114fd565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600160205260408120816108a7611227565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084016107d1565b61098885610980611227565b858403611352565b506001949350505050565b6000828152600760205260409020600101546109b181610726611227565b6109bb83836117bd565b505050565b60006109ca6118b2565b905090565b6109d7611227565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a91576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084016107d1565b610a9b82826119a8565b5050565b6000610863610aac611227565b848460016000610aba611227565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918b1681529252902054610afb9190612687565b611352565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610b2d81610726611227565b610b35611a9b565b50565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610b6581610726611227565b60085482610b7260025490565b610b7c9190612687565b1115610c0a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f45524332303a2063616e6e6f74206d696e74206d6f726520746f6b656e732c2060448201527f636170206578636565646564000000000000000000000000000000000000000060648201526084016107d1565b6109bb8383611b82565b7fcf6f9f892731e14b8859835f2ff35575f447fb501f46243c4eb8bac19e31a050610c4181610726611227565b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610c65611227565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff909116600482015260248101859052604401602060405180830381600087803b158015610cd257600080fd5b505af1158015610ce6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d0a9190612519565b508273ffffffffffffffffffffffffffffffffffffffff16610d2a611227565b73ffffffffffffffffffffffffffffffffffffffff167f77023e19c7343ad491fd706c36335ca0e738340a91f29b1fd81e2673d44896c484604051610d7191815260200190565b60405180910390a3505050565b6000610d8c81610726611227565b600a5474010000000000000000000000000000000000000000900460ff1615610e37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f4d657461207472616e73616374696f6e732061726520616c726561647920656e60448201527f61626c656400000000000000000000000000000000000000000000000000000060648201526084016107d1565b600a80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055610e7e611227565b73ffffffffffffffffffffffffffffffffffffffff167f92e4c08d47b71e8dc051232b8e475ec296489a67a4ba5cca88ff20fb6ac499e660405160405180910390a250565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604081205461067f565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610f1b81610726611227565b610b35611caf565b6060600480546106949061273d565b60008060016000610f41611227565b73ffffffffffffffffffffffffffffffffffffffff9081168252602080830193909352604091820160009081209188168152925290205490508281101561100a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016107d1565b61101e611015611227565b85858403611352565b5060019392505050565b6000610863611035611227565b84846114fd565b834211156110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e6500000060448201526064016107d1565b60007f00000000000000000000000000000000000000000000000000000000000000008888886110d58c611d70565b60408051602081019690965273ffffffffffffffffffffffffffffffffffffffff94851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061113d82611da5565b9050600061114d82878787611e0e565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111e4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e6174757265000060448201526064016107d1565b6111ef8a8a8a611352565b50505050505050505050565b60008281526007602052604090206001015461121981610726611227565b6109bb83836119a8565b3390565b600a5460009073ffffffffffffffffffffffffffffffffffffffff1633141561127757507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffec36013560601c610715565b335b9050610715565b600082815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff16610a9b576112d88173ffffffffffffffffffffffffffffffffffffffff166014612066565b6112e3836020612066565b6040516020016112f49291906125b5565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152908290527f08c379a00000000000000000000000000000000000000000000000000000000082526107d191600401612636565b73ffffffffffffffffffffffffffffffffffffffff83166113f4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016107d1565b73ffffffffffffffffffffffffffffffffffffffff8216611497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016107d1565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259101610d71565b73ffffffffffffffffffffffffffffffffffffffff83166115a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016107d1565b73ffffffffffffffffffffffffffffffffffffffff8216611643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016107d1565b61164e838383612373565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015611704576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016107d1565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260208190526040808220858503905591851681529081208054849290611748908490612687565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117ae91815260200190565b60405180910390a35b50505050565b600082815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff16610a9b57600082815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff85168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055611854611227565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60007f000000000000000000000000000000000000000000000000000000000000000046141561190357507f0000000000000000000000000000000000000000000000000000000000000000610715565b604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c09092019092528051910120611279565b600082815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff1615610a9b57600082815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff85168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055611a3d611227565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b60065460ff16611b07576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016107d1565b600680547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611b58611227565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b73ffffffffffffffffffffffffffffffffffffffff8216611bff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016107d1565b611c0b60008383612373565b8060026000828254611c1d9190612687565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604081208054839290611c57908490612687565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3610a9b565b60065460ff1615611d1c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016107d1565b600680547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611b58611227565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604090208054600181018255905b50919050565b600061067f611db26118b2565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0821115611ec0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016107d1565b8360ff16601b1480611ed557508360ff16601c145b611f61576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016107d1565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa158015611fb5573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811661205d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016107d1565b95945050505050565b6060600061207583600261269f565b612080906002612687565b67ffffffffffffffff8111156120bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120e9576020820181803683370190505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612147577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106121d1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600061220d84600261269f565b612218906001612687565b90505b6001811115612303577f303132333435363738396162636465660000000000000000000000000000000085600f1660108110612280577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106122bd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c936122fc81612708565b905061221b565b50831561236c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016107d1565b9392505050565b60065460ff16156123e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016107d1565b6109bb565b6000602082840312156123f6578081fd5b813561236c816127ba565b60008060408385031215612413578081fd5b823561241e816127ba565b9150602083013561242e816127ba565b809150509250929050565b60008060006060848603121561244d578081fd5b8335612458816127ba565b92506020840135612468816127ba565b929592945050506040919091013590565b600080600080600080600060e0888a031215612493578283fd5b873561249e816127ba565b965060208801356124ae816127ba565b95506040880135945060608801359350608088013560ff811681146124d1578384fd5b9699959850939692959460a0840135945060c09093013592915050565b60008060408385031215612500578182fd5b823561250b816127ba565b946020939093013593505050565b60006020828403121561252a578081fd5b8151801515811461236c578182fd5b60006020828403121561254a578081fd5b5035919050565b60008060408385031215612563578182fd5b82359150602083013561242e816127ba565b600060208284031215612586578081fd5b81357fffffffff000000000000000000000000000000000000000000000000000000008116811461236c578182fd5b60007f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000825283516125ed8160178501602088016126dc565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000601791840191820152835161262a8160288401602088016126dc565b01602801949350505050565b60006020825282518060208401526126558160408501602087016126dc565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b6000821982111561269a5761269a61278b565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156126d7576126d761278b565b500290565b60005b838110156126f75781810151838201526020016126df565b838111156117b75750506000910152565b6000816127175761271761278b565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b60028104600182168061275157607f821691505b60208210811415611d9f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff81168114610b3557600080fdfea26469706673582212208382c972b7ced1b659c815c57362bdee497ec700e9623f88dd7fc603b554f49864736f6c634300080200330000000000000000000000000d0b4862f5ffa3a47d04ddf0351356d20c830460

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061025c5760003560e01c80635c975abb11610145578063a457c2d7116100bd578063d53913931161008c578063d5abeb0111610071578063d5abeb0114610577578063dd62ed3e1461057f578063e63ab1e9146105c55761025c565b8063d53913931461053d578063d547741f146105645761025c565b8063a457c2d7146104df578063a8c95dc0146104f2578063a9059cbb14610517578063d505accf1461052a5761025c565b806381566eaa1161011457806391d14854116100f957806391d148541461048957806395d89b41146104cf578063a217fddf146104d75761025c565b806381566eaa1461045a5780638456cb59146104815761025c565b80635c975abb146103df57806370a08231146103ea57806371372544146104205780637ecebe00146104475761025c565b8063313ce567116101d85780633f4ba83a116101a7578063572b6c051161018c578063572b6c051461039557806357376198146103c4578063578bb42d146103d75761025c565b80633f4ba83a1461037a57806340c10f19146103825761025c565b8063313ce5671461033d5780633644e5151461034c57806336568abe1461035457806339509351146103675761025c565b806318160ddd1161022f578063248a9ca311610214578063248a9ca3146102e05780632f2ff15d1461030357806330d643b5146103165761025c565b806318160ddd146102bb57806323b872dd146102cd5761025c565b806301ffc9a71461026157806306fdde0314610289578063083836401461029e578063095ea7b3146102a8575b600080fd5b61027461026f366004612575565b6105ec565b60405190151581526020015b60405180910390f35b610291610685565b6040516102809190612636565b6102a6610718565b005b6102746102b63660046124ee565b61084f565b6002545b604051908152602001610280565b6102746102db366004612439565b61086c565b6102bf6102ee366004612539565b60009081526007602052604090206001015490565b6102a6610311366004612551565b610993565b6102bf7f7a05a596cb0ce7fdea8a1e1ec73be300bdb35097c944ce1897202f7a13122eb281565b60405160128152602001610280565b6102bf6109c0565b6102a6610362366004612551565b6109cf565b6102746103753660046124ee565b610a9f565b6102a6610b00565b6102a66103903660046124ee565b610b38565b6102746103a33660046123e5565b600a5473ffffffffffffffffffffffffffffffffffffffff90811691161490565b6102a66103d23660046124ee565b610c14565b6102a6610d7e565b60065460ff16610274565b6102bf6103f83660046123e5565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6102bf7fcf6f9f892731e14b8859835f2ff35575f447fb501f46243c4eb8bac19e31a05081565b6102bf6104553660046123e5565b610ec3565b6102bf7ffca79f3adba7490137e2d16caa9b169b63452adad6a6798627350f3fe4a4aaf081565b6102a6610eee565b610274610497366004612551565b600091825260076020908152604080842073ffffffffffffffffffffffffffffffffffffffff93909316845291905290205460ff1690565b610291610f23565b6102bf600081565b6102746104ed3660046124ee565b610f32565b600a546102749074010000000000000000000000000000000000000000900460ff1681565b6102746105253660046124ee565b611028565b6102a6610538366004612479565b61103c565b6102bf7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102a6610572366004612551565b6111fb565b6008546102bf565b6102bf61058d366004612401565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b6102bf7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b00000000000000000000000000000000000000000000000000000000148061067f57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600380546106949061273d565b80601f01602080910402602001604051908101604052809291908181526020018280546106c09061273d565b801561070d5780601f106106e25761010080835404028352916020019161070d565b820191906000526020600020905b8154815290600101906020018083116106f057829003601f168201915b505050505090505b90565b600061072b81610726611227565b611280565b600a5474010000000000000000000000000000000000000000900460ff166107da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4d657461207472616e73616374696f6e732061726520616c726561647920646960448201527f7361626c6564000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b600a80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16905561080a611227565b73ffffffffffffffffffffffffffffffffffffffff167f096be170ccc67847e55535e7d8334b2afedd95805baedc160005addb9144745060405160405180910390a250565b600061086361085c611227565b8484611352565b50600192915050565b60006108798484846114fd565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600160205260408120816108a7611227565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084016107d1565b61098885610980611227565b858403611352565b506001949350505050565b6000828152600760205260409020600101546109b181610726611227565b6109bb83836117bd565b505050565b60006109ca6118b2565b905090565b6109d7611227565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a91576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084016107d1565b610a9b82826119a8565b5050565b6000610863610aac611227565b848460016000610aba611227565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918b1681529252902054610afb9190612687565b611352565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610b2d81610726611227565b610b35611a9b565b50565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610b6581610726611227565b60085482610b7260025490565b610b7c9190612687565b1115610c0a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f45524332303a2063616e6e6f74206d696e74206d6f726520746f6b656e732c2060448201527f636170206578636565646564000000000000000000000000000000000000000060648201526084016107d1565b6109bb8383611b82565b7fcf6f9f892731e14b8859835f2ff35575f447fb501f46243c4eb8bac19e31a050610c4181610726611227565b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610c65611227565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff909116600482015260248101859052604401602060405180830381600087803b158015610cd257600080fd5b505af1158015610ce6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d0a9190612519565b508273ffffffffffffffffffffffffffffffffffffffff16610d2a611227565b73ffffffffffffffffffffffffffffffffffffffff167f77023e19c7343ad491fd706c36335ca0e738340a91f29b1fd81e2673d44896c484604051610d7191815260200190565b60405180910390a3505050565b6000610d8c81610726611227565b600a5474010000000000000000000000000000000000000000900460ff1615610e37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f4d657461207472616e73616374696f6e732061726520616c726561647920656e60448201527f61626c656400000000000000000000000000000000000000000000000000000060648201526084016107d1565b600a80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055610e7e611227565b73ffffffffffffffffffffffffffffffffffffffff167f92e4c08d47b71e8dc051232b8e475ec296489a67a4ba5cca88ff20fb6ac499e660405160405180910390a250565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604081205461067f565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610f1b81610726611227565b610b35611caf565b6060600480546106949061273d565b60008060016000610f41611227565b73ffffffffffffffffffffffffffffffffffffffff9081168252602080830193909352604091820160009081209188168152925290205490508281101561100a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016107d1565b61101e611015611227565b85858403611352565b5060019392505050565b6000610863611035611227565b84846114fd565b834211156110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e6500000060448201526064016107d1565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886110d58c611d70565b60408051602081019690965273ffffffffffffffffffffffffffffffffffffffff94851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061113d82611da5565b9050600061114d82878787611e0e565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111e4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e6174757265000060448201526064016107d1565b6111ef8a8a8a611352565b50505050505050505050565b60008281526007602052604090206001015461121981610726611227565b6109bb83836119a8565b3390565b600a5460009073ffffffffffffffffffffffffffffffffffffffff1633141561127757507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffec36013560601c610715565b335b9050610715565b600082815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff16610a9b576112d88173ffffffffffffffffffffffffffffffffffffffff166014612066565b6112e3836020612066565b6040516020016112f49291906125b5565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152908290527f08c379a00000000000000000000000000000000000000000000000000000000082526107d191600401612636565b73ffffffffffffffffffffffffffffffffffffffff83166113f4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016107d1565b73ffffffffffffffffffffffffffffffffffffffff8216611497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016107d1565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259101610d71565b73ffffffffffffffffffffffffffffffffffffffff83166115a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016107d1565b73ffffffffffffffffffffffffffffffffffffffff8216611643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016107d1565b61164e838383612373565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015611704576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016107d1565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260208190526040808220858503905591851681529081208054849290611748908490612687565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117ae91815260200190565b60405180910390a35b50505050565b600082815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff16610a9b57600082815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff85168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055611854611227565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60007f000000000000000000000000000000000000000000000000000000000000050546141561190357507fb86034b2208aeda0e9dbcdd23a6607d89e5f265b7222e73351f447e93f2e7eec610715565b604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527f93bb05ad484aa4dfdffee18b07bc696dad2829e1eb8d38dc19664f5893d9dba7828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c09092019092528051910120611279565b600082815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff1615610a9b57600082815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff85168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055611a3d611227565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b60065460ff16611b07576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016107d1565b600680547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611b58611227565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b73ffffffffffffffffffffffffffffffffffffffff8216611bff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016107d1565b611c0b60008383612373565b8060026000828254611c1d9190612687565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604081208054839290611c57908490612687565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3610a9b565b60065460ff1615611d1c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016107d1565b600680547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611b58611227565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604090208054600181018255905b50919050565b600061067f611db26118b2565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0821115611ec0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016107d1565b8360ff16601b1480611ed557508360ff16601c145b611f61576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016107d1565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa158015611fb5573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811661205d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016107d1565b95945050505050565b6060600061207583600261269f565b612080906002612687565b67ffffffffffffffff8111156120bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120e9576020820181803683370190505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612147577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106121d1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600061220d84600261269f565b612218906001612687565b90505b6001811115612303577f303132333435363738396162636465660000000000000000000000000000000085600f1660108110612280577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106122bd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c936122fc81612708565b905061221b565b50831561236c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016107d1565b9392505050565b60065460ff16156123e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016107d1565b6109bb565b6000602082840312156123f6578081fd5b813561236c816127ba565b60008060408385031215612413578081fd5b823561241e816127ba565b9150602083013561242e816127ba565b809150509250929050565b60008060006060848603121561244d578081fd5b8335612458816127ba565b92506020840135612468816127ba565b929592945050506040919091013590565b600080600080600080600060e0888a031215612493578283fd5b873561249e816127ba565b965060208801356124ae816127ba565b95506040880135945060608801359350608088013560ff811681146124d1578384fd5b9699959850939692959460a0840135945060c09093013592915050565b60008060408385031215612500578182fd5b823561250b816127ba565b946020939093013593505050565b60006020828403121561252a578081fd5b8151801515811461236c578182fd5b60006020828403121561254a578081fd5b5035919050565b60008060408385031215612563578182fd5b82359150602083013561242e816127ba565b600060208284031215612586578081fd5b81357fffffffff000000000000000000000000000000000000000000000000000000008116811461236c578182fd5b60007f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000825283516125ed8160178501602088016126dc565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000601791840191820152835161262a8160288401602088016126dc565b01602801949350505050565b60006020825282518060208401526126558160408501602087016126dc565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b6000821982111561269a5761269a61278b565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156126d7576126d761278b565b500290565b60005b838110156126f75781810151838201526020016126df565b838111156117b75750506000910152565b6000816127175761271761278b565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b60028104600182168061275157607f821691505b60208210811415611d9f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff81168114610b3557600080fdfea26469706673582212208382c972b7ced1b659c815c57362bdee497ec700e9623f88dd7fc603b554f49864736f6c63430008020033

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

0000000000000000000000000d0b4862f5ffa3a47d04ddf0351356d20c830460

-----Decoded View---------------
Arg [0] : trustedForwarder (address): 0x0D0b4862F5FfA3A47D04DDf0351356d20C830460

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000d0b4862f5ffa3a47d04ddf0351356d20c830460


Deployed Bytecode Sourcemap

66405:3813:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53899:204;;;;;;:::i;:::-;;:::i;:::-;;;5799:14:1;;5792:22;5774:41;;5762:2;5747:18;53899:204:0;;;;;;;;17698:100;;;:::i;:::-;;;;;;;:::i;69985:230::-;;;:::i;:::-;;19865:169;;;;;;:::i;:::-;;:::i;18818:108::-;18906:12;;18818:108;;;5972:25:1;;;5960:2;5945:18;18818:108:0;5927:76:1;20516:492:0;;;;;;:::i;:::-;;:::i;55310:123::-;;;;;;:::i;:::-;55376:7;55403:12;;;:6;:12;;;;;:22;;;;55310:123;55695:147;;;;;;:::i;:::-;;:::i;66833:62::-;;66871:24;66833:62;;18660:93;;;18743:2;16091:36:1;;16079:2;16064:18;18660:93:0;16046:87:1;43644:115:0;;;:::i;56743:218::-;;;;;;:::i;:::-;;:::i;21417:215::-;;;;;;:::i;:::-;;:::i;68933:77::-;;;:::i;69018:211::-;;;;;;:::i;:::-;;:::i;67862:138::-;;;;;;:::i;:::-;67975:17;;;;;;67962:30;;;;67862:138;69446:205;;;;;;:::i;:::-;;:::i;69704:227::-;;;:::i;45094:86::-;45165:7;;;;45094:86;;18989:127;;;;;;:::i;:::-;19090:18;;19063:7;19090:18;;;;;;;;;;;;18989:127;66689:64;;66728:25;66689:64;;43386:128;;;;;;:::i;:::-;;:::i;66760:66::-;;66800:26;66760:66;;68852:73;;;:::i;54195:139::-;;;;;;:::i;:::-;54273:4;54297:12;;;:6;:12;;;;;;;;:29;;;;;;;;;;;;;;;;54195:139;17917:104;;;:::i;52173:49::-;;52218:4;52173:49;;22135:413;;;;;;:::i;:::-;;:::i;67207:35::-;;;;;;;;;;;;19329:175;;;;;;:::i;:::-;;:::i;42675:645::-;;;;;;:::i;:::-;;:::i;66620:62::-;;66658:24;66620:62;;56087:149;;;;;;:::i;:::-;;:::i;68757:87::-;68826:10;;68757:87;;19567:151;;;;;;:::i;:::-;19683:18;;;;19656:7;19683:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19567:151;66551:62;;66589:24;66551:62;;53899:204;53984:4;54008:47;;;54023:32;54008:47;;:87;;-1:-1:-1;49841:25:0;49826:40;;;;54059:36;54001:94;53899:204;-1:-1:-1;;53899:204:0:o;17698:100::-;17752:13;17785:5;17778:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17698:100;;:::o;69985:230::-;52218:4;53777:30;52218:4;53794:12;:10;:12::i;:::-;53777:10;:30::i;:::-;70067:15:::1;::::0;;;::::1;;;70059:66;;;::::0;::::1;::::0;;10066:2:1;70059:66:0::1;::::0;::::1;10048:21:1::0;10105:2;10085:18;;;10078:30;10144:34;10124:18;;;10117:62;10215:8;10195:18;;;10188:36;10241:19;;70059:66:0::1;;;;;;;;;70138:15;:23:::0;;;::::1;::::0;;70194:12:::1;:10;:12::i;:::-;70177:30;;;;;;;;;;;;69985:230:::0;:::o;19865:169::-;19948:4;19965:39;19974:12;:10;:12::i;:::-;19988:7;19997:6;19965:8;:39::i;:::-;-1:-1:-1;20022:4:0;19865:169;;;;:::o;20516:492::-;20656:4;20673:36;20683:6;20691:9;20702:6;20673:9;:36::i;:::-;20749:19;;;20722:24;20749:19;;;:11;:19;;;;;20722:24;20769:12;:10;:12::i;:::-;20749:33;;;;;;;;;;;;;;;;20722:60;;20821:6;20801:16;:26;;20793:79;;;;;;;12748:2:1;20793:79:0;;;12730:21:1;12787:2;12767:18;;;12760:30;12826:34;12806:18;;;12799:62;12897:10;12877:18;;;12870:38;12925:19;;20793:79:0;12720:230:1;20793:79:0;20908:57;20917:6;20925:12;:10;:12::i;:::-;20958:6;20939:16;:25;20908:8;:57::i;:::-;-1:-1:-1;20996:4:0;;20516:492;-1:-1:-1;;;;20516:492:0:o;55695:147::-;55376:7;55403:12;;;:6;:12;;;;;:22;;;53777:30;53788:4;53794:12;:10;:12::i;53777:30::-;55809:25:::1;55820:4;55826:7;55809:10;:25::i;:::-;55695:147:::0;;;:::o;43644:115::-;43704:7;43731:20;:18;:20::i;:::-;43724:27;;43644:115;:::o;56743:218::-;56850:12;:10;:12::i;:::-;56839:23;;:7;:23;;;56831:83;;;;;;;15193:2:1;56831:83:0;;;15175:21:1;15232:2;15212:18;;;15205:30;15271:34;15251:18;;;15244:62;15342:17;15322:18;;;15315:45;15377:19;;56831:83:0;15165:237:1;56831:83:0;56927:26;56939:4;56945:7;56927:11;:26::i;:::-;56743:218;;:::o;21417:215::-;21505:4;21522:80;21531:12;:10;:12::i;:::-;21545:7;21591:10;21554:11;:25;21566:12;:10;:12::i;:::-;21554:25;;;;;;;;;;;;;;;;;;-1:-1:-1;21554:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;21522:8;:80::i;68933:77::-;66589:24;53777:30;53788:4;53794:12;:10;:12::i;53777:30::-;68992:10:::1;:8;:10::i;:::-;68933:77:::0;:::o;69018:211::-;66658:24;53777:30;53788:4;53794:12;:10;:12::i;53777:30::-;69134:10:::1;;69124:6;69108:13;18906:12:::0;;18818:108;;69108:13:::1;:22;;;;:::i;:::-;:36;;69100:93;;;::::0;::::1;::::0;;13969:2:1;69100:93:0::1;::::0;::::1;13951:21:1::0;14008:2;13988:18;;;13981:30;14047:34;14027:18;;;14020:62;14118:14;14098:18;;;14091:42;14150:19;;69100:93:0::1;13941:234:1::0;69100:93:0::1;69204:17;69210:2;69214:6;69204:5;:17::i;69446:205::-:0;66728:25;53777:30;53788:4;53794:12;:10;:12::i;53777:30::-;69540:5:::1;:14;;;69555:12;:10;:12::i;:::-;69540:35;::::0;;::::1;::::0;;;;;;5536:42:1;5524:55;;;69540:35:0::1;::::0;::::1;5506:74:1::0;5596:18;;;5589:34;;;5479:18;;69540:35:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;69629:5;69593:50;;69607:12;:10;:12::i;:::-;69593:50;;;69637:5;69593:50;;;;5972:25:1::0;;5960:2;5945:18;;5927:76;69593:50:0::1;;;;;;;;69446:205:::0;;;:::o;69704:227::-;52218:4;53777:30;52218:4;53794:12;:10;:12::i;53777:30::-;69786:15:::1;::::0;;;::::1;;;69785:16;69777:66;;;::::0;::::1;::::0;;13157:2:1;69777:66:0::1;::::0;::::1;13139:21:1::0;13196:2;13176:18;;;13169:30;13235:34;13215:18;;;13208:62;13306:7;13286:18;;;13279:35;13331:19;;69777:66:0::1;13129:227:1::0;69777:66:0::1;69856:15;:22:::0;;;::::1;::::0;::::1;::::0;;69910:12:::1;:10;:12::i;:::-;69894:29;;;;;;;;;;;;69704:227:::0;:::o;43386:128::-;43482:14;;;43455:7;43482:14;;;:7;:14;;;;;40912;43482:24;40820:114;68852:73;66589:24;53777:30;53788:4;53794:12;:10;:12::i;53777:30::-;68909:8:::1;:6;:8::i;17917:104::-:0;17973:13;18006:7;17999:14;;;;;:::i;22135:413::-;22228:4;22245:24;22272:11;:25;22284:12;:10;:12::i;:::-;22272:25;;;;;;;;;;;;;;;;;;-1:-1:-1;22272:25:0;;;:34;;;;;;;;;;;-1:-1:-1;22325:35:0;;;;22317:85;;;;;;;14787:2:1;22317:85:0;;;14769:21:1;14826:2;14806:18;;;14799:30;14865:34;14845:18;;;14838:62;14936:7;14916:18;;;14909:35;14961:19;;22317:85:0;14759:227:1;22317:85:0;22438:67;22447:12;:10;:12::i;:::-;22461:7;22489:15;22470:16;:34;22438:8;:67::i;:::-;-1:-1:-1;22536:4:0;;22135:413;-1:-1:-1;;;22135:413:0:o;19329:175::-;19415:4;19432:42;19442:12;:10;:12::i;:::-;19456:9;19467:6;19432:9;:42::i;42675:645::-;42919:8;42900:15;:27;;42892:69;;;;;;;10473:2:1;42892:69:0;;;10455:21:1;10512:2;10492:18;;;10485:30;10551:31;10531:18;;;10524:59;10600:18;;42892:69:0;10445:179:1;42892:69:0;42974:18;43016:16;43034:5;43041:7;43050:5;43057:16;43067:5;43057:9;:16::i;:::-;43005:79;;;;;;6295:25:1;;;;6339:42;6417:15;;;6397:18;;;6390:43;6469:15;;;;6449:18;;;6442:43;6501:18;;;6494:34;6544:19;;;6537:35;6588:19;;;6581:35;;;6267:19;;43005:79:0;;;;;;;;;;;;42995:90;;;;;;42974:111;;43098:12;43113:28;43130:10;43113:16;:28::i;:::-;43098:43;;43154:14;43171:28;43185:4;43191:1;43194;43197;43171:13;:28::i;:::-;43154:45;;43228:5;43218:15;;:6;:15;;;43210:58;;;;;;;12389:2:1;43210:58:0;;;12371:21:1;12428:2;12408:18;;;12401:30;12467:32;12447:18;;;12440:60;12517:18;;43210:58:0;12361:180:1;43210:58:0;43281:31;43290:5;43297:7;43306:5;43281:8;:31::i;:::-;42675:645;;;;;;;;;;:::o;56087:149::-;55376:7;55403:12;;;:6;:12;;;;;:22;;;53777:30;53788:4;53794:12;:10;:12::i;53777:30::-;56202:26:::1;56214:4;56220:7;56202:11;:26::i;15515:98::-:0;15595:10;15515:98;:::o;68008:402::-;67975:17;;68062:14;;67975:17;;68112:10;67962:30;68089:314;;;-1:-1:-1;68294:23:0;68298:14;68294:23;68281:37;68277:2;68273:46;68244:90;;;15595:10;68373:18;68366:25;;;;54624:497;54273:4;54297:12;;;:6;:12;;;;;;;;:29;;;;;;;;;;;;;54700:414;;54893:41;54921:7;54893:41;;54931:2;54893:19;:41::i;:::-;55007:38;55035:4;55042:2;55007:19;:38::i;:::-;54798:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;54744:358;;;;;;;;:::i;25819:380::-;25955:19;;;25947:68;;;;;;;14382:2:1;25947:68:0;;;14364:21:1;14421:2;14401:18;;;14394:30;14460:34;14440:18;;;14433:62;14531:6;14511:18;;;14504:34;14555:19;;25947:68:0;14354:226:1;25947:68:0;26034:21;;;26026:68;;;;;;;9663:2:1;26026:68:0;;;9645:21:1;9702:2;9682:18;;;9675:30;9741:34;9721:18;;;9714:62;9812:4;9792:18;;;9785:32;9834:19;;26026:68:0;9635:224:1;26026:68:0;26107:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;26159:32;;5972:25:1;;;26159:32:0;;5945:18:1;26159:32:0;5927:76:1;23038:733:0;23178:20;;;23170:70;;;;;;;13563:2:1;23170:70:0;;;13545:21:1;13602:2;13582:18;;;13575:30;13641:34;13621:18;;;13614:62;13712:7;13692:18;;;13685:35;13737:19;;23170:70:0;13535:227:1;23170:70:0;23259:23;;;23251:71;;;;;;;8910:2:1;23251:71:0;;;8892:21:1;8949:2;8929:18;;;8922:30;8988:34;8968:18;;;8961:62;9059:5;9039:18;;;9032:33;9082:19;;23251:71:0;8882:225:1;23251:71:0;23335:47;23356:6;23364:9;23375:6;23335:20;:47::i;:::-;23419:17;;;23395:21;23419:17;;;;;;;;;;;23455:23;;;;23447:74;;;;;;;10831:2:1;23447:74:0;;;10813:21:1;10870:2;10850:18;;;10843:30;10909:34;10889:18;;;10882:62;10980:8;10960:18;;;10953:36;11006:19;;23447:74:0;10803:228:1;23447:74:0;23557:17;;;;:9;:17;;;;;;;;;;;23577:22;;;23557:42;;23621:20;;;;;;;;:30;;23593:6;;23557:9;23621:30;;23593:6;;23621:30;:::i;:::-;;;;;;;;23686:9;23669:35;;23678:6;23669:35;;;23697:6;23669:35;;;;5972:25:1;;5960:2;5945:18;;5927:76;23669:35:0;;;;;;;;23717:46;23038:733;;;;:::o;57991:229::-;54273:4;54297:12;;;:6;:12;;;;;;;;:29;;;;;;;;;;;;;58061:152;;58105:12;;;;:6;:12;;;;;;;;:29;;;;;;;;;;:36;;;;58137:4;58105:36;;;58188:12;:10;:12::i;:::-;58161:40;;58179:7;58161:40;;58173:4;58161:40;;;;;;;;;;57991:229;;:::o;38721:281::-;38774:7;38815:16;38798:13;:33;38794:201;;;-1:-1:-1;38855:24:0;38848:31;;38794:201;39191:73;;;38941:10;39191:73;;;;6886:25:1;;;;38953:12:0;6927:18:1;;;6920:34;38967:15:0;6970:18:1;;;6963:34;39235:13:0;7013:18:1;;;7006:34;39258:4:0;7056:19:1;;;;7049:84;;;;39191:73:0;;;;;;;;;;6858:19:1;;;;39191:73:0;;;39181:84;;;;;38919:64;39010:263;58228:230;54273:4;54297:12;;;:6;:12;;;;;;;;:29;;;;;;;;;;;;;58299:152;;;58374:5;58342:12;;;:6;:12;;;;;;;;:29;;;;;;;;;;:37;;;;;;58426:12;:10;:12::i;:::-;58399:40;;58417:7;58399:40;;58411:4;58399:40;;;;;;;;;;58228:230;;:::o;46153:120::-;45165:7;;;;45689:41;;;;;;;9314:2:1;45689:41:0;;;9296:21:1;9353:2;9333:18;;;9326:30;9392:22;9372:18;;;9365:50;9432:18;;45689:41:0;9286:170:1;45689:41:0;46212:7:::1;:15:::0;;;::::1;::::0;;46243:22:::1;46252:12;:10;:12::i;:::-;46243:22;::::0;5277:42:1;5265:55;;;5247:74;;5235:2;5220:18;46243:22:0::1;;;;;;;46153:120::o:0;24058:399::-;24142:21;;;24134:65;;;;;;;15609:2:1;24134:65:0;;;15591:21:1;15648:2;15628:18;;;15621:30;15687:33;15667:18;;;15660:61;15738:18;;24134:65:0;15581:181:1;24134:65:0;24212:49;24241:1;24245:7;24254:6;24212:20;:49::i;:::-;24290:6;24274:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;24307:18:0;;;:9;:18;;;;;;;;;;:28;;24329:6;;24307:9;:28;;24329:6;;24307:28;:::i;:::-;;;;-1:-1:-1;;24351:37:0;;5972:25:1;;;24351:37:0;;;;24368:1;;24351:37;;5960:2:1;5945:18;24351:37:0;;;;;;;24401:48;55695:147;45894:118;45165:7;;;;45419:9;45411:38;;;;;;;11641:2:1;45411:38:0;;;11623:21:1;11680:2;11660:18;;;11653:30;11719:18;11699;;;11692:46;11755:18;;45411:38:0;11613:166:1;45411:38:0;45954:7:::1;:14:::0;;;::::1;45964:4;45954:14;::::0;;45984:20:::1;45991:12;:10;:12::i;43897:207::-:0;44018:14;;;43957:15;44018:14;;;:7;:14;;;;;40912;;41049:1;41031:19;;;;40912:14;44079:17;43897:207;;;;:::o;39915:167::-;39992:7;40019:55;40041:20;:18;:20::i;:::-;40063:10;35677:57;;4131:66:1;35677:57:0;;;4119:79:1;4214:11;;;4207:27;;;4250:12;;;4243:28;;;35640:7:0;;4287:12:1;;35677:57:0;;;;;;;;;;;;35667:68;;;;;;35660:75;;35547:196;;;;;33116:1512;33244:7;34183:66;34169:80;;;34147:164;;;;;;;11238:2:1;34147:164:0;;;11220:21:1;11277:2;11257:18;;;11250:30;11316:34;11296:18;;;11289:62;11387:4;11367:18;;;11360:32;11409:19;;34147:164:0;11210:224:1;34147:164:0;34330:1;:7;;34335:2;34330:7;:18;;;;34341:1;:7;;34346:2;34341:7;34330:18;34322:65;;;;;;;11986:2:1;34322:65:0;;;11968:21:1;12025:2;12005:18;;;11998:30;12064:34;12044:18;;;12037:62;12135:4;12115:18;;;12108:32;12157:19;;34322:65:0;11958:224:1;34322:65:0;34502:24;;;34485:14;34502:24;;;;;;;;;7371:25:1;;;7444:4;7432:17;;7412:18;;;7405:45;;;;7466:18;;;7459:34;;;7509:18;;;7502:34;;;34502:24:0;;7343:19:1;;34502:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;34502:24:0;;;;;;-1:-1:-1;;34545:20:0;;;34537:57;;;;;;;8196:2:1;34537:57:0;;;8178:21:1;8235:2;8215:18;;;8208:30;8274:26;8254:18;;;8247:54;8318:18;;34537:57:0;8168:174:1;34537:57:0;34614:6;33116:1512;-1:-1:-1;;;;;33116:1512:0:o;47807:451::-;47882:13;47908:19;47940:10;47944:6;47940:1;:10;:::i;:::-;:14;;47953:1;47940:14;:::i;:::-;47930:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47930:25:0;;47908:47;;47966:15;:6;47973:1;47966:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;47992;:6;47999:1;47992:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;-1:-1:-1;48023:9:0;48035:10;48039:6;48035:1;:10;:::i;:::-;:14;;48048:1;48035:14;:::i;:::-;48023:26;;48018:135;48055:1;48051;:5;48018:135;;;48090:12;48103:5;48111:3;48103:11;48090:25;;;;;;;;;;;;;;;;;;48078:6;48085:1;48078:9;;;;;;;;;;;;;;;;;;;:37;;;;;;;;;;-1:-1:-1;48140:1:0;48130:11;;;;;48058:3;;;:::i;:::-;;;48018:135;;;-1:-1:-1;48171:10:0;;48163:55;;;;;;;8549:2:1;48163:55:0;;;8531:21:1;;;8568:18;;;8561:30;8627:34;8607:18;;;8600:62;8679:18;;48163:55:0;8521:182:1;48163:55:0;48243:6;47807:451;-1:-1:-1;;;47807:451:0:o;69237:201::-;45165:7;;;;45419:9;45411:38;;;;;;;11641:2:1;45411:38:0;;;11623:21:1;11680:2;11660:18;;;11653:30;11719:18;11699;;;11692:46;11755:18;;45411:38:0;11613:166:1;45411:38:0;69386:44:::1;55695:147:::0;14:257:1;;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:31;235:5;210:31;:::i;276:398::-;;;405:2;393:9;384:7;380:23;376:32;373:2;;;426:6;418;411:22;373:2;470:9;457:23;489:31;514:5;489:31;:::i;:::-;539:5;-1:-1:-1;596:2:1;581:18;;568:32;609:33;568:32;609:33;:::i;:::-;661:7;651:17;;;363:311;;;;;:::o;679:466::-;;;;825:2;813:9;804:7;800:23;796:32;793:2;;;846:6;838;831:22;793:2;890:9;877:23;909:31;934:5;909:31;:::i;:::-;959:5;-1:-1:-1;1016:2:1;1001:18;;988:32;1029:33;988:32;1029:33;:::i;:::-;783:362;;1081:7;;-1:-1:-1;;;1135:2:1;1120:18;;;;1107:32;;783:362::o;1150:849::-;;;;;;;;1362:3;1350:9;1341:7;1337:23;1333:33;1330:2;;;1384:6;1376;1369:22;1330:2;1428:9;1415:23;1447:31;1472:5;1447:31;:::i;:::-;1497:5;-1:-1:-1;1554:2:1;1539:18;;1526:32;1567:33;1526:32;1567:33;:::i;:::-;1619:7;-1:-1:-1;1673:2:1;1658:18;;1645:32;;-1:-1:-1;1724:2:1;1709:18;;1696:32;;-1:-1:-1;1780:3:1;1765:19;;1752:33;1829:4;1816:18;;1804:31;;1794:2;;1854:6;1846;1839:22;1794:2;1320:679;;;;-1:-1:-1;1320:679:1;;;;1882:7;1936:3;1921:19;;1908:33;;-1:-1:-1;1988:3:1;1973:19;;;1960:33;;1320:679;-1:-1:-1;;1320:679:1:o;2004:325::-;;;2133:2;2121:9;2112:7;2108:23;2104:32;2101:2;;;2154:6;2146;2139:22;2101:2;2198:9;2185:23;2217:31;2242:5;2217:31;:::i;:::-;2267:5;2319:2;2304:18;;;;2291:32;;-1:-1:-1;;;2091:238:1:o;2334:297::-;;2454:2;2442:9;2433:7;2429:23;2425:32;2422:2;;;2475:6;2467;2460:22;2422:2;2512:9;2506:16;2565:5;2558:13;2551:21;2544:5;2541:32;2531:2;;2592:6;2584;2577:22;2636:190;;2748:2;2736:9;2727:7;2723:23;2719:32;2716:2;;;2769:6;2761;2754:22;2716:2;-1:-1:-1;2797:23:1;;2706:120;-1:-1:-1;2706:120:1:o;2831:325::-;;;2960:2;2948:9;2939:7;2935:23;2931:32;2928:2;;;2981:6;2973;2966:22;2928:2;3022:9;3009:23;2999:33;;3082:2;3071:9;3067:18;3054:32;3095:31;3120:5;3095:31;:::i;3161:352::-;;3272:2;3260:9;3251:7;3247:23;3243:32;3240:2;;;3293:6;3285;3278:22;3240:2;3337:9;3324:23;3387:66;3380:5;3376:78;3369:5;3366:89;3356:2;;3474:6;3466;3459:22;4310:786;;4721:25;4716:3;4709:38;4776:6;4770:13;4792:62;4847:6;4842:2;4837:3;4833:12;4826:4;4818:6;4814:17;4792:62;:::i;:::-;4918:19;4913:2;4873:16;;;4905:11;;;4898:40;4963:13;;4985:63;4963:13;5034:2;5026:11;;5019:4;5007:17;;4985:63;:::i;:::-;5068:17;5087:2;5064:26;;4699:397;-1:-1:-1;;;;4699:397:1:o;7547:442::-;;7696:2;7685:9;7678:21;7728:6;7722:13;7771:6;7766:2;7755:9;7751:18;7744:34;7787:66;7846:6;7841:2;7830:9;7826:18;7821:2;7813:6;7809:15;7787:66;:::i;:::-;7905:2;7893:15;7910:66;7889:88;7874:104;;;;7980:2;7870:113;;7668:321;-1:-1:-1;;7668:321:1:o;16138:128::-;;16209:1;16205:6;16202:1;16199:13;16196:2;;;16215:18;;:::i;:::-;-1:-1:-1;16251:9:1;;16186:80::o;16271:228::-;;16437:1;16369:66;16365:74;16362:1;16359:81;16354:1;16347:9;16340:17;16336:105;16333:2;;;16444:18;;:::i;:::-;-1:-1:-1;16484:9:1;;16323:176::o;16504:258::-;16576:1;16586:113;16600:6;16597:1;16594:13;16586:113;;;16676:11;;;16670:18;16657:11;;;16650:39;16622:2;16615:10;16586:113;;;16717:6;16714:1;16711:13;16708:2;;;-1:-1:-1;;16752:1:1;16734:16;;16727:27;16557:205::o;16767:196::-;;16834:5;16824:2;;16843:18;;:::i;:::-;-1:-1:-1;16890:66:1;16879:78;;16814:149::o;16968:437::-;17053:1;17043:12;;17100:1;17090:12;;;17111:2;;17165:4;17157:6;17153:17;17143:27;;17111:2;17218;17210:6;17207:14;17187:18;17184:38;17181:2;;;17255:77;17252:1;17245:88;17356:4;17353:1;17346:15;17384:4;17381:1;17374:15;17410:184;17462:77;17459:1;17452:88;17559:4;17556:1;17549:15;17583:4;17580:1;17573:15;17599:154;17685:42;17678:5;17674:54;17667:5;17664:65;17654:2;;17743:1;17740;17733:12

Swarm Source

ipfs://8382c972b7ced1b659c815c57362bdee497ec700e9623f88dd7fc603b554f498

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

Solarbeam is a decentralized exchange, providing liquidity and enabling peer-to-peer transactions on the Moonriver Network.

Validator Index Block Amount
View All Withdrawals

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.