ERC-20
Overview
Max Total Supply
8,893,145 MNB.p
Holders
88
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 8 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
ERC20Token
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-28 */ // SPDX-License-Identifier: MIT // File @openzeppelin/contracts/access/[email protected] // 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/[email protected] // 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/utils/introspection/[email protected] // 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/[email protected] // 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/[email protected] // OpenZeppelin Contracts (last updated v4.8.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) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 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 10, 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 * 8) < value ? 1 : 0); } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.8.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 `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); } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts (last updated v4.8.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: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(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/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // 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/[email protected] // OpenZeppelin Contracts (last updated v4.8.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]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // 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/[email protected] // 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 contracts/tokens/ERC20Token.sol pragma solidity ^0.8.17; contract ERC20Token is Context, ERC20, ERC20Burnable, AccessControl { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); uint8 private _decimals = 8; constructor(string memory name_, string memory symbol_, uint initialSupply_) ERC20(name_, symbol_) { _grantRole(DEFAULT_ADMIN_ROLE, _msgSender()); _grantRole(MINTER_ROLE, _msgSender()); _mint(_msgSender(), (initialSupply_ * (10 ** _decimals))); } function setRoleAdmin(bytes32 role, bytes32 adminRole) public onlyRole(getRoleAdmin(role)) { _setRoleAdmin(role, adminRole); } function decimals() public view virtual override returns (uint8) { return _decimals; } /** * @dev See {ERC20-_mint}. */ function _mint(address account, uint256 amount) internal virtual override { if (amount > 0) { super._mint(account, amount); } } function mint(address account, uint256 amount) public onlyRole(MINTER_ROLE) { _mint(account, amount); } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override(ERC20) { super._beforeTokenTransfer(from, to, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"initialSupply_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"bytes32","name":"adminRole","type":"bytes32"}],"name":"setRoleAdmin","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"}]
Contract Creation Code
60806040526006805460ff191660081790553480156200001e57600080fd5b50604051620018e6380380620018e683398101604081905262000041916200035d565b828260036200005183826200045e565b5060046200006082826200045e565b506200007291506000905033620000d1565b6200009e7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620000d1565b620000c833600654620000b69060ff16600a6200063d565b620000c2908462000655565b6200015c565b50505062000685565b620000dd82826200017a565b620001585760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620001173390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b80156200015857620001588282620001a760201b620006a71760201c565b60008281526005602090815260408083206001600160a01b038516845290915290205460ff165b92915050565b6001600160a01b038216620002025760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b62000210600083836200027b565b80600260008282546200022491906200066f565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b620002938383836200029360201b6200044b1760201c565b505050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002c057600080fd5b81516001600160401b0380821115620002dd57620002dd62000298565b604051601f8301601f19908116603f0116810190828211818310171562000308576200030862000298565b816040528381526020925086838588010111156200032557600080fd5b600091505b838210156200034957858201830151818301840152908201906200032a565b600093810190920192909252949350505050565b6000806000606084860312156200037357600080fd5b83516001600160401b03808211156200038b57600080fd5b6200039987838801620002ae565b94506020860151915080821115620003b057600080fd5b50620003bf86828701620002ae565b925050604084015190509250925092565b600181811c90821680620003e557607f821691505b6020821081036200040657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200029357600081815260208120601f850160051c81016020861015620004355750805b601f850160051c820191505b81811015620004565782815560010162000441565b505050505050565b81516001600160401b038111156200047a576200047a62000298565b62000492816200048b8454620003d0565b846200040c565b602080601f831160018114620004ca5760008415620004b15750858301515b600019600386901b1c1916600185901b17855562000456565b600085815260208120601f198616915b82811015620004fb57888601518255948401946001909101908401620004da565b50858210156200051a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620005815781600019048211156200056557620005656200052a565b808516156200057357918102915b93841c939080029062000545565b509250929050565b6000826200059a57506001620001a1565b81620005a957506000620001a1565b8160018114620005c25760028114620005cd57620005ed565b6001915050620001a1565b60ff841115620005e157620005e16200052a565b50506001821b620001a1565b5060208310610133831016604e8410600b841016171562000612575081810a620001a1565b6200061e838362000540565b80600019048211156200063557620006356200052a565b029392505050565b60006200064e60ff84168362000589565b9392505050565b8082028115828204841417620001a157620001a16200052a565b80820180821115620001a157620001a16200052a565b61125180620006956000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806340c10f19116100c3578063a217fddf1161007c578063a217fddf146102ca578063a457c2d7146102d2578063a9059cbb146102e5578063d5391393146102f8578063d547741f1461031f578063dd62ed3e1461033257600080fd5b806340c10f191461024d57806342966c681461026057806370a082311461027357806379cc67901461029c57806391d14854146102af57806395d89b41146102c257600080fd5b806323b872dd1161011557806323b872dd146101c9578063248a9ca3146101dc5780632f2ff15d146101ff578063313ce5671461021257806336568abe14610227578063395093511461023a57600080fd5b806301ffc9a71461015257806306fdde031461017a578063095ea7b31461018f57806318160ddd146101a25780631e4e0091146101b4575b600080fd5b610165610160366004610f3a565b610345565b60405190151581526020015b60405180910390f35b61018261037c565b6040516101719190610f88565b61016561019d366004610fd7565b61040e565b6002545b604051908152602001610171565b6101c76101c2366004611001565b610426565b005b6101656101d7366004611023565b610450565b6101a66101ea36600461105f565b60009081526005602052604090206001015490565b6101c761020d366004611078565b610474565b60065460405160ff9091168152602001610171565b6101c7610235366004611078565b610499565b610165610248366004610fd7565b61051c565b6101c761025b366004610fd7565b61053e565b6101c761026e36600461105f565b610572565b6101a66102813660046110a4565b6001600160a01b031660009081526020819052604090205490565b6101c76102aa366004610fd7565b61057f565b6101656102bd366004611078565b610594565b6101826105bf565b6101a6600081565b6101656102e0366004610fd7565b6105ce565b6101656102f3366004610fd7565b610649565b6101a67f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6101c761032d366004611078565b610657565b6101a66103403660046110bf565b61067c565b60006001600160e01b03198216637965db0b60e01b148061037657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461038b906110e9565b80601f01602080910402602001604051908101604052809291908181526020018280546103b7906110e9565b80156104045780601f106103d957610100808354040283529160200191610404565b820191906000526020600020905b8154815290600101906020018083116103e757829003601f168201915b5050505050905090565b60003361041c818585610766565b5060019392505050565b6000828152600560205260409020600101546104418161088a565b61044b8383610894565b505050565b60003361045e8582856108df565b610469858585610959565b506001949350505050565b60008281526005602052604090206001015461048f8161088a565b61044b8383610afd565b6001600160a01b038116331461050e5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6105188282610b83565b5050565b60003361041c81858561052f838361067c565b6105399190611139565b610766565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66105688161088a565b61044b8383610bea565b61057c3382610bfa565b50565b61058a8233836108df565b6105188282610bfa565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461038b906110e9565b600033816105dc828661067c565b90508381101561063c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610505565b6104698286868403610766565b60003361041c818585610959565b6000828152600560205260409020600101546106728161088a565b61044b8383610b83565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0382166106fd5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610505565b806002600082825461070f9190611139565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0383166107c85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610505565b6001600160a01b0382166108295760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610505565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b61057c8133610d2c565b600082815260056020526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b60006108eb848461067c565b9050600019811461095357818110156109465760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610505565b6109538484848403610766565b50505050565b6001600160a01b0383166109bd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610505565b6001600160a01b038216610a1f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610505565b6001600160a01b03831660009081526020819052604090205481811015610a975760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610505565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610953565b610b078282610594565b6105185760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610b3f3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610b8d8282610594565b156105185760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b80156105185761051882826106a7565b6001600160a01b038216610c5a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610505565b6001600160a01b03821660009081526020819052604090205481811015610cce5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610505565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b610d368282610594565b61051857610d4381610d85565b610d4e836020610d97565b604051602001610d5f92919061114c565b60408051601f198184030181529082905262461bcd60e51b825261050591600401610f88565b60606103766001600160a01b03831660145b60606000610da68360026111c1565b610db1906002611139565b67ffffffffffffffff811115610dc957610dc96111d8565b6040519080825280601f01601f191660200182016040528015610df3576020820181803683370190505b509050600360fc1b81600081518110610e0e57610e0e6111ee565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610e3d57610e3d6111ee565b60200101906001600160f81b031916908160001a9053506000610e618460026111c1565b610e6c906001611139565b90505b6001811115610ee4576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610ea057610ea06111ee565b1a60f81b828281518110610eb657610eb66111ee565b60200101906001600160f81b031916908160001a90535060049490941c93610edd81611204565b9050610e6f565b508315610f335760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610505565b9392505050565b600060208284031215610f4c57600080fd5b81356001600160e01b031981168114610f3357600080fd5b60005b83811015610f7f578181015183820152602001610f67565b50506000910152565b6020815260008251806020840152610fa7816040850160208701610f64565b601f01601f19169190910160400192915050565b80356001600160a01b0381168114610fd257600080fd5b919050565b60008060408385031215610fea57600080fd5b610ff383610fbb565b946020939093013593505050565b6000806040838503121561101457600080fd5b50508035926020909101359150565b60008060006060848603121561103857600080fd5b61104184610fbb565b925061104f60208501610fbb565b9150604084013590509250925092565b60006020828403121561107157600080fd5b5035919050565b6000806040838503121561108b57600080fd5b8235915061109b60208401610fbb565b90509250929050565b6000602082840312156110b657600080fd5b610f3382610fbb565b600080604083850312156110d257600080fd5b6110db83610fbb565b915061109b60208401610fbb565b600181811c908216806110fd57607f821691505b60208210810361111d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561037657610376611123565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611184816017850160208801610f64565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516111b5816028840160208801610f64565b01602801949350505050565b808202811582820484141761037657610376611123565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60008161121357611213611123565b50600019019056fea26469706673582212206c914e59a81f65854f0991469a6da7f57ca64517237e0748638917a7d231481664736f6c63430008110033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000194d4e20427269646765202d2050726573616c6520546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000054d4e422e70000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806340c10f19116100c3578063a217fddf1161007c578063a217fddf146102ca578063a457c2d7146102d2578063a9059cbb146102e5578063d5391393146102f8578063d547741f1461031f578063dd62ed3e1461033257600080fd5b806340c10f191461024d57806342966c681461026057806370a082311461027357806379cc67901461029c57806391d14854146102af57806395d89b41146102c257600080fd5b806323b872dd1161011557806323b872dd146101c9578063248a9ca3146101dc5780632f2ff15d146101ff578063313ce5671461021257806336568abe14610227578063395093511461023a57600080fd5b806301ffc9a71461015257806306fdde031461017a578063095ea7b31461018f57806318160ddd146101a25780631e4e0091146101b4575b600080fd5b610165610160366004610f3a565b610345565b60405190151581526020015b60405180910390f35b61018261037c565b6040516101719190610f88565b61016561019d366004610fd7565b61040e565b6002545b604051908152602001610171565b6101c76101c2366004611001565b610426565b005b6101656101d7366004611023565b610450565b6101a66101ea36600461105f565b60009081526005602052604090206001015490565b6101c761020d366004611078565b610474565b60065460405160ff9091168152602001610171565b6101c7610235366004611078565b610499565b610165610248366004610fd7565b61051c565b6101c761025b366004610fd7565b61053e565b6101c761026e36600461105f565b610572565b6101a66102813660046110a4565b6001600160a01b031660009081526020819052604090205490565b6101c76102aa366004610fd7565b61057f565b6101656102bd366004611078565b610594565b6101826105bf565b6101a6600081565b6101656102e0366004610fd7565b6105ce565b6101656102f3366004610fd7565b610649565b6101a67f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6101c761032d366004611078565b610657565b6101a66103403660046110bf565b61067c565b60006001600160e01b03198216637965db0b60e01b148061037657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461038b906110e9565b80601f01602080910402602001604051908101604052809291908181526020018280546103b7906110e9565b80156104045780601f106103d957610100808354040283529160200191610404565b820191906000526020600020905b8154815290600101906020018083116103e757829003601f168201915b5050505050905090565b60003361041c818585610766565b5060019392505050565b6000828152600560205260409020600101546104418161088a565b61044b8383610894565b505050565b60003361045e8582856108df565b610469858585610959565b506001949350505050565b60008281526005602052604090206001015461048f8161088a565b61044b8383610afd565b6001600160a01b038116331461050e5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6105188282610b83565b5050565b60003361041c81858561052f838361067c565b6105399190611139565b610766565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66105688161088a565b61044b8383610bea565b61057c3382610bfa565b50565b61058a8233836108df565b6105188282610bfa565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461038b906110e9565b600033816105dc828661067c565b90508381101561063c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610505565b6104698286868403610766565b60003361041c818585610959565b6000828152600560205260409020600101546106728161088a565b61044b8383610b83565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0382166106fd5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610505565b806002600082825461070f9190611139565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0383166107c85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610505565b6001600160a01b0382166108295760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610505565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b61057c8133610d2c565b600082815260056020526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b60006108eb848461067c565b9050600019811461095357818110156109465760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610505565b6109538484848403610766565b50505050565b6001600160a01b0383166109bd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610505565b6001600160a01b038216610a1f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610505565b6001600160a01b03831660009081526020819052604090205481811015610a975760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610505565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610953565b610b078282610594565b6105185760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610b3f3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610b8d8282610594565b156105185760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b80156105185761051882826106a7565b6001600160a01b038216610c5a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610505565b6001600160a01b03821660009081526020819052604090205481811015610cce5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610505565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b610d368282610594565b61051857610d4381610d85565b610d4e836020610d97565b604051602001610d5f92919061114c565b60408051601f198184030181529082905262461bcd60e51b825261050591600401610f88565b60606103766001600160a01b03831660145b60606000610da68360026111c1565b610db1906002611139565b67ffffffffffffffff811115610dc957610dc96111d8565b6040519080825280601f01601f191660200182016040528015610df3576020820181803683370190505b509050600360fc1b81600081518110610e0e57610e0e6111ee565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610e3d57610e3d6111ee565b60200101906001600160f81b031916908160001a9053506000610e618460026111c1565b610e6c906001611139565b90505b6001811115610ee4576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610ea057610ea06111ee565b1a60f81b828281518110610eb657610eb66111ee565b60200101906001600160f81b031916908160001a90535060049490941c93610edd81611204565b9050610e6f565b508315610f335760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610505565b9392505050565b600060208284031215610f4c57600080fd5b81356001600160e01b031981168114610f3357600080fd5b60005b83811015610f7f578181015183820152602001610f67565b50506000910152565b6020815260008251806020840152610fa7816040850160208701610f64565b601f01601f19169190910160400192915050565b80356001600160a01b0381168114610fd257600080fd5b919050565b60008060408385031215610fea57600080fd5b610ff383610fbb565b946020939093013593505050565b6000806040838503121561101457600080fd5b50508035926020909101359150565b60008060006060848603121561103857600080fd5b61104184610fbb565b925061104f60208501610fbb565b9150604084013590509250925092565b60006020828403121561107157600080fd5b5035919050565b6000806040838503121561108b57600080fd5b8235915061109b60208401610fbb565b90509250929050565b6000602082840312156110b657600080fd5b610f3382610fbb565b600080604083850312156110d257600080fd5b6110db83610fbb565b915061109b60208401610fbb565b600181811c908216806110fd57607f821691505b60208210810361111d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561037657610376611123565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611184816017850160208801610f64565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516111b5816028840160208801610f64565b01602801949350505050565b808202811582820484141761037657610376611123565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60008161121357611213611123565b50600019019056fea26469706673582212206c914e59a81f65854f0991469a6da7f57ca64517237e0748638917a7d231481664736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000194d4e20427269646765202d2050726573616c6520546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000054d4e422e70000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): MN Bridge - Presale Token
Arg [1] : symbol_ (string): MNB.p
Arg [2] : initialSupply_ (uint256): 0
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [4] : 4d4e20427269646765202d2050726573616c6520546f6b656e00000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 4d4e422e70000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
47573:1277:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23713:204;;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;23713:204:0;;;;;;;;35148:100;;;:::i;:::-;;;;;;;:::i;37499:201::-;;;;;;:::i;:::-;;:::i;36268:108::-;36356:12;;36268:108;;;1736:25:1;;;1724:2;1709:18;36268:108:0;1590:177:1;48043:140:0;;;;;;:::i;:::-;;:::i;:::-;;38280:295;;;;;;:::i;:::-;;:::i;25536:131::-;;;;;;:::i;:::-;25610:7;25637:12;;;:6;:12;;;;;:22;;;;25536:131;25977:147;;;;;;:::i;:::-;;:::i;48191:100::-;48274:9;;48191:100;;48274:9;;;;3126:36:1;;3114:2;3099:18;48191:100:0;2984:184:1;27121:218:0;;;;;;:::i;:::-;;:::i;38984:238::-;;;;;;:::i;:::-;;:::i;48520:117::-;;;;;;:::i;:::-;;:::i;46921:91::-;;;;;;:::i;:::-;;:::i;36439:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;36540:18:0;36513:7;36540:18;;;;;;;;;;;;36439:127;47331:164;;;;;;:::i;:::-;;:::i;24009:147::-;;;;;;:::i;:::-;;:::i;35367:104::-;;;:::i;23114:49::-;;23159:4;23114:49;;39725:436;;;;;;:::i;:::-;;:::i;36772:193::-;;;;;;:::i;:::-;;:::i;47648:62::-;;47686:24;47648:62;;26417:149;;;;;;:::i;:::-;;:::i;37028:151::-;;;;;;:::i;:::-;;:::i;23713:204::-;23798:4;-1:-1:-1;;;;;;23822:47:0;;-1:-1:-1;;;23822:47:0;;:87;;-1:-1:-1;;;;;;;;;;5874:40:0;;;23873:36;23815:94;23713:204;-1:-1:-1;;23713:204:0:o;35148:100::-;35202:13;35235:5;35228:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35148:100;:::o;37499:201::-;37582:4;3843:10;37638:32;3843:10;37654:7;37663:6;37638:8;:32::i;:::-;-1:-1:-1;37688:4:0;;37499:201;-1:-1:-1;;;37499:201:0:o;48043:140::-;25610:7;25637:12;;;:6;:12;;;;;:22;;;23605:16;23616:4;23605:10;:16::i;:::-;48145:30:::1;48159:4;48165:9;48145:13;:30::i;:::-;48043:140:::0;;;:::o;38280:295::-;38411:4;3843:10;38469:38;38485:4;3843:10;38500:6;38469:15;:38::i;:::-;38518:27;38528:4;38534:2;38538:6;38518:9;:27::i;:::-;-1:-1:-1;38563:4:0;;38280:295;-1:-1:-1;;;;38280:295:0:o;25977:147::-;25610:7;25637:12;;;:6;:12;;;;;:22;;;23605:16;23616:4;23605:10;:16::i;:::-;26091:25:::1;26102:4;26108:7;26091:10;:25::i;27121:218::-:0;-1:-1:-1;;;;;27217:23:0;;3843:10;27217:23;27209:83;;;;-1:-1:-1;;;27209:83:0;;4401:2:1;27209:83:0;;;4383:21:1;4440:2;4420:18;;;4413:30;4479:34;4459:18;;;4452:62;-1:-1:-1;;;4530:18:1;;;4523:45;4585:19;;27209:83:0;;;;;;;;;27305:26;27317:4;27323:7;27305:11;:26::i;:::-;27121:218;;:::o;38984:238::-;39072:4;3843:10;39128:64;3843:10;39144:7;39181:10;39153:25;3843:10;39144:7;39153:9;:25::i;:::-;:38;;;;:::i;:::-;39128:8;:64::i;48520:117::-;47686:24;23605:16;23616:4;23605:10;:16::i;:::-;48607:22:::1;48613:7;48622:6;48607:5;:22::i;46921:91::-:0;46977:27;3843:10;46997:6;46977:5;:27::i;:::-;46921:91;:::o;47331:164::-;47408:46;47424:7;3843:10;47447:6;47408:15;:46::i;:::-;47465:22;47471:7;47480:6;47465:5;:22::i;24009:147::-;24095:4;24119:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;24119:29:0;;;;;;;;;;;;;;;24009:147::o;35367:104::-;35423:13;35456:7;35449:14;;;;;:::i;39725:436::-;39818:4;3843:10;39818:4;39901:25;3843:10;39918:7;39901:9;:25::i;:::-;39874:52;;39965:15;39945:16;:35;;39937:85;;;;-1:-1:-1;;;39937:85:0;;5079:2:1;39937:85:0;;;5061:21:1;5118:2;5098:18;;;5091:30;5157:34;5137:18;;;5130:62;-1:-1:-1;;;5208:18:1;;;5201:35;5253:19;;39937:85:0;4877:401:1;39937:85:0;40058:60;40067:5;40074:7;40102:15;40083:16;:34;40058:8;:60::i;36772:193::-;36851:4;3843:10;36907:28;3843:10;36924:2;36928:6;36907:9;:28::i;26417:149::-;25610:7;25637:12;;;:6;:12;;;;;:22;;;23605:16;23616:4;23605:10;:16::i;:::-;26532:26:::1;26544:4;26550:7;26532:11;:26::i;37028:151::-:0;-1:-1:-1;;;;;37144:18:0;;;37117:7;37144:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;37028:151::o;41758:548::-;-1:-1:-1;;;;;41842:21:0;;41834:65;;;;-1:-1:-1;;;41834:65:0;;5485:2:1;41834:65:0;;;5467:21:1;5524:2;5504:18;;;5497:30;5563:33;5543:18;;;5536:61;5614:18;;41834:65:0;5283:355:1;41834:65:0;41990:6;41974:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;42145:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;42200:37;1736:25:1;;;42200:37:0;;1709:18:1;42200:37:0;;;;;;;27121:218;;:::o;43752:380::-;-1:-1:-1;;;;;43888:19:0;;43880:68;;;;-1:-1:-1;;;43880:68:0;;5845:2:1;43880:68:0;;;5827:21:1;5884:2;5864:18;;;5857:30;5923:34;5903:18;;;5896:62;-1:-1:-1;;;5974:18:1;;;5967:34;6018:19;;43880:68:0;5643:400:1;43880:68:0;-1:-1:-1;;;;;43967:21:0;;43959:68;;;;-1:-1:-1;;;43959:68:0;;6250:2:1;43959:68:0;;;6232:21:1;6289:2;6269:18;;;6262:30;6328:34;6308:18;;;6301:62;-1:-1:-1;;;6379:18:1;;;6372:32;6421:19;;43959:68:0;6048:398:1;43959:68:0;-1:-1:-1;;;;;44040:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;44092:32;;1736:25:1;;;44092:32:0;;1709:18:1;44092:32:0;;;;;;;43752:380;;;:::o;24460:105::-;24527:30;24538:4;3843:10;24527;:30::i;28290:251::-;28374:25;25637:12;;;:6;:12;;;;;;:22;;;;28431:34;;;;28481:52;;25637:22;;28431:34;;25637:22;;:12;;28481:52;;28374:25;28481:52;28363:178;28290:251;;:::o;44423:453::-;44558:24;44585:25;44595:5;44602:7;44585:9;:25::i;:::-;44558:52;;-1:-1:-1;;44625:16:0;:37;44621:248;;44707:6;44687:16;:26;;44679:68;;;;-1:-1:-1;;;44679:68:0;;6653:2:1;44679:68:0;;;6635:21:1;6692:2;6672:18;;;6665:30;6731:31;6711:18;;;6704:59;6780:18;;44679:68:0;6451:353:1;44679:68:0;44791:51;44800:5;44807:7;44835:6;44816:16;:25;44791:8;:51::i;:::-;44547:329;44423:453;;;:::o;40631:840::-;-1:-1:-1;;;;;40762:18:0;;40754:68;;;;-1:-1:-1;;;40754:68:0;;7011:2:1;40754:68:0;;;6993:21:1;7050:2;7030:18;;;7023:30;7089:34;7069:18;;;7062:62;-1:-1:-1;;;7140:18:1;;;7133:35;7185:19;;40754:68:0;6809:401:1;40754:68:0;-1:-1:-1;;;;;40841:16:0;;40833:64;;;;-1:-1:-1;;;40833:64:0;;7417:2:1;40833:64:0;;;7399:21:1;7456:2;7436:18;;;7429:30;7495:34;7475:18;;;7468:62;-1:-1:-1;;;7546:18:1;;;7539:33;7589:19;;40833:64:0;7215:399:1;40833:64:0;-1:-1:-1;;;;;40983:15:0;;40961:19;40983:15;;;;;;;;;;;41017:21;;;;41009:72;;;;-1:-1:-1;;;41009:72:0;;7821:2:1;41009:72:0;;;7803:21:1;7860:2;7840:18;;;7833:30;7899:34;7879:18;;;7872:62;-1:-1:-1;;;7950:18:1;;;7943:36;7996:19;;41009:72:0;7619:402:1;41009:72:0;-1:-1:-1;;;;;41117:15:0;;;:9;:15;;;;;;;;;;;41135:20;;;41117:38;;41335:13;;;;;;;;;;:23;;;;;;41387:26;;1736:25:1;;;41335:13:0;;41387:26;;1709:18:1;41387:26:0;;;;;;;41426:37;48043:140;28718:238;28802:22;28810:4;28816:7;28802;:22::i;:::-;28797:152;;28841:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;28841:29:0;;;;;;;;;:36;;-1:-1:-1;;28841:36:0;28873:4;28841:36;;;28924:12;3843:10;;3763:98;28924:12;-1:-1:-1;;;;;28897:40:0;28915:7;-1:-1:-1;;;;;28897:40:0;28909:4;28897:40;;;;;;;;;;28718:238;;:::o;29136:239::-;29220:22;29228:4;29234:7;29220;:22::i;:::-;29216:152;;;29291:5;29259:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;29259:29:0;;;;;;;;;;:37;;-1:-1:-1;;29259:37:0;;;29316:40;3843:10;;29259:12;;29316:40;;29291:5;29316:40;29136:239;;:::o;48349:163::-;48438:10;;48434:71;;48465:28;48477:7;48486:6;48465:11;:28::i;42639:675::-;-1:-1:-1;;;;;42723:21:0;;42715:67;;;;-1:-1:-1;;;42715:67:0;;8228:2:1;42715:67:0;;;8210:21:1;8267:2;8247:18;;;8240:30;8306:34;8286:18;;;8279:62;-1:-1:-1;;;8357:18:1;;;8350:31;8398:19;;42715:67:0;8026:397:1;42715:67:0;-1:-1:-1;;;;;42882:18:0;;42857:22;42882:18;;;;;;;;;;;42919:24;;;;42911:71;;;;-1:-1:-1;;;42911:71:0;;8630:2:1;42911:71:0;;;8612:21:1;8669:2;8649:18;;;8642:30;8708:34;8688:18;;;8681:62;-1:-1:-1;;;8759:18:1;;;8752:32;8801:19;;42911:71:0;8428:398:1;42911:71:0;-1:-1:-1;;;;;43018:18:0;;:9;:18;;;;;;;;;;;43039:23;;;43018:44;;43157:12;:22;;;;;;;43208:37;1736:25:1;;;43018:9:0;;:18;43208:37;;1709:18:1;43208:37:0;;;;;;;48043:140;;;:::o;24855:492::-;24944:22;24952:4;24958:7;24944;:22::i;:::-;24939:401;;25132:28;25152:7;25132:19;:28::i;:::-;25233:38;25261:4;25268:2;25233:19;:38::i;:::-;25037:257;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;25037:257:0;;;;;;;;;;-1:-1:-1;;;24983:345:0;;;;;;;:::i;20976:151::-;21034:13;21067:52;-1:-1:-1;;;;;21079:22:0;;19131:2;20372:447;20447:13;20473:19;20505:10;20509:6;20505:1;:10;:::i;:::-;:14;;20518:1;20505:14;:::i;:::-;20495:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20495:25:0;;20473:47;;-1:-1:-1;;;20531:6:0;20538:1;20531:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;20531:15:0;;;;;;;;;-1:-1:-1;;;20557:6:0;20564:1;20557:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;20557:15:0;;;;;;;;-1:-1:-1;20588:9:0;20600:10;20604:6;20600:1;:10;:::i;:::-;:14;;20613:1;20600:14;:::i;:::-;20588:26;;20583:131;20620:1;20616;:5;20583:131;;;-1:-1:-1;;;20664:5:0;20672:3;20664:11;20655:21;;;;;;;:::i;:::-;;;;20643:6;20650:1;20643:9;;;;;;;;:::i;:::-;;;;:33;-1:-1:-1;;;;;20643:33:0;;;;;;;;-1:-1:-1;20701:1:0;20691:11;;;;;20623:3;;;:::i;:::-;;;20583:131;;;-1:-1:-1;20732:10:0;;20724:55;;;;-1:-1:-1;;;20724:55:0;;10428:2:1;20724:55:0;;;10410:21:1;;;10447:18;;;10440:30;10506:34;10486:18;;;10479:62;10558:18;;20724:55:0;10226:356:1;20724:55:0;20804:6;20372:447;-1:-1:-1;;;20372: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:248::-;1840:6;1848;1901:2;1889:9;1880:7;1876:23;1872:32;1869:52;;;1917:1;1914;1907:12;1869:52;-1:-1:-1;;1940:23:1;;;2010:2;1995:18;;;1982:32;;-1:-1:-1;1772:248:1:o;2025:328::-;2102:6;2110;2118;2171:2;2159:9;2150:7;2146:23;2142:32;2139:52;;;2187:1;2184;2177:12;2139:52;2210:29;2229:9;2210:29;:::i;:::-;2200:39;;2258:38;2292:2;2281:9;2277:18;2258:38;:::i;:::-;2248:48;;2343:2;2332:9;2328:18;2315:32;2305:42;;2025:328;;;;;:::o;2358:180::-;2417:6;2470:2;2458:9;2449:7;2445:23;2441:32;2438:52;;;2486:1;2483;2476:12;2438:52;-1:-1:-1;2509:23:1;;2358:180;-1:-1:-1;2358:180:1:o;2725:254::-;2793:6;2801;2854:2;2842:9;2833:7;2829:23;2825:32;2822:52;;;2870:1;2867;2860:12;2822:52;2906:9;2893:23;2883:33;;2935:38;2969:2;2958:9;2954:18;2935:38;:::i;:::-;2925:48;;2725:254;;;;;:::o;3358:186::-;3417:6;3470:2;3458:9;3449:7;3445:23;3441:32;3438:52;;;3486:1;3483;3476:12;3438:52;3509:29;3528:9;3509:29;:::i;3549:260::-;3617:6;3625;3678:2;3666:9;3657:7;3653:23;3649:32;3646:52;;;3694:1;3691;3684:12;3646:52;3717:29;3736:9;3717:29;:::i;:::-;3707:39;;3765:38;3799:2;3788:9;3784:18;3765:38;:::i;3814:380::-;3893:1;3889:12;;;;3936;;;3957:61;;4011:4;4003:6;3999:17;3989:27;;3957:61;4064:2;4056:6;4053:14;4033:18;4030:38;4027:161;;4110:10;4105:3;4101:20;4098:1;4091:31;4145:4;4142:1;4135:15;4173:4;4170:1;4163:15;4027:161;;3814:380;;;:::o;4615:127::-;4676:10;4671:3;4667:20;4664:1;4657:31;4707:4;4704:1;4697:15;4731:4;4728:1;4721:15;4747:125;4812:9;;;4833:10;;;4830:36;;;4846:18;;:::i;8831:812::-;9242:25;9237:3;9230:38;9212:3;9297:6;9291:13;9313:75;9381:6;9376:2;9371:3;9367:12;9360:4;9352:6;9348:17;9313:75;:::i;:::-;-1:-1:-1;;;9447:2:1;9407:16;;;9439:11;;;9432:40;9497:13;;9519:76;9497:13;9581:2;9573:11;;9566:4;9554:17;;9519:76;:::i;:::-;9615:17;9634:2;9611:26;;8831:812;-1:-1:-1;;;;8831:812:1:o;9648:168::-;9721:9;;;9752;;9769:15;;;9763:22;;9749:37;9739:71;;9790:18;;:::i;9821:127::-;9882:10;9877:3;9873:20;9870:1;9863:31;9913:4;9910:1;9903:15;9937:4;9934:1;9927:15;9953:127;10014:10;10009:3;10005:20;10002:1;9995:31;10045:4;10042:1;10035:15;10069:4;10066:1;10059:15;10085:136;10124:3;10152:5;10142:39;;10161:18;;:::i;:::-;-1:-1:-1;;;10197:18:1;;10085:136::o
Swarm Source
ipfs://6c914e59a81f65854f0991469a6da7f57ca64517237e0748638917a7d2314816
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.