Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
4,007,799,352,624.687275726166563559 CP
Holders
138
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Token
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-09 */ // Sources flattened with hardhat v2.9.5 https://hardhat.org // File @openzeppelin/contracts/token/ERC20/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File @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/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/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.6.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File @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/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // 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/access/[email protected] // OpenZeppelin Contracts (last updated v4.6.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(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * 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. */ 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. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File contracts/interface/IToken.sol pragma solidity ^0.8.0; interface IToken is IERC20 { function mint(address to, uint256 amount) external returns (bool); function burn(address from, uint256 amount) external returns (bool); } interface IMB { function mint(address to, uint256 amount) external returns (bool); function burn(address from, uint256 amount) external returns (bool); } // File contracts/Token.sol pragma solidity ^0.8.0; contract Token is ERC20, IToken, AccessControl { bytes32 public constant MINTER_ROLE = "MINTER_ROLE"; bytes32 public constant BURNER_ROLE = "BURNER_ROLE"; constructor( string memory _name, string memory _symbol ) ERC20(_name, _symbol) { _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); } function decimals() public view virtual override returns (uint8) { return 18; } function mint(address to, uint256 amount) public override onlyMinter returns (bool) { _mint(to, amount); return true; } function burn(address to, uint256 amount) public override onlyBurner returns (bool) { _burn(to, amount); return true; } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal override { require(to != address(this), "Token::to should not be token contract"); super._beforeTokenTransfer(from, to, amount); } modifier onlyMinter() { require(hasRole(MINTER_ROLE, msg.sender), "Token::caller is not minter"); _; } modifier onlyBurner() { require(hasRole(BURNER_ROLE, msg.sender), "Token::caller is not burner"); _; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"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":"BURNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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
60806040523480156200001157600080fd5b506040516200168e3803806200168e83398101604081905262000034916200028a565b8151829082906200004d90600390602085019062000131565b5080516200006390600490602084019062000131565b5062000075915060009050336200007d565b505062000344565b6200008982826200008d565b5050565b60008281526005602090815260408083206001600160a01b038516845290915290205460ff16620000895760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620000ed3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b8280546200013f90620002f1565b90600052602060002090601f016020900481019282620001635760008555620001ae565b82601f106200017e57805160ff1916838001178555620001ae565b82800160010185558215620001ae579182015b82811115620001ae57825182559160200191906001019062000191565b50620001bc929150620001c0565b5090565b5b80821115620001bc5760008155600101620001c1565b600082601f830112620001e8578081fd5b81516001600160401b03808211156200020557620002056200032e565b604051601f8301601f19908116603f011681019082821181831017156200023057620002306200032e565b816040528381526020925086838588010111156200024c578485fd5b8491505b838210156200026f578582018301518183018401529082019062000250565b838211156200028057848385830101525b9695505050505050565b600080604083850312156200029d578182fd5b82516001600160401b0380821115620002b4578384fd5b620002c286838701620001d7565b93506020850151915080821115620002d8578283fd5b50620002e785828601620001d7565b9150509250929050565b600181811c908216806200030657607f821691505b602082108114156200032857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61133a80620003546000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806340c10f19116100b8578063a217fddf1161007c578063a217fddf146102a8578063a457c2d7146102b0578063a9059cbb146102c3578063d5391393146102d6578063d547741f146102eb578063dd62ed3e146102fe57600080fd5b806340c10f191461023e57806370a082311461025157806391d148541461027a57806395d89b411461028d5780639dc29fac1461029557600080fd5b8063248a9ca31161010a578063248a9ca3146101bc578063282c51f3146101df5780632f2ff15d146101f4578063313ce5671461020957806336568abe14610218578063395093511461022b57600080fd5b806301ffc9a71461014757806306fdde031461016f578063095ea7b31461018457806318160ddd1461019757806323b872dd146101a9575b600080fd5b61015a610155366004611152565b610311565b60405190151581526020015b60405180910390f35b610177610348565b60405161016691906111ef565b61015a6101923660046110ef565b6103da565b6002545b604051908152602001610166565b61015a6101b73660046110b4565b6103f2565b61019b6101ca366004611118565b60009081526005602052604090206001015490565b61019b6a4255524e45525f524f4c4560a81b81565b610207610202366004611130565b610416565b005b60405160128152602001610166565b610207610226366004611130565b610440565b61015a6102393660046110ef565b6104c3565b61015a61024c3660046110ef565b6104e5565b61019b61025f366004611068565b6001600160a01b031660009081526020819052604090205490565b61015a610288366004611130565b61055e565b610177610589565b61015a6102a33660046110ef565b610598565b61019b600081565b61015a6102be3660046110ef565b610608565b61015a6102d13660046110ef565b610683565b61019b6a4d494e5445525f524f4c4560a81b81565b6102076102f9366004611130565b610691565b61019b61030c366004611082565b6106b6565b60006001600160e01b03198216637965db0b60e01b148061034257506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060038054610357906112b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610383906112b3565b80156103d05780601f106103a5576101008083540402835291602001916103d0565b820191906000526020600020905b8154815290600101906020018083116103b357829003601f168201915b5050505050905090565b6000336103e88185856106e1565b5060019392505050565b600033610400858285610805565b61040b85858561087f565b506001949350505050565b60008281526005602052604090206001015461043181610a58565b61043b8383610a65565b505050565b6001600160a01b03811633146104b55760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6104bf8282610aeb565b5050565b6000336103e88185856104d683836106b6565b6104e09190611222565b6106e1565b60006104ff6a4d494e5445525f524f4c4560a81b3361055e565b61054b5760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e3a3a63616c6c6572206973206e6f74206d696e746572000000000060448201526064016104ac565b6105558383610b52565b50600192915050565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060048054610357906112b3565b60006105b26a4255524e45525f524f4c4560a81b3361055e565b6105fe5760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e3a3a63616c6c6572206973206e6f74206275726e6572000000000060448201526064016104ac565b6105558383610c3d565b6000338161061682866106b6565b9050838110156106765760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104ac565b61040b82868684036106e1565b6000336103e881858561087f565b6000828152600560205260409020600101546106ac81610a58565b61043b8383610aeb565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166107435760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104ac565b6001600160a01b0382166107a45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104ac565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061081184846106b6565b90506000198114610879578181101561086c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104ac565b61087984848484036106e1565b50505050565b6001600160a01b0383166108e35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104ac565b6001600160a01b0382166109455760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104ac565b610950838383610d97565b6001600160a01b038316600090815260208190526040902054818110156109c85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104ac565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906109ff908490611222565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a4b91815260200190565b60405180910390a3610879565b610a628133610dff565b50565b610a6f828261055e565b6104bf5760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610aa73390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610af5828261055e565b156104bf5760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b038216610ba85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104ac565b610bb460008383610d97565b8060026000828254610bc69190611222565b90915550506001600160a01b03821660009081526020819052604081208054839290610bf3908490611222565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610c9d5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104ac565b610ca982600083610d97565b6001600160a01b03821660009081526020819052604090205481811015610d1d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104ac565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610d4c908490611259565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6001600160a01b03821630141561043b5760405162461bcd60e51b815260206004820152602660248201527f546f6b656e3a3a746f2073686f756c64206e6f7420626520746f6b656e20636f6044820152651b9d1c9858dd60d21b60648201526084016104ac565b610e09828261055e565b6104bf57610e21816001600160a01b03166014610e63565b610e2c836020610e63565b604051602001610e3d92919061117a565b60408051601f198184030181529082905262461bcd60e51b82526104ac916004016111ef565b60606000610e7283600261123a565b610e7d906002611222565b67ffffffffffffffff811115610ea357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610ecd576020820181803683370190505b509050600360fc1b81600081518110610ef657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610f3357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000610f5784600261123a565b610f62906001611222565b90505b6001811115610ff6576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610fa457634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110610fc857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93610fef8161129c565b9050610f65565b5083156110455760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016104ac565b9392505050565b80356001600160a01b038116811461106357600080fd5b919050565b600060208284031215611079578081fd5b6110458261104c565b60008060408385031215611094578081fd5b61109d8361104c565b91506110ab6020840161104c565b90509250929050565b6000806000606084860312156110c8578081fd5b6110d18461104c565b92506110df6020850161104c565b9150604084013590509250925092565b60008060408385031215611101578182fd5b61110a8361104c565b946020939093013593505050565b600060208284031215611129578081fd5b5035919050565b60008060408385031215611142578182fd5b823591506110ab6020840161104c565b600060208284031215611163578081fd5b81356001600160e01b031981168114611045578182fd5b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516111b2816017850160208801611270565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516111e3816028840160208801611270565b01602801949350505050565b602081526000825180602084015261120e816040850160208701611270565b601f01601f19169190910160400192915050565b60008219821115611235576112356112ee565b500190565b6000816000190483118215151615611254576112546112ee565b500290565b60008282101561126b5761126b6112ee565b500390565b60005b8381101561128b578181015183820152602001611273565b838111156108795750506000910152565b6000816112ab576112ab6112ee565b506000190190565b600181811c908216806112c757607f821691505b602082108114156112e857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212206ea9213314d32b29211365cc249df40ec935a7f82975df280ae6a9d2b01673de64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000010436f6f6b6965732050726f746f636f6c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024350000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101425760003560e01c806340c10f19116100b8578063a217fddf1161007c578063a217fddf146102a8578063a457c2d7146102b0578063a9059cbb146102c3578063d5391393146102d6578063d547741f146102eb578063dd62ed3e146102fe57600080fd5b806340c10f191461023e57806370a082311461025157806391d148541461027a57806395d89b411461028d5780639dc29fac1461029557600080fd5b8063248a9ca31161010a578063248a9ca3146101bc578063282c51f3146101df5780632f2ff15d146101f4578063313ce5671461020957806336568abe14610218578063395093511461022b57600080fd5b806301ffc9a71461014757806306fdde031461016f578063095ea7b31461018457806318160ddd1461019757806323b872dd146101a9575b600080fd5b61015a610155366004611152565b610311565b60405190151581526020015b60405180910390f35b610177610348565b60405161016691906111ef565b61015a6101923660046110ef565b6103da565b6002545b604051908152602001610166565b61015a6101b73660046110b4565b6103f2565b61019b6101ca366004611118565b60009081526005602052604090206001015490565b61019b6a4255524e45525f524f4c4560a81b81565b610207610202366004611130565b610416565b005b60405160128152602001610166565b610207610226366004611130565b610440565b61015a6102393660046110ef565b6104c3565b61015a61024c3660046110ef565b6104e5565b61019b61025f366004611068565b6001600160a01b031660009081526020819052604090205490565b61015a610288366004611130565b61055e565b610177610589565b61015a6102a33660046110ef565b610598565b61019b600081565b61015a6102be3660046110ef565b610608565b61015a6102d13660046110ef565b610683565b61019b6a4d494e5445525f524f4c4560a81b81565b6102076102f9366004611130565b610691565b61019b61030c366004611082565b6106b6565b60006001600160e01b03198216637965db0b60e01b148061034257506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060038054610357906112b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610383906112b3565b80156103d05780601f106103a5576101008083540402835291602001916103d0565b820191906000526020600020905b8154815290600101906020018083116103b357829003601f168201915b5050505050905090565b6000336103e88185856106e1565b5060019392505050565b600033610400858285610805565b61040b85858561087f565b506001949350505050565b60008281526005602052604090206001015461043181610a58565b61043b8383610a65565b505050565b6001600160a01b03811633146104b55760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6104bf8282610aeb565b5050565b6000336103e88185856104d683836106b6565b6104e09190611222565b6106e1565b60006104ff6a4d494e5445525f524f4c4560a81b3361055e565b61054b5760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e3a3a63616c6c6572206973206e6f74206d696e746572000000000060448201526064016104ac565b6105558383610b52565b50600192915050565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060048054610357906112b3565b60006105b26a4255524e45525f524f4c4560a81b3361055e565b6105fe5760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e3a3a63616c6c6572206973206e6f74206275726e6572000000000060448201526064016104ac565b6105558383610c3d565b6000338161061682866106b6565b9050838110156106765760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104ac565b61040b82868684036106e1565b6000336103e881858561087f565b6000828152600560205260409020600101546106ac81610a58565b61043b8383610aeb565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166107435760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104ac565b6001600160a01b0382166107a45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104ac565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061081184846106b6565b90506000198114610879578181101561086c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104ac565b61087984848484036106e1565b50505050565b6001600160a01b0383166108e35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104ac565b6001600160a01b0382166109455760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104ac565b610950838383610d97565b6001600160a01b038316600090815260208190526040902054818110156109c85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104ac565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906109ff908490611222565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a4b91815260200190565b60405180910390a3610879565b610a628133610dff565b50565b610a6f828261055e565b6104bf5760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610aa73390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610af5828261055e565b156104bf5760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b038216610ba85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104ac565b610bb460008383610d97565b8060026000828254610bc69190611222565b90915550506001600160a01b03821660009081526020819052604081208054839290610bf3908490611222565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610c9d5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104ac565b610ca982600083610d97565b6001600160a01b03821660009081526020819052604090205481811015610d1d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104ac565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610d4c908490611259565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6001600160a01b03821630141561043b5760405162461bcd60e51b815260206004820152602660248201527f546f6b656e3a3a746f2073686f756c64206e6f7420626520746f6b656e20636f6044820152651b9d1c9858dd60d21b60648201526084016104ac565b610e09828261055e565b6104bf57610e21816001600160a01b03166014610e63565b610e2c836020610e63565b604051602001610e3d92919061117a565b60408051601f198184030181529082905262461bcd60e51b82526104ac916004016111ef565b60606000610e7283600261123a565b610e7d906002611222565b67ffffffffffffffff811115610ea357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610ecd576020820181803683370190505b509050600360fc1b81600081518110610ef657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610f3357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000610f5784600261123a565b610f62906001611222565b90505b6001811115610ff6576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610fa457634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110610fc857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93610fef8161129c565b9050610f65565b5083156110455760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016104ac565b9392505050565b80356001600160a01b038116811461106357600080fd5b919050565b600060208284031215611079578081fd5b6110458261104c565b60008060408385031215611094578081fd5b61109d8361104c565b91506110ab6020840161104c565b90509250929050565b6000806000606084860312156110c8578081fd5b6110d18461104c565b92506110df6020850161104c565b9150604084013590509250925092565b60008060408385031215611101578182fd5b61110a8361104c565b946020939093013593505050565b600060208284031215611129578081fd5b5035919050565b60008060408385031215611142578182fd5b823591506110ab6020840161104c565b600060208284031215611163578081fd5b81356001600160e01b031981168114611045578182fd5b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516111b2816017850160208801611270565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516111e3816028840160208801611270565b01602801949350505050565b602081526000825180602084015261120e816040850160208701611270565b601f01601f19169190910160400192915050565b60008219821115611235576112356112ee565b500190565b6000816000190483118215151615611254576112546112ee565b500290565b60008282101561126b5761126b6112ee565b500390565b60005b8381101561128b578181015183820152602001611273565b838111156108795750506000910152565b6000816112ab576112ab6112ee565b506000190190565b600181811c908216806112c757607f821691505b602082108114156112e857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212206ea9213314d32b29211365cc249df40ec935a7f82975df280ae6a9d2b01673de64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000010436f6f6b6965732050726f746f636f6c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024350000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Cookies Protocol
Arg [1] : _symbol (string): CP
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [3] : 436f6f6b6965732050726f746f636f6c00000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [5] : 4350000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
33163:1282:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27277:204;;;;;;:::i;:::-;;:::i;:::-;;;3011:14:1;;3004:22;2986:41;;2974:2;2959:18;27277:204:0;;;;;;;;6768:100;;;:::i;:::-;;;;;;;:::i;9119:201::-;;;;;;:::i;:::-;;:::i;7888:108::-;7976:12;;7888:108;;;3184:25:1;;;3172:2;3157:18;7888:108:0;3139:76:1;9900:295:0;;;;;;:::i;:::-;;:::i;29113:131::-;;;;;;:::i;:::-;29187:7;29214:12;;;:6;:12;;;;;:22;;;;29113:131;33275:51;;-1:-1:-1;;;33275:51:0;;29506:147;;;;;;:::i;:::-;;:::i;:::-;;33507:93;;;33590:2;9782:36:1;;9770:2;9755:18;33507:93:0;9737:87:1;30554:218:0;;;;;;:::i;:::-;;:::i;10604:238::-;;;;;;:::i;:::-;;:::i;33608:142::-;;;;;;:::i;:::-;;:::i;8059:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8160:18:0;8133:7;8160:18;;;;;;;;;;;;8059:127;27573:147;;;;;;:::i;:::-;;:::i;6987:104::-;;;:::i;33758:142::-;;;;;;:::i;:::-;;:::i;26678:49::-;;26723:4;26678:49;;11345:436;;;;;;:::i;:::-;;:::i;8392:193::-;;;;;;:::i;:::-;;:::i;33217:51::-;;-1:-1:-1;;;33217:51:0;;29898:149;;;;;;:::i;:::-;;:::i;8648:151::-;;;;;;:::i;:::-;;:::i;27277:204::-;27362:4;-1:-1:-1;;;;;;27386:47:0;;-1:-1:-1;;;27386:47:0;;:87;;-1:-1:-1;;;;;;;;;;24641:40:0;;;27437:36;27379:94;27277:204;-1:-1:-1;;27277:204:0:o;6768:100::-;6822:13;6855:5;6848:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6768:100;:::o;9119:201::-;9202:4;4484:10;9258:32;4484:10;9274:7;9283:6;9258:8;:32::i;:::-;-1:-1:-1;9308:4:0;;9119:201;-1:-1:-1;;;9119:201:0:o;9900:295::-;10031:4;4484:10;10089:38;10105:4;4484:10;10120:6;10089:15;:38::i;:::-;10138:27;10148:4;10154:2;10158:6;10138:9;:27::i;:::-;-1:-1:-1;10183:4:0;;9900:295;-1:-1:-1;;;;9900:295:0:o;29506:147::-;29187:7;29214:12;;;:6;:12;;;;;:22;;;27169:16;27180:4;27169:10;:16::i;:::-;29620:25:::1;29631:4;29637:7;29620:10;:25::i;:::-;29506:147:::0;;;:::o;30554:218::-;-1:-1:-1;;;;;30650:23:0;;4484:10;30650:23;30642:83;;;;-1:-1:-1;;;30642:83:0;;8884:2:1;30642:83:0;;;8866:21:1;8923:2;8903:18;;;8896:30;8962:34;8942:18;;;8935:62;-1:-1:-1;;;9013:18:1;;;9006:45;9068:19;;30642:83:0;;;;;;;;;30738:26;30750:4;30756:7;30738:11;:26::i;:::-;30554:218;;:::o;10604:238::-;10692:4;4484:10;10748:64;4484:10;10764:7;10801:10;10773:25;4484:10;10764:7;10773:9;:25::i;:::-;:38;;;;:::i;:::-;10748:8;:64::i;33608:142::-;33686:4;34225:32;-1:-1:-1;;;34246:10:0;34225:7;:32::i;:::-;34217:72;;;;-1:-1:-1;;;34217:72:0;;6146:2:1;34217:72:0;;;6128:21:1;6185:2;6165:18;;;6158:30;6224:29;6204:18;;;6197:57;6271:18;;34217:72:0;6118:177:1;34217:72:0;33703:17:::1;33709:2;33713:6;33703:5;:17::i;:::-;-1:-1:-1::0;33738:4:0::1;33608:142:::0;;;;:::o;27573:147::-;27659:4;27683:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;27683:29:0;;;;;;;;;;;;;;;27573:147::o;6987:104::-;7043:13;7076:7;7069:14;;;;;:::i;33758:142::-;33836:4;34358:32;-1:-1:-1;;;34379:10:0;34358:7;:32::i;:::-;34350:72;;;;-1:-1:-1;;;34350:72:0;;8122:2:1;34350:72:0;;;8104:21:1;8161:2;8141:18;;;8134:30;8200:29;8180:18;;;8173:57;8247:18;;34350:72:0;8094:177:1;34350:72:0;33853:17:::1;33859:2;33863:6;33853:5;:17::i;11345:436::-:0;11438:4;4484:10;11438:4;11521:25;4484:10;11538:7;11521:9;:25::i;:::-;11494:52;;11585:15;11565:16;:35;;11557:85;;;;-1:-1:-1;;;11557:85:0;;8478:2:1;11557:85:0;;;8460:21:1;8517:2;8497:18;;;8490:30;8556:34;8536:18;;;8529:62;-1:-1:-1;;;8607:18:1;;;8600:35;8652:19;;11557:85:0;8450:227:1;11557:85:0;11678:60;11687:5;11694:7;11722:15;11703:16;:34;11678:8;:60::i;8392:193::-;8471:4;4484:10;8527:28;4484:10;8544:2;8548:6;8527:9;:28::i;29898:149::-;29187:7;29214:12;;;:6;:12;;;;;:22;;;27169:16;27180:4;27169:10;:16::i;:::-;30013:26:::1;30025:4;30031:7;30013:11;:26::i;8648:151::-:0;-1:-1:-1;;;;;8764:18:0;;;8737:7;8764:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8648:151::o;14979:380::-;-1:-1:-1;;;;;15115:19:0;;15107:68;;;;-1:-1:-1;;;15107:68:0;;7717:2:1;15107:68:0;;;7699:21:1;7756:2;7736:18;;;7729:30;7795:34;7775:18;;;7768:62;-1:-1:-1;;;7846:18:1;;;7839:34;7890:19;;15107:68:0;7689:226:1;15107:68:0;-1:-1:-1;;;;;15194:21:0;;15186:68;;;;-1:-1:-1;;;15186:68:0;;4978:2:1;15186:68:0;;;4960:21:1;5017:2;4997:18;;;4990:30;5056:34;5036:18;;;5029:62;-1:-1:-1;;;5107:18:1;;;5100:32;5149:19;;15186:68:0;4950:224:1;15186:68:0;-1:-1:-1;;;;;15267:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15319:32;;3184:25:1;;;15319:32:0;;3157:18:1;15319:32:0;;;;;;;14979:380;;;:::o;15650:453::-;15785:24;15812:25;15822:5;15829:7;15812:9;:25::i;:::-;15785:52;;-1:-1:-1;;15852:16:0;:37;15848:248;;15934:6;15914:16;:26;;15906:68;;;;-1:-1:-1;;;15906:68:0;;5381:2:1;15906:68:0;;;5363:21:1;5420:2;5400:18;;;5393:30;5459:31;5439:18;;;5432:59;5508:18;;15906:68:0;5353:179:1;15906:68:0;16018:51;16027:5;16034:7;16062:6;16043:16;:25;16018:8;:51::i;:::-;15650:453;;;;:::o;12260:671::-;-1:-1:-1;;;;;12391:18:0;;12383:68;;;;-1:-1:-1;;;12383:68:0;;7311:2:1;12383:68:0;;;7293:21:1;7350:2;7330:18;;;7323:30;7389:34;7369:18;;;7362:62;-1:-1:-1;;;7440:18:1;;;7433:35;7485:19;;12383:68:0;7283:227:1;12383:68:0;-1:-1:-1;;;;;12470:16:0;;12462:64;;;;-1:-1:-1;;;12462:64:0;;4171:2:1;12462:64:0;;;4153:21:1;4210:2;4190:18;;;4183:30;4249:34;4229:18;;;4222:62;-1:-1:-1;;;4300:18:1;;;4293:33;4343:19;;12462:64:0;4143:225:1;12462:64:0;12539:38;12560:4;12566:2;12570:6;12539:20;:38::i;:::-;-1:-1:-1;;;;;12612:15:0;;12590:19;12612:15;;;;;;;;;;;12646:21;;;;12638:72;;;;-1:-1:-1;;;12638:72:0;;5739:2:1;12638:72:0;;;5721:21:1;5778:2;5758:18;;;5751:30;5817:34;5797:18;;;5790:62;-1:-1:-1;;;5868:18:1;;;5861:36;5914:19;;12638:72:0;5711:228:1;12638:72:0;-1:-1:-1;;;;;12746:15:0;;;:9;:15;;;;;;;;;;;12764:20;;;12746:38;;12806:13;;;;;;;;:23;;12778:6;;12746:9;12806:23;;12778:6;;12806:23;:::i;:::-;;;;;;;;12862:2;-1:-1:-1;;;;;12847:26:0;12856:4;-1:-1:-1;;;;;12847:26:0;;12866:6;12847:26;;;;3184:25:1;;3172:2;3157:18;;3139:76;12847:26:0;;;;;;;;12886:37;29506:147;28024:105;28091:30;28102:4;4484:10;28091;:30::i;:::-;28024:105;:::o;32055:238::-;32139:22;32147:4;32153:7;32139;:22::i;:::-;32134:152;;32178:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;32178:29:0;;;;;;;;;:36;;-1:-1:-1;;32178:36:0;32210:4;32178:36;;;32261:12;4484:10;;4404:98;32261:12;-1:-1:-1;;;;;32234:40:0;32252:7;-1:-1:-1;;;;;32234:40:0;32246:4;32234:40;;;;;;;;;;32055:238;;:::o;32425:239::-;32509:22;32517:4;32523:7;32509;:22::i;:::-;32505:152;;;32580:5;32548:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;32548:29:0;;;;;;;;;;:37;;-1:-1:-1;;32548:37:0;;;32605:40;4484:10;;32548:12;;32605:40;;32580:5;32605:40;32425:239;;:::o;13218:399::-;-1:-1:-1;;;;;13302:21:0;;13294:65;;;;-1:-1:-1;;;13294:65:0;;9300:2:1;13294:65:0;;;9282:21:1;9339:2;9319:18;;;9312:30;9378:33;9358:18;;;9351:61;9429:18;;13294:65:0;9272:181:1;13294:65:0;13372:49;13401:1;13405:7;13414:6;13372:20;:49::i;:::-;13450:6;13434:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13467:18:0;;:9;:18;;;;;;;;;;:28;;13489:6;;13467:9;:28;;13489:6;;13467:28;:::i;:::-;;;;-1:-1:-1;;13511:37:0;;3184:25:1;;;-1:-1:-1;;;;;13511:37:0;;;13528:1;;13511:37;;3172:2:1;3157:18;13511:37:0;;;;;;;30554:218;;:::o;13950:591::-;-1:-1:-1;;;;;14034:21:0;;14026:67;;;;-1:-1:-1;;;14026:67:0;;6909:2:1;14026:67:0;;;6891:21:1;6948:2;6928:18;;;6921:30;6987:34;6967:18;;;6960:62;-1:-1:-1;;;7038:18:1;;;7031:31;7079:19;;14026:67:0;6881:223:1;14026:67:0;14106:49;14127:7;14144:1;14148:6;14106:20;:49::i;:::-;-1:-1:-1;;;;;14193:18:0;;14168:22;14193:18;;;;;;;;;;;14230:24;;;;14222:71;;;;-1:-1:-1;;;14222:71:0;;4575:2:1;14222:71:0;;;4557:21:1;4614:2;4594:18;;;4587:30;4653:34;4633:18;;;4626:62;-1:-1:-1;;;4704:18:1;;;4697:32;4746:19;;14222:71:0;4547:224:1;14222:71:0;-1:-1:-1;;;;;14329:18:0;;:9;:18;;;;;;;;;;14350:23;;;14329:44;;14395:12;:22;;14367:6;;14329:9;14395:22;;14367:6;;14395:22;:::i;:::-;;;;-1:-1:-1;;14435:37:0;;3184:25:1;;;14461:1:0;;-1:-1:-1;;;;;14435:37:0;;;;;3172:2:1;3157:18;14435:37:0;;;;;;;29506:147;;;:::o;33908:268::-;-1:-1:-1;;;;;34051:19:0;;34065:4;34051:19;;34043:70;;;;-1:-1:-1;;;34043:70:0;;6502:2:1;34043:70:0;;;6484:21:1;6541:2;6521:18;;;6514:30;6580:34;6560:18;;;6553:62;-1:-1:-1;;;6631:18:1;;;6624:36;6677:19;;34043:70:0;6474:228:1;28419:505:0;28508:22;28516:4;28522:7;28508;:22::i;:::-;28503:414;;28696:41;28724:7;-1:-1:-1;;;;;28696:41:0;28734:2;28696:19;:41::i;:::-;28810:38;28838:4;28845:2;28810:19;:38::i;:::-;28601:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;28601:270:0;;;;;;;;;;-1:-1:-1;;;28547:358:0;;;;;;;:::i;22282:451::-;22357:13;22383:19;22415:10;22419:6;22415:1;:10;:::i;:::-;:14;;22428:1;22415:14;:::i;:::-;22405:25;;;;;;-1:-1:-1;;;22405:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22405:25:0;;22383:47;;-1:-1:-1;;;22441:6:0;22448:1;22441:9;;;;;;-1:-1:-1;;;22441:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;22441:15:0;;;;;;;;;-1:-1:-1;;;22467:6:0;22474:1;22467:9;;;;;;-1:-1:-1;;;22467:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;22467:15:0;;;;;;;;-1:-1:-1;22498:9:0;22510:10;22514:6;22510:1;:10;:::i;:::-;:14;;22523:1;22510:14;:::i;:::-;22498:26;;22493:135;22530:1;22526;:5;22493:135;;;-1:-1:-1;;;22578:5:0;22586:3;22578:11;22565:25;;;;;-1:-1:-1;;;22565:25:0;;;;;;;;;;;;22553:6;22560:1;22553:9;;;;;;-1:-1:-1;;;22553:9:0;;;;;;;;;;;;:37;-1:-1:-1;;;;;22553:37:0;;;;;;;;-1:-1:-1;22615:1:0;22605:11;;;;;22533:3;;;:::i;:::-;;;22493:135;;;-1:-1:-1;22646:10:0;;22638:55;;;;-1:-1:-1;;;22638:55:0;;3810:2:1;22638:55:0;;;3792:21:1;;;3829:18;;;3822:30;3888:34;3868:18;;;3861:62;3940:18;;22638:55:0;3782:182:1;22638:55:0;22718:6;22282:451;-1:-1:-1;;;22282:451:0:o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;1079:6;1087;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1280:190::-;1339:6;1392:2;1380:9;1371:7;1367:23;1363:32;1360:2;;;1413:6;1405;1398:22;1360:2;-1:-1:-1;1441:23:1;;1350:120;-1:-1:-1;1350:120:1:o;1475:264::-;1543:6;1551;1604:2;1592:9;1583:7;1579:23;1575:32;1572:2;;;1625:6;1617;1610:22;1572:2;1666:9;1653:23;1643:33;;1695:38;1729:2;1718:9;1714:18;1695:38;:::i;1744:306::-;1802:6;1855:2;1843:9;1834:7;1830:23;1826:32;1823:2;;;1876:6;1868;1861:22;1823:2;1907:23;;-1:-1:-1;;;;;;1959:32:1;;1949:43;;1939:2;;2011:6;2003;1996:22;2055:786;2466:25;2461:3;2454:38;2436:3;2521:6;2515:13;2537:62;2592:6;2587:2;2582:3;2578:12;2571:4;2563:6;2559:17;2537:62;:::i;:::-;-1:-1:-1;;;2658:2:1;2618:16;;;2650:11;;;2643:40;2708:13;;2730:63;2708:13;2779:2;2771:11;;2764:4;2752:17;;2730:63;:::i;:::-;2813:17;2832:2;2809:26;;2444:397;-1:-1:-1;;;;2444:397:1:o;3220:383::-;3369:2;3358:9;3351:21;3332:4;3401:6;3395:13;3444:6;3439:2;3428:9;3424:18;3417:34;3460:66;3519:6;3514:2;3503:9;3499:18;3494:2;3486:6;3482:15;3460:66;:::i;:::-;3587:2;3566:15;-1:-1:-1;;3562:29:1;3547:45;;;;3594:2;3543:54;;3341:262;-1:-1:-1;;3341:262:1:o;9829:128::-;9869:3;9900:1;9896:6;9893:1;9890:13;9887:2;;;9906:18;;:::i;:::-;-1:-1:-1;9942:9:1;;9877:80::o;9962:168::-;10002:7;10068:1;10064;10060:6;10056:14;10053:1;10050:21;10045:1;10038:9;10031:17;10027:45;10024:2;;;10075:18;;:::i;:::-;-1:-1:-1;10115:9:1;;10014:116::o;10135:125::-;10175:4;10203:1;10200;10197:8;10194:2;;;10208:18;;:::i;:::-;-1:-1:-1;10245:9:1;;10184:76::o;10265:258::-;10337:1;10347:113;10361:6;10358:1;10355:13;10347:113;;;10437:11;;;10431:18;10418:11;;;10411:39;10383:2;10376:10;10347:113;;;10478:6;10475:1;10472:13;10469:2;;;-1:-1:-1;;10513:1:1;10495:16;;10488:27;10318:205::o;10528:136::-;10567:3;10595:5;10585:2;;10604:18;;:::i;:::-;-1:-1:-1;;;10640:18:1;;10575:89::o;10669:380::-;10748:1;10744:12;;;;10791;;;10812:2;;10866:4;10858:6;10854:17;10844:27;;10812:2;10919;10911:6;10908:14;10888:18;10885:38;10882:2;;;10965:10;10960:3;10956:20;10953:1;10946:31;11000:4;10997:1;10990:15;11028:4;11025:1;11018:15;10882:2;;10724:325;;;:::o;11054:127::-;11115:10;11110:3;11106:20;11103:1;11096:31;11146:4;11143:1;11136:15;11170:4;11167:1;11160:15
Swarm Source
ipfs://6ea9213314d32b29211365cc249df40ec935a7f82975df280ae6a9d2b01673de
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.