Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
0 SEarlyNFT
Holders
209
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SEarlyNFTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ZKDrop
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "sismo-connect-solidity/SismoLib.sol"; import {ERC721} from "openzeppelin/token/ERC721/ERC721.sol"; import {Ownable} from "openzeppelin/access/Ownable.sol"; /** * @title ZKDrop * @author Sismo * @notice Gated ERC721 token minting contract thanks to Sismo Connect */ contract ZKDrop is ERC721, SismoConnect, Ownable { using SismoConnectHelper for SismoConnectVerifiedResult; struct Requests { AuthRequest[] auths; ClaimRequest[] claims; } bool public immutable IS_TRANSFERABLE; string private _baseTokenURI; Requests private _requests; error ERC721NonTransferable(); event BaseTokenURISet(string baseTokenURI); /** * @dev Sets all the parameters of the ERC721 token and all requirements to mint it thanks to Sismo Connect * @param name_ name of the ERC721 token * @param symbol_ symbol of the ERC721 token * @param baseURI_ base URI of the ERC721 token * @param appId_ id of the Sismo Connect App from which the proofs are required * @param isImpersonationMode_ if True, the ERC721 token can be minted thanks to impersonated proofs * @param authRequests_ list of dataSource ownerships required to mint the ERC721 token * @param claimRequests_ list of group memberships required to mint the ERC721 token * @param owner_ owner of this ZKDrop contract * @param isTransferable_ if False, the ERC721 token can NOT be transferred */ constructor( string memory name_, string memory symbol_, string memory baseURI_, bytes16 appId_, bool isImpersonationMode_, AuthRequest[] memory authRequests_, ClaimRequest[] memory claimRequests_, address owner_, bool isTransferable_ ) ERC721(name_, symbol_) SismoConnect(buildConfig(appId_, isImpersonationMode_)) { _transferOwnership(owner_); _setBaseTokenUri(baseURI_); _setAuths(authRequests_); _setClaims(claimRequests_); IS_TRANSFERABLE = isTransferable_; } /** * @dev Mints an ERC721 token to the given address if the Sismo Connect Response contains valid proofs * The tokenId of the ERC721 token is the vaultId of the Sismo Connect Response * The vaultId is the anonymous identifier of a user's vault for a specific app * VaultId = hash(userVaultSecret, appId) * The vaultId is used to prevent double spending of an ERC721 token for a specific appId * @param responseBytes Response from Sismo Connect in a bytes format * @param to Address of the receiver of the ERC721 token */ function claimWithSismoConnect(bytes memory responseBytes, address to) external { SismoConnectVerifiedResult memory result = verify({ responseBytes: responseBytes, auths: _requests.auths, claims: _requests.claims, signature: buildSignature({message: abi.encode(to)}) }); uint256 tokenId = result.getUserId(AuthType.VAULT); _mint(to, tokenId); } /** * @dev Returns the list of all requests required to mint the ERC721 token */ function getRequests() external view returns (Requests memory) { Requests memory requests = _requests; return requests; } /** * @dev Sets the base URI of the ERC721 token */ function setBaseTokenUri(string memory baseUri) external onlyOwner { _setBaseTokenUri(baseUri); } /** * @dev Returns the base URI of the ERC721 token */ function tokenURI(uint256) public view override returns (string memory) { return _baseTokenURI; } /** * @dev Sets the list of dataSource ownerships required to mint the ERC721 token */ function _setAuths(AuthRequest[] memory auths_) private { for (uint256 i = 0; i < auths_.length; i++) { _requests.auths.push(auths_[i]); } } /** * @dev Sets the list of group memberships required to mint the ERC721 token */ function _setClaims(ClaimRequest[] memory claims_) private { for (uint256 i = 0; i < claims_.length; i++) { _requests.claims.push(claims_[i]); } } /** * @dev Sets the base URI of the ERC721 token */ function _setBaseTokenUri(string memory baseUri) private { _baseTokenURI = baseUri; emit BaseTokenURISet(baseUri); } /** * @dev Overrides the transfer function of the ERC721 token * If the ERC721 token is not transferable, the transfer function reverts * Otherwise, the transfer function is executed * The _transfer function is used in transferFrom, safeTransferFrom and safeTransferFrom with data parameter * @param from Address of the sender of the ERC721 token * @param to Address of the receiver of the ERC721 token * @param tokenId Id of the ERC721 token */ function _transfer(address from, address to, uint256 tokenId) internal virtual override { if (!IS_TRANSFERABLE) { revert ERC721NonTransferable(); } ERC721._transfer(from, to, tokenId); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; /** * @title SismoLib * @author Sismo * @notice This is the Sismo Library of the Sismo protocol * It is designed to be the only contract that needs to be imported to integrate Sismo in a smart contract. * Its aim is to provide a set of sub-libraries with high-level functions to interact with the Sismo protocol easily. */ import "sismo-connect-onchain-verifier/src/libs/sismo-connect/SismoConnectLib.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _ownerOf(tokenId) != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll(address owner, address operator, bool approved) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {} /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such * that `ownerOf(tokenId)` is `a`. */ // solhint-disable-next-line func-name-mixedcase function __unsafe_increaseBalance(address account, uint256 amount) internal { _balances[account] += amount; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @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() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import {RequestBuilder, SismoConnectRequest, SismoConnectResponse, SismoConnectConfig} from "../utils/RequestBuilder.sol"; import {AuthRequestBuilder, AuthRequest, Auth, VerifiedAuth, AuthType} from "../utils/AuthRequestBuilder.sol"; import {ClaimRequestBuilder, ClaimRequest, Claim, VerifiedClaim, ClaimType} from "../utils/ClaimRequestBuilder.sol"; import {SignatureBuilder, SignatureRequest, Signature} from "../utils/SignatureBuilder.sol"; import {VaultConfig} from "../utils/Structs.sol"; import {ISismoConnectVerifier, SismoConnectVerifiedResult} from "../../interfaces/ISismoConnectVerifier.sol"; import {IAddressesProvider} from "../../periphery/interfaces/IAddressesProvider.sol"; import {SismoConnectHelper} from "../utils/SismoConnectHelper.sol"; import {IHydraS3Verifier} from "../../verifiers/IHydraS3Verifier.sol"; contract SismoConnect { uint256 public constant SISMO_CONNECT_LIB_VERSION = 2; IAddressesProvider public constant ADDRESSES_PROVIDER_V2 = IAddressesProvider(0x3Cd5334eB64ebBd4003b72022CC25465f1BFcEe6); ISismoConnectVerifier immutable _sismoConnectVerifier; // external libraries AuthRequestBuilder immutable _authRequestBuilder; ClaimRequestBuilder immutable _claimRequestBuilder; SignatureBuilder immutable _signatureBuilder; RequestBuilder immutable _requestBuilder; // config bytes16 public immutable APP_ID; bool public immutable IS_IMPERSONATION_MODE; constructor(SismoConnectConfig memory _config) { APP_ID = _config.appId; IS_IMPERSONATION_MODE = _config.vault.isImpersonationMode; _sismoConnectVerifier = ISismoConnectVerifier( ADDRESSES_PROVIDER_V2.get(string("sismoConnectVerifier-v1.1")) ); // external libraries _authRequestBuilder = AuthRequestBuilder( ADDRESSES_PROVIDER_V2.get(string("authRequestBuilder-v1.1")) ); _claimRequestBuilder = ClaimRequestBuilder( ADDRESSES_PROVIDER_V2.get(string("claimRequestBuilder-v1.1")) ); _signatureBuilder = SignatureBuilder( ADDRESSES_PROVIDER_V2.get(string("signatureBuilder-v1.1")) ); _requestBuilder = RequestBuilder(ADDRESSES_PROVIDER_V2.get(string("requestBuilder-v1.1"))); } // public function because it needs to be used by this contract and can be used by other contracts function config() public view returns (SismoConnectConfig memory) { return buildConfig(APP_ID, IS_IMPERSONATION_MODE); } function buildConfig(bytes16 appId) internal pure returns (SismoConnectConfig memory) { return SismoConnectConfig({appId: appId, vault: buildVaultConfig()}); } function buildConfig( bytes16 appId, bool isImpersonationMode ) internal pure returns (SismoConnectConfig memory) { return SismoConnectConfig({appId: appId, vault: buildVaultConfig(isImpersonationMode)}); } function buildVaultConfig() internal pure returns (VaultConfig memory) { return VaultConfig({isImpersonationMode: false}); } function buildVaultConfig(bool isImpersonationMode) internal pure returns (VaultConfig memory) { return VaultConfig({isImpersonationMode: isImpersonationMode}); } function verify( bytes memory responseBytes, AuthRequest memory auth, ClaimRequest memory claim, SignatureRequest memory signature, bytes16 namespace ) internal returns (SismoConnectVerifiedResult memory) { SismoConnectResponse memory response = abi.decode(responseBytes, (SismoConnectResponse)); SismoConnectRequest memory request = buildRequest(auth, claim, signature, namespace); return _sismoConnectVerifier.verify(response, request, config()); } function verify( bytes memory responseBytes, AuthRequest memory auth, ClaimRequest memory claim, bytes16 namespace ) internal returns (SismoConnectVerifiedResult memory) { SismoConnectResponse memory response = abi.decode(responseBytes, (SismoConnectResponse)); SismoConnectRequest memory request = buildRequest(auth, claim, namespace); return _sismoConnectVerifier.verify(response, request, config()); } function verify( bytes memory responseBytes, AuthRequest memory auth, SignatureRequest memory signature, bytes16 namespace ) internal returns (SismoConnectVerifiedResult memory) { SismoConnectResponse memory response = abi.decode(responseBytes, (SismoConnectResponse)); SismoConnectRequest memory request = buildRequest(auth, signature, namespace); return _sismoConnectVerifier.verify(response, request, config()); } function verify( bytes memory responseBytes, ClaimRequest memory claim, SignatureRequest memory signature, bytes16 namespace ) internal returns (SismoConnectVerifiedResult memory) { SismoConnectResponse memory response = abi.decode(responseBytes, (SismoConnectResponse)); SismoConnectRequest memory request = buildRequest(claim, signature, namespace); return _sismoConnectVerifier.verify(response, request, config()); } function verify( bytes memory responseBytes, AuthRequest memory auth, bytes16 namespace ) internal returns (SismoConnectVerifiedResult memory) { SismoConnectResponse memory response = abi.decode(responseBytes, (SismoConnectResponse)); SismoConnectRequest memory request = buildRequest(auth, namespace); return _sismoConnectVerifier.verify(response, request, config()); } function verify( bytes memory responseBytes, ClaimRequest memory claim, bytes16 namespace ) internal returns (SismoConnectVerifiedResult memory) { SismoConnectResponse memory response = abi.decode(responseBytes, (SismoConnectResponse)); SismoConnectRequest memory request = buildRequest(claim, namespace); return _sismoConnectVerifier.verify(response, request, config()); } function verify( bytes memory responseBytes, AuthRequest memory auth, ClaimRequest memory claim, SignatureRequest memory signature ) internal returns (SismoConnectVerifiedResult memory) { SismoConnectResponse memory response = abi.decode(responseBytes, (SismoConnectResponse)); SismoConnectRequest memory request = buildRequest(auth, claim, signature); return _sismoConnectVerifier.verify(response, request, config()); } function verify( bytes memory responseBytes, AuthRequest memory auth, ClaimRequest memory claim ) internal returns (SismoConnectVerifiedResult memory) { SismoConnectResponse memory response = abi.decode(responseBytes, (SismoConnectResponse)); SismoConnectRequest memory request = buildRequest(auth, claim); return _sismoConnectVerifier.verify(response, request, config()); } function verify( bytes memory responseBytes, AuthRequest memory auth, SignatureRequest memory signature ) internal returns (SismoConnectVerifiedResult memory) { SismoConnectResponse memory response = abi.decode(responseBytes, (SismoConnectResponse)); SismoConnectRequest memory request = buildRequest(auth, signature); return _sismoConnectVerifier.verify(response, request, config()); } function verify( bytes memory responseBytes, ClaimRequest memory claim, SignatureRequest memory signature ) internal returns (SismoConnectVerifiedResult memory) { SismoConnectResponse memory response = abi.decode(responseBytes, (SismoConnectResponse)); SismoConnectRequest memory request = buildRequest(claim, signature); return _sismoConnectVerifier.verify(response, request, config()); } function verify( bytes memory responseBytes, AuthRequest memory auth ) internal returns (SismoConnectVerifiedResult memory) { SismoConnectResponse memory response = abi.decode(responseBytes, (SismoConnectResponse)); SismoConnectRequest memory request = buildRequest(auth); return _sismoConnectVerifier.verify(response, request, config()); } function verify( bytes memory responseBytes, ClaimRequest memory claim ) internal returns (SismoConnectVerifiedResult memory) { SismoConnectResponse memory response = abi.decode(responseBytes, (SismoConnectResponse)); SismoConnectRequest memory request = buildRequest(claim); return _sismoConnectVerifier.verify(response, request, config()); } function verify( bytes memory responseBytes, SismoConnectRequest memory request ) internal returns (SismoConnectVerifiedResult memory) { SismoConnectResponse memory response = abi.decode(responseBytes, (SismoConnectResponse)); return _sismoConnectVerifier.verify(response, request, config()); } function verify( bytes memory responseBytes, AuthRequest[] memory auths, ClaimRequest[] memory claims, SignatureRequest memory signature, bytes16 namespace ) internal returns (SismoConnectVerifiedResult memory) { SismoConnectResponse memory response = abi.decode(responseBytes, (SismoConnectResponse)); SismoConnectRequest memory request = buildRequest(auths, claims, signature, namespace); return _sismoConnectVerifier.verify(response, request, config()); } function verify( bytes memory responseBytes, AuthRequest[] memory auths, ClaimRequest[] memory claims, bytes16 namespace ) internal returns (SismoConnectVerifiedResult memory) { SismoConnectResponse memory response = abi.decode(responseBytes, (SismoConnectResponse)); SismoConnectRequest memory request = buildRequest(auths, claims, namespace); return _sismoConnectVerifier.verify(response, request, config()); } function verify( bytes memory responseBytes, AuthRequest[] memory auths, SignatureRequest memory signature, bytes16 namespace ) internal returns (SismoConnectVerifiedResult memory) { SismoConnectResponse memory response = abi.decode(responseBytes, (SismoConnectResponse)); SismoConnectRequest memory request = buildRequest(auths, signature, namespace); return _sismoConnectVerifier.verify(response, request, config()); } function verify( bytes memory responseBytes, ClaimRequest[] memory claims, SignatureRequest memory signature, bytes16 namespace ) internal returns (SismoConnectVerifiedResult memory) { SismoConnectResponse memory response = abi.decode(responseBytes, (SismoConnectResponse)); SismoConnectRequest memory request = buildRequest(claims, signature, namespace); return _sismoConnectVerifier.verify(response, request, config()); } function verify( bytes memory responseBytes, AuthRequest[] memory auths, bytes16 namespace ) internal returns (SismoConnectVerifiedResult memory) { SismoConnectResponse memory response = abi.decode(responseBytes, (SismoConnectResponse)); SismoConnectRequest memory request = buildRequest(auths, namespace); return _sismoConnectVerifier.verify(response, request, config()); } function verify( bytes memory responseBytes, ClaimRequest[] memory claims, bytes16 namespace ) internal returns (SismoConnectVerifiedResult memory) { SismoConnectResponse memory response = abi.decode(responseBytes, (SismoConnectResponse)); SismoConnectRequest memory request = buildRequest(claims, namespace); return _sismoConnectVerifier.verify(response, request, config()); } function verify( bytes memory responseBytes, AuthRequest[] memory auths, ClaimRequest[] memory claims, SignatureRequest memory signature ) internal returns (SismoConnectVerifiedResult memory) { SismoConnectResponse memory response = abi.decode(responseBytes, (SismoConnectResponse)); SismoConnectRequest memory request = buildRequest(auths, claims, signature); return _sismoConnectVerifier.verify(response, request, config()); } function verify( bytes memory responseBytes, AuthRequest[] memory auths, ClaimRequest[] memory claims ) internal returns (SismoConnectVerifiedResult memory) { SismoConnectResponse memory response = abi.decode(responseBytes, (SismoConnectResponse)); SismoConnectRequest memory request = buildRequest(auths, claims); return _sismoConnectVerifier.verify(response, request, config()); } function verify( bytes memory responseBytes, AuthRequest[] memory auths, SignatureRequest memory signature ) internal returns (SismoConnectVerifiedResult memory) { SismoConnectResponse memory response = abi.decode(responseBytes, (SismoConnectResponse)); SismoConnectRequest memory request = buildRequest(auths, signature); return _sismoConnectVerifier.verify(response, request, config()); } function verify( bytes memory responseBytes, ClaimRequest[] memory claims, SignatureRequest memory signature ) internal returns (SismoConnectVerifiedResult memory) { SismoConnectResponse memory response = abi.decode(responseBytes, (SismoConnectResponse)); SismoConnectRequest memory request = buildRequest(claims, signature); return _sismoConnectVerifier.verify(response, request, config()); } function verify( bytes memory responseBytes, AuthRequest[] memory auths ) internal returns (SismoConnectVerifiedResult memory) { SismoConnectResponse memory response = abi.decode(responseBytes, (SismoConnectResponse)); SismoConnectRequest memory request = buildRequest(auths); return _sismoConnectVerifier.verify(response, request, config()); } function verify( bytes memory responseBytes, ClaimRequest[] memory claims ) internal returns (SismoConnectVerifiedResult memory) { SismoConnectResponse memory response = abi.decode(responseBytes, (SismoConnectResponse)); SismoConnectRequest memory request = buildRequest(claims); return _sismoConnectVerifier.verify(response, request, config()); } function buildClaim( bytes16 groupId, bytes16 groupTimestamp, uint256 value, ClaimType claimType, bytes memory extraData ) internal view returns (ClaimRequest memory) { return _claimRequestBuilder.build(groupId, groupTimestamp, value, claimType, extraData); } function buildClaim(bytes16 groupId) internal view returns (ClaimRequest memory) { return _claimRequestBuilder.build(groupId); } function buildClaim( bytes16 groupId, bytes16 groupTimestamp ) internal view returns (ClaimRequest memory) { return _claimRequestBuilder.build(groupId, groupTimestamp); } function buildClaim(bytes16 groupId, uint256 value) internal view returns (ClaimRequest memory) { return _claimRequestBuilder.build(groupId, value); } function buildClaim( bytes16 groupId, ClaimType claimType ) internal view returns (ClaimRequest memory) { return _claimRequestBuilder.build(groupId, claimType); } function buildClaim( bytes16 groupId, bytes memory extraData ) internal view returns (ClaimRequest memory) { return _claimRequestBuilder.build(groupId, extraData); } function buildClaim( bytes16 groupId, bytes16 groupTimestamp, uint256 value ) internal view returns (ClaimRequest memory) { return _claimRequestBuilder.build(groupId, groupTimestamp, value); } function buildClaim( bytes16 groupId, bytes16 groupTimestamp, ClaimType claimType ) internal view returns (ClaimRequest memory) { return _claimRequestBuilder.build(groupId, groupTimestamp, claimType); } function buildClaim( bytes16 groupId, bytes16 groupTimestamp, bytes memory extraData ) internal view returns (ClaimRequest memory) { return _claimRequestBuilder.build(groupId, groupTimestamp, extraData); } function buildClaim( bytes16 groupId, uint256 value, ClaimType claimType ) internal view returns (ClaimRequest memory) { return _claimRequestBuilder.build(groupId, value, claimType); } function buildClaim( bytes16 groupId, uint256 value, bytes memory extraData ) internal view returns (ClaimRequest memory) { return _claimRequestBuilder.build(groupId, value, extraData); } function buildClaim( bytes16 groupId, ClaimType claimType, bytes memory extraData ) internal view returns (ClaimRequest memory) { return _claimRequestBuilder.build(groupId, claimType, extraData); } function buildClaim( bytes16 groupId, bytes16 groupTimestamp, uint256 value, ClaimType claimType ) internal view returns (ClaimRequest memory) { return _claimRequestBuilder.build(groupId, groupTimestamp, value, claimType); } function buildClaim( bytes16 groupId, bytes16 groupTimestamp, uint256 value, bytes memory extraData ) internal view returns (ClaimRequest memory) { return _claimRequestBuilder.build(groupId, groupTimestamp, value, extraData); } function buildClaim( bytes16 groupId, bytes16 groupTimestamp, ClaimType claimType, bytes memory extraData ) internal view returns (ClaimRequest memory) { return _claimRequestBuilder.build(groupId, groupTimestamp, claimType, extraData); } function buildClaim( bytes16 groupId, uint256 value, ClaimType claimType, bytes memory extraData ) internal view returns (ClaimRequest memory) { return _claimRequestBuilder.build(groupId, value, claimType, extraData); } function buildClaim( bytes16 groupId, bool isOptional, bool isSelectableByUser ) internal view returns (ClaimRequest memory) { return _claimRequestBuilder.build(groupId, isOptional, isSelectableByUser); } function buildClaim( bytes16 groupId, bytes16 groupTimestamp, bool isOptional, bool isSelectableByUser ) internal view returns (ClaimRequest memory) { return _claimRequestBuilder.build(groupId, groupTimestamp, isOptional, isSelectableByUser); } function buildClaim( bytes16 groupId, uint256 value, bool isOptional, bool isSelectableByUser ) internal view returns (ClaimRequest memory) { return _claimRequestBuilder.build(groupId, value, isOptional, isSelectableByUser); } function buildClaim( bytes16 groupId, ClaimType claimType, bool isOptional, bool isSelectableByUser ) internal view returns (ClaimRequest memory) { return _claimRequestBuilder.build(groupId, claimType, isOptional, isSelectableByUser); } function buildClaim( bytes16 groupId, bytes16 groupTimestamp, uint256 value, bool isOptional, bool isSelectableByUser ) internal view returns (ClaimRequest memory) { return _claimRequestBuilder.build(groupId, groupTimestamp, value, isOptional, isSelectableByUser); } function buildClaim( bytes16 groupId, bytes16 groupTimestamp, ClaimType claimType, bool isOptional, bool isSelectableByUser ) internal view returns (ClaimRequest memory) { return _claimRequestBuilder.build( groupId, groupTimestamp, claimType, isOptional, isSelectableByUser ); } function buildClaim( bytes16 groupId, uint256 value, ClaimType claimType, bool isOptional, bool isSelectableByUser ) internal view returns (ClaimRequest memory) { return _claimRequestBuilder.build(groupId, value, claimType, isOptional, isSelectableByUser); } function buildClaim( bytes16 groupId, bytes16 groupTimestamp, uint256 value, ClaimType claimType, bool isOptional, bool isSelectableByUser ) internal view returns (ClaimRequest memory) { return _claimRequestBuilder.build( groupId, groupTimestamp, value, claimType, isOptional, isSelectableByUser ); } function buildAuth( AuthType authType, bool isAnon, uint256 userId, bytes memory extraData ) internal view returns (AuthRequest memory) { return _authRequestBuilder.build(authType, isAnon, userId, extraData); } function buildAuth(AuthType authType) internal view returns (AuthRequest memory) { return _authRequestBuilder.build(authType); } function buildAuth(AuthType authType, bool isAnon) internal view returns (AuthRequest memory) { return _authRequestBuilder.build(authType, isAnon); } function buildAuth(AuthType authType, uint256 userId) internal view returns (AuthRequest memory) { return _authRequestBuilder.build(authType, userId); } function buildAuth( AuthType authType, bytes memory extraData ) internal view returns (AuthRequest memory) { return _authRequestBuilder.build(authType, extraData); } function buildAuth( AuthType authType, bool isAnon, uint256 userId ) internal view returns (AuthRequest memory) { return _authRequestBuilder.build(authType, isAnon, userId); } function buildAuth( AuthType authType, bool isAnon, bytes memory extraData ) internal view returns (AuthRequest memory) { return _authRequestBuilder.build(authType, isAnon, extraData); } function buildAuth( AuthType authType, uint256 userId, bytes memory extraData ) internal view returns (AuthRequest memory) { return _authRequestBuilder.build(authType, userId, extraData); } function buildAuth( AuthType authType, bool isOptional, bool isSelectableByUser ) internal view returns (AuthRequest memory) { return _authRequestBuilder.build(authType, isOptional, isSelectableByUser); } function buildAuth( AuthType authType, bool isOptional, bool isSelectableByUser, uint256 userId ) internal view returns (AuthRequest memory) { return _authRequestBuilder.build(authType, isOptional, isSelectableByUser, userId); } function buildAuth( AuthType authType, bool isAnon, bool isOptional, bool isSelectableByUser ) internal view returns (AuthRequest memory) { return _authRequestBuilder.build(authType, isAnon, isOptional, isSelectableByUser); } function buildAuth( AuthType authType, uint256 userId, bool isOptional ) internal view returns (AuthRequest memory) { return _authRequestBuilder.build(authType, userId, isOptional); } function buildAuth( AuthType authType, bool isAnon, uint256 userId, bool isOptional ) internal view returns (AuthRequest memory) { return _authRequestBuilder.build(authType, isAnon, userId, isOptional); } function buildSignature(bytes memory message) internal view returns (SignatureRequest memory) { return _signatureBuilder.build(message); } function buildSignature( bytes memory message, bool isSelectableByUser ) internal view returns (SignatureRequest memory) { return _signatureBuilder.build(message, isSelectableByUser); } function buildSignature( bytes memory message, bytes memory extraData ) external view returns (SignatureRequest memory) { return _signatureBuilder.build(message, extraData); } function buildSignature( bytes memory message, bool isSelectableByUser, bytes memory extraData ) external view returns (SignatureRequest memory) { return _signatureBuilder.build(message, isSelectableByUser, extraData); } function buildSignature(bool isSelectableByUser) external view returns (SignatureRequest memory) { return _signatureBuilder.build(isSelectableByUser); } function buildSignature( bool isSelectableByUser, bytes memory extraData ) external view returns (SignatureRequest memory) { return _signatureBuilder.build(isSelectableByUser, extraData); } function buildRequest( AuthRequest memory auth, ClaimRequest memory claim, SignatureRequest memory signature ) internal view returns (SismoConnectRequest memory) { return _requestBuilder.build(auth, claim, signature); } function buildRequest( AuthRequest memory auth, ClaimRequest memory claim ) internal view returns (SismoConnectRequest memory) { return _requestBuilder.build(auth, claim, _GET_EMPTY_SIGNATURE_REQUEST()); } function buildRequest( ClaimRequest memory claim, SignatureRequest memory signature ) internal view returns (SismoConnectRequest memory) { return _requestBuilder.build(claim, signature); } function buildRequest( AuthRequest memory auth, SignatureRequest memory signature ) internal view returns (SismoConnectRequest memory) { return _requestBuilder.build(auth, signature); } function buildRequest( ClaimRequest memory claim ) internal view returns (SismoConnectRequest memory) { return _requestBuilder.build(claim, _GET_EMPTY_SIGNATURE_REQUEST()); } function buildRequest( AuthRequest memory auth ) internal view returns (SismoConnectRequest memory) { return _requestBuilder.build(auth, _GET_EMPTY_SIGNATURE_REQUEST()); } function buildRequest( AuthRequest memory auth, ClaimRequest memory claim, SignatureRequest memory signature, bytes16 namespace ) internal view returns (SismoConnectRequest memory) { return _requestBuilder.build(auth, claim, signature, namespace); } function buildRequest( AuthRequest memory auth, ClaimRequest memory claim, bytes16 namespace ) internal view returns (SismoConnectRequest memory) { return _requestBuilder.build(auth, claim, _GET_EMPTY_SIGNATURE_REQUEST(), namespace); } function buildRequest( ClaimRequest memory claim, SignatureRequest memory signature, bytes16 namespace ) internal view returns (SismoConnectRequest memory) { return _requestBuilder.build(claim, signature, namespace); } function buildRequest( AuthRequest memory auth, SignatureRequest memory signature, bytes16 namespace ) internal view returns (SismoConnectRequest memory) { return _requestBuilder.build(auth, signature, namespace); } function buildRequest( ClaimRequest memory claim, bytes16 namespace ) internal view returns (SismoConnectRequest memory) { return _requestBuilder.build(claim, _GET_EMPTY_SIGNATURE_REQUEST(), namespace); } function buildRequest( AuthRequest memory auth, bytes16 namespace ) internal view returns (SismoConnectRequest memory) { return _requestBuilder.build(auth, _GET_EMPTY_SIGNATURE_REQUEST(), namespace); } function buildRequest( AuthRequest[] memory auths, ClaimRequest[] memory claims, SignatureRequest memory signature ) internal view returns (SismoConnectRequest memory) { return _requestBuilder.build(auths, claims, signature); } function buildRequest( AuthRequest[] memory auths, ClaimRequest[] memory claims ) internal view returns (SismoConnectRequest memory) { return _requestBuilder.build(auths, claims, _GET_EMPTY_SIGNATURE_REQUEST()); } function buildRequest( ClaimRequest[] memory claims, SignatureRequest memory signature ) internal view returns (SismoConnectRequest memory) { return _requestBuilder.build(claims, signature); } function buildRequest( AuthRequest[] memory auths, SignatureRequest memory signature ) internal view returns (SismoConnectRequest memory) { return _requestBuilder.build(auths, signature); } function buildRequest( ClaimRequest[] memory claims ) internal view returns (SismoConnectRequest memory) { return _requestBuilder.build(claims, _GET_EMPTY_SIGNATURE_REQUEST()); } function buildRequest( AuthRequest[] memory auths ) internal view returns (SismoConnectRequest memory) { return _requestBuilder.build(auths, _GET_EMPTY_SIGNATURE_REQUEST()); } function buildRequest( AuthRequest[] memory auths, ClaimRequest[] memory claims, SignatureRequest memory signature, bytes16 namespace ) internal view returns (SismoConnectRequest memory) { return _requestBuilder.build(auths, claims, signature, namespace); } function buildRequest( AuthRequest[] memory auths, ClaimRequest[] memory claims, bytes16 namespace ) internal view returns (SismoConnectRequest memory) { return _requestBuilder.build(auths, claims, _GET_EMPTY_SIGNATURE_REQUEST(), namespace); } function buildRequest( ClaimRequest[] memory claims, SignatureRequest memory signature, bytes16 namespace ) internal view returns (SismoConnectRequest memory) { return _requestBuilder.build(claims, signature, namespace); } function buildRequest( AuthRequest[] memory auths, SignatureRequest memory signature, bytes16 namespace ) internal view returns (SismoConnectRequest memory) { return _requestBuilder.build(auths, signature, namespace); } function buildRequest( ClaimRequest[] memory claims, bytes16 namespace ) internal view returns (SismoConnectRequest memory) { return _requestBuilder.build(claims, _GET_EMPTY_SIGNATURE_REQUEST(), namespace); } function buildRequest( AuthRequest[] memory auths, bytes16 namespace ) internal view returns (SismoConnectRequest memory) { return _requestBuilder.build(auths, _GET_EMPTY_SIGNATURE_REQUEST(), namespace); } function _GET_EMPTY_SIGNATURE_REQUEST() internal view returns (SignatureRequest memory) { return _signatureBuilder.buildEmpty(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// 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 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 * * 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 v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; import "./math/SignedMath.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value)))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "./Structs.sol"; import {SignatureBuilder} from "./SignatureBuilder.sol"; contract RequestBuilder { // default value for namespace bytes16 public constant DEFAULT_NAMESPACE = bytes16(keccak256("main")); // default value for a signature request SignatureRequest DEFAULT_SIGNATURE_REQUEST = SignatureRequest({ message: "MESSAGE_SELECTED_BY_USER", isSelectableByUser: false, extraData: "" }); function build( AuthRequest memory auth, ClaimRequest memory claim, SignatureRequest memory signature, bytes16 namespace ) external pure returns (SismoConnectRequest memory) { AuthRequest[] memory auths = new AuthRequest[](1); auths[0] = auth; ClaimRequest[] memory claims = new ClaimRequest[](1); claims[0] = claim; return ( SismoConnectRequest({ namespace: namespace, auths: auths, claims: claims, signature: signature }) ); } function build( AuthRequest memory auth, ClaimRequest memory claim, bytes16 namespace ) external view returns (SismoConnectRequest memory) { AuthRequest[] memory auths = new AuthRequest[](1); auths[0] = auth; ClaimRequest[] memory claims = new ClaimRequest[](1); claims[0] = claim; return ( SismoConnectRequest({ namespace: namespace, auths: auths, claims: claims, signature: DEFAULT_SIGNATURE_REQUEST }) ); } function build( ClaimRequest memory claim, SignatureRequest memory signature, bytes16 namespace ) external pure returns (SismoConnectRequest memory) { AuthRequest[] memory auths = new AuthRequest[](0); ClaimRequest[] memory claims = new ClaimRequest[](1); claims[0] = claim; return ( SismoConnectRequest({ namespace: namespace, auths: auths, claims: claims, signature: signature }) ); } function build( ClaimRequest memory claim, bytes16 namespace ) external view returns (SismoConnectRequest memory) { AuthRequest[] memory auths = new AuthRequest[](0); ClaimRequest[] memory claims = new ClaimRequest[](1); claims[0] = claim; return ( SismoConnectRequest({ namespace: namespace, auths: auths, claims: claims, signature: DEFAULT_SIGNATURE_REQUEST }) ); } function build( AuthRequest memory auth, SignatureRequest memory signature, bytes16 namespace ) external pure returns (SismoConnectRequest memory) { AuthRequest[] memory auths = new AuthRequest[](1); auths[0] = auth; ClaimRequest[] memory claims = new ClaimRequest[](0); return ( SismoConnectRequest({ namespace: namespace, auths: auths, claims: claims, signature: signature }) ); } function build( AuthRequest memory auth, bytes16 namespace ) external view returns (SismoConnectRequest memory) { AuthRequest[] memory auths = new AuthRequest[](1); auths[0] = auth; ClaimRequest[] memory claims = new ClaimRequest[](0); return ( SismoConnectRequest({ namespace: namespace, auths: auths, claims: claims, signature: DEFAULT_SIGNATURE_REQUEST }) ); } function build( AuthRequest memory auth, ClaimRequest memory claim, SignatureRequest memory signature ) external pure returns (SismoConnectRequest memory) { AuthRequest[] memory auths = new AuthRequest[](1); auths[0] = auth; ClaimRequest[] memory claims = new ClaimRequest[](1); claims[0] = claim; return ( SismoConnectRequest({ namespace: DEFAULT_NAMESPACE, auths: auths, claims: claims, signature: signature }) ); } function build( AuthRequest memory auth, ClaimRequest memory claim ) external view returns (SismoConnectRequest memory) { AuthRequest[] memory auths = new AuthRequest[](1); auths[0] = auth; ClaimRequest[] memory claims = new ClaimRequest[](1); claims[0] = claim; return ( SismoConnectRequest({ namespace: DEFAULT_NAMESPACE, auths: auths, claims: claims, signature: DEFAULT_SIGNATURE_REQUEST }) ); } function build( AuthRequest memory auth, SignatureRequest memory signature ) external pure returns (SismoConnectRequest memory) { AuthRequest[] memory auths = new AuthRequest[](1); auths[0] = auth; ClaimRequest[] memory claims = new ClaimRequest[](0); return ( SismoConnectRequest({ namespace: DEFAULT_NAMESPACE, auths: auths, claims: claims, signature: signature }) ); } function build(AuthRequest memory auth) external view returns (SismoConnectRequest memory) { AuthRequest[] memory auths = new AuthRequest[](1); auths[0] = auth; ClaimRequest[] memory claims = new ClaimRequest[](0); return ( SismoConnectRequest({ namespace: DEFAULT_NAMESPACE, auths: auths, claims: claims, signature: DEFAULT_SIGNATURE_REQUEST }) ); } function build( ClaimRequest memory claim, SignatureRequest memory signature ) external pure returns (SismoConnectRequest memory) { AuthRequest[] memory auths = new AuthRequest[](0); ClaimRequest[] memory claims = new ClaimRequest[](1); claims[0] = claim; return ( SismoConnectRequest({ namespace: DEFAULT_NAMESPACE, auths: auths, claims: claims, signature: signature }) ); } function build(ClaimRequest memory claim) external view returns (SismoConnectRequest memory) { AuthRequest[] memory auths = new AuthRequest[](0); ClaimRequest[] memory claims = new ClaimRequest[](1); claims[0] = claim; return ( SismoConnectRequest({ namespace: DEFAULT_NAMESPACE, auths: auths, claims: claims, signature: DEFAULT_SIGNATURE_REQUEST }) ); } // build with arrays for auths and claims function build( AuthRequest[] memory auths, ClaimRequest[] memory claims, SignatureRequest memory signature, bytes16 namespace ) external pure returns (SismoConnectRequest memory) { return ( SismoConnectRequest({ namespace: namespace, auths: auths, claims: claims, signature: signature }) ); } function build( AuthRequest[] memory auths, ClaimRequest[] memory claims, bytes16 namespace ) external view returns (SismoConnectRequest memory) { return ( SismoConnectRequest({ namespace: namespace, auths: auths, claims: claims, signature: DEFAULT_SIGNATURE_REQUEST }) ); } function build( ClaimRequest[] memory claims, SignatureRequest memory signature, bytes16 namespace ) external pure returns (SismoConnectRequest memory) { AuthRequest[] memory auths = new AuthRequest[](0); return ( SismoConnectRequest({ namespace: namespace, auths: auths, claims: claims, signature: signature }) ); } function build( ClaimRequest[] memory claims, bytes16 namespace ) external view returns (SismoConnectRequest memory) { AuthRequest[] memory auths = new AuthRequest[](0); return ( SismoConnectRequest({ namespace: namespace, auths: auths, claims: claims, signature: DEFAULT_SIGNATURE_REQUEST }) ); } function build( AuthRequest[] memory auths, SignatureRequest memory signature, bytes16 namespace ) external pure returns (SismoConnectRequest memory) { ClaimRequest[] memory claims = new ClaimRequest[](0); return ( SismoConnectRequest({ namespace: namespace, auths: auths, claims: claims, signature: signature }) ); } function build( AuthRequest[] memory auths, bytes16 namespace ) external view returns (SismoConnectRequest memory) { ClaimRequest[] memory claims = new ClaimRequest[](0); return ( SismoConnectRequest({ namespace: namespace, auths: auths, claims: claims, signature: DEFAULT_SIGNATURE_REQUEST }) ); } function build( AuthRequest[] memory auths, ClaimRequest[] memory claims, SignatureRequest memory signature ) external pure returns (SismoConnectRequest memory) { return ( SismoConnectRequest({ namespace: DEFAULT_NAMESPACE, auths: auths, claims: claims, signature: signature }) ); } function build( AuthRequest[] memory auths, ClaimRequest[] memory claims ) external view returns (SismoConnectRequest memory) { return ( SismoConnectRequest({ namespace: DEFAULT_NAMESPACE, auths: auths, claims: claims, signature: DEFAULT_SIGNATURE_REQUEST }) ); } function build( AuthRequest[] memory auths, SignatureRequest memory signature ) external pure returns (SismoConnectRequest memory) { ClaimRequest[] memory claims = new ClaimRequest[](0); return ( SismoConnectRequest({ namespace: DEFAULT_NAMESPACE, auths: auths, claims: claims, signature: signature }) ); } function build(AuthRequest[] memory auths) external view returns (SismoConnectRequest memory) { ClaimRequest[] memory claims = new ClaimRequest[](0); return ( SismoConnectRequest({ namespace: DEFAULT_NAMESPACE, auths: auths, claims: claims, signature: DEFAULT_SIGNATURE_REQUEST }) ); } function build( ClaimRequest[] memory claims, SignatureRequest memory signature ) external pure returns (SismoConnectRequest memory) { AuthRequest[] memory auths = new AuthRequest[](0); return ( SismoConnectRequest({ namespace: DEFAULT_NAMESPACE, auths: auths, claims: claims, signature: signature }) ); } function build(ClaimRequest[] memory claims) external view returns (SismoConnectRequest memory) { AuthRequest[] memory auths = new AuthRequest[](0); return ( SismoConnectRequest({ namespace: DEFAULT_NAMESPACE, auths: auths, claims: claims, signature: DEFAULT_SIGNATURE_REQUEST }) ); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "./Structs.sol"; contract AuthRequestBuilder { // default values for Auth Request bool public constant DEFAULT_AUTH_REQUEST_IS_ANON = false; uint256 public constant DEFAULT_AUTH_REQUEST_USER_ID = 0; bool public constant DEFAULT_AUTH_REQUEST_IS_OPTIONAL = false; bytes public constant DEFAULT_AUTH_REQUEST_EXTRA_DATA = ""; error InvalidUserIdAndIsSelectableByUserAuthType(); error InvalidUserIdAndAuthType(); function build( AuthType authType, bool isAnon, uint256 userId, bool isOptional, bool isSelectableByUser, bytes memory extraData ) external pure returns (AuthRequest memory) { return _build({ authType: authType, isAnon: isAnon, userId: userId, isOptional: isOptional, isSelectableByUser: isSelectableByUser, extraData: extraData }); } function build( AuthType authType, bool isAnon, uint256 userId, bytes memory extraData ) external pure returns (AuthRequest memory) { return _build({ authType: authType, isAnon: isAnon, userId: userId, isOptional: DEFAULT_AUTH_REQUEST_IS_OPTIONAL, extraData: extraData }); } function build(AuthType authType) external pure returns (AuthRequest memory) { return _build({ authType: authType, isAnon: DEFAULT_AUTH_REQUEST_IS_ANON, userId: DEFAULT_AUTH_REQUEST_USER_ID, isOptional: DEFAULT_AUTH_REQUEST_IS_OPTIONAL, extraData: DEFAULT_AUTH_REQUEST_EXTRA_DATA }); } function build(AuthType authType, bool isAnon) external pure returns (AuthRequest memory) { return _build({ authType: authType, isAnon: isAnon, userId: DEFAULT_AUTH_REQUEST_USER_ID, isOptional: DEFAULT_AUTH_REQUEST_IS_OPTIONAL, extraData: DEFAULT_AUTH_REQUEST_EXTRA_DATA }); } function build(AuthType authType, uint256 userId) external pure returns (AuthRequest memory) { return _build({ authType: authType, isAnon: DEFAULT_AUTH_REQUEST_IS_ANON, userId: userId, isOptional: DEFAULT_AUTH_REQUEST_IS_OPTIONAL, extraData: DEFAULT_AUTH_REQUEST_EXTRA_DATA }); } function build( AuthType authType, bytes memory extraData ) external pure returns (AuthRequest memory) { return _build({ authType: authType, isAnon: DEFAULT_AUTH_REQUEST_IS_ANON, userId: DEFAULT_AUTH_REQUEST_USER_ID, isOptional: DEFAULT_AUTH_REQUEST_IS_OPTIONAL, extraData: extraData }); } function build( AuthType authType, bool isAnon, uint256 userId ) external pure returns (AuthRequest memory) { return _build({ authType: authType, isAnon: isAnon, userId: userId, isOptional: DEFAULT_AUTH_REQUEST_IS_OPTIONAL, extraData: DEFAULT_AUTH_REQUEST_EXTRA_DATA }); } function build( AuthType authType, bool isAnon, bytes memory extraData ) external pure returns (AuthRequest memory) { return _build({ authType: authType, isAnon: isAnon, userId: DEFAULT_AUTH_REQUEST_USER_ID, isOptional: DEFAULT_AUTH_REQUEST_IS_OPTIONAL, extraData: extraData }); } function build( AuthType authType, uint256 userId, bytes memory extraData ) external pure returns (AuthRequest memory) { return _build({ authType: authType, isAnon: DEFAULT_AUTH_REQUEST_IS_ANON, userId: userId, isOptional: DEFAULT_AUTH_REQUEST_IS_OPTIONAL, extraData: extraData }); } // allow dev to choose for isOptional // the user is ask to choose isSelectableByUser to avoid the function signature collision // between build(AuthType authType, bool isOptional) and build(AuthType authType, bool isAnon) function build( AuthType authType, bool isOptional, bool isSelectableByUser ) external pure returns (AuthRequest memory) { return _build({ authType: authType, isAnon: DEFAULT_AUTH_REQUEST_IS_ANON, userId: DEFAULT_AUTH_REQUEST_USER_ID, isOptional: isOptional, isSelectableByUser: isSelectableByUser, extraData: DEFAULT_AUTH_REQUEST_EXTRA_DATA }); } function build( AuthType authType, bool isOptional, bool isSelectableByUser, uint256 userId ) external pure returns (AuthRequest memory) { return _build({ authType: authType, isAnon: DEFAULT_AUTH_REQUEST_IS_ANON, userId: userId, isOptional: isOptional, isSelectableByUser: isSelectableByUser, extraData: DEFAULT_AUTH_REQUEST_EXTRA_DATA }); } // the user is ask to choose isSelectableByUser to avoid the function signature collision // between build(AuthType authType, bool isAnon, bool isOptional) and build(AuthType authType, bool isOptional, bool isSelectableByUser) function build( AuthType authType, bool isAnon, bool isOptional, bool isSelectableByUser ) external pure returns (AuthRequest memory) { return _build({ authType: authType, isAnon: isAnon, userId: DEFAULT_AUTH_REQUEST_USER_ID, isOptional: isOptional, isSelectableByUser: isSelectableByUser, extraData: DEFAULT_AUTH_REQUEST_EXTRA_DATA }); } function build( AuthType authType, uint256 userId, bool isOptional ) external pure returns (AuthRequest memory) { return _build({ authType: authType, isAnon: DEFAULT_AUTH_REQUEST_IS_ANON, userId: userId, isOptional: isOptional, extraData: DEFAULT_AUTH_REQUEST_EXTRA_DATA }); } function build( AuthType authType, bool isAnon, uint256 userId, bool isOptional ) external pure returns (AuthRequest memory) { return _build({ authType: authType, isAnon: isAnon, userId: userId, isOptional: isOptional, extraData: DEFAULT_AUTH_REQUEST_EXTRA_DATA }); } function _build( AuthType authType, bool isAnon, uint256 userId, bool isOptional, bytes memory extraData ) internal pure returns (AuthRequest memory) { return _build({ authType: authType, isAnon: isAnon, userId: userId, isOptional: isOptional, isSelectableByUser: _authIsSelectableDefaultValue(authType, userId), extraData: extraData }); } function _build( AuthType authType, bool isAnon, uint256 userId, bool isOptional, bool isSelectableByUser, bytes memory extraData ) internal pure returns (AuthRequest memory) { // When `userId` is 0, it means the app does not require a specific auth account and the user needs // to choose the account they want to use for the app. // When `isSelectableByUser` is true, the user can select the account they want to use. // The combination of `userId = 0` and `isSelectableByUser = false` does not make sense and should not be used. // If this combination is detected, the function will revert with an error. if (authType != AuthType.VAULT && userId == 0 && isSelectableByUser == false) { revert InvalidUserIdAndIsSelectableByUserAuthType(); } // When requesting an authType VAULT, the `userId` must be 0 and isSelectableByUser must be true. if (authType == AuthType.VAULT && userId != 0 && isSelectableByUser == false) { revert InvalidUserIdAndAuthType(); } return AuthRequest({ authType: authType, isAnon: isAnon, userId: userId, isOptional: isOptional, isSelectableByUser: isSelectableByUser, extraData: extraData }); } function _authIsSelectableDefaultValue( AuthType authType, uint256 requestedUserId ) internal pure returns (bool) { // isSelectableByUser value should always be false in case of VAULT authType. // This is because the user can't select the account they want to use for the app. // the userId = Hash(VaultSecret, AppId) in the case of VAULT authType. if (authType == AuthType.VAULT) { return false; } // When `requestedUserId` is 0, it means no specific auth account is requested by the app, // so we want the default value for `isSelectableByUser` to be `true`. if (requestedUserId == 0) { return true; } // When `requestedUserId` is not 0, it means a specific auth account is requested by the app, // so we want the default value for `isSelectableByUser` to be `false`. else { return false; } // However, the dev can still override this default value by setting `isSelectableByUser` to `true`. } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "./Structs.sol"; contract ClaimRequestBuilder { // default value for Claim Request bytes16 public constant DEFAULT_CLAIM_REQUEST_GROUP_TIMESTAMP = bytes16("latest"); uint256 public constant DEFAULT_CLAIM_REQUEST_VALUE = 1; ClaimType public constant DEFAULT_CLAIM_REQUEST_TYPE = ClaimType.GTE; bool public constant DEFAULT_CLAIM_REQUEST_IS_OPTIONAL = false; bool public constant DEFAULT_CLAIM_REQUEST_IS_SELECTABLE_BY_USER = true; bytes public constant DEFAULT_CLAIM_REQUEST_EXTRA_DATA = ""; function build( bytes16 groupId, bytes16 groupTimestamp, uint256 value, ClaimType claimType, bool isOptional, bool isSelectableByUser, bytes memory extraData ) external pure returns (ClaimRequest memory) { return ClaimRequest({ claimType: claimType, groupId: groupId, groupTimestamp: groupTimestamp, value: value, isOptional: isOptional, isSelectableByUser: isSelectableByUser, extraData: extraData }); } function build( bytes16 groupId, bytes16 groupTimestamp, uint256 value, ClaimType claimType, bytes memory extraData ) external pure returns (ClaimRequest memory) { return ClaimRequest({ claimType: claimType, groupId: groupId, groupTimestamp: groupTimestamp, value: value, isOptional: DEFAULT_CLAIM_REQUEST_IS_OPTIONAL, isSelectableByUser: DEFAULT_CLAIM_REQUEST_IS_SELECTABLE_BY_USER, extraData: extraData }); } function build(bytes16 groupId) external pure returns (ClaimRequest memory) { return ClaimRequest({ groupId: groupId, groupTimestamp: DEFAULT_CLAIM_REQUEST_GROUP_TIMESTAMP, value: DEFAULT_CLAIM_REQUEST_VALUE, claimType: DEFAULT_CLAIM_REQUEST_TYPE, isOptional: DEFAULT_CLAIM_REQUEST_IS_OPTIONAL, isSelectableByUser: DEFAULT_CLAIM_REQUEST_IS_SELECTABLE_BY_USER, extraData: DEFAULT_CLAIM_REQUEST_EXTRA_DATA }); } function build( bytes16 groupId, bytes16 groupTimestamp ) external pure returns (ClaimRequest memory) { return ClaimRequest({ groupId: groupId, groupTimestamp: groupTimestamp, value: DEFAULT_CLAIM_REQUEST_VALUE, claimType: DEFAULT_CLAIM_REQUEST_TYPE, isOptional: DEFAULT_CLAIM_REQUEST_IS_OPTIONAL, isSelectableByUser: DEFAULT_CLAIM_REQUEST_IS_SELECTABLE_BY_USER, extraData: DEFAULT_CLAIM_REQUEST_EXTRA_DATA }); } function build(bytes16 groupId, uint256 value) external pure returns (ClaimRequest memory) { return ClaimRequest({ groupId: groupId, groupTimestamp: DEFAULT_CLAIM_REQUEST_GROUP_TIMESTAMP, value: value, claimType: DEFAULT_CLAIM_REQUEST_TYPE, isOptional: DEFAULT_CLAIM_REQUEST_IS_OPTIONAL, isSelectableByUser: DEFAULT_CLAIM_REQUEST_IS_SELECTABLE_BY_USER, extraData: DEFAULT_CLAIM_REQUEST_EXTRA_DATA }); } function build(bytes16 groupId, ClaimType claimType) external pure returns (ClaimRequest memory) { return ClaimRequest({ groupId: groupId, groupTimestamp: DEFAULT_CLAIM_REQUEST_GROUP_TIMESTAMP, value: DEFAULT_CLAIM_REQUEST_VALUE, claimType: claimType, isOptional: DEFAULT_CLAIM_REQUEST_IS_OPTIONAL, isSelectableByUser: DEFAULT_CLAIM_REQUEST_IS_SELECTABLE_BY_USER, extraData: DEFAULT_CLAIM_REQUEST_EXTRA_DATA }); } function build( bytes16 groupId, bytes memory extraData ) external pure returns (ClaimRequest memory) { return ClaimRequest({ groupId: groupId, groupTimestamp: DEFAULT_CLAIM_REQUEST_GROUP_TIMESTAMP, value: DEFAULT_CLAIM_REQUEST_VALUE, claimType: DEFAULT_CLAIM_REQUEST_TYPE, isOptional: DEFAULT_CLAIM_REQUEST_IS_OPTIONAL, isSelectableByUser: DEFAULT_CLAIM_REQUEST_IS_SELECTABLE_BY_USER, extraData: extraData }); } function build( bytes16 groupId, bytes16 groupTimestamp, uint256 value ) external pure returns (ClaimRequest memory) { return ClaimRequest({ groupId: groupId, groupTimestamp: groupTimestamp, value: value, claimType: DEFAULT_CLAIM_REQUEST_TYPE, isOptional: DEFAULT_CLAIM_REQUEST_IS_OPTIONAL, isSelectableByUser: DEFAULT_CLAIM_REQUEST_IS_SELECTABLE_BY_USER, extraData: DEFAULT_CLAIM_REQUEST_EXTRA_DATA }); } function build( bytes16 groupId, bytes16 groupTimestamp, ClaimType claimType ) external pure returns (ClaimRequest memory) { return ClaimRequest({ groupId: groupId, groupTimestamp: groupTimestamp, value: DEFAULT_CLAIM_REQUEST_VALUE, claimType: claimType, isOptional: DEFAULT_CLAIM_REQUEST_IS_OPTIONAL, isSelectableByUser: DEFAULT_CLAIM_REQUEST_IS_SELECTABLE_BY_USER, extraData: DEFAULT_CLAIM_REQUEST_EXTRA_DATA }); } function build( bytes16 groupId, bytes16 groupTimestamp, bytes memory extraData ) external pure returns (ClaimRequest memory) { return ClaimRequest({ groupId: groupId, groupTimestamp: groupTimestamp, value: DEFAULT_CLAIM_REQUEST_VALUE, claimType: DEFAULT_CLAIM_REQUEST_TYPE, isOptional: DEFAULT_CLAIM_REQUEST_IS_OPTIONAL, isSelectableByUser: DEFAULT_CLAIM_REQUEST_IS_SELECTABLE_BY_USER, extraData: extraData }); } function build( bytes16 groupId, uint256 value, ClaimType claimType ) external pure returns (ClaimRequest memory) { return ClaimRequest({ groupId: groupId, groupTimestamp: DEFAULT_CLAIM_REQUEST_GROUP_TIMESTAMP, value: value, claimType: claimType, isOptional: DEFAULT_CLAIM_REQUEST_IS_OPTIONAL, isSelectableByUser: DEFAULT_CLAIM_REQUEST_IS_SELECTABLE_BY_USER, extraData: DEFAULT_CLAIM_REQUEST_EXTRA_DATA }); } function build( bytes16 groupId, uint256 value, bytes memory extraData ) external pure returns (ClaimRequest memory) { return ClaimRequest({ groupId: groupId, groupTimestamp: DEFAULT_CLAIM_REQUEST_GROUP_TIMESTAMP, value: value, claimType: DEFAULT_CLAIM_REQUEST_TYPE, isOptional: DEFAULT_CLAIM_REQUEST_IS_OPTIONAL, isSelectableByUser: DEFAULT_CLAIM_REQUEST_IS_SELECTABLE_BY_USER, extraData: extraData }); } function build( bytes16 groupId, ClaimType claimType, bytes memory extraData ) external pure returns (ClaimRequest memory) { return ClaimRequest({ groupId: groupId, groupTimestamp: DEFAULT_CLAIM_REQUEST_GROUP_TIMESTAMP, value: DEFAULT_CLAIM_REQUEST_VALUE, claimType: claimType, isOptional: DEFAULT_CLAIM_REQUEST_IS_OPTIONAL, isSelectableByUser: DEFAULT_CLAIM_REQUEST_IS_SELECTABLE_BY_USER, extraData: extraData }); } function build( bytes16 groupId, bytes16 groupTimestamp, uint256 value, ClaimType claimType ) external pure returns (ClaimRequest memory) { return ClaimRequest({ groupId: groupId, groupTimestamp: groupTimestamp, value: value, claimType: claimType, isOptional: DEFAULT_CLAIM_REQUEST_IS_OPTIONAL, isSelectableByUser: DEFAULT_CLAIM_REQUEST_IS_SELECTABLE_BY_USER, extraData: DEFAULT_CLAIM_REQUEST_EXTRA_DATA }); } function build( bytes16 groupId, bytes16 groupTimestamp, uint256 value, bytes memory extraData ) external pure returns (ClaimRequest memory) { return ClaimRequest({ groupId: groupId, groupTimestamp: groupTimestamp, value: value, claimType: DEFAULT_CLAIM_REQUEST_TYPE, isOptional: DEFAULT_CLAIM_REQUEST_IS_OPTIONAL, isSelectableByUser: DEFAULT_CLAIM_REQUEST_IS_SELECTABLE_BY_USER, extraData: extraData }); } function build( bytes16 groupId, bytes16 groupTimestamp, ClaimType claimType, bytes memory extraData ) external pure returns (ClaimRequest memory) { return ClaimRequest({ groupId: groupId, groupTimestamp: groupTimestamp, value: DEFAULT_CLAIM_REQUEST_VALUE, claimType: claimType, isOptional: DEFAULT_CLAIM_REQUEST_IS_OPTIONAL, isSelectableByUser: DEFAULT_CLAIM_REQUEST_IS_SELECTABLE_BY_USER, extraData: extraData }); } function build( bytes16 groupId, uint256 value, ClaimType claimType, bytes memory extraData ) external pure returns (ClaimRequest memory) { return ClaimRequest({ groupId: groupId, groupTimestamp: DEFAULT_CLAIM_REQUEST_GROUP_TIMESTAMP, value: value, claimType: claimType, isOptional: DEFAULT_CLAIM_REQUEST_IS_OPTIONAL, isSelectableByUser: DEFAULT_CLAIM_REQUEST_IS_SELECTABLE_BY_USER, extraData: extraData }); } // allow dev to choose for isOptional // we force to also set isSelectableByUser // otherwise function signatures would be colliding // between build(bytes16 groupId, bool isOptional) and build(bytes16 groupId, bool isSelectableByUser) // we keep this logic for all function signature combinations function build( bytes16 groupId, bool isOptional, bool isSelectableByUser ) external pure returns (ClaimRequest memory) { return ClaimRequest({ groupId: groupId, groupTimestamp: DEFAULT_CLAIM_REQUEST_GROUP_TIMESTAMP, value: DEFAULT_CLAIM_REQUEST_VALUE, claimType: DEFAULT_CLAIM_REQUEST_TYPE, isOptional: isOptional, isSelectableByUser: isSelectableByUser, extraData: DEFAULT_CLAIM_REQUEST_EXTRA_DATA }); } function build( bytes16 groupId, bytes16 groupTimestamp, bool isOptional, bool isSelectableByUser ) external pure returns (ClaimRequest memory) { return ClaimRequest({ groupId: groupId, groupTimestamp: groupTimestamp, value: DEFAULT_CLAIM_REQUEST_VALUE, claimType: DEFAULT_CLAIM_REQUEST_TYPE, isOptional: isOptional, isSelectableByUser: isSelectableByUser, extraData: DEFAULT_CLAIM_REQUEST_EXTRA_DATA }); } function build( bytes16 groupId, uint256 value, bool isOptional, bool isSelectableByUser ) external pure returns (ClaimRequest memory) { return ClaimRequest({ groupId: groupId, groupTimestamp: DEFAULT_CLAIM_REQUEST_GROUP_TIMESTAMP, value: value, claimType: DEFAULT_CLAIM_REQUEST_TYPE, isOptional: isOptional, isSelectableByUser: isSelectableByUser, extraData: DEFAULT_CLAIM_REQUEST_EXTRA_DATA }); } function build( bytes16 groupId, ClaimType claimType, bool isOptional, bool isSelectableByUser ) external pure returns (ClaimRequest memory) { return ClaimRequest({ groupId: groupId, groupTimestamp: DEFAULT_CLAIM_REQUEST_GROUP_TIMESTAMP, value: DEFAULT_CLAIM_REQUEST_VALUE, claimType: claimType, isOptional: isOptional, isSelectableByUser: isSelectableByUser, extraData: DEFAULT_CLAIM_REQUEST_EXTRA_DATA }); } function build( bytes16 groupId, bytes16 groupTimestamp, uint256 value, bool isOptional, bool isSelectableByUser ) external pure returns (ClaimRequest memory) { return ClaimRequest({ groupId: groupId, groupTimestamp: groupTimestamp, value: value, claimType: DEFAULT_CLAIM_REQUEST_TYPE, isOptional: isOptional, isSelectableByUser: isSelectableByUser, extraData: DEFAULT_CLAIM_REQUEST_EXTRA_DATA }); } function build( bytes16 groupId, bytes16 groupTimestamp, ClaimType claimType, bool isOptional, bool isSelectableByUser ) external pure returns (ClaimRequest memory) { return ClaimRequest({ groupId: groupId, groupTimestamp: groupTimestamp, value: DEFAULT_CLAIM_REQUEST_VALUE, claimType: claimType, isOptional: isOptional, isSelectableByUser: isSelectableByUser, extraData: DEFAULT_CLAIM_REQUEST_EXTRA_DATA }); } function build( bytes16 groupId, uint256 value, ClaimType claimType, bool isOptional, bool isSelectableByUser ) external pure returns (ClaimRequest memory) { return ClaimRequest({ groupId: groupId, groupTimestamp: DEFAULT_CLAIM_REQUEST_GROUP_TIMESTAMP, value: value, claimType: claimType, isOptional: isOptional, isSelectableByUser: isSelectableByUser, extraData: DEFAULT_CLAIM_REQUEST_EXTRA_DATA }); } function build( bytes16 groupId, bytes16 groupTimestamp, uint256 value, ClaimType claimType, bool isOptional, bool isSelectableByUser ) external pure returns (ClaimRequest memory) { return ClaimRequest({ groupId: groupId, groupTimestamp: groupTimestamp, value: value, claimType: claimType, isOptional: isOptional, isSelectableByUser: isSelectableByUser, extraData: DEFAULT_CLAIM_REQUEST_EXTRA_DATA }); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "./Structs.sol"; contract SignatureBuilder { // default values for Signature Request bytes public constant DEFAULT_SIGNATURE_REQUEST_MESSAGE = "MESSAGE_SELECTED_BY_USER"; bool public constant DEFAULT_SIGNATURE_REQUEST_IS_SELECTABLE_BY_USER = false; bytes public constant DEFAULT_SIGNATURE_REQUEST_EXTRA_DATA = ""; function build(bytes memory message) external pure returns (SignatureRequest memory) { return SignatureRequest({ message: message, isSelectableByUser: DEFAULT_SIGNATURE_REQUEST_IS_SELECTABLE_BY_USER, extraData: DEFAULT_SIGNATURE_REQUEST_EXTRA_DATA }); } function build( bytes memory message, bool isSelectableByUser ) external pure returns (SignatureRequest memory) { return SignatureRequest({ message: message, isSelectableByUser: isSelectableByUser, extraData: DEFAULT_SIGNATURE_REQUEST_EXTRA_DATA }); } function build( bytes memory message, bytes memory extraData ) external pure returns (SignatureRequest memory) { return SignatureRequest({ message: message, isSelectableByUser: DEFAULT_SIGNATURE_REQUEST_IS_SELECTABLE_BY_USER, extraData: extraData }); } function build( bytes memory message, bool isSelectableByUser, bytes memory extraData ) external pure returns (SignatureRequest memory) { return SignatureRequest({ message: message, isSelectableByUser: isSelectableByUser, extraData: extraData }); } function build(bool isSelectableByUser) external pure returns (SignatureRequest memory) { return SignatureRequest({ message: DEFAULT_SIGNATURE_REQUEST_MESSAGE, isSelectableByUser: isSelectableByUser, extraData: DEFAULT_SIGNATURE_REQUEST_EXTRA_DATA }); } function build( bool isSelectableByUser, bytes memory extraData ) external pure returns (SignatureRequest memory) { return SignatureRequest({ message: DEFAULT_SIGNATURE_REQUEST_MESSAGE, isSelectableByUser: isSelectableByUser, extraData: extraData }); } function buildEmpty() external pure returns (SignatureRequest memory) { return SignatureRequest({ message: DEFAULT_SIGNATURE_REQUEST_MESSAGE, isSelectableByUser: DEFAULT_SIGNATURE_REQUEST_IS_SELECTABLE_BY_USER, extraData: DEFAULT_SIGNATURE_REQUEST_EXTRA_DATA }); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; struct SismoConnectRequest { bytes16 namespace; AuthRequest[] auths; ClaimRequest[] claims; SignatureRequest signature; } struct SismoConnectConfig { bytes16 appId; VaultConfig vault; } struct VaultConfig { bool isImpersonationMode; } struct AuthRequest { AuthType authType; uint256 userId; // default: 0 // flags bool isAnon; // default: false -> true not supported yet, need to throw if true bool isOptional; // default: false bool isSelectableByUser; // default: true // bytes extraData; // default: "" } struct ClaimRequest { ClaimType claimType; // default: GTE bytes16 groupId; bytes16 groupTimestamp; // default: bytes16("latest") uint256 value; // default: 1 // flags bool isOptional; // default: false bool isSelectableByUser; // default: true // bytes extraData; // default: "" } struct SignatureRequest { bytes message; // default: "MESSAGE_SELECTED_BY_USER" bool isSelectableByUser; // default: false bytes extraData; // default: "" } enum AuthType { VAULT, GITHUB, TWITTER, EVM_ACCOUNT, TELEGRAM, DISCORD } enum ClaimType { GTE, GT, EQ, LT, LTE } struct Auth { AuthType authType; bool isAnon; bool isSelectableByUser; uint256 userId; bytes extraData; } struct Claim { ClaimType claimType; bytes16 groupId; bytes16 groupTimestamp; bool isSelectableByUser; uint256 value; bytes extraData; } struct Signature { bytes message; bytes extraData; } struct SismoConnectResponse { bytes16 appId; bytes16 namespace; bytes32 version; bytes signedMessage; SismoConnectProof[] proofs; } struct SismoConnectProof { Auth[] auths; Claim[] claims; bytes32 provingScheme; bytes proofData; bytes extraData; } struct SismoConnectVerifiedResult { bytes16 appId; bytes16 namespace; bytes32 version; VerifiedAuth[] auths; VerifiedClaim[] claims; bytes signedMessage; } struct VerifiedAuth { AuthType authType; bool isAnon; uint256 userId; bytes extraData; bytes proofData; } struct VerifiedClaim { ClaimType claimType; bytes16 groupId; bytes16 groupTimestamp; uint256 value; bytes extraData; uint256 proofId; bytes proofData; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "../libs/utils/Structs.sol"; interface ISismoConnectVerifier { event VerifierSet(bytes32, address); error AppIdMismatch(bytes16 receivedAppId, bytes16 expectedAppId); error NamespaceMismatch(bytes16 receivedNamespace, bytes16 expectedNamespace); error VersionMismatch(bytes32 requestVersion, bytes32 responseVersion); error SignatureMessageMismatch(bytes requestMessageSignature, bytes responseMessageSignature); function verify( SismoConnectResponse memory response, SismoConnectRequest memory request, SismoConnectConfig memory config ) external returns (SismoConnectVerifiedResult memory); function SISMO_CONNECT_VERSION() external view returns (bytes32); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; interface IAddressesProvider { /** * @dev Sets the address of a contract. * @param contractAddress Address of the contract. * @param contractName Name of the contract. */ function set(address contractAddress, string memory contractName) external; /** * @dev Sets the address of multiple contracts. * @param contractAddresses Addresses of the contracts. * @param contractNames Names of the contracts. */ function setBatch(address[] calldata contractAddresses, string[] calldata contractNames) external; /** * @dev Returns the address of a contract. * @param contractName Name of the contract (string). * @return Address of the contract. */ function get(string memory contractName) external view returns (address); /** * @dev Returns the address of a contract. * @param contractNameHash Hash of the name of the contract (bytes32). * @return Address of the contract. */ function get(bytes32 contractNameHash) external view returns (address); /** * @dev Returns the addresses of all contracts inputed. * @param contractNames Names of the contracts as strings. */ function getBatch(string[] calldata contractNames) external view returns (address[] memory); /** * @dev Returns the addresses of all contracts inputed. * @param contractNamesHash Names of the contracts as strings. */ function getBatch(bytes32[] calldata contractNamesHash) external view returns (address[] memory); /** * @dev Returns the addresses of all contracts in `_contractNames` * @return Names, Hashed Names and Addresses of all contracts. */ function getAll() external view returns (string[] memory, bytes32[] memory, address[] memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "./Structs.sol"; library SismoConnectHelper { error AuthTypeNotFoundInVerifiedResult(AuthType authType); function getUserId( SismoConnectVerifiedResult memory result, AuthType authType ) internal pure returns (uint256) { // get the first userId that matches the authType for (uint256 i = 0; i < result.auths.length; i++) { if (result.auths[i].authType == authType) { return result.auths[i].userId; } } revert AuthTypeNotFoundInVerifiedResult(authType); } function getUserIds( SismoConnectVerifiedResult memory result, AuthType authType ) internal pure returns (uint256[] memory) { // get all userIds that match the authType uint256[] memory userIds = new uint256[](result.auths.length); for (uint256 i = 0; i < result.auths.length; i++) { if (result.auths[i].authType == authType) { userIds[i] = result.auths[i].userId; } } return userIds; } function getSignedMessage( SismoConnectVerifiedResult memory result ) internal pure returns (bytes memory) { return result.signedMessage; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; contract IHydraS3Verifier { error InvalidProof(); error CallToVerifyProofFailed(); error InvalidSismoIdentifier(bytes32 userId, uint8 authType); error OnlyOneAuthAndOneClaimIsSupported(); error InvalidVersion(bytes32 version); error RegistryRootNotAvailable(uint256 inputRoot); error DestinationMismatch(address destinationFromProof, address expectedDestination); error CommitmentMapperPubKeyMismatch( bytes32 expectedX, bytes32 expectedY, bytes32 inputX, bytes32 inputY ); error ClaimTypeMismatch(uint256 claimTypeFromProof, uint256 expectedClaimType); error RequestIdentifierMismatch( uint256 requestIdentifierFromProof, uint256 expectedRequestIdentifier ); error InvalidExtraData(uint256 extraDataFromProof, uint256 expectedExtraData); error ClaimValueMismatch(); error DestinationVerificationNotEnabled(); error SourceVerificationNotEnabled(); error AccountsTreeValueMismatch( uint256 accountsTreeValueFromProof, uint256 expectedAccountsTreeValue ); error VaultNamespaceMismatch(uint256 vaultNamespaceFromProof, uint256 expectedVaultNamespace); error UserIdMismatch(uint256 userIdFromProof, uint256 expectedUserId); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } }
{ "remappings": [ "@openzeppelin/contracts/=lib/sismo-connect-packages/packages/sismo-connect-solidity/lib/sismo-connect-onchain-verifier/lib/openzeppelin-contracts/contracts/", "@sismo-core/hydra-s3/=lib/sismo-connect-packages/packages/sismo-connect-solidity/lib/sismo-connect-onchain-verifier/lib/hydra-s3-zkps/package/contracts/", "ds-test/=lib/forge-std/lib/ds-test/src/", "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/", "forge-std/=lib/forge-std/src/", "hydra-s3-zkps/=lib/sismo-connect-packages/packages/sismo-connect-solidity/lib/sismo-connect-onchain-verifier/lib/hydra-s3-zkps/", "openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/", "openzeppelin-contracts/=lib/openzeppelin-contracts/", "openzeppelin-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/", "openzeppelin/=lib/openzeppelin-contracts/contracts/", "sismo-connect-onchain-verifier/=lib/sismo-connect-packages/packages/sismo-connect-solidity/lib/sismo-connect-onchain-verifier/", "sismo-connect-packages/=lib/sismo-connect-packages/packages/sismo-connect-solidity/src/", "sismo-connect-solidity/=lib/sismo-connect-packages/packages/sismo-connect-solidity/src/" ], "optimizer": { "enabled": true, "runs": 200 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "paris", "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":"string","name":"baseURI_","type":"string"},{"internalType":"bytes16","name":"appId_","type":"bytes16"},{"internalType":"bool","name":"isImpersonationMode_","type":"bool"},{"components":[{"internalType":"enum AuthType","name":"authType","type":"uint8"},{"internalType":"uint256","name":"userId","type":"uint256"},{"internalType":"bool","name":"isAnon","type":"bool"},{"internalType":"bool","name":"isOptional","type":"bool"},{"internalType":"bool","name":"isSelectableByUser","type":"bool"},{"internalType":"bytes","name":"extraData","type":"bytes"}],"internalType":"struct AuthRequest[]","name":"authRequests_","type":"tuple[]"},{"components":[{"internalType":"enum ClaimType","name":"claimType","type":"uint8"},{"internalType":"bytes16","name":"groupId","type":"bytes16"},{"internalType":"bytes16","name":"groupTimestamp","type":"bytes16"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bool","name":"isOptional","type":"bool"},{"internalType":"bool","name":"isSelectableByUser","type":"bool"},{"internalType":"bytes","name":"extraData","type":"bytes"}],"internalType":"struct ClaimRequest[]","name":"claimRequests_","type":"tuple[]"},{"internalType":"address","name":"owner_","type":"address"},{"internalType":"bool","name":"isTransferable_","type":"bool"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"enum AuthType","name":"authType","type":"uint8"}],"name":"AuthTypeNotFoundInVerifiedResult","type":"error"},{"inputs":[],"name":"ERC721NonTransferable","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"baseTokenURI","type":"string"}],"name":"BaseTokenURISet","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ADDRESSES_PROVIDER_V2","outputs":[{"internalType":"contract IAddressesProvider","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"APP_ID","outputs":[{"internalType":"bytes16","name":"","type":"bytes16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IS_IMPERSONATION_MODE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IS_TRANSFERABLE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SISMO_CONNECT_LIB_VERSION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"isSelectableByUser","type":"bool"}],"name":"buildSignature","outputs":[{"components":[{"internalType":"bytes","name":"message","type":"bytes"},{"internalType":"bool","name":"isSelectableByUser","type":"bool"},{"internalType":"bytes","name":"extraData","type":"bytes"}],"internalType":"struct SignatureRequest","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"message","type":"bytes"},{"internalType":"bytes","name":"extraData","type":"bytes"}],"name":"buildSignature","outputs":[{"components":[{"internalType":"bytes","name":"message","type":"bytes"},{"internalType":"bool","name":"isSelectableByUser","type":"bool"},{"internalType":"bytes","name":"extraData","type":"bytes"}],"internalType":"struct SignatureRequest","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"isSelectableByUser","type":"bool"},{"internalType":"bytes","name":"extraData","type":"bytes"}],"name":"buildSignature","outputs":[{"components":[{"internalType":"bytes","name":"message","type":"bytes"},{"internalType":"bool","name":"isSelectableByUser","type":"bool"},{"internalType":"bytes","name":"extraData","type":"bytes"}],"internalType":"struct SignatureRequest","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"message","type":"bytes"},{"internalType":"bool","name":"isSelectableByUser","type":"bool"},{"internalType":"bytes","name":"extraData","type":"bytes"}],"name":"buildSignature","outputs":[{"components":[{"internalType":"bytes","name":"message","type":"bytes"},{"internalType":"bool","name":"isSelectableByUser","type":"bool"},{"internalType":"bytes","name":"extraData","type":"bytes"}],"internalType":"struct SignatureRequest","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"responseBytes","type":"bytes"},{"internalType":"address","name":"to","type":"address"}],"name":"claimWithSismoConnect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"config","outputs":[{"components":[{"internalType":"bytes16","name":"appId","type":"bytes16"},{"components":[{"internalType":"bool","name":"isImpersonationMode","type":"bool"}],"internalType":"struct VaultConfig","name":"vault","type":"tuple"}],"internalType":"struct SismoConnectConfig","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRequests","outputs":[{"components":[{"components":[{"internalType":"enum AuthType","name":"authType","type":"uint8"},{"internalType":"uint256","name":"userId","type":"uint256"},{"internalType":"bool","name":"isAnon","type":"bool"},{"internalType":"bool","name":"isOptional","type":"bool"},{"internalType":"bool","name":"isSelectableByUser","type":"bool"},{"internalType":"bytes","name":"extraData","type":"bytes"}],"internalType":"struct AuthRequest[]","name":"auths","type":"tuple[]"},{"components":[{"internalType":"enum ClaimType","name":"claimType","type":"uint8"},{"internalType":"bytes16","name":"groupId","type":"bytes16"},{"internalType":"bytes16","name":"groupTimestamp","type":"bytes16"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bool","name":"isOptional","type":"bool"},{"internalType":"bool","name":"isSelectableByUser","type":"bool"},{"internalType":"bytes","name":"extraData","type":"bytes"}],"internalType":"struct ClaimRequest[]","name":"claims","type":"tuple[]"}],"internalType":"struct ZKDrop.Requests","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseUri","type":"string"}],"name":"setBaseTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101806040523480156200001257600080fd5b506040516200462038038062004620833981016040819052620000359162000ba7565b62000041868662000471565b8989600062000051838262000d62565b50600162000060828262000d62565b505081516001600160801b031916610120525060208082015151151561014052604080518082018252601981527f7369736d6f436f6e6e65637456657269666965722d76312e3100000000000000928101929092525163349f642f60e11b8152733cd5334eb64ebbd4003b72022cc25465f1bfcee69163693ec85e91620000eb919060040162000e2e565b602060405180830381865afa15801562000109573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200012f919062000e63565b6001600160a01b0316608052604080518082018252601781527f61757468526571756573744275696c6465722d76312e310000000000000000006020820152905163349f642f60e11b8152733cd5334eb64ebbd4003b72022cc25465f1bfcee69163693ec85e91620001a5919060040162000e2e565b602060405180830381865afa158015620001c3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e9919062000e63565b6001600160a01b031660a052604080518082018252601881527f636c61696d526571756573744275696c6465722d76312e3100000000000000006020820152905163349f642f60e11b8152733cd5334eb64ebbd4003b72022cc25465f1bfcee69163693ec85e916200025f919060040162000e2e565b602060405180830381865afa1580156200027d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a3919062000e63565b6001600160a01b031660c052604080518082018252601581527f7369676e61747572654275696c6465722d76312e3100000000000000000000006020820152905163349f642f60e11b8152733cd5334eb64ebbd4003b72022cc25465f1bfcee69163693ec85e9162000319919060040162000e2e565b602060405180830381865afa15801562000337573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200035d919062000e63565b6001600160a01b031660e052604080518082018252601381527f726571756573744275696c6465722d76312e31000000000000000000000000006020820152905163349f642f60e11b8152733cd5334eb64ebbd4003b72022cc25465f1bfcee69163693ec85e91620003d3919060040162000e2e565b602060405180830381865afa158015620003f1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000417919062000e63565b6001600160a01b031661010052506200043033620004d3565b6200043b82620004d3565b620004468762000525565b620004518462000570565b6200045c8362000671565b1515610160525062000edc9650505050505050565b62000498604080518082018252600080825282516020818101909452908152909182015290565b506040805180820182526001600160801b03199390931683528051602080820183526000909152815180820190925291151581529082015290565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600762000533828262000d62565b507f2e9b34e5ec7377754a85ec13c1e9a442a00db0c46dbdefbb143dd0371fd20c1c8160405162000565919062000e2e565b60405180910390a150565b60005b81518110156200066d57600860000182828151811062000597576200059762000e88565b60209081029190910181015182546001818101855560009485529290932081516004909402018054919390929091839160ff1990911690836005811115620005e357620005e362000e9e565b0217905550602082015160018201556040820151600282018054606085015160808601511515620100000262ff0000199115156101000261ff00199515159590951661ffff1990931692909217939093179290921691909117905560a0820151600382019062000654908262000d62565b5050508080620006649062000eb4565b91505062000573565b5050565b60005b81518110156200066d57600860010182828151811062000698576200069862000e88565b60209081029190910181015182546001818101855560009485529290932081516005909402018054919390929091839160ff1990911690836004811115620006e457620006e462000e9e565b021790555060208201518154610100600160881b031916610100608092831c810291909117835560408401516001840180546001600160801b03191691841c919091179055606084015160028401559083015160038301805460a086015161ffff1990911692151561ff0019169290921791151590920217905560c0820151600482019062000774908262000d62565b5050508080620007849062000eb4565b91505062000674565b634e487b7160e01b600052604160045260246000fd5b60405160c081016001600160401b0381118282101715620007c857620007c86200078d565b60405290565b60405160e081016001600160401b0381118282101715620007c857620007c86200078d565b604051601f8201601f191681016001600160401b03811182821017156200081e576200081e6200078d565b604052919050565b60005b838110156200084357818101518382015260200162000829565b50506000910152565b600082601f8301126200085e57600080fd5b81516001600160401b038111156200087a576200087a6200078d565b6200088f601f8201601f1916602001620007f3565b818152846020838601011115620008a557600080fd5b620008b882602083016020870162000826565b949350505050565b80516001600160801b031981168114620008d957600080fd5b919050565b80518015158114620008d957600080fd5b60006001600160401b038211156200090b576200090b6200078d565b5060051b60200190565b600082601f8301126200092757600080fd5b81516020620009406200093a83620008ef565b620007f3565b82815260059290921b840181019181810190868411156200096057600080fd5b8286015b8481101562000a415780516001600160401b0380821115620009865760008081fd5b9088019060c0828b03601f1901811315620009a15760008081fd5b620009ab620007a3565b8784015160068110620009be5760008081fd5b8152604084810151898301526060620009d9818701620008de565b8284015260809150620009ee828701620008de565b9083015260a062000a01868201620008de565b8383015292850151928484111562000a1b57600091508182fd5b62000a2b8e8b868901016200084c565b9083015250865250505091830191830162000964565b509695505050505050565b805160058110620008d957600080fd5b600082601f83011262000a6e57600080fd5b8151602062000a816200093a83620008ef565b82815260059290921b8401810191818101908684111562000aa157600080fd5b8286015b8481101562000a415780516001600160401b038082111562000ac75760008081fd5b9088019060e0828b03601f190181131562000ae25760008081fd5b62000aec620007ce565b62000af988850162000a4c565b8152604062000b0a818601620008c0565b89830152606062000b1d818701620008c0565b828401526080915081860151818401525060a062000b3d818701620008de565b8284015260c0915062000b52828701620008de565b9083015291840151918383111562000b6a5760008081fd5b62000b7a8d8a858801016200084c565b90820152865250505091830191830162000aa5565b80516001600160a01b0381168114620008d957600080fd5b60008060008060008060008060006101208a8c03121562000bc757600080fd5b89516001600160401b038082111562000bdf57600080fd5b62000bed8d838e016200084c565b9a5060208c015191508082111562000c0457600080fd5b62000c128d838e016200084c565b995060408c015191508082111562000c2957600080fd5b62000c378d838e016200084c565b985062000c4760608d01620008c0565b975062000c5760808d01620008de565b965060a08c015191508082111562000c6e57600080fd5b62000c7c8d838e0162000915565b955060c08c015191508082111562000c9357600080fd5b5062000ca28c828d0162000a5c565b93505062000cb360e08b0162000b8f565b915062000cc46101008b01620008de565b90509295985092959850929598565b600181811c9082168062000ce857607f821691505b60208210810362000d0957634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000d5d57600081815260208120601f850160051c8101602086101562000d385750805b601f850160051c820191505b8181101562000d595782815560010162000d44565b5050505b505050565b81516001600160401b0381111562000d7e5762000d7e6200078d565b62000d968162000d8f845462000cd3565b8462000d0f565b602080601f83116001811462000dce576000841562000db55750858301515b600019600386901b1c1916600185901b17855562000d59565b600085815260208120601f198616915b8281101562000dff5788860151825594840194600190910190840162000dde565b508582101562000e1e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b602081526000825180602084015262000e4f81604085016020870162000826565b601f01601f19169190910160400192915050565b60006020828403121562000e7657600080fd5b62000e818262000b8f565b9392505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b60006001820162000ed557634e487b7160e01b600052601160045260246000fd5b5060010190565b60805160a05160c05160e051610100516101205161014051610160516136b362000f6d6000396000818161034301526117630152600081816103960152610cd70152600081816103e30152610cb601526000611a2b015260008181610a6f01528181610b66015281816111090152818161116f015261129a01526000505060005050600061133101526136b36000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80638813ce1211610104578063b88d4fde116100a2578063cea8eb4e11610071578063cea8eb4e14610439578063e06897031461044c578063e985e9c51461045f578063f2fde38b1461049b57600080fd5b8063b88d4fde146103cb578063c187bbc1146103de578063c87b56dd1461041e578063c9512d991461043157600080fd5b806395652cfa116100de57806395652cfa1461037657806395d89b4114610389578063a183dc2714610391578063a22cb465146103b857600080fd5b80638813ce12146103295780638c98485f1461033e5780638da5cb5b1461036557600080fd5b806346916301116101715780636e01370e1161014b5780636e01370e146102d857806370a08231146102eb578063715018a61461030c57806379502c551461031457600080fd5b8063469163011461028a57806349161195146102a55780636352211e146102c557600080fd5b8063081812fc116101ad578063081812fc14610226578063095ea7b31461025157806323b872dd1461026457806342842e0e1461027757600080fd5b806301ffc9a7146101d457806306fdde03146101fc57806307c8064f14610211575b600080fd5b6101e76101e2366004611d76565b6104ae565b60405190151581526020015b60405180910390f35b610204610500565b6040516101f39190611de3565b61022461021f366004611f6b565b610592565b005b610239610234366004611fb8565b6108ab565b6040516001600160a01b0390911681526020016101f3565b61022461025f366004611fd1565b6108d2565b610224610272366004611ffb565b6109ec565b610224610285366004611ffb565b610a1d565b610239733cd5334eb64ebbd4003b72022cc25465f1bfcee681565b6102b86102b3366004612045565b610a38565b6040516101f391906120a5565b6102396102d3366004611fb8565b610adf565b6102b86102e63660046120b8565b610b3f565b6102fe6102f936600461211b565b610bf1565b6040519081526020016101f3565b610224610c77565b61031c610c8b565b6040516101f39190612136565b610331610d00565b6040516101f391906122dc565b6101e77f000000000000000000000000000000000000000000000000000000000000000081565b6006546001600160a01b0316610239565b610224610384366004612315565b610fea565b610204610ffe565b6101e77f000000000000000000000000000000000000000000000000000000000000000081565b6102246103c636600461235d565b61100d565b6102246103d9366004612394565b61101c565b6104057f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160801b031990911681526020016101f3565b61020461042c366004611fb8565b61104e565b6102fe600281565b6102b86104473660046123fb565b6110e2565b6102b861045a366004612440565b611148565b6101e761046d3660046124b7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102246104a936600461211b565b6111fd565b60006001600160e01b031982166380ac58cd60e01b14806104df57506001600160e01b03198216635b5e139f60e01b145b806104fa57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461050f906124e1565b80601f016020809104026020016040519081016040528092919081815260200182805461053b906124e1565b80156105885780601f1061055d57610100808354040283529160200191610588565b820191906000526020600020905b81548152906001019060200180831161056b57829003601f168201915b5050505050905090565b600880546040805160208084028201810190925282815260009361088b938793869084015b828210156106e3576000848152602090206040805160c08101909152600484029091018054829060ff1660058111156105f2576105f261215a565b60058111156106035761060361215a565b815260018201546020820152600282015460ff80821615156040840152610100820481161515606084015262010000909104161515608082015260038201805460a090920191610652906124e1565b80601f016020809104026020016040519081016040528092919081815260200182805461067e906124e1565b80156106cb5780601f106106a0576101008083540402835291602001916106cb565b820191906000526020600020905b8154815290600101906020018083116106ae57829003601f168201915b505050505081525050815260200190600101906105b7565b505050506008600101805480602002602001604051908101604052809291908181526020016000905b82821015610855576000848152602090206040805160e08101909152600584029091018054829060ff1660048111156107475761074761215a565b60048111156107585761075861215a565b8152815461010090819004608090811b6001600160801b031990811660208501526001850154821b16604084015260028401546060840152600384015460ff8082161515928501929092529190910416151560a082015260048201805460c0909201916107c4906124e1565b80601f01602080910402602001604051908101604052809291908181526020018280546107f0906124e1565b801561083d5780601f106108125761010080835404028352916020019161083d565b820191906000526020600020905b81548152906001019060200180831161082057829003601f168201915b5050505050815250508152602001906001019061070c565b5050604080516001600160a01b038a1660208201526108869350019050604051602081830303815290604052611273565b6112d7565b9050600061089982826113d8565b90506108a5838261148b565b50505050565b60006108b682611616565b506000908152600460205260409020546001600160a01b031690565b60006108dd82610adf565b9050806001600160a01b0316836001600160a01b03160361094f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061096b575061096b813361046d565b6109dd5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610946565b6109e78383611675565b505050565b6109f633826116e3565b610a125760405162461bcd60e51b81526004016109469061251b565b6109e7838383611761565b6109e78383836040518060200160405280600081525061101c565b604080516060808201835280825260006020830152818301529051631f6c2b9760e11b815282151560048201526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690633ed8572e906024015b600060405180830381865afa158015610ab7573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526104fa9190810190612657565b6000818152600260205260408120546001600160a01b0316806104fa5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610946565b604080516060808201835280825260006020830152818301529051631778ed1360e21b81527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690635de3b44c90610ba5908690869060040161268b565b600060405180830381865afa158015610bc2573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610bea9190810190612657565b9392505050565b60006001600160a01b038216610c5b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610946565b506001600160a01b031660009081526003602052604090205490565b610c7f6117aa565b610c896000611804565b565b610cb1604080518082018252600080825282516020818101909452908152909182015290565b610cfb7f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000611856565b905090565b6040805180820190915260608082526020820152604080516008805460606020820284018101855293830181815260009484928491879085015b82821015610e66576000848152602090206040805160c08101909152600484029091018054829060ff166005811115610d7557610d7561215a565b6005811115610d8657610d8661215a565b815260018201546020820152600282015460ff80821615156040840152610100820481161515606084015262010000909104161515608082015260038201805460a090920191610dd5906124e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610e01906124e1565b8015610e4e5780601f10610e2357610100808354040283529160200191610e4e565b820191906000526020600020905b815481529060010190602001808311610e3157829003601f168201915b50505050508152505081526020019060010190610d3a565b50505050815260200160018201805480602002602001604051908101604052809291908181526020016000905b82821015610fdc576000848152602090206040805160e08101909152600584029091018054829060ff166004811115610ece57610ece61215a565b6004811115610edf57610edf61215a565b8152815461010090819004608090811b6001600160801b031990811660208501526001850154821b16604084015260028401546060840152600384015460ff8082161515928501929092529190910416151560a082015260048201805460c090920191610f4b906124e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610f77906124e1565b8015610fc45780601f10610f9957610100808354040283529160200191610fc4565b820191906000526020600020905b815481529060010190602001808311610fa757829003601f168201915b50505050508152505081526020019060010190610e93565b505050915250909392505050565b610ff26117aa565b610ffb816118c4565b50565b60606001805461050f906124e1565b61101833838361190b565b5050565b61102633836116e3565b6110425760405162461bcd60e51b81526004016109469061251b565b6108a5848484846119d9565b60606007805461105d906124e1565b80601f0160208091040260200160405190810160405280929190818152602001828054611089906124e1565b80156110d65780601f106110ab576101008083540402835291602001916110d6565b820191906000526020600020905b8154815290600101906020018083116110b957829003601f168201915b50505050509050919050565b604080516060808201835280825260006020830152818301529051631d1db46b60e21b81527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690637476d1ac90610ba590869086906004016126b0565b604080516060808201835280825260006020830152818301529051631f785c9560e01b81527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690631f785c95906111b0908790879087906004016126cb565b600060405180830381865afa1580156111cd573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526111f59190810190612657565b949350505050565b6112056117aa565b6001600160a01b03811661126a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610946565b610ffb81611804565b604080516060808201835280825260006020830152818301529051631a0d7ccb60e21b81527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690636835f32c90610a9a908590600401611de3565b6040805160c0810182526000808252602082018190529181019190915260608082018190526080820181905260a082015260008580602001905181019061131e9190612970565b9050600061132d868686611a0c565b90507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166312b037ff8383611368610c8b565b6040518463ffffffff1660e01b815260040161138693929190612c49565b6000604051808303816000875af11580156113a5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526113cd919081019061304f565b979650505050505050565b6000805b83606001515181101561146f578260058111156113fb576113fb61215a565b846060015182815181106114115761141161312f565b602002602001015160000151600581111561142e5761142e61215a565b0361145d57836060015181815181106114495761144961312f565b6020026020010151604001519150506104fa565b8061146781613145565b9150506113dc565b508160405163267ac2cf60e01b8152600401610946919061316c565b6001600160a01b0382166114e15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610946565b6000818152600260205260409020546001600160a01b0316156115465760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610946565b6000818152600260205260409020546001600160a01b0316156115ab5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610946565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818152600260205260409020546001600160a01b0316610ffb5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610946565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116aa82610adf565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806116ef83610adf565b9050806001600160a01b0316846001600160a01b0316148061173657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806111f55750836001600160a01b031661174f846108ab565b6001600160a01b031614949350505050565b7f000000000000000000000000000000000000000000000000000000000000000061179f57604051632630e0df60e11b815260040160405180910390fd5b6109e7838383611aa9565b6006546001600160a01b03163314610c895760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610946565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61187c604080518082018252600080825282516020818101909452908152909182015290565b6040518060400160405280846001600160801b03191681526020016118bb84604080516020808201835260009091528151908101909152901515815290565b90529392505050565b60076118d082826131c8565b507f2e9b34e5ec7377754a85ec13c1e9a442a00db0c46dbdefbb143dd0371fd20c1c816040516119009190611de3565b60405180910390a150565b816001600160a01b0316836001600160a01b03160361196c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610946565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6119e4848484611761565b6119f084848484611c0d565b6108a55760405162461bcd60e51b815260040161094690613287565b611a14611d10565b604051634c92019b60e11b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690639924033690611a64908790879087906004016132d9565b600060405180830381865afa158015611a81573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526111f5919081019061342d565b826001600160a01b0316611abc82610adf565b6001600160a01b031614611ae25760405162461bcd60e51b8152600401610946906135e8565b6001600160a01b038216611b445760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610946565b826001600160a01b0316611b5782610adf565b6001600160a01b031614611b7d5760405162461bcd60e51b8152600401610946906135e8565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006001600160a01b0384163b15611d0357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c5190339089908890889060040161362d565b6020604051808303816000875af1925050508015611c8c575060408051601f3d908101601f19168201909252611c8991810190613660565b60015b611ce9573d808015611cba576040519150601f19603f3d011682016040523d82523d6000602084013e611cbf565b606091505b508051600003611ce15760405162461bcd60e51b815260040161094690613287565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111f5565b5060016111f5565b905290565b604051806080016040528060006001600160801b03191681526020016060815260200160608152602001611d0b604051806060016040528060608152602001600015158152602001606081525090565b6001600160e01b031981168114610ffb57600080fd5b600060208284031215611d8857600080fd5b8135610bea81611d60565b60005b83811015611dae578181015183820152602001611d96565b50506000910152565b60008151808452611dcf816020860160208601611d93565b601f01601f19169290920160200192915050565b602081526000610bea6020830184611db7565b634e487b7160e01b600052604160045260246000fd5b60405160a081016001600160401b0381118282101715611e2e57611e2e611df6565b60405290565b60405160c081016001600160401b0381118282101715611e2e57611e2e611df6565b60405160e081016001600160401b0381118282101715611e2e57611e2e611df6565b604051608081016001600160401b0381118282101715611e2e57611e2e611df6565b604051601f8201601f191681016001600160401b0381118282101715611ec257611ec2611df6565b604052919050565b60006001600160401b03821115611ee357611ee3611df6565b50601f01601f191660200190565b6000611f04611eff84611eca565b611e9a565b9050828152838383011115611f1857600080fd5b828260208301376000602084830101529392505050565b600082601f830112611f4057600080fd5b610bea83833560208501611ef1565b80356001600160a01b0381168114611f6657600080fd5b919050565b60008060408385031215611f7e57600080fd5b82356001600160401b03811115611f9457600080fd5b611fa085828601611f2f565b925050611faf60208401611f4f565b90509250929050565b600060208284031215611fca57600080fd5b5035919050565b60008060408385031215611fe457600080fd5b611fed83611f4f565b946020939093013593505050565b60008060006060848603121561201057600080fd5b61201984611f4f565b925061202760208501611f4f565b9150604084013590509250925092565b8015158114610ffb57600080fd5b60006020828403121561205757600080fd5b8135610bea81612037565b60008151606084526120776060850182611db7565b90506020830151151560208501526040830151848203604086015261209c8282611db7565b95945050505050565b602081526000610bea6020830184612062565b600080604083850312156120cb57600080fd5b82356001600160401b03808211156120e257600080fd5b6120ee86838701611f2f565b9350602085013591508082111561210457600080fd5b5061211185828601611f2f565b9150509250929050565b60006020828403121561212d57600080fd5b610bea82611f4f565b81516001600160801b031916815260208083015151151590820152604081016104fa565b634e487b7160e01b600052602160045260246000fd5b600681106121805761218061215a565b9052565b600081518084526020808501808196508360051b8101915082860160005b85811015612216578284038952815160c06121be868351612170565b818701518688015260408083015115159087015260608083015115159087015260808083015115159087015260a09182015191860181905261220281870183611db7565b9a87019a95505050908401906001016121a2565b5091979650505050505050565b600581106121805761218061215a565b600081518084526020808501808196508360051b8101915082860160005b85811015612216578284038952815160e061226d868351612223565b818701516001600160801b031990811687890152604080840151909116908701526060808301519087015260808083015115159087015260a08083015115159087015260c0918201519186018190526122c881870183611db7565b9a87019a9550505090840190600101612251565b6020815260008251604060208401526122f86060840182612184565b90506020840151601f1984830301604085015261209c8282612233565b60006020828403121561232757600080fd5b81356001600160401b0381111561233d57600080fd5b8201601f8101841361234e57600080fd5b6111f584823560208401611ef1565b6000806040838503121561237057600080fd5b61237983611f4f565b9150602083013561238981612037565b809150509250929050565b600080600080608085870312156123aa57600080fd5b6123b385611f4f565b93506123c160208601611f4f565b92506040850135915060608501356001600160401b038111156123e357600080fd5b6123ef87828801611f2f565b91505092959194509250565b6000806040838503121561240e57600080fd5b823561241981612037565b915060208301356001600160401b0381111561243457600080fd5b61211185828601611f2f565b60008060006060848603121561245557600080fd5b83356001600160401b038082111561246c57600080fd5b61247887838801611f2f565b94506020860135915061248a82612037565b909250604085013590808211156124a057600080fd5b506124ad86828701611f2f565b9150509250925092565b600080604083850312156124ca57600080fd5b6124d383611f4f565b9150611faf60208401611f4f565b600181811c908216806124f557607f821691505b60208210810361251557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b600082601f83011261257957600080fd5b8151612587611eff82611eca565b81815284602083860101111561259c57600080fd5b6111f5826020830160208701611d93565b8051611f6681612037565b6000606082840312156125ca57600080fd5b604051606081016001600160401b0382821081831117156125ed576125ed611df6565b81604052829350845191508082111561260557600080fd5b61261186838701612568565b83526020850151915061262382612037565b816020840152604085015191508082111561263d57600080fd5b5061264a85828601612568565b6040830152505092915050565b60006020828403121561266957600080fd5b81516001600160401b0381111561267f57600080fd5b6111f5848285016125b8565b60408152600061269e6040830185611db7565b828103602084015261209c8185611db7565b82151581526040602082015260006111f56040830184611db7565b6060815260006126de6060830186611db7565b841515602084015282810360408401526126f88185611db7565b9695505050505050565b80516001600160801b031981168114611f6657600080fd5b60006001600160401b0382111561273357612733611df6565b5060051b60200190565b805160068110611f6657600080fd5b600082601f83011261275d57600080fd5b8151602061276d611eff8361271a565b82815260059290921b8401810191818101908684111561278c57600080fd5b8286015b8481101561284a5780516001600160401b03808211156127b05760008081fd5b9088019060a0828b03601f19018113156127ca5760008081fd5b6127d2611e0c565b6127dd88850161273d565b81526040808501516127ee81612037565b828a015260608581015161280181612037565b80838501525060809150818601518184015250828501519250838311156128285760008081fd5b6128368d8a85880101612568565b908201528652505050918301918301612790565b509695505050505050565b805160058110611f6657600080fd5b600082601f83011261287557600080fd5b81516020612885611eff8361271a565b82815260059290921b840181019181810190868411156128a457600080fd5b8286015b8481101561284a5780516001600160401b03808211156128c85760008081fd5b9088019060c0828b03601f19018113156128e25760008081fd5b6128ea611e34565b6128f5888501612855565b81526040612904818601612702565b898301526060612915818701612702565b82840152608091508186015161292a81612037565b9083015260a0858101518284015292850151928484111561294d57600091508182fd5b61295b8e8b86890101612568565b908301525086525050509183019183016128a8565b6000602080838503121561298357600080fd5b82516001600160401b038082111561299a57600080fd5b9084019060a082870312156129ae57600080fd5b6129b6611e0c565b6129bf83612702565b81526129cc848401612702565b84820152604083015160408201526060830151828111156129ec57600080fd5b6129f888828601612568565b60608301525060808084015183811115612a1157600080fd5b80850194505087601f850112612a2657600080fd5b8351612a34611eff8261271a565b81815260059190911b8501860190868101908a831115612a5357600080fd5b8787015b83811015612b3b57805187811115612a6f5760008081fd5b880160a0818e03601f19011215612a865760008081fd5b612a8e611e0c565b8a82015189811115612aa05760008081fd5b612aae8f8d8386010161274c565b825250604082015189811115612ac45760008081fd5b612ad28f8d83860101612864565b8c83015250606082015160408201528682015189811115612af35760008081fd5b612b018f8d83860101612568565b60608301525060a082015189811115612b1a5760008081fd5b612b288f8d83860101612568565b8289015250845250918801918801612a57565b50928401929092525090979650505050505050565b600081518084526020808501808196508360051b8101915082860160005b85811015612216578284038952815160c0612b8a868351612223565b818701516001600160801b031990811687890152604080840151909116908701526060808301511515908701526080808301519087015260a091820151918601819052612bd981870183611db7565b9a87019a9550505090840190600101612b6e565b6001600160801b031981511682526000602082015160806020850152612c166080850182612184565b905060408301518482036040860152612c2f8282612233565b9150506060830151848203606086015261209c8282612062565b600060808083526001600160801b0319808751168285015260208088015182811660a087015250604088015191508160c08601526060880151915060a060e0860152612c99610120860183611db7565b88840151868203607f1901610100880152805180835291935082019082840190600581901b8501840160005b82811015612dd257601f198783030184528451805160a0808552815190850181905260c0600582901b86018101928a01919086019060005b81811015612d675760bf198886030183528351612d1b868251612170565b8c81015115158d870152604081015115156040870152606081015160608701528e810151905060a08f870152612d5460a0870182611db7565b955050928b0192918b0191600101612cfd565b505050508782015184820389860152612d808282612b50565b9150506040820151604085015260608201518482036060860152612da48282611db7565b9150508982015191508381038a850152612dbe8183611db7565b968801969588019593505050600101612cc5565b50888103858a0152612de4818c612bed565b8a516001600160801b03191660408b015260208b015151151560608b015297506111f59650505050505050565b600082601f830112612e2257600080fd5b81516020612e32611eff8361271a565b82815260059290921b84018101918181019086841115612e5157600080fd5b8286015b8481101561284a5780516001600160401b0380821115612e755760008081fd5b9088019060a0828b03601f1901811315612e8f5760008081fd5b612e97611e0c565b612ea288850161273d565b8152604080850151612eb381612037565b808a8401525060608086015182840152608091508186015185811115612ed95760008081fd5b612ee78f8c838a0101612568565b82850152505082850151925083831115612f015760008081fd5b612f0f8d8a85880101612568565b908201528652505050918301918301612e55565b600082601f830112612f3457600080fd5b81516020612f44611eff8361271a565b82815260059290921b84018101918181019086841115612f6357600080fd5b8286015b8481101561284a5780516001600160401b0380821115612f875760008081fd5b9088019060e0828b03601f1901811315612fa15760008081fd5b612fa9611e56565b612fb4888501612855565b81526040612fc3818601612702565b898301526060612fd4818701612702565b828401526080915081860151818401525060a08086015185811115612ff95760008081fd5b6130078f8c838a0101612568565b838501525060c091508186015181840152508285015192508383111561302d5760008081fd5b61303b8d8a85880101612568565b908201528652505050918301918301612f67565b60006020828403121561306157600080fd5b81516001600160401b038082111561307857600080fd5b9083019060c0828603121561308c57600080fd5b613094611e34565b61309d83612702565b81526130ab60208401612702565b6020820152604083015160408201526060830151828111156130cc57600080fd5b6130d887828601612e11565b6060830152506080830151828111156130f057600080fd5b6130fc87828601612f23565b60808301525060a08301518281111561311457600080fd5b61312087828601612568565b60a08301525095945050505050565b634e487b7160e01b600052603260045260246000fd5b60006001820161316557634e487b7160e01b600052601160045260246000fd5b5060010190565b602081016104fa8284612170565b601f8211156109e757600081815260208120601f850160051c810160208610156131a15750805b601f850160051c820191505b818110156131c0578281556001016131ad565b505050505050565b81516001600160401b038111156131e1576131e1611df6565b6131f5816131ef84546124e1565b8461317a565b602080601f83116001811461322a57600084156132125750858301515b600019600386901b1c1916600185901b1785556131c0565b600085815260208120601f198616915b828110156132595788860151825594840194600190910190840161323a565b50858210156132775787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6060815260006132ec6060830186612184565b82810360208401526132fe8186612233565b905082810360408401526126f88185612062565b600082601f83011261332357600080fd5b81516020613333611eff8361271a565b82815260059290921b8401810191818101908684111561335257600080fd5b8286015b8481101561284a5780516001600160401b03808211156133765760008081fd5b9088019060e0828b03601f19018113156133905760008081fd5b613398611e56565b6133a3888501612855565b815260406133b2818601612702565b8983015260606133c3818701612702565b828401526080915081860151818401525060a06133e18187016125ad565b8284015260c091506133f48287016125ad565b9083015291840151918383111561340b5760008081fd5b6134198d8a85880101612568565b908201528652505050918301918301613356565b6000602080838503121561344057600080fd5b82516001600160401b038082111561345757600080fd5b908401906080828703121561346b57600080fd5b613473611e78565b61347c83612702565b8152838301518281111561348f57600080fd5b8301601f810188136134a057600080fd5b80516134ae611eff8261271a565b81815260059190911b8201860190868101908a8311156134cd57600080fd5b8784015b8381101561358a578051878111156134e857600080fd5b850160c0818e03601f190112156134fe57600080fd5b613506611e34565b6135118b830161273d565b815260408201518b820152606082015161352a81612037565b6040820152608082015161353d81612037565b606082015260a082015161355081612037565b608082015260c0820151898111156135685760008081fd5b6135768f8d83860101612568565b60a0830152508452509188019188016134d1565b5080888601525050505060408301519350818411156135a857600080fd5b6135b487858501613312565b604082015260608301519350818411156135cd57600080fd5b6135d9878585016125b8565b60608201529695505050505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126f890830184611db7565b60006020828403121561367257600080fd5b8151610bea81611d6056fea264697066735822122002f12c296c63151c0ced575960aa708bc58997087b7e1ea372f27fd6f9f7a82164736f6c634300081400330000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a05b7249cf5d8a1669cec21e5aa554299d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000c92065f759c3d1c94d08c27a2ab97a1c874cbc000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000195369736d6f204561726c7920436f6d6d756e697479204e4654000000000000000000000000000000000000000000000000000000000000000000000000000009534561726c794e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d65765836335737664c754c33466165697a4536546d6b75756d70394e36545a6654515641376d5771754151342f00000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000c90878eaa974c31bc62c52ad86121765000000000000000000000000000000006c6174657374000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80638813ce1211610104578063b88d4fde116100a2578063cea8eb4e11610071578063cea8eb4e14610439578063e06897031461044c578063e985e9c51461045f578063f2fde38b1461049b57600080fd5b8063b88d4fde146103cb578063c187bbc1146103de578063c87b56dd1461041e578063c9512d991461043157600080fd5b806395652cfa116100de57806395652cfa1461037657806395d89b4114610389578063a183dc2714610391578063a22cb465146103b857600080fd5b80638813ce12146103295780638c98485f1461033e5780638da5cb5b1461036557600080fd5b806346916301116101715780636e01370e1161014b5780636e01370e146102d857806370a08231146102eb578063715018a61461030c57806379502c551461031457600080fd5b8063469163011461028a57806349161195146102a55780636352211e146102c557600080fd5b8063081812fc116101ad578063081812fc14610226578063095ea7b31461025157806323b872dd1461026457806342842e0e1461027757600080fd5b806301ffc9a7146101d457806306fdde03146101fc57806307c8064f14610211575b600080fd5b6101e76101e2366004611d76565b6104ae565b60405190151581526020015b60405180910390f35b610204610500565b6040516101f39190611de3565b61022461021f366004611f6b565b610592565b005b610239610234366004611fb8565b6108ab565b6040516001600160a01b0390911681526020016101f3565b61022461025f366004611fd1565b6108d2565b610224610272366004611ffb565b6109ec565b610224610285366004611ffb565b610a1d565b610239733cd5334eb64ebbd4003b72022cc25465f1bfcee681565b6102b86102b3366004612045565b610a38565b6040516101f391906120a5565b6102396102d3366004611fb8565b610adf565b6102b86102e63660046120b8565b610b3f565b6102fe6102f936600461211b565b610bf1565b6040519081526020016101f3565b610224610c77565b61031c610c8b565b6040516101f39190612136565b610331610d00565b6040516101f391906122dc565b6101e77f000000000000000000000000000000000000000000000000000000000000000181565b6006546001600160a01b0316610239565b610224610384366004612315565b610fea565b610204610ffe565b6101e77f000000000000000000000000000000000000000000000000000000000000000081565b6102246103c636600461235d565b61100d565b6102246103d9366004612394565b61101c565b6104057f5b7249cf5d8a1669cec21e5aa554299d0000000000000000000000000000000081565b6040516001600160801b031990911681526020016101f3565b61020461042c366004611fb8565b61104e565b6102fe600281565b6102b86104473660046123fb565b6110e2565b6102b861045a366004612440565b611148565b6101e761046d3660046124b7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102246104a936600461211b565b6111fd565b60006001600160e01b031982166380ac58cd60e01b14806104df57506001600160e01b03198216635b5e139f60e01b145b806104fa57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461050f906124e1565b80601f016020809104026020016040519081016040528092919081815260200182805461053b906124e1565b80156105885780601f1061055d57610100808354040283529160200191610588565b820191906000526020600020905b81548152906001019060200180831161056b57829003601f168201915b5050505050905090565b600880546040805160208084028201810190925282815260009361088b938793869084015b828210156106e3576000848152602090206040805160c08101909152600484029091018054829060ff1660058111156105f2576105f261215a565b60058111156106035761060361215a565b815260018201546020820152600282015460ff80821615156040840152610100820481161515606084015262010000909104161515608082015260038201805460a090920191610652906124e1565b80601f016020809104026020016040519081016040528092919081815260200182805461067e906124e1565b80156106cb5780601f106106a0576101008083540402835291602001916106cb565b820191906000526020600020905b8154815290600101906020018083116106ae57829003601f168201915b505050505081525050815260200190600101906105b7565b505050506008600101805480602002602001604051908101604052809291908181526020016000905b82821015610855576000848152602090206040805160e08101909152600584029091018054829060ff1660048111156107475761074761215a565b60048111156107585761075861215a565b8152815461010090819004608090811b6001600160801b031990811660208501526001850154821b16604084015260028401546060840152600384015460ff8082161515928501929092529190910416151560a082015260048201805460c0909201916107c4906124e1565b80601f01602080910402602001604051908101604052809291908181526020018280546107f0906124e1565b801561083d5780601f106108125761010080835404028352916020019161083d565b820191906000526020600020905b81548152906001019060200180831161082057829003601f168201915b5050505050815250508152602001906001019061070c565b5050604080516001600160a01b038a1660208201526108869350019050604051602081830303815290604052611273565b6112d7565b9050600061089982826113d8565b90506108a5838261148b565b50505050565b60006108b682611616565b506000908152600460205260409020546001600160a01b031690565b60006108dd82610adf565b9050806001600160a01b0316836001600160a01b03160361094f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061096b575061096b813361046d565b6109dd5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610946565b6109e78383611675565b505050565b6109f633826116e3565b610a125760405162461bcd60e51b81526004016109469061251b565b6109e7838383611761565b6109e78383836040518060200160405280600081525061101c565b604080516060808201835280825260006020830152818301529051631f6c2b9760e11b815282151560048201526001600160a01b037f0000000000000000000000000c5a188e778a9a0736fcbf25af6298e92182d6761690633ed8572e906024015b600060405180830381865afa158015610ab7573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526104fa9190810190612657565b6000818152600260205260408120546001600160a01b0316806104fa5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610946565b604080516060808201835280825260006020830152818301529051631778ed1360e21b81527f0000000000000000000000000c5a188e778a9a0736fcbf25af6298e92182d6766001600160a01b031690635de3b44c90610ba5908690869060040161268b565b600060405180830381865afa158015610bc2573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610bea9190810190612657565b9392505050565b60006001600160a01b038216610c5b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610946565b506001600160a01b031660009081526003602052604090205490565b610c7f6117aa565b610c896000611804565b565b610cb1604080518082018252600080825282516020818101909452908152909182015290565b610cfb7f5b7249cf5d8a1669cec21e5aa554299d000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000611856565b905090565b6040805180820190915260608082526020820152604080516008805460606020820284018101855293830181815260009484928491879085015b82821015610e66576000848152602090206040805160c08101909152600484029091018054829060ff166005811115610d7557610d7561215a565b6005811115610d8657610d8661215a565b815260018201546020820152600282015460ff80821615156040840152610100820481161515606084015262010000909104161515608082015260038201805460a090920191610dd5906124e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610e01906124e1565b8015610e4e5780601f10610e2357610100808354040283529160200191610e4e565b820191906000526020600020905b815481529060010190602001808311610e3157829003601f168201915b50505050508152505081526020019060010190610d3a565b50505050815260200160018201805480602002602001604051908101604052809291908181526020016000905b82821015610fdc576000848152602090206040805160e08101909152600584029091018054829060ff166004811115610ece57610ece61215a565b6004811115610edf57610edf61215a565b8152815461010090819004608090811b6001600160801b031990811660208501526001850154821b16604084015260028401546060840152600384015460ff8082161515928501929092529190910416151560a082015260048201805460c090920191610f4b906124e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610f77906124e1565b8015610fc45780601f10610f9957610100808354040283529160200191610fc4565b820191906000526020600020905b815481529060010190602001808311610fa757829003601f168201915b50505050508152505081526020019060010190610e93565b505050915250909392505050565b610ff26117aa565b610ffb816118c4565b50565b60606001805461050f906124e1565b61101833838361190b565b5050565b61102633836116e3565b6110425760405162461bcd60e51b81526004016109469061251b565b6108a5848484846119d9565b60606007805461105d906124e1565b80601f0160208091040260200160405190810160405280929190818152602001828054611089906124e1565b80156110d65780601f106110ab576101008083540402835291602001916110d6565b820191906000526020600020905b8154815290600101906020018083116110b957829003601f168201915b50505050509050919050565b604080516060808201835280825260006020830152818301529051631d1db46b60e21b81527f0000000000000000000000000c5a188e778a9a0736fcbf25af6298e92182d6766001600160a01b031690637476d1ac90610ba590869086906004016126b0565b604080516060808201835280825260006020830152818301529051631f785c9560e01b81527f0000000000000000000000000c5a188e778a9a0736fcbf25af6298e92182d6766001600160a01b031690631f785c95906111b0908790879087906004016126cb565b600060405180830381865afa1580156111cd573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526111f59190810190612657565b949350505050565b6112056117aa565b6001600160a01b03811661126a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610946565b610ffb81611804565b604080516060808201835280825260006020830152818301529051631a0d7ccb60e21b81527f0000000000000000000000000c5a188e778a9a0736fcbf25af6298e92182d6766001600160a01b031690636835f32c90610a9a908590600401611de3565b6040805160c0810182526000808252602082018190529181019190915260608082018190526080820181905260a082015260008580602001905181019061131e9190612970565b9050600061132d868686611a0c565b90507f0000000000000000000000001ec082560ab5938ec8d768211684d57089f4d73c6001600160a01b03166312b037ff8383611368610c8b565b6040518463ffffffff1660e01b815260040161138693929190612c49565b6000604051808303816000875af11580156113a5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526113cd919081019061304f565b979650505050505050565b6000805b83606001515181101561146f578260058111156113fb576113fb61215a565b846060015182815181106114115761141161312f565b602002602001015160000151600581111561142e5761142e61215a565b0361145d57836060015181815181106114495761144961312f565b6020026020010151604001519150506104fa565b8061146781613145565b9150506113dc565b508160405163267ac2cf60e01b8152600401610946919061316c565b6001600160a01b0382166114e15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610946565b6000818152600260205260409020546001600160a01b0316156115465760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610946565b6000818152600260205260409020546001600160a01b0316156115ab5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610946565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818152600260205260409020546001600160a01b0316610ffb5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610946565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116aa82610adf565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806116ef83610adf565b9050806001600160a01b0316846001600160a01b0316148061173657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806111f55750836001600160a01b031661174f846108ab565b6001600160a01b031614949350505050565b7f000000000000000000000000000000000000000000000000000000000000000161179f57604051632630e0df60e11b815260040160405180910390fd5b6109e7838383611aa9565b6006546001600160a01b03163314610c895760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610946565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61187c604080518082018252600080825282516020818101909452908152909182015290565b6040518060400160405280846001600160801b03191681526020016118bb84604080516020808201835260009091528151908101909152901515815290565b90529392505050565b60076118d082826131c8565b507f2e9b34e5ec7377754a85ec13c1e9a442a00db0c46dbdefbb143dd0371fd20c1c816040516119009190611de3565b60405180910390a150565b816001600160a01b0316836001600160a01b03160361196c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610946565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6119e4848484611761565b6119f084848484611c0d565b6108a55760405162461bcd60e51b815260040161094690613287565b611a14611d10565b604051634c92019b60e11b81526001600160a01b037f0000000000000000000000008d090172da53a21d27e7b651ab6e7d9334ea07831690639924033690611a64908790879087906004016132d9565b600060405180830381865afa158015611a81573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526111f5919081019061342d565b826001600160a01b0316611abc82610adf565b6001600160a01b031614611ae25760405162461bcd60e51b8152600401610946906135e8565b6001600160a01b038216611b445760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610946565b826001600160a01b0316611b5782610adf565b6001600160a01b031614611b7d5760405162461bcd60e51b8152600401610946906135e8565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006001600160a01b0384163b15611d0357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c5190339089908890889060040161362d565b6020604051808303816000875af1925050508015611c8c575060408051601f3d908101601f19168201909252611c8991810190613660565b60015b611ce9573d808015611cba576040519150601f19603f3d011682016040523d82523d6000602084013e611cbf565b606091505b508051600003611ce15760405162461bcd60e51b815260040161094690613287565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111f5565b5060016111f5565b905290565b604051806080016040528060006001600160801b03191681526020016060815260200160608152602001611d0b604051806060016040528060608152602001600015158152602001606081525090565b6001600160e01b031981168114610ffb57600080fd5b600060208284031215611d8857600080fd5b8135610bea81611d60565b60005b83811015611dae578181015183820152602001611d96565b50506000910152565b60008151808452611dcf816020860160208601611d93565b601f01601f19169290920160200192915050565b602081526000610bea6020830184611db7565b634e487b7160e01b600052604160045260246000fd5b60405160a081016001600160401b0381118282101715611e2e57611e2e611df6565b60405290565b60405160c081016001600160401b0381118282101715611e2e57611e2e611df6565b60405160e081016001600160401b0381118282101715611e2e57611e2e611df6565b604051608081016001600160401b0381118282101715611e2e57611e2e611df6565b604051601f8201601f191681016001600160401b0381118282101715611ec257611ec2611df6565b604052919050565b60006001600160401b03821115611ee357611ee3611df6565b50601f01601f191660200190565b6000611f04611eff84611eca565b611e9a565b9050828152838383011115611f1857600080fd5b828260208301376000602084830101529392505050565b600082601f830112611f4057600080fd5b610bea83833560208501611ef1565b80356001600160a01b0381168114611f6657600080fd5b919050565b60008060408385031215611f7e57600080fd5b82356001600160401b03811115611f9457600080fd5b611fa085828601611f2f565b925050611faf60208401611f4f565b90509250929050565b600060208284031215611fca57600080fd5b5035919050565b60008060408385031215611fe457600080fd5b611fed83611f4f565b946020939093013593505050565b60008060006060848603121561201057600080fd5b61201984611f4f565b925061202760208501611f4f565b9150604084013590509250925092565b8015158114610ffb57600080fd5b60006020828403121561205757600080fd5b8135610bea81612037565b60008151606084526120776060850182611db7565b90506020830151151560208501526040830151848203604086015261209c8282611db7565b95945050505050565b602081526000610bea6020830184612062565b600080604083850312156120cb57600080fd5b82356001600160401b03808211156120e257600080fd5b6120ee86838701611f2f565b9350602085013591508082111561210457600080fd5b5061211185828601611f2f565b9150509250929050565b60006020828403121561212d57600080fd5b610bea82611f4f565b81516001600160801b031916815260208083015151151590820152604081016104fa565b634e487b7160e01b600052602160045260246000fd5b600681106121805761218061215a565b9052565b600081518084526020808501808196508360051b8101915082860160005b85811015612216578284038952815160c06121be868351612170565b818701518688015260408083015115159087015260608083015115159087015260808083015115159087015260a09182015191860181905261220281870183611db7565b9a87019a95505050908401906001016121a2565b5091979650505050505050565b600581106121805761218061215a565b600081518084526020808501808196508360051b8101915082860160005b85811015612216578284038952815160e061226d868351612223565b818701516001600160801b031990811687890152604080840151909116908701526060808301519087015260808083015115159087015260a08083015115159087015260c0918201519186018190526122c881870183611db7565b9a87019a9550505090840190600101612251565b6020815260008251604060208401526122f86060840182612184565b90506020840151601f1984830301604085015261209c8282612233565b60006020828403121561232757600080fd5b81356001600160401b0381111561233d57600080fd5b8201601f8101841361234e57600080fd5b6111f584823560208401611ef1565b6000806040838503121561237057600080fd5b61237983611f4f565b9150602083013561238981612037565b809150509250929050565b600080600080608085870312156123aa57600080fd5b6123b385611f4f565b93506123c160208601611f4f565b92506040850135915060608501356001600160401b038111156123e357600080fd5b6123ef87828801611f2f565b91505092959194509250565b6000806040838503121561240e57600080fd5b823561241981612037565b915060208301356001600160401b0381111561243457600080fd5b61211185828601611f2f565b60008060006060848603121561245557600080fd5b83356001600160401b038082111561246c57600080fd5b61247887838801611f2f565b94506020860135915061248a82612037565b909250604085013590808211156124a057600080fd5b506124ad86828701611f2f565b9150509250925092565b600080604083850312156124ca57600080fd5b6124d383611f4f565b9150611faf60208401611f4f565b600181811c908216806124f557607f821691505b60208210810361251557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b600082601f83011261257957600080fd5b8151612587611eff82611eca565b81815284602083860101111561259c57600080fd5b6111f5826020830160208701611d93565b8051611f6681612037565b6000606082840312156125ca57600080fd5b604051606081016001600160401b0382821081831117156125ed576125ed611df6565b81604052829350845191508082111561260557600080fd5b61261186838701612568565b83526020850151915061262382612037565b816020840152604085015191508082111561263d57600080fd5b5061264a85828601612568565b6040830152505092915050565b60006020828403121561266957600080fd5b81516001600160401b0381111561267f57600080fd5b6111f5848285016125b8565b60408152600061269e6040830185611db7565b828103602084015261209c8185611db7565b82151581526040602082015260006111f56040830184611db7565b6060815260006126de6060830186611db7565b841515602084015282810360408401526126f88185611db7565b9695505050505050565b80516001600160801b031981168114611f6657600080fd5b60006001600160401b0382111561273357612733611df6565b5060051b60200190565b805160068110611f6657600080fd5b600082601f83011261275d57600080fd5b8151602061276d611eff8361271a565b82815260059290921b8401810191818101908684111561278c57600080fd5b8286015b8481101561284a5780516001600160401b03808211156127b05760008081fd5b9088019060a0828b03601f19018113156127ca5760008081fd5b6127d2611e0c565b6127dd88850161273d565b81526040808501516127ee81612037565b828a015260608581015161280181612037565b80838501525060809150818601518184015250828501519250838311156128285760008081fd5b6128368d8a85880101612568565b908201528652505050918301918301612790565b509695505050505050565b805160058110611f6657600080fd5b600082601f83011261287557600080fd5b81516020612885611eff8361271a565b82815260059290921b840181019181810190868411156128a457600080fd5b8286015b8481101561284a5780516001600160401b03808211156128c85760008081fd5b9088019060c0828b03601f19018113156128e25760008081fd5b6128ea611e34565b6128f5888501612855565b81526040612904818601612702565b898301526060612915818701612702565b82840152608091508186015161292a81612037565b9083015260a0858101518284015292850151928484111561294d57600091508182fd5b61295b8e8b86890101612568565b908301525086525050509183019183016128a8565b6000602080838503121561298357600080fd5b82516001600160401b038082111561299a57600080fd5b9084019060a082870312156129ae57600080fd5b6129b6611e0c565b6129bf83612702565b81526129cc848401612702565b84820152604083015160408201526060830151828111156129ec57600080fd5b6129f888828601612568565b60608301525060808084015183811115612a1157600080fd5b80850194505087601f850112612a2657600080fd5b8351612a34611eff8261271a565b81815260059190911b8501860190868101908a831115612a5357600080fd5b8787015b83811015612b3b57805187811115612a6f5760008081fd5b880160a0818e03601f19011215612a865760008081fd5b612a8e611e0c565b8a82015189811115612aa05760008081fd5b612aae8f8d8386010161274c565b825250604082015189811115612ac45760008081fd5b612ad28f8d83860101612864565b8c83015250606082015160408201528682015189811115612af35760008081fd5b612b018f8d83860101612568565b60608301525060a082015189811115612b1a5760008081fd5b612b288f8d83860101612568565b8289015250845250918801918801612a57565b50928401929092525090979650505050505050565b600081518084526020808501808196508360051b8101915082860160005b85811015612216578284038952815160c0612b8a868351612223565b818701516001600160801b031990811687890152604080840151909116908701526060808301511515908701526080808301519087015260a091820151918601819052612bd981870183611db7565b9a87019a9550505090840190600101612b6e565b6001600160801b031981511682526000602082015160806020850152612c166080850182612184565b905060408301518482036040860152612c2f8282612233565b9150506060830151848203606086015261209c8282612062565b600060808083526001600160801b0319808751168285015260208088015182811660a087015250604088015191508160c08601526060880151915060a060e0860152612c99610120860183611db7565b88840151868203607f1901610100880152805180835291935082019082840190600581901b8501840160005b82811015612dd257601f198783030184528451805160a0808552815190850181905260c0600582901b86018101928a01919086019060005b81811015612d675760bf198886030183528351612d1b868251612170565b8c81015115158d870152604081015115156040870152606081015160608701528e810151905060a08f870152612d5460a0870182611db7565b955050928b0192918b0191600101612cfd565b505050508782015184820389860152612d808282612b50565b9150506040820151604085015260608201518482036060860152612da48282611db7565b9150508982015191508381038a850152612dbe8183611db7565b968801969588019593505050600101612cc5565b50888103858a0152612de4818c612bed565b8a516001600160801b03191660408b015260208b015151151560608b015297506111f59650505050505050565b600082601f830112612e2257600080fd5b81516020612e32611eff8361271a565b82815260059290921b84018101918181019086841115612e5157600080fd5b8286015b8481101561284a5780516001600160401b0380821115612e755760008081fd5b9088019060a0828b03601f1901811315612e8f5760008081fd5b612e97611e0c565b612ea288850161273d565b8152604080850151612eb381612037565b808a8401525060608086015182840152608091508186015185811115612ed95760008081fd5b612ee78f8c838a0101612568565b82850152505082850151925083831115612f015760008081fd5b612f0f8d8a85880101612568565b908201528652505050918301918301612e55565b600082601f830112612f3457600080fd5b81516020612f44611eff8361271a565b82815260059290921b84018101918181019086841115612f6357600080fd5b8286015b8481101561284a5780516001600160401b0380821115612f875760008081fd5b9088019060e0828b03601f1901811315612fa15760008081fd5b612fa9611e56565b612fb4888501612855565b81526040612fc3818601612702565b898301526060612fd4818701612702565b828401526080915081860151818401525060a08086015185811115612ff95760008081fd5b6130078f8c838a0101612568565b838501525060c091508186015181840152508285015192508383111561302d5760008081fd5b61303b8d8a85880101612568565b908201528652505050918301918301612f67565b60006020828403121561306157600080fd5b81516001600160401b038082111561307857600080fd5b9083019060c0828603121561308c57600080fd5b613094611e34565b61309d83612702565b81526130ab60208401612702565b6020820152604083015160408201526060830151828111156130cc57600080fd5b6130d887828601612e11565b6060830152506080830151828111156130f057600080fd5b6130fc87828601612f23565b60808301525060a08301518281111561311457600080fd5b61312087828601612568565b60a08301525095945050505050565b634e487b7160e01b600052603260045260246000fd5b60006001820161316557634e487b7160e01b600052601160045260246000fd5b5060010190565b602081016104fa8284612170565b601f8211156109e757600081815260208120601f850160051c810160208610156131a15750805b601f850160051c820191505b818110156131c0578281556001016131ad565b505050505050565b81516001600160401b038111156131e1576131e1611df6565b6131f5816131ef84546124e1565b8461317a565b602080601f83116001811461322a57600084156132125750858301515b600019600386901b1c1916600185901b1785556131c0565b600085815260208120601f198616915b828110156132595788860151825594840194600190910190840161323a565b50858210156132775787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6060815260006132ec6060830186612184565b82810360208401526132fe8186612233565b905082810360408401526126f88185612062565b600082601f83011261332357600080fd5b81516020613333611eff8361271a565b82815260059290921b8401810191818101908684111561335257600080fd5b8286015b8481101561284a5780516001600160401b03808211156133765760008081fd5b9088019060e0828b03601f19018113156133905760008081fd5b613398611e56565b6133a3888501612855565b815260406133b2818601612702565b8983015260606133c3818701612702565b828401526080915081860151818401525060a06133e18187016125ad565b8284015260c091506133f48287016125ad565b9083015291840151918383111561340b5760008081fd5b6134198d8a85880101612568565b908201528652505050918301918301613356565b6000602080838503121561344057600080fd5b82516001600160401b038082111561345757600080fd5b908401906080828703121561346b57600080fd5b613473611e78565b61347c83612702565b8152838301518281111561348f57600080fd5b8301601f810188136134a057600080fd5b80516134ae611eff8261271a565b81815260059190911b8201860190868101908a8311156134cd57600080fd5b8784015b8381101561358a578051878111156134e857600080fd5b850160c0818e03601f190112156134fe57600080fd5b613506611e34565b6135118b830161273d565b815260408201518b820152606082015161352a81612037565b6040820152608082015161353d81612037565b606082015260a082015161355081612037565b608082015260c0820151898111156135685760008081fd5b6135768f8d83860101612568565b60a0830152508452509188019188016134d1565b5080888601525050505060408301519350818411156135a857600080fd5b6135b487858501613312565b604082015260608301519350818411156135cd57600080fd5b6135d9878585016125b8565b60608201529695505050505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126f890830184611db7565b60006020828403121561367257600080fd5b8151610bea81611d6056fea264697066735822122002f12c296c63151c0ced575960aa708bc58997087b7e1ea372f27fd6f9f7a82164736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a05b7249cf5d8a1669cec21e5aa554299d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000c92065f759c3d1c94d08c27a2ab97a1c874cbc000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000195369736d6f204561726c7920436f6d6d756e697479204e4654000000000000000000000000000000000000000000000000000000000000000000000000000009534561726c794e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d65765836335737664c754c33466165697a4536546d6b75756d70394e36545a6654515641376d5771754151342f00000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000c90878eaa974c31bc62c52ad86121765000000000000000000000000000000006c6174657374000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Sismo Early Community NFT
Arg [1] : symbol_ (string): SEarlyNFT
Arg [2] : baseURI_ (string): ipfs://QmevX63W7fLuL3FaeizE6Tmkuump9N6TZfTQVA7mWquAQ4/
Arg [3] : appId_ (bytes16): 0x5b7249cf5d8a1669cec21e5aa554299d
Arg [4] : isImpersonationMode_ (bool): False
Arg [5] : authRequests_ (tuple[]): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [6] : claimRequests_ (tuple[]): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [7] : owner_ (address): 0x00c92065F759c3d1c94d08C27a2Ab97a1c874Cbc
Arg [8] : isTransferable_ (bool): True
-----Encoded View---------------
35 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [2] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [3] : 5b7249cf5d8a1669cec21e5aa554299d00000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000200
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000320
Arg [7] : 00000000000000000000000000c92065f759c3d1c94d08c27a2ab97a1c874cbc
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [10] : 5369736d6f204561726c7920436f6d6d756e697479204e465400000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [12] : 534561726c794e46540000000000000000000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [14] : 697066733a2f2f516d65765836335737664c754c33466165697a4536546d6b75
Arg [15] : 756d70394e36545a6654515641376d5771754151342f00000000000000000000
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [19] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [20] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [21] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [22] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [23] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [24] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [25] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [26] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [27] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [28] : c90878eaa974c31bc62c52ad8612176500000000000000000000000000000000
Arg [29] : 6c61746573740000000000000000000000000000000000000000000000000000
Arg [30] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [31] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [32] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [33] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [34] : 0000000000000000000000000000000000000000000000000000000000000000
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.