Overview
POL Balance
POL Value
$0.00Token Holdings
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 2,646 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 65570003 | 2 days ago | IN | 0 POL | 0.00194259 | ||||
Transfer | 65506885 | 4 days ago | IN | 0 POL | 0.00164199 | ||||
Approve | 65436652 | 6 days ago | IN | 0 POL | 0.00140814 | ||||
Transfer | 65399400 | 7 days ago | IN | 0 POL | 0.0016435 | ||||
Transfer | 65275258 | 10 days ago | IN | 0 POL | 0.00326513 | ||||
Transfer | 65275073 | 10 days ago | IN | 0 POL | 0.00355678 | ||||
Transfer | 65271353 | 10 days ago | IN | 0 POL | 0.00203095 | ||||
Transfer | 65271174 | 10 days ago | IN | 0 POL | 0.0041576 | ||||
Transfer | 65271152 | 10 days ago | IN | 0 POL | 0.00172204 | ||||
Transfer | 65271071 | 10 days ago | IN | 0 POL | 0.00313126 | ||||
Transfer | 65269645 | 10 days ago | IN | 0 POL | 0.00108788 | ||||
Transfer | 65269459 | 10 days ago | IN | 0 POL | 0.00410407 | ||||
Transfer | 65165389 | 12 days ago | IN | 0 POL | 0.00111325 | ||||
Transfer | 65165221 | 12 days ago | IN | 0 POL | 0.00410497 | ||||
Transfer | 65157482 | 13 days ago | IN | 0 POL | 0.00358733 | ||||
Transfer | 65157174 | 13 days ago | IN | 0 POL | 0.0063584 | ||||
Transfer | 65080406 | 15 days ago | IN | 0 POL | 0.01213058 | ||||
Approve | 65066146 | 15 days ago | IN | 0 POL | 0.00154257 | ||||
Transfer | 65035532 | 16 days ago | IN | 0 POL | 0.01208929 | ||||
Transfer | 65035514 | 16 days ago | IN | 0 POL | 0.01466416 | ||||
Transfer | 65035500 | 16 days ago | IN | 0 POL | 0.01536698 | ||||
Transfer | 64997659 | 17 days ago | IN | 0 POL | 0.0127796 | ||||
Transfer | 64835574 | 21 days ago | IN | 0 POL | 0.00359716 | ||||
Transfer | 64814364 | 21 days ago | IN | 0 POL | 0.00108309 | ||||
Transfer | 64814265 | 21 days ago | IN | 0 POL | 0.00164163 |
Loading...
Loading
Contract Name:
EnvidaERC20Token
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; contract EnvidaERC20Token is ERC20Capped, Pausable, AccessControl { bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE"); bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); constructor( string memory name, string memory symbol, uint256 initialSupply, uint256 cap ) ERC20(name, symbol) ERC20Capped(cap) { _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); ERC20._mint(msg.sender, initialSupply); } function burnFrom(address from, uint256 amount) public { require(hasRole(BURNER_ROLE, msg.sender), "Caller is not a burner"); _burn(from, amount); } function pause() public { require( hasRole(PAUSER_ROLE, _msgSender()), "Caller must have pauser role to pause" ); _pause(); } function unpause() public { require( hasRole(PAUSER_ROLE, _msgSender()), "Caller must have pauser role to unpause" ); _unpause(); } /** * @dev See {ERC20-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { super._beforeTokenTransfer(from, to, amount); require(!paused(), "ERC20Pausable: token transfer while paused"); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of 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 defaut 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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, 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: * * - `to` 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); } /** * @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"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(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 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 to 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 { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC20.sol"; /** * @dev Extension of {ERC20} that adds a cap to the supply of tokens. */ abstract contract ERC20Capped is ERC20 { uint256 immutable private _cap; /** * @dev Sets the value of the `cap`. This value is immutable, it can only be * set once during construction. */ constructor (uint256 cap_) { require(cap_ > 0, "ERC20Capped: cap is 0"); _cap = cap_; } /** * @dev Returns the cap on the token's total supply. */ function cap() public view virtual returns (uint256) { return _cap; } /** * @dev See {ERC20-_mint}. */ function _mint(address account, uint256 amount) internal virtual override { require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded"); super._mint(account, amount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), currentAllowance - amount); _burn(account, amount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor () { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { function hasRole(bytes32 role, address account) external view returns (bool); function getRoleAdmin(bytes32 role) external view returns (bytes32); function grantRole(bytes32 role, address account) external; function revokeRole(bytes32 role, address account) external; function renounceRole(bytes32 role, address account) external; } /** * @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 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 {_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 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]{20}) is missing role (0x[0-9a-f]{32})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @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 override returns (bool) { return _roles[role].members[account]; } /** * @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]{20}) is missing role (0x[0-9a-f]{32})$/ */ function _checkRole(bytes32 role, address account) internal view { 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 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 granted `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}. * ==== */ 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 { emit RoleAdminChanged(role, getRoleAdmin(role), adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool); /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT 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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "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] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
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"},{"internalType":"uint256","name":"cap","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"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":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040523480156200001157600080fd5b506040516200361d3803806200361d8339818101604052810190620000379190620005b3565b8084848160039080519060200190620000529291906200047a565b5080600490805190602001906200006b9291906200047a565b50505060008111620000b4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000ab906200074e565b60405180910390fd5b8060808181525050506000600560006101000a81548160ff021916908315150217905550620000ed6000801b336200010e60201b60201c565b6200010433836200012460201b62000da01760201c565b50505050620009c3565b6200012082826200028960201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000197576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200018e9062000770565b60405180910390fd5b620001ab600083836200037b60201b60201c565b8060026000828254620001bf919062000849565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000216919062000849565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200027d9190620007b4565b60405180910390a35050565b6200029b8282620003eb60201b60201c565b620003775760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200031c6200045660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b620003938383836200045e60201b62000ef41760201c565b620003a36200046360201b60201c565b15620003e6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003dd9062000792565b60405180910390fd5b505050565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b505050565b6000600560009054906101000a900460ff16905090565b8280546200048890620008e6565b90600052602060002090601f016020900481019282620004ac5760008555620004f8565b82601f10620004c757805160ff1916838001178555620004f8565b82800160010185558215620004f8579182015b82811115620004f7578251825591602001919060010190620004da565b5b5090506200050791906200050b565b5090565b5b80821115620005265760008160009055506001016200050c565b5090565b6000620005416200053b8462000805565b620007d1565b9050828152602081018484840111156200055a57600080fd5b62000567848285620008b0565b509392505050565b600082601f8301126200058157600080fd5b8151620005938482602086016200052a565b91505092915050565b600081519050620005ad81620009a9565b92915050565b60008060008060808587031215620005ca57600080fd5b600085015167ffffffffffffffff811115620005e557600080fd5b620005f3878288016200056f565b945050602085015167ffffffffffffffff8111156200061157600080fd5b6200061f878288016200056f565b935050604062000632878288016200059c565b925050606062000645878288016200059c565b91505092959194509250565b60006200066060158362000838565b91507f45524332304361707065643a20636170206973203000000000000000000000006000830152602082019050919050565b6000620006a2601f8362000838565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6000620006e4602a8362000838565b91507f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008301527f696c6520706175736564000000000000000000000000000000000000000000006020830152604082019050919050565b6200074881620008a6565b82525050565b60006020820190508181036000830152620007698162000651565b9050919050565b600060208201905081810360008301526200078b8162000693565b9050919050565b60006020820190508181036000830152620007ad81620006d5565b9050919050565b6000602082019050620007cb60008301846200073d565b92915050565b6000604051905081810181811067ffffffffffffffff82111715620007fb57620007fa6200097a565b5b8060405250919050565b600067ffffffffffffffff8211156200082357620008226200097a565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b60006200085682620008a6565b91506200086383620008a6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200089b576200089a6200091c565b5b828201905092915050565b6000819050919050565b60005b83811015620008d0578082015181840152602081019050620008b3565b83811115620008e0576000848401525b50505050565b60006002820490506001821680620008ff57607f821691505b602082108114156200091657620009156200094b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620009b481620008a6565b8114620009c057600080fd5b50565b608051612c3e620009df60003960006107990152612c3e6000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c80633f4ba83a116100de57806395d89b4111610097578063a9059cbb11610071578063a9059cbb14610450578063d547741f14610480578063dd62ed3e1461049c578063e63ab1e9146104cc57610173565b806395d89b41146103e4578063a217fddf14610402578063a457c2d71461042057610173565b80633f4ba83a146103365780635c975abb1461034057806370a082311461035e57806379cc67901461038e5780638456cb59146103aa57806391d14854146103b457610173565b8063282c51f311610130578063282c51f3146102745780632f2ff15d14610292578063313ce567146102ae578063355274ea146102cc57806336568abe146102ea578063395093511461030657610173565b806301ffc9a71461017857806306fdde03146101a8578063095ea7b3146101c657806318160ddd146101f657806323b872dd14610214578063248a9ca314610244575b600080fd5b610192600480360381019061018d9190611e29565b6104ea565b60405161019f919061264a565b60405180910390f35b6101b0610564565b6040516101bd9190612680565b60405180910390f35b6101e060048036038101906101db9190611d88565b6105f6565b6040516101ed919061264a565b60405180910390f35b6101fe610614565b60405161020b91906128e2565b60405180910390f35b61022e60048036038101906102299190611d39565b61061e565b60405161023b919061264a565b60405180910390f35b61025e60048036038101906102599190611dc4565b61071f565b60405161026b9190612665565b60405180910390f35b61027c61073f565b6040516102899190612665565b60405180910390f35b6102ac60048036038101906102a79190611ded565b610763565b005b6102b661078c565b6040516102c391906128fd565b60405180910390f35b6102d4610795565b6040516102e191906128e2565b60405180910390f35b61030460048036038101906102ff9190611ded565b6107bd565b005b610320600480360381019061031b9190611d88565b610840565b60405161032d919061264a565b60405180910390f35b61033e6108ec565b005b610348610966565b604051610355919061264a565b60405180910390f35b61037860048036038101906103739190611cd4565b61097d565b60405161038591906128e2565b60405180910390f35b6103a860048036038101906103a39190611d88565b6109c5565b005b6103b2610a3c565b005b6103ce60048036038101906103c99190611ded565b610ab6565b6040516103db919061264a565b60405180910390f35b6103ec610b21565b6040516103f99190612680565b60405180910390f35b61040a610bb3565b6040516104179190612665565b60405180910390f35b61043a60048036038101906104359190611d88565b610bba565b604051610447919061264a565b60405180910390f35b61046a60048036038101906104659190611d88565b610cae565b604051610477919061264a565b60405180910390f35b61049a60048036038101906104959190611ded565b610ccc565b005b6104b660048036038101906104b19190611cfd565b610cf5565b6040516104c391906128e2565b60405180910390f35b6104d4610d7c565b6040516104e19190612665565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061055d575061055c82610ef9565b5b9050919050565b60606003805461057390612b0b565b80601f016020809104026020016040519081016040528092919081815260200182805461059f90612b0b565b80156105ec5780601f106105c1576101008083540402835291602001916105ec565b820191906000526020600020905b8154815290600101906020018083116105cf57829003601f168201915b5050505050905090565b600061060a610603610f63565b8484610f6b565b6001905092915050565b6000600254905090565b600061062b848484611136565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610676610f63565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ed906127c2565b60405180910390fd5b61071385610702610f63565b858461070e91906129ef565b610f6b565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b61076c8261071f565b61077d81610778610f63565b6113b5565b6107878383611452565b505050565b60006012905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6107c5610f63565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990612882565b60405180910390fd5b61083c8282611533565b5050565b60006108e261084d610f63565b84846001600061085b610f63565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108dd919061293f565b610f6b565b6001905092915050565b61091d7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610918610f63565b610ab6565b61095c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610953906126a2565b60405180910390fd5b610964611615565b565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109ef7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84833610ab6565b610a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a25906127a2565b60405180910390fd5b610a3882826116b7565b5050565b610a6d7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610a68610f63565b610ab6565b610aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa390612842565b60405180910390fd5b610ab461188b565b565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610b3090612b0b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5c90612b0b565b8015610ba95780601f10610b7e57610100808354040283529160200191610ba9565b820191906000526020600020905b815481529060010190602001808311610b8c57829003601f168201915b5050505050905090565b6000801b81565b60008060016000610bc9610f63565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7d90612862565b60405180910390fd5b610ca3610c91610f63565b858584610c9e91906129ef565b610f6b565b600191505092915050565b6000610cc2610cbb610f63565b8484611136565b6001905092915050565b610cd58261071f565b610ce681610ce1610f63565b6113b5565b610cf08383611533565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e07906128a2565b60405180910390fd5b610e1c6000838361192e565b8060026000828254610e2e919061293f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e83919061293f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ee891906128e2565b60405180910390a35050565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd290612822565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561104b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104290612742565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161112991906128e2565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119d90612802565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120d906126e2565b60405180910390fd5b61122183838361192e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129e90612762565b60405180910390fd5b81816112b391906129ef565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611343919061293f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113a791906128e2565b60405180910390a350505050565b6113bf8282610ab6565b61144e576113e48173ffffffffffffffffffffffffffffffffffffffff166014611986565b6113f28360001c6020611986565b6040516020016114039291906125f5565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114459190612680565b60405180910390fd5b5050565b61145c8282610ab6565b61152f5760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506114d4610f63565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61153d8282610ab6565b156116115760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506115b6610f63565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b61161d610966565b61165c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165390612702565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6116a0610f63565b6040516116ad919061262f565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e906127e2565b60405180910390fd5b6117338260008361192e565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b090612722565b60405180910390fd5b81816117c591906129ef565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461181991906129ef565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161187e91906128e2565b60405180910390a3505050565b611893610966565b156118d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ca90612782565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611917610f63565b604051611924919061262f565b60405180910390a1565b611939838383610ef4565b611941610966565b15611981576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611978906128c2565b60405180910390fd5b505050565b6060600060028360026119999190612995565b6119a3919061293f565b67ffffffffffffffff8111156119e2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a145781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611a72577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611afc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611b3c9190612995565b611b46919061293f565b90505b6001811115611c32577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611bae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110611beb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611c2b90612ae1565b9050611b49565b5060008414611c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6d906126c2565b60405180910390fd5b8091505092915050565b600081359050611c8f81612bac565b92915050565b600081359050611ca481612bc3565b92915050565b600081359050611cb981612bda565b92915050565b600081359050611cce81612bf1565b92915050565b600060208284031215611ce657600080fd5b6000611cf484828501611c80565b91505092915050565b60008060408385031215611d1057600080fd5b6000611d1e85828601611c80565b9250506020611d2f85828601611c80565b9150509250929050565b600080600060608486031215611d4e57600080fd5b6000611d5c86828701611c80565b9350506020611d6d86828701611c80565b9250506040611d7e86828701611cbf565b9150509250925092565b60008060408385031215611d9b57600080fd5b6000611da985828601611c80565b9250506020611dba85828601611cbf565b9150509250929050565b600060208284031215611dd657600080fd5b6000611de484828501611c95565b91505092915050565b60008060408385031215611e0057600080fd5b6000611e0e85828601611c95565b9250506020611e1f85828601611c80565b9150509250929050565b600060208284031215611e3b57600080fd5b6000611e4984828501611caa565b91505092915050565b611e5b81612a23565b82525050565b611e6a81612a35565b82525050565b611e7981612a41565b82525050565b6000611e8a82612918565b611e948185612923565b9350611ea4818560208601612aae565b611ead81612b9b565b840191505092915050565b6000611ec382612918565b611ecd8185612934565b9350611edd818560208601612aae565b80840191505092915050565b6000611ef6602783612923565b91507f43616c6c6572206d75737420686176652070617573657220726f6c6520746f2060008301527f756e7061757365000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611f5c602083612923565b91507f537472696e67733a20686578206c656e67746820696e73756666696369656e746000830152602082019050919050565b6000611f9c602383612923565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612002601483612923565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000612042602283612923565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006120a8602283612923565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061210e602683612923565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612174601083612923565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b60006121b4601683612923565b91507f43616c6c6572206973206e6f742061206275726e6572000000000000000000006000830152602082019050919050565b60006121f4602883612923565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b600061225a602183612923565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006122c0602583612923565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612326602483612923565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061238c601783612934565b91507f416363657373436f6e74726f6c3a206163636f756e74200000000000000000006000830152601782019050919050565b60006123cc602583612923565b91507f43616c6c6572206d75737420686176652070617573657220726f6c6520746f2060008301527f70617573650000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612432602583612923565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612498601183612934565b91507f206973206d697373696e6720726f6c65200000000000000000000000000000006000830152601182019050919050565b60006124d8602f83612923565b91507f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008301527f20726f6c657320666f722073656c6600000000000000000000000000000000006020830152604082019050919050565b600061253e601f83612923565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b600061257e602a83612923565b91507f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008301527f696c6520706175736564000000000000000000000000000000000000000000006020830152604082019050919050565b6125e081612a97565b82525050565b6125ef81612aa1565b82525050565b60006126008261237f565b915061260c8285611eb8565b91506126178261248b565b91506126238284611eb8565b91508190509392505050565b60006020820190506126446000830184611e52565b92915050565b600060208201905061265f6000830184611e61565b92915050565b600060208201905061267a6000830184611e70565b92915050565b6000602082019050818103600083015261269a8184611e7f565b905092915050565b600060208201905081810360008301526126bb81611ee9565b9050919050565b600060208201905081810360008301526126db81611f4f565b9050919050565b600060208201905081810360008301526126fb81611f8f565b9050919050565b6000602082019050818103600083015261271b81611ff5565b9050919050565b6000602082019050818103600083015261273b81612035565b9050919050565b6000602082019050818103600083015261275b8161209b565b9050919050565b6000602082019050818103600083015261277b81612101565b9050919050565b6000602082019050818103600083015261279b81612167565b9050919050565b600060208201905081810360008301526127bb816121a7565b9050919050565b600060208201905081810360008301526127db816121e7565b9050919050565b600060208201905081810360008301526127fb8161224d565b9050919050565b6000602082019050818103600083015261281b816122b3565b9050919050565b6000602082019050818103600083015261283b81612319565b9050919050565b6000602082019050818103600083015261285b816123bf565b9050919050565b6000602082019050818103600083015261287b81612425565b9050919050565b6000602082019050818103600083015261289b816124cb565b9050919050565b600060208201905081810360008301526128bb81612531565b9050919050565b600060208201905081810360008301526128db81612571565b9050919050565b60006020820190506128f760008301846125d7565b92915050565b600060208201905061291260008301846125e6565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600061294a82612a97565b915061295583612a97565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561298a57612989612b3d565b5b828201905092915050565b60006129a082612a97565b91506129ab83612a97565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156129e4576129e3612b3d565b5b828202905092915050565b60006129fa82612a97565b9150612a0583612a97565b925082821015612a1857612a17612b3d565b5b828203905092915050565b6000612a2e82612a77565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612acc578082015181840152602081019050612ab1565b83811115612adb576000848401525b50505050565b6000612aec82612a97565b91506000821415612b0057612aff612b3d565b5b600182039050919050565b60006002820490506001821680612b2357607f821691505b60208210811415612b3757612b36612b6c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b612bb581612a23565b8114612bc057600080fd5b50565b612bcc81612a41565b8114612bd757600080fd5b50565b612be381612a4b565b8114612bee57600080fd5b50565b612bfa81612a97565b8114612c0557600080fd5b5056fea2646970667358221220f6ad3d4bf00335580d12a967febc9cf7d019034ccf258a724312b736b076813d64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000295be96e64066972000000000000000000000000000000000000000000000000295be96e640669720000000000000000000000000000000000000000000000000000000000000000000006456e76694461000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044544415400000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101735760003560e01c80633f4ba83a116100de57806395d89b4111610097578063a9059cbb11610071578063a9059cbb14610450578063d547741f14610480578063dd62ed3e1461049c578063e63ab1e9146104cc57610173565b806395d89b41146103e4578063a217fddf14610402578063a457c2d71461042057610173565b80633f4ba83a146103365780635c975abb1461034057806370a082311461035e57806379cc67901461038e5780638456cb59146103aa57806391d14854146103b457610173565b8063282c51f311610130578063282c51f3146102745780632f2ff15d14610292578063313ce567146102ae578063355274ea146102cc57806336568abe146102ea578063395093511461030657610173565b806301ffc9a71461017857806306fdde03146101a8578063095ea7b3146101c657806318160ddd146101f657806323b872dd14610214578063248a9ca314610244575b600080fd5b610192600480360381019061018d9190611e29565b6104ea565b60405161019f919061264a565b60405180910390f35b6101b0610564565b6040516101bd9190612680565b60405180910390f35b6101e060048036038101906101db9190611d88565b6105f6565b6040516101ed919061264a565b60405180910390f35b6101fe610614565b60405161020b91906128e2565b60405180910390f35b61022e60048036038101906102299190611d39565b61061e565b60405161023b919061264a565b60405180910390f35b61025e60048036038101906102599190611dc4565b61071f565b60405161026b9190612665565b60405180910390f35b61027c61073f565b6040516102899190612665565b60405180910390f35b6102ac60048036038101906102a79190611ded565b610763565b005b6102b661078c565b6040516102c391906128fd565b60405180910390f35b6102d4610795565b6040516102e191906128e2565b60405180910390f35b61030460048036038101906102ff9190611ded565b6107bd565b005b610320600480360381019061031b9190611d88565b610840565b60405161032d919061264a565b60405180910390f35b61033e6108ec565b005b610348610966565b604051610355919061264a565b60405180910390f35b61037860048036038101906103739190611cd4565b61097d565b60405161038591906128e2565b60405180910390f35b6103a860048036038101906103a39190611d88565b6109c5565b005b6103b2610a3c565b005b6103ce60048036038101906103c99190611ded565b610ab6565b6040516103db919061264a565b60405180910390f35b6103ec610b21565b6040516103f99190612680565b60405180910390f35b61040a610bb3565b6040516104179190612665565b60405180910390f35b61043a60048036038101906104359190611d88565b610bba565b604051610447919061264a565b60405180910390f35b61046a60048036038101906104659190611d88565b610cae565b604051610477919061264a565b60405180910390f35b61049a60048036038101906104959190611ded565b610ccc565b005b6104b660048036038101906104b19190611cfd565b610cf5565b6040516104c391906128e2565b60405180910390f35b6104d4610d7c565b6040516104e19190612665565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061055d575061055c82610ef9565b5b9050919050565b60606003805461057390612b0b565b80601f016020809104026020016040519081016040528092919081815260200182805461059f90612b0b565b80156105ec5780601f106105c1576101008083540402835291602001916105ec565b820191906000526020600020905b8154815290600101906020018083116105cf57829003601f168201915b5050505050905090565b600061060a610603610f63565b8484610f6b565b6001905092915050565b6000600254905090565b600061062b848484611136565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610676610f63565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ed906127c2565b60405180910390fd5b61071385610702610f63565b858461070e91906129ef565b610f6b565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b61076c8261071f565b61077d81610778610f63565b6113b5565b6107878383611452565b505050565b60006012905090565b60007f000000000000000000000000000000000000000000295be96e64066972000000905090565b6107c5610f63565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990612882565b60405180910390fd5b61083c8282611533565b5050565b60006108e261084d610f63565b84846001600061085b610f63565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108dd919061293f565b610f6b565b6001905092915050565b61091d7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610918610f63565b610ab6565b61095c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610953906126a2565b60405180910390fd5b610964611615565b565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109ef7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84833610ab6565b610a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a25906127a2565b60405180910390fd5b610a3882826116b7565b5050565b610a6d7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610a68610f63565b610ab6565b610aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa390612842565b60405180910390fd5b610ab461188b565b565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610b3090612b0b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5c90612b0b565b8015610ba95780601f10610b7e57610100808354040283529160200191610ba9565b820191906000526020600020905b815481529060010190602001808311610b8c57829003601f168201915b5050505050905090565b6000801b81565b60008060016000610bc9610f63565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7d90612862565b60405180910390fd5b610ca3610c91610f63565b858584610c9e91906129ef565b610f6b565b600191505092915050565b6000610cc2610cbb610f63565b8484611136565b6001905092915050565b610cd58261071f565b610ce681610ce1610f63565b6113b5565b610cf08383611533565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e07906128a2565b60405180910390fd5b610e1c6000838361192e565b8060026000828254610e2e919061293f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e83919061293f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ee891906128e2565b60405180910390a35050565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd290612822565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561104b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104290612742565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161112991906128e2565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119d90612802565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120d906126e2565b60405180910390fd5b61122183838361192e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129e90612762565b60405180910390fd5b81816112b391906129ef565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611343919061293f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113a791906128e2565b60405180910390a350505050565b6113bf8282610ab6565b61144e576113e48173ffffffffffffffffffffffffffffffffffffffff166014611986565b6113f28360001c6020611986565b6040516020016114039291906125f5565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114459190612680565b60405180910390fd5b5050565b61145c8282610ab6565b61152f5760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506114d4610f63565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61153d8282610ab6565b156116115760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506115b6610f63565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b61161d610966565b61165c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165390612702565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6116a0610f63565b6040516116ad919061262f565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e906127e2565b60405180910390fd5b6117338260008361192e565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b090612722565b60405180910390fd5b81816117c591906129ef565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461181991906129ef565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161187e91906128e2565b60405180910390a3505050565b611893610966565b156118d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ca90612782565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611917610f63565b604051611924919061262f565b60405180910390a1565b611939838383610ef4565b611941610966565b15611981576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611978906128c2565b60405180910390fd5b505050565b6060600060028360026119999190612995565b6119a3919061293f565b67ffffffffffffffff8111156119e2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a145781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611a72577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611afc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611b3c9190612995565b611b46919061293f565b90505b6001811115611c32577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611bae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110611beb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611c2b90612ae1565b9050611b49565b5060008414611c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6d906126c2565b60405180910390fd5b8091505092915050565b600081359050611c8f81612bac565b92915050565b600081359050611ca481612bc3565b92915050565b600081359050611cb981612bda565b92915050565b600081359050611cce81612bf1565b92915050565b600060208284031215611ce657600080fd5b6000611cf484828501611c80565b91505092915050565b60008060408385031215611d1057600080fd5b6000611d1e85828601611c80565b9250506020611d2f85828601611c80565b9150509250929050565b600080600060608486031215611d4e57600080fd5b6000611d5c86828701611c80565b9350506020611d6d86828701611c80565b9250506040611d7e86828701611cbf565b9150509250925092565b60008060408385031215611d9b57600080fd5b6000611da985828601611c80565b9250506020611dba85828601611cbf565b9150509250929050565b600060208284031215611dd657600080fd5b6000611de484828501611c95565b91505092915050565b60008060408385031215611e0057600080fd5b6000611e0e85828601611c95565b9250506020611e1f85828601611c80565b9150509250929050565b600060208284031215611e3b57600080fd5b6000611e4984828501611caa565b91505092915050565b611e5b81612a23565b82525050565b611e6a81612a35565b82525050565b611e7981612a41565b82525050565b6000611e8a82612918565b611e948185612923565b9350611ea4818560208601612aae565b611ead81612b9b565b840191505092915050565b6000611ec382612918565b611ecd8185612934565b9350611edd818560208601612aae565b80840191505092915050565b6000611ef6602783612923565b91507f43616c6c6572206d75737420686176652070617573657220726f6c6520746f2060008301527f756e7061757365000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611f5c602083612923565b91507f537472696e67733a20686578206c656e67746820696e73756666696369656e746000830152602082019050919050565b6000611f9c602383612923565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612002601483612923565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000612042602283612923565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006120a8602283612923565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061210e602683612923565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612174601083612923565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b60006121b4601683612923565b91507f43616c6c6572206973206e6f742061206275726e6572000000000000000000006000830152602082019050919050565b60006121f4602883612923565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b600061225a602183612923565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006122c0602583612923565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612326602483612923565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061238c601783612934565b91507f416363657373436f6e74726f6c3a206163636f756e74200000000000000000006000830152601782019050919050565b60006123cc602583612923565b91507f43616c6c6572206d75737420686176652070617573657220726f6c6520746f2060008301527f70617573650000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612432602583612923565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612498601183612934565b91507f206973206d697373696e6720726f6c65200000000000000000000000000000006000830152601182019050919050565b60006124d8602f83612923565b91507f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008301527f20726f6c657320666f722073656c6600000000000000000000000000000000006020830152604082019050919050565b600061253e601f83612923565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b600061257e602a83612923565b91507f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008301527f696c6520706175736564000000000000000000000000000000000000000000006020830152604082019050919050565b6125e081612a97565b82525050565b6125ef81612aa1565b82525050565b60006126008261237f565b915061260c8285611eb8565b91506126178261248b565b91506126238284611eb8565b91508190509392505050565b60006020820190506126446000830184611e52565b92915050565b600060208201905061265f6000830184611e61565b92915050565b600060208201905061267a6000830184611e70565b92915050565b6000602082019050818103600083015261269a8184611e7f565b905092915050565b600060208201905081810360008301526126bb81611ee9565b9050919050565b600060208201905081810360008301526126db81611f4f565b9050919050565b600060208201905081810360008301526126fb81611f8f565b9050919050565b6000602082019050818103600083015261271b81611ff5565b9050919050565b6000602082019050818103600083015261273b81612035565b9050919050565b6000602082019050818103600083015261275b8161209b565b9050919050565b6000602082019050818103600083015261277b81612101565b9050919050565b6000602082019050818103600083015261279b81612167565b9050919050565b600060208201905081810360008301526127bb816121a7565b9050919050565b600060208201905081810360008301526127db816121e7565b9050919050565b600060208201905081810360008301526127fb8161224d565b9050919050565b6000602082019050818103600083015261281b816122b3565b9050919050565b6000602082019050818103600083015261283b81612319565b9050919050565b6000602082019050818103600083015261285b816123bf565b9050919050565b6000602082019050818103600083015261287b81612425565b9050919050565b6000602082019050818103600083015261289b816124cb565b9050919050565b600060208201905081810360008301526128bb81612531565b9050919050565b600060208201905081810360008301526128db81612571565b9050919050565b60006020820190506128f760008301846125d7565b92915050565b600060208201905061291260008301846125e6565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600061294a82612a97565b915061295583612a97565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561298a57612989612b3d565b5b828201905092915050565b60006129a082612a97565b91506129ab83612a97565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156129e4576129e3612b3d565b5b828202905092915050565b60006129fa82612a97565b9150612a0583612a97565b925082821015612a1857612a17612b3d565b5b828203905092915050565b6000612a2e82612a77565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612acc578082015181840152602081019050612ab1565b83811115612adb576000848401525b50505050565b6000612aec82612a97565b91506000821415612b0057612aff612b3d565b5b600182039050919050565b60006002820490506001821680612b2357607f821691505b60208210811415612b3757612b36612b6c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b612bb581612a23565b8114612bc057600080fd5b50565b612bcc81612a41565b8114612bd757600080fd5b50565b612be381612a4b565b8114612bee57600080fd5b50565b612bfa81612a97565b8114612c0557600080fd5b5056fea2646970667358221220f6ad3d4bf00335580d12a967febc9cf7d019034ccf258a724312b736b076813d64736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000295be96e64066972000000000000000000000000000000000000000000000000295be96e640669720000000000000000000000000000000000000000000000000000000000000000000006456e76694461000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044544415400000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): EnviDa
Arg [1] : symbol (string): EDAT
Arg [2] : initialSupply (uint256): 50000000000000000000000000
Arg [3] : cap (uint256): 50000000000000000000000000
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000000000000000000000295be96e64066972000000
Arg [3] : 000000000000000000000000000000000000000000295be96e64066972000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 456e766944610000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4544415400000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
POL | 100.00% | $1 | 636.4629 | $636.46 |
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.