Source Code
Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 122 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 36259353 | 24 hrs ago | IN | 0 ETH | 0.0000042 | ||||
| Approve | 35523425 | 5 days ago | IN | 0 ETH | 0.0000042 | ||||
| Approve | 35455356 | 6 days ago | IN | 0 ETH | 0.0000042 | ||||
| Approve | 35263453 | 7 days ago | IN | 0 ETH | 0.0000044 | ||||
| Approve | 35015037 | 9 days ago | IN | 0 ETH | 0.00000439 | ||||
| Approve | 34783988 | 10 days ago | IN | 0 ETH | 0.00000439 | ||||
| Approve | 34488865 | 13 days ago | IN | 0 ETH | 0.0000044 | ||||
| Approve | 34220643 | 15 days ago | IN | 0 ETH | 0.0000042 | ||||
| Approve | 33652571 | 18 days ago | IN | 0 ETH | 0.00000561 | ||||
| Approve | 33530756 | 19 days ago | IN | 0 ETH | 0.0000044 | ||||
| Approve | 33448928 | 20 days ago | IN | 0 ETH | 0.0000056 | ||||
| Approve | 33003996 | 23 days ago | IN | 0 ETH | 0.0000044 | ||||
| Approve | 32882823 | 24 days ago | IN | 0 ETH | 0.0000056 | ||||
| Approve | 32812264 | 25 days ago | IN | 0 ETH | 0.0000044 | ||||
| Approve | 32547193 | 26 days ago | IN | 0 ETH | 0.0000056 | ||||
| Approve | 32523995 | 27 days ago | IN | 0 ETH | 0.0000042 | ||||
| Approve | 32428172 | 27 days ago | IN | 0 ETH | 0.0000042 | ||||
| Approve | 31744729 | 33 days ago | IN | 0 ETH | 0.0000056 | ||||
| Approve | 31390114 | 36 days ago | IN | 0 ETH | 0.00000421 | ||||
| Approve | 31112081 | 38 days ago | IN | 0 ETH | 0.00000421 | ||||
| Approve | 30829124 | 40 days ago | IN | 0 ETH | 0.00000567 | ||||
| Approve | 30511311 | 42 days ago | IN | 0 ETH | 0.00000431 | ||||
| Approve | 30434739 | 42 days ago | IN | 0 ETH | 0.0000056 | ||||
| Approve | 30187676 | 43 days ago | IN | 0 ETH | 0.00000399 | ||||
| Approve | 29263737 | 48 days ago | IN | 0 ETH | 0.0000042 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 21870010 | 92 days ago | Contract Creation | 0 ETH |
Cross-Chain Transactions
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
kABXStrategy
Compiler Version
v0.8.28-1.0.2
ZkSolc Version
v1.5.15
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity 0.8.28;
import "@openzeppelin/contracts/token/ERC20/presets/ERC20PresetMinterPauser.sol";
contract kABXStrategy is ERC20PresetMinterPauser {
bytes32 public constant OPERATOR_ROLE = keccak256("OPERATOR_ROLE");
uint256 public constant FEE_PRECISION = 1e18; // 100%
uint256 public constant MAX_TRANSFER_FEE = 15 * FEE_PRECISION / 100; // 15%
uint256 public constant DEFAULT_TRANSFER_FEE = 10 * FEE_PRECISION / 100; // 10%
uint256 public transferFee; // 5%-15%
address public feeReceiver;
mapping(address user => bool exemptFee) public isExemptFromFee;
error InvalidAddress(string name, address value);
error InvalidValue(string name, uint256 value);
event TransferFeeSet(uint256 indexed transferFee);
event FeeReceiverSet(address indexed feeReceiver);
event ExemptFromFeeSet(address indexed user, bool indexed isExempt);
constructor(address _admin, address _pauser, address _operator, string memory _name, string memory _symbol, address _feeReceiver)
ERC20PresetMinterPauser(_name, _symbol)
{
require(_admin != address(0), InvalidAddress("admin", _admin));
require(_pauser != address(0), InvalidAddress("pauser", _pauser));
require(_operator != address(0), InvalidAddress("operator", _operator));
require(_feeReceiver != address(0), InvalidAddress("feeReceiver", _feeReceiver));
_revokeRole(DEFAULT_ADMIN_ROLE, _msgSender());
_revokeRole(PAUSER_ROLE, _msgSender());
_grantRole(DEFAULT_ADMIN_ROLE, _admin);
_grantRole(PAUSER_ROLE, _pauser);
_grantRole(OPERATOR_ROLE, _operator);
transferFee = DEFAULT_TRANSFER_FEE;
feeReceiver = _feeReceiver;
}
function setTransferFee(uint256 _transferFee) external onlyRole(OPERATOR_ROLE) {
require(_transferFee < FEE_PRECISION, InvalidValue("transferFee", _transferFee));
transferFee = _transferFee;
emit TransferFeeSet(_transferFee);
}
function setExemptFromFee(address[] calldata _users, bool _isExempt) external onlyRole(OPERATOR_ROLE) {
uint256 total = _users.length;
for (uint256 i = 0; i < total; i++) {
isExemptFromFee[_users[i]] = _isExempt;
emit ExemptFromFeeSet(_users[i], _isExempt);
}
}
function setFeeReceiver(address _feeReceiver) external onlyRole(OPERATOR_ROLE) {
require(_feeReceiver != address(0), InvalidAddress("feeReceiver", _feeReceiver));
feeReceiver = _feeReceiver;
emit FeeReceiverSet(_feeReceiver);
}
function _beforeTokenTransfer(address from, address to, uint256 amount) internal override whenNotPaused {
super._beforeTokenTransfer(from, to, amount);
}
function _transfer(
address from,
address to,
uint256 amount
) internal override {
// Check if transaction should be taxed
if (!isExemptFromFee[from] && !isExemptFromFee[to]) {
uint256 feeAmount = _calculateTransferFee(amount);
uint256 transferAmount = amount - feeAmount;
// Transfer fee to fee receiver
super._transfer(from, feeReceiver, feeAmount);
// Transfer remaining amount to recipient
super._transfer(from, to, transferAmount);
} else {
// No fee for exempt addresses
super._transfer(from, to, amount);
}
}
function _calculateTransferFee(uint256 amount) internal view returns (uint256) {
return (amount * transferFee) / FEE_PRECISION;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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:
*
* ```solidity
* 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}:
*
* ```solidity
* 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. We recommend using {AccessControlDefaultAdminRules}
* to enforce additional security measures for this role.
*/
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(account),
" 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());
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControlEnumerable.sol)
pragma solidity ^0.8.0;
import "./IAccessControlEnumerable.sol";
import "./AccessControl.sol";
import "../utils/structs/EnumerableSet.sol";
/**
* @dev Extension of {AccessControl} that allows enumerating the members of each role.
*/
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {
using EnumerableSet for EnumerableSet.AddressSet;
mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev Returns one of the accounts that have `role`. `index` must be a
* value between 0 and {getRoleMemberCount}, non-inclusive.
*
* Role bearers are not sorted in any particular way, and their ordering may
* change at any point.
*
* WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
* you perform all queries on the same block. See the following
* https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
* for more information.
*/
function getRoleMember(bytes32 role, uint256 index) public view virtual override returns (address) {
return _roleMembers[role].at(index);
}
/**
* @dev Returns the number of accounts that have `role`. Can be used
* together with {getRoleMember} to enumerate all bearers of a role.
*/
function getRoleMemberCount(bytes32 role) public view virtual override returns (uint256) {
return _roleMembers[role].length();
}
/**
* @dev Overload {_grantRole} to track enumerable memberships
*/
function _grantRole(bytes32 role, address account) internal virtual override {
super._grantRole(role, account);
_roleMembers[role].add(account);
}
/**
* @dev Overload {_revokeRole} to track enumerable memberships
*/
function _revokeRole(bytes32 role, address account) internal virtual override {
super._revokeRole(role, account);
_roleMembers[role].remove(account);
}
}// 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;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControlEnumerable.sol)
pragma solidity ^0.8.0;
import "./IAccessControl.sol";
/**
* @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
*/
interface IAccessControlEnumerable is IAccessControl {
/**
* @dev Returns one of the accounts that have `role`. `index` must be a
* value between 0 and {getRoleMemberCount}, non-inclusive.
*
* Role bearers are not sorted in any particular way, and their ordering may
* change at any point.
*
* WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
* you perform all queries on the same block. See the following
* https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
* for more information.
*/
function getRoleMember(bytes32 role, uint256 index) external view returns (address);
/**
* @dev Returns the number of accounts that have `role`. Can be used
* together with {getRoleMember} to enumerate all bearers of a role.
*/
function getRoleMemberCount(bytes32 role) external view returns (uint256);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor() {
_paused = false;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
_requireNotPaused();
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
_requirePaused();
_;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Throws if the contract is paused.
*/
function _requireNotPaused() internal view virtual {
require(!paused(), "Pausable: paused");
}
/**
* @dev Throws if the contract is not paused.
*/
function _requirePaused() internal view virtual {
require(paused(), "Pausable: not paused");
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of 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}.
*
* 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 default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual 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;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_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;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_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;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_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 {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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);
}// 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);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/ERC20Pausable.sol)
pragma solidity ^0.8.0;
import "../ERC20.sol";
import "../../../security/Pausable.sol";
/**
* @dev ERC20 token with pausable token transfers, minting and burning.
*
* Useful for scenarios such as preventing trades until the end of an evaluation
* period, or having an emergency switch for freezing all token transfers in the
* event of a large bug.
*
* IMPORTANT: This contract does not include public pause and unpause functions. In
* addition to inheriting this contract, you must define both functions, invoking the
* {Pausable-_pause} and {Pausable-_unpause} internal functions, with appropriate
* access control, e.g. using {AccessControl} or {Ownable}. Not doing so will
* make the contract unpausable.
*/
abstract contract ERC20Pausable is ERC20, Pausable {
/**
* @dev See {ERC20-_beforeTokenTransfer}.
*
* Requirements:
*
* - the contract must not be paused.
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
super._beforeTokenTransfer(from, to, amount);
require(!paused(), "ERC20Pausable: token transfer while paused");
}
}// 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);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/presets/ERC20PresetMinterPauser.sol)
pragma solidity ^0.8.0;
import "../ERC20.sol";
import "../extensions/ERC20Burnable.sol";
import "../extensions/ERC20Pausable.sol";
import "../../../access/AccessControlEnumerable.sol";
import "../../../utils/Context.sol";
/**
* @dev {ERC20} token, including:
*
* - ability for holders to burn (destroy) their tokens
* - a minter role that allows for token minting (creation)
* - a pauser role that allows to stop all token transfers
*
* This contract uses {AccessControl} to lock permissioned functions using the
* different roles - head to its documentation for details.
*
* The account that deploys the contract will be granted the minter and pauser
* roles, as well as the default admin role, which will let it grant both minter
* and pauser roles to other accounts.
*
* _Deprecated in favor of https://wizard.openzeppelin.com/[Contracts Wizard]._
*/
contract ERC20PresetMinterPauser is Context, AccessControlEnumerable, ERC20Burnable, ERC20Pausable {
bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");
/**
* @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the
* account that deploys the contract.
*
* See {ERC20-constructor}.
*/
constructor(string memory name, string memory symbol) ERC20(name, symbol) {
_setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
_setupRole(MINTER_ROLE, _msgSender());
_setupRole(PAUSER_ROLE, _msgSender());
}
/**
* @dev Creates `amount` new tokens for `to`.
*
* See {ERC20-_mint}.
*
* Requirements:
*
* - the caller must have the `MINTER_ROLE`.
*/
function mint(address to, uint256 amount) public virtual {
require(hasRole(MINTER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have minter role to mint");
_mint(to, amount);
}
/**
* @dev Pauses all token transfers.
*
* See {ERC20Pausable} and {Pausable-_pause}.
*
* Requirements:
*
* - the caller must have the `PAUSER_ROLE`.
*/
function pause() public virtual {
require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to pause");
_pause();
}
/**
* @dev Unpauses all token transfers.
*
* See {ERC20Pausable} and {Pausable-_unpause}.
*
* Requirements:
*
* - the caller must have the `PAUSER_ROLE`.
*/
function unpause() public virtual {
require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to unpause");
_unpause();
}
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual override(ERC20, ERC20Pausable) {
super._beforeTokenTransfer(from, to, amount);
}
}// 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;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
import "./math/Math.sol";
import "./math/SignedMath.sol";
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _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) {
unchecked {
uint256 length = Math.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
/// @solidity memory-safe-assembly
assembly {
mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `int256` to its ASCII `string` decimal representation.
*/
function toString(int256 value) internal pure returns (string memory) {
return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
unchecked {
return toHexString(value, Math.log256(value) + 1);
}
}
/**
* @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] = _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);
}
/**
* @dev Returns true if the two strings are equal.
*/
function equal(string memory a, string memory b) internal pure returns (bool) {
return keccak256(bytes(a)) == keccak256(bytes(b));
}
}// 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;
}
}// 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);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
* with further edits by Uniswap Labs also under MIT license.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
// Solidity will revert if denominator == 0, unlike the div opcode on its own.
// The surrounding unchecked block does not change this fact.
// See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
require(denominator > prod1, "Math: mulDiv overflow");
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
// See https://cs.stackexchange.com/q/138556/92363.
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 twos = denominator & (~denominator + 1);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
// in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10 ** 64) {
value /= 10 ** 64;
result += 64;
}
if (value >= 10 ** 32) {
value /= 10 ** 32;
result += 32;
}
if (value >= 10 ** 16) {
value /= 10 ** 16;
result += 16;
}
if (value >= 10 ** 8) {
value /= 10 ** 8;
result += 8;
}
if (value >= 10 ** 4) {
value /= 10 ** 4;
result += 4;
}
if (value >= 10 ** 2) {
value /= 10 ** 2;
result += 2;
}
if (value >= 10 ** 1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256, rounded down, of a positive value.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 256, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard signed math utilities missing in the Solidity language.
*/
library SignedMath {
/**
* @dev Returns the largest of two signed numbers.
*/
function max(int256 a, int256 b) internal pure returns (int256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two signed numbers.
*/
function min(int256 a, int256 b) internal pure returns (int256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two signed numbers without overflow.
* The result is rounded towards zero.
*/
function average(int256 a, int256 b) internal pure returns (int256) {
// Formula from the book "Hacker's Delight"
int256 x = (a & b) + ((a ^ b) >> 1);
return x + (int256(uint256(x) >> 255) & (a ^ b));
}
/**
* @dev Returns the absolute unsigned value of a signed value.
*/
function abs(int256 n) internal pure returns (uint256) {
unchecked {
// must be unchecked in order to support `n = type(int256).min`
return uint256(n >= 0 ? n : -n);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/structs/EnumerableSet.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.
pragma solidity ^0.8.0;
/**
* @dev Library for managing
* https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
* types.
*
* Sets have the following properties:
*
* - Elements are added, removed, and checked for existence in constant time
* (O(1)).
* - Elements are enumerated in O(n). No guarantees are made on the ordering.
*
* ```solidity
* contract Example {
* // Add the library methods
* using EnumerableSet for EnumerableSet.AddressSet;
*
* // Declare a set state variable
* EnumerableSet.AddressSet private mySet;
* }
* ```
*
* As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
* and `uint256` (`UintSet`) are supported.
*
* [WARNING]
* ====
* Trying to delete such a structure from storage will likely result in data corruption, rendering the structure
* unusable.
* See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
*
* In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an
* array of EnumerableSet.
* ====
*/
library EnumerableSet {
// To implement this library for multiple types with as little code
// repetition as possible, we write it in terms of a generic Set type with
// bytes32 values.
// The Set implementation uses private functions, and user-facing
// implementations (such as AddressSet) are just wrappers around the
// underlying Set.
// This means that we can only create new EnumerableSets for types that fit
// in bytes32.
struct Set {
// Storage of set values
bytes32[] _values;
// Position of the value in the `values` array, plus 1 because index 0
// means a value is not in the set.
mapping(bytes32 => uint256) _indexes;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function _add(Set storage set, bytes32 value) private returns (bool) {
if (!_contains(set, value)) {
set._values.push(value);
// The value is stored at length-1, but we add 1 to all indexes
// and use 0 as a sentinel value
set._indexes[value] = set._values.length;
return true;
} else {
return false;
}
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function _remove(Set storage set, bytes32 value) private returns (bool) {
// We read and store the value's index to prevent multiple reads from the same storage slot
uint256 valueIndex = set._indexes[value];
if (valueIndex != 0) {
// Equivalent to contains(set, value)
// To delete an element from the _values array in O(1), we swap the element to delete with the last one in
// the array, and then remove the last element (sometimes called as 'swap and pop').
// This modifies the order of the array, as noted in {at}.
uint256 toDeleteIndex = valueIndex - 1;
uint256 lastIndex = set._values.length - 1;
if (lastIndex != toDeleteIndex) {
bytes32 lastValue = set._values[lastIndex];
// Move the last value to the index where the value to delete is
set._values[toDeleteIndex] = lastValue;
// Update the index for the moved value
set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex
}
// Delete the slot where the moved value was stored
set._values.pop();
// Delete the index for the deleted slot
delete set._indexes[value];
return true;
} else {
return false;
}
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function _contains(Set storage set, bytes32 value) private view returns (bool) {
return set._indexes[value] != 0;
}
/**
* @dev Returns the number of values on the set. O(1).
*/
function _length(Set storage set) private view returns (uint256) {
return set._values.length;
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function _at(Set storage set, uint256 index) private view returns (bytes32) {
return set._values[index];
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function _values(Set storage set) private view returns (bytes32[] memory) {
return set._values;
}
// Bytes32Set
struct Bytes32Set {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _add(set._inner, value);
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _remove(set._inner, value);
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
return _contains(set._inner, value);
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(Bytes32Set storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
return _at(set._inner, index);
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
bytes32[] memory store = _values(set._inner);
bytes32[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
// AddressSet
struct AddressSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(AddressSet storage set, address value) internal returns (bool) {
return _add(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(AddressSet storage set, address value) internal returns (bool) {
return _remove(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(AddressSet storage set, address value) internal view returns (bool) {
return _contains(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(AddressSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(AddressSet storage set, uint256 index) internal view returns (address) {
return address(uint160(uint256(_at(set._inner, index))));
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(AddressSet storage set) internal view returns (address[] memory) {
bytes32[] memory store = _values(set._inner);
address[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
// UintSet
struct UintSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(UintSet storage set, uint256 value) internal returns (bool) {
return _add(set._inner, bytes32(value));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(UintSet storage set, uint256 value) internal returns (bool) {
return _remove(set._inner, bytes32(value));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(UintSet storage set, uint256 value) internal view returns (bool) {
return _contains(set._inner, bytes32(value));
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(UintSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(UintSet storage set, uint256 index) internal view returns (uint256) {
return uint256(_at(set._inner, index));
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(UintSet storage set) internal view returns (uint256[] memory) {
bytes32[] memory store = _values(set._inner);
uint256[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
}{
"codegen": "yul",
"enableEraVMExtensions": true,
"evmVersion": "paris",
"forceEVMLA": false,
"libraries": {},
"metadata": {},
"optimizer": {
"disable_system_request_memoization": true,
"enabled": true,
"mode": "3",
"size_fallback": false
},
"outputSelection": {
"*": {
"*": [
"abi"
]
}
},
"remappings": [
"@openzeppelin/=lib/openzeppelin-contracts/",
"forge-std/=lib/forge-std/src/",
"ds-test/=lib/forge-std/lib/ds-test/src/",
"erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
"openzeppelin-contracts/=lib/openzeppelin-contracts/",
"openzeppelin/=lib/openzeppelin-contracts/contracts/"
],
"viaIR": false
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_admin","type":"address"},{"internalType":"address","name":"_pauser","type":"address"},{"internalType":"address","name":"_operator","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_feeReceiver","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"address","name":"value","type":"address"}],"name":"InvalidAddress","type":"error"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"InvalidValue","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"bool","name":"isExempt","type":"bool"}],"name":"ExemptFromFeeSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"feeReceiver","type":"address"}],"name":"FeeReceiverSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"transferFee","type":"uint256"}],"name":"TransferFeeSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_TRANSFER_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FEE_PRECISION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TRANSFER_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"isExemptFromFee","outputs":[{"internalType":"bool","name":"exemptFee","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"},{"internalType":"bool","name":"_isExempt","type":"bool"}],"name":"setExemptFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeReceiver","type":"address"}],"name":"setFeeReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_transferFee","type":"uint256"}],"name":"setTransferFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010004490cb0837d8c8f66eca306d1736e73a4113276e3be5e21d29a228f3291000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001400000000000000000000000002720b88a05ecdec70c03aa4596ada65707b54305000000000000000000000000fd3f90dd1355910fef471f7a8852714ff97cbfbd000000000000000000000000fd3f90dd1355910fef471f7a8852714ff97cbfbd00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000002720b88a05ecdec70c03aa4596ada65707b54305000000000000000000000000000000000000000000000000000000000000000d6b4142582053747261746567790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000076b41425853545200000000000000000000000000000000000000000000000000
Deployed Bytecode
0x00020000000000020008000000000002000000000801034f00010000000103550000006001100270000003aa0010019d0000008003000039000000400030043f000003aa011001970000000100200190000000280000c13d000000040010008c000000520000413d000000000208043b000000e002200270000003d10020009c000000540000213d000003ec0020009c000000760000a13d000003ed0020009c000000980000213d000003f40020009c0000019d0000a13d000003f50020009c000003030000613d000003f60020009c0000032c0000613d000003f70020009c000000520000c13d0000000002000416000000000002004b000000520000c13d000000240010008c000000520000413d0000000401800370000000000201043b00000000010004110ea20d670000040f000000000100001900000ea30001042e0000000002000416000000000002004b000000520000c13d0000001f02100039000003ab022001970000008002200039000000400020043f0000001f0410018f000003ac051001980000008002500039000000380000613d000000000608034f000000006706043c0000000003730436000000000023004b000000340000c13d000000000004004b000000450000613d000000000358034f0000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000c00010008c000000520000413d000000800900043d000003ad0090009c000000520000213d000000a00200043d000800000002001d000003ad0020009c000000520000213d000000c00200043d000700000002001d000003ad0020009c000000ff0000a13d000000000100001900000ea400010430000003d20020009c000000870000a13d000003d30020009c000000bf0000213d000003da0020009c000001c20000a13d000003db0020009c0000035b0000613d000003dc0020009c000003620000613d000003dd0020009c000000520000c13d0000000002000416000000000002004b000000520000c13d000000440010008c000000520000413d0000000401800370000000000101043b000003ad0010009c000000520000213d0000002402800370000000000202043b000800000002001d000003ad0020009c000000520000213d000000000010043f0000000301000039000000200010043f00000040010000390ea20e870000040f0000000802000029000000000020043f0000039f0000013d000003fa0020009c000000ce0000a13d000003fb0020009c000001450000a13d000003fc0020009c000003760000613d000003fd0020009c000001e40000613d000003fe0020009c000000520000c13d0000000001000416000000000001004b000000520000c13d0000001201000039000000800010043f000004060100004100000ea30001042e000003e00020009c000000e10000a13d000003e10020009c000001640000a13d000003e20020009c0000037f0000613d000003e30020009c0000029b0000613d000003e40020009c000000520000c13d0000000001000416000000000001004b000000520000c13d0000040a01000041000000800010043f000004060100004100000ea30001042e000003ee0020009c000001d00000a13d000003ef0020009c000003940000613d000003f00020009c000003a60000613d000003f10020009c000000520000c13d0000000001000416000000000001004b000000520000c13d0000000001000411000003ad01100197000000000010043f000003c301000041000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000000520000613d000000000101043b000000000101041a000000ff00100190000004ff0000c13d000000400100043d00000064021000390000041303000041000000000032043500000044021000390000041403000041000000000032043500000024021000390000003703000039000003540000013d000003d40020009c000001d90000a13d000003d50020009c000003bc0000613d000003d60020009c000003c30000613d000003d70020009c000000520000c13d0000000001000416000000000001004b000000520000c13d000003c701000041000000800010043f000004060100004100000ea30001042e000004010020009c000001100000213d000004040020009c000002a00000613d000004050020009c000000520000c13d0000000002000416000000000002004b000000520000c13d000000240010008c000000520000413d0000000401800370000000000101043b0000042300100198000000520000c13d000004240010009c000005150000c13d00000001020000390000051a0000013d000003e70020009c000001210000213d000003ea0020009c000002ac0000613d000003eb0020009c000000520000c13d0000000002000416000000000002004b000000520000c13d000000440010008c000000520000413d0000000401800370000000000101043b000000000010043f0000000101000039000000200010043f0000002401800370000000000101043b000800000001001d00000040010000390ea20e870000040f00000008020000290ea20dda0000040f0000000302200210000000000101041a000000000121022f000003ad01100197000000ff0020008c00000000010020190000038d0000013d000000e00500043d000003ae0050009c000000520000213d00000080031000390000009f02500039000000000032004b000000520000813d00000080025000390000000004020433000003af0040009c000004590000413d0000041e01000041000000000010043f0000004101000039000000040010043f0000041f0100004100000ea400010430000004020020009c000002c70000613d000004030020009c000000520000c13d0000000002000416000000000002004b000000520000c13d000000440010008c000000520000413d0000000401800370000000000201043b000003ad0020009c000000520000213d0000002401800370000000000301043b0000000001000411000001c00000013d000003e80020009c000002dc0000613d000003e90020009c000000520000c13d0000000001000416000000000001004b000000520000c13d0000000603000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000626013f0000000100600190000002d60000c13d000000800010043f000000000005004b000004f90000613d000000000030043f000000020020008c0000054f0000413d000003b80200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b0000013c0000413d000005790000013d000003ff0020009c000002f80000613d000004000020009c000000520000c13d0000000002000416000000000002004b000000520000c13d000000640010008c000000520000413d0000000401800370000000000101043b000003ad0010009c000000520000213d00000000030100190000002401800370000000000101043b000800000001001d000003ad0010009c000000520000213d0000004401800370000000000401043b000700000004001d00000000020004110000000001030019000600000003001d00000000030400190ea209fa0000040f0000000601000029000000080200002900000007030000290000038b0000013d000003e50020009c000002fd0000613d000003e60020009c000000520000c13d0000000002000416000000000002004b000000520000c13d000000440010008c000000520000413d0000000401800370000000000101043b000800000001001d000003ad0010009c000000520000213d0000002401800370000000000101043b000700000001001d0000000001000411000000000010043f0000000301000039000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000000520000613d000000000101043b0000000802000029000000000020043f000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000000520000613d000000000101043b000000000101041a000000070310006c000001be0000813d000000400100043d00000064021000390000040c03000041000000000032043500000044021000390000040d03000041000000000032043500000024021000390000002503000039000003540000013d000003f80020009c000003e40000613d000003f90020009c000000520000c13d0000000002000416000000000002004b000000520000c13d000000440010008c000000520000413d0000000401800370000000000101043b000800000001001d000003ad0010009c000000520000213d0000000001000411000000000010043f0000000301000039000000200010043f000000400100003900070000000803530ea20e870000040f0000000802000029000000000020043f000000200010043f00000040010000390ea20e870000040f000000070200035f0000002402200370000000000202043b000000000101041a000000000021001a000007a00000413d0000000003210019000000000100041100000008020000290ea209a30000040f0000038c0000013d000003de0020009c000003f50000613d000003df0020009c000000520000c13d0000000002000416000000000002004b000000520000c13d000000240010008c000000520000413d0000000401800370000000000101043b000000000010043f00000001010000390000039f0000013d000003f20020009c000003fe0000613d000003f30020009c000000520000c13d0000000001000416000000000001004b000000520000c13d0000000701000039000002f10000013d000003d80020009c000004520000613d000003d90020009c000000520000c13d0000000001000416000000000001004b000000520000c13d0000040901000041000000800010043f000004060100004100000ea30001042e0000000002000416000000000002004b000000520000c13d000000440010008c000000520000413d0000000401800370000000000101043b000800000001001d0000002401800370000000000101043b000700000001001d000003ad0010009c000000520000213d0000000801000029000000000010043f000000200000043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000000520000613d000000000101043b0000000101100039000000000101041a0ea20c310000040f0000000801000029000000000010043f000000200000043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000000520000613d000000000101043b0000000702000029000000000020043f000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000000520000613d000000000101043b000000000101041a000000ff001001900000024a0000c13d0000000801000029000000000010043f000000200000043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000000520000613d000000000101043b0000000702000029000000000020043f000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000000520000613d000000000101043b000000000201041a000004270220019700000001022001bf000000000021041b0000000001000414000003aa0010009c000003aa01008041000000c001100210000003bb011001c70000800d0200003900000004030000390000000007000411000003bc04000041000000080500002900000007060000290ea20e980000040f0000000100200190000000520000613d0000000801000029000000000010043f0000000101000039000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000000520000613d000000000201043b0000000001000415000600000001001d0000000701000029000000000010043f000800000002001d0000000101200039000500000001001d000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000000520000613d000000000101043b000000000101041a000000000001004b000002960000c13d0000000801000029000000000101041a000400000001001d000003ae0010009c0000010a0000213d000000040100002900000001011000390000000802000029000000000012041b000000000020043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003b5011001c700008010020000390ea20e9d0000040f0000000100200190000000520000613d000000000101043b00000004011000290000000702000029000000000021041b0000000801000029000000000101041a000800000001001d000000000020043f0000000501000029000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000000520000613d000000000101043b0000000802000029000000000021041b000000000100041500000006011000690000000001000002000000000100001900000ea30001042e0000000001000416000000000001004b000000520000c13d0000000801000039000003a20000013d0000000002000416000000000002004b000000520000c13d000000240010008c000000520000413d0000000401800370000000000101043b000003ad0010009c000000520000213d000000000010043f0000000a01000039000002ee0000013d0000000002000416000000000002004b000000520000c13d000000240010008c000000520000413d0000000401800370000000000101043b000800000001001d0ea20be90000040f0000000805000029000004090050009c000004eb0000413d000000400100043d00000064021000390000041003000041000000000032043500000044021000390000000b0300003900000000003204350000041102000041000000000021043500000004021000390000004003000039000000000032043500000024021000390000000000520435000003df0000013d0000000001000416000000000001004b000000520000c13d0000000503000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000626013f0000000100600190000004f60000613d0000041e01000041000000000010043f0000002201000039000000040010043f0000041f0100004100000ea4000104300000000002000416000000000002004b000000520000c13d000000440010008c000000520000413d0000002401800370000000000101043b000800000001001d000003ad0010009c000000520000213d0000000401800370000000000101043b000000000010043f000000200000043f00000040010000390ea20e870000040f0000000802000029000000000020043f000000200010043f00000040010000390ea20e870000040f000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f000004060100004100000ea30001042e0000000001000416000000000001004b000000520000c13d0000000401000039000003a20000013d0000000001000416000000000001004b000000520000c13d000000800000043f000004060100004100000ea30001042e0000000001000416000000000001004b000000520000c13d0000000001000411000003ad01100197000000000010043f000003c301000041000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000000520000613d000000400200043d000000000101043b000000000101041a000000ff001001900000051e0000c13d00000064012000390000041d0300004100000000003104350000004401200039000004140300004100000000003104350000002401200039000000390300003900000000003104350000040e010000410000000000120435000000040120003900000020030000390000000000310435000003aa0020009c000003aa020080410000004001200210000003ce011001c700000ea4000104300000000002000416000000000002004b000000520000c13d000000440010008c000000520000413d0000000401800370000000000101043b000800000001001d000003ad0010009c000000520000213d0000002401800370000000000101043b000700000001001d0000000001000411000003ad01100197000000000010043f000003b901000041000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000000520000613d000000000101043b000000000101041a000000ff00100190000005510000c13d000000400100043d00000064021000390000041a0300004100000000003204350000004402100039000004140300004100000000003204350000002402100039000000360300003900000000003204350000040e020000410000000000210435000000040210003900000020030000390000000000320435000003df0000013d0000000001000416000000000001004b000000520000c13d000003bd01000041000000800010043f000004060100004100000ea30001042e0000000002000416000000000002004b000000520000c13d000000440010008c000000520000413d0000002401800370000000000101043b000800000001001d000003ad0010009c000000520000213d0000000401800370000000000101043b000700000001001d0ea209920000040f0ea20c310000040f000000070100002900000008020000290ea20c850000040f000000000100001900000ea30001042e0000000002000416000000000002004b000000520000c13d000000240010008c000000520000413d0000000401800370000000000101043b0ea209920000040f0000038d0000013d0000000002000416000000000002004b000000520000c13d000000440010008c000000520000413d0000000401800370000000000201043b000003ad0020009c000000520000213d0000002401800370000000000301043b00000000010004110ea20a870000040f0000000101000039000000400200043d0000000000120435000003aa0020009c000003aa0200804100000040012002100000040b011001c700000ea30001042e0000000002000416000000000002004b000000520000c13d000000240010008c000000520000413d0000000401800370000000000101043b000003ad0010009c000000520000213d000000000010043f0000000201000039000000200010043f00000040010000390ea20e870000040f000000000101041a000000800010043f000004060100004100000ea30001042e0000000002000416000000000002004b000000520000c13d000000440010008c000000520000413d0000000401800370000000000101043b000003ad0010009c000000520000213d00000000040100190000002401800370000000000301043b000700000003001d00000000020004110000000001040019000800000004001d0ea209fa0000040f000000080100002900000007020000290ea20d670000040f000000000100001900000ea30001042e0000000001000416000000000001004b000000520000c13d000003c401000041000000800010043f000004060100004100000ea30001042e0000000002000416000000000002004b000000520000c13d000000240010008c000000520000413d0000000401800370000000000101043b000800000001001d000003ad0010009c000000520000213d0ea20be90000040f0000000805000029000000000005004b000005320000c13d000000400100043d00000064021000390000040803000041000000000032043500000044021000390000000b030000390000000000320435000003cd02000041000000000021043500000004021000390000004003000039000000000032043500000024021000390000000000020435000003aa0010009c000003aa010080410000004001100210000003ce011001c700000ea4000104300000000002000416000000000002004b000000520000c13d000000440010008c000000520000413d0000002401800370000000000101043b000003ad0010009c000000520000213d0000000002000411000000000021004b000005400000c13d0000000401800370000000000101043b0ea20c850000040f000000000100001900000ea30001042e0000000001000416000000000001004b000000520000c13d0000000901000039000000000101041a000003ad01100197000000800010043f000004060100004100000ea30001042e0000000002000416000000000002004b000000520000c13d000000440010008c000000520000413d0000000402800370000000000202043b000003ae0020009c000000520000213d0000002303200039000000000013004b000000520000813d0000000403200039000000000338034f000000000303043b000500000003001d000003ae0030009c000000520000213d00000005030000290000000503300210000400240020003d0000000402300029000000000012004b000000520000213d0000002401800370000000000101043b000000000001004b0000000002000039000000010200c039000700000002001d000000010010008c000000520000213d0ea20be90000040f000000050000006b0000056d0000613d000800000000001d000000080100002900000005011002100000000401100029000600000001001d0000000101100367000000000101043b000003ad0010009c000000520000213d000000000010043f0000000a01000039000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000000520000613d000000000101043b000000000201041a000004270220019700000007022001af000000000021041b00000006010000290000000101100367000000000501043b000003ad0050009c000000520000213d0000000001000414000003aa0010009c000003aa01008041000000c001100210000003bb011001c70000800d020000390000000303000039000004150400004100000007060000290ea20e980000040f0000000100200190000000520000613d00000008020000290000000102200039000800000002001d000000050020006c000004220000413d0000056d0000013d0000000001000416000000000001004b000000520000c13d000003c901000041000000800010043f000004060100004100000ea30001042e0000001f02400039000003b0022001970000003f02200039000003b102200197000000400700043d0000000002270019000000000072004b00000000060000390000000106004039000003ae0020009c0000010a0000213d00000001006001900000010a0000c13d000000400020043f000600000007001d0000000002470436000000a0055000390000000006540019000000000036004b000000520000213d000000000004004b000004770000613d000000000600001900000000076200190000000008560019000000000808043300000000008704350000002006600039000000000046004b000004700000413d000000060440002900000020044000390000000000040435000001000400043d000003ae0040009c000000520000213d0000001f05400039000000000015004b0000000001000019000003b201008041000003b205500197000000000005004b0000000006000019000003b206004041000003b20050009c000000000601c019000000000006004b000000520000c13d00000080014000390000000001010433000003ae0010009c0000010a0000213d0000001f05100039000003b0055001970000003f05500039000003b105500197000000400700043d0000000005570019000000000075004b00000000060000390000000106004039000003ae0050009c0000010a0000213d00000001006001900000010a0000c13d000000400050043f000500000007001d0000000005170436000400000005001d000000a0044000390000000005410019000000000035004b000000520000213d000300000009001d000000000001004b0000000407000029000004ae0000613d000000000300001900000000053700190000000006430019000000000606043300000000006504350000002003300039000000000013004b000004a70000413d000000050110002900000020011000390000000000010435000001200100043d000200000001001d000003ad0010009c000000520000213d00000006010000290000000001010433000100000001001d000003ae0010009c0000010a0000213d0000000501000039000000000101041a000000010310019000000001011002700000007f0110618f0000001f0010008c00000000040000390000000104002039000000000034004b000002d60000c13d000000200010008c000004d70000413d0000000503000039000000000030043f00000001040000290000001f034000390000000503300270000003b30330009a000000200040008c000003b4030040410000001f011000390000000501100270000003b30110009a000000000013004b000004d70000813d000000000003041b0000000103300039000000000013004b000004d30000413d00000001010000290000001f0010008c000005cd0000a13d0000000501000039000000000010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003b5011001c700008010020000390ea20e9d0000040f0000000100200190000000520000613d0000000102000029000003b602200198000000000101043b000005d90000c13d0000002003000039000005e60000013d0000000801000039000000000051041b0000000001000414000003aa0010009c000003aa01008041000000c001100210000003bb011001c70000800d0200003900000002030000390000040f040000410000056a0000013d000000800010043f000000000005004b0000054c0000c13d0000042701200197000000a00010043f000000000004004b000000c001000039000000a0010060390000057a0000013d0000000701000039000000000201041a000000ff00200190000005bc0000c13d00000001022001bf000000000021041b000000400100043d00000000020004110000000000210435000003aa0010009c000003aa0100804100000040011002100000000002000414000003aa0020009c000003aa02008041000000c002200210000000000112019f000003b5011001c70000800d02000039000000010300003900000412040000410000056a0000013d000004250010009c00000000020000390000000102006039000004260010009c00000001022061bf000000010120018f000000800010043f000004060100004100000ea30001042e0000000701000039000000000301041a000000ff003001900000055a0000c13d00000044012000390000041c0300004100000000003104350000002401200039000000140300003900000000003104350000040e010000410000000000120435000000040120003900000020030000390000000000310435000003aa0020009c000003aa02008041000000400120021000000417011001c700000ea4000104300000000901000039000000000201041a000003ca02200197000000000252019f000000000021041b0000000001000414000003aa0010009c000003aa01008041000000c001100210000003bb011001c70000800d02000039000000020300003900000407040000410000056a0000013d0000040e01000041000000800010043f0000002001000039000000840010043f0000002f01000039000000a40010043f0000042001000041000000c40010043f0000042101000041000000e40010043f000004220100004100000ea400010430000000000030043f000000020020008c0000056f0000813d000000a0010000390000057a0000013d000000080000006b0000058b0000c13d000000400100043d00000044021000390000041903000041000000000032043500000024021000390000001f03000039000005c20000013d0000042703300197000000000031041b00000000010004110000000000120435000003aa0020009c000003aa0200804100000040012002100000000002000414000003aa0020009c000003aa02008041000000c002200210000000000112019f000003b5011001c70000800d0200003900000001030000390000041b040000410ea20e980000040f0000000100200190000000520000613d000000000100001900000ea30001042e000003b40200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000005710000413d000000c001300039000000800210008a00000080010000390ea209800000040f000000400100043d000800000001001d00000080020000390ea2096b0000040f00000008020000290000000001210049000003aa0010009c000003aa010080410000006001100210000003aa0020009c000003aa020080410000004002200210000000000121019f00000ea30001042e0000000701000039000000000101041a000000ff00100190000005bc0000c13d0000000401000039000000000201041a0000000703000029000000000032001a000007a00000413d0000000002320019000000000021041b0000000801000029000000000010043f0000000201000039000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000000520000613d000000000101043b000000000201041a00000007030000290000000002320019000000000021041b000000400100043d0000000000310435000003aa0010009c000003aa0100804100000040011002100000000002000414000003aa0020009c000003aa02008041000000c002200210000000000112019f000003b5011001c70000800d0200003900000003030000390000041804000041000000000500001900000008060000290ea20e980000040f0000000100200190000000520000613d0000056d0000013d000000400100043d0000004402100039000004160300004100000000003204350000002402100039000000100300003900000000003204350000040e020000410000000000210435000000040210003900000020030000390000000000320435000003aa0010009c000003aa01008041000000400110021000000417011001c700000ea400010430000000010000006b0000000001000019000005d10000613d000000000102043300000001040000290000000302400210000004280220027f0000042802200167000000000121016f0000000102400210000000000121019f000005f40000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000060600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000005df0000c13d000000010020006c000005f10000613d00000001020000290000000302200210000000f80220018f000004280220027f000004280220016700000006033000290000000003030433000000000223016f000000000021041b0000000101000029000000010110021000000001011001bf0000000502000039000000000012041b00000005010000290000000001010433000600000001001d000003ae0010009c0000010a0000213d0000000601000039000000000201041a000000010020019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000223013f0000000100200190000002d60000c13d000000200010008c000006190000413d0000000602000039000000000020043f00000006030000290000001f023000390000000502200270000003b70220009a000000200030008c000003b8020040410000001f011000390000000501100270000003b70110009a000000000012004b000006190000813d000000000002041b0000000102200039000000000012004b000006150000413d00000006010000290000001f0010008c0000062d0000a13d0000000601000039000000000010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003b5011001c700008010020000390ea20e9d0000040f0000000100200190000000520000613d0000000602000029000003b602200198000000000101043b0000063a0000c13d0000002003000039000006470000013d000000060000006b0000000001000019000006320000613d0000000401000029000000000101043300000006040000290000000302400210000004280220027f0000042802200167000000000121016f0000000102400210000000000121019f000006550000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000050600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000006400000c13d000000060020006c000006520000613d00000006020000290000000302200210000000f80220018f000004280220027f000004280220016700000005033000290000000003030433000000000223016f000000000021041b0000000601000029000000010110021000000001011001bf0000000602000039000000000012041b0000000701000039000000000201041a0000042702200197000000000021041b00000000010004110ea207a60000040f0000000001000411000003ad01100197000600000001001d000000000010043f000003b901000041000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000000520000613d000000000101043b000000000101041a000000ff00100190000006900000c13d0000000601000029000000000010043f000003b901000041000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000000520000613d000000000101043b000000000201041a000004270220019700000001022001bf000000000021041b0000000001000414000003aa0010009c000003aa01008041000000c001100210000003bb011001c70000800d020000390000000403000039000003bc04000041000003bd05000041000000000600041100000000070600190ea20e980000040f0000000100200190000000520000613d0000000001000411000000000010043f000003be01000041000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000000520000613d000000000101043b000000000101041a000000000001004b000006c90000c13d000003bf01000041000000000201041a000500000002001d000003ae0020009c0000010a0000213d00000005020000290000000102200039000000000021041b000000000010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003b5011001c700008010020000390ea20e9d0000040f0000000100200190000000520000613d000000000101043b00000005011000290000000002000411000000000021041b000003bf01000041000000000101041a000500000001001d000000000020043f000003be01000041000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000000520000613d000000000101043b0000000502000029000000000021041b00000000010004110ea2081b0000040f000000030000006b000006d40000c13d000000400100043d0000006402100039000003d003000041000000000032043500000044021000390000000503000039000003d70000013d000000080000006b000006dd0000c13d000000400100043d0000006402100039000003cf03000041000000000032043500000044021000390000000603000039000003d70000013d000000070000006b000006e60000c13d000000400100043d0000006402100039000003cc03000041000000000032043500000044021000390000000803000039000003d70000013d000000020000006b000003d10000613d0000000601000029000000000010043f000003c001000041000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000000520000613d000000000101043b000000000101041a000000ff00100190000007600000c13d000000000000043f0000000101000039000000200010043f000003c20100004100000000020004110ea208900000040f0000000601000029000000000010043f000003c301000041000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000000520000613d000000000101043b000000000101041a000000ff00100190000007800000c13d000003c401000041000000000010043f0000000101000039000000200010043f000003c50100004100000000020004110ea208900000040f00000003010000290ea207a60000040f00000008010000290ea2081b0000040f0000000701000029000000000010043f000003c601000041000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000000520000613d000000000101043b000000000101041a000000ff001001900000074c0000c13d0000000701000029000000000010043f000003c601000041000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000000520000613d000000000101043b000000000201041a000004270220019700000001022001bf000000000021041b0000000001000414000003aa0010009c000003aa01008041000000c001100210000003bb011001c70000800d020000390000000403000039000003bc04000041000003c705000041000000070600002900000000070004110ea20e980000040f0000000100200190000000520000613d000003c701000041000000000010043f0000000101000039000000200010043f000003c80100004100000007020000290ea209190000040f000003c9010000410000000802000039000000000012041b0000000901000039000000000201041a000003ca0220019700000002022001af000000000021041b000000200100003900000100001004430000012000000443000003cb0100004100000ea30001042e0000000601000029000000000010043f000003c001000041000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000000520000613d000000000101043b000000000201041a0000042702200197000000000021041b0000000001000414000003aa0010009c000003aa01008041000000c001100210000003bb011001c70000800d020000390000000403000039000003c1040000410000000005000019000000000600041100000000070600190ea20e980000040f0000000100200190000000520000613d000006f90000013d0000000601000029000000000010043f000003c301000041000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000000520000613d000000000101043b000000000201041a0000042702200197000000000021041b0000000001000414000003aa0010009c000003aa01008041000000c001100210000003bb011001c70000800d020000390000000403000039000003c104000041000003c405000041000000000600041100000000070600190ea20e980000040f0000000100200190000000520000613d000007100000013d0000041e01000041000000000010043f0000001101000039000000040010043f0000041f0100004100000ea4000104300002000000000002000003ad01100197000200000001001d000000000010043f000003c001000041000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000008130000613d000000000101043b000000000101041a000000ff00100190000007d90000c13d0000000201000029000000000010043f000003c001000041000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000008130000613d000000000101043b000000000201041a000004270220019700000001022001bf000000000021041b0000000001000414000003aa0010009c000003aa01008041000000c001100210000003bb011001c70000800d0200003900000004030000390000000007000411000003bc04000041000000000500001900000002060000290ea20e980000040f0000000100200190000008130000613d0000000201000029000000000010043f0000042901000041000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000008130000613d000000000101043b000000000101041a000000000001004b000007eb0000613d000000000001042d000003c201000041000000000201041a000003af0020009c000008150000813d000100000002001d0000000102200039000000000021041b000000000010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003b5011001c700008010020000390ea20e9d0000040f0000000100200190000008130000613d000000000101043b00000001011000290000000202000029000000000021041b000003c201000041000000000101041a000100000001001d000000000020043f0000042901000041000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000008130000613d000000000101043b0000000102000029000000000021041b000000000001042d000000000100001900000ea4000104300000041e01000041000000000010043f0000004101000039000000040010043f0000041f0100004100000ea4000104300002000000000002000003ad01100197000200000001001d000000000010043f000003c301000041000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000008880000613d000000000101043b000000000101041a000000ff001001900000084e0000c13d0000000201000029000000000010043f000003c301000041000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000008880000613d000000000101043b000000000201041a000004270220019700000001022001bf000000000021041b0000000001000414000003aa0010009c000003aa01008041000000c001100210000003bb011001c70000800d0200003900000004030000390000000007000411000003bc04000041000003c40500004100000002060000290ea20e980000040f0000000100200190000008880000613d0000000201000029000000000010043f0000042a01000041000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000008880000613d000000000101043b000000000101041a000000000001004b000008600000613d000000000001042d000003c501000041000000000201041a000003af0020009c0000088a0000813d000100000002001d0000000102200039000000000021041b000000000010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003b5011001c700008010020000390ea20e9d0000040f0000000100200190000008880000613d000000000101043b00000001011000290000000202000029000000000021041b000003c501000041000000000101041a000100000001001d000000000020043f0000042a01000041000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000008880000613d000000000101043b0000000102000029000000000021041b000000000001042d000000000100001900000ea4000104300000041e01000041000000000010043f0000004101000039000000040010043f0000041f0100004100000ea4000104300006000000000002000300000002001d000000000020043f000600000001001d0000000101100039000400000001001d000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000009050000613d0000000603000029000000000101043b000000000101041a000000000001004b000009040000613d000000000203041a000000000002004b000009070000613d000000000012004b000500000001001d000008e40000613d000200000002001d000000000030043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003b5011001c700008010020000390ea20e9d0000040f0000000100200190000009050000613d00000005020000290001000100200092000000000101043b0000000604000029000000000204041a000000010020006c0000090d0000a13d0000000202000029000000010220008a0000000001120019000000000101041a000200000001001d000000000040043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003b5011001c700008010020000390ea20e9d0000040f0000000100200190000009050000613d000000000101043b00000001011000290000000202000029000000000021041b000000000020043f0000000401000029000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000009050000613d000000000101043b0000000502000029000000000021041b0000000603000029000000000103041a000500000001001d000000000001004b000009130000613d000000000030043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003b5011001c700008010020000390ea20e9d0000040f0000000100200190000009050000613d0000000502000029000000010220008a000000000101043b0000000001210019000000000001041b0000000601000029000000000021041b0000000301000029000000000010043f0000000401000029000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000009050000613d000000000101043b000000000001041b000000000001042d000000000100001900000ea4000104300000041e01000041000000000010043f0000001101000039000000040010043f0000041f0100004100000ea4000104300000041e01000041000000000010043f0000003201000039000000040010043f0000041f0100004100000ea4000104300000041e01000041000000000010043f0000003101000039000000040010043f0000041f0100004100000ea4000104300004000000000002000300000002001d000000000020043f000400000001001d0000000101100039000200000001001d000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000009560000613d000000000101043b000000000101041a000000000001004b0000092e0000613d000000000001042d0000000402000029000000000102041a000003af0010009c000009580000813d000100000001001d0000000101100039000000000012041b000000000020043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003b5011001c700008010020000390ea20e9d0000040f0000000100200190000009560000613d000000000101043b00000001011000290000000302000029000000000021041b0000000401000029000000000101041a000400000001001d000000000020043f0000000201000029000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000009560000613d000000000101043b0000000402000029000000000021041b000000000001042d000000000100001900000ea4000104300000041e01000041000000000010043f0000004101000039000000040010043f0000041f0100004100000ea400010430000000000003004b000009680000613d000000000400001900000000052400190000000006140019000000000606043300000000006504350000002004400039000000000034004b000009610000413d00000000012300190000000000010435000000000001042d00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b0000097a0000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b000009730000413d000000000312001900000000000304350000001f022000390000042b022001970000000001210019000000000001042d0000001f022000390000042b022001970000000001120019000000000021004b00000000020000390000000102004039000003ae0010009c0000098c0000213d00000001002001900000098c0000c13d000000400010043f000000000001042d0000041e01000041000000000010043f0000004101000039000000040010043f0000041f0100004100000ea400010430000000000010043f000000200000043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f0000000100200190000009a10000613d000000000101043b0000000101100039000000000101041a000000000001042d000000000100001900000ea4000104300003000000000002000003ad01100198000009dc0000613d000200000003001d000303ad0020019c000009e60000613d000100000001001d000000000010043f0000000301000039000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f00000001002001900000000303000029000009da0000613d000000000101043b000000000030043f000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f00000003060000290000000100200190000009da0000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000003aa0010009c000003aa0100804100000040011002100000000002000414000003aa0020009c000003aa02008041000000c002200210000000000112019f000003b5011001c70000800d0200003900000003030000390000042c0400004100000001050000290ea20e980000040f0000000100200190000009da0000613d000000000001042d000000000100001900000ea400010430000000400100043d00000064021000390000042f03000041000000000032043500000044021000390000043003000041000000000032043500000024021000390000002403000039000009ef0000013d000000400100043d00000064021000390000042d03000041000000000032043500000044021000390000042e0300004100000000003204350000002402100039000000220300003900000000003204350000040e020000410000000000210435000000040210003900000020030000390000000000320435000003aa0010009c000003aa010080410000004001100210000003ce011001c700000ea4000104300003000000000002000100000003001d000200000002001d000003ad01100197000300000001001d000000000010043f0000000301000039000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f000000010020019000000a560000613d000000000101043b0000000202000029000003ad02200197000200000002001d000000000020043f000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f000000010020019000000a560000613d000000000101043b000000000101041a000004280010009c00000a550000613d000000010210006c00000a580000413d000000030000006b00000a690000613d000100000002001d000000020000006b00000a730000613d0000000301000029000000000010043f0000000301000039000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f000000010020019000000a560000613d000000000101043b0000000202000029000000000020043f000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f000000010020019000000a560000613d000000000101043b0000000102000029000000000021041b000000400100043d0000000000210435000003aa0010009c000003aa0100804100000040011002100000000002000414000003aa0020009c000003aa02008041000000c002200210000000000112019f000003b5011001c70000800d0200003900000003030000390000042c04000041000000030500002900000002060000290ea20e980000040f000000010020019000000a560000613d000000000001042d000000000100001900000ea400010430000000400100043d00000044021000390000043103000041000000000032043500000024021000390000001d0300003900000000003204350000040e020000410000000000210435000000040210003900000020030000390000000000320435000003aa0010009c000003aa01008041000000400110021000000417011001c700000ea400010430000000400100043d00000064021000390000042f0300004100000000003204350000004402100039000004300300004100000000003204350000002402100039000000240300003900000a7c0000013d000000400100043d00000064021000390000042d03000041000000000032043500000044021000390000042e0300004100000000003204350000002402100039000000220300003900000000003204350000040e020000410000000000210435000000040210003900000020030000390000000000320435000003aa0010009c000003aa010080410000004001100210000003ce011001c700000ea4000104300006000000000002000500000003001d000400000002001d000003ad01100197000600000001001d000000000010043f0000000a01000039000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f000000010020019000000ba80000613d000000000101043b000000000101041a000000ff0010019000000aaf0000c13d0000000401000029000003ad01100197000300000001001d000000000010043f0000000a01000039000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f000000010020019000000ba80000613d000000000101043b000000000101041a000000ff0010019000000aff0000613d000000060000006b00000bcf0000613d0000000401000029000403ad0010019c00000baa0000613d0000000701000039000000000101041a000000ff0010019000000bb40000c13d0000000601000029000000000010043f0000000201000039000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f000000010020019000000ba80000613d0000000203000039000000000101043b000000000101041a000300050010007400000bc50000413d0000000601000029000000000010043f000000200030043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f000000010020019000000ba80000613d000000000101043b0000000302000029000000000021041b0000000401000029000000000010043f0000000201000039000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f000000010020019000000ba80000613d000000000101043b000000000201041a00000005030000290000000002320019000000000021041b000000400100043d0000000000310435000003aa0010009c000003aa0100804100000040011002100000000002000414000003aa0020009c000003aa02008041000000c002200210000000000112019f000003b5011001c70000800d0200003900000003030000390000041804000041000000060500002900000004060000290ea20e980000040f000000010020019000000ba80000613d000000000001042d0000000801000039000000000201041a000000050400002900000000014200a9000000000004004b00000b080000613d00000000034100d9000000000032004b00000be30000c13d0004040900100132000000040140006c000200000001001d00000be30000413d000000060000006b00000bcf0000613d0000000901000039000000000101041a000503ad0010019c00000baa0000613d0000000701000039000000000101041a000000ff0010019000000bb40000c13d0000000601000029000000000010043f0000000201000039000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f000000010020019000000ba80000613d000000000101043b000000000101041a000100040010007400000bc50000413d0000000601000029000000000010043f0000000201000039000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f000000010020019000000ba80000613d000000000101043b0000000102000029000000000021041b0000000501000029000000000010043f0000000201000039000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f000000010020019000000ba80000613d000000000101043b000000000201041a00000004030000290000000002320019000000000021041b000000400100043d0000000000310435000003aa0010009c000003aa0100804100000040011002100000000002000414000003aa0020009c000003aa02008041000000c002200210000000000112019f000003b5011001c70000800d0200003900000003030000390000041804000041000000060500002900000005060000290ea20e980000040f000000010020019000000ba80000613d000000030000006b00000baa0000613d0000000701000039000000000101041a000000ff0010019000000bb40000c13d0000000601000029000000000010043f0000000201000039000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f000000010020019000000ba80000613d000000000101043b000000000101041a000500020010007400000bc50000413d0000000601000029000000000010043f0000000201000039000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f000000010020019000000ba80000613d000000000101043b0000000502000029000000000021041b0000000301000029000000000010043f0000000201000039000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f000000010020019000000ba80000613d000000000101043b000000000201041a00000002030000290000000002320019000000000021041b000000400100043d0000000000310435000003aa0010009c000003aa0100804100000040011002100000000002000414000003aa0020009c000003aa02008041000000c002200210000000000112019f000003b5011001c70000800d0200003900000003030000390000041804000041000000060500002900000003060000290ea20e980000040f000000010020019000000afe0000c13d000000000100001900000ea400010430000000400100043d0000006402100039000004340300004100000000003204350000004402100039000004350300004100000000003204350000002402100039000000230300003900000bd80000013d000000400100043d0000004402100039000004160300004100000000003204350000002402100039000000100300003900000000003204350000040e020000410000000000210435000000040210003900000020030000390000000000320435000003aa0010009c000003aa01008041000000400110021000000417011001c700000ea400010430000000400100043d0000006402100039000004320300004100000000003204350000004402100039000004330300004100000000003204350000002402100039000000260300003900000bd80000013d000000400100043d0000006402100039000004360300004100000000003204350000004402100039000004370300004100000000003204350000002402100039000000250300003900000000003204350000040e020000410000000000210435000000040210003900000020030000390000000000320435000003aa0010009c000003aa010080410000004001100210000003ce011001c700000ea4000104300000041e01000041000000000010043f0000001101000039000000040010043f0000041f0100004100000ea40001043000030000000000020000000001000411000003ad01100197000000000010043f000003c601000041000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f000000010020019000000bfd0000613d000000000101043b000000000101041a000000ff0010019000000bff0000613d000000000001042d000000000100001900000ea40001043000000000010004110ea20df50000040f000200000001001d000003c7010000410ea20e3e0000040f000000400400043d000300000004001d000000200240003900000438030000410000000000320435000100000001001d00000002010000290000000013010434000200000003001d00000037024000390ea2095e0000040f00000439010000410000000203000029000000030230002900000037032000390000000000130435000000480220003900000001010000290000000013010434000100000003001d0ea2095e0000040f0000000102000029000000020320002900000028023000390000000301000029000000000021043500000048023000390ea209800000040f0000040e01000041000000400200043d000200000002001d0000000000120435000000040120003900000003020000290ea2096b0000040f00000002020000290000000001210049000003aa0010009c000003aa010080410000006001100210000003aa0020009c000003aa020080410000004002200210000000000121019f00000ea4000104300003000000000002000300000001001d000000000010043f000000200000043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f000000010020019000000c510000613d000000000101043b0000000002000411000003ad02200197000000000020043f000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f000000010020019000000c510000613d000000000101043b000000000101041a000000ff0010019000000c530000613d000000000001042d000000000100001900000ea40001043000000000010004110ea20df50000040f000200000001001d00000003010000290ea20e3e0000040f000000400400043d000300000004001d000000200240003900000438030000410000000000320435000100000001001d00000002010000290000000013010434000200000003001d00000037024000390ea2095e0000040f00000439010000410000000203000029000000030230002900000037032000390000000000130435000000480220003900000001010000290000000013010434000100000003001d0ea2095e0000040f0000000102000029000000020320002900000028023000390000000301000029000000000021043500000048023000390ea209800000040f0000040e01000041000000400200043d000200000002001d0000000000120435000000040120003900000003020000290ea2096b0000040f00000002020000290000000001210049000003aa0010009c000003aa010080410000006001100210000003aa0020009c000003aa020080410000004002200210000000000121019f00000ea4000104300006000000000002000600000002001d000500000001001d000000000010043f000000200000043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f000000010020019000000d530000613d000000000101043b0000000602000029000003ad02200197000600000002001d000000000020043f000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f000000010020019000000d530000613d000000000101043b000000000101041a000000ff0010019000000cd10000613d0000000501000029000000000010043f000000200000043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f000000010020019000000d530000613d000000000101043b0000000602000029000000000020043f000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f000000010020019000000d530000613d000000000101043b000000000201041a0000042702200197000000000021041b0000000001000414000003aa0010009c000003aa01008041000000c001100210000003bb011001c70000800d0200003900000004030000390000000007000411000003c104000041000000050500002900000006060000290ea20e980000040f000000010020019000000d530000613d0000000501000029000000000010043f0000000101000039000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f000000010020019000000d530000613d000000000201043b0000000601000029000000000010043f000500000002001d0000000101200039000300000001001d000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f000000010020019000000d530000613d0000000503000029000000000101043b000000000101041a000000000001004b00000d520000613d000000000203041a000000000002004b00000d550000613d000000000012004b000400000001001d00000d320000613d000200000002001d000000000030043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003b5011001c700008010020000390ea20e9d0000040f000000010020019000000d530000613d00000004020000290001000100200092000000000101043b0000000504000029000000000204041a000000010020006c00000d5b0000a13d0000000202000029000000010220008a0000000001120019000000000101041a000200000001001d000000000040043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003b5011001c700008010020000390ea20e9d0000040f000000010020019000000d530000613d000000000101043b00000001011000290000000202000029000000000021041b000000000020043f0000000301000029000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f000000010020019000000d530000613d000000000101043b0000000402000029000000000021041b0000000503000029000000000103041a000400000001001d000000000001004b00000d610000613d000000000030043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003b5011001c700008010020000390ea20e9d0000040f000000010020019000000d530000613d0000000402000029000000010220008a000000000101043b0000000001210019000000000001041b0000000501000029000000000021041b0000000601000029000000000010043f0000000301000029000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f000000010020019000000d530000613d000000000101043b000000000001041b000000000001042d000000000100001900000ea4000104300000041e01000041000000000010043f0000001101000039000000040010043f0000041f0100004100000ea4000104300000041e01000041000000000010043f0000003201000039000000040010043f0000041f0100004100000ea4000104300000041e01000041000000000010043f0000003101000039000000040010043f0000041f0100004100000ea4000104300003000000000002000300000002001d000003ad0310019800000dab0000613d0000000701000039000000000101041a000000ff0010019000000db50000c13d000000000030043f0000000201000039000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c70000801002000039000200000003001d0ea20e9d0000040f000000010020019000000da90000613d0000000202000029000000000101043b000000000101041a000100030010007400000dc60000413d000000000020043f0000000201000039000000200010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003ba011001c700008010020000390ea20e9d0000040f000000010020019000000da90000613d000000000101043b0000000102000029000000000021041b0000000401000039000000000201041a00000003030000290000000002320049000000000021041b000000400100043d0000000000310435000003aa0010009c000003aa0100804100000040011002100000000002000414000003aa0020009c000003aa02008041000000c002200210000000000112019f000003b5011001c70000800d0200003900000003030000390000041804000041000000020500002900000000060000190ea20e980000040f000000010020019000000da90000613d000000000001042d000000000100001900000ea400010430000000400100043d00000064021000390000043c03000041000000000032043500000044021000390000043d0300004100000000003204350000002402100039000000210300003900000dcf0000013d000000400100043d0000004402100039000004160300004100000000003204350000002402100039000000100300003900000000003204350000040e020000410000000000210435000000040210003900000020030000390000000000320435000003aa0010009c000003aa01008041000000400110021000000417011001c700000ea400010430000000400100043d00000064021000390000043a03000041000000000032043500000044021000390000043b0300004100000000003204350000002402100039000000220300003900000000003204350000040e020000410000000000210435000000040210003900000020030000390000000000320435000003aa0010009c000003aa010080410000004001100210000003ce011001c700000ea4000104300001000000000002000000000301041a000100000002001d000000000023004b00000ded0000a13d000000000010043f0000000001000414000003aa0010009c000003aa01008041000000c001100210000003b5011001c700008010020000390ea20e9d0000040f000000010020019000000df30000613d000000000101043b00000001011000290000000002000019000000000001042d0000041e01000041000000000010043f0000003201000039000000040010043f0000041f0100004100000ea400010430000000000100001900000ea4000104300000000002010019000000400100043d0000043e0010009c00000e280000813d0000006004100039000000400040043f0000002a030000390000000003310436000000000500003100000001055003670000000006030019000000005705043c0000000006760436000000000046004b00000e000000c13d00000000040304330000043f0440019700000440044001c70000000000430435000000210410003900000000050404330000043f0550019700000441055001c70000000000540435000000290400003900000000050200190000000002010433000000000042004b00000e220000a13d000000000234001900000000060204330000043f066001970000000307500210000000780770018f000004420770021f0000044307700197000000000676019f00000000006204350000000402500270000000010440008a000000010040008c00000e0e0000213d000000100050008c00000e2e0000813d000000000001042d0000041e01000041000000000010043f0000003201000039000000040010043f0000041f0100004100000ea4000104300000041e01000041000000000010043f0000004101000039000000040010043f0000041f0100004100000ea400010430000000400100043d0000004402100039000004440300004100000000003204350000040e02000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000003aa0010009c000003aa01008041000000400110021000000417011001c700000ea4000104300000000002010019000000400100043d000004450010009c00000e710000813d0000008004100039000000400040043f00000042030000390000000003310436000000000500003100000001055003670000000006030019000000005705043c0000000006760436000000000046004b00000e490000c13d00000000040304330000043f0440019700000440044001c70000000000430435000000210410003900000000050404330000043f0550019700000441055001c70000000000540435000000410400003900000000050200190000000002010433000000000042004b00000e6b0000a13d000000000234001900000000060204330000043f066001970000000307500210000000780770018f000004420770021f0000044307700197000000000676019f00000000006204350000000402500270000000010440008a000000010040008c00000e570000213d000000100050008c00000e770000813d000000000001042d0000041e01000041000000000010043f0000003201000039000000040010043f0000041f0100004100000ea4000104300000041e01000041000000000010043f0000004101000039000000040010043f0000041f0100004100000ea400010430000000400100043d0000004402100039000004440300004100000000003204350000040e02000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000003aa0010009c000003aa01008041000000400110021000000417011001c700000ea400010430000003aa0010009c000003aa0100804100000060011002100000000002000414000003aa0020009c000003aa02008041000000c002200210000000000112019f000003bb011001c700008010020000390ea20e9d0000040f000000010020019000000e960000613d000000000101043b000000000001042d000000000100001900000ea40001043000000e9b002104210000000102000039000000000001042d0000000002000019000000000001042d00000ea0002104230000000102000039000000000001042d0000000002000019000000000001042d00000ea20000043200000ea30001042e00000ea40001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001ffffffffffffffe0000000000000000000000000000000000000000000000003ffffffffffffffe08000000000000000000000000000000000000000000000000000000000000000fc949c7b4a13586e39d89eead2f38644f9fb3efb5a0490b14f8fc0ceab44c250036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00200000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffe009addddcec1d7ba6ad726df49aeea3e93fb0c1037d551236841a60c0c883f2c1f652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0781d7cac9c378efa22a7481e4d4d29704a680ddf504b3bc50b517700ee11e6c020000000000000000000000000000000000004000000000000000000000000002000000000000000000000000000000000000000000000000000000000000002f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a664e21244e91af723e1b962171ed4828dcecc0d7b89872e516a5db8266da8000164e21244e91af723e1b962171ed4828dcecc0d7b89872e516a5db8266da80000ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5f6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171ba6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb49f7c9542c591017a21c74b6f3fab6263c7952fc0aaf9db4c22a2a04ddc7f8674f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862ab9cbbae02fe941283ec0eefd7b121e3bc7f89fae077b27bdd75a7fd4cf1543a8ee57cd81e84075558e8fcc182a1f4393f91fc97f963a136e66b7f949a62f319f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92931c1e66639f421f1853aeefe8ad6b62a3b96f3287efe23106923cd924aa025c2000000000000000000000000000000000000000000000000016345785d8a0000ffffffffffffffffffffffff000000000000000000000000000000000000000000000002000000000000000000000000000000400000010000000000000000006f70657261746f7200000000000000000000000000000000000000000000000096177770000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084000000000000000000000000706175736572000000000000000000000000000000000000000000000000000061646d696e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008f02bb5a00000000000000000000000000000000000000000000000000000000b3f0067300000000000000000000000000000000000000000000000000000000e05725ec00000000000000000000000000000000000000000000000000000000e63ab1e800000000000000000000000000000000000000000000000000000000e63ab1e900000000000000000000000000000000000000000000000000000000efdcd97400000000000000000000000000000000000000000000000000000000f5b541a600000000000000000000000000000000000000000000000000000000e05725ed00000000000000000000000000000000000000000000000000000000e63a391f00000000000000000000000000000000000000000000000000000000d539139200000000000000000000000000000000000000000000000000000000d539139300000000000000000000000000000000000000000000000000000000d547741f00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000b3f0067400000000000000000000000000000000000000000000000000000000ca15c87300000000000000000000000000000000000000000000000000000000a217fdde00000000000000000000000000000000000000000000000000000000a9059cba00000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000acb2ad6f00000000000000000000000000000000000000000000000000000000b2b6bef500000000000000000000000000000000000000000000000000000000a217fddf00000000000000000000000000000000000000000000000000000000a457c2d70000000000000000000000000000000000000000000000000000000091d148530000000000000000000000000000000000000000000000000000000091d148540000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000008f02bb5b000000000000000000000000000000000000000000000000000000009010d07c0000000000000000000000000000000000000000000000000000000036568abd000000000000000000000000000000000000000000000000000000005b5af6c40000000000000000000000000000000000000000000000000000000070a082300000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000079cc6790000000000000000000000000000000000000000000000000000000008456cb59000000000000000000000000000000000000000000000000000000005b5af6c5000000000000000000000000000000000000000000000000000000005c975abb000000000000000000000000000000000000000000000000000000003f4ba839000000000000000000000000000000000000000000000000000000003f4ba83a0000000000000000000000000000000000000000000000000000000040c10f190000000000000000000000000000000000000000000000000000000042966c680000000000000000000000000000000000000000000000000000000036568abe00000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000018160ddc00000000000000000000000000000000000000000000000000000000248a9ca200000000000000000000000000000000000000000000000000000000248a9ca3000000000000000000000000000000000000000000000000000000002f2ff15d00000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000006fdde020000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000000000000000000000000000000000000184a8c30000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000020000000800000000000000000bdf37c276f641820b141429d245add2552b4118c0866e5a78638e3de5ef18d9d66656552656365697665720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000000214e8348c4f00000000000000000000000000000000000000000020000000000000000000000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f7708c379a000000000000000000000000000000000000000000000000000000000fe130529b85fcd4f3ae2d19b24558b9760dbc5c06202ef4edf7192e48c7815427472616e736665724665650000000000000000000000000000000000000000002c648cf10000000000000000000000000000000000000000000000000000000062e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25876652070617573657220726f6c6520746f20706175736500000000000000000045524332305072657365744d696e7465725061757365723a206d75737420686174f412ee4f8c7c3fa9602597ac9e3bb2f53548ca0d19b86d48d9263988a2c2535061757361626c653a20706175736564000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206d696e7420746f20746865207a65726f2061646472657373007665206d696e74657220726f6c6520746f206d696e74000000000000000000005db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa5061757361626c653a206e6f742070617573656400000000000000000000000076652070617573657220726f6c6520746f20756e7061757365000000000000004e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c660000000000000000000000000000000000000000000000000000000000000000000000008400000080000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff5a05180f0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000007965db0b00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb4ab9cbbae02fe941283ec0eefd7b121e3bc7f89fae077b27bdd75a7fd4cf1543a9ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f2061646445524332303a20696e73756666696369656e7420616c6c6f77616e6365000000616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f206164416363657373436f6e74726f6c3a206163636f756e7420000000000000000000206973206d697373696e6720726f6c6520000000000000000000000000000000636500000000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e7420657863656564732062616c616e730000000000000000000000000000000000000000000000000000000000000045524332303a206275726e2066726f6d20746865207a65726f20616464726573000000000000000000000000000000000000000000000000ffffffffffffffa000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff3000000000000000000000000000000000000000000000000000000000000000780000000000000000000000000000000000000000000000000000000000000030313233343536373839616263646566000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000537472696e67733a20686578206c656e67746820696e73756666696369656e74000000000000000000000000000000000000000000000000ffffffffffffff80000000000000000000a2646970667358221220f39620ce949b1aea0da4c97a34c310c50bc0956c50e2bee74ac2dbebe283fa5064736f6c6378247a6b736f6c633a312e352e31353b736f6c633a302e382e32383b6c6c766d3a312e302e320055
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000002720b88a05ecdec70c03aa4596ada65707b54305000000000000000000000000fd3f90dd1355910fef471f7a8852714ff97cbfbd000000000000000000000000fd3f90dd1355910fef471f7a8852714ff97cbfbd00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000002720b88a05ecdec70c03aa4596ada65707b54305000000000000000000000000000000000000000000000000000000000000000d6b4142582053747261746567790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000076b41425853545200000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _admin (address): 0x2720b88a05eCdEc70C03AA4596ADa65707B54305
Arg [1] : _pauser (address): 0xfD3f90DD1355910feF471f7A8852714FF97cBfBD
Arg [2] : _operator (address): 0xfD3f90DD1355910feF471f7A8852714FF97cBfBD
Arg [3] : _name (string): kABX Strategy
Arg [4] : _symbol (string): kABXSTR
Arg [5] : _feeReceiver (address): 0x2720b88a05eCdEc70C03AA4596ADa65707B54305
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000002720b88a05ecdec70c03aa4596ada65707b54305
Arg [1] : 000000000000000000000000fd3f90dd1355910fef471f7a8852714ff97cbfbd
Arg [2] : 000000000000000000000000fd3f90dd1355910fef471f7a8852714ff97cbfbd
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [5] : 0000000000000000000000002720b88a05ecdec70c03aa4596ada65707b54305
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [7] : 6b41425820537472617465677900000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [9] : 6b41425853545200000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.