@wealthfolio/addon-sdk 1.0.0 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,176 @@
1
+ /**
2
+ * Addon manifest and metadata types
3
+ */
4
+ import type { Permission } from './permissions';
5
+ /**
6
+ * Unified addon manifest structure that handles both development and runtime scenarios
7
+ * This represents both what developers write in their manifest.json and installed addon metadata
8
+ */
9
+ export interface AddonManifest {
10
+ /** Unique addon identifier (lowercase, no spaces, hyphens allowed) */
11
+ id: string;
12
+ /** Human-readable addon name */
13
+ name: string;
14
+ /** Semantic version (e.g., "1.0.0") */
15
+ version: string;
16
+ /** Brief description of the addon's functionality */
17
+ description?: string;
18
+ /** Author name or organization */
19
+ author?: string;
20
+ /** Compatible SDK version */
21
+ sdkVersion?: string;
22
+ /** Main entry point file (relative to addon root) */
23
+ main?: string;
24
+ /** Whether the addon is enabled by default */
25
+ enabled?: boolean;
26
+ /** Permission declarations for security review */
27
+ permissions?: Permission[];
28
+ /** Addon homepage or documentation URL */
29
+ homepage?: string;
30
+ /** Support or issues URL */
31
+ repository?: string;
32
+ /** License identifier (e.g., "MIT", "Apache-2.0") */
33
+ license?: string;
34
+ /** Minimum Wealthfolio version required */
35
+ minWealthfolioVersion?: string;
36
+ /** Keywords for discoverability */
37
+ keywords?: string[];
38
+ /** Addon icon (base64 or relative path) */
39
+ icon?: string;
40
+ /** Installation timestamp in ISO format */
41
+ installedAt?: string;
42
+ /** Last update timestamp */
43
+ updatedAt?: string;
44
+ /** Installation source */
45
+ source?: 'local' | 'store' | 'sideload';
46
+ /** File size in bytes */
47
+ size?: number;
48
+ }
49
+ /**
50
+ * Type guard to check if a manifest has been installed (has runtime fields)
51
+ */
52
+ export declare function isInstalledManifest(manifest: AddonManifest): manifest is Required<Pick<AddonManifest, 'main' | 'enabled' | 'installedAt'>> & AddonManifest;
53
+ /**
54
+ * Helper type for development manifests (without runtime fields)
55
+ */
56
+ export type DevelopmentManifest = Omit<AddonManifest, 'installedAt' | 'updatedAt' | 'source' | 'size'>;
57
+ /**
58
+ * Helper type for installed manifests (with runtime fields)
59
+ */
60
+ export type InstalledManifest = Required<Pick<AddonManifest, 'main' | 'enabled' | 'installedAt'>> & AddonManifest;
61
+ /**
62
+ * Addon file information
63
+ */
64
+ export interface AddonFile {
65
+ /** File name */
66
+ name: string;
67
+ /** File content */
68
+ content: string;
69
+ /** Whether this is the main entry point */
70
+ is_main: boolean;
71
+ /** File size in bytes */
72
+ size?: number;
73
+ }
74
+ /**
75
+ * Extracted addon package
76
+ */
77
+ export interface ExtractedAddon {
78
+ /** Addon metadata from manifest */
79
+ metadata: AddonManifest;
80
+ /** List of files in the addon package */
81
+ files: AddonFile[];
82
+ }
83
+ /**
84
+ * Installed addon information
85
+ */
86
+ export interface InstalledAddon {
87
+ /** Addon metadata */
88
+ metadata: AddonManifest;
89
+ /** Installation path */
90
+ path?: string;
91
+ /** Whether the addon is currently active */
92
+ active?: boolean;
93
+ }
94
+ /**
95
+ * Addon installation result
96
+ */
97
+ export interface AddonInstallResult {
98
+ /** Whether installation was successful */
99
+ success: boolean;
100
+ /** Error message if installation failed */
101
+ error?: string;
102
+ /** Installed addon metadata */
103
+ addon?: AddonManifest;
104
+ }
105
+ /**
106
+ * Addon validation result
107
+ */
108
+ export interface AddonValidationResult {
109
+ /** Whether the addon is valid */
110
+ valid: boolean;
111
+ /** List of validation errors */
112
+ errors: string[];
113
+ /** List of validation warnings */
114
+ warnings: string[];
115
+ }
116
+ /**
117
+ * Addon update information
118
+ */
119
+ export interface AddonUpdateInfo {
120
+ /** Current installed version */
121
+ currentVersion: string;
122
+ /** Latest available version */
123
+ latestVersion: string;
124
+ /** Whether an update is available */
125
+ updateAvailable: boolean;
126
+ /** Download URL for the update */
127
+ downloadUrl?: string;
128
+ /** Release notes for the latest version */
129
+ releaseNotes?: string;
130
+ /** Release date of the latest version */
131
+ releaseDate?: string;
132
+ /** Changelog URL */
133
+ changelogUrl?: string;
134
+ /** Whether this is a critical security update */
135
+ isCritical?: boolean;
136
+ /** Breaking changes in this update */
137
+ hasBreakingChanges?: boolean;
138
+ /** Minimum Wealthfolio version required for this update */
139
+ minWealthfolioVersion?: string;
140
+ }
141
+ /**
142
+ * Addon update check result
143
+ */
144
+ export interface AddonUpdateCheckResult {
145
+ /** Addon ID */
146
+ addonId: string;
147
+ /** Update information */
148
+ updateInfo: AddonUpdateInfo;
149
+ /** Any errors during update check */
150
+ error?: string;
151
+ }
152
+ /**
153
+ * Addon store listing
154
+ */
155
+ export interface AddonStoreListing {
156
+ /** Addon metadata */
157
+ metadata: AddonManifest;
158
+ /** Download URL */
159
+ downloadUrl: string;
160
+ /** Number of downloads */
161
+ downloads?: number;
162
+ /** Average rating */
163
+ rating?: number;
164
+ /** Number of reviews */
165
+ reviewCount?: number;
166
+ /** Whether it's verified by Wealthfolio team */
167
+ verified?: boolean;
168
+ /** Last update date */
169
+ lastUpdated?: string;
170
+ /** Screenshots or images */
171
+ images?: string[];
172
+ /** Release notes for the latest version */
173
+ releaseNotes?: string;
174
+ /** Changelog URL */
175
+ changelogUrl?: string;
176
+ }
@@ -4,11 +4,11 @@
4
4
  /**
5
5
  * Security risk levels for addon operations
6
6
  */
7
- type RiskLevel = 'low' | 'medium' | 'high';
7
+ export type RiskLevel = 'low' | 'medium' | 'high';
8
8
  /**
9
9
  * Function permission details with declaration and detection tracking
10
10
  */
11
- interface FunctionPermission {
11
+ export interface FunctionPermission {
12
12
  /** Function name */
13
13
  name: string;
14
14
  /** Whether this function was declared by the developer in manifest */
@@ -21,7 +21,7 @@ interface FunctionPermission {
21
21
  /**
22
22
  * Permission requirement for specific addon functionality
23
23
  */
24
- interface Permission {
24
+ export interface Permission {
25
25
  /** Permission category identifier */
26
26
  category: string;
27
27
  /** List of API functions this permission grants access to with their declaration/detection status */
@@ -32,7 +32,7 @@ interface Permission {
32
32
  /**
33
33
  * Permission category definition
34
34
  */
35
- interface PermissionCategory {
35
+ export interface PermissionCategory {
36
36
  /** Unique category identifier */
37
37
  id: string;
38
38
  /** Display name for the category */
@@ -47,53 +47,51 @@ interface PermissionCategory {
47
47
  /**
48
48
  * Predefined permission categories with their associated functions and risk levels
49
49
  */
50
- declare const PERMISSION_CATEGORIES: PermissionCategory[];
50
+ export declare const PERMISSION_CATEGORIES: PermissionCategory[];
51
51
  /**
52
52
  * Helper functions for permission management
53
53
  */
54
54
  /**
55
55
  * Create a FunctionPermission object
56
56
  */
57
- declare function createFunctionPermission(name: string, isDeclared?: boolean, isDetected?: boolean, detectedAt?: string): FunctionPermission;
57
+ export declare function createFunctionPermission(name: string, isDeclared?: boolean, isDetected?: boolean, detectedAt?: string): FunctionPermission;
58
58
  /**
59
59
  * Get permission category by ID
60
60
  */
61
- declare function getPermissionCategory(id: string): PermissionCategory | undefined;
61
+ export declare function getPermissionCategory(id: string): PermissionCategory | undefined;
62
62
  /**
63
63
  * Get permission categories by risk level
64
64
  */
65
- declare function getPermissionCategoriesByRisk(riskLevel: RiskLevel): PermissionCategory[];
65
+ export declare function getPermissionCategoriesByRisk(riskLevel: RiskLevel): PermissionCategory[];
66
66
  /**
67
67
  * Get the risk level for a specific function
68
68
  */
69
- declare function getFunctionRiskLevel(functionName: string): RiskLevel | undefined;
69
+ export declare function getFunctionRiskLevel(functionName: string): RiskLevel | undefined;
70
70
  /**
71
71
  * Check if a function requires a specific permission category
72
72
  */
73
- declare function isPermissionRequired(functionName: string, categoryId: string): boolean;
73
+ export declare function isPermissionRequired(functionName: string, categoryId: string): boolean;
74
74
  /**
75
75
  * Get all declared functions from a permission
76
76
  */
77
- declare function getDeclaredFunctions(permission: Permission): string[];
77
+ export declare function getDeclaredFunctions(permission: Permission): string[];
78
78
  /**
79
79
  * Get all detected functions from a permission
80
80
  */
81
- declare function getDetectedFunctions(permission: Permission): string[];
81
+ export declare function getDetectedFunctions(permission: Permission): string[];
82
82
  /**
83
83
  * Get functions that were detected but not declared (potential security concern)
84
84
  */
85
- declare function getUndeclaredDetectedFunctions(permission: Permission): string[];
85
+ export declare function getUndeclaredDetectedFunctions(permission: Permission): string[];
86
86
  /**
87
87
  * Check if a permission has any undeclared detected functions
88
88
  */
89
- declare function hasUndeclaredDetectedFunctions(permission: Permission): boolean;
89
+ export declare function hasUndeclaredDetectedFunctions(permission: Permission): boolean;
90
90
  /**
91
91
  * Add a detected function to a permission
92
92
  */
93
- declare function addDetectedFunction(permission: Permission, functionName: string, detectedAt?: string): Permission;
93
+ export declare function addDetectedFunction(permission: Permission, functionName: string, detectedAt?: string): Permission;
94
94
  /**
95
95
  * Mark a function as declared in a permission
96
96
  */
97
- declare function markFunctionAsDeclared(permission: Permission, functionName: string): Permission;
98
-
99
- export { type FunctionPermission, PERMISSION_CATEGORIES, type Permission, type PermissionCategory, type RiskLevel, addDetectedFunction, createFunctionPermission, getDeclaredFunctions, getDetectedFunctions, getFunctionRiskLevel, getPermissionCategoriesByRisk, getPermissionCategory, getUndeclaredDetectedFunctions, hasUndeclaredDetectedFunctions, isPermissionRequired, markFunctionAsDeclared };
97
+ export declare function markFunctionAsDeclared(permission: Permission, functionName: string): Permission;
@@ -0,0 +1,44 @@
1
+ /**
2
+ * Shared Query Keys for React Query
3
+ * These keys should match the main application's query keys to ensure cache consistency
4
+ */
5
+ export declare const QueryKeys: {
6
+ readonly ACCOUNTS: "accounts";
7
+ readonly ACCOUNTS_SUMMARY: "accounts_summary";
8
+ readonly ACTIVITY_DATA: "activity-data";
9
+ readonly ACTIVITIES: "activities";
10
+ readonly HOLDINGS: "holdings";
11
+ readonly HOLDING: "holding";
12
+ readonly INCOME_SUMMARY: "incomeSummary";
13
+ readonly PORTFOLIO_SUMMARY: "portfolioSummary";
14
+ readonly QUOTE_HISTORY: "quoteHistory";
15
+ readonly GOALS: "goals";
16
+ readonly GOALS_ALLOCATIONS: "goals_allocations";
17
+ readonly SETTINGS: "settings";
18
+ readonly EXCHANGE_RATES: "exchangeRates";
19
+ readonly EXCHANGE_RATE_SYMBOLS: "exchange_rate_symbols";
20
+ readonly QUOTE: "quote";
21
+ readonly CONTRIBUTION_LIMITS: "contributionLimits";
22
+ readonly CONTRIBUTION_LIMIT_PROGRESS: "contributionLimitProgress";
23
+ readonly ASSET_DATA: "asset_data";
24
+ readonly IMPORT_MAPPING: "import_mapping";
25
+ readonly PERFORMANCE_SUMMARY: "performanceSummary";
26
+ readonly PERFORMANCE_HISTORY: "performanceHistory";
27
+ readonly HISTORY_VALUATION: "historyValuation";
28
+ readonly valuationHistory: (id: string) => string[];
29
+ readonly ACCOUNTS_SIMPLE_PERFORMANCE: "accountsSimplePerformance";
30
+ readonly accountsSimplePerformance: (accountIds: string[]) => string[];
31
+ readonly MARKET_DATA_PROVIDERS: "marketDataProviders";
32
+ readonly MARKET_DATA_PROVIDER_SETTINGS: "marketDataProviderSettings";
33
+ readonly transactions: "transactions";
34
+ readonly latestValuations: "latest-valuations";
35
+ readonly symbolSearch: "symbol-search";
36
+ readonly ASSET_HISTORY: "asset-history";
37
+ readonly INSTALLED_ADDONS: "installedAddons";
38
+ readonly ADDON_STORE_LISTINGS: "addonStoreListings";
39
+ readonly ADDON_AUTO_UPDATE_CHECK: "addonAutoUpdateCheck";
40
+ readonly secrets: {
41
+ readonly apiKey: (providerId: string) => string[];
42
+ };
43
+ };
44
+ export type QueryKeys = typeof QueryKeys;
@@ -0,0 +1,88 @@
1
+ import React from 'react';
2
+ import type { HostAPI } from './host-api';
3
+ /**
4
+ * Core types for addon development
5
+ */
6
+ /**
7
+ * Handle returned from sidebar item creation
8
+ */
9
+ export interface SidebarItemHandle {
10
+ /** Remove the sidebar item */
11
+ remove(): void;
12
+ }
13
+ /**
14
+ * Configuration for adding a sidebar item
15
+ */
16
+ export interface SidebarItemConfig {
17
+ /** Unique identifier for the sidebar item */
18
+ id: string;
19
+ /** Display text for the sidebar item */
20
+ label: string;
21
+ /** Optional icon name or React component */
22
+ icon?: string | React.ReactNode;
23
+ /** Optional route to navigate to when clicked */
24
+ route?: string;
25
+ /** Optional ordering priority (lower numbers appear first) */
26
+ order?: number;
27
+ /** Optional click handler (if no route provided) */
28
+ onClick?: () => void;
29
+ }
30
+ /**
31
+ * Configuration for adding a route
32
+ */
33
+ export interface RouteConfig {
34
+ /** Route path pattern */
35
+ path: string;
36
+ /** Lazy-loaded React component */
37
+ component: React.LazyExoticComponent<React.ComponentType<unknown>>;
38
+ }
39
+ /**
40
+ * Sidebar management interface
41
+ */
42
+ export interface SidebarManager {
43
+ /**
44
+ * Add an item to the application sidebar
45
+ * @param config Configuration for the sidebar item
46
+ * @returns Handle to remove the item
47
+ */
48
+ addItem(config: SidebarItemConfig): SidebarItemHandle;
49
+ }
50
+ /**
51
+ * Router management interface
52
+ */
53
+ export interface RouterManager {
54
+ /**
55
+ * Register a new route in the application
56
+ * @param route Route configuration
57
+ */
58
+ add(route: RouteConfig): void;
59
+ }
60
+ /**
61
+ * Event callback type for Tauri events
62
+ */
63
+ export type EventCallback<T> = (event: {
64
+ payload: T;
65
+ }) => void;
66
+ /**
67
+ * Unlisten function type for event listeners
68
+ */
69
+ export type UnlistenFn = () => void;
70
+ /**
71
+ * Main addon context interface providing access to Wealthfolio APIs
72
+ */
73
+ export interface AddonContext {
74
+ /** Sidebar management */
75
+ sidebar: SidebarManager;
76
+ /** Router management */
77
+ router: RouterManager;
78
+ /** Register a callback for addon cleanup */
79
+ onDisable(callback: () => void): void;
80
+ /** Access to host application APIs */
81
+ api: HostAPI;
82
+ }
83
+ /**
84
+ * Addon enable function signature
85
+ */
86
+ export type AddonEnableFunction = (context: AddonContext) => void | {
87
+ disable?: () => void;
88
+ };
@@ -0,0 +1,24 @@
1
+ /**
2
+ * Utility functions for addon development
3
+ */
4
+ import type { AddonManifest, AddonValidationResult } from './manifest';
5
+ /**
6
+ * Validates an addon manifest
7
+ */
8
+ export declare function validateManifest(manifest: AddonManifest): AddonValidationResult;
9
+ /**
10
+ * Checks if an addon version is compatible with the current SDK
11
+ */
12
+ export declare function isCompatibleVersion(addonSdkVersion?: string, currentSdkVersion?: string): boolean;
13
+ /**
14
+ * Formats addon size in human-readable format
15
+ */
16
+ export declare function formatAddonSize(bytes: number): string;
17
+ /**
18
+ * Generates a unique addon ID from a name
19
+ */
20
+ export declare function generateAddonId(name: string): string;
21
+ /**
22
+ * Type guard to check if an object is a valid addon manifest
23
+ */
24
+ export declare function isAddonManifest(obj: unknown): obj is AddonManifest;
@@ -0,0 +1,4 @@
1
+ /**
2
+ * Current SDK version from package.json
3
+ */
4
+ export declare const SDK_VERSION: string;
@@ -0,0 +1 @@
1
+ {"fileNames":["../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/@types+react@19.1.12/node_modules/@types/react/global.d.ts","../../../node_modules/.pnpm/csstype@3.1.3/node_modules/csstype/index.d.ts","../../../node_modules/.pnpm/@types+react@19.1.12/node_modules/@types/react/index.d.ts","../../../node_modules/.pnpm/@types+react@19.1.12/node_modules/@types/react/jsx-runtime.d.ts","../src/data-types.ts","../src/types.ts","../src/host-api.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.90.9/node_modules/@tanstack/query-core/build/modern/subscribable.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.90.9/node_modules/@tanstack/query-core/build/modern/focusmanager.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.90.9/node_modules/@tanstack/query-core/build/modern/removable.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.90.9/node_modules/@tanstack/query-core/build/modern/hydration-cwlnqme2.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.90.9/node_modules/@tanstack/query-core/build/modern/infinitequeryobserver.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.90.9/node_modules/@tanstack/query-core/build/modern/notifymanager.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.90.9/node_modules/@tanstack/query-core/build/modern/onlinemanager.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.90.9/node_modules/@tanstack/query-core/build/modern/queriesobserver.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.90.9/node_modules/@tanstack/query-core/build/modern/timeoutmanager.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.90.9/node_modules/@tanstack/query-core/build/modern/streamedquery.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.90.9/node_modules/@tanstack/query-core/build/modern/index.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.1/node_modules/@tanstack/react-query/build/modern/types.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.1/node_modules/@tanstack/react-query/build/modern/usequeries.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.1/node_modules/@tanstack/react-query/build/modern/queryoptions.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.1/node_modules/@tanstack/react-query/build/modern/usequery.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.1/node_modules/@tanstack/react-query/build/modern/usesuspensequery.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.1/node_modules/@tanstack/react-query/build/modern/usesuspenseinfinitequery.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.1/node_modules/@tanstack/react-query/build/modern/usesuspensequeries.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.1/node_modules/@tanstack/react-query/build/modern/useprefetchquery.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.1/node_modules/@tanstack/react-query/build/modern/useprefetchinfinitequery.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.1/node_modules/@tanstack/react-query/build/modern/infinitequeryoptions.d.ts","../../../node_modules/.pnpm/@types+react@19.1.13/node_modules/@types/react/global.d.ts","../../../node_modules/.pnpm/@types+react@19.1.13/node_modules/@types/react/index.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.1/node_modules/@tanstack/react-query/build/modern/queryclientprovider.d.ts","../../../node_modules/.pnpm/@types+react@19.1.13/node_modules/@types/react/jsx-runtime.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.1/node_modules/@tanstack/react-query/build/modern/queryerrorresetboundary.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.1/node_modules/@tanstack/react-query/build/modern/hydrationboundary.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.1/node_modules/@tanstack/react-query/build/modern/useisfetching.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.1/node_modules/@tanstack/react-query/build/modern/usemutationstate.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.1/node_modules/@tanstack/react-query/build/modern/usemutation.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.1/node_modules/@tanstack/react-query/build/modern/mutationoptions.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.1/node_modules/@tanstack/react-query/build/modern/useinfinitequery.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.1/node_modules/@tanstack/react-query/build/modern/isrestoringprovider.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.90.9_react@19.1.1/node_modules/@tanstack/react-query/build/modern/index.d.ts","../src/query-keys.ts","../src/permissions.ts","../src/manifest.ts","../package.json","../src/version.ts","../src/utils.ts","../../../node_modules/.pnpm/@types+react-dom@19.1.9_@types+react@19.1.12/node_modules/@types/react-dom/index.d.ts","../src/index.ts","../../../node_modules/.pnpm/@types+lodash@4.17.20/node_modules/@types/lodash/common/common.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.20/node_modules/@types/lodash/common/array.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.20/node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.20/node_modules/@types/lodash/common/date.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.20/node_modules/@types/lodash/common/function.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.20/node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.20/node_modules/@types/lodash/common/math.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.20/node_modules/@types/lodash/common/number.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.20/node_modules/@types/lodash/common/object.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.20/node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.20/node_modules/@types/lodash/common/string.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.20/node_modules/@types/lodash/common/util.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.20/node_modules/@types/lodash/index.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/utility.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/client-stats.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/h2c-client.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@7.12.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/sqlite.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@24.5.1/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/@types+papaparse@5.3.16/node_modules/@types/papaparse/index.d.ts"],"fileIdsList":[[69,126,177,194,195],[69,71,126,177,194,195],[69,70,71,72,73,74,75,76,77,78,126,177,194,195],[69,71,72,126,177,194,195],[126,177,194,195],[79,91,126,177,194,195],[79,80,81,82,83,84,85,86,87,88,89,91,92,93,94,95,96,97,98,99,100,101,126,177,194,195],[79,80,126,177,194,195],[91,126,177,194,195],[91,93,126,177,194,195],[79,126,177,194,195],[79,80,89,126,177,194,195],[79,80,82,126,177,194,195],[111,113,114,115,116,117,118,119,120,121,122,123,126,177,194,195],[111,112,114,115,116,117,118,119,120,121,122,123,126,177,194,195],[112,113,114,115,116,117,118,119,120,121,122,123,126,177,194,195],[111,112,113,115,116,117,118,119,120,121,122,123,126,177,194,195],[111,112,113,114,116,117,118,119,120,121,122,123,126,177,194,195],[111,112,113,114,115,117,118,119,120,121,122,123,126,177,194,195],[111,112,113,114,115,116,118,119,120,121,122,123,126,177,194,195],[111,112,113,114,115,116,117,119,120,121,122,123,126,177,194,195],[111,112,113,114,115,116,117,118,120,121,122,123,126,177,194,195],[111,112,113,114,115,116,117,118,119,121,122,123,126,177,194,195],[111,112,113,114,115,116,117,118,119,120,122,123,126,177,194,195],[111,112,113,114,115,116,117,118,119,120,121,123,126,177,194,195],[111,112,113,114,115,116,117,118,119,120,121,122,126,177,194,195],[126,174,177,194,195],[126,176,177,194,195],[177,194,195],[126,177,182,194,195,212],[126,177,178,183,188,194,195,197,209,220],[126,177,178,179,188,194,195,197],[126,177,180,194,195,221],[126,177,181,182,189,194,195,198],[126,177,182,194,195,209,217],[126,177,183,185,188,194,195,197],[126,176,177,184,194,195],[126,177,185,186,194,195],[126,177,187,188,194,195],[126,176,177,188,194,195],[126,177,188,189,190,194,195,209,220],[126,177,188,189,190,194,195,204,209,212],[126,170,177,185,188,191,194,195,197,209,220],[126,177,188,189,191,192,194,195,197,209,217,220],[126,177,191,193,194,195,209,217,220],[124,125,126,127,128,129,130,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226],[126,177,188,194,195],[126,177,194,195,196,220],[126,177,185,188,194,195,197,209],[126,177,194,195,198],[126,177,194,195,199],[126,176,177,194,195,200],[126,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226],[126,177,194,195,202],[126,177,194,195,203],[126,177,188,194,195,204,205],[126,177,194,195,204,206,221,223],[126,177,188,194,195,209,210,212],[126,177,194,195,211,212],[126,177,194,195,209,210],[126,177,194,195,212],[126,177,194,195,213],[126,174,177,194,195,209,214],[126,177,188,194,195,215,216],[126,177,194,195,215,216],[126,177,182,194,195,197,209,217],[126,177,194,195,218],[126,177,194,195,197,219],[126,177,191,194,195,203,220],[126,177,182,194,195,221],[126,177,194,195,209,222],[126,177,194,195,196,223],[126,177,194,195,224],[126,170,177,194,195],[126,177,194,195,225],[126,177,188,190,194,195,200,209,212,220,222,223,225],[126,177,194,195,209,226],[126,177,194,195,209,227],[64,126,177,194,195],[62,63,126,177,194,195],[63,90,126,177,194,195],[126,137,140,143,144,177,194,195,220],[126,140,177,194,195,209,220],[126,140,144,177,194,195,220],[126,177,194,195,209],[126,134,177,194,195],[126,138,177,194,195],[126,136,137,140,177,194,195,220],[126,177,194,195,197,217],[126,177,194,195,227],[126,134,177,194,195,227],[126,136,140,177,194,195,197,220],[126,131,132,133,135,139,177,188,194,195,209,220],[126,140,148,155,177,194,195],[126,132,138,177,194,195],[126,140,164,165,177,194,195],[126,132,135,140,177,194,195,212,220,227],[126,140,177,194,195],[126,136,140,177,194,195,220],[126,131,177,194,195],[126,134,135,136,138,139,140,141,142,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,165,166,167,168,169,177,194,195],[126,140,157,160,177,185,194,195],[126,140,148,149,150,177,194,195],[126,138,140,149,151,177,194,195],[126,139,177,194,195],[126,132,134,140,177,194,195],[126,140,144,149,151,177,194,195],[126,144,177,194,195],[126,138,140,143,177,194,195,220],[126,132,136,140,148,177,194,195],[126,140,157,177,194,195],[126,134,140,164,177,194,195,212,225,227],[65,126,177,194,195],[65,66,67,126,177,194,195],[64,65,66,67,68,102,103,104,105,107,108,109,126,177,194,195],[65,104,126,177,194,195],[64,65,68,126,177,194,195],[65,105,107,126,177,194,195],[65,106,126,177,194,195]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"170d4db14678c68178ee8a3d5a990d5afb759ecb6ec44dbd885c50f6da6204f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"bea6c0f5b819cf8cba6608bf3530089119294f949640714011d46ec8013b61c2","impliedFormat":1},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","impliedFormat":1},{"version":"fb31e52184be5fd9fccb590597db06e38e8af9069e753c17e691b9539c13a7c5","signature":"23ff828d4e8063937aad8b8a21c590ef710be574d4c0d80af69217f47d1fd08f"},{"version":"22d182f4ad8c6bd2e1924fdddc290ee86cd71f6210b56fd7ba8510249bc88810","signature":"825372ca95e5ce5f7d4afb76ece079d557ade924c3bac38213737603d2a32bc1"},{"version":"2c498a67bf2508289ab9fef821c4e44a7321de597b056c0209966e353e09cb87","signature":"a647c700bfa682e087be8f737490912ef92abaf6fd6e59bcf7df744e40b13fe4"},{"version":"50cf7a23fc93928995caec8d7956206990f82113beeb6b3242dae8124edc3ca0","impliedFormat":99},{"version":"352031ac2e53031b69a09355e09ad7d95361edf32cc827cfe2417d80247a5a50","impliedFormat":99},{"version":"9971931daaf18158fc38266e838d56eb5d9d1f13360b1181bb4735a05f534c03","impliedFormat":99},{"version":"45986b39f8b8e2bd88fc94a064fedfa615a9b17c86f40989257a0ea524a4a0bc","impliedFormat":99},{"version":"28e669c56996982f89fa32016767efcb542c7e2d642a2c6ba0302886487f2352","impliedFormat":99},{"version":"0c5b705d31420477189618154d1b6a9bb62a34fa6055f56ade1a316f6adb6b3a","impliedFormat":99},{"version":"853b8bdb5da8c8e5d31e4d715a8057d8e96059d6774b13545c3616ed216b890c","impliedFormat":99},{"version":"d5d5c0a5d79339bafdd79f5ffc40c05a09767a3b32a4b4c0f30b3872ecc4c612","impliedFormat":99},{"version":"fe3c64bf61fcfec9b9861725c6d92de03f33748a01d982760ccfa798d777cf9d","impliedFormat":99},{"version":"89b605879252178aa85a8c7721bb65b95a77885289f6c5621705a3f243515a6d","impliedFormat":99},{"version":"0d08f442ef8a279c6d56dfdbc4537aaded60eaaaef838c4380972f925cee017a","impliedFormat":99},{"version":"2bb7e3f4061e7fdb62652ffb077ca2a01b55e9d898409e37fe1ae97acab894ea","impliedFormat":99},{"version":"c363b57a3dfab561bfe884baacf8568eea085bd5e11ccf0992fac67537717d90","impliedFormat":99},{"version":"1757a53a602a8991886070f7ba4d81258d70e8dca133b256ae6a1a9f08cd73b3","impliedFormat":99},{"version":"084c09a35a9611e1777c02343c11ab8b1be48eb4895bbe6da90222979940b4a6","impliedFormat":99},{"version":"4b3049a2c849f0217ff4def308637931661461c329e4cf36aeb31db34c4c0c64","impliedFormat":99},{"version":"6245aa515481727f994d1cf7adfc71e36b5fc48216a92d7e932274cee3268000","impliedFormat":99},{"version":"d542fb814a8ceb7eb858ecd5a41434274c45a7d511b9d46feb36d83b437b08d5","impliedFormat":99},{"version":"660ce583eaa09bb39eef5ad7af9d1b5f027a9d1fbf9f76bf5b9dc9ef1be2830e","impliedFormat":99},{"version":"b7d9ca4e3248f643fa86ff11872623fdc8ed2c6009836bec0e38b163b6faed0c","impliedFormat":99},{"version":"ac7a28ab421ea564271e1a9de78d70d68c65fab5cbb6d5c5568afcf50496dd61","impliedFormat":99},{"version":"170d4db14678c68178ee8a3d5a990d5afb759ecb6ec44dbd885c50f6da6204f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"bea6c0f5b819cf8cba6608bf3530089119294f949640714011d46ec8013b61c2","impliedFormat":1},{"version":"d4f7a7a5f66b9bc6fbfd53fa08dcf8007ff752064df816da05edfa35abd2c97c","impliedFormat":99},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","impliedFormat":1},{"version":"1f38ecf63dead74c85180bf18376dc6bc152522ef3aedf7b588cadbbd5877506","impliedFormat":99},{"version":"82fb33c00b1300c19591105fc25ccf78acba220f58d162b120fe3f4292a5605f","impliedFormat":99},{"version":"facde2bec0f59cf92f4635ece51b2c3fa2d0a3bbb67458d24af61e7e6b8f003c","impliedFormat":99},{"version":"4669194e4ca5f7c160833bbb198f25681e629418a6326aba08cf0891821bfe8f","impliedFormat":99},{"version":"db185b403e30e91c5b90f3f2cfa062832d764c9d7df3ad7f5db7e17596344fe8","impliedFormat":99},{"version":"669b62a7169354658d4ae1e043ad8203728655492a8f70a940a11ca5ed4d5029","impliedFormat":99},{"version":"a95cd11c5c8bc03eab4011f8e339a48f9a87293e90c0bf3e9003d7a6f833f557","impliedFormat":99},{"version":"e9bc0db0144701fab1e98c4d595a293c7c840d209b389144142f0adbc36b5ec2","impliedFormat":99},{"version":"9d884b885c4b2d89286685406b45911dcaab03e08e948850e3e41e29af69561c","impliedFormat":99},{"version":"31fb7ea2ae7970de6100243671490c5cf91c8feddf72686bd6b0f37569143b17","signature":"ebf0e04ca57f13a995b074817803bb8cb86078edcb97a42f8146295efc31c885"},{"version":"60f45acdd2f02ece31838fddc16d9838d6841f4879015b4c94525ff7b1e08072","signature":"c7f6d3fb10a9e47cb60b0547d34c6e666354eb00460fe08333d3fd37a503f090"},{"version":"f3e76b04368c7fd94559fc1476e742dcf7ab229fd10b84041cbc5b643161445f","signature":"83190209db45833d4ece114448f5f6f1dde2e68076961d4ea4d1e2cb03dc85c3"},"5fcd7ce714595c3815fb050441c6531e9ed490fa8362fb53a110cad5da95907e",{"version":"0be1bb5ea4d9ea191a1318786bb0fae4fcb29632268479b5285b20930bb60355","signature":"eb63b664e3561a8888fbd9ec8b81bb6d3063e7be5cf2d2a155d0654273a6d4d7"},{"version":"903da13ad1d4d95f9eb983055d64fbe3780e65b5cbee450a45f6e7be5335dc4c","signature":"a92f0554e1f858fc1d3671d255bd3b972767362047272f866c84767ed9423129"},{"version":"a0acca63c9e39580f32a10945df231815f0fe554c074da96ba6564010ffbd2d8","impliedFormat":1},{"version":"78a184c06f0f67332dbc551c506116295531a7e25586049120635c7394e620a4","signature":"0e924ab7d22c378507d3558b72b6f89cb9a75af98b6168815e3008fc9e8bf92c"},{"version":"380b919bfa0516118edaf25b99e45f855e7bc3fd75ce4163a1cfe4a666388804","impliedFormat":1},{"version":"0b24a72109c8dd1b41f94abfe1bb296ba01b3734b8ac632db2c48ffc5dccaf01","impliedFormat":1},{"version":"fcf79300e5257a23ed3bacaa6861d7c645139c6f7ece134d15e6669447e5e6db","impliedFormat":1},{"version":"187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","impliedFormat":1},{"version":"aa2c18a1b5a086bbcaae10a4efba409cc95ba7287d8cf8f2591b53704fea3dea","impliedFormat":1},{"version":"b88749bdb18fc1398370e33aa72bc4f88274118f4960e61ce26605f9b33c5ba2","impliedFormat":1},{"version":"0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","impliedFormat":1},{"version":"00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","impliedFormat":1},{"version":"a873c50d3e47c21aa09fbe1e2023d9a44efb07cc0cb8c72f418bf301b0771fd3","impliedFormat":1},{"version":"7c14ccd2eaa82619fffc1bfa877eb68a012e9fb723d07ee98db451fadb618906","impliedFormat":1},{"version":"49c36529ee09ea9ce19525af5bb84985ea8e782cb7ee8c493d9e36d027a3d019","impliedFormat":1},{"version":"df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","impliedFormat":1},{"version":"4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd","impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0671b50bb99cc7ad46e9c68fa0e7f15ba4bc898b59c31a17ea4611fab5095da","affectsGlobalScope":true,"impliedFormat":1},{"version":"d802f0e6b5188646d307f070d83512e8eb94651858de8a82d1e47f60fb6da4e2","affectsGlobalScope":true,"impliedFormat":1},{"version":"aa83e100f0c74a06c9d24f40a096c9e9cc3c02704250d01541e22c0ae9264eda","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"456fa0c0ab68731564917642b977c71c3b7682240685b118652fb9253c9a6429","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","impliedFormat":1},{"version":"3a80bc85f38526ca3b08007ee80712e7bb0601df178b23fbf0bf87036fce40ce","impliedFormat":1},{"version":"ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"4bc0794175abedf989547e628949888c1085b1efcd93fc482bccd77ee27f8b7c","impliedFormat":1},{"version":"3c8e93af4d6ce21eb4c8d005ad6dc02e7b5e6781f429d52a35290210f495a674","impliedFormat":1},{"version":"78c69908f7b42d6001037eb8e2d7ec501897ac9cee8d58f31923ff15b3fd4e02","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"33e981bf6376e939f99bd7f89abec757c64897d33c005036b9a10d9587d80187","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","impliedFormat":1},{"version":"1cd673d367293fc5cb31cd7bf03d598eb368e4f31f39cf2b908abbaf120ab85a","impliedFormat":1},{"version":"af13e99445f37022c730bfcafcdc1761e9382ce1ea02afb678e3130b01ce5676","impliedFormat":1},{"version":"e5c4fceee379a4a8f5e0266172c33de9dd240e1218b6a439a30c96200190752b","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","impliedFormat":1},{"version":"beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","impliedFormat":1},{"version":"78b29846349d4dfdd88bd6650cc5d2baaa67f2e89dc8a80c8e26ef7995386583","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"48cc3ec153b50985fb95153258a710782b25975b10dd4ac8a4f3920632d10790","impliedFormat":1},{"version":"0040f0c70a793bdc76e4eace5de03485d76f667009656c5fc8d4da4eaf0aa2da","impliedFormat":1},{"version":"18f8cfbb14ba9405e67d30968ae67b8d19133867d13ebc49c8ed37ec64ce9bdb","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"99f569b42ea7e7c5fe404b2848c0893f3e1a56e0547c1cd0f74d5dbb9a9de27e","impliedFormat":1},{"version":"830171b27c5fdf9bcbe4cf7d428fcf3ae2c67780fb7fbdccdf70d1623d938bc4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"bbcfd9cd76d92c3ee70475270156755346c9086391e1b9cb643d072e0cf576b8","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"72c1f5e0a28e473026074817561d1bc9647909cf253c8d56c41d1df8d95b85f7","impliedFormat":1},{"version":"18334defc3d0a0e1966f5f3c23c7c83b62c77811e51045c5a7ff3883b446f81f","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b17fcd63aa13734bf1d01419f4d6031b1c6a5fb2cbdb45e9839fb1762bdf0df","impliedFormat":1},{"version":"c4e8e8031808b158cfb5ac5c4b38d4a26659aec4b57b6a7e2ba0a141439c208c","impliedFormat":1},{"version":"2c91d8366ff2506296191c26fd97cc1990bab3ee22576275d28b654a21261a44","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"247b8f93f31c5918444116471bfb90810e268339bf5c678657ca99ca7183dabb","affectsGlobalScope":true,"impliedFormat":1},{"version":"289e9894a4668c61b5ffed09e196c1f0c2f87ca81efcaebdf6357cfb198dac14","impliedFormat":1},{"version":"25a1105595236f09f5bce42398be9f9ededc8d538c258579ab662d509aa3b98e","impliedFormat":1},{"version":"aa9224557befad144262c85b463c0a7ba8a3a0ad2a7c907349f8bb8bc3fe4abc","impliedFormat":1},{"version":"a2e2bbde231b65c53c764c12313897ffdfb6c49183dd31823ee2405f2f7b5378","impliedFormat":1},{"version":"ad1cc0ed328f3f708771272021be61ab146b32ecf2b78f3224959ff1e2cd2a5c","impliedFormat":1},{"version":"62f572306e0b173cc5dfc4c583471151f16ef3779cf27ab96922c92ec82a3bc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"92dab1293d03f6cbd5d53c31b723c30ff5a52eaacd717ee3226e18739b5bb722","impliedFormat":1},{"version":"c6176c7b9f3769ba7f076c7a791588562c653cc0ba08fb2184f87bf78db2a87c","impliedFormat":1},{"version":"c6a532cab53ec1f87eb0b6a3a9882f4cf13c25b4a89495b3b3001a35f74224c6","impliedFormat":1},{"version":"bcbabfaca3f6b8a76cb2739e57710daf70ab5c9479ab70f5351c9b4932abf6bd","impliedFormat":1},{"version":"165a0c1f95bc939c72f18a280fc707fba6f2f349539246b050cfc09eb1d9f446","impliedFormat":1},{"version":"ca0f30343ce1a43181684c02af2ac708ba26d00f689be5e96e7301c374d64c7e","impliedFormat":1},{"version":"d163b6bc2372b4f07260747cbc6c0a6405ab3fbcea3852305e98ac43ca59f5bc","impliedFormat":1},{"version":"c8b85f7aed29f8f52b813f800611406b0bfe5cf3224d20a4bdda7c7f73ce368e","affectsGlobalScope":true,"impliedFormat":1},{"version":"7baae9bf5b50e572e7742c886c73c6f8fa50b34190bc5f0fd20dd7e706fda832","impliedFormat":1},{"version":"e99b0e71f07128fc32583e88ccd509a1aaa9524c290efb2f48c22f9bf8ba83b1","impliedFormat":1},{"version":"76957a6d92b94b9e2852cf527fea32ad2dc0ef50f67fe2b14bd027c9ceef2d86","impliedFormat":1},{"version":"5e9f8c1e042b0f598a9be018fc8c3cb670fe579e9f2e18e3388b63327544fe16","affectsGlobalScope":true,"impliedFormat":1},{"version":"a8a99a5e6ed33c4a951b67cc1fd5b64fd6ad719f5747845c165ca12f6c21ba16","affectsGlobalScope":true,"impliedFormat":1},{"version":"a58a15da4c5ba3df60c910a043281256fa52d36a0fcdef9b9100c646282e88dd","impliedFormat":1},{"version":"b36beffbf8acdc3ebc58c8bb4b75574b31a2169869c70fc03f82895b93950a12","impliedFormat":1},{"version":"de263f0089aefbfd73c89562fb7254a7468b1f33b61839aafc3f035d60766cb4","impliedFormat":1},{"version":"70b57b5529051497e9f6482b76d91c0dcbb103d9ead8a0549f5bab8f65e5d031","impliedFormat":1},{"version":"8c81fd4a110490c43d7c578e8c6f69b3af01717189196899a6a44f93daa57a3a","impliedFormat":1},{"version":"1013eb2e2547ad8c100aca52ef9df8c3f209edee32bb387121bb3227f7c00088","impliedFormat":1},{"version":"29c83cc89ddbdd5ffae8c00f4e6fab6f8f0e8076f87a866b132e8751e88cb848","impliedFormat":1},{"version":"363eedb495912790e867da6ff96e81bf792c8cfe386321e8163b71823a35719a","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"dba28a419aec76ed864ef43e5f577a5c99a010c32e5949fe4e17a4d57c58dd11","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea713aa14a670b1ea0fbaaca4fd204e645f71ca7653a834a8ec07ee889c45de6","impliedFormat":1},{"version":"07199a85560f473f37363d8f1300fac361cda2e954caf8a40221f83a6bfa7ade","impliedFormat":1},{"version":"9705cd157ffbb91c5cab48bdd2de5a437a372e63f870f8a8472e72ff634d47c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae86f30d5d10e4f75ce8dcb6e1bd3a12ecec3d071a21e8f462c5c85c678efb41","impliedFormat":1},{"version":"3af7d02e5d6ecbf363e61fb842ee55d3518a140fd226bdfb24a3bca6768c58df","impliedFormat":1},{"version":"e03460fe72b259f6d25ad029f085e4bedc3f90477da4401d8fbc1efa9793230e","impliedFormat":1},{"version":"4286a3a6619514fca656089aee160bb6f2e77f4dd53dc5a96b26a0b4fc778055","impliedFormat":1},{"version":"0d7393564d48a3f6f08c76b8d4de48260a072801422548e2030e386acd530dbf","affectsGlobalScope":true,"impliedFormat":1},{"version":"0fcb71410ad8a48bbdd13cd4c3eedf78ac0416e9f3533ae98e19cc6f3c7f5474","affectsGlobalScope":true,"impliedFormat":1},{"version":"784490137935e1e38c49b9289110e74a1622baf8a8907888dcbe9e476d7c5e44","impliedFormat":1},{"version":"420fdd37c51263be9db3fcac35ffd836216c71e6000e6a9740bb950fb0540654","impliedFormat":1},{"version":"73b0bff83ee76e3a9320e93c7fc15596e858b33c687c39a57567e75c43f2a324","impliedFormat":1},{"version":"355a5a582a78ba5aa382f7190616a8f8bb29b19d9226ace56f25efc13fc32fc5","affectsGlobalScope":true,"impliedFormat":1},{"version":"4445f6ce6289c5b2220398138da23752fd84152c5c95bb8b58dedefc1758c036","impliedFormat":1},{"version":"7ac7756e2b43f021fa3d3b562a7ea8bf579543521a18b5682935d015361e6a35","impliedFormat":1},{"version":"3f95d857764323d3fba22cb3a26aadb67729a1fd930d4b50bf7dbaf1a12b3324","impliedFormat":1}],"root":[[66,68],[103,108],110],"options":{"allowImportingTsExtensions":true,"allowSyntheticDefaultImports":true,"alwaysStrict":true,"composite":true,"declaration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"jsx":4,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitOverride":true,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"strict":true,"strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":9,"useDefineForClassFields":true},"referencedMap":[[70,1],[72,2],[79,3],[73,4],[74,5],[75,1],[76,4],[71,5],[78,4],[69,5],[77,5],[95,6],[102,7],[89,8],[101,9],[99,8],[92,6],[94,10],[82,8],[80,11],[100,12],[96,11],[98,8],[97,11],[88,11],[87,8],[81,8],[83,13],[85,8],[86,8],[84,8],[112,14],[113,15],[111,16],[114,17],[115,18],[116,19],[117,20],[118,21],[119,22],[120,23],[121,24],[122,25],[123,26],[174,27],[175,27],[176,28],[126,29],[177,30],[178,31],[179,32],[124,5],[180,33],[181,34],[182,35],[183,36],[184,37],[185,38],[186,38],[187,39],[188,40],[189,41],[190,42],[127,5],[125,5],[191,43],[192,44],[193,45],[227,46],[194,47],[195,5],[196,48],[197,49],[198,50],[199,51],[200,52],[201,53],[202,54],[203,55],[204,56],[205,56],[206,57],[207,5],[208,5],[209,58],[211,59],[210,60],[212,61],[213,62],[214,63],[215,64],[216,65],[217,66],[218,67],[219,68],[220,69],[221,70],[222,71],[223,72],[224,73],[128,5],[129,5],[130,5],[171,74],[172,75],[173,5],[225,76],[226,77],[228,78],[109,79],[62,5],[64,80],[65,79],[90,5],[91,81],[93,9],[63,5],[60,5],[61,5],[10,5],[11,5],[13,5],[12,5],[2,5],[14,5],[15,5],[16,5],[17,5],[18,5],[19,5],[20,5],[21,5],[3,5],[22,5],[23,5],[4,5],[24,5],[28,5],[25,5],[26,5],[27,5],[29,5],[30,5],[31,5],[5,5],[32,5],[33,5],[34,5],[35,5],[6,5],[39,5],[36,5],[37,5],[38,5],[40,5],[7,5],[41,5],[46,5],[47,5],[42,5],[43,5],[44,5],[45,5],[8,5],[51,5],[48,5],[49,5],[50,5],[52,5],[9,5],[53,5],[54,5],[55,5],[57,5],[56,5],[1,5],[58,5],[59,5],[148,82],[159,83],[146,84],[160,85],[169,86],[137,87],[138,88],[136,89],[168,90],[163,91],[167,92],[140,93],[156,94],[139,95],[166,96],[134,97],[135,91],[141,98],[142,5],[147,99],[145,98],[132,100],[170,101],[161,102],[151,103],[150,98],[152,104],[154,105],[149,106],[153,107],[164,90],[143,108],[144,109],[155,110],[133,85],[158,111],[157,98],[162,5],[131,5],[165,112],[106,113],[66,113],[68,114],[110,115],[105,116],[104,113],[103,113],[67,117],[108,118],[107,119]],"latestChangedDtsFile":"./src/index.d.ts","version":"5.9.2"}
package/dist/types.js ADDED
@@ -0,0 +1 @@
1
+ //# sourceMappingURL=types.js.map