POL Price: $0.616933 (-1.26%)
 

Overview

Max Total Supply

1,959,820,133.114280200031698944 RUM

Holders

2,428

Total Transfers

-

Market

Price

$0.00 @ 0.000000 POL

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
RumToken

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 17 : RumToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.25;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "./AntiBot.sol";

/**
 * @title RumToken
 * @dev Implementation of the RumToken ERC20 with anti-bot features.
 */
contract RumToken is ERC20, ERC20Burnable, ERC20Permit, ERC165, AccessControl, AntiBot {    
    bytes32 public constant SUPERVISED_TRANSFER_FROM_ROLE = keccak256("SUPERVISED_TRANSFER_FROM_ROLE");
    bool public transferFromSupervisionEnabled = true;

    event TransferFromSupervisionDisabled();
    event SupervisedTransferFromRoleAdded(address account);

    modifier onlyAdmin() {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "RumToken: Caller is not an admin");
        _;
    }

    modifier transferSupervision() {
        require(!transferFromSupervisionEnabled || hasRole(SUPERVISED_TRANSFER_FROM_ROLE, msg.sender), "RumToken: Transfer from are currently supervised");
        _;
    }

    constructor(address _multisigWallet) ERC20("RUM Pirates of The Arrland Token", "RUM") ERC20Permit("RumToken") AntiBot() {
        require(_multisigWallet != address(0), "RumToken: Multisig wallet address cannot be the zero address");
        _mint(_multisigWallet, 2_000_000_000 * 10 ** 18);        
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, AccessControl) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    function disableTransferFromSupervision() public onlyAdmin {
        require(transferFromSupervisionEnabled, "RumToken: Transfer supervision is already disabled");
        transferFromSupervisionEnabled = false;
        emit TransferFromSupervisionDisabled();
    }

    function addSupervisedTransferFromRole(address account) public onlyAdmin {
        grantRole(SUPERVISED_TRANSFER_FROM_ROLE, account);
        emit SupervisedTransferFromRoleAdded(account);
    }

    function transfer(address recipient, uint256 amount) 
        public 
        virtual 
        override 
        transactionThrottler(msg.sender, recipient, amount)
        returns (bool) 
    {
        return super.transfer(recipient, amount);
    }

    function transferFrom(address sender, address recipient, uint256 amount) 
        public 
        virtual 
        override 
        transferSupervision 
        transactionThrottler(sender, recipient, amount)
        returns (bool) 
    {
        return super.transferFrom(sender, recipient, amount);
    }
}

File 2 of 17 : AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

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

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

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

    /**
     * @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 virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        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 virtual 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.
     *
     * May emit a {RoleGranted} event.
     */
    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.
     *
     * May emit a {RoleRevoked} event.
     */
    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 revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    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.
     *
     * May emit a {RoleGranted} event.
     *
     * [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}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

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

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 3 of 17 : IAccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 17 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 6 of 17 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

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

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

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

File 7 of 17 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 8 of 17 : draft-ERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/extensions/draft-ERC20Permit.sol)

pragma solidity ^0.8.0;

import "./draft-IERC20Permit.sol";
import "../ERC20.sol";
import "../../../utils/cryptography/draft-EIP712.sol";
import "../../../utils/cryptography/ECDSA.sol";
import "../../../utils/Counters.sol";

/**
 * @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 constant _PERMIT_TYPEHASH =
        keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
    /**
     * @dev In previous versions `_PERMIT_TYPEHASH` was declared as `immutable`.
     * However, to ensure consistency with the upgradeable transpiler, we will continue
     * to reserve a slot.
     * @custom:oz-renamed-from _PERMIT_TYPEHASH
     */
    // solhint-disable-next-line var-name-mixedcase
    bytes32 private _PERMIT_TYPEHASH_DEPRECATED_SLOT;

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

File 9 of 17 : draft-IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

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

File 10 of 17 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 11 of 17 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

File 12 of 17 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @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 Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 13 of 17 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.3) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @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 {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. 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]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        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.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @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.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} 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.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // 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 (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): 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.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @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) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @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 Message, created from `s`. 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(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

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

File 14 of 17 : draft-EIP712.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol)

pragma solidity ^0.8.0;

import "./ECDSA.sol";

/**
 * @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;
    address private immutable _CACHED_THIS;

    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);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && 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);
    }
}

File 15 of 17 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 16 of 17 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 17 of 17 : AntiBot.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.25;

import "@openzeppelin/contracts/access/AccessControl.sol";


contract AntiBot is AccessControl {
    bytes32 public constant BOT_ROLE = keccak256("BOT_ROLE");

    bool public isAntibotEnabled = true;

    uint256 public antiBotDepth = 1;

    mapping(bytes => uint256) private transactions;

    event AntibotUpdated(bool isAntibotEnabled);
    event AntiBotDepthUpdated(uint256 newDepth);

    modifier transactionThrottler(
        address from,
        address to,
        uint256 amount
    ) {        
        if (isAntibotEnabled && amount > 0) {
            bytes memory keyFromTo = abi.encodePacked(from, to);
            bytes memory keyToFrom = abi.encodePacked(to, from);

            bool skippable = hasRole(BOT_ROLE, from) || hasRole(BOT_ROLE, to);
            
            require(
                skippable ||
                    (transactions[keyFromTo] < block.number - antiBotDepth && transactions[keyToFrom] < block.number - antiBotDepth),
                "Antibot: Transaction throttled"
            );

            transactions[keyFromTo] = block.number;
            transactions[keyToFrom] = block.number;            
        }

        _;
    }

    constructor() {
        _grantRole(DEFAULT_ADMIN_ROLE, _msgSender());        
    }

    function toggleAntibot() external onlyRole(DEFAULT_ADMIN_ROLE) {
        isAntibotEnabled = !isAntibotEnabled;

        emit AntibotUpdated(isAntibotEnabled);
    }

    function setAntiBotDepth(uint256 depth) external onlyRole(DEFAULT_ADMIN_ROLE) {
        require(depth <= 10, "Antibot: value cannot be bigger than 10");
        antiBotDepth = depth;
        emit AntiBotDepthUpdated(depth);
    }
}

Settings
{
  "optimizer": {
    "details": {
      "constantOptimizer": true,
      "cse": true,
      "deduplicate": true,
      "inliner": true,
      "jumpdestRemover": true,
      "orderLiterals": true,
      "peephole": true,
      "simpleCounterForLoopUncheckedIncrement": true,
      "yul": true,
      "yulDetails": {
        "optimizerSteps": "u:fDnTOcmu",
        "stackAllocation": true
      }
    },
    "runs": 200
  },
  "evmVersion": "paris",
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_multisigWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newDepth","type":"uint256"}],"name":"AntiBotDepthUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isAntibotEnabled","type":"bool"}],"name":"AntibotUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"SupervisedTransferFromRoleAdded","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":[],"name":"TransferFromSupervisionDisabled","type":"event"},{"inputs":[],"name":"BOT_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"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":"SUPERVISED_TRANSFER_FROM_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addSupervisedTransferFromRole","outputs":[],"stateMutability":"nonpayable","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":[],"name":"antiBotDepth","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTransferFromSupervision","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":[],"name":"isAntibotEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"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":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"depth","type":"uint256"}],"name":"setAntiBotDepth","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":"toggleAntibot","outputs":[],"stateMutability":"nonpayable","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":"transferFromSupervisionEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

61014060405260088054600160ff1991821681179092556009829055600b8054909116909117905534801561003357600080fd5b506040516129b23803806129b283398101604081905261005291610399565b60405180604001604052806008815260200167293ab6aa37b5b2b760c11b81525080604051806040016040528060018152602001603160f81b8152506040518060400160405280602081526020017f52554d2050697261746573206f6620546865204172726c616e6420546f6b656e8152506040518060400160405280600381526020016252554d60e81b81525081600390816100ef91906104b2565b5060046100fc82826104b2565b5050825160208085019190912083519184019190912060e08290526101008190524660a0529091507f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6101508184846101bf565b6080523060c052610120525061017493506000925061016f9150503390565b6101f9565b6001600160a01b0381166101a35760405162461bcd60e51b815260040161019a90610571565b60405180910390fd5b6101b9816b06765c793fa10079d0000000610280565b506106a1565b600083838346306040516020016101da9594939291906105e3565b6040516020818303038152906040528051906020012090509392505050565b6102038282610334565b61027c5760008281526007602090815260408083206001600160a01b03851684529091529020805460ff1916600117905561023b3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6001600160a01b0382166102a65760405162461bcd60e51b815260040161019a9061062f565b80600260008282546102b89190610680565b90915550506001600160a01b038216600090815260208190526040812080548392906102e5908490610680565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610328908590610693565b60405180910390a35050565b60008281526007602090815260408083206001600160a01b038516845290915290205460ff165b92915050565b505050565b60006001600160a01b03821661035b565b61038081610366565b811461038b57600080fd5b50565b805161035b81610377565b6000602082840312156103ae576103ae600080fd5b6103b8838361038e565b9392505050565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052602260045260246000fd5b6002810460018216806103ff57607f821691505b602082108103610411576104116103d5565b50919050565b600061035b6104238381565b90565b61042f83610417565b815460001960089490940293841b1916921b91909117905550565b6000610361818484610426565b8181101561027c5761046a60008261044a565b600101610457565b601f821115610361576000818152602090206020601f850104810160208510156104995750805b6104ab6020601f860104830182610457565b5050505050565b81516001600160401b038111156104cb576104cb6103bf565b6104d582546103eb565b6104e0828285610472565b506020601f82116001811461051557600083156104fd5750848201515b600019600885021c19811660028502178555506104ab565b600084815260208120601f198516915b828110156105455787850151825560209485019460019092019101610525565b50848210156105625783870151600019601f87166008021c191681555b50505050600202600101905550565b6020808252810161035b81603c81527f52756d546f6b656e3a204d756c74697369672077616c6c65742061646472657360208201527f732063616e6e6f7420626520746865207a65726f206164647265737300000000604082015260600190565b805b82525050565b6105d481610366565b60a081016105f182886105d2565b6105fe60208301876105d2565b61060b60408301866105d2565b61061860608301856105d2565b61062560808301846105da565b9695505050505050565b6020808252810161035b81601f81527f45524332303a206d696e7420746f20746865207a65726f206164647265737300602082015260400190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561035b5761035b61066a565b6020810161035b82846105d2565b60805160a05160c05160e05161010051610120516122c26106f06000396000610ee401526000610f2601526000610f0501526000610e6901526000610e9301526000610ebd01526122c26000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c80634e8884c11161010f578063a457c2d7116100a2578063d505accf11610071578063d505accf14610417578063d547741f1461042a578063da98c40b1461043d578063dd62ed3e1461044557600080fd5b8063a457c2d7146103b5578063a9059cbb146103c8578063b1503774146103db578063c25c7ad8146103f057600080fd5b80637ecebe00116100de5780637ecebe001461037f57806391d148541461039257806395d89b41146103a5578063a217fddf146103ad57600080fd5b80634e8884c11461032357806370303c1d1461033657806370a082311461034357806379cc67901461036c57600080fd5b806327dd0312116101875780633644e515116101565780633644e515146102e257806336568abe146102ea57806339509351146102fd57806342966c681461031057600080fd5b806327dd0312146102aa5780632e649fd9146102b35780632f2ff15d146102c0578063313ce567146102d357600080fd5b806313de6f55116101c357806313de6f551461025057806318160ddd1461026357806323b872dd14610274578063248a9ca31461028757600080fd5b806301ffc9a7146101f557806306fdde031461021e578063095ea7b3146102335780630f0f49f014610246575b600080fd5b610208610203366004611676565b610458565b604051610215919061169f565b60405180910390f35b610226610469565b6040516102159190611703565b61020861024136600461174a565b6104fb565b61024e610513565b005b61024e61025e366004611782565b61059a565b6002545b60405161021591906117a7565b6102086102823660046117b5565b610625565b6102676102953660046117fe565b60009081526007602052604090206001015490565b61026760095481565b600b546102089060ff1681565b61024e6102ce36600461181d565b610801565b60126040516102159190611855565b61026761082b565b61024e6102f836600461181d565b61083a565b61020861030b36600461174a565b610870565b61024e61031e3660046117fe565b610892565b61024e6103313660046117fe565b61089f565b6008546102089060ff1681565b610267610351366004611782565b6001600160a01b031660009081526020819052604090205490565b61024e61037a36600461174a565b61090c565b61026761038d366004611782565b610921565b6102086103a036600461181d565b61093f565b61022661096a565b610267600081565b6102086103c336600461174a565b610979565b6102086103d636600461174a565b6109c1565b61026760008051602061226d83398151915281565b6102677f980c88083de4e3c169ca7d045e2608b6e061581a4514cb0f0e6aa7d221d7fb6881565b61024e610425366004611877565b610b48565b61024e61043836600461181d565b610c2a565b61024e610c4f565b610267610453366004611907565b610c9f565b600061046382610cca565b92915050565b6060600380546104789061193d565b80601f01602080910402602001604051908101604052809291908181526020018280546104a49061193d565b80156104f15780601f106104c6576101008083540402835291602001916104f1565b820191906000526020600020905b8154815290600101906020018083116104d457829003601f168201915b5050505050905090565b600033610509818585610cff565b5060019392505050565b61051e60003361093f565b6105435760405162461bcd60e51b815260040161053a90611995565b60405180910390fd5b600b5460ff166105655760405162461bcd60e51b815260040161053a906119f4565b600b805460ff191690556040517fc961b96b859db9382ba01683ce3979b26b02909d213d13fb33922d65eb75073590600090a1565b6105a560003361093f565b6105c15760405162461bcd60e51b815260040161053a90611995565b6105eb7f980c88083de4e3c169ca7d045e2608b6e061581a4514cb0f0e6aa7d221d7fb6882610801565b7f6c248782e9708b918856f4a210891dc84bfcff8334805ed7e875e42e43c4c6758160405161061a9190611a0d565b60405180910390a150565b600b5460009060ff16158061065f575061065f7f980c88083de4e3c169ca7d045e2608b6e061581a4514cb0f0e6aa7d221d7fb683361093f565b61067b5760405162461bcd60e51b815260040161053a90611a66565b60085484908490849060ff1680156106935750600081115b156107eb57600083836040516020016106ad929190611a9e565b6040516020818303038152906040529050600083856040516020016106d3929190611a9e565b604051602081830303815290604052905060006106fe60008051602061226d8339815191528761093f565b8061071c575061071c60008051602061226d8339815191528661093f565b9050808061078757506009546107329043611ad4565b600a846040516107429190611b09565b90815260200160405180910390205410801561078757506009546107669043611ad4565b600a836040516107769190611b09565b908152602001604051809103902054105b6107a35760405162461bcd60e51b815260040161053a90611b45565b43600a846040516107b49190611b09565b90815260200160405180910390208190555043600a836040516107d79190611b09565b908152604051908190036020019020555050505b6107f6878787610db3565b979650505050505050565b60008281526007602052604090206001015461081c81610dcc565b6108268383610dd6565b505050565b6000610835610e5c565b905090565b6001600160a01b03811633146108625760405162461bcd60e51b815260040161053a90611b9f565b61086c8282610f4a565b5050565b6000336105098185856108838383610c9f565b61088d9190611baf565b610cff565b61089c3382610fb1565b50565b60006108aa81610dcc565b600a8211156108cb5760405162461bcd60e51b815260040161053a90611c04565b60098290556040517f50de732f9e81e72dedfad435644c19c505f9c9b9448de4662a0c0d93fd888853906109009084906117a7565b60405180910390a15050565b610917823383611082565b61086c8282610fb1565b6001600160a01b038116600090815260056020526040812054610463565b60009182526007602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600480546104789061193d565b600033816109878286610c9f565b9050838110156109a95760405162461bcd60e51b815260040161053a90611c54565b6109b68286868403610cff565b506001949350505050565b60085460009033908490849060ff1680156109dc5750600081115b15610b3457600083836040516020016109f6929190611a9e565b604051602081830303815290604052905060008385604051602001610a1c929190611a9e565b60405160208183030381529060405290506000610a4760008051602061226d8339815191528761093f565b80610a655750610a6560008051602061226d8339815191528661093f565b90508080610ad05750600954610a7b9043611ad4565b600a84604051610a8b9190611b09565b908152602001604051809103902054108015610ad05750600954610aaf9043611ad4565b600a83604051610abf9190611b09565b908152602001604051809103902054105b610aec5760405162461bcd60e51b815260040161053a90611b45565b43600a84604051610afd9190611b09565b90815260200160405180910390208190555043600a83604051610b209190611b09565b908152604051908190036020019020555050505b610b3e86866110cc565b9695505050505050565b83421115610b685760405162461bcd60e51b815260040161053a90611c96565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610b978c6110da565b89604051602001610bad96959493929190611ca6565b6040516020818303038152906040528051906020012090506000610bd082611102565b90506000610be082878787611115565b9050896001600160a01b0316816001600160a01b031614610c135760405162461bcd60e51b815260040161053a90611d27565b610c1e8a8a8a610cff565b50505050505050505050565b600082815260076020526040902060010154610c4581610dcc565b6108268383610f4a565b6000610c5a81610dcc565b6008805460ff19811660ff918216159081179092556040517fee97960a9cf68bef23360a6388ed053c787a5e5625c30783d75c03ad9cc0506b9261061a92169061169f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60006001600160e01b03198216637965db0b60e01b148061046357506301ffc9a760e01b6001600160e01b0319831614610463565b6001600160a01b038316610d255760405162461bcd60e51b815260040161053a90611d76565b6001600160a01b038216610d4b5760405162461bcd60e51b815260040161053a90611dc3565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610da69085906117a7565b60405180910390a3505050565b600033610dc1858285611082565b6109b685858561113d565b61089c8133611250565b610de0828261093f565b61086c5760008281526007602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610e183390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148015610eb557507f000000000000000000000000000000000000000000000000000000000000000046145b15610edf57507f000000000000000000000000000000000000000000000000000000000000000090565b6108357f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006112b4565b610f54828261093f565b1561086c5760008281526007602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b038216610fd75760405162461bcd60e51b815260040161053a90611e0f565b6001600160a01b038216600090815260208190526040902054818110156110105760405162461bcd60e51b815260040161053a90611e5c565b6001600160a01b038316600090815260208190526040812083830390556002805484929061103f908490611ad4565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610da69086906117a7565b600061108e8484610c9f565b905060001981146110c657818110156110b95760405162461bcd60e51b815260040161053a90611e9e565b6110c68484848403610cff565b50505050565b60003361050981858561113d565b6001600160a01b03811660009081526005602052604090208054600181018255905b50919050565b600061046361110f610e5c565b836112ee565b600080600061112687878787611321565b9150915061113381611401565b5095945050505050565b6001600160a01b0383166111635760405162461bcd60e51b815260040161053a90611eee565b6001600160a01b0382166111895760405162461bcd60e51b815260040161053a90611f3c565b6001600160a01b038316600090815260208190526040902054818110156111c25760405162461bcd60e51b815260040161053a90611f8d565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906111f9908490611baf565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161124391906117a7565b60405180910390a36110c6565b61125a828261093f565b61086c57611272816001600160a01b031660146114e1565b61127d8360206114e1565b60405160200161128e929190611f9d565b60408051601f198184030181529082905262461bcd60e51b825261053a91600401611703565b600083838346306040516020016112cf959493929190611ff3565b6040516020818303038152906040528051906020012090509392505050565b60008282604051602001611303929190612035565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561135857506000905060036113f8565b8460ff16601b1415801561137057508460ff16601c14155b1561138157506000905060046113f8565b6000600187878787604051600081526020016040526040516113a69493929190612060565b6020604051602081039080840390855afa1580156113c8573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166113f1576000600192509250506113f8565b9150600090505b94509492505050565b60008160048111156114155761141561209e565b0361141d5750565b60018160048111156114315761143161209e565b0361144e5760405162461bcd60e51b815260040161053a906120e6565b60028160048111156114625761146261209e565b0361147f5760405162461bcd60e51b815260040161053a90612128565b60038160048111156114935761149361209e565b036114b05760405162461bcd60e51b815260040161053a90612175565b60048160048111156114c4576114c461209e565b0361089c5760405162461bcd60e51b815260040161053a906121c2565b606060006114f08360026121d2565b6114fb906002611baf565b67ffffffffffffffff811115611513576115136121e9565b6040519080825280601f01601f19166020018201604052801561153d576020820181803683370190505b509050600360fc1b81600081518110611558576115586121ff565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611587576115876121ff565b60200101906001600160f81b031916908160001a90535060006115ab8460026121d2565b6115b6906001611baf565b90505b600181111561162e576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106115ea576115ea6121ff565b1a60f81b828281518110611600576116006121ff565b60200101906001600160f81b031916908160001a90535060049490941c9361162781612215565b90506115b9565b50831561164d5760405162461bcd60e51b815260040161053a9061225c565b9392505050565b6001600160e01b031981165b811461089c57600080fd5b803561046381611654565b60006020828403121561168b5761168b600080fd5b61164d838361166b565b8015155b82525050565b602081016104638284611695565b60005b838110156116c85781810151838201526020016116b0565b50506000910152565b60006116db825190565b8084526020840193506116f28185602086016116ad565b601f01601f19169290920192915050565b6020808252810161164d81846116d1565b60006001600160a01b038216610463565b61166081611714565b803561046381611725565b80611660565b803561046381611739565b6000806040838503121561176057611760600080fd5b61176a848461172e565b9150611779846020850161173f565b90509250929050565b60006020828403121561179757611797600080fd5b61164d838361172e565b80611699565b6020810161046382846117a1565b6000806000606084860312156117cd576117cd600080fd5b6117d7858561172e565b92506117e6856020860161172e565b91506117f5856040860161173f565b90509250925092565b60006020828403121561181357611813600080fd5b61164d838361173f565b6000806040838503121561183357611833600080fd5b61183d848461173f565b9150611779846020850161172e565b60ff8116611699565b60208101610463828461184c565b60ff8116611660565b803561046381611863565b600080600080600080600060e0888a03121561189557611895600080fd5b61189f898961172e565b96506118ae8960208a0161172e565b95506118bd8960408a0161173f565b94506118cc8960608a0161173f565b93506118db8960808a0161186c565b92506118ea8960a08a0161173f565b91506118f98960c08a0161173f565b905092959891949750929550565b6000806040838503121561191d5761191d600080fd5b61183d848461172e565b634e487b7160e01b600052602260045260246000fd5b60028104600182168061195157607f821691505b6020821081036110fc576110fc611927565b60208082527f52756d546f6b656e3a2043616c6c6572206973206e6f7420616e2061646d696e91019081525b60200190565b6020808252810161046381611963565b60328152602081017f52756d546f6b656e3a205472616e73666572207375706572766973696f6e20698152711cc8185b1c9958591e48191a5cd8589b195960721b602082015290505b60400190565b60208082528101610463816119a5565b61169981611714565b602081016104638284611a04565b60308152602081017f52756d546f6b656e3a205472616e736665722066726f6d20617265206375727281526f195b9d1b1e481cdd5c195c9d9a5cd95960821b602082015290506119ee565b6020808252810161046381611a1b565b60006104638260601b90565b600061046382611a76565b611699611a9982611714565b611a82565b611aa88184611a8d565b601401611ab58183611a8d565b60140192915050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561046357610463611abe565b6000611af1825190565b611aff8185602086016116ad565b9290920192915050565b6104638183611ae7565b601e8152602081017f416e7469626f743a205472616e73616374696f6e207468726f74746c656400008152905061198f565b6020808252810161046381611b13565b602f8152602081017f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636581526e103937b632b9903337b91039b2b63360891b602082015290506119ee565b6020808252810161046381611b55565b8082018082111561046357610463611abe565b60278152602081017f416e7469626f743a2076616c75652063616e6e6f74206265206269676765722081526607468616e2031360cc1b602082015290506119ee565b6020808252810161046381611bc2565b60258152602081017f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77815264207a65726f60d81b602082015290506119ee565b6020808252810161046381611c14565b601d8152602081017f45524332305065726d69743a206578706972656420646561646c696e650000008152905061198f565b6020808252810161046381611c64565b60c08101611cb482896117a1565b611cc16020830188611a04565b611cce6040830187611a04565b611cdb60608301866117a1565b611ce860808301856117a1565b6107f660a08301846117a1565b601e8152602081017f45524332305065726d69743a20696e76616c6964207369676e617475726500008152905061198f565b6020808252810161046381611cf5565b60248152602081017f45524332303a20617070726f76652066726f6d20746865207a65726f206164648152637265737360e01b602082015290506119ee565b6020808252810161046381611d37565b60228152602081017f45524332303a20617070726f766520746f20746865207a65726f206164647265815261737360f01b602082015290506119ee565b6020808252810161046381611d86565b60218152602081017f45524332303a206275726e2066726f6d20746865207a65726f206164647265738152607360f81b602082015290506119ee565b6020808252810161046381611dd3565b60228152602081017f45524332303a206275726e20616d6f756e7420657863656564732062616c616e815261636560f01b602082015290506119ee565b6020808252810161046381611e1f565b601d8152602081017f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000008152905061198f565b6020808252810161046381611e6c565b60258152602081017f45524332303a207472616e736665722066726f6d20746865207a65726f206164815264647265737360d81b602082015290506119ee565b6020808252810161046381611eae565b60238152602081017f45524332303a207472616e7366657220746f20746865207a65726f206164647281526265737360e81b602082015290506119ee565b6020808252810161046381611efe565b60268152602081017f45524332303a207472616e7366657220616d6f756e7420657863656564732062815265616c616e636560d01b602082015290506119ee565b6020808252810161046381611f4c565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152601701611fcd8184611ae7565b7001034b99036b4b9b9b4b733903937b6329607d1b8152601101905061164d8183611ae7565b60a0810161200182886117a1565b61200e60208301876117a1565b61201b60408301866117a1565b61202860608301856117a1565b610b3e6080830184611a04565b61190160f01b815260020161204a81846117a1565b60200161205781836117a1565b60200192915050565b6080810161206e82876117a1565b61207b602083018661184c565b61208860408301856117a1565b61209560608301846117a1565b95945050505050565b634e487b7160e01b600052602160045260246000fd5b60188152602081017f45434453413a20696e76616c6964207369676e617475726500000000000000008152905061198f565b60208082528101610463816120b4565b601f8152602081017f45434453413a20696e76616c6964207369676e6174757265206c656e677468008152905061198f565b60208082528101610463816120f6565b60228152602081017f45434453413a20696e76616c6964207369676e6174757265202773272076616c815261756560f01b602082015290506119ee565b6020808252810161046381612138565b60228152602081017f45434453413a20696e76616c6964207369676e6174757265202776272076616c815261756560f01b602082015290506119ee565b6020808252810161046381612185565b818102811582820484141761046357610463611abe565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60008161222457612224611abe565b506000190190565b60208082527f537472696e67733a20686578206c656e67746820696e73756666696369656e74910190815261198f565b602080825281016104638161222c56fe6d5c9827c1f410bbb61d3b2a0a34b6b30492d9a1fd38588edca7ec4562ab9c9ba264697066735822122049fd88d8a67792adb8c41db001ae9c122fe243f2cb621ee30046efb7b21ea17264736f6c63430008190033000000000000000000000000454b11cf6ddea6d64ac16a96fe4d9344092da679

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101f05760003560e01c80634e8884c11161010f578063a457c2d7116100a2578063d505accf11610071578063d505accf14610417578063d547741f1461042a578063da98c40b1461043d578063dd62ed3e1461044557600080fd5b8063a457c2d7146103b5578063a9059cbb146103c8578063b1503774146103db578063c25c7ad8146103f057600080fd5b80637ecebe00116100de5780637ecebe001461037f57806391d148541461039257806395d89b41146103a5578063a217fddf146103ad57600080fd5b80634e8884c11461032357806370303c1d1461033657806370a082311461034357806379cc67901461036c57600080fd5b806327dd0312116101875780633644e515116101565780633644e515146102e257806336568abe146102ea57806339509351146102fd57806342966c681461031057600080fd5b806327dd0312146102aa5780632e649fd9146102b35780632f2ff15d146102c0578063313ce567146102d357600080fd5b806313de6f55116101c357806313de6f551461025057806318160ddd1461026357806323b872dd14610274578063248a9ca31461028757600080fd5b806301ffc9a7146101f557806306fdde031461021e578063095ea7b3146102335780630f0f49f014610246575b600080fd5b610208610203366004611676565b610458565b604051610215919061169f565b60405180910390f35b610226610469565b6040516102159190611703565b61020861024136600461174a565b6104fb565b61024e610513565b005b61024e61025e366004611782565b61059a565b6002545b60405161021591906117a7565b6102086102823660046117b5565b610625565b6102676102953660046117fe565b60009081526007602052604090206001015490565b61026760095481565b600b546102089060ff1681565b61024e6102ce36600461181d565b610801565b60126040516102159190611855565b61026761082b565b61024e6102f836600461181d565b61083a565b61020861030b36600461174a565b610870565b61024e61031e3660046117fe565b610892565b61024e6103313660046117fe565b61089f565b6008546102089060ff1681565b610267610351366004611782565b6001600160a01b031660009081526020819052604090205490565b61024e61037a36600461174a565b61090c565b61026761038d366004611782565b610921565b6102086103a036600461181d565b61093f565b61022661096a565b610267600081565b6102086103c336600461174a565b610979565b6102086103d636600461174a565b6109c1565b61026760008051602061226d83398151915281565b6102677f980c88083de4e3c169ca7d045e2608b6e061581a4514cb0f0e6aa7d221d7fb6881565b61024e610425366004611877565b610b48565b61024e61043836600461181d565b610c2a565b61024e610c4f565b610267610453366004611907565b610c9f565b600061046382610cca565b92915050565b6060600380546104789061193d565b80601f01602080910402602001604051908101604052809291908181526020018280546104a49061193d565b80156104f15780601f106104c6576101008083540402835291602001916104f1565b820191906000526020600020905b8154815290600101906020018083116104d457829003601f168201915b5050505050905090565b600033610509818585610cff565b5060019392505050565b61051e60003361093f565b6105435760405162461bcd60e51b815260040161053a90611995565b60405180910390fd5b600b5460ff166105655760405162461bcd60e51b815260040161053a906119f4565b600b805460ff191690556040517fc961b96b859db9382ba01683ce3979b26b02909d213d13fb33922d65eb75073590600090a1565b6105a560003361093f565b6105c15760405162461bcd60e51b815260040161053a90611995565b6105eb7f980c88083de4e3c169ca7d045e2608b6e061581a4514cb0f0e6aa7d221d7fb6882610801565b7f6c248782e9708b918856f4a210891dc84bfcff8334805ed7e875e42e43c4c6758160405161061a9190611a0d565b60405180910390a150565b600b5460009060ff16158061065f575061065f7f980c88083de4e3c169ca7d045e2608b6e061581a4514cb0f0e6aa7d221d7fb683361093f565b61067b5760405162461bcd60e51b815260040161053a90611a66565b60085484908490849060ff1680156106935750600081115b156107eb57600083836040516020016106ad929190611a9e565b6040516020818303038152906040529050600083856040516020016106d3929190611a9e565b604051602081830303815290604052905060006106fe60008051602061226d8339815191528761093f565b8061071c575061071c60008051602061226d8339815191528661093f565b9050808061078757506009546107329043611ad4565b600a846040516107429190611b09565b90815260200160405180910390205410801561078757506009546107669043611ad4565b600a836040516107769190611b09565b908152602001604051809103902054105b6107a35760405162461bcd60e51b815260040161053a90611b45565b43600a846040516107b49190611b09565b90815260200160405180910390208190555043600a836040516107d79190611b09565b908152604051908190036020019020555050505b6107f6878787610db3565b979650505050505050565b60008281526007602052604090206001015461081c81610dcc565b6108268383610dd6565b505050565b6000610835610e5c565b905090565b6001600160a01b03811633146108625760405162461bcd60e51b815260040161053a90611b9f565b61086c8282610f4a565b5050565b6000336105098185856108838383610c9f565b61088d9190611baf565b610cff565b61089c3382610fb1565b50565b60006108aa81610dcc565b600a8211156108cb5760405162461bcd60e51b815260040161053a90611c04565b60098290556040517f50de732f9e81e72dedfad435644c19c505f9c9b9448de4662a0c0d93fd888853906109009084906117a7565b60405180910390a15050565b610917823383611082565b61086c8282610fb1565b6001600160a01b038116600090815260056020526040812054610463565b60009182526007602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600480546104789061193d565b600033816109878286610c9f565b9050838110156109a95760405162461bcd60e51b815260040161053a90611c54565b6109b68286868403610cff565b506001949350505050565b60085460009033908490849060ff1680156109dc5750600081115b15610b3457600083836040516020016109f6929190611a9e565b604051602081830303815290604052905060008385604051602001610a1c929190611a9e565b60405160208183030381529060405290506000610a4760008051602061226d8339815191528761093f565b80610a655750610a6560008051602061226d8339815191528661093f565b90508080610ad05750600954610a7b9043611ad4565b600a84604051610a8b9190611b09565b908152602001604051809103902054108015610ad05750600954610aaf9043611ad4565b600a83604051610abf9190611b09565b908152602001604051809103902054105b610aec5760405162461bcd60e51b815260040161053a90611b45565b43600a84604051610afd9190611b09565b90815260200160405180910390208190555043600a83604051610b209190611b09565b908152604051908190036020019020555050505b610b3e86866110cc565b9695505050505050565b83421115610b685760405162461bcd60e51b815260040161053a90611c96565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610b978c6110da565b89604051602001610bad96959493929190611ca6565b6040516020818303038152906040528051906020012090506000610bd082611102565b90506000610be082878787611115565b9050896001600160a01b0316816001600160a01b031614610c135760405162461bcd60e51b815260040161053a90611d27565b610c1e8a8a8a610cff565b50505050505050505050565b600082815260076020526040902060010154610c4581610dcc565b6108268383610f4a565b6000610c5a81610dcc565b6008805460ff19811660ff918216159081179092556040517fee97960a9cf68bef23360a6388ed053c787a5e5625c30783d75c03ad9cc0506b9261061a92169061169f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60006001600160e01b03198216637965db0b60e01b148061046357506301ffc9a760e01b6001600160e01b0319831614610463565b6001600160a01b038316610d255760405162461bcd60e51b815260040161053a90611d76565b6001600160a01b038216610d4b5760405162461bcd60e51b815260040161053a90611dc3565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610da69085906117a7565b60405180910390a3505050565b600033610dc1858285611082565b6109b685858561113d565b61089c8133611250565b610de0828261093f565b61086c5760008281526007602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610e183390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000306001600160a01b037f00000000000000000000000014e5386f47466a463f85d151653e1736c0c50fc316148015610eb557507f000000000000000000000000000000000000000000000000000000000000008946145b15610edf57507f48ac89313e64627939750e4d9d503d9e21c82631d968772490bff7a80803959390565b6108357f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f59fac2222797c52980b8b53aa053a75eb75591bb481b52c5e21fee002849f01b7fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc66112b4565b610f54828261093f565b1561086c5760008281526007602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b038216610fd75760405162461bcd60e51b815260040161053a90611e0f565b6001600160a01b038216600090815260208190526040902054818110156110105760405162461bcd60e51b815260040161053a90611e5c565b6001600160a01b038316600090815260208190526040812083830390556002805484929061103f908490611ad4565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610da69086906117a7565b600061108e8484610c9f565b905060001981146110c657818110156110b95760405162461bcd60e51b815260040161053a90611e9e565b6110c68484848403610cff565b50505050565b60003361050981858561113d565b6001600160a01b03811660009081526005602052604090208054600181018255905b50919050565b600061046361110f610e5c565b836112ee565b600080600061112687878787611321565b9150915061113381611401565b5095945050505050565b6001600160a01b0383166111635760405162461bcd60e51b815260040161053a90611eee565b6001600160a01b0382166111895760405162461bcd60e51b815260040161053a90611f3c565b6001600160a01b038316600090815260208190526040902054818110156111c25760405162461bcd60e51b815260040161053a90611f8d565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906111f9908490611baf565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161124391906117a7565b60405180910390a36110c6565b61125a828261093f565b61086c57611272816001600160a01b031660146114e1565b61127d8360206114e1565b60405160200161128e929190611f9d565b60408051601f198184030181529082905262461bcd60e51b825261053a91600401611703565b600083838346306040516020016112cf959493929190611ff3565b6040516020818303038152906040528051906020012090509392505050565b60008282604051602001611303929190612035565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561135857506000905060036113f8565b8460ff16601b1415801561137057508460ff16601c14155b1561138157506000905060046113f8565b6000600187878787604051600081526020016040526040516113a69493929190612060565b6020604051602081039080840390855afa1580156113c8573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166113f1576000600192509250506113f8565b9150600090505b94509492505050565b60008160048111156114155761141561209e565b0361141d5750565b60018160048111156114315761143161209e565b0361144e5760405162461bcd60e51b815260040161053a906120e6565b60028160048111156114625761146261209e565b0361147f5760405162461bcd60e51b815260040161053a90612128565b60038160048111156114935761149361209e565b036114b05760405162461bcd60e51b815260040161053a90612175565b60048160048111156114c4576114c461209e565b0361089c5760405162461bcd60e51b815260040161053a906121c2565b606060006114f08360026121d2565b6114fb906002611baf565b67ffffffffffffffff811115611513576115136121e9565b6040519080825280601f01601f19166020018201604052801561153d576020820181803683370190505b509050600360fc1b81600081518110611558576115586121ff565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611587576115876121ff565b60200101906001600160f81b031916908160001a90535060006115ab8460026121d2565b6115b6906001611baf565b90505b600181111561162e576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106115ea576115ea6121ff565b1a60f81b828281518110611600576116006121ff565b60200101906001600160f81b031916908160001a90535060049490941c9361162781612215565b90506115b9565b50831561164d5760405162461bcd60e51b815260040161053a9061225c565b9392505050565b6001600160e01b031981165b811461089c57600080fd5b803561046381611654565b60006020828403121561168b5761168b600080fd5b61164d838361166b565b8015155b82525050565b602081016104638284611695565b60005b838110156116c85781810151838201526020016116b0565b50506000910152565b60006116db825190565b8084526020840193506116f28185602086016116ad565b601f01601f19169290920192915050565b6020808252810161164d81846116d1565b60006001600160a01b038216610463565b61166081611714565b803561046381611725565b80611660565b803561046381611739565b6000806040838503121561176057611760600080fd5b61176a848461172e565b9150611779846020850161173f565b90509250929050565b60006020828403121561179757611797600080fd5b61164d838361172e565b80611699565b6020810161046382846117a1565b6000806000606084860312156117cd576117cd600080fd5b6117d7858561172e565b92506117e6856020860161172e565b91506117f5856040860161173f565b90509250925092565b60006020828403121561181357611813600080fd5b61164d838361173f565b6000806040838503121561183357611833600080fd5b61183d848461173f565b9150611779846020850161172e565b60ff8116611699565b60208101610463828461184c565b60ff8116611660565b803561046381611863565b600080600080600080600060e0888a03121561189557611895600080fd5b61189f898961172e565b96506118ae8960208a0161172e565b95506118bd8960408a0161173f565b94506118cc8960608a0161173f565b93506118db8960808a0161186c565b92506118ea8960a08a0161173f565b91506118f98960c08a0161173f565b905092959891949750929550565b6000806040838503121561191d5761191d600080fd5b61183d848461172e565b634e487b7160e01b600052602260045260246000fd5b60028104600182168061195157607f821691505b6020821081036110fc576110fc611927565b60208082527f52756d546f6b656e3a2043616c6c6572206973206e6f7420616e2061646d696e91019081525b60200190565b6020808252810161046381611963565b60328152602081017f52756d546f6b656e3a205472616e73666572207375706572766973696f6e20698152711cc8185b1c9958591e48191a5cd8589b195960721b602082015290505b60400190565b60208082528101610463816119a5565b61169981611714565b602081016104638284611a04565b60308152602081017f52756d546f6b656e3a205472616e736665722066726f6d20617265206375727281526f195b9d1b1e481cdd5c195c9d9a5cd95960821b602082015290506119ee565b6020808252810161046381611a1b565b60006104638260601b90565b600061046382611a76565b611699611a9982611714565b611a82565b611aa88184611a8d565b601401611ab58183611a8d565b60140192915050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561046357610463611abe565b6000611af1825190565b611aff8185602086016116ad565b9290920192915050565b6104638183611ae7565b601e8152602081017f416e7469626f743a205472616e73616374696f6e207468726f74746c656400008152905061198f565b6020808252810161046381611b13565b602f8152602081017f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636581526e103937b632b9903337b91039b2b63360891b602082015290506119ee565b6020808252810161046381611b55565b8082018082111561046357610463611abe565b60278152602081017f416e7469626f743a2076616c75652063616e6e6f74206265206269676765722081526607468616e2031360cc1b602082015290506119ee565b6020808252810161046381611bc2565b60258152602081017f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77815264207a65726f60d81b602082015290506119ee565b6020808252810161046381611c14565b601d8152602081017f45524332305065726d69743a206578706972656420646561646c696e650000008152905061198f565b6020808252810161046381611c64565b60c08101611cb482896117a1565b611cc16020830188611a04565b611cce6040830187611a04565b611cdb60608301866117a1565b611ce860808301856117a1565b6107f660a08301846117a1565b601e8152602081017f45524332305065726d69743a20696e76616c6964207369676e617475726500008152905061198f565b6020808252810161046381611cf5565b60248152602081017f45524332303a20617070726f76652066726f6d20746865207a65726f206164648152637265737360e01b602082015290506119ee565b6020808252810161046381611d37565b60228152602081017f45524332303a20617070726f766520746f20746865207a65726f206164647265815261737360f01b602082015290506119ee565b6020808252810161046381611d86565b60218152602081017f45524332303a206275726e2066726f6d20746865207a65726f206164647265738152607360f81b602082015290506119ee565b6020808252810161046381611dd3565b60228152602081017f45524332303a206275726e20616d6f756e7420657863656564732062616c616e815261636560f01b602082015290506119ee565b6020808252810161046381611e1f565b601d8152602081017f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000008152905061198f565b6020808252810161046381611e6c565b60258152602081017f45524332303a207472616e736665722066726f6d20746865207a65726f206164815264647265737360d81b602082015290506119ee565b6020808252810161046381611eae565b60238152602081017f45524332303a207472616e7366657220746f20746865207a65726f206164647281526265737360e81b602082015290506119ee565b6020808252810161046381611efe565b60268152602081017f45524332303a207472616e7366657220616d6f756e7420657863656564732062815265616c616e636560d01b602082015290506119ee565b6020808252810161046381611f4c565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152601701611fcd8184611ae7565b7001034b99036b4b9b9b4b733903937b6329607d1b8152601101905061164d8183611ae7565b60a0810161200182886117a1565b61200e60208301876117a1565b61201b60408301866117a1565b61202860608301856117a1565b610b3e6080830184611a04565b61190160f01b815260020161204a81846117a1565b60200161205781836117a1565b60200192915050565b6080810161206e82876117a1565b61207b602083018661184c565b61208860408301856117a1565b61209560608301846117a1565b95945050505050565b634e487b7160e01b600052602160045260246000fd5b60188152602081017f45434453413a20696e76616c6964207369676e617475726500000000000000008152905061198f565b60208082528101610463816120b4565b601f8152602081017f45434453413a20696e76616c6964207369676e6174757265206c656e677468008152905061198f565b60208082528101610463816120f6565b60228152602081017f45434453413a20696e76616c6964207369676e6174757265202773272076616c815261756560f01b602082015290506119ee565b6020808252810161046381612138565b60228152602081017f45434453413a20696e76616c6964207369676e6174757265202776272076616c815261756560f01b602082015290506119ee565b6020808252810161046381612185565b818102811582820484141761046357610463611abe565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60008161222457612224611abe565b506000190190565b60208082527f537472696e67733a20686578206c656e67746820696e73756666696369656e74910190815261198f565b602080825281016104638161222c56fe6d5c9827c1f410bbb61d3b2a0a34b6b30492d9a1fd38588edca7ec4562ab9c9ba264697066735822122049fd88d8a67792adb8c41db001ae9c122fe243f2cb621ee30046efb7b21ea17264736f6c63430008190033

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

000000000000000000000000454b11cf6ddea6d64ac16a96fe4d9344092da679

-----Decoded View---------------
Arg [0] : _multisigWallet (address): 0x454b11CF6DdEa6d64AC16a96Fe4D9344092dA679

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000454b11cf6ddea6d64ac16a96fe4d9344092da679


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

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