ERC-20
Overview
Max Total Supply
587,255,226,194 MM
Holders
646 (0.00%)
Total Transfers
-
Market
Price
$0.00 @ 0.000000 POL
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 0 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 Name:
ERC1967Proxy
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2024-08-14 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.2; library Address { /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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://diligence.consensys.net/posts/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.5.11/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 functionCall(target, data, "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"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(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) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(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) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason 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 { // 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { assembly { r.slot := slot } } } interface IBeacon { /** * @dev Must return an address that can be used as a delegate call target. * * {BeaconProxy} will check that this address is a contract. */ function implementation() external view returns (address); } abstract contract Proxy { /** * @dev Delegates the current call to `implementation`. * * This function does not return to its internall call site, it will return directly to the external caller. */ function _delegate(address implementation) internal virtual { assembly { // Copy msg.data. We take full control of memory in this inline assembly // block because it will not return to Solidity code. We overwrite the // Solidity scratch pad at memory position 0. calldatacopy(0, 0, calldatasize()) // Call the implementation. // out and outsize are 0 because we don't know the size yet. let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0) // Copy the returned data. returndatacopy(0, 0, returndatasize()) switch result // delegatecall returns 0 on error. case 0 { revert(0, returndatasize()) } default { return(0, returndatasize()) } } } /** * @dev This is a virtual function that should be overriden so it returns the address to which the fallback function * and {_fallback} should delegate. */ function _implementation() internal view virtual returns (address); /** * @dev Delegates the current call to the address returned by `_implementation()`. * * This function does not return to its internall call site, it will return directly to the external caller. */ function _fallback() internal virtual { _beforeFallback(); _delegate(_implementation()); } /** * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other * function in the contract matches the call data. */ fallback() external payable virtual { _fallback(); } /** * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data * is empty. */ receive() external payable virtual { _fallback(); } /** * @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback` * call, or as part of the Solidity `fallback` or `receive` functions. * * If overriden should call `super._beforeFallback()`. */ function _beforeFallback() internal virtual {} } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } abstract contract ERC1967Upgrade { // This is the keccak-256 hash of "eip1967.proxy.rollback" subtracted by 1 bytes32 private constant _ROLLBACK_SLOT = 0x4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143; /** * @dev Storage slot with the address of the current implementation. * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is * validated in the constructor. */ bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; /** * @dev Emitted when the implementation is upgraded. */ event Upgraded(address indexed implementation); /** * @dev Returns the current implementation address. */ function _getImplementation() internal view returns (address) { return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; } /** * @dev Stores a new address in the EIP1967 implementation slot. */ function _setImplementation(address newImplementation) private { require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract"); StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; } /** * @dev Perform implementation upgrade * * Emits an {Upgraded} event. */ function _upgradeTo(address newImplementation) internal { _setImplementation(newImplementation); emit Upgraded(newImplementation); } /** * @dev Perform implementation upgrade with additional setup call. * * Emits an {Upgraded} event. */ function _upgradeToAndCall( address newImplementation, bytes memory data, bool forceCall ) internal { _upgradeTo(newImplementation); if (data.length > 0 || forceCall) { Address.functionDelegateCall(newImplementation, data); } } /** * @dev Perform implementation upgrade with security checks for UUPS proxies, and additional setup call. * * Emits an {Upgraded} event. */ function _upgradeToAndCallSecure( address newImplementation, bytes memory data, bool forceCall ) internal { address oldImplementation = _getImplementation(); // Initial upgrade and setup call _setImplementation(newImplementation); if (data.length > 0 || forceCall) { Address.functionDelegateCall(newImplementation, data); } // Perform rollback test if not already in progress StorageSlot.BooleanSlot storage rollbackTesting = StorageSlot.getBooleanSlot(_ROLLBACK_SLOT); if (!rollbackTesting.value) { // Trigger rollback using upgradeTo from the new implementation rollbackTesting.value = true; Address.functionDelegateCall( newImplementation, abi.encodeWithSignature("upgradeTo(address)", oldImplementation) ); rollbackTesting.value = false; // Check rollback was effective require(oldImplementation == _getImplementation(), "ERC1967Upgrade: upgrade breaks further upgrades"); // Finally reset to the new implementation and log the upgrade _upgradeTo(newImplementation); } } /** * @dev Storage slot with the admin of the contract. * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1, and is * validated in the constructor. */ bytes32 internal constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103; /** * @dev Emitted when the admin account has changed. */ event AdminChanged(address previousAdmin, address newAdmin); /** * @dev Returns the current admin. */ function _getAdmin() internal view returns (address) { return StorageSlot.getAddressSlot(_ADMIN_SLOT).value; } /** * @dev Stores a new address in the EIP1967 admin slot. */ function _setAdmin(address newAdmin) private { require(newAdmin != address(0), "ERC1967: new admin is the zero address"); StorageSlot.getAddressSlot(_ADMIN_SLOT).value = newAdmin; } /** * @dev Changes the admin of the proxy. * * Emits an {AdminChanged} event. */ function _changeAdmin(address newAdmin) internal { emit AdminChanged(_getAdmin(), newAdmin); _setAdmin(newAdmin); } /** * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy. * This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor. */ bytes32 internal constant _BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50; /** * @dev Emitted when the beacon is upgraded. */ event BeaconUpgraded(address indexed beacon); /** * @dev Returns the current beacon. */ function _getBeacon() internal view returns (address) { return StorageSlot.getAddressSlot(_BEACON_SLOT).value; } /** * @dev Stores a new beacon in the EIP1967 beacon slot. */ function _setBeacon(address newBeacon) private { require(Address.isContract(newBeacon), "ERC1967: new beacon is not a contract"); require( Address.isContract(IBeacon(newBeacon).implementation()), "ERC1967: beacon implementation is not a contract" ); StorageSlot.getAddressSlot(_BEACON_SLOT).value = newBeacon; } /** * @dev Perform beacon upgrade with additional setup call. Note: This upgrades the address of the beacon, it does * not upgrade the implementation contained in the beacon (see {UpgradeableBeacon-_setImplementation} for that). * * Emits a {BeaconUpgraded} event. */ function _upgradeBeaconToAndCall( address newBeacon, bytes memory data, bool forceCall ) internal { _setBeacon(newBeacon); emit BeaconUpgraded(newBeacon); if (data.length > 0 || forceCall) { Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data); } } } /** * @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an * implementation address that can be changed. This address is stored in storage in the location specified by * https://eips.ethereum.org/EIPS/eip-1967[EIP1967], so that it doesn't conflict with the storage layout of the * implementation behind the proxy. */ contract ERC1967Proxy is Proxy, ERC1967Upgrade, Ownable { /** * @dev Initializes the upgradeable proxy with an initial implementation specified by `_logic`. * * If `_data` is nonempty, it's used as data in a delegate call to `_logic`. This will typically be an encoded * function call, and allows initializating the storage of the proxy like a Solidity constructor. */ constructor(address _logic, bytes memory _data) payable { assert(_IMPLEMENTATION_SLOT == bytes32(uint256(keccak256("eip1967.proxy.implementation")) - 1)); _upgradeToAndCall(_logic, _data, false); } /** * @dev Returns the current implementation address. */ function _implementation() internal view virtual override returns (address impl) { return ERC1967Upgrade._getImplementation(); } function getImplementation() external view returns (address) { return _implementation(); } function upgrade(address _newImplementation) external onlyOwner { _upgradeTo(_newImplementation); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_logic","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"getImplementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newImplementation","type":"address"}],"name":"upgrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405260405162000ba838038062000ba88339810160408190526200002691620003be565b620000313362000094565b6200005e60017f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbd62000499565b60008051602062000b61833981519152146200007e576200007e620004bb565b6200008c82826000620000e4565b505062000524565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b620000ef8362000121565b600082511180620000fd5750805b156200011c576200011a83836200016360201b620002311760201c565b505b505050565b6200012c8162000194565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b60606200018b838360405180606001604052806027815260200162000b81602791396200025c565b90505b92915050565b620001aa816200033b60201b6200025d1760201c565b620002125760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b60648201526084015b60405180910390fd5b806200023b60008051602062000b6183398151915260001b6200034160201b620002631760201c565b80546001600160a01b0319166001600160a01b039290921691909117905550565b6060833b620002bd5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b606482015260840162000209565b600080856001600160a01b031685604051620002da9190620004d1565b600060405180830381855af49150503d806000811462000317576040519150601f19603f3d011682016040523d82523d6000602084013e6200031c565b606091505b5090925090506200032f82828662000344565b925050505b9392505050565b3b151590565b90565b606083156200035557508162000334565b825115620003665782518084602001fd5b8160405162461bcd60e51b8152600401620002099190620004ef565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620003b55781810151838201526020016200039b565b50506000910152565b60008060408385031215620003d257600080fd5b82516001600160a01b0381168114620003ea57600080fd5b60208401519092506001600160401b03808211156200040857600080fd5b818501915085601f8301126200041d57600080fd5b81518181111562000432576200043262000382565b604051601f8201601f19908116603f011681019083821181831017156200045d576200045d62000382565b816040528281528860208487010111156200047757600080fd5b6200048a83602083016020880162000398565b80955050505050509250929050565b818103818111156200018e57634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052600160045260246000fd5b60008251620004e581846020870162000398565b9190910192915050565b60208152600082518060208401526200051081604085016020870162000398565b601f01601f19169190910160400192915050565b61062d80620005346000396000f3fe60806040526004361061004e5760003560e01c80630900f01014610065578063715018a6146100855780638da5cb5b1461009a578063aaf10f42146100d0578063f2fde38b146100e55761005d565b3661005d5761005b610105565b005b61005b610105565b34801561007157600080fd5b5061005b6100803660046104ff565b610117565b34801561009157600080fd5b5061005b610156565b3480156100a657600080fd5b506000546001600160a01b03165b6040516001600160a01b03909116815260200160405180910390f35b3480156100dc57600080fd5b506100b461018a565b3480156100f157600080fd5b5061005b6101003660046104ff565b610199565b610115610110610266565b610299565b565b6000546001600160a01b0316331461014a5760405162461bcd60e51b815260040161014190610528565b60405180910390fd5b610153816102bd565b50565b6000546001600160a01b031633146101805760405162461bcd60e51b815260040161014190610528565b61011560006102fd565b6000610194610266565b905090565b6000546001600160a01b031633146101c35760405162461bcd60e51b815260040161014190610528565b6001600160a01b0381166102285760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610141565b610153816102fd565b606061025683836040518060600160405280602781526020016105d16027913961034d565b9392505050565b3b151590565b90565b60006101947f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b3660008037600080366000845af43d6000803e8080156102b8573d6000f35b3d6000fd5b6102c681610421565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6060833b6103ac5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b6064820152608401610141565b600080856001600160a01b0316856040516103c79190610581565b600060405180830381855af49150503d8060008114610402576040519150601f19603f3d011682016040523d82523d6000602084013e610407565b606091505b50915091506104178282866104c6565b9695505050505050565b803b6104855760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b6064820152608401610141565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b606083156104d5575081610256565b8251156104e55782518084602001fd5b8160405162461bcd60e51b8152600401610141919061059d565b60006020828403121561051157600080fd5b81356001600160a01b038116811461025657600080fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60005b83811015610578578181015183820152602001610560565b50506000910152565b6000825161059381846020870161055d565b9190910192915050565b60208152600082518060208401526105bc81604085016020870161055d565b601f01601f1916919091016040019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220d501282e0d068fac14e340a3d43c01e10892feed98afa9d66016e0e2b1959f3464736f6c63430008110033360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564000000000000000000000000092439fa75627067b195b0b14efe899bba527f21000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061004e5760003560e01c80630900f01014610065578063715018a6146100855780638da5cb5b1461009a578063aaf10f42146100d0578063f2fde38b146100e55761005d565b3661005d5761005b610105565b005b61005b610105565b34801561007157600080fd5b5061005b6100803660046104ff565b610117565b34801561009157600080fd5b5061005b610156565b3480156100a657600080fd5b506000546001600160a01b03165b6040516001600160a01b03909116815260200160405180910390f35b3480156100dc57600080fd5b506100b461018a565b3480156100f157600080fd5b5061005b6101003660046104ff565b610199565b610115610110610266565b610299565b565b6000546001600160a01b0316331461014a5760405162461bcd60e51b815260040161014190610528565b60405180910390fd5b610153816102bd565b50565b6000546001600160a01b031633146101805760405162461bcd60e51b815260040161014190610528565b61011560006102fd565b6000610194610266565b905090565b6000546001600160a01b031633146101c35760405162461bcd60e51b815260040161014190610528565b6001600160a01b0381166102285760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610141565b610153816102fd565b606061025683836040518060600160405280602781526020016105d16027913961034d565b9392505050565b3b151590565b90565b60006101947f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b3660008037600080366000845af43d6000803e8080156102b8573d6000f35b3d6000fd5b6102c681610421565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6060833b6103ac5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b6064820152608401610141565b600080856001600160a01b0316856040516103c79190610581565b600060405180830381855af49150503d8060008114610402576040519150601f19603f3d011682016040523d82523d6000602084013e610407565b606091505b50915091506104178282866104c6565b9695505050505050565b803b6104855760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b6064820152608401610141565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b606083156104d5575081610256565b8251156104e55782518084602001fd5b8160405162461bcd60e51b8152600401610141919061059d565b60006020828403121561051157600080fd5b81356001600160a01b038116811461025657600080fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60005b83811015610578578181015183820152602001610560565b50506000910152565b6000825161059381846020870161055d565b9190910192915050565b60208152600082518060208401526105bc81604085016020870161055d565b601f01601f1916919091016040019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220d501282e0d068fac14e340a3d43c01e10892feed98afa9d66016e0e2b1959f3464736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000092439fa75627067b195b0b14efe899bba527f21000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _logic (address): 0x092439fA75627067b195B0B14efE899bBA527f21
Arg [1] : _data (bytes): 0x
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000092439fa75627067b195b0b14efe899bba527f21
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
20910:1090:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11782:11;:9;:11::i;:::-;20910:1090;;11551:11;:9;:11::i;21884:113::-;;;;;;;;;;-1:-1:-1;21884:113:0;;;;;:::i;:::-;;:::i;13448:94::-;;;;;;;;;;;;;:::i;12797:87::-;;;;;;;;;;-1:-1:-1;12843:7:0;12870:6;-1:-1:-1;;;;;12870:6:0;12797:87;;;-1:-1:-1;;;;;469:32:1;;;451:51;;439:2;424:18;12797:87:0;;;;;;;21772:104;;;;;;;;;;;;;:::i;13697:192::-;;;;;;;;;;-1:-1:-1;13697:192:0;;;;;:::i;:::-;;:::i;11188:113::-;11265:28;11275:17;:15;:17::i;:::-;11265:9;:28::i;:::-;11188:113::o;21884:::-;12843:7;12870:6;-1:-1:-1;;;;;12870:6:0;12260:10;13017:23;13009:68;;;;-1:-1:-1;;;13009:68:0;;;;;;;:::i;:::-;;;;;;;;;21959:30:::1;21970:18;21959:10;:30::i;:::-;21884:113:::0;:::o;13448:94::-;12843:7;12870:6;-1:-1:-1;;;;;12870:6:0;12260:10;13017:23;13009:68;;;;-1:-1:-1;;;13009:68:0;;;;;;;:::i;:::-;13513:21:::1;13531:1;13513:9;:21::i;21772:104::-:0;21824:7;21851:17;:15;:17::i;:::-;21844:24;;21772:104;:::o;13697:192::-;12843:7;12870:6;-1:-1:-1;;;;;12870:6:0;12260:10;13017:23;13009:68;;;;-1:-1:-1;;;13009:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13786:22:0;::::1;13778:73;;;::::0;-1:-1:-1;;;13778:73:0;;1076:2:1;13778:73:0::1;::::0;::::1;1058:21:1::0;1115:2;1095:18;;;1088:30;1154:34;1134:18;;;1127:62;-1:-1:-1;;;1205:18:1;;;1198:36;1251:19;;13778:73:0::1;874:402:1::0;13778:73:0::1;13862:19;13872:8;13862:9;:19::i;6270:200::-:0;6353:12;6385:77;6406:6;6414:4;6385:77;;;;;;;;;;;;;;;;;:20;:77::i;:::-;6378:84;6270:200;-1:-1:-1;;;6270:200:0:o;676:387::-;999:20;1047:8;;;676:387::o;8364:151::-;8493:4;8364:151::o;21622:142::-;21689:12;21721:35;14597:66;14958:54;-1:-1:-1;;;;;14958:54:0;;14878:142;9778:918;10121:14;10118:1;10115;10102:34;10339:1;10336;10320:14;10317:1;10301:14;10294:5;10281:60;10418:16;10415:1;10412;10397:38;10458:6;10527:68;;;;10646:16;10643:1;10636:27;10527:68;10563:16;10560:1;10553:27;15491:155;15558:37;15577:17;15558:18;:37::i;:::-;15611:27;;-1:-1:-1;;;;;15611:27:0;;;;;;;;15491:155;:::o;13897:173::-;13953:16;13972:6;;-1:-1:-1;;;;;13989:17:0;;;-1:-1:-1;;;;;;13989:17:0;;;;;;14022:40;;13972:6;;;;;;;14022:40;;13953:16;14022:40;13942:128;13897:173;:::o;6664:396::-;6809:12;999:20;;6834:69;;;;-1:-1:-1;;;6834:69:0;;1483:2:1;6834:69:0;;;1465:21:1;1522:2;1502:18;;;1495:30;1561:34;1541:18;;;1534:62;-1:-1:-1;;;1612:18:1;;;1605:36;1658:19;;6834:69:0;1281:402:1;6834:69:0;6917:12;6931:23;6958:6;-1:-1:-1;;;;;6958:19:0;6978:4;6958:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6916:67;;;;7001:51;7018:7;7027:10;7039:12;7001:16;:51::i;:::-;6994:58;6664:396;-1:-1:-1;;;;;;6664:396:0:o;15116:262::-;999:20;;15190:95;;;;-1:-1:-1;;;15190:95:0;;2437:2:1;15190:95:0;;;2419:21:1;2476:2;2456:18;;;2449:30;2515:34;2495:18;;;2488:62;-1:-1:-1;;;2566:18:1;;;2559:43;2619:19;;15190:95:0;2235:409:1;15190:95:0;14597:66;15296:74;;-1:-1:-1;;;;;;15296:74:0;-1:-1:-1;;;;;15296:74:0;;;;;;;;;;15116:262::o;7288:712::-;7438:12;7467:7;7463:530;;;-1:-1:-1;7498:10:0;7491:17;;7463:530;7612:17;;:21;7608:374;;7810:10;7804:17;7871:15;7858:10;7854:2;7850:19;7843:44;7608:374;7953:12;7946:20;;-1:-1:-1;;;7946:20:0;;;;;;;;:::i;14:286:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;168:23;;-1:-1:-1;;;;;220:31:1;;210:42;;200:70;;266:1;263;256:12;513:356;715:2;697:21;;;734:18;;;727:30;793:34;788:2;773:18;;766:62;860:2;845:18;;513:356::o;1688:250::-;1773:1;1783:113;1797:6;1794:1;1791:13;1783:113;;;1873:11;;;1867:18;1854:11;;;1847:39;1819:2;1812:10;1783:113;;;-1:-1:-1;;1930:1:1;1912:16;;1905:27;1688:250::o;1943:287::-;2072:3;2110:6;2104:13;2126:66;2185:6;2180:3;2173:4;2165:6;2161:17;2126:66;:::i;:::-;2208:16;;;;;1943:287;-1:-1:-1;;1943:287:1:o;2649:396::-;2798:2;2787:9;2780:21;2761:4;2830:6;2824:13;2873:6;2868:2;2857:9;2853:18;2846:34;2889:79;2961:6;2956:2;2945:9;2941:18;2936:2;2928:6;2924:15;2889:79;:::i;:::-;3029:2;3008:15;-1:-1:-1;;3004:29:1;2989:45;;;;3036:2;2985:54;;2649:396;-1:-1:-1;;2649:396:1:o
Swarm Source
ipfs://d501282e0d068fac14e340a3d43c01e10892feed98afa9d66016e0e2b1959f34
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.