Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 33 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 24495909 | 15 days ago | IN | 0 ETH | 0.00009579 | ||||
| Approve | 24495767 | 15 days ago | IN | 0 ETH | 0.00009589 | ||||
| Approve | 24474050 | 18 days ago | IN | 0 ETH | 0.00000088 | ||||
| Approve | 24394826 | 29 days ago | IN | 0 ETH | 0.00002345 | ||||
| Approve | 24295093 | 43 days ago | IN | 0 ETH | 0.00009527 | ||||
| Approve | 24281438 | 45 days ago | IN | 0 ETH | 0.0000021 | ||||
| Approve | 24281428 | 45 days ago | IN | 0 ETH | 0.000096 | ||||
| Approve | 24281399 | 45 days ago | IN | 0 ETH | 0.00000211 | ||||
| Approve | 24281038 | 45 days ago | IN | 0 ETH | 0.00000236 | ||||
| Approve | 24274603 | 46 days ago | IN | 0 ETH | 0.00000252 | ||||
| Approve | 24237353 | 51 days ago | IN | 0 ETH | 0.00000225 | ||||
| Approve | 24231376 | 52 days ago | IN | 0 ETH | 0.00009539 | ||||
| Approve | 24187133 | 58 days ago | IN | 0 ETH | 0.00009639 | ||||
| Approve | 24186576 | 58 days ago | IN | 0 ETH | 0.000096 | ||||
| Approve | 24173820 | 60 days ago | IN | 0 ETH | 0.00000118 | ||||
| Approve | 24079704 | 73 days ago | IN | 0 ETH | 0.00000083 | ||||
| Approve | 24079685 | 73 days ago | IN | 0 ETH | 0.00000103 | ||||
| Approve | 24079677 | 73 days ago | IN | 0 ETH | 0.00000089 | ||||
| Approve | 24079658 | 73 days ago | IN | 0 ETH | 0.00000154 | ||||
| Approve | 24067479 | 75 days ago | IN | 0 ETH | 0.00000122 | ||||
| Approve | 24067472 | 75 days ago | IN | 0 ETH | 0.00000127 | ||||
| Approve | 24067388 | 75 days ago | IN | 0 ETH | 0.00000119 | ||||
| Approve | 24067328 | 75 days ago | IN | 0 ETH | 0.00006057 | ||||
| Approve | 24066974 | 75 days ago | IN | 0 ETH | 0.0000009 | ||||
| Approve | 24066858 | 75 days ago | IN | 0 ETH | 0.00009532 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
ERC20Minter
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2025-10-28
*/
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/IERC20.sol)
pragma solidity >=0.4.16;
/**
* @dev Interface of the ERC-20 standard as defined in the ERC.
*/
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 value of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the value of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the
* allowance mechanism. `value` 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 value) external returns (bool);
}
// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity >=0.6.2;
/**
* @dev Interface for the optional metadata functions from the ERC-20 standard.
*/
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/Context.sol
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
pragma solidity ^0.8.20;
/**
* @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;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}
// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol
// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/draft-IERC6093.sol)
pragma solidity >=0.8.4;
/**
* @dev Standard ERC-20 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
*/
interface IERC20Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC20InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC20InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
* @param spender Address that may be allowed to operate on tokens without being their owner.
* @param allowance Amount of tokens a `spender` is allowed to operate with.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC20InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `spender` to be approved. Used in approvals.
* @param spender Address that may be allowed to operate on tokens without being their owner.
*/
error ERC20InvalidSpender(address spender);
}
/**
* @dev Standard ERC-721 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
*/
interface IERC721Errors {
/**
* @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.
* Used in balance queries.
* @param owner Address of the current owner of a token.
*/
error ERC721InvalidOwner(address owner);
/**
* @dev Indicates a `tokenId` whose `owner` is the zero address.
* @param tokenId Identifier number of a token.
*/
error ERC721NonexistentToken(uint256 tokenId);
/**
* @dev Indicates an error related to the ownership over a particular token. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param tokenId Identifier number of a token.
* @param owner Address of the current owner of a token.
*/
error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC721InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC721InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param tokenId Identifier number of a token.
*/
error ERC721InsufficientApproval(address operator, uint256 tokenId);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC721InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC721InvalidOperator(address operator);
}
/**
* @dev Standard ERC-1155 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
*/
interface IERC1155Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
* @param tokenId Identifier number of a token.
*/
error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC1155InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC1155InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param owner Address of the current owner of a token.
*/
error ERC1155MissingApprovalForAll(address operator, address owner);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC1155InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC1155InvalidOperator(address operator);
/**
* @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
* Used in batch transfers.
* @param idsLength Length of the array of token identifiers
* @param valuesLength Length of the array of token amounts
*/
error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}
// File: @openzeppelin/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.20;
/**
* @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}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC-20
* applications.
*/
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
mapping(address account => uint256) private _balances;
mapping(address account => mapping(address spender => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* Both 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 returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual returns (uint8) {
return 18;
}
/// @inheritdoc IERC20
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
/// @inheritdoc IERC20
function balanceOf(address account) public view virtual 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 `value`.
*/
function transfer(address to, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_transfer(owner, to, value);
return true;
}
/// @inheritdoc IERC20
function allowance(address owner, address spender) public view virtual returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `value` 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 value) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, value);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Skips emitting an {Approval} event indicating an allowance update. This is not
* required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
*
* 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 `value`.
* - the caller must have allowance for ``from``'s tokens of at least
* `value`.
*/
function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, value);
_transfer(from, to, value);
return true;
}
/**
* @dev Moves a `value` amount of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _transfer(address from, address to, uint256 value) internal {
if (from == address(0)) {
revert ERC20InvalidSender(address(0));
}
if (to == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(from, to, value);
}
/**
* @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
* (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
* this function.
*
* Emits a {Transfer} event.
*/
function _update(address from, address to, uint256 value) internal virtual {
if (from == address(0)) {
// Overflow check required: The rest of the code assumes that totalSupply never overflows
_totalSupply += value;
} else {
uint256 fromBalance = _balances[from];
if (fromBalance < value) {
revert ERC20InsufficientBalance(from, fromBalance, value);
}
unchecked {
// Overflow not possible: value <= fromBalance <= totalSupply.
_balances[from] = fromBalance - value;
}
}
if (to == address(0)) {
unchecked {
// Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
_totalSupply -= value;
}
} else {
unchecked {
// Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
_balances[to] += value;
}
}
emit Transfer(from, to, value);
}
/**
* @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
* Relies on the `_update` mechanism
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _mint(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(address(0), account, value);
}
/**
* @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
* Relies on the `_update` mechanism.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead
*/
function _burn(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidSender(address(0));
}
_update(account, address(0), value);
}
/**
* @dev Sets `value` 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.
*
* Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
*/
function _approve(address owner, address spender, uint256 value) internal {
_approve(owner, spender, value, true);
}
/**
* @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
*
* By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
* `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
* `Approval` event during `transferFrom` operations.
*
* Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
* true using the following override:
*
* ```solidity
* function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
* super._approve(owner, spender, value, true);
* }
* ```
*
* Requirements are the same as {_approve}.
*/
function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
if (owner == address(0)) {
revert ERC20InvalidApprover(address(0));
}
if (spender == address(0)) {
revert ERC20InvalidSpender(address(0));
}
_allowances[owner][spender] = value;
if (emitEvent) {
emit Approval(owner, spender, value);
}
}
/**
* @dev Updates `owner`'s allowance for `spender` based on spent `value`.
*
* Does not update the allowance value in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Does not emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance < type(uint256).max) {
if (currentAllowance < value) {
revert ERC20InsufficientAllowance(spender, currentAllowance, value);
}
unchecked {
_approve(owner, spender, currentAllowance - value, false);
}
}
}
}
// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol)
pragma solidity ^0.8.20;
/**
* @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 a `value` amount of tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 value) public virtual {
_burn(_msgSender(), value);
}
/**
* @dev Destroys a `value` amount of 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
* `value`.
*/
function burnFrom(address account, uint256 value) public virtual {
_spendAllowance(account, _msgSender(), value);
_burn(account, value);
}
}
// File: @openzeppelin/contracts/access/IAccessControl.sol
// OpenZeppelin Contracts (last updated v5.4.0) (access/IAccessControl.sol)
pragma solidity >=0.8.4;
/**
* @dev External interface of AccessControl declared to support ERC-165 detection.
*/
interface IAccessControl {
/**
* @dev The `account` is missing a role.
*/
error AccessControlUnauthorizedAccount(address account, bytes32 neededRole);
/**
* @dev The caller of a function is not the expected one.
*
* NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.
*/
error AccessControlBadConfirmation();
/**
* @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 to signal this.
*/
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. This account bears the admin role (for the granted role).
* Expected in cases where the role was granted using the internal {AccessControl-_grantRole}.
*/
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 `callerConfirmation`.
*/
function renounceRole(bytes32 role, address callerConfirmation) external;
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts (last updated v5.4.0) (utils/introspection/IERC165.sol)
pragma solidity >=0.4.16;
/**
* @dev Interface of the ERC-165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[ERC].
*
* 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[ERC section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
// OpenZeppelin Contracts (last updated v5.4.0) (utils/introspection/ERC165.sol)
pragma solidity ^0.8.20;
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC-165 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);
* }
* ```
*/
abstract contract ERC165 is IERC165 {
/// @inheritdoc IERC165
function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// File: @openzeppelin/contracts/access/AccessControl.sol
// OpenZeppelin Contracts (last updated v5.4.0) (access/AccessControl.sol)
pragma solidity ^0.8.20;
/**
* @dev Contract module that allows children to implement role-based access
* control mechanisms. This is a lightweight version that doesn't allow enumerating role
* members except through off-chain means by accessing the contract event logs. Some
* applications may benefit from on-chain enumerability, for those cases see
* {AccessControlEnumerable}.
*
* Roles are referred to by their `bytes32` identifier. These should be exposed
* in the external API and be unique. The best way to achieve this is by
* using `public constant` hash digests:
*
* ```solidity
* bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
* ```
*
* Roles can be used to represent a set of permissions. To restrict access to a
* function call, use {hasRole}:
*
* ```solidity
* function foo() public {
* require(hasRole(MY_ROLE, msg.sender));
* ...
* }
* ```
*
* Roles can be granted and revoked dynamically via the {grantRole} and
* {revokeRole} functions. Each role has an associated admin role, and only
* accounts that have a role's admin role can call {grantRole} and {revokeRole}.
*
* By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
* that only accounts with this role will be able to grant or revoke other
* roles. More complex role relationships can be created by using
* {_setRoleAdmin}.
*
* WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
* grant and revoke this role. Extra precautions should be taken to secure
* accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules}
* to enforce additional security measures for this role.
*/
abstract contract AccessControl is Context, IAccessControl, ERC165 {
struct RoleData {
mapping(address account => bool) hasRole;
bytes32 adminRole;
}
mapping(bytes32 role => RoleData) private _roles;
bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
/**
* @dev Modifier that checks that an account has a specific role. Reverts
* with an {AccessControlUnauthorizedAccount} error including the required role.
*/
modifier onlyRole(bytes32 role) {
_checkRole(role);
_;
}
/// @inheritdoc IERC165
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 returns (bool) {
return _roles[role].hasRole[account];
}
/**
* @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()`
* is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier.
*/
function _checkRole(bytes32 role) internal view virtual {
_checkRole(role, _msgSender());
}
/**
* @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account`
* is missing `role`.
*/
function _checkRole(bytes32 role, address account) internal view virtual {
if (!hasRole(role, account)) {
revert AccessControlUnauthorizedAccount(account, role);
}
}
/**
* @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 returns (bytes32) {
return _roles[role].adminRole;
}
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*
* May emit a {RoleGranted} event.
*/
function grantRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) {
_grantRole(role, account);
}
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*
* May emit a {RoleRevoked} event.
*/
function revokeRole(bytes32 role, address account) public virtual 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 `callerConfirmation`.
*
* May emit a {RoleRevoked} event.
*/
function renounceRole(bytes32 role, address callerConfirmation) public virtual {
if (callerConfirmation != _msgSender()) {
revert AccessControlBadConfirmation();
}
_revokeRole(role, callerConfirmation);
}
/**
* @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 Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted.
*
* Internal function without access restriction.
*
* May emit a {RoleGranted} event.
*/
function _grantRole(bytes32 role, address account) internal virtual returns (bool) {
if (!hasRole(role, account)) {
_roles[role].hasRole[account] = true;
emit RoleGranted(role, account, _msgSender());
return true;
} else {
return false;
}
}
/**
* @dev Attempts to revoke `role` from `account` and returns a boolean indicating if `role` was revoked.
*
* Internal function without access restriction.
*
* May emit a {RoleRevoked} event.
*/
function _revokeRole(bytes32 role, address account) internal virtual returns (bool) {
if (hasRole(role, account)) {
_roles[role].hasRole[account] = false;
emit RoleRevoked(role, account, _msgSender());
return true;
} else {
return false;
}
}
}
// File: contracts/ERC20Minter.sol
pragma solidity =0.8.28;
contract ERC20Minter is AccessControl, ERC20Burnable {
bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
uint8 private immutable _decimals;
constructor(
string memory name_,
string memory symbol_,
uint8 decimals_,
uint256 initialSupply_,
address initialOwner_,
address initialRecipient_
)
ERC20(name_, symbol_)
{
_decimals = decimals_;
// Determine owner and funds recipient separately to avoid accidental coupling.
address owner = initialOwner_ == address(0) ? msg.sender : initialOwner_;
address recipient = initialRecipient_ == address(0) ? owner : initialRecipient_;
_grantRole(DEFAULT_ADMIN_ROLE, owner);
_grantRole(MINTER_ROLE, owner);
if (initialSupply_ > 0) {
_mint(recipient, initialSupply_);
}
}
function decimals() public view override returns (uint8) {
return _decimals;
}
function mint(address to, uint256 amount) public virtual {
require(hasRole(MINTER_ROLE, msg.sender), "ERC20Minter: must have minter role to mint");
_mint(to, amount);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"initialSupply_","type":"uint256"},{"internalType":"address","name":"initialOwner_","type":"address"},{"internalType":"address","name":"initialRecipient_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","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":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60a060405234801561000f575f5ffd5b5060405161244d38038061244d83398181016040528101906100319190610759565b858581600490816100429190610a21565b5080600590816100529190610a21565b5050508360ff1660808160ff16815250505f5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461009d578261009f565b335b90505f5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146100db57826100dd565b815b90506100f15f5f1b8361014960201b60201c565b506101227f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a68361014960201b60201c565b505f85111561013c5761013b818661023e60201b60201c565b5b5050505050505050610bd5565b5f61015a83836102c360201b60201c565b6102345760015f5f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506101d161032660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019050610238565b5f90505b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036102ae575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016102a59190610aff565b60405180910390fd5b6102bf5f838361032d60201b60201c565b5050565b5f5f5f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361037d578060035f8282546103719190610b45565b9250508190555061044d565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610407578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016103fe93929190610b87565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610494578060035f82825403925050819055506104df565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161053c9190610bbc565b60405180910390a3505050565b5f604051905090565b5f5ffd5b5f5ffd5b5f5ffd5b5f5ffd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6105a882610562565b810181811067ffffffffffffffff821117156105c7576105c6610572565b5b80604052505050565b5f6105d9610549565b90506105e5828261059f565b919050565b5f67ffffffffffffffff82111561060457610603610572565b5b61060d82610562565b9050602081019050919050565b8281835e5f83830152505050565b5f61063a610635846105ea565b6105d0565b9050828152602081018484840111156106565761065561055e565b5b61066184828561061a565b509392505050565b5f82601f83011261067d5761067c61055a565b5b815161068d848260208601610628565b91505092915050565b5f60ff82169050919050565b6106ab81610696565b81146106b5575f5ffd5b50565b5f815190506106c6816106a2565b92915050565b5f819050919050565b6106de816106cc565b81146106e8575f5ffd5b50565b5f815190506106f9816106d5565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610728826106ff565b9050919050565b6107388161071e565b8114610742575f5ffd5b50565b5f815190506107538161072f565b92915050565b5f5f5f5f5f5f60c0878903121561077357610772610552565b5b5f87015167ffffffffffffffff8111156107905761078f610556565b5b61079c89828a01610669565b965050602087015167ffffffffffffffff8111156107bd576107bc610556565b5b6107c989828a01610669565b95505060406107da89828a016106b8565b94505060606107eb89828a016106eb565b93505060806107fc89828a01610745565b92505060a061080d89828a01610745565b9150509295509295509295565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061086857607f821691505b60208210810361087b5761087a610824565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026108dd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826108a2565b6108e786836108a2565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61092261091d610918846106cc565b6108ff565b6106cc565b9050919050565b5f819050919050565b61093b83610908565b61094f61094782610929565b8484546108ae565b825550505050565b5f5f905090565b610966610957565b610971818484610932565b505050565b5b81811015610994576109895f8261095e565b600181019050610977565b5050565b601f8211156109d9576109aa81610881565b6109b384610893565b810160208510156109c2578190505b6109d66109ce85610893565b830182610976565b50505b505050565b5f82821c905092915050565b5f6109f95f19846008026109de565b1980831691505092915050565b5f610a1183836109ea565b9150826002028217905092915050565b610a2a8261081a565b67ffffffffffffffff811115610a4357610a42610572565b5b610a4d8254610851565b610a58828285610998565b5f60209050601f831160018114610a89575f8415610a77578287015190505b610a818582610a06565b865550610ae8565b601f198416610a9786610881565b5f5b82811015610abe57848901518255600182019150602085019450602081019050610a99565b86831015610adb5784890151610ad7601f8916826109ea565b8355505b6001600288020188555050505b505050505050565b610af98161071e565b82525050565b5f602082019050610b125f830184610af0565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610b4f826106cc565b9150610b5a836106cc565b9250828201905080821115610b7257610b71610b18565b5b92915050565b610b81816106cc565b82525050565b5f606082019050610b9a5f830186610af0565b610ba76020830185610b78565b610bb46040830184610b78565b949350505050565b5f602082019050610bcf5f830184610b78565b92915050565b608051611860610bed5f395f6105ad01526118605ff3fe608060405234801561000f575f5ffd5b506004361061012a575f3560e01c806342966c68116100ab578063a217fddf1161006f578063a217fddf14610352578063a9059cbb14610370578063d5391393146103a0578063d547741f146103be578063dd62ed3e146103da5761012a565b806342966c681461029c57806370a08231146102b857806379cc6790146102e857806391d148541461030457806395d89b41146103345761012a565b8063248a9ca3116100f2578063248a9ca3146101fa5780632f2ff15d1461022a578063313ce5671461024657806336568abe1461026457806340c10f19146102805761012a565b806301ffc9a71461012e57806306fdde031461015e578063095ea7b31461017c57806318160ddd146101ac57806323b872dd146101ca575b5f5ffd5b6101486004803603810190610143919061129e565b61040a565b60405161015591906112e3565b60405180910390f35b610166610483565b604051610173919061136c565b60405180910390f35b61019660048036038101906101919190611419565b610513565b6040516101a391906112e3565b60405180910390f35b6101b4610535565b6040516101c19190611466565b60405180910390f35b6101e460048036038101906101df919061147f565b61053e565b6040516101f191906112e3565b60405180910390f35b610214600480360381019061020f9190611502565b61056c565b604051610221919061153c565b60405180910390f35b610244600480360381019061023f9190611555565b610588565b005b61024e6105aa565b60405161025b91906115ae565b60405180910390f35b61027e60048036038101906102799190611555565b6105d1565b005b61029a60048036038101906102959190611419565b61064c565b005b6102b660048036038101906102b191906115c7565b6106c3565b005b6102d260048036038101906102cd91906115f2565b6106d7565b6040516102df9190611466565b60405180910390f35b61030260048036038101906102fd9190611419565b61071d565b005b61031e60048036038101906103199190611555565b61073d565b60405161032b91906112e3565b60405180910390f35b61033c6107a0565b604051610349919061136c565b60405180910390f35b61035a610830565b604051610367919061153c565b60405180910390f35b61038a60048036038101906103859190611419565b610836565b60405161039791906112e3565b60405180910390f35b6103a8610858565b6040516103b5919061153c565b60405180910390f35b6103d860048036038101906103d39190611555565b61087c565b005b6103f460048036038101906103ef919061161d565b61089e565b6040516104019190611466565b60405180910390f35b5f7f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061047c575061047b82610920565b5b9050919050565b60606004805461049290611688565b80601f01602080910402602001604051908101604052809291908181526020018280546104be90611688565b80156105095780601f106104e057610100808354040283529160200191610509565b820191905f5260205f20905b8154815290600101906020018083116104ec57829003601f168201915b5050505050905090565b5f5f61051d610989565b905061052a818585610990565b600191505092915050565b5f600354905090565b5f5f610548610989565b90506105558582856109a2565b610560858585610a35565b60019150509392505050565b5f5f5f8381526020019081526020015f20600101549050919050565b6105918261056c565b61059a81610b25565b6105a48383610b39565b50505050565b5f7f0000000000000000000000000000000000000000000000000000000000000000905090565b6105d9610989565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461063d576040517f6697b23200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6106478282610c22565b505050565b6106767f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a63361073d565b6106b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ac90611728565b60405180910390fd5b6106bf8282610d0b565b5050565b6106d46106ce610989565b82610d8a565b50565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61072f82610729610989565b836109a2565b6107398282610d8a565b5050565b5f5f5f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6060600580546107af90611688565b80601f01602080910402602001604051908101604052809291908181526020018280546107db90611688565b80156108265780601f106107fd57610100808354040283529160200191610826565b820191905f5260205f20905b81548152906001019060200180831161080957829003601f168201915b5050505050905090565b5f5f1b81565b5f5f610840610989565b905061084d818585610a35565b600191505092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6108858261056c565b61088e81610b25565b6108988383610c22565b50505050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f33905090565b61099d8383836001610e09565b505050565b5f6109ad848461089e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811015610a2f5781811015610a20578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610a1793929190611755565b60405180910390fd5b610a2e84848484035f610e09565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aa5575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610a9c919061178a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b15575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610b0c919061178a565b60405180910390fd5b610b20838383610fd8565b505050565b610b3681610b31610989565b6111f4565b50565b5f610b44838361073d565b610c185760015f5f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550610bb5610989565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019050610c1c565b5f90505b92915050565b5f610c2d838361073d565b15610d01575f5f5f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550610c9e610989565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a460019050610d05565b5f90505b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d7b575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610d72919061178a565b60405180910390fd5b610d865f8383610fd8565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dfa575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610df1919061178a565b60405180910390fd5b610e05825f83610fd8565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e79575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610e70919061178a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ee9575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610ee0919061178a565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610fd2578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610fc99190611466565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611028578060035f82825461101c91906117d0565b925050819055506110f8565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156110b2578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016110a993929190611755565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361113f578060035f828254039250508190555061118a565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111e79190611466565b60405180910390a3505050565b6111fe828261073d565b6112415780826040517fe2517d3f000000000000000000000000000000000000000000000000000000008152600401611238929190611803565b60405180910390fd5b5050565b5f5ffd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61127d81611249565b8114611287575f5ffd5b50565b5f8135905061129881611274565b92915050565b5f602082840312156112b3576112b2611245565b5b5f6112c08482850161128a565b91505092915050565b5f8115159050919050565b6112dd816112c9565b82525050565b5f6020820190506112f65f8301846112d4565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61133e826112fc565b6113488185611306565b9350611358818560208601611316565b61136181611324565b840191505092915050565b5f6020820190508181035f8301526113848184611334565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6113b58261138c565b9050919050565b6113c5816113ab565b81146113cf575f5ffd5b50565b5f813590506113e0816113bc565b92915050565b5f819050919050565b6113f8816113e6565b8114611402575f5ffd5b50565b5f81359050611413816113ef565b92915050565b5f5f6040838503121561142f5761142e611245565b5b5f61143c858286016113d2565b925050602061144d85828601611405565b9150509250929050565b611460816113e6565b82525050565b5f6020820190506114795f830184611457565b92915050565b5f5f5f6060848603121561149657611495611245565b5b5f6114a3868287016113d2565b93505060206114b4868287016113d2565b92505060406114c586828701611405565b9150509250925092565b5f819050919050565b6114e1816114cf565b81146114eb575f5ffd5b50565b5f813590506114fc816114d8565b92915050565b5f6020828403121561151757611516611245565b5b5f611524848285016114ee565b91505092915050565b611536816114cf565b82525050565b5f60208201905061154f5f83018461152d565b92915050565b5f5f6040838503121561156b5761156a611245565b5b5f611578858286016114ee565b9250506020611589858286016113d2565b9150509250929050565b5f60ff82169050919050565b6115a881611593565b82525050565b5f6020820190506115c15f83018461159f565b92915050565b5f602082840312156115dc576115db611245565b5b5f6115e984828501611405565b91505092915050565b5f6020828403121561160757611606611245565b5b5f611614848285016113d2565b91505092915050565b5f5f6040838503121561163357611632611245565b5b5f611640858286016113d2565b9250506020611651858286016113d2565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061169f57607f821691505b6020821081036116b2576116b161165b565b5b50919050565b7f45524332304d696e7465723a206d7573742068617665206d696e74657220726f5f8201527f6c6520746f206d696e7400000000000000000000000000000000000000000000602082015250565b5f611712602a83611306565b915061171d826116b8565b604082019050919050565b5f6020820190508181035f83015261173f81611706565b9050919050565b61174f816113ab565b82525050565b5f6060820190506117685f830186611746565b6117756020830185611457565b6117826040830184611457565b949350505050565b5f60208201905061179d5f830184611746565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6117da826113e6565b91506117e5836113e6565b92508282019050808211156117fd576117fc6117a3565b5b92915050565b5f6040820190506118165f830185611746565b611823602083018461152d565b939250505056fea26469706673582212201c78e894e5bab692dc49c74b2806a1a468fac8421310ec223ba0336391230ad264736f6c634300081c003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000005af3107a40000000000000000000000000005b2fec20ddd34a8f471a39e598b813e3c89bba92000000000000000000000000499de645d3ae3617705ab9233f3f297352b42be8000000000000000000000000000000000000000000000000000000000000000d53796e76696e6520546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035356540000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f5ffd5b506004361061012a575f3560e01c806342966c68116100ab578063a217fddf1161006f578063a217fddf14610352578063a9059cbb14610370578063d5391393146103a0578063d547741f146103be578063dd62ed3e146103da5761012a565b806342966c681461029c57806370a08231146102b857806379cc6790146102e857806391d148541461030457806395d89b41146103345761012a565b8063248a9ca3116100f2578063248a9ca3146101fa5780632f2ff15d1461022a578063313ce5671461024657806336568abe1461026457806340c10f19146102805761012a565b806301ffc9a71461012e57806306fdde031461015e578063095ea7b31461017c57806318160ddd146101ac57806323b872dd146101ca575b5f5ffd5b6101486004803603810190610143919061129e565b61040a565b60405161015591906112e3565b60405180910390f35b610166610483565b604051610173919061136c565b60405180910390f35b61019660048036038101906101919190611419565b610513565b6040516101a391906112e3565b60405180910390f35b6101b4610535565b6040516101c19190611466565b60405180910390f35b6101e460048036038101906101df919061147f565b61053e565b6040516101f191906112e3565b60405180910390f35b610214600480360381019061020f9190611502565b61056c565b604051610221919061153c565b60405180910390f35b610244600480360381019061023f9190611555565b610588565b005b61024e6105aa565b60405161025b91906115ae565b60405180910390f35b61027e60048036038101906102799190611555565b6105d1565b005b61029a60048036038101906102959190611419565b61064c565b005b6102b660048036038101906102b191906115c7565b6106c3565b005b6102d260048036038101906102cd91906115f2565b6106d7565b6040516102df9190611466565b60405180910390f35b61030260048036038101906102fd9190611419565b61071d565b005b61031e60048036038101906103199190611555565b61073d565b60405161032b91906112e3565b60405180910390f35b61033c6107a0565b604051610349919061136c565b60405180910390f35b61035a610830565b604051610367919061153c565b60405180910390f35b61038a60048036038101906103859190611419565b610836565b60405161039791906112e3565b60405180910390f35b6103a8610858565b6040516103b5919061153c565b60405180910390f35b6103d860048036038101906103d39190611555565b61087c565b005b6103f460048036038101906103ef919061161d565b61089e565b6040516104019190611466565b60405180910390f35b5f7f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061047c575061047b82610920565b5b9050919050565b60606004805461049290611688565b80601f01602080910402602001604051908101604052809291908181526020018280546104be90611688565b80156105095780601f106104e057610100808354040283529160200191610509565b820191905f5260205f20905b8154815290600101906020018083116104ec57829003601f168201915b5050505050905090565b5f5f61051d610989565b905061052a818585610990565b600191505092915050565b5f600354905090565b5f5f610548610989565b90506105558582856109a2565b610560858585610a35565b60019150509392505050565b5f5f5f8381526020019081526020015f20600101549050919050565b6105918261056c565b61059a81610b25565b6105a48383610b39565b50505050565b5f7f0000000000000000000000000000000000000000000000000000000000000005905090565b6105d9610989565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461063d576040517f6697b23200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6106478282610c22565b505050565b6106767f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a63361073d565b6106b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ac90611728565b60405180910390fd5b6106bf8282610d0b565b5050565b6106d46106ce610989565b82610d8a565b50565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61072f82610729610989565b836109a2565b6107398282610d8a565b5050565b5f5f5f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6060600580546107af90611688565b80601f01602080910402602001604051908101604052809291908181526020018280546107db90611688565b80156108265780601f106107fd57610100808354040283529160200191610826565b820191905f5260205f20905b81548152906001019060200180831161080957829003601f168201915b5050505050905090565b5f5f1b81565b5f5f610840610989565b905061084d818585610a35565b600191505092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6108858261056c565b61088e81610b25565b6108988383610c22565b50505050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f33905090565b61099d8383836001610e09565b505050565b5f6109ad848461089e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811015610a2f5781811015610a20578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610a1793929190611755565b60405180910390fd5b610a2e84848484035f610e09565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aa5575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610a9c919061178a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b15575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610b0c919061178a565b60405180910390fd5b610b20838383610fd8565b505050565b610b3681610b31610989565b6111f4565b50565b5f610b44838361073d565b610c185760015f5f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550610bb5610989565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019050610c1c565b5f90505b92915050565b5f610c2d838361073d565b15610d01575f5f5f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550610c9e610989565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a460019050610d05565b5f90505b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d7b575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610d72919061178a565b60405180910390fd5b610d865f8383610fd8565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dfa575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610df1919061178a565b60405180910390fd5b610e05825f83610fd8565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e79575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610e70919061178a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ee9575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610ee0919061178a565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610fd2578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610fc99190611466565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611028578060035f82825461101c91906117d0565b925050819055506110f8565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156110b2578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016110a993929190611755565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361113f578060035f828254039250508190555061118a565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111e79190611466565b60405180910390a3505050565b6111fe828261073d565b6112415780826040517fe2517d3f000000000000000000000000000000000000000000000000000000008152600401611238929190611803565b60405180910390fd5b5050565b5f5ffd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61127d81611249565b8114611287575f5ffd5b50565b5f8135905061129881611274565b92915050565b5f602082840312156112b3576112b2611245565b5b5f6112c08482850161128a565b91505092915050565b5f8115159050919050565b6112dd816112c9565b82525050565b5f6020820190506112f65f8301846112d4565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61133e826112fc565b6113488185611306565b9350611358818560208601611316565b61136181611324565b840191505092915050565b5f6020820190508181035f8301526113848184611334565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6113b58261138c565b9050919050565b6113c5816113ab565b81146113cf575f5ffd5b50565b5f813590506113e0816113bc565b92915050565b5f819050919050565b6113f8816113e6565b8114611402575f5ffd5b50565b5f81359050611413816113ef565b92915050565b5f5f6040838503121561142f5761142e611245565b5b5f61143c858286016113d2565b925050602061144d85828601611405565b9150509250929050565b611460816113e6565b82525050565b5f6020820190506114795f830184611457565b92915050565b5f5f5f6060848603121561149657611495611245565b5b5f6114a3868287016113d2565b93505060206114b4868287016113d2565b92505060406114c586828701611405565b9150509250925092565b5f819050919050565b6114e1816114cf565b81146114eb575f5ffd5b50565b5f813590506114fc816114d8565b92915050565b5f6020828403121561151757611516611245565b5b5f611524848285016114ee565b91505092915050565b611536816114cf565b82525050565b5f60208201905061154f5f83018461152d565b92915050565b5f5f6040838503121561156b5761156a611245565b5b5f611578858286016114ee565b9250506020611589858286016113d2565b9150509250929050565b5f60ff82169050919050565b6115a881611593565b82525050565b5f6020820190506115c15f83018461159f565b92915050565b5f602082840312156115dc576115db611245565b5b5f6115e984828501611405565b91505092915050565b5f6020828403121561160757611606611245565b5b5f611614848285016113d2565b91505092915050565b5f5f6040838503121561163357611632611245565b5b5f611640858286016113d2565b9250506020611651858286016113d2565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061169f57607f821691505b6020821081036116b2576116b161165b565b5b50919050565b7f45524332304d696e7465723a206d7573742068617665206d696e74657220726f5f8201527f6c6520746f206d696e7400000000000000000000000000000000000000000000602082015250565b5f611712602a83611306565b915061171d826116b8565b604082019050919050565b5f6020820190508181035f83015261173f81611706565b9050919050565b61174f816113ab565b82525050565b5f6060820190506117685f830186611746565b6117756020830185611457565b6117826040830184611457565b949350505050565b5f60208201905061179d5f830184611746565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6117da826113e6565b91506117e5836113e6565b92508282019050808211156117fd576117fc6117a3565b5b92915050565b5f6040820190506118165f830185611746565b611823602083018461152d565b939250505056fea26469706673582212201c78e894e5bab692dc49c74b2806a1a468fac8421310ec223ba0336391230ad264736f6c634300081c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000005af3107a40000000000000000000000000005b2fec20ddd34a8f471a39e598b813e3c89bba92000000000000000000000000499de645d3ae3617705ab9233f3f297352b42be8000000000000000000000000000000000000000000000000000000000000000d53796e76696e6520546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035356540000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Synvine Token
Arg [1] : symbol_ (string): SVT
Arg [2] : decimals_ (uint8): 5
Arg [3] : initialSupply_ (uint256): 100000000000000
Arg [4] : initialOwner_ (address): 0x5B2feC20Ddd34A8F471A39E598B813E3C89bba92
Arg [5] : initialRecipient_ (address): 0x499De645d3AE3617705aB9233f3F297352B42Be8
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [3] : 00000000000000000000000000000000000000000000000000005af3107a4000
Arg [4] : 0000000000000000000000005b2fec20ddd34a8f471a39e598b813e3c89bba92
Arg [5] : 000000000000000000000000499de645d3ae3617705ab9233f3f297352b42be8
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [7] : 53796e76696e6520546f6b656e00000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [9] : 5356540000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
35950:1209:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31246:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12986:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15196:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14059:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15996:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32526:122;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32958:138;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36865:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34095:251;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36965:191;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22875:89;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14194:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23293:161;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31542:138;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13196:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30889:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14517:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36010:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33389:140;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14735:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31246:204;31331:4;31370:32;31355:47;;;:11;:47;;;;:87;;;;31406:36;31430:11;31406:23;:36::i;:::-;31355:87;31348:94;;31246:204;;;:::o;12986:91::-;13031:13;13064:5;13057:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12986:91;:::o;15196:190::-;15269:4;15286:13;15302:12;:10;:12::i;:::-;15286:28;;15325:31;15334:5;15341:7;15350:5;15325:8;:31::i;:::-;15374:4;15367:11;;;15196:190;;;;:::o;14059:99::-;14111:7;14138:12;;14131:19;;14059:99;:::o;15996:249::-;16083:4;16100:15;16118:12;:10;:12::i;:::-;16100:30;;16141:37;16157:4;16163:7;16172:5;16141:15;:37::i;:::-;16189:26;16199:4;16205:2;16209:5;16189:9;:26::i;:::-;16233:4;16226:11;;;15996:249;;;;;:::o;32526:122::-;32591:7;32618:6;:12;32625:4;32618:12;;;;;;;;;;;:22;;;32611:29;;32526:122;;;:::o;32958:138::-;33032:18;33045:4;33032:12;:18::i;:::-;31173:16;31184:4;31173:10;:16::i;:::-;33063:25:::1;33074:4;33080:7;33063:10;:25::i;:::-;;32958:138:::0;;;:::o;36865:92::-;36915:5;36940:9;36933:16;;36865:92;:::o;34095:251::-;34211:12;:10;:12::i;:::-;34189:34;;:18;:34;;;34185:104;;34247:30;;;;;;;;;;;;;;34185:104;34301:37;34313:4;34319:18;34301:11;:37::i;:::-;;34095:251;;:::o;36965:191::-;37041:32;36048:24;37062:10;37041:7;:32::i;:::-;37033:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;37131:17;37137:2;37141:6;37131:5;:17::i;:::-;36965:191;;:::o;22875:89::-;22930:26;22936:12;:10;:12::i;:::-;22950:5;22930;:26::i;:::-;22875:89;:::o;14194:118::-;14259:7;14286:9;:18;14296:7;14286:18;;;;;;;;;;;;;;;;14279:25;;14194:118;;;:::o;23293:161::-;23369:45;23385:7;23394:12;:10;:12::i;:::-;23408:5;23369:15;:45::i;:::-;23425:21;23431:7;23440:5;23425;:21::i;:::-;23293:161;;:::o;31542:138::-;31619:4;31643:6;:12;31650:4;31643:12;;;;;;;;;;;:20;;:29;31664:7;31643:29;;;;;;;;;;;;;;;;;;;;;;;;;31636:36;;31542:138;;;;:::o;13196:95::-;13243:13;13276:7;13269:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13196:95;:::o;30889:49::-;30934:4;30889:49;;;:::o;14517:182::-;14586:4;14603:13;14619:12;:10;:12::i;:::-;14603:28;;14642:27;14652:5;14659:2;14663:5;14642:9;:27::i;:::-;14687:4;14680:11;;;14517:182;;;;:::o;36010:62::-;36048:24;36010:62;:::o;33389:140::-;33464:18;33477:4;33464:12;:18::i;:::-;31173:16;31184:4;31173:10;:16::i;:::-;33495:26:::1;33507:4;33513:7;33495:11;:26::i;:::-;;33389:140:::0;;;:::o;14735:142::-;14815:7;14842:11;:18;14854:5;14842:18;;;;;;;;;;;;;;;:27;14861:7;14842:27;;;;;;;;;;;;;;;;14835:34;;14735:142;;;;:::o;28617:148::-;28693:4;28732:25;28717:40;;;:11;:40;;;;28710:47;;28617:148;;;:::o;4305:98::-;4358:7;4385:10;4378:17;;4305:98;:::o;20055:130::-;20140:37;20149:5;20156:7;20165:5;20172:4;20140:8;:37::i;:::-;20055:130;;;:::o;21787:486::-;21887:24;21914:25;21924:5;21931:7;21914:9;:25::i;:::-;21887:52;;21973:17;21954:16;:36;21950:316;;;22030:5;22011:16;:24;22007:132;;;22090:7;22099:16;22117:5;22063:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;22007:132;22182:57;22191:5;22198:7;22226:5;22207:16;:24;22233:5;22182:8;:57::i;:::-;21950:316;21876:397;21787:486;;;:::o;16630:308::-;16730:1;16714:18;;:4;:18;;;16710:88;;16783:1;16756:30;;;;;;;;;;;:::i;:::-;;;;;;;;16710:88;16826:1;16812:16;;:2;:16;;;16808:88;;16881:1;16852:32;;;;;;;;;;;:::i;:::-;;;;;;;;16808:88;16906:24;16914:4;16920:2;16924:5;16906:7;:24::i;:::-;16630:308;;;:::o;31895:105::-;31962:30;31973:4;31979:12;:10;:12::i;:::-;31962:10;:30::i;:::-;31895:105;:::o;34972:324::-;35049:4;35071:22;35079:4;35085:7;35071;:22::i;:::-;35066:223;;35142:4;35110:6;:12;35117:4;35110:12;;;;;;;;;;;:20;;:29;35131:7;35110:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;35193:12;:10;:12::i;:::-;35166:40;;35184:7;35166:40;;35178:4;35166:40;;;;;;;;;;35228:4;35221:11;;;;35066:223;35272:5;35265:12;;34972:324;;;;;:::o;35542:325::-;35620:4;35641:22;35649:4;35655:7;35641;:22::i;:::-;35637:223;;;35712:5;35680:6;:12;35687:4;35680:12;;;;;;;;;;;:20;;:29;35701:7;35680:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;35764:12;:10;:12::i;:::-;35737:40;;35755:7;35737:40;;35749:4;35737:40;;;;;;;;;;35799:4;35792:11;;;;35637:223;35843:5;35836:12;;35542:325;;;;;:::o;18750:213::-;18840:1;18821:21;;:7;:21;;;18817:93;;18895:1;18866:32;;;;;;;;;;;:::i;:::-;;;;;;;;18817:93;18920:35;18936:1;18940:7;18949:5;18920:7;:35::i;:::-;18750:213;;:::o;19291:211::-;19381:1;19362:21;;:7;:21;;;19358:91;;19434:1;19407:30;;;;;;;;;;;:::i;:::-;;;;;;;;19358:91;19459:35;19467:7;19484:1;19488:5;19459:7;:35::i;:::-;19291:211;;:::o;21052:443::-;21182:1;21165:19;;:5;:19;;;21161:91;;21237:1;21208:32;;;;;;;;;;;:::i;:::-;;;;;;;;21161:91;21285:1;21266:21;;:7;:21;;;21262:92;;21339:1;21311:31;;;;;;;;;;;:::i;:::-;;;;;;;;21262:92;21394:5;21364:11;:18;21376:5;21364:18;;;;;;;;;;;;;;;:27;21383:7;21364:27;;;;;;;;;;;;;;;:35;;;;21414:9;21410:78;;;21461:7;21445:31;;21454:5;21445:31;;;21470:5;21445:31;;;;;;:::i;:::-;;;;;;;;21410:78;21052:443;;;;:::o;17262:1135::-;17368:1;17352:18;;:4;:18;;;17348:552;;17506:5;17490:12;;:21;;;;;;;:::i;:::-;;;;;;;;17348:552;;;17544:19;17566:9;:15;17576:4;17566:15;;;;;;;;;;;;;;;;17544:37;;17614:5;17600:11;:19;17596:117;;;17672:4;17678:11;17691:5;17647:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;17596:117;17868:5;17854:11;:19;17836:9;:15;17846:4;17836:15;;;;;;;;;;;;;;;:37;;;;17529:371;17348:552;17930:1;17916:16;;:2;:16;;;17912:435;;18098:5;18082:12;;:21;;;;;;;;;;;17912:435;;;18315:5;18298:9;:13;18308:2;18298:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;17912:435;18379:2;18364:25;;18373:4;18364:25;;;18383:5;18364:25;;;;;;:::i;:::-;;;;;;;;17262:1135;;;:::o;32136:201::-;32225:22;32233:4;32239:7;32225;:22::i;:::-;32220:110;;32304:7;32313:4;32271:47;;;;;;;;;;;;:::i;:::-;;;;;;;;32220:110;32136:201;;:::o;88:117:1:-;197:1;194;187:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:139::-;1887:6;1882:3;1877;1871:23;1928:1;1919:6;1914:3;1910:16;1903:27;1798:139;;;:::o;1943:102::-;1984:6;2035:2;2031:7;2026:2;2019:5;2015:14;2011:28;2001:38;;1943:102;;;:::o;2051:377::-;2139:3;2167:39;2200:5;2167:39;:::i;:::-;2222:71;2286:6;2281:3;2222:71;:::i;:::-;2215:78;;2302:65;2360:6;2355:3;2348:4;2341:5;2337:16;2302:65;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2143:285;2051:377;;;;:::o;2434:313::-;2547:4;2585:2;2574:9;2570:18;2562:26;;2634:9;2628:4;2624:20;2620:1;2609:9;2605:17;2598:47;2662:78;2735:4;2726:6;2662:78;:::i;:::-;2654:86;;2434:313;;;;:::o;2753:126::-;2790:7;2830:42;2823:5;2819:54;2808:65;;2753:126;;;:::o;2885:96::-;2922:7;2951:24;2969:5;2951:24;:::i;:::-;2940:35;;2885:96;;;:::o;2987:122::-;3060:24;3078:5;3060:24;:::i;:::-;3053:5;3050:35;3040:63;;3099:1;3096;3089:12;3040:63;2987:122;:::o;3115:139::-;3161:5;3199:6;3186:20;3177:29;;3215:33;3242:5;3215:33;:::i;:::-;3115:139;;;;:::o;3260:77::-;3297:7;3326:5;3315:16;;3260:77;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:474::-;3684:6;3692;3741:2;3729:9;3720:7;3716:23;3712:32;3709:119;;;3747:79;;:::i;:::-;3709:119;3867:1;3892:53;3937:7;3928:6;3917:9;3913:22;3892:53;:::i;:::-;3882:63;;3838:117;3994:2;4020:53;4065:7;4056:6;4045:9;4041:22;4020:53;:::i;:::-;4010:63;;3965:118;3616:474;;;;;:::o;4096:118::-;4183:24;4201:5;4183:24;:::i;:::-;4178:3;4171:37;4096:118;;:::o;4220:222::-;4313:4;4351:2;4340:9;4336:18;4328:26;;4364:71;4432:1;4421:9;4417:17;4408:6;4364:71;:::i;:::-;4220:222;;;;:::o;4448:619::-;4525:6;4533;4541;4590:2;4578:9;4569:7;4565:23;4561:32;4558:119;;;4596:79;;:::i;:::-;4558:119;4716:1;4741:53;4786:7;4777:6;4766:9;4762:22;4741:53;:::i;:::-;4731:63;;4687:117;4843:2;4869:53;4914:7;4905:6;4894:9;4890:22;4869:53;:::i;:::-;4859:63;;4814:118;4971:2;4997:53;5042:7;5033:6;5022:9;5018:22;4997:53;:::i;:::-;4987:63;;4942:118;4448:619;;;;;:::o;5073:77::-;5110:7;5139:5;5128:16;;5073:77;;;:::o;5156:122::-;5229:24;5247:5;5229:24;:::i;:::-;5222:5;5219:35;5209:63;;5268:1;5265;5258:12;5209:63;5156:122;:::o;5284:139::-;5330:5;5368:6;5355:20;5346:29;;5384:33;5411:5;5384:33;:::i;:::-;5284:139;;;;:::o;5429:329::-;5488:6;5537:2;5525:9;5516:7;5512:23;5508:32;5505:119;;;5543:79;;:::i;:::-;5505:119;5663:1;5688:53;5733:7;5724:6;5713:9;5709:22;5688:53;:::i;:::-;5678:63;;5634:117;5429:329;;;;:::o;5764:118::-;5851:24;5869:5;5851:24;:::i;:::-;5846:3;5839:37;5764:118;;:::o;5888:222::-;5981:4;6019:2;6008:9;6004:18;5996:26;;6032:71;6100:1;6089:9;6085:17;6076:6;6032:71;:::i;:::-;5888:222;;;;:::o;6116:474::-;6184:6;6192;6241:2;6229:9;6220:7;6216:23;6212:32;6209:119;;;6247:79;;:::i;:::-;6209:119;6367:1;6392:53;6437:7;6428:6;6417:9;6413:22;6392:53;:::i;:::-;6382:63;;6338:117;6494:2;6520:53;6565:7;6556:6;6545:9;6541:22;6520:53;:::i;:::-;6510:63;;6465:118;6116:474;;;;;:::o;6596:86::-;6631:7;6671:4;6664:5;6660:16;6649:27;;6596:86;;;:::o;6688:112::-;6771:22;6787:5;6771:22;:::i;:::-;6766:3;6759:35;6688:112;;:::o;6806:214::-;6895:4;6933:2;6922:9;6918:18;6910:26;;6946:67;7010:1;6999:9;6995:17;6986:6;6946:67;:::i;:::-;6806:214;;;;:::o;7026:329::-;7085:6;7134:2;7122:9;7113:7;7109:23;7105:32;7102:119;;;7140:79;;:::i;:::-;7102:119;7260:1;7285:53;7330:7;7321:6;7310:9;7306:22;7285:53;:::i;:::-;7275:63;;7231:117;7026:329;;;;:::o;7361:::-;7420:6;7469:2;7457:9;7448:7;7444:23;7440:32;7437:119;;;7475:79;;:::i;:::-;7437:119;7595:1;7620:53;7665:7;7656:6;7645:9;7641:22;7620:53;:::i;:::-;7610:63;;7566:117;7361:329;;;;:::o;7696:474::-;7764:6;7772;7821:2;7809:9;7800:7;7796:23;7792:32;7789:119;;;7827:79;;:::i;:::-;7789:119;7947:1;7972:53;8017:7;8008:6;7997:9;7993:22;7972:53;:::i;:::-;7962:63;;7918:117;8074:2;8100:53;8145:7;8136:6;8125:9;8121:22;8100:53;:::i;:::-;8090:63;;8045:118;7696:474;;;;;:::o;8176:180::-;8224:77;8221:1;8214:88;8321:4;8318:1;8311:15;8345:4;8342:1;8335:15;8362:320;8406:6;8443:1;8437:4;8433:12;8423:22;;8490:1;8484:4;8480:12;8511:18;8501:81;;8567:4;8559:6;8555:17;8545:27;;8501:81;8629:2;8621:6;8618:14;8598:18;8595:38;8592:84;;8648:18;;:::i;:::-;8592:84;8413:269;8362:320;;;:::o;8688:229::-;8828:34;8824:1;8816:6;8812:14;8805:58;8897:12;8892:2;8884:6;8880:15;8873:37;8688:229;:::o;8923:366::-;9065:3;9086:67;9150:2;9145:3;9086:67;:::i;:::-;9079:74;;9162:93;9251:3;9162:93;:::i;:::-;9280:2;9275:3;9271:12;9264:19;;8923:366;;;:::o;9295:419::-;9461:4;9499:2;9488:9;9484:18;9476:26;;9548:9;9542:4;9538:20;9534:1;9523:9;9519:17;9512:47;9576:131;9702:4;9576:131;:::i;:::-;9568:139;;9295:419;;;:::o;9720:118::-;9807:24;9825:5;9807:24;:::i;:::-;9802:3;9795:37;9720:118;;:::o;9844:442::-;9993:4;10031:2;10020:9;10016:18;10008:26;;10044:71;10112:1;10101:9;10097:17;10088:6;10044:71;:::i;:::-;10125:72;10193:2;10182:9;10178:18;10169:6;10125:72;:::i;:::-;10207;10275:2;10264:9;10260:18;10251:6;10207:72;:::i;:::-;9844:442;;;;;;:::o;10292:222::-;10385:4;10423:2;10412:9;10408:18;10400:26;;10436:71;10504:1;10493:9;10489:17;10480:6;10436:71;:::i;:::-;10292:222;;;;:::o;10520:180::-;10568:77;10565:1;10558:88;10665:4;10662:1;10655:15;10689:4;10686:1;10679:15;10706:191;10746:3;10765:20;10783:1;10765:20;:::i;:::-;10760:25;;10799:20;10817:1;10799:20;:::i;:::-;10794:25;;10842:1;10839;10835:9;10828:16;;10863:3;10860:1;10857:10;10854:36;;;10870:18;;:::i;:::-;10854:36;10706:191;;;;:::o;10903:332::-;11024:4;11062:2;11051:9;11047:18;11039:26;;11075:71;11143:1;11132:9;11128:17;11119:6;11075:71;:::i;:::-;11156:72;11224:2;11213:9;11209:18;11200:6;11156:72;:::i;:::-;10903:332;;;;;:::o
Swarm Source
ipfs://1c78e894e5bab692dc49c74b2806a1a468fac8421310ec223ba0336391230ad2
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.