Token
TRAX Chips (TRAX)
ERC-20
Overview
Max Total Supply
106 TRAX
Holders
1
Total Transfers
-
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
TRAX
Compiler Version
v0.8.24+commit.e11b9ed9
ZkSolc Version
v1.5.7
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // Roach Racing Club: gamified trading competitions, where trading becomes a fun, // fast-paced game set in the wicked Nanoverse (https://roachracingclub.com) /* ..::--------::.. .:--------------------:: :----------------------------: .:---------------------------------. :------------------------------------- .----------------------------------------: :------------------------------------------: :--===----------------------------------===--: .--+@@@@%%#+=----------------------=+*#%@@@@+--: ---@@@@@@@@@@@#+----------------+#@@@@@@@@@@@=-- :--+@@@@@@@@@@@@@@#+----------=#@@@@@@@@@@@@@@*--: ---#@@@@@@@@@@@@@@@@%+------=%@@@@@@@@@@@@@@@@%--- -----==+*%@@@@@@@@@@@@%=--=#@@@@@@@@@@@@%*++=----- -----------=*@@@@@@@@@@@*+@@@@@@@@@@@#+----------- :-------------+%@@@@@@@@@@@@@@@@@@%+-------------: ---------------*@@@@@@@@@@@@@@@@*--------------- :---------------=@@@@@@@@@@@@@@+---------------: :---------------=@@@@@@@@@@@@=---------------- :---------------+@@@@@@@@@@*---------------: :---------------%@@@@@@@@@---------------: --------------#@@@@@@@@%--------------. .------------#@@@@@@@@#------------. :---------*@@@@@@@@#---------:. :----------------------:. ..::--------:::. ███████╗██╗ ██╗ █████╗ ██████╗ ██████╗ ██╗ ██╗ ███████╗██╗ ██╗███╗ ██╗██████╗ ██╗ ██████╗ █████╗ ████████╗███████╗ ██╗███╗ ██╗ ██████╗ ██╔════╝██║ ██║██╔══██╗██╔══██╗██╔═══██╗██║ ██║ ██╔════╝╚██╗ ██╔╝████╗ ██║██╔══██╗██║██╔════╝██╔══██╗╚══██╔══╝██╔════╝ ██║████╗ ██║██╔════╝ ███████╗███████║███████║██║ ██║██║ ██║██║ █╗ ██║ ███████╗ ╚████╔╝ ██╔██╗ ██║██║ ██║██║██║ ███████║ ██║ █████╗ ██║██╔██╗ ██║██║ ╚════██║██╔══██║██╔══██║██║ ██║██║ ██║██║███╗██║ ╚════██║ ╚██╔╝ ██║╚██╗██║██║ ██║██║██║ ██╔══██║ ██║ ██╔══╝ ██║██║╚██╗██║██║ ███████║██║ ██║██║ ██║██████╔╝╚██████╔╝╚███╔███╔╝ ███████║ ██║ ██║ ╚████║██████╔╝██║╚██████╗██║ ██║ ██║ ███████╗ ██║██║ ╚████║╚██████╗██╗ ╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝╚═════╝ ╚═════╝ ╚══╝╚══╝ ╚══════╝ ╚═╝ ╚═╝ ╚═══╝╚═════╝ ╚═╝ ╚═════╝╚═╝ ╚═╝ ╚═╝ ╚══════╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝╚═╝ */ pragma solidity ^0.8.22; import {AccessControl} from "@openzeppelin/contracts/access/AccessControl.sol"; import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import {ERC20Burnable} from "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import {ERC20Pausable} from "@openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.sol"; contract TRAX is ERC20, ERC20Burnable, ERC20Pausable, AccessControl { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); event Used(uint256 id, uint256 value); constructor(address defaultAdmin, address minter) ERC20("TRAX Chips", "TRAX") { _grantRole(DEFAULT_ADMIN_ROLE, defaultAdmin); _grantRole(MINTER_ROLE, minter); } function pause() external onlyRole(DEFAULT_ADMIN_ROLE) { _pause(); } function unpause() external onlyRole(DEFAULT_ADMIN_ROLE) { _unpause(); } function mint(address to, uint256 amount) external onlyRole(MINTER_ROLE) { _mint(to, amount); } /** * @dev Destroys a `value` amount of tokens from the caller * and marks destroyed 'value' as used with 'id'. * Emits a {Used} event. */ function use(uint256 value, uint256 id) external { _burn(_msgSender(), value); emit Used(id, value); } /** * @dev Destroys a `value` amount of tokens from `account`, deducting from * the caller's allowance. * Marks destroyed 'value' as used with 'id'. * See {ERC20-_burn} and {ERC20-allowance}. * * Emits a {Used} event. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `value`. */ function useFrom(address account, uint256 value, uint256 id) external { _spendAllowance(account, _msgSender(), value); _burn(account, value); emit Used(id, value); } /** * @dev Make sure that token can be only minted and burned */ function _update(address from, address to, uint256 value) internal override(ERC20, ERC20Pausable) { require (from == address(0x0) || to == address(0x0), 'transfers not allowed'); super._update(from, to, value); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.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` to `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.2.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}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual 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.1.0) (token/ERC20/extensions/ERC20Pausable.sol) pragma solidity ^0.8.20; import {ERC20} from "../ERC20.sol"; import {Pausable} from "../../../utils/Pausable.sol"; /** * @dev ERC-20 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. * * IMPORTANT: This contract does not include public pause and unpause functions. In * addition to inheriting this contract, you must define both functions, invoking the * {Pausable-_pause} and {Pausable-_unpause} internal functions, with appropriate * access control, e.g. using {AccessControl} or {Ownable}. Not doing so will * make the contract pause mechanism of the contract unreachable, and thus unusable. */ abstract contract ERC20Pausable is ERC20, Pausable { /** * @dev See {ERC20-_update}. * * Requirements: * * - the contract must not be paused. */ function _update(address from, address to, uint256 value) internal virtual override whenNotPaused { super._update(from, to, value); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.20; import {ERC20} from "../ERC20.sol"; import {Context} from "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys 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); } }
// 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.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) (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 signaling 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) (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.0.0) (utils/Pausable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { bool private _paused; /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); /** * @dev The operation failed because the contract is paused. */ error EnforcedPause(); /** * @dev The operation failed because the contract is not paused. */ error ExpectedPause(); /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { if (paused()) { revert EnforcedPause(); } } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { if (!paused()) { revert ExpectedPause(); } } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // 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.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); }
{ "evmVersion": "paris", "optimizer": { "enabled": true, "mode": "3" }, "outputSelection": { "*": { "*": [ "abi", "metadata" ], "": [ "ast" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": false, "libraries": {} }
[{"inputs":[{"internalType":"address","name":"defaultAdmin","type":"address"},{"internalType":"address","name":"minter","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":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Used","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":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"use","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"useFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b00000000000000000000000000000000000000000000000000000000000000000100021975c460290c02ada8ccc690ea6e60683bc1b356b1b14ac4d99e39c03f000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000400000000000000000000000003857ce692dd96f307d42a03ac5f33db2496cf82f0000000000000000000000003857ce692dd96f307d42a03ac5f33db2496cf82f
Deployed Bytecode
0x0001000000000002000800000000000200000000000103550000006003100270000001c2033001970000000100200190000000200000c13d0000008002000039000000400020043f000000040030008c000000470000413d000000000201043b000000e002200270000001d20020009c000000490000a13d000001d30020009c0000007d0000a13d000001d40020009c000001380000a13d000001d50020009c000001440000213d000001d80020009c000002b50000613d000001d90020009c000000470000c13d0000000001000416000000000001004b000000470000c13d000001d001000041000000800010043f000001f301000041000007040001042e0000000002000416000000000002004b000000470000c13d0000001f02300039000001c3022001970000008002200039000000400020043f0000001f0430018f000001c4053001980000008002500039000000310000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b0000002d0000c13d000000000004004b0000003e0000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000400030008c000000470000413d000000800600043d000001c50060009c000000470000213d000000a00100043d000800000001001d000001c50010009c000000930000a13d00000000010000190000070500010430000001e40020009c000000640000213d000001ec0020009c000000f30000213d000001f00020009c000001d30000613d000001f10020009c000001630000613d000001f20020009c000000470000c13d000000440030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000402100370000000000202043b000800000002001d000001c50020009c000000470000213d0000002401100370000000000301043b0000000002000411000000000002004b0000032a0000c13d0000020d010000410000034c0000013d000001e50020009c000001080000213d000001e90020009c000001e40000613d000001ea0020009c000001830000613d000001eb0020009c000000470000c13d000000440030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000002402100370000000000302043b000001c50030009c000000470000213d0000000002000411000000000023004b0000032e0000c13d0000000401100370000000000101043b0703062c0000040f0000000001000019000007040001042e000001dd0020009c000001190000213d000001e10020009c000002940000613d000001e20020009c000002520000613d000001e30020009c000000470000c13d000000240030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000401100370000000000101043b000001c50010009c000000470000213d000000000010043f000000200000043f00000040020000390000000001000019000001610000013d000000400300043d000001c60030009c000004100000213d0000004001300039000000400010043f0000000a01000039000000000a130436000001c70100004100000000001a0435000000400700043d000001c60070009c000004100000213d0000004001700039000000400010043f00000004040000390000000005470436000001c80100004100000000001504350000000009030433000001c90090009c000004100000213d0000000308000039000000000108041a0000000102100190000000010b1002700000007f0bb0618f0000001f00b0008c00000000010000390000000101002039000000000012004b000003100000c13d0000002000b0008c000600000007001d000300000006001d000700000005001d000000dc0000413d00010000000b001d00020000000a001d000400000009001d000500000003001d000000000080043f0000000001000414000001c20010009c000001c201008041000000c001100210000001ca011001c70000801002000039070306fe0000040f0000000100200190000000470000613d00000004090000290000001f029000390000000502200270000000200090008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000004040000390000000607000029000000070500002900000003080000390000000503000029000000020a000029000000dc0000813d000000000002041b0000000102200039000000000012004b000000d80000413d0000001f0090008c000003550000a13d000400000009001d000500000003001d000000000080043f0000000001000414000001c20010009c000001c201008041000000c001100210000001ca011001c70000801002000039070306fe0000040f0000000100200190000000470000613d000000040a0000290000021202a00198000000000101043b0000000509000029000003f00000c13d000000200300003900000006070000290000000308000039000003fe0000013d000001ed0020009c000002290000613d000001ee0020009c0000018a0000613d000001ef0020009c000000470000c13d000000240030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000401100370000000000101043b000000000010043f0000000601000039000000200010043f00000040020000390000000001000019070306e40000040f00000001011000390000022d0000013d000001e60020009c000002310000613d000001e70020009c000001a40000613d000001e80020009c000000470000c13d000000240030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000401100370000000000201043b00000000010004110703067d0000040f0000000001000019000007040001042e000001de0020009c0000029f0000613d000001df0020009c000002730000613d000001e00020009c000000470000c13d000000440030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000002402100370000000000202043b000800000002001d000001c50020009c000000470000213d0000000401100370000000000101043b000000000010043f0000000601000039000000200010043f00000040020000390000000001000019070306e40000040f0000000802000029000000000020043f000000200010043f00000000010000190000004002000039070306e40000040f000002980000013d000001da0020009c000003010000613d000001db0020009c000002de0000613d000001dc0020009c000000470000c13d0000000001000416000000000001004b000000470000c13d000000800000043f000001f301000041000007040001042e000001d60020009c000002c30000613d000001d70020009c000000470000c13d000000440030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000402100370000000000202043b000001c50020009c000000470000213d0000002401100370000000000101043b000800000001001d000001c50010009c000000470000213d000000000020043f0000000101000039000000200010043f00000040020000390000000001000019070306e40000040f0000000802000029000000000020043f000000200010043f00000000010000190000004002000039070306e40000040f0000022d0000013d0000000001000416000000000001004b000000470000c13d0000000303000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000003100000c13d000000800010043f000000000005004b000003190000613d000000000030043f000000020020008c000003530000413d0000020e0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b0000017a0000413d000003d00000013d0000000001000416000000000001004b000000470000c13d0000001201000039000000800010043f000001f301000041000007040001042e000000640030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000402100370000000000202043b000001c50020009c000000470000213d00000000040200190000002402100370000000000202043b000800000002001d000001c50020009c000000470000213d0000004401100370000000000301043b00000000020004110000000001040019000700000004001d070305920000040f000000070000006b000003710000c13d000000400100043d000001f902000041000003e80000013d000000440030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000402100370000000000202043b000800000002001d000001c50020009c000000470000213d0000002401100370000000000101043b000700000001001d000001d001000041000000000010043f0000000601000039000000200010043f0000000001000414000001c20010009c000001c201008041000000c001100210000001cc011001c70000801002000039070306fe0000040f0000000100200190000000470000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000001c20010009c000001c201008041000000c001100210000001cc011001c70000801002000039070306fe0000040f0000000100200190000000470000613d000000000101043b000000000101041a000000ff00100190000003e40000c13d000000400100043d0000002402100039000001d003000041000002220000013d000000240030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000401100370000000000101043b0000020f00100198000000470000c13d000002100010009c00000000020000390000000102006039000002110010009c00000001022061bf000000800020043f000001f301000041000007040001042e000000440030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000402100370000000000202043b000800000002001d0000002401100370000000000101043b000700000001001d000001c50010009c000000470000213d0000000801000029000000000010043f0000000601000039000000200010043f0000000001000414000001c20010009c000001c201008041000000c001100210000001cc011001c70000801002000039070306fe0000040f0000000100200190000000470000613d000000000101043b0000000101100039000000000101041a000600000001001d000000000010043f0000000601000039000000200010043f0000000001000414000001c20010009c000001c201008041000000c001100210000001cc011001c70000801002000039070306fe0000040f0000000100200190000000470000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000001c20010009c000001c201008041000000c001100210000001cc011001c70000801002000039070306fe0000040f0000000100200190000000470000613d000000000101043b000000000101041a000000ff001001900000048c0000c13d000000400100043d000000240210003900000006030000290000000000320435000001fe0200004100000000002104350000000402100039000000000300041100000000003204350000028f0000013d0000000001000416000000000001004b000000470000c13d0000000201000039000000000101041a000000800010043f000001f301000041000007040001042e0000000001000416000000000001004b000000470000c13d0000000001000411000000000010043f000001cb01000041000000200010043f0000000001000414000001c20010009c000001c201008041000000c001100210000001cc011001c70000801002000039070306fe0000040f0000000100200190000000470000613d000000400200043d000000000101043b000000000101041a000000ff001001900000031f0000c13d000001fe01000041000000000012043500000004012000390000000003000411000000000031043500000024012000390000000000010435000001c20020009c000001c2020080410000004001200210000001ff011001c70000070500010430000000640030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000402100370000000000202043b000001c50020009c000000470000213d00000000040200190000002401100370000000000301043b000800000003001d00000000020004110000000001040019000700000004001d070305920000040f000000070100002900000008020000290703067d0000040f00000044010000390000000001100367000000000101043b000000400200043d0000002003200039000000080400002900000000004304350000000000120435000001c20020009c000001c20200804100000040012002100000000002000414000002f40000013d0000000001000416000000000001004b000000470000c13d0000000001000411000000000010043f000001cb01000041000000200010043f0000000001000414000001c20010009c000001c201008041000000c001100210000001cc011001c70000801002000039070306fe0000040f0000000100200190000000470000613d000000000101043b000000000101041a000000ff00100190000003320000c13d000000400100043d000001fe02000041000000000021043500000004021000390000000003000411000000000032043500000024021000390000000000020435000001c20010009c000001c2010080410000004001100210000001ff011001c700000705000104300000000001000416000000000001004b000000470000c13d0000000501000039000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f000001f301000041000007040001042e000000440030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000402100370000000000202043b000001c50020009c000000470000213d00000000040200190000002401100370000000000301043b000700000003001d00000000020004110000000001040019000800000004001d070305920000040f000000080100002900000007020000290703067d0000040f0000000001000019000007040001042e000000440030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000401100370000000000101043b000001c50010009c000000470000213d0000000002000411000000000002004b000003490000c13d000001f9010000410000034c0000013d000000440030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000002402100370000000000202043b000800000002001d000001c50020009c000000470000213d0000000401100370000000000101043b000700000001001d000000000010043f0000000601000039000000200010043f00000040020000390000000001000019070306e40000040f0000000101100039000000000101041a070305fc0000040f000000070100002900000008020000290703062c0000040f0000000001000019000007040001042e000000440030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000401100370000000000201043b000800000002001d00000000010004110703067d0000040f00000024010000390000000001100367000000000101043b000000400200043d0000002003200039000000080400002900000000004304350000000000120435000001c20020009c000001c20200804100000040012002100000000002000414000001c20020009c000001c202008041000000c002200210000000000112019f000001cc011001c70000800d020000390000000103000039000001fa04000041070306f90000040f0000000100200190000000470000613d0000000001000019000007040001042e0000000001000416000000000001004b000000470000c13d0000000403000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000003160000613d0000020301000041000000000010043f0000002201000039000000040010043f00000204010000410000070500010430000000800010043f000000000005004b000003500000c13d0000021301200197000000a00010043f000000000004004b000000c001000039000000a001006039000003d10000013d0000000501000039000000000301041a000000ff00300190000003600000c13d00000206010000410000000000120435000001c20020009c000001c202008041000000400120021000000201011001c70000070500010430000000080000006b000003840000c13d0000020c010000410000034c0000013d0000020701000041000000800010043f000002080100004100000705000104300000000501000039000000000201041a000000ff00200190000004840000c13d000002130220019700000001022001bf000000000021041b000000400100043d00000000020004110000000000210435000001c20010009c000001c20100804100000040011002100000000002000414000001c20020009c000001c202008041000000c002200210000000000112019f000001ca011001c70000800d020000390000000103000039000001fd04000041000002fc0000013d000000000001004b000003bc0000c13d000001f701000041000000800010043f000000840000043f000001f8010000410000070500010430000000000030043f000000020020008c000003c60000813d0000002001000039000003d50000013d000000000009004b0000000001000019000003590000613d00000000010a04330000000302900210000002140220027f0000021402200167000000000121016f0000000102900210000000000121019f0000040c0000013d0000021303300197000000000031041b00000000010004110000000000120435000001c20020009c000001c20200804100000040012002100000000002000414000001c20020009c000001c202008041000000c002200210000000000112019f000001ca011001c70000800d0200003900000001030000390000020504000041000002fc0000013d000000080000006b000003e60000613d000000400100043d0000004402100039000001f5030000410000000000320435000000240210003900000015030000390000000000320435000001f4020000410000000000210435000000040210003900000020030000390000000000320435000001c20010009c000001c201008041000000400110021000000209011001c70000070500010430000700000003001d000000000020043f0000000101000039000000200010043f0000000001000414000001c20010009c000001c201008041000000c001100210000001cc011001c70000801002000039070306fe0000040f0000000100200190000000470000613d000000000101043b0000000802000029000000000020043f000000200010043f0000000001000414000001c20010009c000001c201008041000000c001100210000001cc011001c70000801002000039070306fe0000040f0000000100200190000000470000613d000000000101043b0000000702000029000000000021041b000000400100043d0000000000210435000001c20010009c000001c20100804100000040011002100000000002000414000001c20020009c000001c202008041000000c002200210000000000112019f000001ca011001c70000800d0200003900000003030000390000020a0400004100000000050004110000000806000029070306f90000040f0000000100200190000000470000613d000000400100043d00000001020000390000000000210435000001c20010009c000001c20100804100000040011002100000020b011001c7000007040001042e000001f401000041000000800010043f0000002001000039000000840010043f0000001501000039000000a40010043f000001f501000041000000c40010043f000001f6010000410000070500010430000001fb0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000003c80000413d000000c001300039000000610110008a0000021201100197000001fc0010009c000004100000213d0000008001100039000800000001001d000000400010043f0000008002000039070305750000040f00000008020000290000000001210049000001c20010009c000001c2010080410000006001100210000001c20020009c000001c2020080410000004002200210000000000121019f000007040001042e000000080000006b000004540000c13d000000400100043d000001f702000041000000000021043500000004021000390000000000020435000001c20010009c000001c201008041000000400110021000000204011001c70000070500010430000000010320008a00000005033002700000000004310019000000200300003900000001044000390000000607000029000000030800003900000000059300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000003f70000c13d0000000000a2004b000004080000813d0000000302a00210000000f80220018f000002140220027f000002140220016700000000039300190000000003030433000000000223016f000000000021041b0000000101a0021000000001011001bf00000004040000390000000705000029000000000018041b0000000007070433000001c90070009c000004160000a13d0000020301000041000000000010043f0000004101000039000000040010043f00000204010000410000070500010430000000000104041a000000010010019000000001031002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000121013f0000000100100190000003100000c13d000000200030008c000004410000413d000400000003001d000500000007001d000000000040043f0000000001000414000001c20010009c000001c201008041000000c001100210000001ca011001c70000801002000039070306fe0000040f0000000100200190000000470000613d00000005070000290000001f027000390000000502200270000000200070008c0000000002004019000000000301043b00000004010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000004040000390000000705000029000004410000813d000000000002041b0000000102200039000000000012004b0000043d0000413d0000001f0070008c000004d80000a13d000500000007001d000000000040043f0000000001000414000001c20010009c000001c201008041000000c001100210000001ca011001c70000801002000039070306fe0000040f0000000100200190000000470000613d000000200200008a0000000502200180000000000101043b000004e40000c13d0000002003000039000004f10000013d0000000501000039000000000101041a000000ff00100190000004840000c13d0000000201000039000000000201041a0000000703000029000000000032001a0000056f0000413d0000000002320019000000000021041b0000000801000029000000000010043f000000200000043f0000000001000414000001c20010009c000001c201008041000000c001100210000001cc011001c70000801002000039070306fe0000040f0000000100200190000000470000613d000000000101043b000000000201041a00000007030000290000000002320019000000000021041b000000400100043d0000000000310435000001c20010009c000001c20100804100000040011002100000000002000414000001c20020009c000001c202008041000000c002200210000000000112019f000001ca011001c70000800d020000390000000303000039000002020400004100000000050000190000000806000029070306f90000040f0000000100200190000000470000613d000002ff0000013d000000400100043d00000200020000410000000000210435000001c20010009c000001c201008041000000400110021000000201011001c700000705000104300000000801000029000000000010043f0000000601000039000000200010043f0000000001000414000001c20010009c000001c201008041000000c001100210000001cc011001c70000801002000039070306fe0000040f0000000100200190000000470000613d000000000101043b0000000702000029000000000020043f000000200010043f0000000001000414000001c20010009c000001c201008041000000c001100210000001cc011001c70000801002000039070306fe0000040f0000000100200190000000470000613d000000000101043b000000000101041a000000ff00100190000002ff0000c13d0000000801000029000000000010043f0000000601000039000000200010043f0000000001000414000001c20010009c000001c201008041000000c001100210000001cc011001c70000801002000039070306fe0000040f0000000100200190000000470000613d000000000101043b0000000702000029000000000020043f000000200010043f0000000001000414000001c20010009c000001c201008041000000c001100210000001cc011001c70000801002000039070306fe0000040f0000000100200190000000470000613d000000000101043b000000000201041a000002130220019700000001022001bf000000000021041b0000000001000414000001c20010009c000001c201008041000000c001100210000001cd011001c70000800d020000390000000403000039000001ce04000041000000080500002900000007060000290000000007000411070306f90000040f0000000100200190000000470000613d000002ff0000013d000000000007004b0000000001000019000004dc0000613d00000000010504330000000302700210000002140220027f0000021402200167000000000121016f0000000102700210000000000121019f0000000303000029000005000000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000060600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000004ea0000c13d0000000505000029000000000052004b000004fc0000813d0000000302500210000000f80220018f000002140220027f000002140220016700000006033000290000000003030433000000000223016f000000000021041b000000010150021000000001011001bf00000003030000290000000404000039000000000014041b0000000501000039000000000201041a0000021302200197000000000021041b000001c501300197000700000001001d000000000010043f000001cb01000041000000200010043f0000000001000414000001c20010009c000001c201008041000000c001100210000001cc011001c70000801002000039070306fe0000040f0000000100200190000000470000613d000000000101043b000000000101041a000000ff00100190000005370000c13d0000000701000029000000000010043f000001cb01000041000000200010043f0000000001000414000001c20010009c000001c201008041000000c001100210000001cc011001c70000801002000039070306fe0000040f0000000100200190000000470000613d000000000101043b000000000201041a000002130220019700000001022001bf000000000021041b0000000001000414000001c20010009c000001c201008041000000c001100210000001cd011001c70000800d0200003900000004030000390000000007000411000001ce0400004100000000050000190000000706000029070306f90000040f0000000100200190000000470000613d0000000801000029000001c501100197000800000001001d000000000010043f000001cf01000041000000200010043f0000000001000414000001c20010009c000001c201008041000000c001100210000001cc011001c70000801002000039070306fe0000040f0000000100200190000000470000613d000000000101043b000000000101041a000000ff001001900000056a0000c13d0000000801000029000000000010043f000001cf01000041000000200010043f0000000001000414000001c20010009c000001c201008041000000c001100210000001cc011001c70000801002000039070306fe0000040f0000000100200190000000470000613d000000000101043b000000000201041a000002130220019700000001022001bf000000000021041b0000000001000414000001c20010009c000001c201008041000000c001100210000001cd011001c70000800d0200003900000004030000390000000007000411000001ce04000041000001d0050000410000000806000029070306f90000040f0000000100200190000000470000613d000000200100003900000100001004430000012000000443000001d101000041000007040001042e0000020301000041000000000010043f0000001101000039000000040010043f0000020401000041000007050001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000005840000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000024004b0000057d0000413d000000000321001900000000000304350000001f0220003900000212022001970000000001210019000000000001042d0000004005100039000000000045043500000020041000390000000000340435000001c50220019700000000002104350000006001100039000000000001042d0004000000000002000200000003001d000400000002001d000001c501100197000100000001001d000000000010043f0000000101000039000000200010043f0000000001000414000001c20010009c000001c201008041000000c001100210000001cc011001c70000801002000039070306fe0000040f0000000100200190000005dd0000613d000000000101043b0000000402000029000001c502200197000300000002001d000000000020043f000000200010043f0000000001000414000001c20010009c000001c201008041000000c001100210000001cc011001c70000801002000039070306fe0000040f0000000100200190000005dd0000613d0000000402000029000000000101043b000000000301041a000002140030009c000005dc0000613d0000000204000029000000000543004b000005df0000413d0000000101000029000000000001004b000005ef0000613d000400000005001d000000030000006b000005f20000613d000000000010043f0000000101000039000000200010043f0000000001000414000001c20010009c000001c201008041000000c001100210000001cc011001c70000801002000039070306fe0000040f0000000100200190000005dd0000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000001c20010009c000001c201008041000000c001100210000001cc011001c70000801002000039070306fe0000040f0000000100200190000005dd0000613d000000000101043b0000000402000029000000000021041b000000000001042d00000000010000190000070500010430000000400500043d000300000005001d0000021501000041000000000015043500000004015000390703058a0000040f00000003020000290000000001210049000001c20010009c000001c2010080410000006001100210000001c20020009c000001c2020080410000004002200210000000000121019f0000070500010430000000400100043d0000020d02000041000005f40000013d000000400100043d0000020c02000041000000000021043500000004021000390000000000020435000001c20010009c000001c201008041000000400110021000000204011001c700000705000104300001000000000002000100000001001d000000000010043f0000000601000039000000200010043f0000000001000414000001c20010009c000001c201008041000000c001100210000001cc011001c70000801002000039070306fe0000040f00000001002001900000061c0000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000001c20010009c000001c201008041000000c001100210000001cc011001c70000801002000039070306fe0000040f00000001002001900000061c0000613d000000000101043b000000000101041a000000ff001001900000061e0000613d000000000001042d00000000010000190000070500010430000000400100043d000000240210003900000001030000290000000000320435000001fe020000410000000000210435000000040210003900000000030004110000000000320435000001c20010009c000001c2010080410000004001100210000001ff011001c700000705000104300002000000000002000100000002001d000200000001001d000000000010043f0000000601000039000000200010043f0000000001000414000001c20010009c000001c201008041000000c001100210000001cc011001c70000801002000039070306fe0000040f00000001002001900000067b0000613d000000000101043b0000000102000029000001c502200197000100000002001d000000000020043f000000200010043f0000000001000414000001c20010009c000001c201008041000000c001100210000001cc011001c70000801002000039070306fe0000040f00000001002001900000067b0000613d000000000101043b000000000101041a000000ff001001900000067a0000613d0000000201000029000000000010043f0000000601000039000000200010043f0000000001000414000001c20010009c000001c201008041000000c001100210000001cc011001c70000801002000039070306fe0000040f00000001002001900000067b0000613d000000000101043b0000000102000029000000000020043f000000200010043f0000000001000414000001c20010009c000001c201008041000000c001100210000001cc011001c70000801002000039070306fe0000040f00000001002001900000067b0000613d000000000101043b000000000201041a0000021302200197000000000021041b0000000001000414000001c20010009c000001c201008041000000c001100210000001cd011001c70000800d0200003900000004030000390000000007000411000002160400004100000002050000290000000106000029070306f90000040f00000001002001900000067b0000613d000000000001042d000000000100001900000705000104300004000000000002000400000002001d000001c503100198000006c00000613d000100000001001d0000000501000039000000000101041a000000ff00100190000006ca0000c13d000000000030043f000000200000043f0000000001000414000001c20010009c000001c201008041000000c001100210000001cc011001c70000801002000039000300000003001d070306fe0000040f0000000100200190000006be0000613d0000000302000029000000000101043b000000000301041a0002000400300074000006d20000413d000000000020043f000000200000043f0000000001000414000001c20010009c000001c201008041000000c001100210000001cc011001c70000801002000039070306fe0000040f0000000100200190000006be0000613d000000000101043b0000000202000029000000000021041b0000000201000039000000000201041a00000004030000290000000002320049000000000021041b000000400100043d0000000000310435000001c20010009c000001c20100804100000040011002100000000002000414000001c20020009c000001c202008041000000c002200210000000000112019f000001ca011001c70000800d020000390000000303000039000002020400004100000003050000290000000006000019070306f90000040f0000000100200190000006be0000613d000000000001042d00000000010000190000070500010430000000400100043d000001f902000041000000000021043500000004021000390000000000020435000001c20010009c000001c201008041000000400110021000000204011001c70000070500010430000000400100043d00000200020000410000000000210435000001c20010009c000001c201008041000000400110021000000201011001c70000070500010430000000400200043d000300000002001d000002170100004100000000001204350000000401200039000000010200002900000004040000290703058a0000040f00000003020000290000000001210049000001c20010009c000001c2010080410000006001100210000001c20020009c000001c2020080410000004002200210000000000121019f0000070500010430000001c20010009c000001c2010080410000004001100210000001c20020009c000001c2020080410000006002200210000000000112019f0000000002000414000001c20020009c000001c202008041000000c002200210000000000112019f000001cd011001c70000801002000039070306fe0000040f0000000100200190000006f70000613d000000000101043b000000000001042d00000000010000190000070500010430000006fc002104210000000102000039000000000001042d0000000002000019000000000001042d00000701002104230000000102000039000000000001042d0000000002000019000000000001042d0000070300000432000007040001042e00000705000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf54524158204368697073000000000000000000000000000000000000000000005452415800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff020000000000000000000000000000000000002000000000000000000000000054cdd369e4e8a8515e52ca72ec816c2101831ad1f18bf44102ed171459c9b4f8020000000000000000000000000000000000004000000000000000000000000002000000000000000000000000000000000000000000000000000000000000002f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d3195c024b2ddd6d9b8f6c836aa52f67fe69376c8903d009b80229b3ce4425f519f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a60000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000005c975aba0000000000000000000000000000000000000000000000000000000095d89b4000000000000000000000000000000000000000000000000000000000a9059cba00000000000000000000000000000000000000000000000000000000d547741e00000000000000000000000000000000000000000000000000000000d547741f00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000d53913930000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000009c806fae00000000000000000000000000000000000000000000000000000000a217fddf0000000000000000000000000000000000000000000000000000000079cc678f0000000000000000000000000000000000000000000000000000000079cc6790000000000000000000000000000000000000000000000000000000008456cb590000000000000000000000000000000000000000000000000000000091d14854000000000000000000000000000000000000000000000000000000005c975abb000000000000000000000000000000000000000000000000000000006394bd1a0000000000000000000000000000000000000000000000000000000070a08231000000000000000000000000000000000000000000000000000000002f2ff15c000000000000000000000000000000000000000000000000000000003f4ba839000000000000000000000000000000000000000000000000000000003f4ba83a0000000000000000000000000000000000000000000000000000000040c10f190000000000000000000000000000000000000000000000000000000042966c68000000000000000000000000000000000000000000000000000000002f2ff15d00000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000036568abe0000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000248a9ca30000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000000000000000002000000080000000000000000008c379a0000000000000000000000000000000000000000000000000000000007472616e7366657273206e6f7420616c6c6f77656400000000000000000000000000000000000000000000000000000000000064000000800000000000000000ec442f0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000080000000000000000096c6fd1e000000000000000000000000000000000000000000000000000000001fe57706269ad9e361f47c6a08588cf5bd9016965d5f6e0e19df94d5398f66708a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b000000000000000000000000000000000000000000000000ffffffffffffff7f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258e2517d3f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044000000000000000000000000d93c0665000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef4e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000005db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa8dfc202b000000000000000000000000000000000000000000000000000000006697b23200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000080000000000000000000000000000000000000000000000000000000640000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925000000000000000000000000000000000000002000000000000000000000000094280d6200000000000000000000000000000000000000000000000000000000e602df0500000000000000000000000000000000000000000000000000000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff01ffc9a7000000000000000000000000000000000000000000000000000000007965db0b00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb8f41b200000000000000000000000000000000000000000000000000000000f6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171be450d38c000000000000000000000000000000000000000000000000000000008693584ea7583d81147aa5e4335030447a0fc8731ed55258824d06adb37fdaf5
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000003857ce692dd96f307d42a03ac5f33db2496cf82f0000000000000000000000003857ce692dd96f307d42a03ac5f33db2496cf82f
-----Decoded View---------------
Arg [0] : defaultAdmin (address): 0x3857CE692dd96f307d42A03Ac5F33DB2496cF82f
Arg [1] : minter (address): 0x3857CE692dd96f307d42A03Ac5F33DB2496cF82f
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000003857ce692dd96f307d42a03ac5f33db2496cf82f
Arg [1] : 0000000000000000000000003857ce692dd96f307d42a03ac5f33db2496cf82f
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.