Feature Tip: Add private address tag to any address under My Name Tag !
Overview
Max Total Supply
992,464,664.450096285262061881 AL
Holders
6,937 (0.00%)
Total Transfers
-
Market
Price
$0.18 @ 0.000068 ETH (-2.05%)
Onchain Market Cap
$181,607,139.09
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
GameERC20Token
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol"; // contract GameERC20Token is ERC20Upgradeable { contract GameERC20Token is ERC20Upgradeable { address public owner; uint256 public cap; mapping(address => bool) public blackList; constructor( string memory name_, string memory symbol_, uint256 cap_, address owner_ ) initializer { __ERC20_init(name_, symbol_); owner = owner_; cap = cap_; } function initialize( string memory name_, string memory symbol_, uint256 cap_, address owner_ ) external initializer { // initialize inherited contracts __ERC20_init(name_, symbol_); owner = owner_; cap = cap_; } function mint(address account, uint256 amount) public onlyOwner { if (totalSupply() + amount > cap) amount = cap - totalSupply(); _mint(account, amount); } function lockAddress(address haker) public onlyOwner { blackList[haker] = true; } function unLockAddress(address haker) public onlyOwner { blackList[haker] = false; } function transferOwnership(address newOwner) public onlyOwner { owner = newOwner; } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal view override { require(!blackList[from], "black list error"); } modifier onlyOwner() { require(msg.sender == owner, "only owner"); _; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.2; import "../../utils/AddressUpgradeable.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ```solidity * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. * @custom:oz-retyped-from bool */ uint8 private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint8 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. * * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a * constructor. * * Emits an {Initialized} event. */ modifier initializer() { bool isTopLevelCall = !_initializing; require( (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1), "Initializable: contract is already initialized" ); _initialized = 1; if (isTopLevelCall) { _initializing = true; } _; if (isTopLevelCall) { _initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * A reinitializer may be used after the original initialization step. This is essential to configure modules that * are added through upgrades and that require initialization. * * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` * cannot be nested. If one is invoked in the context of another, execution will revert. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. * * WARNING: setting the version to 255 will prevent any future reinitialization. * * Emits an {Initialized} event. */ modifier reinitializer(uint8 version) { require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); _initialized = version; _initializing = true; _; _initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. * * Emits an {Initialized} event the first time it is successfully executed. */ function _disableInitializers() internal virtual { require(!_initializing, "Initializable: contract is initializing"); if (_initialized != type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } /** * @dev Returns the highest version that has been initialized. See {reinitializer}. */ function _getInitializedVersion() internal view returns (uint8) { return _initialized; } /** * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. */ function _isInitializing() internal view returns (bool) { return _initializing; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20Upgradeable.sol"; import "./extensions/IERC20MetadataUpgradeable.sol"; import "../../utils/ContextUpgradeable.sol"; import {Initializable} from "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.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 ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20Upgradeable, IERC20MetadataUpgradeable { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ function __ERC20_init(string memory name_, string memory symbol_) internal onlyInitializing { __ERC20_init_unchained(name_, symbol_); } function __ERC20_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the 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 override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `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. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[45] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20Upgradeable.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20MetadataUpgradeable is IERC20Upgradeable { /** * @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 v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20Upgradeable { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol) pragma solidity ^0.8.0; import {Initializable} from "../proxy/utils/Initializable.sol"; /** * @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 ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } 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; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
{ "evmVersion": "paris", "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"cap_","type":"uint256"},{"internalType":"address","name":"owner_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blackList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"cap_","type":"uint256"},{"internalType":"address","name":"owner_","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"haker","type":"address"}],"name":"lockAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"haker","type":"address"}],"name":"unLockAddress","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002dfa38038062002dfa833981810160405281019062000037919062000519565b60008060019054906101000a900460ff16159050808015620000695750600160008054906101000a900460ff1660ff16105b80620000a057506200008130620001e160201b60201c565b1580156200009f5750600160008054906101000a900460ff1660ff16145b5b620000e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000d99062000650565b60405180910390fd5b60016000806101000a81548160ff021916908360ff160217905550801562000120576001600060016101000a81548160ff0219169083151502179055505b6200013285856200020460201b60201c565b81606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550826066819055508015620001d65760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024986001604051620001cd9190620006cc565b60405180910390a15b505050505062000a9f565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff1662000256576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200024d906200075f565b60405180910390fd5b6200026882826200026c60201b60201c565b5050565b600060019054906101000a900460ff16620002be576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b5906200075f565b60405180910390fd5b8160369081620002cf9190620009b8565b508060379081620002e19190620009b8565b505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200034f8262000304565b810181811067ffffffffffffffff8211171562000371576200037062000315565b5b80604052505050565b600062000386620002e6565b905062000394828262000344565b919050565b600067ffffffffffffffff821115620003b757620003b662000315565b5b620003c28262000304565b9050602081019050919050565b60005b83811015620003ef578082015181840152602081019050620003d2565b60008484015250505050565b6000620004126200040c8462000399565b6200037a565b905082815260208101848484011115620004315762000430620002ff565b5b6200043e848285620003cf565b509392505050565b600082601f8301126200045e576200045d620002fa565b5b815162000470848260208601620003fb565b91505092915050565b6000819050919050565b6200048e8162000479565b81146200049a57600080fd5b50565b600081519050620004ae8162000483565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620004e182620004b4565b9050919050565b620004f381620004d4565b8114620004ff57600080fd5b50565b6000815190506200051381620004e8565b92915050565b60008060008060808587031215620005365762000535620002f0565b5b600085015167ffffffffffffffff811115620005575762000556620002f5565b5b620005658782880162000446565b945050602085015167ffffffffffffffff811115620005895762000588620002f5565b5b620005978782880162000446565b9350506040620005aa878288016200049d565b9250506060620005bd8782880162000502565b91505092959194509250565b600082825260208201905092915050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b600062000638602e83620005c9565b91506200064582620005da565b604082019050919050565b600060208201905081810360008301526200066b8162000629565b9050919050565b6000819050919050565b600060ff82169050919050565b6000819050919050565b6000620006b4620006ae620006a88462000672565b62000689565b6200067c565b9050919050565b620006c68162000693565b82525050565b6000602082019050620006e36000830184620006bb565b92915050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b600062000747602b83620005c9565b91506200075482620006e9565b604082019050919050565b600060208201905081810360008301526200077a8162000738565b9050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007d457607f821691505b602082108103620007ea57620007e96200078c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000815565b62000860868362000815565b95508019841693508086168417925050509392505050565b600062000899620008936200088d8462000479565b62000689565b62000479565b9050919050565b6000819050919050565b620008b58362000878565b620008cd620008c482620008a0565b84845462000822565b825550505050565b600090565b620008e4620008d5565b620008f1818484620008aa565b505050565b5b8181101562000919576200090d600082620008da565b600181019050620008f7565b5050565b601f82111562000968576200093281620007f0565b6200093d8462000805565b810160208510156200094d578190505b620009656200095c8562000805565b830182620008f6565b50505b505050565b600082821c905092915050565b60006200098d600019846008026200096d565b1980831691505092915050565b6000620009a883836200097a565b9150826002028217905092915050565b620009c38262000781565b67ffffffffffffffff811115620009df57620009de62000315565b5b620009eb8254620007bb565b620009f88282856200091d565b600060209050601f83116001811462000a30576000841562000a1b578287015190505b62000a2785826200099a565b86555062000a97565b601f19841662000a4086620007f0565b60005b8281101562000a6a5784890151825560018201915060208501945060208101905062000a43565b8683101562000a8a578489015162000a86601f8916826200097a565b8355505b6001600288020188555050505b505050505050565b61234b8062000aaf6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c80634838d165116100ad578063a9059cbb11610071578063a9059cbb14610332578063bd3a13f614610362578063dd62ed3e1461037e578063e0daa8c5146103ae578063f2fde38b146103ca57610121565b80634838d1651461026657806370a08231146102965780638da5cb5b146102c657806395d89b41146102e4578063a457c2d71461030257610121565b8063313ce567116100f4578063313ce567146101c257806334a90d02146101e0578063355274ea146101fc578063395093511461021a57806340c10f191461024a57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103e6565b60405161013b91906114ab565b60405180910390f35b61015e60048036038101906101599190611575565b610478565b60405161016b91906115d0565b60405180910390f35b61017c61049b565b60405161018991906115fa565b60405180910390f35b6101ac60048036038101906101a79190611615565b6104a5565b6040516101b991906115d0565b60405180910390f35b6101ca6104d4565b6040516101d79190611684565b60405180910390f35b6101fa60048036038101906101f5919061169f565b6104dd565b005b6102046105c8565b60405161021191906115fa565b60405180910390f35b610234600480360381019061022f9190611575565b6105ce565b60405161024191906115d0565b60405180910390f35b610264600480360381019061025f9190611575565b610605565b005b610280600480360381019061027b919061169f565b6106d7565b60405161028d91906115d0565b60405180910390f35b6102b060048036038101906102ab919061169f565b6106f7565b6040516102bd91906115fa565b60405180910390f35b6102ce610740565b6040516102db91906116db565b60405180910390f35b6102ec610766565b6040516102f991906114ab565b60405180910390f35b61031c60048036038101906103179190611575565b6107f8565b60405161032991906115d0565b60405180910390f35b61034c60048036038101906103479190611575565b61086f565b60405161035991906115d0565b60405180910390f35b61037c6004803603810190610377919061182b565b610892565b005b610398600480360381019061039391906118ca565b610a1e565b6040516103a591906115fa565b60405180910390f35b6103c860048036038101906103c3919061169f565b610aa5565b005b6103e460048036038101906103df919061169f565b610b90565b005b6060603680546103f590611939565b80601f016020809104026020016040519081016040528092919081815260200182805461042190611939565b801561046e5780601f106104435761010080835404028352916020019161046e565b820191906000526020600020905b81548152906001019060200180831161045157829003601f168201915b5050505050905090565b600080610483610c64565b9050610490818585610c6c565b600191505092915050565b6000603554905090565b6000806104b0610c64565b90506104bd858285610e35565b6104c8858585610ec1565b60019150509392505050565b60006012905090565b606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461056d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610564906119b6565b60405180910390fd5b6001606760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60665481565b6000806105d9610c64565b90506105fa8185856105eb8589610a1e565b6105f59190611a05565b610c6c565b600191505092915050565b606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068c906119b6565b60405180910390fd5b606654816106a161049b565b6106ab9190611a05565b11156106c9576106b961049b565b6066546106c69190611a39565b90505b6106d3828261113a565b5050565b60676020528060005260406000206000915054906101000a900460ff1681565b6000603360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606037805461077590611939565b80601f01602080910402602001604051908101604052809291908181526020018280546107a190611939565b80156107ee5780601f106107c3576101008083540402835291602001916107ee565b820191906000526020600020905b8154815290600101906020018083116107d157829003601f168201915b5050505050905090565b600080610803610c64565b905060006108118286610a1e565b905083811015610856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084d90611adf565b60405180910390fd5b6108638286868403610c6c565b60019250505092915050565b60008061087a610c64565b9050610887818585610ec1565b600191505092915050565b60008060019054906101000a900460ff161590508080156108c35750600160008054906101000a900460ff1660ff16105b806108f057506108d230611291565b1580156108ef5750600160008054906101000a900460ff1660ff16145b5b61092f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092690611b71565b60405180910390fd5b60016000806101000a81548160ff021916908360ff160217905550801561096c576001600060016101000a81548160ff0219169083151502179055505b61097685856112b4565b81606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550826066819055508015610a175760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024986001604051610a0e9190611bd6565b60405180910390a15b5050505050565b6000603460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2c906119b6565b60405180910390fd5b6000606760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c17906119b6565b60405180910390fd5b80606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd290611c63565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4190611cf5565b60405180910390fd5b80603460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e2891906115fa565b60405180910390a3505050565b6000610e418484610a1e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ebb5781811015610ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea490611d61565b60405180910390fd5b610eba8484848403610c6c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2790611df3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9690611e85565b60405180910390fd5b610faa838383611311565b6000603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102890611f17565b60405180910390fd5b818103603360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161112191906115fa565b60405180910390a36111348484846113a3565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a090611f83565b60405180910390fd5b6111b560008383611311565b80603560008282546111c79190611a05565b9250508190555080603360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161127991906115fa565b60405180910390a361128d600083836113a3565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff16611303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fa90612015565b60405180910390fd5b61130d82826113a8565b5050565b606760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561139e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139590612081565b60405180910390fd5b505050565b505050565b600060019054906101000a900460ff166113f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ee90612015565b60405180910390fd5b81603690816114069190612243565b5080603790816114169190612243565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561145557808201518184015260208101905061143a565b60008484015250505050565b6000601f19601f8301169050919050565b600061147d8261141b565b6114878185611426565b9350611497818560208601611437565b6114a081611461565b840191505092915050565b600060208201905081810360008301526114c58184611472565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061150c826114e1565b9050919050565b61151c81611501565b811461152757600080fd5b50565b60008135905061153981611513565b92915050565b6000819050919050565b6115528161153f565b811461155d57600080fd5b50565b60008135905061156f81611549565b92915050565b6000806040838503121561158c5761158b6114d7565b5b600061159a8582860161152a565b92505060206115ab85828601611560565b9150509250929050565b60008115159050919050565b6115ca816115b5565b82525050565b60006020820190506115e560008301846115c1565b92915050565b6115f48161153f565b82525050565b600060208201905061160f60008301846115eb565b92915050565b60008060006060848603121561162e5761162d6114d7565b5b600061163c8682870161152a565b935050602061164d8682870161152a565b925050604061165e86828701611560565b9150509250925092565b600060ff82169050919050565b61167e81611668565b82525050565b60006020820190506116996000830184611675565b92915050565b6000602082840312156116b5576116b46114d7565b5b60006116c38482850161152a565b91505092915050565b6116d581611501565b82525050565b60006020820190506116f060008301846116cc565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61173882611461565b810181811067ffffffffffffffff8211171561175757611756611700565b5b80604052505050565b600061176a6114cd565b9050611776828261172f565b919050565b600067ffffffffffffffff82111561179657611795611700565b5b61179f82611461565b9050602081019050919050565b82818337600083830152505050565b60006117ce6117c98461177b565b611760565b9050828152602081018484840111156117ea576117e96116fb565b5b6117f58482856117ac565b509392505050565b600082601f830112611812576118116116f6565b5b81356118228482602086016117bb565b91505092915050565b60008060008060808587031215611845576118446114d7565b5b600085013567ffffffffffffffff811115611863576118626114dc565b5b61186f878288016117fd565b945050602085013567ffffffffffffffff8111156118905761188f6114dc565b5b61189c878288016117fd565b93505060406118ad87828801611560565b92505060606118be8782880161152a565b91505092959194509250565b600080604083850312156118e1576118e06114d7565b5b60006118ef8582860161152a565b92505060206119008582860161152a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061195157607f821691505b6020821081036119645761196361190a565b5b50919050565b7f6f6e6c79206f776e657200000000000000000000000000000000000000000000600082015250565b60006119a0600a83611426565b91506119ab8261196a565b602082019050919050565b600060208201905081810360008301526119cf81611993565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611a108261153f565b9150611a1b8361153f565b9250828201905080821115611a3357611a326119d6565b5b92915050565b6000611a448261153f565b9150611a4f8361153f565b9250828203905081811115611a6757611a666119d6565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611ac9602583611426565b9150611ad482611a6d565b604082019050919050565b60006020820190508181036000830152611af881611abc565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000611b5b602e83611426565b9150611b6682611aff565b604082019050919050565b60006020820190508181036000830152611b8a81611b4e565b9050919050565b6000819050919050565b6000819050919050565b6000611bc0611bbb611bb684611b91565b611b9b565b611668565b9050919050565b611bd081611ba5565b82525050565b6000602082019050611beb6000830184611bc7565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611c4d602483611426565b9150611c5882611bf1565b604082019050919050565b60006020820190508181036000830152611c7c81611c40565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611cdf602283611426565b9150611cea82611c83565b604082019050919050565b60006020820190508181036000830152611d0e81611cd2565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611d4b601d83611426565b9150611d5682611d15565b602082019050919050565b60006020820190508181036000830152611d7a81611d3e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ddd602583611426565b9150611de882611d81565b604082019050919050565b60006020820190508181036000830152611e0c81611dd0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611e6f602383611426565b9150611e7a82611e13565b604082019050919050565b60006020820190508181036000830152611e9e81611e62565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611f01602683611426565b9150611f0c82611ea5565b604082019050919050565b60006020820190508181036000830152611f3081611ef4565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611f6d601f83611426565b9150611f7882611f37565b602082019050919050565b60006020820190508181036000830152611f9c81611f60565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000611fff602b83611426565b915061200a82611fa3565b604082019050919050565b6000602082019050818103600083015261202e81611ff2565b9050919050565b7f626c61636b206c697374206572726f7200000000000000000000000000000000600082015250565b600061206b601083611426565b915061207682612035565b602082019050919050565b6000602082019050818103600083015261209a8161205e565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026121037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826120c6565b61210d86836120c6565b95508019841693508086168417925050509392505050565b600061214061213b6121368461153f565b611b9b565b61153f565b9050919050565b6000819050919050565b61215a83612125565b61216e61216682612147565b8484546120d3565b825550505050565b600090565b612183612176565b61218e818484612151565b505050565b5b818110156121b2576121a760008261217b565b600181019050612194565b5050565b601f8211156121f7576121c8816120a1565b6121d1846120b6565b810160208510156121e0578190505b6121f46121ec856120b6565b830182612193565b50505b505050565b600082821c905092915050565b600061221a600019846008026121fc565b1980831691505092915050565b60006122338383612209565b9150826002028217905092915050565b61224c8261141b565b67ffffffffffffffff81111561226557612264611700565b5b61226f8254611939565b61227a8282856121b6565b600060209050601f8311600181146122ad576000841561229b578287015190505b6122a58582612227565b86555061230d565b601f1984166122bb866120a1565b60005b828110156122e3578489015182556001820191506020850194506020810190506122be565b8683101561230057848901516122fc601f891682612209565b8355505b6001600288020188555050505b50505050505056fea2646970667358221220baf634cc36bc1217fe48dbfbd01f60d04120de6d29f98d420d413aeb118aba5064736f6c63430008180033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000004ab4d43cc25c026f8047b76ed6b58203acfdbc4a0000000000000000000000000000000000000000000000000000000000000008417263686c6f6f740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002414c000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101215760003560e01c80634838d165116100ad578063a9059cbb11610071578063a9059cbb14610332578063bd3a13f614610362578063dd62ed3e1461037e578063e0daa8c5146103ae578063f2fde38b146103ca57610121565b80634838d1651461026657806370a08231146102965780638da5cb5b146102c657806395d89b41146102e4578063a457c2d71461030257610121565b8063313ce567116100f4578063313ce567146101c257806334a90d02146101e0578063355274ea146101fc578063395093511461021a57806340c10f191461024a57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103e6565b60405161013b91906114ab565b60405180910390f35b61015e60048036038101906101599190611575565b610478565b60405161016b91906115d0565b60405180910390f35b61017c61049b565b60405161018991906115fa565b60405180910390f35b6101ac60048036038101906101a79190611615565b6104a5565b6040516101b991906115d0565b60405180910390f35b6101ca6104d4565b6040516101d79190611684565b60405180910390f35b6101fa60048036038101906101f5919061169f565b6104dd565b005b6102046105c8565b60405161021191906115fa565b60405180910390f35b610234600480360381019061022f9190611575565b6105ce565b60405161024191906115d0565b60405180910390f35b610264600480360381019061025f9190611575565b610605565b005b610280600480360381019061027b919061169f565b6106d7565b60405161028d91906115d0565b60405180910390f35b6102b060048036038101906102ab919061169f565b6106f7565b6040516102bd91906115fa565b60405180910390f35b6102ce610740565b6040516102db91906116db565b60405180910390f35b6102ec610766565b6040516102f991906114ab565b60405180910390f35b61031c60048036038101906103179190611575565b6107f8565b60405161032991906115d0565b60405180910390f35b61034c60048036038101906103479190611575565b61086f565b60405161035991906115d0565b60405180910390f35b61037c6004803603810190610377919061182b565b610892565b005b610398600480360381019061039391906118ca565b610a1e565b6040516103a591906115fa565b60405180910390f35b6103c860048036038101906103c3919061169f565b610aa5565b005b6103e460048036038101906103df919061169f565b610b90565b005b6060603680546103f590611939565b80601f016020809104026020016040519081016040528092919081815260200182805461042190611939565b801561046e5780601f106104435761010080835404028352916020019161046e565b820191906000526020600020905b81548152906001019060200180831161045157829003601f168201915b5050505050905090565b600080610483610c64565b9050610490818585610c6c565b600191505092915050565b6000603554905090565b6000806104b0610c64565b90506104bd858285610e35565b6104c8858585610ec1565b60019150509392505050565b60006012905090565b606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461056d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610564906119b6565b60405180910390fd5b6001606760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60665481565b6000806105d9610c64565b90506105fa8185856105eb8589610a1e565b6105f59190611a05565b610c6c565b600191505092915050565b606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068c906119b6565b60405180910390fd5b606654816106a161049b565b6106ab9190611a05565b11156106c9576106b961049b565b6066546106c69190611a39565b90505b6106d3828261113a565b5050565b60676020528060005260406000206000915054906101000a900460ff1681565b6000603360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606037805461077590611939565b80601f01602080910402602001604051908101604052809291908181526020018280546107a190611939565b80156107ee5780601f106107c3576101008083540402835291602001916107ee565b820191906000526020600020905b8154815290600101906020018083116107d157829003601f168201915b5050505050905090565b600080610803610c64565b905060006108118286610a1e565b905083811015610856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084d90611adf565b60405180910390fd5b6108638286868403610c6c565b60019250505092915050565b60008061087a610c64565b9050610887818585610ec1565b600191505092915050565b60008060019054906101000a900460ff161590508080156108c35750600160008054906101000a900460ff1660ff16105b806108f057506108d230611291565b1580156108ef5750600160008054906101000a900460ff1660ff16145b5b61092f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092690611b71565b60405180910390fd5b60016000806101000a81548160ff021916908360ff160217905550801561096c576001600060016101000a81548160ff0219169083151502179055505b61097685856112b4565b81606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550826066819055508015610a175760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024986001604051610a0e9190611bd6565b60405180910390a15b5050505050565b6000603460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2c906119b6565b60405180910390fd5b6000606760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c17906119b6565b60405180910390fd5b80606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd290611c63565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4190611cf5565b60405180910390fd5b80603460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e2891906115fa565b60405180910390a3505050565b6000610e418484610a1e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ebb5781811015610ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea490611d61565b60405180910390fd5b610eba8484848403610c6c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2790611df3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9690611e85565b60405180910390fd5b610faa838383611311565b6000603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102890611f17565b60405180910390fd5b818103603360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161112191906115fa565b60405180910390a36111348484846113a3565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a090611f83565b60405180910390fd5b6111b560008383611311565b80603560008282546111c79190611a05565b9250508190555080603360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161127991906115fa565b60405180910390a361128d600083836113a3565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff16611303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fa90612015565b60405180910390fd5b61130d82826113a8565b5050565b606760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561139e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139590612081565b60405180910390fd5b505050565b505050565b600060019054906101000a900460ff166113f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ee90612015565b60405180910390fd5b81603690816114069190612243565b5080603790816114169190612243565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561145557808201518184015260208101905061143a565b60008484015250505050565b6000601f19601f8301169050919050565b600061147d8261141b565b6114878185611426565b9350611497818560208601611437565b6114a081611461565b840191505092915050565b600060208201905081810360008301526114c58184611472565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061150c826114e1565b9050919050565b61151c81611501565b811461152757600080fd5b50565b60008135905061153981611513565b92915050565b6000819050919050565b6115528161153f565b811461155d57600080fd5b50565b60008135905061156f81611549565b92915050565b6000806040838503121561158c5761158b6114d7565b5b600061159a8582860161152a565b92505060206115ab85828601611560565b9150509250929050565b60008115159050919050565b6115ca816115b5565b82525050565b60006020820190506115e560008301846115c1565b92915050565b6115f48161153f565b82525050565b600060208201905061160f60008301846115eb565b92915050565b60008060006060848603121561162e5761162d6114d7565b5b600061163c8682870161152a565b935050602061164d8682870161152a565b925050604061165e86828701611560565b9150509250925092565b600060ff82169050919050565b61167e81611668565b82525050565b60006020820190506116996000830184611675565b92915050565b6000602082840312156116b5576116b46114d7565b5b60006116c38482850161152a565b91505092915050565b6116d581611501565b82525050565b60006020820190506116f060008301846116cc565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61173882611461565b810181811067ffffffffffffffff8211171561175757611756611700565b5b80604052505050565b600061176a6114cd565b9050611776828261172f565b919050565b600067ffffffffffffffff82111561179657611795611700565b5b61179f82611461565b9050602081019050919050565b82818337600083830152505050565b60006117ce6117c98461177b565b611760565b9050828152602081018484840111156117ea576117e96116fb565b5b6117f58482856117ac565b509392505050565b600082601f830112611812576118116116f6565b5b81356118228482602086016117bb565b91505092915050565b60008060008060808587031215611845576118446114d7565b5b600085013567ffffffffffffffff811115611863576118626114dc565b5b61186f878288016117fd565b945050602085013567ffffffffffffffff8111156118905761188f6114dc565b5b61189c878288016117fd565b93505060406118ad87828801611560565b92505060606118be8782880161152a565b91505092959194509250565b600080604083850312156118e1576118e06114d7565b5b60006118ef8582860161152a565b92505060206119008582860161152a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061195157607f821691505b6020821081036119645761196361190a565b5b50919050565b7f6f6e6c79206f776e657200000000000000000000000000000000000000000000600082015250565b60006119a0600a83611426565b91506119ab8261196a565b602082019050919050565b600060208201905081810360008301526119cf81611993565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611a108261153f565b9150611a1b8361153f565b9250828201905080821115611a3357611a326119d6565b5b92915050565b6000611a448261153f565b9150611a4f8361153f565b9250828203905081811115611a6757611a666119d6565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611ac9602583611426565b9150611ad482611a6d565b604082019050919050565b60006020820190508181036000830152611af881611abc565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000611b5b602e83611426565b9150611b6682611aff565b604082019050919050565b60006020820190508181036000830152611b8a81611b4e565b9050919050565b6000819050919050565b6000819050919050565b6000611bc0611bbb611bb684611b91565b611b9b565b611668565b9050919050565b611bd081611ba5565b82525050565b6000602082019050611beb6000830184611bc7565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611c4d602483611426565b9150611c5882611bf1565b604082019050919050565b60006020820190508181036000830152611c7c81611c40565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611cdf602283611426565b9150611cea82611c83565b604082019050919050565b60006020820190508181036000830152611d0e81611cd2565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611d4b601d83611426565b9150611d5682611d15565b602082019050919050565b60006020820190508181036000830152611d7a81611d3e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ddd602583611426565b9150611de882611d81565b604082019050919050565b60006020820190508181036000830152611e0c81611dd0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611e6f602383611426565b9150611e7a82611e13565b604082019050919050565b60006020820190508181036000830152611e9e81611e62565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611f01602683611426565b9150611f0c82611ea5565b604082019050919050565b60006020820190508181036000830152611f3081611ef4565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611f6d601f83611426565b9150611f7882611f37565b602082019050919050565b60006020820190508181036000830152611f9c81611f60565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000611fff602b83611426565b915061200a82611fa3565b604082019050919050565b6000602082019050818103600083015261202e81611ff2565b9050919050565b7f626c61636b206c697374206572726f7200000000000000000000000000000000600082015250565b600061206b601083611426565b915061207682612035565b602082019050919050565b6000602082019050818103600083015261209a8161205e565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026121037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826120c6565b61210d86836120c6565b95508019841693508086168417925050509392505050565b600061214061213b6121368461153f565b611b9b565b61153f565b9050919050565b6000819050919050565b61215a83612125565b61216e61216682612147565b8484546120d3565b825550505050565b600090565b612183612176565b61218e818484612151565b505050565b5b818110156121b2576121a760008261217b565b600181019050612194565b5050565b601f8211156121f7576121c8816120a1565b6121d1846120b6565b810160208510156121e0578190505b6121f46121ec856120b6565b830182612193565b50505b505050565b600082821c905092915050565b600061221a600019846008026121fc565b1980831691505092915050565b60006122338383612209565b9150826002028217905092915050565b61224c8261141b565b67ffffffffffffffff81111561226557612264611700565b5b61226f8254611939565b61227a8282856121b6565b600060209050601f8311600181146122ad576000841561229b578287015190505b6122a58582612227565b86555061230d565b601f1984166122bb866120a1565b60005b828110156122e3578489015182556001820191506020850194506020810190506122be565b8683101561230057848901516122fc601f891682612209565b8355505b6001600288020188555050505b50505050505056fea2646970667358221220baf634cc36bc1217fe48dbfbd01f60d04120de6d29f98d420d413aeb118aba5064736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000004ab4d43cc25c026f8047b76ed6b58203acfdbc4a0000000000000000000000000000000000000000000000000000000000000008417263686c6f6f740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002414c000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Archloot
Arg [1] : symbol_ (string): AL
Arg [2] : cap_ (uint256): 1000000000000000000000000000
Arg [3] : owner_ (address): 0x4aB4D43Cc25c026F8047B76ED6b58203acFdbc4a
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [3] : 0000000000000000000000004ab4d43cc25c026f8047b76ed6b58203acfdbc4a
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 417263686c6f6f74000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 414c000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.