Source Code
Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 2,618 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 424698523 | 5 hrs ago | IN | 0 ETH | 0.00000094 | ||||
| Approve | 424688772 | 6 hrs ago | IN | 0 ETH | 0.00000095 | ||||
| Approve | 424681726 | 6 hrs ago | IN | 0 ETH | 0.00000094 | ||||
| Approve | 424680406 | 6 hrs ago | IN | 0 ETH | 0.00000094 | ||||
| Approve | 424646287 | 9 hrs ago | IN | 0 ETH | 0.00000094 | ||||
| Approve | 424509223 | 18 hrs ago | IN | 0 ETH | 0.00000094 | ||||
| Approve | 424336541 | 30 hrs ago | IN | 0 ETH | 0.00000094 | ||||
| Approve | 424336389 | 30 hrs ago | IN | 0 ETH | 0.00000094 | ||||
| Approve | 424321882 | 31 hrs ago | IN | 0 ETH | 0.00000094 | ||||
| Approve | 423806706 | 2 days ago | IN | 0 ETH | 0.00000093 | ||||
| Approve | 423791171 | 2 days ago | IN | 0 ETH | 0.00000095 | ||||
| Approve | 423776287 | 2 days ago | IN | 0 ETH | 0.00000095 | ||||
| Approve | 423718669 | 3 days ago | IN | 0 ETH | 0.00000095 | ||||
| Transfer | 423718449 | 3 days ago | IN | 0 ETH | 0.00000061 | ||||
| Approve | 423718247 | 3 days ago | IN | 0 ETH | 0.00000055 | ||||
| Transfer | 423718068 | 3 days ago | IN | 0 ETH | 0.00000107 | ||||
| Transfer | 423717426 | 3 days ago | IN | 0 ETH | 0.00000065 | ||||
| Approve | 423716884 | 3 days ago | IN | 0 ETH | 0.00000055 | ||||
| Approve | 423716665 | 3 days ago | IN | 0 ETH | 0.00000055 | ||||
| Approve | 423716613 | 3 days ago | IN | 0 ETH | 0.00000055 | ||||
| Approve | 423716010 | 3 days ago | IN | 0 ETH | 0.00000054 | ||||
| Approve | 423715865 | 3 days ago | IN | 0 ETH | 0.00000096 | ||||
| Approve | 423683058 | 3 days ago | IN | 0 ETH | 0.00000095 | ||||
| Approve | 423295277 | 4 days ago | IN | 0 ETH | 0.00000094 | ||||
| Approve | 423283548 | 4 days ago | IN | 0 ETH | 0.00000059 |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
StToken
Compiler Version
v0.8.29+commit.ab55807c
Optimization Enabled:
No with 200 runs
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Unlicense
pragma solidity 0.8.29;
import {ERC20} from "@openzeppelin-contracts-5.3.0/token/ERC20/ERC20.sol";
import {AccessControl} from "@openzeppelin-contracts-5.3.0/access/AccessControl.sol";
contract StToken is ERC20, AccessControl {
bytes32 public constant OPERATOR_ROLE = keccak256("OPERATOR_ROLE");
error ZeroAddress();
error OnlyOperator();
error MaxSupplyExceeded();
uint256 public immutable maxSupply;
constructor(string memory _name, string memory _symbol, uint256 _maxSupply, address _admin) ERC20(_name, _symbol) {
maxSupply = _maxSupply;
_grantRole(DEFAULT_ADMIN_ROLE, _admin);
}
function setOperator(address _operator) external onlyRole(DEFAULT_ADMIN_ROLE) {
if (_operator == address(0)) revert ZeroAddress();
_grantRole(OPERATOR_ROLE, _operator);
}
function isOperator(address wallet) external view virtual returns (bool) {
return hasRole(OPERATOR_ROLE, wallet);
}
function mintTo(address to, uint256 amount) external onlyRole(OPERATOR_ROLE) {
if (to == address(0)) revert ZeroAddress();
if (totalSupply() + amount > maxSupply) revert MaxSupplyExceeded();
_mint(to, amount);
}
function burnFrom(address from, uint256 amount) external onlyRole(OPERATOR_ROLE) {
_spendAllowance(from, msg.sender, amount);
_burn(from, amount);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.3.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.20;
import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.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}.
*
* 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;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
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;
}
/**
* @dev See {IERC20-allowance}.
*/
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);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.3.0) (access/AccessControl.sol)
pragma solidity ^0.8.20;
import {IAccessControl} from "./IAccessControl.sol";
import {Context} from "../utils/Context.sol";
import {ERC165} from "../utils/introspection/ERC165.sol";
/**
* @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);
_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) public view virtual 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;
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.20;
/**
* @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);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.20;
import {IERC20} from "../IERC20.sol";
/**
* @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);
}// SPDX-License-Identifier: MIT
// 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;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;
/**
* @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);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.3.0) (access/IAccessControl.sol)
pragma solidity ^0.8.20;
/**
* @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;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/ERC165.sol)
pragma solidity ^0.8.20;
import {IERC165} from "./IERC165.sol";
/**
* @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 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol)
pragma solidity ^0.8.20;
/**
* @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);
}{
"remappings": [
"@openzeppelin-contracts-5.3.0/=dependencies/@openzeppelin-contracts-5.3.0/",
"@openzeppelin-contracts-upgradeable-5.3.0/=dependencies/@openzeppelin-contracts-upgradeable-5.3.0/",
"@uniswap-v3-core-1.0.2-solc-0.8-simulate/=dependencies/@uniswap-v3-core-1.0.2-solc-0.8-simulate/",
"@uniswap-v3-periphery-1.4.4/=dependencies/@uniswap-v3-periphery-1.4.4/",
"erc721a-4.3.0/=dependencies/erc721a-4.3.0/",
"forge-std/=dependencies/forge-std-1.9.7/src/",
"@openzeppelin/=dependencies/@uniswap-v3-periphery-1.4.4/node_modules/@openzeppelin/contracts/",
"@uniswap/=dependencies/@uniswap-v3-periphery-1.4.4/node_modules/@uniswap/",
"forge-std-1.9.7/=dependencies/forge-std-1.9.7/src/"
],
"optimizer": {
"enabled": false,
"runs": 200
},
"metadata": {
"useLiteralContent": false,
"bytecodeHash": "ipfs",
"appendCBOR": true
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"evmVersion": "cancun",
"viaIR": false,
"libraries": {}
}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":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"address","name":"_admin","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"},{"inputs":[],"name":"MaxSupplyExceeded","type":"error"},{"inputs":[],"name":"OnlyOperator","type":"error"},{"inputs":[],"name":"ZeroAddress","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":"OPERATOR_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":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"wallet","type":"address"}],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintTo","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":"address","name":"_operator","type":"address"}],"name":"setOperator","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
60a060405234801561000f575f5ffd5b506040516120ca3803806120ca833981810160405281019061003191906103b4565b838381600390816100429190610657565b5080600490816100529190610657565b505050816080818152505061006f5f5f1b8261007960201b60201c565b5050505050610726565b5f61008a838361016f60201b60201c565b61016557600160055f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506101026101d360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019050610169565b5f90505b92915050565b5f60055f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b5f33905090565b5f604051905090565b5f5ffd5b5f5ffd5b5f5ffd5b5f5ffd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b610239826101f3565b810181811067ffffffffffffffff8211171561025857610257610203565b5b80604052505050565b5f61026a6101da565b90506102768282610230565b919050565b5f67ffffffffffffffff82111561029557610294610203565b5b61029e826101f3565b9050602081019050919050565b8281835e5f83830152505050565b5f6102cb6102c68461027b565b610261565b9050828152602081018484840111156102e7576102e66101ef565b5b6102f28482856102ab565b509392505050565b5f82601f83011261030e5761030d6101eb565b5b815161031e8482602086016102b9565b91505092915050565b5f819050919050565b61033981610327565b8114610343575f5ffd5b50565b5f8151905061035481610330565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6103838261035a565b9050919050565b61039381610379565b811461039d575f5ffd5b50565b5f815190506103ae8161038a565b92915050565b5f5f5f5f608085870312156103cc576103cb6101e3565b5b5f85015167ffffffffffffffff8111156103e9576103e86101e7565b5b6103f5878288016102fa565b945050602085015167ffffffffffffffff811115610416576104156101e7565b5b610422878288016102fa565b935050604061043387828801610346565b9250506060610444878288016103a0565b91505092959194509250565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061049e57607f821691505b6020821081036104b1576104b061045a565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026105137fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826104d8565b61051d86836104d8565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61055861055361054e84610327565b610535565b610327565b9050919050565b5f819050919050565b6105718361053e565b61058561057d8261055f565b8484546104e4565b825550505050565b5f5f905090565b61059c61058d565b6105a7818484610568565b505050565b5b818110156105ca576105bf5f82610594565b6001810190506105ad565b5050565b601f82111561060f576105e0816104b7565b6105e9846104c9565b810160208510156105f8578190505b61060c610604856104c9565b8301826105ac565b50505b505050565b5f82821c905092915050565b5f61062f5f1984600802610614565b1980831691505092915050565b5f6106478383610620565b9150826002028217905092915050565b61066082610450565b67ffffffffffffffff81111561067957610678610203565b5b6106838254610487565b61068e8282856105ce565b5f60209050601f8311600181146106bf575f84156106ad578287015190505b6106b7858261063c565b86555061071e565b601f1984166106cd866104b7565b5f5b828110156106f4578489015182556001820191506020850194506020810190506106cf565b86831015610711578489015161070d601f891682610620565b8355505b6001600288020188555050505b505050505050565b6080516119856107455f395f81816107230152610a3701526119855ff3fe608060405234801561000f575f5ffd5b5060043610610140575f3560e01c806370a08231116100b6578063a9059cbb1161007a578063a9059cbb1461039a578063b3ab15fb146103ca578063d547741f146103e6578063d5abeb0114610402578063dd62ed3e14610420578063f5b541a61461045057610140565b806370a08231146102e257806379cc67901461031257806391d148541461032e57806395d89b411461035e578063a217fddf1461037c57610140565b8063248a9ca311610108578063248a9ca3146102105780632f2ff15d14610240578063313ce5671461025c57806336568abe1461027a578063449a52f8146102965780636d70f7ae146102b257610140565b806301ffc9a71461014457806306fdde0314610174578063095ea7b31461019257806318160ddd146101c257806323b872dd146101e0575b5f5ffd5b61015e6004803603810190610159919061147c565b61046e565b60405161016b91906114c1565b60405180910390f35b61017c6104e7565b604051610189919061154a565b60405180910390f35b6101ac60048036038101906101a791906115f7565b610577565b6040516101b991906114c1565b60405180910390f35b6101ca610599565b6040516101d79190611644565b60405180910390f35b6101fa60048036038101906101f5919061165d565b6105a2565b60405161020791906114c1565b60405180910390f35b61022a600480360381019061022591906116e0565b6105d0565b604051610237919061171a565b60405180910390f35b61025a60048036038101906102559190611733565b6105ed565b005b61026461060f565b604051610271919061178c565b60405180910390f35b610294600480360381019061028f9190611733565b610617565b005b6102b060048036038101906102ab91906115f7565b610692565b005b6102cc60048036038101906102c791906117a5565b61079c565b6040516102d991906114c1565b60405180910390f35b6102fc60048036038101906102f791906117a5565b6107ce565b6040516103099190611644565b60405180910390f35b61032c600480360381019061032791906115f7565b610813565b005b61034860048036038101906103439190611733565b610857565b60405161035591906114c1565b60405180910390f35b6103666108bb565b604051610373919061154a565b60405180910390f35b61038461094b565b604051610391919061171a565b60405180910390f35b6103b460048036038101906103af91906115f7565b610951565b6040516103c191906114c1565b60405180910390f35b6103e460048036038101906103df91906117a5565b610973565b005b61040060048036038101906103fb9190611733565b610a13565b005b61040a610a35565b6040516104179190611644565b60405180910390f35b61043a600480360381019061043591906117d0565b610a59565b6040516104479190611644565b60405180910390f35b610458610adb565b604051610465919061171a565b60405180910390f35b5f7f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104e057506104df82610aff565b5b9050919050565b6060600380546104f69061183b565b80601f01602080910402602001604051908101604052809291908181526020018280546105229061183b565b801561056d5780601f106105445761010080835404028352916020019161056d565b820191905f5260205f20905b81548152906001019060200180831161055057829003601f168201915b5050505050905090565b5f5f610581610b68565b905061058e818585610b6f565b600191505092915050565b5f600254905090565b5f5f6105ac610b68565b90506105b9858285610b81565b6105c4858585610c14565b60019150509392505050565b5f60055f8381526020019081526020015f20600101549050919050565b6105f6826105d0565b6105ff81610d04565b6106098383610d18565b50505050565b5f6012905090565b61061f610b68565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610683576040517f6697b23200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61068d8282610e02565b505050565b7f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b9296106bc81610d04565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610721576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008261074b610599565b6107559190611898565b111561078d576040517f8a164f6300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107978383610eec565b505050565b5f6107c77f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92983610857565b9050919050565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b7f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92961083d81610d04565b610848833384610b81565b6108528383610f6b565b505050565b5f60055f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6060600480546108ca9061183b565b80601f01602080910402602001604051908101604052809291908181526020018280546108f69061183b565b80156109415780601f1061091857610100808354040283529160200191610941565b820191905f5260205f20905b81548152906001019060200180831161092457829003601f168201915b5050505050905090565b5f5f1b81565b5f5f61095b610b68565b9050610968818585610c14565b600191505092915050565b5f5f1b61097f81610d04565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109e4576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a0e7f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92983610d18565b505050565b610a1c826105d0565b610a2581610d04565b610a2f8383610e02565b50505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b7f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92981565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f33905090565b610b7c8383836001610fea565b505050565b5f610b8c8484610a59565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811015610c0e5781811015610bff578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610bf6939291906118da565b60405180910390fd5b610c0d84848484035f610fea565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c84575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610c7b919061190f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cf4575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610ceb919061190f565b60405180910390fd5b610cff8383836111b9565b505050565b610d1581610d10610b68565b6113d2565b50565b5f610d238383610857565b610df857600160055f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550610d95610b68565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019050610dfc565b5f90505b92915050565b5f610e0d8383610857565b15610ee2575f60055f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550610e7f610b68565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a460019050610ee6565b5f90505b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f5c575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610f53919061190f565b60405180910390fd5b610f675f83836111b9565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fdb575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610fd2919061190f565b60405180910390fd5b610fe6825f836111b9565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361105a575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401611051919061190f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110ca575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016110c1919061190f565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156111b3578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516111aa9190611644565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611209578060025f8282546111fd9190611898565b925050819055506112d7565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611292578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611289939291906118da565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361131e578060025f8282540392505081905550611368565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113c59190611644565b60405180910390a3505050565b6113dc8282610857565b61141f5780826040517fe2517d3f000000000000000000000000000000000000000000000000000000008152600401611416929190611928565b60405180910390fd5b5050565b5f5ffd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61145b81611427565b8114611465575f5ffd5b50565b5f8135905061147681611452565b92915050565b5f6020828403121561149157611490611423565b5b5f61149e84828501611468565b91505092915050565b5f8115159050919050565b6114bb816114a7565b82525050565b5f6020820190506114d45f8301846114b2565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61151c826114da565b61152681856114e4565b93506115368185602086016114f4565b61153f81611502565b840191505092915050565b5f6020820190508181035f8301526115628184611512565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6115938261156a565b9050919050565b6115a381611589565b81146115ad575f5ffd5b50565b5f813590506115be8161159a565b92915050565b5f819050919050565b6115d6816115c4565b81146115e0575f5ffd5b50565b5f813590506115f1816115cd565b92915050565b5f5f6040838503121561160d5761160c611423565b5b5f61161a858286016115b0565b925050602061162b858286016115e3565b9150509250929050565b61163e816115c4565b82525050565b5f6020820190506116575f830184611635565b92915050565b5f5f5f6060848603121561167457611673611423565b5b5f611681868287016115b0565b9350506020611692868287016115b0565b92505060406116a3868287016115e3565b9150509250925092565b5f819050919050565b6116bf816116ad565b81146116c9575f5ffd5b50565b5f813590506116da816116b6565b92915050565b5f602082840312156116f5576116f4611423565b5b5f611702848285016116cc565b91505092915050565b611714816116ad565b82525050565b5f60208201905061172d5f83018461170b565b92915050565b5f5f6040838503121561174957611748611423565b5b5f611756858286016116cc565b9250506020611767858286016115b0565b9150509250929050565b5f60ff82169050919050565b61178681611771565b82525050565b5f60208201905061179f5f83018461177d565b92915050565b5f602082840312156117ba576117b9611423565b5b5f6117c7848285016115b0565b91505092915050565b5f5f604083850312156117e6576117e5611423565b5b5f6117f3858286016115b0565b9250506020611804858286016115b0565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061185257607f821691505b6020821081036118655761186461180e565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6118a2826115c4565b91506118ad836115c4565b92508282019050808211156118c5576118c461186b565b5b92915050565b6118d481611589565b82525050565b5f6060820190506118ed5f8301866118cb565b6118fa6020830185611635565b6119076040830184611635565b949350505050565b5f6020820190506119225f8301846118cb565b92915050565b5f60408201905061193b5f8301856118cb565b611948602083018461170b565b939250505056fea26469706673582212202300ea72bd73f2645ee0f817f4ce975bb176917bac39a059ebb34b464ecb3c9464736f6c634300081d0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000024306c4097859c43c0000000000000000000000000000007d5e16ba8d950fca1ffbf5a67b40ddcc1f9702520000000000000000000000000000000000000000000000000000000000000008785354415231383000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000087853544152313830000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f5ffd5b5060043610610140575f3560e01c806370a08231116100b6578063a9059cbb1161007a578063a9059cbb1461039a578063b3ab15fb146103ca578063d547741f146103e6578063d5abeb0114610402578063dd62ed3e14610420578063f5b541a61461045057610140565b806370a08231146102e257806379cc67901461031257806391d148541461032e57806395d89b411461035e578063a217fddf1461037c57610140565b8063248a9ca311610108578063248a9ca3146102105780632f2ff15d14610240578063313ce5671461025c57806336568abe1461027a578063449a52f8146102965780636d70f7ae146102b257610140565b806301ffc9a71461014457806306fdde0314610174578063095ea7b31461019257806318160ddd146101c257806323b872dd146101e0575b5f5ffd5b61015e6004803603810190610159919061147c565b61046e565b60405161016b91906114c1565b60405180910390f35b61017c6104e7565b604051610189919061154a565b60405180910390f35b6101ac60048036038101906101a791906115f7565b610577565b6040516101b991906114c1565b60405180910390f35b6101ca610599565b6040516101d79190611644565b60405180910390f35b6101fa60048036038101906101f5919061165d565b6105a2565b60405161020791906114c1565b60405180910390f35b61022a600480360381019061022591906116e0565b6105d0565b604051610237919061171a565b60405180910390f35b61025a60048036038101906102559190611733565b6105ed565b005b61026461060f565b604051610271919061178c565b60405180910390f35b610294600480360381019061028f9190611733565b610617565b005b6102b060048036038101906102ab91906115f7565b610692565b005b6102cc60048036038101906102c791906117a5565b61079c565b6040516102d991906114c1565b60405180910390f35b6102fc60048036038101906102f791906117a5565b6107ce565b6040516103099190611644565b60405180910390f35b61032c600480360381019061032791906115f7565b610813565b005b61034860048036038101906103439190611733565b610857565b60405161035591906114c1565b60405180910390f35b6103666108bb565b604051610373919061154a565b60405180910390f35b61038461094b565b604051610391919061171a565b60405180910390f35b6103b460048036038101906103af91906115f7565b610951565b6040516103c191906114c1565b60405180910390f35b6103e460048036038101906103df91906117a5565b610973565b005b61040060048036038101906103fb9190611733565b610a13565b005b61040a610a35565b6040516104179190611644565b60405180910390f35b61043a600480360381019061043591906117d0565b610a59565b6040516104479190611644565b60405180910390f35b610458610adb565b604051610465919061171a565b60405180910390f35b5f7f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104e057506104df82610aff565b5b9050919050565b6060600380546104f69061183b565b80601f01602080910402602001604051908101604052809291908181526020018280546105229061183b565b801561056d5780601f106105445761010080835404028352916020019161056d565b820191905f5260205f20905b81548152906001019060200180831161055057829003601f168201915b5050505050905090565b5f5f610581610b68565b905061058e818585610b6f565b600191505092915050565b5f600254905090565b5f5f6105ac610b68565b90506105b9858285610b81565b6105c4858585610c14565b60019150509392505050565b5f60055f8381526020019081526020015f20600101549050919050565b6105f6826105d0565b6105ff81610d04565b6106098383610d18565b50505050565b5f6012905090565b61061f610b68565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610683576040517f6697b23200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61068d8282610e02565b505050565b7f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b9296106bc81610d04565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610721576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f0000000000000000000000000000000000000000024306c4097859c43c0000008261074b610599565b6107559190611898565b111561078d576040517f8a164f6300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107978383610eec565b505050565b5f6107c77f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92983610857565b9050919050565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b7f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92961083d81610d04565b610848833384610b81565b6108528383610f6b565b505050565b5f60055f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6060600480546108ca9061183b565b80601f01602080910402602001604051908101604052809291908181526020018280546108f69061183b565b80156109415780601f1061091857610100808354040283529160200191610941565b820191905f5260205f20905b81548152906001019060200180831161092457829003601f168201915b5050505050905090565b5f5f1b81565b5f5f61095b610b68565b9050610968818585610c14565b600191505092915050565b5f5f1b61097f81610d04565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109e4576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a0e7f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92983610d18565b505050565b610a1c826105d0565b610a2581610d04565b610a2f8383610e02565b50505050565b7f0000000000000000000000000000000000000000024306c4097859c43c00000081565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b7f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92981565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f33905090565b610b7c8383836001610fea565b505050565b5f610b8c8484610a59565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811015610c0e5781811015610bff578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610bf6939291906118da565b60405180910390fd5b610c0d84848484035f610fea565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c84575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610c7b919061190f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cf4575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610ceb919061190f565b60405180910390fd5b610cff8383836111b9565b505050565b610d1581610d10610b68565b6113d2565b50565b5f610d238383610857565b610df857600160055f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550610d95610b68565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019050610dfc565b5f90505b92915050565b5f610e0d8383610857565b15610ee2575f60055f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550610e7f610b68565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a460019050610ee6565b5f90505b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f5c575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610f53919061190f565b60405180910390fd5b610f675f83836111b9565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fdb575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610fd2919061190f565b60405180910390fd5b610fe6825f836111b9565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361105a575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401611051919061190f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110ca575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016110c1919061190f565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156111b3578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516111aa9190611644565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611209578060025f8282546111fd9190611898565b925050819055506112d7565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611292578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611289939291906118da565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361131e578060025f8282540392505081905550611368565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113c59190611644565b60405180910390a3505050565b6113dc8282610857565b61141f5780826040517fe2517d3f000000000000000000000000000000000000000000000000000000008152600401611416929190611928565b60405180910390fd5b5050565b5f5ffd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61145b81611427565b8114611465575f5ffd5b50565b5f8135905061147681611452565b92915050565b5f6020828403121561149157611490611423565b5b5f61149e84828501611468565b91505092915050565b5f8115159050919050565b6114bb816114a7565b82525050565b5f6020820190506114d45f8301846114b2565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61151c826114da565b61152681856114e4565b93506115368185602086016114f4565b61153f81611502565b840191505092915050565b5f6020820190508181035f8301526115628184611512565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6115938261156a565b9050919050565b6115a381611589565b81146115ad575f5ffd5b50565b5f813590506115be8161159a565b92915050565b5f819050919050565b6115d6816115c4565b81146115e0575f5ffd5b50565b5f813590506115f1816115cd565b92915050565b5f5f6040838503121561160d5761160c611423565b5b5f61161a858286016115b0565b925050602061162b858286016115e3565b9150509250929050565b61163e816115c4565b82525050565b5f6020820190506116575f830184611635565b92915050565b5f5f5f6060848603121561167457611673611423565b5b5f611681868287016115b0565b9350506020611692868287016115b0565b92505060406116a3868287016115e3565b9150509250925092565b5f819050919050565b6116bf816116ad565b81146116c9575f5ffd5b50565b5f813590506116da816116b6565b92915050565b5f602082840312156116f5576116f4611423565b5b5f611702848285016116cc565b91505092915050565b611714816116ad565b82525050565b5f60208201905061172d5f83018461170b565b92915050565b5f5f6040838503121561174957611748611423565b5b5f611756858286016116cc565b9250506020611767858286016115b0565b9150509250929050565b5f60ff82169050919050565b61178681611771565b82525050565b5f60208201905061179f5f83018461177d565b92915050565b5f602082840312156117ba576117b9611423565b5b5f6117c7848285016115b0565b91505092915050565b5f5f604083850312156117e6576117e5611423565b5b5f6117f3858286016115b0565b9250506020611804858286016115b0565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061185257607f821691505b6020821081036118655761186461180e565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6118a2826115c4565b91506118ad836115c4565b92508282019050808211156118c5576118c461186b565b5b92915050565b6118d481611589565b82525050565b5f6060820190506118ed5f8301866118cb565b6118fa6020830185611635565b6119076040830184611635565b949350505050565b5f6020820190506119225f8301846118cb565b92915050565b5f60408201905061193b5f8301856118cb565b611948602083018461170b565b939250505056fea26469706673582212202300ea72bd73f2645ee0f817f4ce975bb176917bac39a059ebb34b464ecb3c9464736f6c634300081d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000024306c4097859c43c0000000000000000000000000000007d5e16ba8d950fca1ffbf5a67b40ddcc1f9702520000000000000000000000000000000000000000000000000000000000000008785354415231383000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000087853544152313830000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): xSTAR180
Arg [1] : _symbol (string): xSTAR180
Arg [2] : _maxSupply (uint256): 700000000000000000000000000
Arg [3] : _admin (address): 0x7d5E16Ba8d950fcA1fFbF5A67B40DdcC1f970252
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000024306c4097859c43c000000
Arg [3] : 0000000000000000000000007d5e16ba8d950fca1ffbf5a67b40ddcc1f970252
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 7853544152313830000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [7] : 7853544152313830000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 35 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.