Contract Overview
Balance:
0 AVAX
AVAX Value:
$0.00
Txn Hash | Method |
Block
|
From
|
To
|
Value | [Txn Fee] | |||
---|---|---|---|---|---|---|---|---|---|
0x39c3909afc3189b0ecca172aa69bc8a33b837aea96436e28f0e1bd7265af9f01 | Initialize | 27558591 | 13 days 8 hrs ago | 0xd5004331bd2ff309fb39a39621fcdf31456bebf2 | IN | 0x5b9fb77690ef20f4c95988982e320c6581d47f27 | 0 AVAX | 0.00531003 | |
0x5278f7028928329c53a3bad0a3122b48628f5e71a66a85488fad5a38257f7e59 | 0x60806040 | 27558557 | 13 days 8 hrs ago | 0xd5004331bd2ff309fb39a39621fcdf31456bebf2 | IN | Create: AdminUpgradeabilityProxy | 0 AVAX | 0.0253429275 |
[ Download CSV Export ]
Contract Source Code Verified (Exact Match)
Contract Name:
AdminUpgradeabilityProxy
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at snowtrace.io on 2023-03-17 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.17; /** * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to * be specified by overriding the virtual {_implementation} function. * * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a * different contract through the {_delegate} function. * * The success and return data of the delegated call will be returned back to the caller of the proxy. */ 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 { // solhint-disable-next-line no-inline-assembly 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 { } } /** * @dev This abstract contract provides getters and event emitting update functions for * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots. * * _Available since v4.1._ * * @custom:oz-upgrades-unsafe-allow delegatecall */ 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 { _setImplementation(newImplementation); emit Upgraded(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 _setImplementation(newImplementation); emit Upgraded(newImplementation); } } /** * @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 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 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 { /** * @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(); } } /** * @dev This contract implements a proxy that is upgradeable by an admin. * * To avoid https://medium.com/nomic-labs-blog/malicious-backdoors-in-ethereum-proxies-62629adf3357[proxy selector * clashing], which can potentially be used in an attack, this contract uses the * https://blog.openzeppelin.com/the-transparent-proxy-pattern/[transparent proxy pattern]. This pattern implies two * things that go hand in hand: * * 1. If any account other than the admin calls the proxy, the call will be forwarded to the implementation, even if * that call matches one of the admin functions exposed by the proxy itself. * 2. If the admin calls the proxy, it can access the admin functions, but its calls will never be forwarded to the * implementation. If the admin tries to call a function on the implementation it will fail with an error that says * "admin cannot fallback to proxy target". * * These properties mean that the admin account can only be used for admin actions like upgrading the proxy or changing * the admin, so it's best if it's a dedicated account that is not used for anything else. This will avoid headaches due * to sudden errors when trying to call a function from the proxy implementation. * * Our recommendation is for the dedicated account to be an instance of the {ProxyAdmin} contract. If set up this way, * you should think of the `ProxyAdmin` instance as the real administrative interface of your proxy. */ contract TransparentUpgradeableProxy is ERC1967Proxy { /** * @dev Initializes an upgradeable proxy managed by `_admin`, backed by the implementation at `_logic`, and * optionally initialized with `_data` as explained in {ERC1967Proxy-constructor}. */ constructor(address _logic, address admin_, bytes memory _data) payable ERC1967Proxy(_logic, _data) { assert(_ADMIN_SLOT == bytes32(uint256(keccak256("eip1967.proxy.admin")) - 1)); _changeAdmin(admin_); } /** * @dev Modifier used internally that will delegate the call to the implementation unless the sender is the admin. */ modifier ifAdmin() { if (msg.sender == _getAdmin()) { _; } else { _fallback(); } } /** * @dev Returns the current admin. * * NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyAdmin}. * * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103` */ function admin() external ifAdmin returns (address admin_) { admin_ = _getAdmin(); } /** * @dev Returns the current implementation. * * NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyImplementation}. * * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. * `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc` */ function implementation() external ifAdmin returns (address implementation_) { implementation_ = _implementation(); } /** * @dev Changes the admin of the proxy. * * Emits an {AdminChanged} event. * * NOTE: Only the admin can call this function. See {ProxyAdmin-changeProxyAdmin}. */ function changeAdmin(address newAdmin) external virtual ifAdmin { _changeAdmin(newAdmin); } /** * @dev Upgrade the implementation of the proxy. * * NOTE: Only the admin can call this function. See {ProxyAdmin-upgrade}. */ function upgradeTo(address newImplementation) external ifAdmin { _upgradeToAndCall(newImplementation, bytes(""), false); } /** * @dev Upgrade the implementation of the proxy, and then call a function from the new implementation as specified * by `data`, which should be an encoded function call. This is useful to initialize new storage variables in the * proxied contract. * * NOTE: Only the admin can call this function. See {ProxyAdmin-upgradeAndCall}. */ function upgradeToAndCall(address newImplementation, bytes calldata data) external payable ifAdmin { _upgradeToAndCall(newImplementation, data, true); } /** * @dev Returns the current admin. */ function _admin() internal view virtual returns (address) { return _getAdmin(); } /** * @dev Makes sure the admin cannot access the fallback function. See {Proxy-_beforeFallback}. */ function _beforeFallback() internal virtual override { require(msg.sender != _getAdmin(), "TransparentUpgradeableProxy: admin cannot fallback to proxy target"); super._beforeFallback(); } } // Kept for backwards compatibility with older versions of Hardhat and Truffle plugins. contract AdminUpgradeabilityProxy is TransparentUpgradeableProxy { constructor(address logic, address admin, bytes memory data) payable TransparentUpgradeableProxy(logic, admin, data) {} } /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Base contract for building openzeppelin-upgrades compatible implementations for the {ERC1967Proxy}. It includes * publicly available upgrade functions that are called by the plugin and by the secure upgrade mechanism to verify * continuation of the upgradability. * * The {_authorizeUpgrade} function MUST be overridden to include access restriction to the upgrade mechanism. * * _Available since v4.1._ */ abstract contract UUPSUpgradeable is ERC1967Upgrade { function upgradeTo(address newImplementation) external virtual { _authorizeUpgrade(newImplementation); _upgradeToAndCallSecure(newImplementation, bytes(""), false); } function upgradeToAndCall(address newImplementation, bytes memory data) external payable virtual { _authorizeUpgrade(newImplementation); _upgradeToAndCallSecure(newImplementation, data, true); } function _authorizeUpgrade(address newImplementation) internal virtual; } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @dev This is an auxiliary contract meant to be assigned as the admin of a {TransparentUpgradeableProxy}. For an * explanation of why you would want to use this see the documentation for {TransparentUpgradeableProxy}. */ contract ProxyAdmin is Ownable { /** * @dev Returns the current implementation of `proxy`. * * Requirements: * * - This contract must be the admin of `proxy`. */ function getProxyImplementation(TransparentUpgradeableProxy proxy) public view virtual returns (address) { // We need to manually run the static call since the getter cannot be flagged as view // bytes4(keccak256("implementation()")) == 0x5c60da1b (bool success, bytes memory returndata) = address(proxy).staticcall(hex"5c60da1b"); require(success); return abi.decode(returndata, (address)); } /** * @dev Returns the current admin of `proxy`. * * Requirements: * * - This contract must be the admin of `proxy`. */ function getProxyAdmin(TransparentUpgradeableProxy proxy) public view virtual returns (address) { // We need to manually run the static call since the getter cannot be flagged as view // bytes4(keccak256("admin()")) == 0xf851a440 (bool success, bytes memory returndata) = address(proxy).staticcall(hex"f851a440"); require(success); return abi.decode(returndata, (address)); } /** * @dev Changes the admin of `proxy` to `newAdmin`. * * Requirements: * * - This contract must be the current admin of `proxy`. */ function changeProxyAdmin(TransparentUpgradeableProxy proxy, address newAdmin) public virtual onlyOwner { proxy.changeAdmin(newAdmin); } /** * @dev Upgrades `proxy` to `implementation`. See {TransparentUpgradeableProxy-upgradeTo}. * * Requirements: * * - This contract must be the admin of `proxy`. */ function upgrade(TransparentUpgradeableProxy proxy, address implementation) public virtual onlyOwner { proxy.upgradeTo(implementation); } /** * @dev Upgrades `proxy` to `implementation` and calls a function on the new implementation. See * {TransparentUpgradeableProxy-upgradeToAndCall}. * * Requirements: * * - This contract must be the admin of `proxy`. */ function upgradeAndCall(TransparentUpgradeableProxy proxy, address implementation, bytes memory data) public payable virtual onlyOwner { proxy.upgradeToAndCall{value: msg.value}(implementation, data); } } /** * @dev This is the interface that {BeaconProxy} expects of its beacon. */ 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); } /** * @dev Collection of functions related to the address type */ 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; // solhint-disable-next-line no-inline-assembly 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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Library for reading and writing primitive types to specific storage slots. * * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. * This library helps with reading and writing to such slots without the need for inline assembly. * * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * * Example usage to set ERC1967 implementation slot: * ``` * contract ERC1967 { * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; * * function _getImplementation() internal view returns (address) { * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } * * function _setImplementation(address newImplementation) internal { * require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract"); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` * * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._ */ 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 } } } abstract contract Proxiable is UUPSUpgradeable { function _authorizeUpgrade(address newImplementation) internal override { _beforeUpgrade(newImplementation); } function _beforeUpgrade(address newImplementation) internal virtual; } contract ChildOfProxiable is Proxiable { function _beforeUpgrade(address newImplementation) internal virtual override {} }
[{"inputs":[{"internalType":"address","name":"logic","type":"address"},{"internalType":"address","name":"admin","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":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"admin_","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"changeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"implementation_","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"}],"name":"upgradeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405260405162001a0f38038062001a0f8339818101604052810190620000299190620007c5565b828282828160017f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbd60001c62000060919062000879565b60001b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b14620000985762000097620008b4565b5b620000ac828260006200013560201b60201c565b505060017fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610460001c620000e0919062000879565b60001b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610360001b14620001185762000117620008b4565b5b6200012982620001b660201b60201c565b50505050505062000bd0565b62000146836200021460201b60201c565b8273ffffffffffffffffffffffffffffffffffffffff167fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b60405160405180910390a2600082511180620001975750805b15620001b157620001af8383620002e060201b60201c565b505b505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f620001e76200031660201b60201c565b82604051620001f8929190620008f4565b60405180910390a162000211816200037560201b60201c565b50565b62000225816200046060201b60201c565b62000267576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200025e90620009a8565b60405180910390fd5b806200029c7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b6200047360201b60201c565b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606200030e8383604051806060016040528060278152602001620019e8602791396200047d60201b60201c565b905092915050565b60006200034c7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610360001b6200047360201b60201c565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620003e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003de9062000a40565b60405180910390fd5b806200041c7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610360001b6200047360201b60201c565b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080823b905060008111915050919050565b6000819050919050565b606062000490846200046060201b60201c565b620004d2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004c99062000ad8565b60405180910390fd5b6000808573ffffffffffffffffffffffffffffffffffffffff1685604051620004fc919062000b47565b600060405180830381855af49150503d806000811462000539576040519150601f19603f3d011682016040523d82523d6000602084013e6200053e565b606091505b5091509150620005568282866200056160201b60201c565b925050509392505050565b606083156200057357829050620005c6565b600083511115620005875782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005bd919062000bac565b60405180910390fd5b9392505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200060e82620005e1565b9050919050565b620006208162000601565b81146200062c57600080fd5b50565b600081519050620006408162000615565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200069b8262000650565b810181811067ffffffffffffffff82111715620006bd57620006bc62000661565b5b80604052505050565b6000620006d2620005cd565b9050620006e0828262000690565b919050565b600067ffffffffffffffff82111562000703576200070262000661565b5b6200070e8262000650565b9050602081019050919050565b60005b838110156200073b5780820151818401526020810190506200071e565b60008484015250505050565b60006200075e6200075884620006e5565b620006c6565b9050828152602081018484840111156200077d576200077c6200064b565b5b6200078a8482856200071b565b509392505050565b600082601f830112620007aa57620007a962000646565b5b8151620007bc84826020860162000747565b91505092915050565b600080600060608486031215620007e157620007e0620005d7565b5b6000620007f1868287016200062f565b935050602062000804868287016200062f565b925050604084015167ffffffffffffffff811115620008285762000827620005dc565b5b620008368682870162000792565b9150509250925092565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620008868262000840565b9150620008938362000840565b9250828203905081811115620008ae57620008ad6200084a565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b620008ee8162000601565b82525050565b60006040820190506200090b6000830185620008e3565b6200091a6020830184620008e3565b9392505050565b600082825260208201905092915050565b7f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60008201527f6f74206120636f6e747261637400000000000000000000000000000000000000602082015250565b600062000990602d8362000921565b91506200099d8262000932565b604082019050919050565b60006020820190508181036000830152620009c38162000981565b9050919050565b7f455243313936373a206e65772061646d696e20697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062000a2860268362000921565b915062000a3582620009ca565b604082019050919050565b6000602082019050818103600083015262000a5b8162000a19565b9050919050565b7f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60008201527f6e74726163740000000000000000000000000000000000000000000000000000602082015250565b600062000ac060268362000921565b915062000acd8262000a62565b604082019050919050565b6000602082019050818103600083015262000af38162000ab1565b9050919050565b600081519050919050565b600081905092915050565b600062000b1d8262000afa565b62000b29818562000b05565b935062000b3b8185602086016200071b565b80840191505092915050565b600062000b55828462000b10565b915081905092915050565b600081519050919050565b600062000b788262000b60565b62000b84818562000921565b935062000b968185602086016200071b565b62000ba18162000650565b840191505092915050565b6000602082019050818103600083015262000bc8818462000b6b565b905092915050565b610e088062000be06000396000f3fe60806040526004361061004e5760003560e01c80633659cfe6146100675780634f1ef286146100905780635c60da1b146100ac5780638f283970146100d7578063f851a440146101005761005d565b3661005d5761005b61012b565b005b61006561012b565b005b34801561007357600080fd5b5061008e600480360381019061008991906108e8565b610145565b005b6100aa60048036038101906100a5919061097a565b6101ab565b005b3480156100b857600080fd5b506100c1610248565b6040516100ce91906109e9565b60405180910390f35b3480156100e357600080fd5b506100fe60048036038101906100f991906108e8565b61029f565b005b34801561010c57600080fd5b506101156102f3565b60405161012291906109e9565b60405180910390f35b61013361034a565b61014361013e6103c9565b6103d8565b565b61014d6103fe565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff160361019f5761019a81604051806020016040528060008152506000610455565b6101a8565b6101a761012b565b5b50565b6101b36103fe565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff160361023a576102358383838080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506001610455565b610243565b61024261012b565b5b505050565b60006102526103fe565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16036102935761028c6103c9565b905061029c565b61029b61012b565b5b90565b6102a76103fe565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16036102e7576102e2816104c4565b6102f0565b6102ef61012b565b5b50565b60006102fd6103fe565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff160361033e576103376103fe565b9050610347565b61034661012b565b5b90565b6103526103fe565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16036103bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103b690610aad565b60405180910390fd5b6103c7610510565b565b60006103d3610512565b905090565b3660008037600080366000845af43d6000803e80600081146103f9573d6000f35b3d6000fd5b600061042c7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610360001b610569565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61045e83610573565b8273ffffffffffffffffffffffffffffffffffffffff167fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b60405160405180910390a26000825111806104ae5750805b156104bf576104bd838361062c565b505b505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6104ed6103fe565b826040516104fc929190610acd565b60405180910390a161050d81610659565b50565b565b60006105407f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b610569565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000819050919050565b61057c81610739565b6105bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b290610b68565b60405180910390fd5b806105e87f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b610569565b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606106518383604051806060016040528060278152602001610dac6027913961074c565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036106c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106bf90610bfa565b60405180910390fd5b806106f57fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610360001b610569565b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080823b905060008111915050919050565b606061075784610739565b610796576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078d90610c8c565b60405180910390fd5b6000808573ffffffffffffffffffffffffffffffffffffffff16856040516107be9190610d1d565b600060405180830381855af49150503d80600081146107f9576040519150601f19603f3d011682016040523d82523d6000602084013e6107fe565b606091505b509150915061080e828286610819565b925050509392505050565b6060831561082957829050610879565b60008351111561083c5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108709190610d89565b60405180910390fd5b9392505050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006108b58261088a565b9050919050565b6108c5816108aa565b81146108d057600080fd5b50565b6000813590506108e2816108bc565b92915050565b6000602082840312156108fe576108fd610880565b5b600061090c848285016108d3565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261093a57610939610915565b5b8235905067ffffffffffffffff8111156109575761095661091a565b5b6020830191508360018202830111156109735761097261091f565b5b9250929050565b60008060006040848603121561099357610992610880565b5b60006109a1868287016108d3565b935050602084013567ffffffffffffffff8111156109c2576109c1610885565b5b6109ce86828701610924565b92509250509250925092565b6109e3816108aa565b82525050565b60006020820190506109fe60008301846109da565b92915050565b600082825260208201905092915050565b7f5472616e73706172656e745570677261646561626c6550726f78793a2061646d60008201527f696e2063616e6e6f742066616c6c6261636b20746f2070726f7879207461726760208201527f6574000000000000000000000000000000000000000000000000000000000000604082015250565b6000610a97604283610a04565b9150610aa282610a15565b606082019050919050565b60006020820190508181036000830152610ac681610a8a565b9050919050565b6000604082019050610ae260008301856109da565b610aef60208301846109da565b9392505050565b7f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60008201527f6f74206120636f6e747261637400000000000000000000000000000000000000602082015250565b6000610b52602d83610a04565b9150610b5d82610af6565b604082019050919050565b60006020820190508181036000830152610b8181610b45565b9050919050565b7f455243313936373a206e65772061646d696e20697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000610be4602683610a04565b9150610bef82610b88565b604082019050919050565b60006020820190508181036000830152610c1381610bd7565b9050919050565b7f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60008201527f6e74726163740000000000000000000000000000000000000000000000000000602082015250565b6000610c76602683610a04565b9150610c8182610c1a565b604082019050919050565b60006020820190508181036000830152610ca581610c69565b9050919050565b600081519050919050565b600081905092915050565b60005b83811015610ce0578082015181840152602081019050610cc5565b60008484015250505050565b6000610cf782610cac565b610d018185610cb7565b9350610d11818560208601610cc2565b80840191505092915050565b6000610d298284610cec565b915081905092915050565b600081519050919050565b6000601f19601f8301169050919050565b6000610d5b82610d34565b610d658185610a04565b9350610d75818560208601610cc2565b610d7e81610d3f565b840191505092915050565b60006020820190508181036000830152610da38184610d50565b90509291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220afcd1e6ff4729f1830aa69b993f093d6c09dd7ed790c4c45ddd48be80bea7b6564736f6c63430008130033416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c65640000000000000000000000000250cc4cd67e3c404366afdb5670f66504071e5f000000000000000000000000864ee5da3146d9fab919bc96def59eb67a549a6100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000250cc4cd67e3c404366afdb5670f66504071e5f000000000000000000000000864ee5da3146d9fab919bc96def59eb67a549a6100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : logic (address): 0x0250cc4cd67e3c404366afdb5670f66504071e5f
Arg [1] : admin (address): 0x864ee5da3146d9fab919bc96def59eb67a549a61
Arg [2] : data (bytes): 0x
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000250cc4cd67e3c404366afdb5670f66504071e5f
Arg [1] : 000000000000000000000000864ee5da3146d9fab919bc96def59eb67a549a61
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
16488:194:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2907:11;:9;:11::i;:::-;16488:194;;2675:11;:9;:11::i;:::-;16488:194;15206:136;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15727:166;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14589:131;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14934:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14020:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2311:113;2360:17;:15;:17::i;:::-;2388:28;2398:17;:15;:17::i;:::-;2388:9;:28::i;:::-;2311:113::o;15206:136::-;13475:11;:9;:11::i;:::-;13461:25;;:10;:25;;;13457:103;;15280:54:::1;15298:17;15317:9;;;;;;;;;;;::::0;15328:5:::1;15280:17;:54::i;:::-;13457:103:::0;;;13537:11;:9;:11::i;:::-;13457:103;15206:136;:::o;15727:166::-;13475:11;:9;:11::i;:::-;13461:25;;:10;:25;;;13457:103;;15837:48:::1;15855:17;15874:4;;15837:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15880:4;15837:17;:48::i;:::-;13457:103:::0;;;13537:11;:9;:11::i;:::-;13457:103;15727:166;;;:::o;14589:131::-;14641:23;13475:11;:9;:11::i;:::-;13461:25;;:10;:25;;;13457:103;;14695:17:::1;:15;:17::i;:::-;14677:35;;13457:103:::0;;;13537:11;:9;:11::i;:::-;13457:103;14589:131;:::o;14934:105::-;13475:11;:9;:11::i;:::-;13461:25;;:10;:25;;;13457:103;;15009:22:::1;15022:8;15009:12;:22::i;:::-;13457:103:::0;;;13537:11;:9;:11::i;:::-;13457:103;14934:105;:::o;14020:98::-;14063:14;13475:11;:9;:11::i;:::-;13461:25;;:10;:25;;;13457:103;;14099:11:::1;:9;:11::i;:::-;14090:20;;13457:103:::0;;;13537:11;:9;:11::i;:::-;13457:103;14020:98;:::o;16180:210::-;16266:11;:9;:11::i;:::-;16252:25;;:10;:25;;;16244:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;16359:23;:21;:23::i;:::-;16180:210::o;11151:142::-;11218:12;11250:35;:33;:35::i;:::-;11243:42;;11151:142;:::o;904:915::-;1304:14;1301:1;1298;1285:34;1522:1;1519;1503:14;1500:1;1484:14;1477:5;1464:60;1601:16;1598:1;1595;1580:38;1641:6;1715:1;1710:38;;;;1782:16;1779:1;1772:27;1710:38;1729:16;1726:1;1719:27;8216:124;8260:7;8287:39;7940:66;8314:11;;8287:26;:39::i;:::-;:45;;;;;;;;;;;;8280:52;;8216:124;:::o;5221:321::-;5330:37;5349:17;5330:18;:37::i;:::-;5392:17;5383:27;;;;;;;;;;;;5439:1;5425:4;:11;:15;:28;;;;5444:9;5425:28;5421:114;;;5470:53;5499:17;5518:4;5470:28;:53::i;:::-;;5421:114;5221:321;;;:::o;8749:138::-;8814:35;8827:11;:9;:11::i;:::-;8840:8;8814:35;;;;;;;:::i;:::-;;;;;;;;8860:19;8870:8;8860:9;:19::i;:::-;8749:138;:::o;3215:52::-;:::o;4312:142::-;4365:7;4392:48;4031:66;4419:20;;4392:26;:48::i;:::-;:54;;;;;;;;;;;;4385:61;;4312:142;:::o;33294:151::-;33355:21;33423:4;33413:14;;33294:151;;;:::o;4550:262::-;4632:37;4651:17;4632:18;:37::i;:::-;4624:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;4787:17;4730:48;4031:66;4757:20;;4730:26;:48::i;:::-;:54;;;:74;;;;;;;;;;;;;;;;;;4550:262;:::o;30190:200::-;30273:12;30305:77;30326:6;30334:4;30305:77;;;;;;;;;;;;;;;;;:20;:77::i;:::-;30298:84;;30190:200;;;;:::o;8427:204::-;8511:1;8491:22;;:8;:22;;;8483:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;8615:8;8567:39;7940:66;8594:11;;8567:26;:39::i;:::-;:45;;;:56;;;;;;;;;;;;;;;;;;8427:204;:::o;24505:422::-;24565:4;24773:12;24884:7;24872:20;24864:28;;24918:1;24911:4;:8;24904:15;;;24505:422;;;:::o;30584:423::-;30695:12;30728:18;30739:6;30728:10;:18::i;:::-;30720:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;30863:12;30877:23;30904:6;:19;;30924:4;30904:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30862:67;;;;30947:52;30965:7;30974:10;30986:12;30947:17;:52::i;:::-;30940:59;;;;30584:423;;;;;:::o;31015:742::-;31130:12;31159:7;31155:595;;;31190:10;31183:17;;;;31155:595;31324:1;31304:10;:17;:21;31300:439;;;31567:10;31561:17;31628:15;31615:10;31611:2;31607:19;31600:44;31300:439;31710:12;31703:20;;;;;;;;;;;:::i;:::-;;;;;;;;31015:742;;;;;;:::o;88:117:1:-;197:1;194;187:12;211:117;320:1;317;310:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:329::-;900:6;949:2;937:9;928:7;924:23;920:32;917:119;;;955:79;;:::i;:::-;917:119;1075:1;1100:53;1145:7;1136:6;1125:9;1121:22;1100:53;:::i;:::-;1090:63;;1046:117;841:329;;;;:::o;1176:117::-;1285:1;1282;1275:12;1299:117;1408:1;1405;1398:12;1422:117;1531:1;1528;1521:12;1558:552;1615:8;1625:6;1675:3;1668:4;1660:6;1656:17;1652:27;1642:122;;1683:79;;:::i;:::-;1642:122;1796:6;1783:20;1773:30;;1826:18;1818:6;1815:30;1812:117;;;1848:79;;:::i;:::-;1812:117;1962:4;1954:6;1950:17;1938:29;;2016:3;2008:4;2000:6;1996:17;1986:8;1982:32;1979:41;1976:128;;;2023:79;;:::i;:::-;1976:128;1558:552;;;;;:::o;2116:672::-;2195:6;2203;2211;2260:2;2248:9;2239:7;2235:23;2231:32;2228:119;;;2266:79;;:::i;:::-;2228:119;2386:1;2411:53;2456:7;2447:6;2436:9;2432:22;2411:53;:::i;:::-;2401:63;;2357:117;2541:2;2530:9;2526:18;2513:32;2572:18;2564:6;2561:30;2558:117;;;2594:79;;:::i;:::-;2558:117;2707:64;2763:7;2754:6;2743:9;2739:22;2707:64;:::i;:::-;2689:82;;;;2484:297;2116:672;;;;;:::o;2794:118::-;2881:24;2899:5;2881:24;:::i;:::-;2876:3;2869:37;2794:118;;:::o;2918:222::-;3011:4;3049:2;3038:9;3034:18;3026:26;;3062:71;3130:1;3119:9;3115:17;3106:6;3062:71;:::i;:::-;2918:222;;;;:::o;3146:169::-;3230:11;3264:6;3259:3;3252:19;3304:4;3299:3;3295:14;3280:29;;3146:169;;;;:::o;3321:290::-;3461:34;3457:1;3449:6;3445:14;3438:58;3530:34;3525:2;3517:6;3513:15;3506:59;3599:4;3594:2;3586:6;3582:15;3575:29;3321:290;:::o;3617:366::-;3759:3;3780:67;3844:2;3839:3;3780:67;:::i;:::-;3773:74;;3856:93;3945:3;3856:93;:::i;:::-;3974:2;3969:3;3965:12;3958:19;;3617:366;;;:::o;3989:419::-;4155:4;4193:2;4182:9;4178:18;4170:26;;4242:9;4236:4;4232:20;4228:1;4217:9;4213:17;4206:47;4270:131;4396:4;4270:131;:::i;:::-;4262:139;;3989:419;;;:::o;4414:332::-;4535:4;4573:2;4562:9;4558:18;4550:26;;4586:71;4654:1;4643:9;4639:17;4630:6;4586:71;:::i;:::-;4667:72;4735:2;4724:9;4720:18;4711:6;4667:72;:::i;:::-;4414:332;;;;;:::o;4752:232::-;4892:34;4888:1;4880:6;4876:14;4869:58;4961:15;4956:2;4948:6;4944:15;4937:40;4752:232;:::o;4990:366::-;5132:3;5153:67;5217:2;5212:3;5153:67;:::i;:::-;5146:74;;5229:93;5318:3;5229:93;:::i;:::-;5347:2;5342:3;5338:12;5331:19;;4990:366;;;:::o;5362:419::-;5528:4;5566:2;5555:9;5551:18;5543:26;;5615:9;5609:4;5605:20;5601:1;5590:9;5586:17;5579:47;5643:131;5769:4;5643:131;:::i;:::-;5635:139;;5362:419;;;:::o;5787:225::-;5927:34;5923:1;5915:6;5911:14;5904:58;5996:8;5991:2;5983:6;5979:15;5972:33;5787:225;:::o;6018:366::-;6160:3;6181:67;6245:2;6240:3;6181:67;:::i;:::-;6174:74;;6257:93;6346:3;6257:93;:::i;:::-;6375:2;6370:3;6366:12;6359:19;;6018:366;;;:::o;6390:419::-;6556:4;6594:2;6583:9;6579:18;6571:26;;6643:9;6637:4;6633:20;6629:1;6618:9;6614:17;6607:47;6671:131;6797:4;6671:131;:::i;:::-;6663:139;;6390:419;;;:::o;6815:225::-;6955:34;6951:1;6943:6;6939:14;6932:58;7024:8;7019:2;7011:6;7007:15;7000:33;6815:225;:::o;7046:366::-;7188:3;7209:67;7273:2;7268:3;7209:67;:::i;:::-;7202:74;;7285:93;7374:3;7285:93;:::i;:::-;7403:2;7398:3;7394:12;7387:19;;7046:366;;;:::o;7418:419::-;7584:4;7622:2;7611:9;7607:18;7599:26;;7671:9;7665:4;7661:20;7657:1;7646:9;7642:17;7635:47;7699:131;7825:4;7699:131;:::i;:::-;7691:139;;7418:419;;;:::o;7843:98::-;7894:6;7928:5;7922:12;7912:22;;7843:98;;;:::o;7947:147::-;8048:11;8085:3;8070:18;;7947:147;;;;:::o;8100:246::-;8181:1;8191:113;8205:6;8202:1;8199:13;8191:113;;;8290:1;8285:3;8281:11;8275:18;8271:1;8266:3;8262:11;8255:39;8227:2;8224:1;8220:10;8215:15;;8191:113;;;8338:1;8329:6;8324:3;8320:16;8313:27;8162:184;8100:246;;;:::o;8352:386::-;8456:3;8484:38;8516:5;8484:38;:::i;:::-;8538:88;8619:6;8614:3;8538:88;:::i;:::-;8531:95;;8635:65;8693:6;8688:3;8681:4;8674:5;8670:16;8635:65;:::i;:::-;8725:6;8720:3;8716:16;8709:23;;8460:278;8352:386;;;;:::o;8744:271::-;8874:3;8896:93;8985:3;8976:6;8896:93;:::i;:::-;8889:100;;9006:3;8999:10;;8744:271;;;;:::o;9021:99::-;9073:6;9107:5;9101:12;9091:22;;9021:99;;;:::o;9126:102::-;9167:6;9218:2;9214:7;9209:2;9202:5;9198:14;9194:28;9184:38;;9126:102;;;:::o;9234:377::-;9322:3;9350:39;9383:5;9350:39;:::i;:::-;9405:71;9469:6;9464:3;9405:71;:::i;:::-;9398:78;;9485:65;9543:6;9538:3;9531:4;9524:5;9520:16;9485:65;:::i;:::-;9575:29;9597:6;9575:29;:::i;:::-;9570:3;9566:39;9559:46;;9326:285;9234:377;;;;:::o;9617:313::-;9730:4;9768:2;9757:9;9753:18;9745:26;;9817:9;9811:4;9807:20;9803:1;9792:9;9788:17;9781:47;9845:78;9918:4;9909:6;9845:78;:::i;:::-;9837:86;;9617:313;;;;:::o
Swarm Source
ipfs://afcd1e6ff4729f1830aa69b993f093d6c09dd7ed790c4c45ddd48be80bea7b65
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.