ERC-20
Overview
Max Total Supply
6,448,119,766 XBD
Holders
1,485
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
762,785.255723780340528037 XBDValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
PausableToken
Compiler Version
v0.8.21+commit.d9974bed
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-02-23 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/utils/math/SignedMath.sol // 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); } } } // File: @openzeppelin/contracts/utils/math/Math.sol // 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); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @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)); } } // File: @openzeppelin/contracts/access/IAccessControl.sol // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/AccessControl.sol // OpenZeppelin Contracts (last updated v4.9.0) (access/AccessControl.sol) pragma solidity ^0.8.0; /** * @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()); } } } // File: @openzeppelin/contracts/security/Pausable.sol // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; /** * @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()); } } // File: WhitelistPausable.sol pragma solidity ^0.8.9; abstract contract WhitelistPausable is Pausable { address[] private _whitelistKeys; mapping(address => bool) private _whitelist; event WhitelistAdded(address indexed account, address indexed sender); event WhitelistRemoved(address indexed account, address indexed sender); event WhitelistReseted(address indexed sender); modifier whenNotPausedWithAccount(address account) { _requireNotPaused(account); _; } function _addWhitelist(address account) internal virtual { _whitelist[account] = true; _whitelistKeys.push(account); emit WhitelistAdded(account, _msgSender()); } function _removeWhitelist(address account) internal virtual { _whitelist[account] = false; _whitelistKeys.push(account); emit WhitelistRemoved(account, _msgSender()); } function _resetWhitelist() internal virtual { for (uint i=0; i< _whitelistKeys.length ; i++){ _whitelist[_whitelistKeys[i]] = false; } emit WhitelistReseted(_msgSender()); } function getWhitelist(address account) public view virtual returns (bool) { return _whitelist[account]; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused(address account) internal view virtual { require(!paused() || getWhitelist(account), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused(address account) internal view virtual { require(paused() && !getWhitelist(account), "Pausable: not paused"); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // 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); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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 {} } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } // File: PausableToken.sol pragma solidity ^0.8.9; contract PausableToken is ERC20, ERC20Burnable, WhitelistPausable, AccessControl { bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); constructor() ERC20("X Bird", "XBD") { _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); _grantRole(PAUSER_ROLE, msg.sender); _grantRole(MINTER_ROLE, msg.sender); } function pause() public onlyRole(PAUSER_ROLE) { _pause(); } function unpause() public onlyRole(PAUSER_ROLE) { _unpause(); } function addWhitelist(address account) public onlyRole(PAUSER_ROLE) { _addWhitelist(account); } function removeWhitelist(address account) public onlyRole(PAUSER_ROLE) { _removeWhitelist(account); } function resetWhitelist() public onlyRole(PAUSER_ROLE) { _resetWhitelist(); } function mint(address to, uint256 amount) public onlyRole(MINTER_ROLE) { _mint(to, amount); } function _beforeTokenTransfer(address from, address to, uint256 amount) internal whenNotPausedWithAccount(from) override { super._beforeTokenTransfer(from, to, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"WhitelistAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"WhitelistRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"WhitelistReseted","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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":"address","name":"account","type":"address"}],"name":"removeWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801562000010575f80fd5b50604051806040016040528060068152602001651608109a5c9960d21b8152506040518060400160405280600381526020016216109160ea1b81525081600390816200005d919062000226565b5060046200006c828262000226565b50506005805460ff1916905550620000855f33620000e3565b620000b17f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33620000e3565b620000dd7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620000e3565b620002ee565b5f8281526008602090815260408083206001600160a01b038516845290915290205460ff1662000182575f8281526008602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620001413390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620001af57607f821691505b602082108103620001ce57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000221575f81815260208120601f850160051c81016020861015620001fc5750805b601f850160051c820191505b818110156200021d5782815560010162000208565b5050505b505050565b81516001600160401b0381111562000242576200024262000186565b6200025a816200025384546200019a565b84620001d4565b602080601f83116001811462000290575f8415620002785750858301515b5f19600386901b1c1916600185901b1785556200021d565b5f85815260208120601f198616915b82811015620002c0578886015182559484019460019091019084016200029f565b5085821015620002de57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b6116ba80620002fc5f395ff3fe608060405234801561000f575f80fd5b50600436106101d1575f3560e01c80635c975abb116100fe578063a217fddf1161009e578063d547741f1161006e578063d547741f146103e7578063dd62ed3e146103fa578063e63ab1e91461040d578063f80f5dd514610421575f80fd5b8063a217fddf14610393578063a457c2d71461039a578063a9059cbb146103ad578063d5391393146103c0575f80fd5b806379cc6790116100d957806379cc67901461035d5780638456cb591461037057806391d148541461037857806395d89b411461038b575f80fd5b80635c975abb1461031757806370a082311461032257806378c8cda71461034a575f80fd5b806330edc0f5116101745780633f4ba83a116101445780633f4ba83a146102e157806340c10f19146102e957806342966c68146102fc5780635909865a1461030f575f80fd5b806330edc0f514610281578063313ce567146102ac57806336568abe146102bb57806339509351146102ce575f80fd5b806318160ddd116101af57806318160ddd1461022557806323b872dd14610237578063248a9ca31461024a5780632f2ff15d1461026c575f80fd5b806301ffc9a7146101d557806306fdde03146101fd578063095ea7b314610212575b5f80fd5b6101e86101e33660046113ac565b610434565b60405190151581526020015b60405180910390f35b61020561046a565b6040516101f491906113f5565b6101e8610220366004611442565b6104fa565b6002545b6040519081526020016101f4565b6101e861024536600461146a565b610511565b6102296102583660046114a3565b5f9081526008602052604090206001015490565b61027f61027a3660046114ba565b610534565b005b6101e861028f3660046114e4565b6001600160a01b03165f9081526007602052604090205460ff1690565b604051601281526020016101f4565b61027f6102c93660046114ba565b61055d565b6101e86102dc366004611442565b6105e0565b61027f610601565b61027f6102f7366004611442565b610623565b61027f61030a3660046114a3565b610657565b61027f610661565b60055460ff166101e8565b6102296103303660046114e4565b6001600160a01b03165f9081526020819052604090205490565b61027f6103583660046114e4565b610680565b61027f61036b366004611442565b6106a0565b61027f6106b5565b6101e86103863660046114ba565b6106d4565b6102056106fe565b6102295f81565b6101e86103a8366004611442565b61070d565b6101e86103bb366004611442565b610787565b6102297f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61027f6103f53660046114ba565b610794565b6102296104083660046114fd565b6107b8565b6102295f8051602061166583398151915281565b61027f61042f3660046114e4565b6107e2565b5f6001600160e01b03198216637965db0b60e01b148061046457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461047990611525565b80601f01602080910402602001604051908101604052809291908181526020018280546104a590611525565b80156104f05780601f106104c7576101008083540402835291602001916104f0565b820191905f5260205f20905b8154815290600101906020018083116104d357829003601f168201915b5050505050905090565b5f33610507818585610802565b5060019392505050565b5f3361051e858285610925565b61052985858561099d565b506001949350505050565b5f8281526008602052604090206001015461054e81610b4a565b6105588383610b54565b505050565b6001600160a01b03811633146105d25760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6105dc8282610bd9565b5050565b5f336105078185856105f283836107b8565b6105fc9190611571565b610802565b5f8051602061166583398151915261061881610b4a565b610620610c3f565b50565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661064d81610b4a565b6105588383610c91565b6106203382610d59565b5f8051602061166583398151915261067881610b4a565b610620610e94565b5f8051602061166583398151915261069781610b4a565b6105dc82610f29565b6106ab823383610925565b6105dc8282610d59565b5f805160206116658339815191526106cc81610b4a565b610620610fb2565b5f9182526008602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461047990611525565b5f338161071a82866107b8565b90508381101561077a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105c9565b6105298286868403610802565b5f3361050781858561099d565b5f828152600860205260409020600101546107ae81610b4a565b6105588383610bd9565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b5f805160206116658339815191526107f981610b4a565b6105dc82610fef565b6001600160a01b0383166108645760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105c9565b6001600160a01b0382166108c55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105c9565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f61093084846107b8565b90505f198114610997578181101561098a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105c9565b6109978484848403610802565b50505050565b6001600160a01b038316610a015760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105c9565b6001600160a01b038216610a635760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105c9565b610a6e83838361109c565b6001600160a01b0383165f9081526020819052604090205481811015610ae55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105c9565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610997565b61062081336110ab565b610b5e82826106d4565b6105dc575f8281526008602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610b953390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610be382826106d4565b156105dc575f8281526008602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b610c47611104565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610ce75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105c9565b610cf25f838361109c565b8060025f828254610d039190611571565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038216610db95760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105c9565b610dc4825f8361109c565b6001600160a01b0382165f9081526020819052604090205481811015610e375760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105c9565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b5f5b600654811015610efc575f60075f60068481548110610eb757610eb7611584565b5f918252602080832091909101546001600160a01b031683528201929092526040019020805460ff191691151591909117905580610ef481611598565b915050610e96565b5060405133907f0a31193242258354e61d5645efabe44525dc25398d613b91eef9196e082df3b8905f90a2565b6001600160a01b0381165f81815260076020526040808220805460ff19169055600680546001810182559083527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b03191684179055513392917fe0fcf303ba3014f7bddb92283585b57ae29a68f05ceb43d0a0c1b92ad80c613c91a350565b610fba61114f565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610c743390565b6001600160a01b0381165f818152600760205260408120805460ff191660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b031916909117905561105a3390565b6001600160a01b0316816001600160a01b03167f67385d0e3f500ff9deddc1292262190d227a7c30ebc71bdf4362662f6493f6ec60405160405180910390a350565b826110a681611195565b610997565b6110b582826106d4565b6105dc576110c2816111fd565b6110cd83602061120f565b6040516020016110de9291906115b0565b60408051601f198184030181529082905262461bcd60e51b82526105c9916004016113f5565b60055460ff1661114d5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016105c9565b565b60055460ff161561114d5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105c9565b60055460ff1615806111be57506001600160a01b0381165f9081526007602052604090205460ff165b6106205760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105c9565b60606104646001600160a01b03831660145b60605f61121d836002611624565b611228906002611571565b67ffffffffffffffff8111156112405761124061163b565b6040519080825280601f01601f19166020018201604052801561126a576020820181803683370190505b509050600360fc1b815f8151811061128457611284611584565b60200101906001600160f81b03191690815f1a905350600f60fb1b816001815181106112b2576112b2611584565b60200101906001600160f81b03191690815f1a9053505f6112d4846002611624565b6112df906001611571565b90505b6001811115611356576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061131357611313611584565b1a60f81b82828151811061132957611329611584565b60200101906001600160f81b03191690815f1a90535060049490941c9361134f8161164f565b90506112e2565b5083156113a55760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016105c9565b9392505050565b5f602082840312156113bc575f80fd5b81356001600160e01b0319811681146113a5575f80fd5b5f5b838110156113ed5781810151838201526020016113d5565b50505f910152565b602081525f82518060208401526114138160408501602087016113d3565b601f01601f19169190910160400192915050565b80356001600160a01b038116811461143d575f80fd5b919050565b5f8060408385031215611453575f80fd5b61145c83611427565b946020939093013593505050565b5f805f6060848603121561147c575f80fd5b61148584611427565b925061149360208501611427565b9150604084013590509250925092565b5f602082840312156114b3575f80fd5b5035919050565b5f80604083850312156114cb575f80fd5b823591506114db60208401611427565b90509250929050565b5f602082840312156114f4575f80fd5b6113a582611427565b5f806040838503121561150e575f80fd5b61151783611427565b91506114db60208401611427565b600181811c9082168061153957607f821691505b60208210810361155757634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156104645761046461155d565b634e487b7160e01b5f52603260045260245ffd5b5f600182016115a9576115a961155d565b5060010190565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081525f83516115e78160178501602088016113d3565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516116188160288401602088016113d3565b01602801949350505050565b80820281158282048414176104645761046461155d565b634e487b7160e01b5f52604160045260245ffd5b5f8161165d5761165d61155d565b505f19019056fe65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862aa2646970667358221220a77ecb48f5e2a6f41576489a367d55a91c8f75af4273dfd1dc02c2a34c0b306964736f6c63430008150033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106101d1575f3560e01c80635c975abb116100fe578063a217fddf1161009e578063d547741f1161006e578063d547741f146103e7578063dd62ed3e146103fa578063e63ab1e91461040d578063f80f5dd514610421575f80fd5b8063a217fddf14610393578063a457c2d71461039a578063a9059cbb146103ad578063d5391393146103c0575f80fd5b806379cc6790116100d957806379cc67901461035d5780638456cb591461037057806391d148541461037857806395d89b411461038b575f80fd5b80635c975abb1461031757806370a082311461032257806378c8cda71461034a575f80fd5b806330edc0f5116101745780633f4ba83a116101445780633f4ba83a146102e157806340c10f19146102e957806342966c68146102fc5780635909865a1461030f575f80fd5b806330edc0f514610281578063313ce567146102ac57806336568abe146102bb57806339509351146102ce575f80fd5b806318160ddd116101af57806318160ddd1461022557806323b872dd14610237578063248a9ca31461024a5780632f2ff15d1461026c575f80fd5b806301ffc9a7146101d557806306fdde03146101fd578063095ea7b314610212575b5f80fd5b6101e86101e33660046113ac565b610434565b60405190151581526020015b60405180910390f35b61020561046a565b6040516101f491906113f5565b6101e8610220366004611442565b6104fa565b6002545b6040519081526020016101f4565b6101e861024536600461146a565b610511565b6102296102583660046114a3565b5f9081526008602052604090206001015490565b61027f61027a3660046114ba565b610534565b005b6101e861028f3660046114e4565b6001600160a01b03165f9081526007602052604090205460ff1690565b604051601281526020016101f4565b61027f6102c93660046114ba565b61055d565b6101e86102dc366004611442565b6105e0565b61027f610601565b61027f6102f7366004611442565b610623565b61027f61030a3660046114a3565b610657565b61027f610661565b60055460ff166101e8565b6102296103303660046114e4565b6001600160a01b03165f9081526020819052604090205490565b61027f6103583660046114e4565b610680565b61027f61036b366004611442565b6106a0565b61027f6106b5565b6101e86103863660046114ba565b6106d4565b6102056106fe565b6102295f81565b6101e86103a8366004611442565b61070d565b6101e86103bb366004611442565b610787565b6102297f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61027f6103f53660046114ba565b610794565b6102296104083660046114fd565b6107b8565b6102295f8051602061166583398151915281565b61027f61042f3660046114e4565b6107e2565b5f6001600160e01b03198216637965db0b60e01b148061046457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461047990611525565b80601f01602080910402602001604051908101604052809291908181526020018280546104a590611525565b80156104f05780601f106104c7576101008083540402835291602001916104f0565b820191905f5260205f20905b8154815290600101906020018083116104d357829003601f168201915b5050505050905090565b5f33610507818585610802565b5060019392505050565b5f3361051e858285610925565b61052985858561099d565b506001949350505050565b5f8281526008602052604090206001015461054e81610b4a565b6105588383610b54565b505050565b6001600160a01b03811633146105d25760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6105dc8282610bd9565b5050565b5f336105078185856105f283836107b8565b6105fc9190611571565b610802565b5f8051602061166583398151915261061881610b4a565b610620610c3f565b50565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661064d81610b4a565b6105588383610c91565b6106203382610d59565b5f8051602061166583398151915261067881610b4a565b610620610e94565b5f8051602061166583398151915261069781610b4a565b6105dc82610f29565b6106ab823383610925565b6105dc8282610d59565b5f805160206116658339815191526106cc81610b4a565b610620610fb2565b5f9182526008602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461047990611525565b5f338161071a82866107b8565b90508381101561077a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105c9565b6105298286868403610802565b5f3361050781858561099d565b5f828152600860205260409020600101546107ae81610b4a565b6105588383610bd9565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b5f805160206116658339815191526107f981610b4a565b6105dc82610fef565b6001600160a01b0383166108645760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105c9565b6001600160a01b0382166108c55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105c9565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f61093084846107b8565b90505f198114610997578181101561098a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105c9565b6109978484848403610802565b50505050565b6001600160a01b038316610a015760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105c9565b6001600160a01b038216610a635760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105c9565b610a6e83838361109c565b6001600160a01b0383165f9081526020819052604090205481811015610ae55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105c9565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610997565b61062081336110ab565b610b5e82826106d4565b6105dc575f8281526008602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610b953390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610be382826106d4565b156105dc575f8281526008602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b610c47611104565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610ce75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105c9565b610cf25f838361109c565b8060025f828254610d039190611571565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038216610db95760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105c9565b610dc4825f8361109c565b6001600160a01b0382165f9081526020819052604090205481811015610e375760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105c9565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b5f5b600654811015610efc575f60075f60068481548110610eb757610eb7611584565b5f918252602080832091909101546001600160a01b031683528201929092526040019020805460ff191691151591909117905580610ef481611598565b915050610e96565b5060405133907f0a31193242258354e61d5645efabe44525dc25398d613b91eef9196e082df3b8905f90a2565b6001600160a01b0381165f81815260076020526040808220805460ff19169055600680546001810182559083527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b03191684179055513392917fe0fcf303ba3014f7bddb92283585b57ae29a68f05ceb43d0a0c1b92ad80c613c91a350565b610fba61114f565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610c743390565b6001600160a01b0381165f818152600760205260408120805460ff191660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b031916909117905561105a3390565b6001600160a01b0316816001600160a01b03167f67385d0e3f500ff9deddc1292262190d227a7c30ebc71bdf4362662f6493f6ec60405160405180910390a350565b826110a681611195565b610997565b6110b582826106d4565b6105dc576110c2816111fd565b6110cd83602061120f565b6040516020016110de9291906115b0565b60408051601f198184030181529082905262461bcd60e51b82526105c9916004016113f5565b60055460ff1661114d5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016105c9565b565b60055460ff161561114d5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105c9565b60055460ff1615806111be57506001600160a01b0381165f9081526007602052604090205460ff165b6106205760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105c9565b60606104646001600160a01b03831660145b60605f61121d836002611624565b611228906002611571565b67ffffffffffffffff8111156112405761124061163b565b6040519080825280601f01601f19166020018201604052801561126a576020820181803683370190505b509050600360fc1b815f8151811061128457611284611584565b60200101906001600160f81b03191690815f1a905350600f60fb1b816001815181106112b2576112b2611584565b60200101906001600160f81b03191690815f1a9053505f6112d4846002611624565b6112df906001611571565b90505b6001811115611356576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061131357611313611584565b1a60f81b82828151811061132957611329611584565b60200101906001600160f81b03191690815f1a90535060049490941c9361134f8161164f565b90506112e2565b5083156113a55760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016105c9565b9392505050565b5f602082840312156113bc575f80fd5b81356001600160e01b0319811681146113a5575f80fd5b5f5b838110156113ed5781810151838201526020016113d5565b50505f910152565b602081525f82518060208401526114138160408501602087016113d3565b601f01601f19169190910160400192915050565b80356001600160a01b038116811461143d575f80fd5b919050565b5f8060408385031215611453575f80fd5b61145c83611427565b946020939093013593505050565b5f805f6060848603121561147c575f80fd5b61148584611427565b925061149360208501611427565b9150604084013590509250925092565b5f602082840312156114b3575f80fd5b5035919050565b5f80604083850312156114cb575f80fd5b823591506114db60208401611427565b90509250929050565b5f602082840312156114f4575f80fd5b6113a582611427565b5f806040838503121561150e575f80fd5b61151783611427565b91506114db60208401611427565b600181811c9082168061153957607f821691505b60208210810361155757634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156104645761046461155d565b634e487b7160e01b5f52603260045260245ffd5b5f600182016115a9576115a961155d565b5060010190565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081525f83516115e78160178501602088016113d3565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516116188160288401602088016113d3565b01602801949350505050565b80820281158282048414176104645761046461155d565b634e487b7160e01b5f52604160045260245ffd5b5f8161165d5761165d61155d565b505f19019056fe65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862aa2646970667358221220a77ecb48f5e2a6f41576489a367d55a91c8f75af4273dfd1dc02c2a34c0b306964736f6c63430008150033
Deployed Bytecode Sourcemap
53969:1275:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25939:204;;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;25939:204:0;;;;;;;;41743:100;;;:::i;:::-;;;;;;;:::i;44103:201::-;;;;;;:::i;:::-;;:::i;42872:108::-;42960:12;;42872:108;;;1736:25:1;;;1724:2;1709:18;42872:108:0;1590:177:1;44884:261:0;;;;;;:::i;:::-;;:::i;27762:131::-;;;;;;:::i;:::-;27836:7;27863:12;;;:6;:12;;;;;:22;;;;27762:131;28203:147;;;;;;:::i;:::-;;:::i;:::-;;35442:119;;;;;;:::i;:::-;-1:-1:-1;;;;;35534:19:0;35510:4;35534:19;;;:10;:19;;;;;;;;;35442:119;42714:93;;;42797:2;3064:36:1;;3052:2;3037:18;42714:93:0;2922:184:1;29347:218:0;;;;;;:::i;:::-;;:::i;45554:238::-;;;;;;:::i;:::-;;:::i;54476:77::-;;;:::i;54910:107::-;;;;;;:::i;:::-;;:::i;53319:91::-;;;;;;:::i;:::-;;:::i;54805:::-;;;:::i;33281:86::-;33352:7;;;;33281:86;;43043:127;;;;;;:::i;:::-;-1:-1:-1;;;;;43144:18:0;43117:7;43144:18;;;;;;;;;;;;43043:127;54678:115;;;;;;:::i;:::-;;:::i;53729:164::-;;;;;;:::i;:::-;;:::i;54395:73::-;;;:::i;26235:147::-;;;;;;:::i;:::-;;:::i;41962:104::-;;;:::i;25340:49::-;;25385:4;25340:49;;46295:436;;;;;;:::i;:::-;;:::i;43376:193::-;;;;;;:::i;:::-;;:::i;54126:62::-;;54164:24;54126:62;;28643:149;;;;;;:::i;:::-;;:::i;43632:151::-;;;;;;:::i;:::-;;:::i;54057:62::-;;-1:-1:-1;;;;;;;;;;;54057:62:0;;54561:109;;;;;;:::i;:::-;;:::i;25939:204::-;26024:4;-1:-1:-1;;;;;;26048:47:0;;-1:-1:-1;;;26048:47:0;;:87;;-1:-1:-1;;;;;;;;;;1924:40:0;;;26099:36;26041:94;25939:204;-1:-1:-1;;25939:204:0:o;41743:100::-;41797:13;41830:5;41823:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41743:100;:::o;44103:201::-;44186:4;23101:10;44242:32;23101:10;44258:7;44267:6;44242:8;:32::i;:::-;-1:-1:-1;44292:4:0;;44103:201;-1:-1:-1;;;44103:201:0:o;44884:261::-;44981:4;23101:10;45039:38;45055:4;23101:10;45070:6;45039:15;:38::i;:::-;45088:27;45098:4;45104:2;45108:6;45088:9;:27::i;:::-;-1:-1:-1;45133:4:0;;44884:261;-1:-1:-1;;;;44884:261:0:o;28203:147::-;27836:7;27863:12;;;:6;:12;;;;;:22;;;25831:16;25842:4;25831:10;:16::i;:::-;28317:25:::1;28328:4;28334:7;28317:10;:25::i;:::-;28203:147:::0;;;:::o;29347:218::-;-1:-1:-1;;;;;29443:23:0;;23101:10;29443:23;29435:83;;;;-1:-1:-1;;;29435:83:0;;4148:2:1;29435:83:0;;;4130:21:1;4187:2;4167:18;;;4160:30;4226:34;4206:18;;;4199:62;-1:-1:-1;;;4277:18:1;;;4270:45;4332:19;;29435:83:0;;;;;;;;;29531:26;29543:4;29549:7;29531:11;:26::i;:::-;29347:218;;:::o;45554:238::-;45642:4;23101:10;45698:64;23101:10;45714:7;45751:10;45723:25;23101:10;45714:7;45723:9;:25::i;:::-;:38;;;;:::i;:::-;45698:8;:64::i;54476:77::-;-1:-1:-1;;;;;;;;;;;25831:16:0;25842:4;25831:10;:16::i;:::-;54535:10:::1;:8;:10::i;:::-;54476:77:::0;:::o;54910:107::-;54164:24;25831:16;25842:4;25831:10;:16::i;:::-;54992:17:::1;54998:2;55002:6;54992:5;:17::i;53319:91::-:0;53375:27;23101:10;53395:6;53375:5;:27::i;54805:91::-;-1:-1:-1;;;;;;;;;;;25831:16:0;25842:4;25831:10;:16::i;:::-;54871:17:::1;:15;:17::i;54678:115::-:0;-1:-1:-1;;;;;;;;;;;25831:16:0;25842:4;25831:10;:16::i;:::-;54760:25:::1;54777:7;54760:16;:25::i;53729:164::-:0;53806:46;53822:7;23101:10;53845:6;53806:15;:46::i;:::-;53863:22;53869:7;53878:6;53863:5;:22::i;54395:73::-;-1:-1:-1;;;;;;;;;;;25831:16:0;25842:4;25831:10;:16::i;:::-;54452:8:::1;:6;:8::i;26235:147::-:0;26321:4;26345:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;26345:29:0;;;;;;;;;;;;;;;26235:147::o;41962:104::-;42018:13;42051:7;42044:14;;;;;:::i;46295:436::-;46388:4;23101:10;46388:4;46471:25;23101:10;46488:7;46471:9;:25::i;:::-;46444:52;;46535:15;46515:16;:35;;46507:85;;;;-1:-1:-1;;;46507:85:0;;4826:2:1;46507:85:0;;;4808:21:1;4865:2;4845:18;;;4838:30;4904:34;4884:18;;;4877:62;-1:-1:-1;;;4955:18:1;;;4948:35;5000:19;;46507:85:0;4624:401:1;46507:85:0;46628:60;46637:5;46644:7;46672:15;46653:16;:34;46628:8;:60::i;43376:193::-;43455:4;23101:10;43511:28;23101:10;43528:2;43532:6;43511:9;:28::i;28643:149::-;27836:7;27863:12;;;:6;:12;;;;;:22;;;25831:16;25842:4;25831:10;:16::i;:::-;28758:26:::1;28770:4;28776:7;28758:11;:26::i;43632:151::-:0;-1:-1:-1;;;;;43748:18:0;;;43721:7;43748:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;43632:151::o;54561:109::-;-1:-1:-1;;;;;;;;;;;25831:16:0;25842:4;25831:10;:16::i;:::-;54640:22:::1;54654:7;54640:13;:22::i;50288:346::-:0;-1:-1:-1;;;;;50390:19:0;;50382:68;;;;-1:-1:-1;;;50382:68:0;;5232:2:1;50382:68:0;;;5214:21:1;5271:2;5251:18;;;5244:30;5310:34;5290:18;;;5283:62;-1:-1:-1;;;5361:18:1;;;5354:34;5405:19;;50382:68:0;5030:400:1;50382:68:0;-1:-1:-1;;;;;50469:21:0;;50461:68;;;;-1:-1:-1;;;50461:68:0;;5637:2:1;50461:68:0;;;5619:21:1;5676:2;5656:18;;;5649:30;5715:34;5695:18;;;5688:62;-1:-1:-1;;;5766:18:1;;;5759:32;5808:19;;50461:68:0;5435:398:1;50461:68:0;-1:-1:-1;;;;;50542:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;50594:32;;1736:25:1;;;50594:32:0;;1709:18:1;50594:32:0;;;;;;;50288:346;;;:::o;50925:419::-;51026:24;51053:25;51063:5;51070:7;51053:9;:25::i;:::-;51026:52;;-1:-1:-1;;51093:16:0;:37;51089:248;;51175:6;51155:16;:26;;51147:68;;;;-1:-1:-1;;;51147:68:0;;6040:2:1;51147:68:0;;;6022:21:1;6079:2;6059:18;;;6052:30;6118:31;6098:18;;;6091:59;6167:18;;51147:68:0;5838:353:1;51147:68:0;51259:51;51268:5;51275:7;51303:6;51284:16;:25;51259:8;:51::i;:::-;51015:329;50925:419;;;:::o;47201:806::-;-1:-1:-1;;;;;47298:18:0;;47290:68;;;;-1:-1:-1;;;47290:68:0;;6398:2:1;47290:68:0;;;6380:21:1;6437:2;6417:18;;;6410:30;6476:34;6456:18;;;6449:62;-1:-1:-1;;;6527:18:1;;;6520:35;6572:19;;47290:68:0;6196:401:1;47290:68:0;-1:-1:-1;;;;;47377:16:0;;47369:64;;;;-1:-1:-1;;;47369:64:0;;6804:2:1;47369:64:0;;;6786:21:1;6843:2;6823:18;;;6816:30;6882:34;6862:18;;;6855:62;-1:-1:-1;;;6933:18:1;;;6926:33;6976:19;;47369:64:0;6602:399:1;47369:64:0;47446:38;47467:4;47473:2;47477:6;47446:20;:38::i;:::-;-1:-1:-1;;;;;47519:15:0;;47497:19;47519:15;;;;;;;;;;;47553:21;;;;47545:72;;;;-1:-1:-1;;;47545:72:0;;7208:2:1;47545:72:0;;;7190:21:1;7247:2;7227:18;;;7220:30;7286:34;7266:18;;;7259:62;-1:-1:-1;;;7337:18:1;;;7330:36;7383:19;;47545:72:0;7006:402:1;47545:72:0;-1:-1:-1;;;;;47653:15:0;;;:9;:15;;;;;;;;;;;47671:20;;;47653:38;;47871:13;;;;;;;;;;:23;;;;;;47923:26;;1736:25:1;;;47871:13:0;;47923:26;;1709:18:1;47923:26:0;;;;;;;47962:37;28203:147;26686:105;26753:30;26764:4;23101:10;26753;:30::i;30944:238::-;31028:22;31036:4;31042:7;31028;:22::i;:::-;31023:152;;31067:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;31067:29:0;;;;;;;;;:36;;-1:-1:-1;;31067:36:0;31099:4;31067:36;;;31150:12;23101:10;;23021:98;31150:12;-1:-1:-1;;;;;31123:40:0;31141:7;-1:-1:-1;;;;;31123:40:0;31135:4;31123:40;;;;;;;;;;30944:238;;:::o;31362:239::-;31446:22;31454:4;31460:7;31446;:22::i;:::-;31442:152;;;31517:5;31485:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;31485:29:0;;;;;;;;;;:37;;-1:-1:-1;;31485:37:0;;;31542:40;23101:10;;31485:12;;31542:40;;31517:5;31542:40;31362:239;;:::o;34136:120::-;33145:16;:14;:16::i;:::-;34195:7:::1;:15:::0;;-1:-1:-1;;34195:15:0::1;::::0;;34226:22:::1;23101:10:::0;34235:12:::1;34226:22;::::0;-1:-1:-1;;;;;7577:32:1;;;7559:51;;7547:2;7532:18;34226:22:0::1;;;;;;;34136:120::o:0;48294:548::-;-1:-1:-1;;;;;48378:21:0;;48370:65;;;;-1:-1:-1;;;48370:65:0;;7823:2:1;48370:65:0;;;7805:21:1;7862:2;7842:18;;;7835:30;7901:33;7881:18;;;7874:61;7952:18;;48370:65:0;7621:355:1;48370:65:0;48448:49;48477:1;48481:7;48490:6;48448:20;:49::i;:::-;48526:6;48510:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;48681:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;48736:37;1736:25:1;;;48736:37:0;;1709:18:1;48736:37:0;;;;;;;29347:218;;:::o;49175:675::-;-1:-1:-1;;;;;49259:21:0;;49251:67;;;;-1:-1:-1;;;49251:67:0;;8183:2:1;49251:67:0;;;8165:21:1;8222:2;8202:18;;;8195:30;8261:34;8241:18;;;8234:62;-1:-1:-1;;;8312:18:1;;;8305:31;8353:19;;49251:67:0;7981:397:1;49251:67:0;49331:49;49352:7;49369:1;49373:6;49331:20;:49::i;:::-;-1:-1:-1;;;;;49418:18:0;;49393:22;49418:18;;;;;;;;;;;49455:24;;;;49447:71;;;;-1:-1:-1;;;49447:71:0;;8585:2:1;49447:71:0;;;8567:21:1;8624:2;8604:18;;;8597:30;8663:34;8643:18;;;8636:62;-1:-1:-1;;;8714:18:1;;;8707:32;8756:19;;49447:71:0;8383:398:1;49447:71:0;-1:-1:-1;;;;;49554:18:0;;:9;:18;;;;;;;;;;;49575:23;;;49554:44;;49693:12;:22;;;;;;;49744:37;1736:25:1;;;49554:9:0;;:18;49744:37;;1709:18:1;49744:37:0;;;;;;;28203:147;;;:::o;35216:218::-;35276:6;35271:110;35289:14;:21;35286:24;;35271:110;;;35364:5;35332:10;:29;35343:14;35358:1;35343:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;35343:17:0;35332:29;;;;;;;;;;;;:37;;-1:-1:-1;;35332:37:0;;;;;;;;;;35313:3;;;;:::i;:::-;;;;35271:110;;;-1:-1:-1;35396:30:0;;23101:10;;35396:30;;;;;35216:218::o;35006:200::-;-1:-1:-1;;;;;35077:19:0;;35099:5;35077:19;;;:10;:19;;;;;;:27;;-1:-1:-1;;35077:27:0;;;35115:14;:28;;-1:-1:-1;35115:28:0;;;;;;;;;;;-1:-1:-1;;;;;;35115:28:0;;;;;35159:39;23101:10;;35077:19;35159:39;;;35006:200;:::o;33877:118::-;32886:19;:17;:19::i;:::-;33937:7:::1;:14:::0;;-1:-1:-1;;33937:14:0::1;33947:4;33937:14;::::0;;33967:20:::1;33974:12;23101:10:::0;;23021:98;34804:194;-1:-1:-1;;;;;34872:19:0;;;;;;:10;:19;;;;;:26;;-1:-1:-1;;34872:26:0;34894:4;34872:26;;;;;;34909:14;:28;;;;;;;;;;;;;;-1:-1:-1;;;;;;34909:28:0;;;;;;34977:12;23101:10;;23021:98;34977:12;-1:-1:-1;;;;;34953:37:0;34968:7;-1:-1:-1;;;;;34953:37:0;;;;;;;;;;;34804:194;:::o;55025:216::-;55149:4;34750:26;34768:7;34750:17;:26::i;:::-;55189:44:::1;28203:147:::0;27081:492;27170:22;27178:4;27184:7;27170;:22::i;:::-;27165:401;;27358:28;27378:7;27358:19;:28::i;:::-;27459:38;27487:4;27494:2;27459:19;:38::i;:::-;27263:257;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;27263:257:0;;;;;;;;;;-1:-1:-1;;;27209:345:0;;;;;;;:::i;33625:108::-;33352:7;;;;33684:41;;;;-1:-1:-1;;;33684:41:0;;10077:2:1;33684:41:0;;;10059:21:1;10116:2;10096:18;;;10089:30;-1:-1:-1;;;10135:18:1;;;10128:50;10195:18;;33684:41:0;9875:344:1;33684:41:0;33625:108::o;33440:::-;33352:7;;;;33510:9;33502:38;;;;-1:-1:-1;;;33502:38:0;;10426:2:1;33502:38:0;;;10408:21:1;10465:2;10445:18;;;10438:30;-1:-1:-1;;;10484:18:1;;;10477:46;10540:18;;33502:38:0;10224:340:1;35634:148:0;33352:7;;;;35719:9;:34;;;-1:-1:-1;;;;;;35534:19:0;;35510:4;35534:19;;;:10;:19;;;;;;;;35732:21;35711:63;;;;-1:-1:-1;;;35711:63:0;;10426:2:1;35711:63:0;;;10408:21:1;10465:2;10445:18;;;10438:30;-1:-1:-1;;;10484:18:1;;;10477:46;10540:18;;35711:63:0;10224:340:1;18915:151:0;18973:13;19006:52;-1:-1:-1;;;;;19018:22:0;;16790:2;18311:447;18386:13;18412:19;18444:10;18448:6;18444:1;:10;:::i;:::-;:14;;18457:1;18444:14;:::i;:::-;18434:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18434:25:0;;18412:47;;-1:-1:-1;;;18470:6:0;18477:1;18470:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;18470:15:0;;;;;;;;;-1:-1:-1;;;18496:6:0;18503:1;18496:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;18496:15:0;;;;;;;;-1:-1:-1;18527:9:0;18539:10;18543:6;18539:1;:10;:::i;:::-;:14;;18552:1;18539:14;:::i;:::-;18527:26;;18522:131;18559:1;18555;:5;18522:131;;;-1:-1:-1;;;18603:5:0;18611:3;18603:11;18594:21;;;;;;;:::i;:::-;;;;18582:6;18589:1;18582:9;;;;;;;;:::i;:::-;;;;:33;-1:-1:-1;;;;;18582:33:0;;;;;;;;-1:-1:-1;18640:1:0;18630:11;;;;;18562:3;;;:::i;:::-;;;18522:131;;;-1:-1:-1;18671:10:0;;18663:55;;;;-1:-1:-1;;;18663:55:0;;11217:2:1;18663:55:0;;;11199:21:1;;;11236:18;;;11229:30;11295:34;11275:18;;;11268:62;11347:18;;18663:55:0;11015:356:1;18663:55:0;18743:6;18311:447;-1:-1:-1;;;18311:447:0:o;14:286:1:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:1;;209:43;;199:71;;266:1;263;256:12;497:250;582:1;592:113;606:6;603:1;600:13;592:113;;;682:11;;;676:18;663:11;;;656:39;628:2;621:10;592:113;;;-1:-1:-1;;739:1:1;721:16;;714:27;497:250::o;752:396::-;901:2;890:9;883:21;864:4;933:6;927:13;976:6;971:2;960:9;956:18;949:34;992:79;1064:6;1059:2;1048:9;1044:18;1039:2;1031:6;1027:15;992:79;:::i;:::-;1132:2;1111:15;-1:-1:-1;;1107:29:1;1092:45;;;;1139:2;1088:54;;752:396;-1:-1:-1;;752:396:1:o;1153:173::-;1221:20;;-1:-1:-1;;;;;1270:31:1;;1260:42;;1250:70;;1316:1;1313;1306:12;1250:70;1153:173;;;:::o;1331:254::-;1399:6;1407;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;1499:29;1518:9;1499:29;:::i;:::-;1489:39;1575:2;1560:18;;;;1547:32;;-1:-1:-1;;;1331:254:1:o;1772:328::-;1849:6;1857;1865;1918:2;1906:9;1897:7;1893:23;1889:32;1886:52;;;1934:1;1931;1924:12;1886:52;1957:29;1976:9;1957:29;:::i;:::-;1947:39;;2005:38;2039:2;2028:9;2024:18;2005:38;:::i;:::-;1995:48;;2090:2;2079:9;2075:18;2062:32;2052:42;;1772:328;;;;;:::o;2105:180::-;2164:6;2217:2;2205:9;2196:7;2192:23;2188:32;2185:52;;;2233:1;2230;2223:12;2185:52;-1:-1:-1;2256:23:1;;2105:180;-1:-1:-1;2105:180:1:o;2472:254::-;2540:6;2548;2601:2;2589:9;2580:7;2576:23;2572:32;2569:52;;;2617:1;2614;2607:12;2569:52;2653:9;2640:23;2630:33;;2682:38;2716:2;2705:9;2701:18;2682:38;:::i;:::-;2672:48;;2472:254;;;;;:::o;2731:186::-;2790:6;2843:2;2831:9;2822:7;2818:23;2814:32;2811:52;;;2859:1;2856;2849:12;2811:52;2882:29;2901:9;2882:29;:::i;3296:260::-;3364:6;3372;3425:2;3413:9;3404:7;3400:23;3396:32;3393:52;;;3441:1;3438;3431:12;3393:52;3464:29;3483:9;3464:29;:::i;:::-;3454:39;;3512:38;3546:2;3535:9;3531:18;3512:38;:::i;3561:380::-;3640:1;3636:12;;;;3683;;;3704:61;;3758:4;3750:6;3746:17;3736:27;;3704:61;3811:2;3803:6;3800:14;3780:18;3777:38;3774:161;;3857:10;3852:3;3848:20;3845:1;3838:31;3892:4;3889:1;3882:15;3920:4;3917:1;3910:15;3774:161;;3561:380;;;:::o;4362:127::-;4423:10;4418:3;4414:20;4411:1;4404:31;4454:4;4451:1;4444:15;4478:4;4475:1;4468:15;4494:125;4559:9;;;4580:10;;;4577:36;;;4593:18;;:::i;8786:127::-;8847:10;8842:3;8838:20;8835:1;8828:31;8878:4;8875:1;8868:15;8902:4;8899:1;8892:15;8918:135;8957:3;8978:17;;;8975:43;;8998:18;;:::i;:::-;-1:-1:-1;9045:1:1;9034:13;;8918:135::o;9058:812::-;9469:25;9464:3;9457:38;9439:3;9524:6;9518:13;9540:75;9608:6;9603:2;9598:3;9594:12;9587:4;9579:6;9575:17;9540:75;:::i;:::-;-1:-1:-1;;;9674:2:1;9634:16;;;9666:11;;;9659:40;9724:13;;9746:76;9724:13;9808:2;9800:11;;9793:4;9781:17;;9746:76;:::i;:::-;9842:17;9861:2;9838:26;;9058:812;-1:-1:-1;;;;9058:812:1:o;10569:168::-;10642:9;;;10673;;10690:15;;;10684:22;;10670:37;10660:71;;10711:18;;:::i;10742:127::-;10803:10;10798:3;10794:20;10791:1;10784:31;10834:4;10831:1;10824:15;10858:4;10855:1;10848:15;10874:136;10913:3;10941:5;10931:39;;10950:18;;:::i;:::-;-1:-1:-1;;;10986:18:1;;10874:136::o
Swarm Source
ipfs://a77ecb48f5e2a6f41576489a367d55a91c8f75af4273dfd1dc02c2a34c0b3069
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.