mdcontext 0.1.0 → 0.2.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.
- package/.changeset/config.json +9 -9
- package/.claude/settings.local.json +25 -0
- package/.github/workflows/claude-code-review.yml +44 -0
- package/.github/workflows/claude.yml +85 -0
- package/CONTRIBUTING.md +186 -0
- package/NOTES/NOTES +44 -0
- package/README.md +206 -3
- package/biome.json +1 -1
- package/dist/chunk-23UPXDNL.js +3044 -0
- package/dist/chunk-2W7MO2DL.js +1366 -0
- package/dist/chunk-3NUAZGMA.js +1689 -0
- package/dist/chunk-7TOWB2XB.js +366 -0
- package/dist/chunk-7XOTOADQ.js +3065 -0
- package/dist/chunk-AH2PDM2K.js +3042 -0
- package/dist/chunk-BNXWSZ63.js +3742 -0
- package/dist/chunk-BTL5DJVU.js +3222 -0
- package/dist/chunk-HDHYG7E4.js +104 -0
- package/dist/chunk-HLR4KZBP.js +3234 -0
- package/dist/chunk-IP3FRFEB.js +1045 -0
- package/dist/chunk-KHU56VDO.js +3042 -0
- package/dist/chunk-KRYIFLQR.js +85 -89
- package/dist/chunk-LBSDNLEM.js +287 -0
- package/dist/chunk-MNTQ7HCP.js +2643 -0
- package/dist/chunk-MUJELQQ6.js +1387 -0
- package/dist/chunk-MXJGMSLV.js +2199 -0
- package/dist/chunk-N6QJGC3Z.js +2636 -0
- package/dist/chunk-OBELGBPM.js +1713 -0
- package/dist/chunk-OT7R5XTA.js +3192 -0
- package/dist/chunk-P7X4RA2T.js +106 -0
- package/dist/chunk-PIDUQNC2.js +3185 -0
- package/dist/chunk-POGCDIH4.js +3187 -0
- package/dist/chunk-PSIEOQGZ.js +3043 -0
- package/dist/chunk-PVRT3IHA.js +3238 -0
- package/dist/chunk-QNN4TT23.js +1430 -0
- package/dist/chunk-RE3R45RJ.js +3042 -0
- package/dist/chunk-S7E6TFX6.js +718 -657
- package/dist/chunk-SG6GLU4U.js +1378 -0
- package/dist/chunk-SJCDV2ST.js +274 -0
- package/dist/chunk-SYE5XLF3.js +104 -0
- package/dist/chunk-T5VLYBZD.js +103 -0
- package/dist/chunk-TOQB7VWU.js +3238 -0
- package/dist/chunk-VFNMZ4ZQ.js +3228 -0
- package/dist/chunk-VVTGZNBT.js +1533 -1423
- package/dist/chunk-W7Q4RFEV.js +104 -0
- package/dist/chunk-XTYYVRLO.js +3190 -0
- package/dist/chunk-Y6MDYVJD.js +3063 -0
- package/dist/cli/main.js +4072 -629
- package/dist/index.d.ts +420 -33
- package/dist/index.js +8 -15
- package/dist/mcp/server.js +103 -7
- package/dist/schema-BAWSG7KY.js +22 -0
- package/dist/schema-E3QUPL26.js +20 -0
- package/dist/schema-EHL7WUT6.js +20 -0
- package/docs/019-USAGE.md +44 -5
- package/docs/020-current-implementation.md +8 -8
- package/docs/021-DOGFOODING-FINDINGS.md +1 -1
- package/docs/CONFIG.md +1123 -0
- package/docs/ERRORS.md +383 -0
- package/docs/summarization.md +320 -0
- package/justfile +40 -0
- package/package.json +39 -33
- package/research/INDEX.md +315 -0
- package/research/code-review/README.md +90 -0
- package/research/code-review/cli-error-handling-review.md +979 -0
- package/research/code-review/code-review-validation-report.md +464 -0
- package/research/code-review/main-ts-review.md +1128 -0
- package/research/config-docs/SUMMARY.md +357 -0
- package/research/config-docs/TEST-RESULTS.md +776 -0
- package/research/config-docs/TODO.md +542 -0
- package/research/config-docs/analysis.md +744 -0
- package/research/config-docs/fix-validation.md +502 -0
- package/research/config-docs/help-audit.md +264 -0
- package/research/config-docs/help-system-analysis.md +890 -0
- package/research/frontmatter/COMMENTS-ARE-SKIPPED.md +149 -0
- package/research/frontmatter/LLM-CODE-NAVIGATION.md +276 -0
- package/research/issue-review.md +603 -0
- package/research/llm-summarization/agent-cli-tools-2026.md +1082 -0
- package/research/llm-summarization/alternative-providers-2026.md +1428 -0
- package/research/llm-summarization/anthropic-2026.md +367 -0
- package/research/llm-summarization/claude-cli-integration.md +1706 -0
- package/research/llm-summarization/cli-integration-patterns.md +3155 -0
- package/research/llm-summarization/openai-2026.md +473 -0
- package/research/llm-summarization/openai-compatible-providers-2026.md +1022 -0
- package/research/llm-summarization/opencode-cli-integration.md +1552 -0
- package/research/llm-summarization/prompt-engineering-2026.md +1426 -0
- package/research/llm-summarization/prototype-results.md +56 -0
- package/research/llm-summarization/provider-switching-patterns-2026.md +2153 -0
- package/research/llm-summarization/typescript-llm-libraries-2026.md +2436 -0
- package/research/mdcontext-pudding/00-EXECUTIVE-SUMMARY.md +282 -0
- package/research/mdcontext-pudding/01-index-embed.md +956 -0
- package/research/mdcontext-pudding/02-search-COMMANDS.md +142 -0
- package/research/mdcontext-pudding/02-search-SUMMARY.md +146 -0
- package/research/mdcontext-pudding/02-search.md +970 -0
- package/research/mdcontext-pudding/03-context.md +779 -0
- package/research/mdcontext-pudding/04-navigation-and-analytics.md +803 -0
- package/research/mdcontext-pudding/04-tree.md +704 -0
- package/research/mdcontext-pudding/05-config.md +1038 -0
- package/research/mdcontext-pudding/06-links-summary.txt +87 -0
- package/research/mdcontext-pudding/06-links.md +679 -0
- package/research/mdcontext-pudding/07-stats.md +693 -0
- package/research/mdcontext-pudding/BUG-FIX-PLAN.md +388 -0
- package/research/mdcontext-pudding/P0-BUG-VALIDATION.md +167 -0
- package/research/mdcontext-pudding/README.md +168 -0
- package/research/mdcontext-pudding/TESTING-SUMMARY.md +128 -0
- package/research/research-quality-review.md +834 -0
- package/research/semantic-search/embedding-text-analysis.md +156 -0
- package/research/semantic-search/multi-word-failure-reproduction.md +171 -0
- package/research/semantic-search/query-processing-analysis.md +207 -0
- package/research/semantic-search/root-cause-and-solution.md +114 -0
- package/research/semantic-search/threshold-validation-report.md +69 -0
- package/research/semantic-search/vector-search-analysis.md +63 -0
- package/research/test-path-issues.md +276 -0
- package/review/ALP-76/1-error-type-design.md +962 -0
- package/review/ALP-76/2-error-handling-patterns.md +906 -0
- package/review/ALP-76/3-error-presentation.md +624 -0
- package/review/ALP-76/4-test-coverage.md +625 -0
- package/review/ALP-76/5-migration-completeness.md +440 -0
- package/review/ALP-76/6-effect-best-practices.md +755 -0
- package/scripts/apply-branch-protection.sh +47 -0
- package/scripts/branch-protection-templates.json +79 -0
- package/scripts/prototype-summarization.ts +346 -0
- package/scripts/rebuild-hnswlib.js +32 -37
- package/scripts/setup-branch-protection.sh +64 -0
- package/src/__tests__/fixtures/semantic-search/multi-word-corpus/.mdcontext/active-provider.json +7 -0
- package/src/__tests__/fixtures/semantic-search/multi-word-corpus/.mdcontext/bm25.json +541 -0
- package/src/__tests__/fixtures/semantic-search/multi-word-corpus/.mdcontext/bm25.meta.json +5 -0
- package/src/__tests__/fixtures/semantic-search/multi-word-corpus/.mdcontext/config.json +8 -0
- package/src/__tests__/fixtures/semantic-search/multi-word-corpus/.mdcontext/embeddings/openai_text-embedding-3-small_512/vectors.bin +0 -0
- package/src/__tests__/fixtures/semantic-search/multi-word-corpus/.mdcontext/embeddings/openai_text-embedding-3-small_512/vectors.meta.bin +0 -0
- package/src/__tests__/fixtures/semantic-search/multi-word-corpus/.mdcontext/indexes/documents.json +60 -0
- package/src/__tests__/fixtures/semantic-search/multi-word-corpus/.mdcontext/indexes/links.json +13 -0
- package/src/__tests__/fixtures/semantic-search/multi-word-corpus/.mdcontext/indexes/sections.json +1197 -0
- package/src/__tests__/fixtures/semantic-search/multi-word-corpus/configuration-management.md +99 -0
- package/src/__tests__/fixtures/semantic-search/multi-word-corpus/distributed-systems.md +92 -0
- package/src/__tests__/fixtures/semantic-search/multi-word-corpus/error-handling.md +78 -0
- package/src/__tests__/fixtures/semantic-search/multi-word-corpus/failure-automation.md +55 -0
- package/src/__tests__/fixtures/semantic-search/multi-word-corpus/job-context.md +69 -0
- package/src/__tests__/fixtures/semantic-search/multi-word-corpus/process-orchestration.md +99 -0
- package/src/cli/argv-preprocessor.test.ts +2 -2
- package/src/cli/cli.test.ts +230 -33
- package/src/cli/commands/config-cmd.ts +642 -0
- package/src/cli/commands/context.ts +97 -9
- package/src/cli/commands/duplicates.ts +122 -0
- package/src/cli/commands/embeddings.ts +529 -0
- package/src/cli/commands/index-cmd.ts +210 -30
- package/src/cli/commands/index.ts +3 -0
- package/src/cli/commands/search.ts +894 -64
- package/src/cli/commands/stats.ts +3 -0
- package/src/cli/commands/tree.ts +26 -5
- package/src/cli/config-layer.ts +176 -0
- package/src/cli/error-handler.test.ts +235 -0
- package/src/cli/error-handler.ts +655 -0
- package/src/cli/flag-schemas.ts +66 -0
- package/src/cli/help.ts +209 -7
- package/src/cli/main.ts +348 -58
- package/src/cli/options.ts +10 -0
- package/src/cli/shared-error-handling.ts +199 -0
- package/src/cli/utils.ts +150 -17
- package/src/config/file-provider.test.ts +320 -0
- package/src/config/file-provider.ts +273 -0
- package/src/config/index.ts +72 -0
- package/src/config/integration.test.ts +667 -0
- package/src/config/precedence.test.ts +277 -0
- package/src/config/precedence.ts +451 -0
- package/src/config/schema.test.ts +414 -0
- package/src/config/schema.ts +603 -0
- package/src/config/service.test.ts +320 -0
- package/src/config/service.ts +243 -0
- package/src/config/testing.test.ts +264 -0
- package/src/config/testing.ts +110 -0
- package/src/core/types.ts +6 -33
- package/src/duplicates/detector.test.ts +183 -0
- package/src/duplicates/detector.ts +414 -0
- package/src/duplicates/index.ts +18 -0
- package/src/embeddings/embedding-namespace.test.ts +300 -0
- package/src/embeddings/embedding-namespace.ts +947 -0
- package/src/embeddings/heading-boost.test.ts +222 -0
- package/src/embeddings/hnsw-build-options.test.ts +198 -0
- package/src/embeddings/hyde.test.ts +272 -0
- package/src/embeddings/hyde.ts +264 -0
- package/src/embeddings/index.ts +2 -0
- package/src/embeddings/openai-provider.ts +332 -83
- package/src/embeddings/pricing.json +22 -0
- package/src/embeddings/provider-constants.ts +204 -0
- package/src/embeddings/provider-errors.test.ts +967 -0
- package/src/embeddings/provider-errors.ts +565 -0
- package/src/embeddings/provider-factory.test.ts +240 -0
- package/src/embeddings/provider-factory.ts +225 -0
- package/src/embeddings/provider-integration.test.ts +788 -0
- package/src/embeddings/query-preprocessing.test.ts +187 -0
- package/src/embeddings/semantic-search-threshold.test.ts +508 -0
- package/src/embeddings/semantic-search.ts +780 -93
- package/src/embeddings/types.ts +293 -16
- package/src/embeddings/vector-store.ts +486 -77
- package/src/embeddings/voyage-provider.ts +313 -0
- package/src/errors/errors.test.ts +845 -0
- package/src/errors/index.ts +533 -0
- package/src/index/ignore-patterns.test.ts +354 -0
- package/src/index/ignore-patterns.ts +305 -0
- package/src/index/indexer.ts +286 -48
- package/src/index/storage.ts +94 -30
- package/src/index/types.ts +40 -2
- package/src/index/watcher.ts +67 -9
- package/src/index.ts +22 -0
- package/src/integration/search-keyword.test.ts +678 -0
- package/src/mcp/server.ts +135 -6
- package/src/parser/parser.ts +18 -19
- package/src/parser/section-filter.test.ts +277 -0
- package/src/parser/section-filter.ts +125 -3
- package/src/search/__tests__/hybrid-search.test.ts +650 -0
- package/src/search/bm25-store.ts +366 -0
- package/src/search/cross-encoder.test.ts +253 -0
- package/src/search/cross-encoder.ts +406 -0
- package/src/search/fuzzy-search.test.ts +419 -0
- package/src/search/fuzzy-search.ts +273 -0
- package/src/search/hybrid-search.ts +448 -0
- package/src/search/path-matcher.test.ts +276 -0
- package/src/search/path-matcher.ts +33 -0
- package/src/search/searcher.test.ts +99 -1
- package/src/search/searcher.ts +189 -67
- package/src/search/wink-bm25.d.ts +30 -0
- package/src/summarization/cli-providers/claude.ts +202 -0
- package/src/summarization/cli-providers/detection.test.ts +273 -0
- package/src/summarization/cli-providers/detection.ts +118 -0
- package/src/summarization/cli-providers/index.ts +8 -0
- package/src/summarization/cost.test.ts +139 -0
- package/src/summarization/cost.ts +102 -0
- package/src/summarization/error-handler.test.ts +127 -0
- package/src/summarization/error-handler.ts +111 -0
- package/src/summarization/index.ts +102 -0
- package/src/summarization/pipeline.test.ts +498 -0
- package/src/summarization/pipeline.ts +231 -0
- package/src/summarization/prompts.test.ts +269 -0
- package/src/summarization/prompts.ts +133 -0
- package/src/summarization/provider-factory.test.ts +396 -0
- package/src/summarization/provider-factory.ts +178 -0
- package/src/summarization/types.ts +184 -0
- package/src/summarize/summarizer.ts +104 -35
- package/src/types/huggingface-transformers.d.ts +66 -0
- package/tests/fixtures/cli/.mdcontext/active-provider.json +7 -0
- package/tests/fixtures/cli/.mdcontext/embeddings/openai_text-embedding-3-small_512/vectors.bin +0 -0
- package/tests/fixtures/cli/.mdcontext/embeddings/openai_text-embedding-3-small_512/vectors.meta.bin +0 -0
- package/tests/fixtures/cli/.mdcontext/indexes/documents.json +4 -4
- package/tests/fixtures/cli/.mdcontext/indexes/sections.json +14 -0
- package/tests/integration/embed-index.test.ts +712 -0
- package/tests/integration/search-context.test.ts +469 -0
- package/tests/integration/search-semantic.test.ts +522 -0
- package/vitest.config.ts +1 -6
- package/AGENTS.md +0 -46
- package/tests/fixtures/cli/.mdcontext/vectors.bin +0 -0
- package/tests/fixtures/cli/.mdcontext/vectors.meta.json +0 -1264
|
@@ -0,0 +1,541 @@
|
|
|
1
|
+
{
|
|
2
|
+
"engine": "[{\"fldWeights\":{\"heading\":2,\"content\":1},\"bm25Params\":{\"k1\":1.2,\"b\":0.75,\"k\":1},\"ovFldNames\":[]},{\"totalCorpusLength\":1551,\"totalDocs\":67,\"consolidated\":true},{\"0\":{\"freq\":{\"0\":3.4896,\"1\":6.1703},\"fieldValues\":{},\"length\":6},\"1\":{\"freq\":{\"0\":2.5733,\"1\":3.312,\"2\":5.198,\"3\":1.9734,\"4\":3.312,\"5\":1.9734,\"6\":2.7226,\"7\":3.8241,\"8\":3.8241,\"9\":1.7931,\"10\":2.5214,\"11\":3.8241,\"12\":3.8241,\"13\":2.9746,\"14\":3.312,\"15\":3.312,\"16\":3.8241,\"17\":3.312,\"18\":3.8241},\"fieldValues\":{},\"length\":23},\"2\":{\"freq\":{\"19\":6.1703,\"20\":7.1245},\"fieldValues\":{},\"length\":6},\"3\":{\"freq\":{\"0\":1.9419,\"14\":3.4336,\"15\":3.4336,\"17\":3.4336,\"21\":6.1152,\"22\":4.7567,\"23\":3.0839,\"24\":3.4336,\"25\":3.9646,\"26\":3.9646,\"27\":3.9646,\"28\":3.4336,\"29\":3.9646,\"30\":3.4336,\"31\":3.9646,\"32\":3.4336,\"33\":3.9646},\"fieldValues\":{},\"length\":21},\"4\":{\"freq\":{\"0\":1.8731,\"22\":2.9746,\"34\":6.0018,\"35\":6.0018,\"36\":2.9746,\"37\":3.8241,\"38\":2.7226,\"39\":2.5214,\"40\":2.9746,\"41\":3.312,\"42\":2.3539,\"43\":3.312,\"44\":3.8241,\"45\":3.8241,\"46\":3.8241,\"47\":3.312,\"48\":3.312,\"49\":3.8241,\"50\":1.6211},\"fieldValues\":{},\"length\":23},\"5\":{\"freq\":{\"0\":3.4896,\"51\":6.1703},\"fieldValues\":{},\"length\":6},\"6\":{\"freq\":{\"0\":3.3597,\"39\":2.614,\"41\":3.4336,\"43\":3.4336,\"52\":6.1152,\"53\":3.9646,\"54\":3.9646,\"55\":3.4336,\"56\":3.9646,\"57\":3.9646,\"58\":3.9646,\"59\":3.9646,\"60\":3.4336,\"61\":3.9646,\"62\":3.9646},\"fieldValues\":{},\"length\":21},\"7\":{\"freq\":{\"0\":2.7368,\"63\":4.3462,\"64\":6.0967,\"65\":2.6053,\"66\":3.3494,\"67\":2.9008,\"68\":2.9008,\"69\":4.7877,\"70\":3.3494,\"71\":3.3494,\"72\":3.3494,\"73\":3.3494,\"74\":3.3494,\"75\":3.3494,\"76\":3.3494,\"77\":4.7877,\"78\":3.3494,\"79\":3.3494,\"80\":3.3494,\"81\":2.6053,\"82\":2.6053,\"83\":3.3494},\"fieldValues\":{},\"length\":31},\"8\":{\"freq\":{\"0\":1.267,\"9\":0.8828,\"38\":1.8416,\"42\":1.5922,\"51\":3.4247,\"55\":2.2402,\"81\":4.1813,\"82\":2.012,\"84\":4.1574,\"85\":1.267,\"86\":2.2402,\"87\":3.9543,\"88\":3.4247,\"89\":4.1234,\"90\":2.5867,\"91\":2.5867,\"92\":2.5867,\"93\":2.2402,\"94\":2.2402,\"95\":1.5922,\"96\":1.8416,\"97\":1.8416,\"98\":2.5867,\"99\":2.5867,\"100\":2.2402,\"101\":2.5867,\"102\":2.012,\"103\":2.5867,\"104\":2.5867,\"105\":2.2402,\"106\":2.5867,\"107\":1.8416,\"108\":2.5867,\"109\":2.5867,\"110\":1.5922,\"111\":2.5867,\"112\":1.8416,\"113\":2.5867},\"fieldValues\":{},\"length\":50},\"9\":{\"freq\":{\"0\":1.4201,\"9\":0.9896,\"36\":2.2553,\"42\":2.6528,\"94\":2.5111,\"114\":3.1661,\"115\":2.9731,\"116\":2.8994,\"117\":2.5111,\"118\":2.5111,\"119\":2.8994,\"120\":2.8994,\"121\":2.2553,\"122\":2.8994,\"123\":2.8994,\"124\":1.9117,\"125\":2.8994,\"126\":2.8994,\"127\":2.8994,\"128\":2.0642,\"129\":2.8994,\"130\":2.0642,\"131\":2.8994,\"132\":2.8994,\"133\":2.8994,\"134\":2.8994,\"135\":3.7324,\"136\":2.5111,\"137\":2.5111,\"138\":2.2553,\"139\":2.0642,\"140\":2.8994,\"141\":2.8994,\"142\":2.0642,\"143\":2.5111},\"fieldValues\":{},\"length\":41},\"10\":{\"freq\":{\"65\":5.5418,\"144\":3.8843},\"fieldValues\":{},\"length\":6},\"11\":{\"freq\":{\"42\":2.8005,\"47\":5.6711,\"48\":5.6711,\"85\":2.2284,\"88\":3.9403,\"145\":4.5497,\"146\":4.5497,\"147\":4.5497,\"148\":3.9403,\"149\":4.5497},\"fieldValues\":{},\"length\":14},\"12\":{\"freq\":{\"0\":2.8346,\"39\":3.8158,\"40\":4.5016,\"42\":3.0838,\"67\":5.0121,\"150\":3.571,\"151\":4.3389,\"152\":5.0099,\"153\":3.571,\"154\":3.0928,\"155\":3.571,\"156\":5.0099,\"157\":3.571,\"158\":3.571,\"159\":3.571},\"fieldValues\":{},\"length\":27},\"13\":{\"freq\":{\"50\":2.9236,\"160\":4.2453,\"161\":6.8968},\"fieldValues\":{},\"length\":9},\"14\":{\"freq\":{\"6\":3.3712,\"9\":1.1257,\"50\":2.5663,\"128\":2.3482,\"142\":3.944,\"160\":3.7264,\"162\":4.7977,\"163\":3.2982,\"164\":2.8564,\"165\":3.2982,\"166\":2.5655,\"167\":3.2982,\"168\":2.8564,\"169\":3.2982,\"170\":3.2982,\"171\":3.2982,\"172\":3.2982,\"173\":3.2982,\"174\":2.8564,\"175\":3.2982,\"176\":3.2982},\"fieldValues\":{},\"length\":32},\"15\":{\"freq\":{\"81\":5.5418,\"177\":7.1245},\"fieldValues\":{},\"length\":6},\"16\":{\"freq\":{\"178\":4.5247,\"179\":6.3552,\"180\":4.279,\"181\":2.4734,\"182\":3.0465,\"183\":3.7059,\"184\":4.4086,\"185\":4.279,\"186\":3.7059,\"187\":4.279,\"188\":4.279,\"189\":3.7059},\"fieldValues\":{},\"length\":17},\"17\":{\"freq\":{\"3\":1.702,\"6\":3.3712,\"13\":4.709,\"30\":2.8564,\"107\":2.3482,\"174\":2.8564,\"178\":2.3482,\"181\":1.9064,\"190\":5.2431,\"191\":3.2982,\"192\":3.2982,\"193\":3.2982,\"194\":3.2982,\"195\":3.2982,\"196\":3.2982,\"197\":3.2982,\"198\":3.2982,\"199\":3.2982,\"200\":3.2982,\"201\":2.8564,\"202\":3.2982,\"203\":3.2982,\"204\":2.8564,\"205\":3.2982,\"206\":3.2982},\"fieldValues\":{},\"length\":32},\"18\":{\"freq\":{\"50\":1.7121,\"160\":2.4861,\"178\":2.8755,\"186\":3.4979,\"207\":6.1735,\"208\":6.1735,\"209\":4.0388,\"210\":2.663,\"211\":3.4979,\"212\":4.0388,\"213\":4.0388,\"214\":4.0388,\"215\":4.0388,\"216\":4.0388,\"217\":3.1416,\"218\":4.0388},\"fieldValues\":{},\"length\":20},\"19\":{\"freq\":{\"144\":3.8843,\"219\":6.1703},\"fieldValues\":{},\"length\":6},\"20\":{\"freq\":{\"105\":3.4336,\"130\":2.8226,\"220\":5.6814,\"221\":6.5599,\"222\":2.8226,\"223\":3.9646,\"224\":3.4336,\"225\":3.9646,\"226\":3.9646,\"227\":3.0839,\"228\":3.9646,\"229\":3.9646,\"230\":3.9646,\"231\":3.9646,\"232\":3.9646},\"fieldValues\":{},\"length\":21},\"21\":{\"freq\":{\"85\":1.3477,\"95\":2.5509,\"97\":1.959,\"100\":3.5891,\"110\":1.6937,\"112\":2.9504,\"233\":4.3175,\"234\":4.3175,\"235\":2.1403,\"236\":2.7515,\"237\":2.7324,\"238\":2.7515,\"239\":2.5509,\"240\":4.1441,\"241\":4.9852,\"242\":2.7515,\"243\":1.959,\"244\":2.7515,\"245\":3.8777,\"246\":2.383,\"247\":2.7515,\"248\":1.959,\"249\":2.1403,\"250\":3.5891,\"251\":1.8142,\"252\":2.7515,\"253\":1.8142,\"254\":1.6791,\"255\":2.7515},\"fieldValues\":{},\"length\":45},\"22\":{\"freq\":{\"9\":1.4047,\"138\":3.2015,\"217\":3.2015,\"239\":2.5335,\"256\":5.3981,\"257\":6.2329,\"258\":4.1158,\"259\":4.1158,\"260\":4.1158,\"261\":4.1158,\"262\":3.5646,\"263\":4.1158,\"264\":3.5646,\"265\":4.1158,\"266\":2.7137},\"fieldValues\":{},\"length\":19},\"23\":{\"freq\":{\"144\":3.8843,\"267\":7.1245},\"fieldValues\":{},\"length\":6},\"24\":{\"freq\":{\"220\":3.859,\"268\":6.4825,\"269\":6.4825,\"270\":6.4825,\"271\":4.4557,\"272\":4.4557,\"273\":4.4557,\"274\":4.4557,\"275\":4.4557},\"fieldValues\":{},\"length\":15},\"25\":{\"freq\":{\"50\":1.8506,\"184\":5.3042,\"227\":4.9924,\"256\":3.7809,\"276\":6.4182,\"277\":4.3656,\"278\":4.3656,\"279\":4.3656,\"280\":4.3656},\"fieldValues\":{},\"length\":16},\"26\":{\"freq\":{\"13\":3.4917,\"114\":3.27,\"115\":3.0707,\"121\":3.4917,\"124\":2.0203,\"182\":2.1815,\"219\":2.6537,\"281\":1.5812,\"282\":2.1987,\"283\":3.0641,\"284\":2.3834,\"285\":3.0641,\"286\":3.0641,\"287\":3.0641,\"288\":2.1815,\"289\":3.0641,\"290\":3.0641,\"291\":2.6537,\"292\":2.3834,\"293\":2.6537,\"294\":2.1815,\"295\":2.6537,\"296\":3.0641,\"297\":3.0641,\"298\":2.6537,\"299\":3.0641,\"300\":2.3834,\"301\":2.3834,\"302\":2.6537,\"303\":2.6537},\"fieldValues\":{},\"length\":37},\"27\":{\"freq\":{\"5\":3.5591,\"144\":3.7602,\"254\":2.7944},\"fieldValues\":{},\"length\":9},\"28\":{\"freq\":{\"3\":1.8128,\"5\":3.3889,\"9\":1.6903,\"38\":2.501,\"254\":2.7608,\"304\":4.9677,\"305\":2.501,\"306\":3.0424,\"307\":3.5129,\"308\":3.5129,\"309\":3.5129,\"310\":3.5129,\"311\":3.5129,\"312\":3.0424,\"313\":2.501,\"314\":3.5129},\"fieldValues\":{},\"length\":28},\"29\":{\"freq\":{\"254\":2.8867,\"315\":5.5418},\"fieldValues\":{},\"length\":6},\"30\":{\"freq\":{\"63\":2.9228,\"151\":3.2543,\"166\":2.9228,\"178\":2.6752,\"181\":2.172,\"237\":2.4775,\"288\":2.6752,\"313\":2.6752,\"316\":5.9467,\"317\":3.9479,\"318\":3.7576,\"319\":3.2543,\"320\":3.7576,\"321\":3.7576,\"322\":3.2543,\"323\":3.7576,\"324\":3.7576,\"325\":3.2543,\"326\":3.7576},\"fieldValues\":{},\"length\":24},\"31\":{\"freq\":{\"3\":2.124,\"22\":3.2015,\"317\":4.2766,\"327\":6.2329,\"328\":4.1158,\"329\":4.1158,\"330\":4.1158,\"331\":4.1158,\"332\":3.5646,\"333\":3.2015,\"334\":4.1158,\"335\":4.1158,\"336\":4.1158},\"fieldValues\":{},\"length\":19},\"32\":{\"freq\":{\"5\":3.6765,\"337\":7.1245},\"fieldValues\":{},\"length\":6},\"33\":{\"freq\":{\"9\":1.0608,\"85\":1.5224,\"102\":2.4177,\"110\":1.9132,\"112\":3.2295,\"148\":3.9286,\"184\":2.4177,\"248\":4.1925,\"251\":2.0494,\"253\":3.8827,\"254\":2.386,\"294\":2.2129,\"313\":2.2129,\"317\":1.9132,\"333\":2.4177,\"338\":4.6389,\"339\":3.1082,\"340\":4.5361,\"341\":3.1082,\"342\":3.1082,\"343\":3.1082,\"344\":2.0494},\"fieldValues\":{},\"length\":36},\"34\":{\"freq\":{\"42\":2.0942,\"82\":2.6464,\"85\":1.6664,\"89\":2.4222,\"110\":2.9801,\"250\":5.8399,\"254\":1.3785,\"282\":1.6664,\"315\":4.384,\"332\":2.9465,\"345\":4.8414,\"346\":4.8414,\"347\":3.4022,\"348\":3.4022,\"349\":2.9465,\"350\":2.2432,\"351\":3.4022,\"352\":3.4022,\"353\":3.4022,\"354\":3.4022},\"fieldValues\":{},\"length\":30},\"35\":{\"freq\":{\"235\":2.9746,\"253\":2.5214,\"254\":2.6181,\"266\":2.5214,\"281\":1.9734,\"317\":3.234,\"344\":2.5214,\"355\":6.4617,\"356\":3.8241,\"357\":3.8241,\"358\":3.8241,\"359\":3.8241,\"360\":3.312,\"361\":3.8241,\"362\":3.8241,\"363\":3.8241},\"fieldValues\":{},\"length\":23},\"36\":{\"freq\":{\"9\":0.8935,\"23\":2.0364,\"32\":2.2674,\"40\":3.1043,\"114\":2.9769,\"115\":2.7954,\"117\":2.2674,\"124\":1.7262,\"128\":1.8639,\"142\":1.8639,\"182\":1.8639,\"183\":2.2674,\"210\":1.7262,\"248\":1.8639,\"253\":1.7262,\"254\":1.617,\"266\":1.7262,\"281\":2.0595,\"288\":1.8639,\"315\":2.0364,\"317\":1.6115,\"338\":2.2674,\"344\":1.7262,\"364\":2.618,\"365\":2.618,\"366\":2.0364,\"367\":2.2674,\"368\":2.0364,\"369\":2.618,\"370\":2.618,\"371\":1.351,\"372\":2.618,\"373\":2.618,\"374\":2.618,\"375\":2.2674,\"376\":2.618,\"377\":2.618,\"378\":2.618,\"379\":2.618,\"380\":3.9909,\"381\":2.618},\"fieldValues\":{},\"length\":49},\"37\":{\"freq\":{\"5\":3.0408,\"128\":2.6294,\"144\":3.2127,\"254\":2.3875,\"288\":2.6294,\"317\":3.1571,\"382\":5.8925,\"383\":3.6933,\"384\":3.6933,\"385\":3.6933,\"386\":3.6933,\"387\":3.6933,\"388\":3.6933,\"389\":3.6933,\"390\":3.6933,\"391\":3.6933},\"fieldValues\":{},\"length\":25},\"38\":{\"freq\":{\"282\":3.4896,\"392\":5.0723},\"fieldValues\":{},\"length\":6},\"39\":{\"freq\":{\"2\":5.0121,\"3\":1.8428,\"4\":3.0928,\"6\":2.5424,\"9\":1.2188,\"50\":1.5138,\"68\":3.0928,\"136\":3.0928,\"160\":2.1981,\"190\":3.0928,\"237\":2.3545,\"245\":2.7777,\"281\":1.8428,\"282\":1.7491,\"306\":3.0928,\"392\":2.5424,\"393\":3.571,\"394\":3.571,\"395\":3.571,\"396\":3.571,\"397\":3.571,\"398\":3.571,\"399\":3.571,\"400\":3.571,\"401\":3.571},\"fieldValues\":{},\"length\":27},\"40\":{\"freq\":{\"19\":6.1703,\"402\":7.1245},\"fieldValues\":{},\"length\":6},\"41\":{\"freq\":{\"9\":1.6903,\"10\":3.7819,\"50\":1.4892,\"124\":2.3162,\"143\":3.0424,\"182\":2.501,\"282\":3.0508,\"284\":2.7325,\"366\":2.7325,\"367\":3.0424,\"403\":5.3944,\"404\":3.0424,\"405\":3.5129,\"406\":3.5129,\"407\":2.501,\"408\":3.5129,\"409\":3.5129,\"410\":3.5129,\"411\":3.5129},\"fieldValues\":{},\"length\":28},\"42\":{\"freq\":{\"50\":1.6211,\"137\":3.312,\"181\":2.2104,\"222\":2.7226,\"282\":1.8731,\"292\":2.9746,\"392\":2.7226,\"412\":5.198,\"413\":4.273,\"414\":3.8241,\"415\":3.8241,\"416\":3.312,\"417\":3.8241,\"418\":3.8241,\"419\":3.8241,\"420\":3.8241,\"421\":3.312,\"422\":3.8241,\"423\":3.8241},\"fieldValues\":{},\"length\":23},\"43\":{\"freq\":{\"9\":1.2825,\"10\":2.4775,\"50\":1.5929,\"65\":2.9228,\"144\":2.0486,\"162\":3.2543,\"181\":2.172,\"233\":3.2543,\"234\":3.2543,\"235\":2.9228,\"237\":2.4775,\"281\":1.9391,\"282\":3.1415,\"424\":6.4137,\"425\":3.7576,\"426\":3.7576,\"427\":3.7576,\"428\":3.7576},\"fieldValues\":{},\"length\":24},\"44\":{\"freq\":{\"9\":0.9896,\"10\":1.9117,\"23\":2.2553,\"50\":1.2291,\"114\":3.1661,\"115\":2.9731,\"121\":2.2553,\"130\":2.0642,\"138\":2.2553,\"166\":2.2553,\"189\":2.5111,\"204\":2.5111,\"237\":1.9117,\"282\":1.4201,\"298\":2.5111,\"300\":2.2553,\"301\":2.2553,\"302\":2.5111,\"319\":2.5111,\"322\":2.5111,\"344\":1.9117,\"349\":2.5111,\"350\":1.9117,\"366\":2.2553,\"392\":2.0642,\"403\":2.5111,\"429\":2.8994,\"430\":2.8994,\"431\":2.8994,\"432\":2.8994,\"433\":2.5111,\"434\":2.8994,\"435\":2.8994,\"436\":2.8994,\"437\":2.8994,\"438\":2.8994,\"439\":2.8994},\"fieldValues\":{},\"length\":41},\"45\":{\"freq\":{\"84\":4.717,\"85\":1.5675,\"89\":3.2988,\"93\":2.7717,\"96\":2.2785,\"97\":2.2785,\"118\":2.7717,\"144\":1.7449,\"154\":4.717,\"254\":1.2967,\"295\":2.7717,\"360\":4.0129,\"404\":2.7717,\"412\":2.7717,\"413\":2.2785,\"440\":3.2004,\"441\":3.2004,\"442\":3.2004,\"443\":3.2004,\"444\":3.2004,\"445\":3.2004,\"446\":3.2004,\"447\":3.2004,\"448\":3.2004,\"449\":3.2004,\"450\":2.7717,\"451\":3.2004,\"452\":3.2004},\"fieldValues\":{},\"length\":34},\"46\":{\"freq\":{\"5\":2.124,\"9\":1.4047,\"50\":1.7448,\"115\":2.379,\"160\":2.5335,\"254\":1.6676,\"300\":3.2015,\"301\":4.2958,\"303\":3.5646,\"312\":3.5646,\"413\":2.9303,\"453\":6.2329,\"454\":6.2329,\"455\":4.1158},\"fieldValues\":{},\"length\":19},\"47\":{\"freq\":{\"371\":3.6765,\"456\":4.1181},\"fieldValues\":{},\"length\":6},\"48\":{\"freq\":{\"3\":1.6515,\"9\":1.5814,\"39\":2.1101,\"50\":1.3567,\"142\":3.8776,\"210\":2.1101,\"239\":1.97,\"266\":2.1101,\"281\":1.6515,\"371\":3.2695,\"407\":2.2785,\"456\":3.8181,\"457\":3.2004,\"458\":2.4894,\"459\":3.2004,\"460\":2.4894,\"461\":3.2004,\"462\":3.2004,\"463\":3.2004,\"464\":3.2004,\"465\":3.2004,\"466\":3.2004},\"fieldValues\":{},\"length\":34},\"49\":{\"freq\":{\"284\":5.3647,\"371\":3.5591,\"456\":3.9865},\"fieldValues\":{},\"length\":9},\"50\":{\"freq\":{\"3\":1.8738,\"9\":1.73,\"39\":4.1669,\"60\":3.1448,\"63\":2.8245,\"305\":2.5852,\"313\":2.5852,\"371\":2.6157,\"456\":2.0989,\"467\":5.8394,\"468\":3.6311,\"469\":3.6311,\"470\":3.6311,\"471\":3.6311,\"472\":3.1448,\"473\":3.6311,\"474\":3.6311,\"475\":3.6311,\"476\":3.6311},\"fieldValues\":{},\"length\":26},\"51\":{\"freq\":{\"9\":1.9577,\"211\":3.0424,\"224\":3.0424,\"294\":2.501,\"456\":3.3155,\"458\":4.8449,\"477\":4.1068,\"478\":3.5129,\"479\":3.5129,\"480\":3.5129,\"481\":3.5129,\"482\":3.5129,\"483\":3.5129,\"484\":3.0424,\"485\":2.3162,\"486\":3.5129,\"487\":3.5129,\"488\":3.5129},\"fieldValues\":{},\"length\":28},\"52\":{\"freq\":{\"239\":4.0379,\"281\":2.0459,\"325\":3.4336,\"371\":2.0459,\"413\":2.8226,\"456\":2.2916,\"472\":5.2961,\"489\":3.9646,\"490\":3.9646,\"491\":3.9646,\"492\":3.9646,\"493\":3.4336,\"494\":3.9646,\"495\":3.9646,\"496\":3.9646,\"497\":3.9646},\"fieldValues\":{},\"length\":21},\"53\":{\"freq\":{\"9\":0.8145,\"50\":1.0116,\"85\":1.1689,\"86\":2.0668,\"89\":3.9741,\"95\":1.469,\"102\":2.8905,\"110\":1.469,\"239\":1.469,\"281\":1.2315,\"350\":1.5735,\"371\":3.1852,\"433\":4.461,\"450\":2.0668,\"458\":1.8563,\"477\":1.5735,\"484\":2.0668,\"485\":1.5735,\"498\":4.5635,\"499\":4.0066,\"500\":2.3865,\"501\":4.5635,\"502\":2.3865,\"503\":2.3865,\"504\":2.3865,\"505\":3.716,\"506\":3.716,\"507\":2.3865,\"508\":2.3865,\"509\":2.3865,\"510\":2.3865,\"511\":2.3865,\"512\":2.3865,\"513\":2.3865},\"fieldValues\":{},\"length\":57},\"54\":{\"freq\":{\"36\":2.3176,\"107\":2.1212,\"114\":3.2172,\"115\":3.0211,\"135\":2.5804,\"139\":2.1212,\"181\":1.7222,\"246\":2.5804,\"344\":1.9645,\"368\":2.3176,\"371\":3.438,\"375\":2.5804,\"514\":2.9795,\"515\":2.9795,\"516\":2.9795,\"517\":2.9795,\"518\":4.3975,\"519\":2.9795,\"520\":2.9795,\"521\":2.5804,\"522\":2.9795,\"523\":2.9795,\"524\":2.9795,\"525\":2.5804,\"526\":2.9795,\"527\":2.9795,\"528\":2.5804,\"529\":2.9795},\"fieldValues\":{},\"length\":39},\"55\":{\"freq\":{\"28\":3.0424,\"124\":3.7819,\"210\":2.3162,\"227\":2.7325,\"266\":2.3162,\"371\":3.2143,\"407\":2.501,\"416\":3.0424,\"456\":2.8626,\"493\":3.0424,\"499\":3.8522,\"530\":5.7359,\"531\":3.5129,\"532\":3.5129,\"533\":3.5129,\"534\":3.5129,\"535\":3.5129,\"536\":3.5129,\"537\":3.5129},\"fieldValues\":{},\"length\":28},\"56\":{\"freq\":{\"305\":5.0723,\"538\":4.3854},\"fieldValues\":{},\"length\":6},\"57\":{\"freq\":{\"3\":2.009,\"10\":2.5669,\"38\":2.7717,\"222\":3.7866,\"304\":5.2466,\"305\":2.7717,\"538\":2.3964,\"539\":3.8931,\"540\":3.8931,\"541\":3.0282,\"542\":3.0282,\"543\":3.8931,\"544\":3.8931,\"545\":3.8931,\"546\":3.8931,\"547\":3.0282,\"548\":3.8931,\"549\":3.8931,\"550\":3.8931},\"fieldValues\":{},\"length\":22},\"58\":{\"freq\":{\"538\":4.3854,\"547\":5.5418},\"fieldValues\":{},\"length\":6},\"59\":{\"freq\":{\"3\":1.8738,\"5\":1.8738,\"168\":3.1448,\"181\":2.0989,\"254\":1.4712,\"264\":3.1448,\"485\":2.3941,\"538\":3.5944,\"551\":5.4734,\"552\":6.3198,\"553\":3.6311,\"554\":3.6311,\"555\":3.1448,\"556\":3.6311,\"557\":3.1448,\"558\":3.6311,\"559\":3.6311,\"560\":3.6311},\"fieldValues\":{},\"length\":26},\"60\":{\"freq\":{\"5\":2.009,\"139\":2.7717,\"160\":3.7289,\"217\":3.0282,\"222\":2.7717,\"254\":1.5774,\"282\":1.9069,\"368\":3.0282,\"547\":4.7122,\"551\":3.3717,\"555\":3.3717,\"557\":3.3717,\"561\":3.8931,\"562\":3.8931,\"563\":3.8931,\"564\":3.8931,\"565\":3.8931,\"566\":3.8931},\"fieldValues\":{},\"length\":22},\"61\":{\"freq\":{\"144\":3.8843,\"538\":4.3854},\"fieldValues\":{},\"length\":6},\"62\":{\"freq\":{\"85\":1.5224,\"95\":1.9132,\"96\":2.2129,\"243\":2.2129,\"251\":4.1289,\"350\":2.0494,\"477\":3.5317,\"541\":2.4177,\"567\":5.3563,\"568\":2.4177,\"569\":3.1082,\"570\":3.1082,\"571\":3.1082,\"572\":3.1082,\"573\":5.2517,\"574\":3.1082,\"575\":2.6919,\"576\":2.6919,\"577\":3.1082,\"578\":3.1082,\"579\":3.1082,\"580\":3.1082},\"fieldValues\":{},\"length\":36},\"63\":{\"freq\":{\"85\":1.4594,\"95\":2.7068,\"107\":2.1212,\"110\":1.834,\"164\":2.5804,\"243\":2.1212,\"249\":2.3176,\"251\":1.9645,\"350\":1.9645,\"477\":3.4461,\"541\":2.3176,\"568\":2.3176,\"573\":5.0102,\"576\":3.8085,\"581\":5.2266,\"582\":2.9795,\"583\":2.9795,\"584\":2.9795,\"585\":4.3975,\"586\":4.3975,\"587\":4.3975,\"588\":2.9795,\"589\":2.9795,\"590\":2.9795,\"591\":2.9795},\"fieldValues\":{},\"length\":39},\"64\":{\"freq\":{\"85\":1.1194,\"95\":2.2112,\"96\":2.5576,\"97\":1.6271,\"112\":1.6271,\"210\":1.5068,\"243\":1.6271,\"245\":4.2539,\"248\":1.6271,\"249\":2.7943,\"251\":3.317,\"253\":1.5068,\"254\":1.4555,\"281\":1.1794,\"460\":1.7777,\"568\":1.7777,\"573\":4.7239,\"575\":1.9793,\"592\":4.4384,\"593\":4.4384,\"594\":2.2854,\"595\":2.2854,\"596\":1.9793,\"597\":2.2854,\"598\":2.2854,\"599\":5.4688,\"600\":3.5923,\"601\":2.2854,\"602\":2.2854,\"603\":2.2854,\"604\":2.2854,\"605\":3.5923,\"606\":3.5923},\"fieldValues\":{},\"length\":61},\"65\":{\"freq\":{\"201\":3.1986,\"262\":3.1986,\"477\":2.4351,\"485\":3.8852,\"499\":2.8728,\"538\":3.1571,\"542\":2.8728,\"607\":5.8925,\"608\":3.6933,\"609\":3.6933,\"610\":3.6933,\"611\":3.6933,\"612\":3.6933,\"613\":3.6933,\"614\":3.6933,\"615\":3.6933,\"616\":3.6933,\"617\":3.6933,\"618\":3.6933,\"619\":3.6933},\"fieldValues\":{},\"length\":25},\"66\":{\"freq\":{\"5\":1.6274,\"9\":1.0763,\"24\":2.7312,\"114\":3.3246,\"115\":3.1219,\"130\":2.2452,\"139\":2.2452,\"239\":1.9412,\"282\":1.5446,\"291\":2.7312,\"292\":2.453,\"293\":2.7312,\"294\":2.2452,\"333\":2.453,\"407\":2.2452,\"421\":2.7312,\"460\":2.453,\"485\":2.0793,\"521\":2.7312,\"525\":2.7312,\"528\":2.7312,\"542\":2.453,\"596\":2.7312,\"620\":3.1536,\"621\":3.1536,\"622\":3.1536,\"623\":3.1536,\"624\":3.1536,\"625\":3.1536,\"626\":3.1536,\"627\":3.1536},\"fieldValues\":{},\"length\":35}},[[0,1,3,4,5,6,7,8,9,12],[0,1],[1,39],[1,17,28,31,39,48,50,57,59],[1,39],[1,27,28,32,37,46,59,60,66],[1,14,17,39],[1],[1],[1,8,9,14,22,28,33,36,39,41,43,44,46,48,50,51,53,66],[1,41,43,44,57],[1],[1],[1,17,26],[1,3],[1,3],[1],[1,3],[1],[2,40],[2],[3],[3,4,31],[3,36,44],[3,66],[3],[3],[3],[3,55],[3],[3,17],[3],[3,36],[3],[4],[4],[4,9,54],[4],[4,8,28,57],[4,6,12,48,50],[4,12,36],[4,6],[4,8,9,11,12,34],[4,6],[4],[4],[4],[4,11],[4,11],[4],[4,13,14,18,25,39,41,42,43,44,46,48,53],[5,8],[6],[6],[6],[6,8],[6],[6],[6],[6],[6,50],[6],[6],[7,30,50],[7],[7,10,43],[7],[7,12],[7,39],[7],[7],[7],[7],[7],[7],[7],[7],[7],[7],[7],[7],[7,8,15],[7,8,34],[7],[8,45],[8,11,21,33,34,45,53,62,63,64],[8,53],[8],[8,11],[8,34,45,53],[8],[8],[8],[8,45],[8,9],[8,21,53,62,63,64],[8,45,62,64],[8,21,45,64],[8],[8],[8,21],[8],[8,33,53],[8],[8],[8,20],[8],[8,17,54,63],[8],[8],[8,21,33,34,53,63],[8],[8,21,33,64],[8],[9,26,36,44,54,66],[9,26,36,44,46,54,66],[9],[9,36],[9,45],[9],[9],[9,26,44],[9],[9],[9,26,36,41,55],[9],[9],[9],[9,14,36,37],[9],[9,20,44,66],[9],[9],[9],[9],[9,54],[9,39],[9,42],[9,22,44],[9,54,60,66],[9],[9],[9,14,36,48],[9,41],[10,19,23,27,37,43,45,61],[11],[11],[11],[11,33],[11],[12],[12,30],[12],[12],[12,45],[12],[12],[12],[12],[12],[13,14,18,39,46,60],[13],[14,43],[14],[14,63],[14],[14,30,44],[14],[14,59],[14],[14],[14],[14],[14],[14,17],[14],[14],[15],[16,17,18,30],[16],[16],[16,17,30,42,43,54,59],[16,26,36,41],[16,36],[16,25,33],[16],[16,18],[16],[16],[16,44],[17,39],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17,65],[17],[17],[17,44],[17],[17],[18],[18],[18],[18,36,48,55,64],[18,51],[18],[18],[18],[18],[18],[18,22,60],[18],[19,26],[20,24],[20],[20,42,57,60],[20],[20,51],[20],[20],[20,25,55],[20],[20],[20],[20],[20],[21,43],[21,43],[21,35,43],[21],[21,30,39,43,44],[21],[21,22,48,52,53,66],[21],[21],[21],[21,62,63,64],[21],[21,39,64],[21,54],[21],[21,33,36,64],[21,63,64],[21,34],[21,33,62,63,64],[21],[21,33,35,36,64],[21,27,28,29,33,34,35,36,37,45,46,59,60,64],[21],[22,25],[22],[22],[22],[22],[22],[22,65],[22],[22,59],[22],[22,35,36,48,55],[23],[24],[24],[24],[24],[24],[24],[24],[24],[25],[25],[25],[25],[25],[26,35,36,39,43,48,52,53,64],[26,34,38,39,41,42,43,44,60,66],[26],[26,41,49],[26],[26],[26],[26,30,36,37],[26],[26],[26,66],[26,42,66],[26,66],[26,33,51,66],[26,45],[26],[26],[26,44],[26],[26,44,46],[26,44,46],[26,44],[26,46],[28,57],[28,50,56,57],[28,39],[28],[28],[28],[28],[28],[28,46],[28,30,33,50],[28],[29,34,36],[30],[30,31,33,35,36,37],[30],[30,44],[30],[30],[30,44],[30],[30],[30,52],[30],[31],[31],[31],[31],[31],[31,34],[31,33,66],[31],[31],[31],[32],[33,36],[33],[33],[33],[33],[33],[33,35,36,44,54],[34],[34],[34],[34],[34,44],[34,44,53,62,63],[34],[34],[34],[34],[35],[35],[35],[35],[35],[35,45],[35],[35],[35],[36],[36],[36,41,44],[36,41],[36,54,60],[36],[36],[36,47,48,49,50,52,53,54,55],[36],[36],[36],[36,54],[36],[36],[36],[36],[36],[36],[37],[37],[37],[37],[37],[37],[37],[37],[37],[37],[38,39,42,44],[39],[39],[39],[39],[39],[39],[39],[39],[39],[40],[41,44],[41,45],[41],[41],[41,48,55,66],[41],[41],[41],[41],[42,45],[42,45,46,52],[42],[42],[42,55],[42],[42],[42],[42],[42,66],[42],[42],[43],[43],[43],[43],[43],[44],[44],[44],[44],[44,53],[44],[44],[44],[44],[44],[44],[45],[45],[45],[45],[45],[45],[45],[45],[45],[45],[45,53],[45],[45],[46],[46],[46],[47,48,49,50,51,52,55],[48],[48,51,53],[48],[48,64,66],[48],[48],[48],[48],[48],[48],[50],[50],[50],[50],[50],[50,52],[50],[50],[50],[50],[51,53,62,63,65],[51],[51],[51],[51],[51],[51],[51,53],[51,53,59,65,66],[51],[51],[51],[52],[52],[52],[52],[52,55],[52],[52],[52],[52],[53],[53,55,65],[53],[53],[53],[53],[53],[53],[53],[53],[53],[53],[53],[53],[53],[53],[54],[54],[54],[54],[54],[54],[54],[54,66],[54],[54],[54],[54,66],[54],[54],[54,66],[54],[55],[55],[55],[55],[55],[55],[55],[55],[56,57,58,59,61,65],[57],[57],[57,62,63],[57,65,66],[57],[57],[57],[57],[57,58,60],[57],[57],[57],[59,60],[59],[59],[59],[59,60],[59],[59,60],[59],[59],[59],[60],[60],[60],[60],[60],[60],[62],[62,63,64],[62],[62],[62],[62],[62,63,64],[62],[62,64],[62,63],[62],[62],[62],[62],[63],[63],[63],[63],[63],[63],[63],[63],[63],[63],[63],[64],[64],[64],[64],[64,66],[64],[64],[64],[64],[64],[64],[64],[64],[64],[64],[65],[65],[65],[65],[65],[65],[65],[65],[65],[65],[65],[65],[65],[66],[66],[66],[66],[66],[66],[66],[66]],628,{\"100\":157,\"configuration\":0,\"management\":1,\"overview\":2,\"the\":3,\"practice\":4,\"handling\":5,\"system\":6,\"systematic\":7,\"versioned\":8,\"and\":9,\"automated\":10,\"way\":11,\"ensures\":12,\"consistency\":13,\"across\":14,\"environments\":15,\"enables\":16,\"reproducible\":17,\"deployments\":18,\"core\":19,\"principles\":20,\"infrastructure\":21,\"code\":22,\"should\":23,\"version\":24,\"controlled\":25,\"git\":26,\"reviewed\":27,\"through\":28,\"pull\":29,\"requests\":30,\"tested\":31,\"before\":32,\"deployment\":33,\"separation\":34,\"concerns\":35,\"keep\":36,\"separate\":37,\"from\":38,\"environment\":39,\"specific\":40,\"values\":41,\"config\":42,\"files\":43,\"secrets\":44,\"secure\":45,\"vaults\":46,\"feature\":47,\"flags\":48,\"dedicated\":49,\"systems\":50,\"sources\":51,\"hierarchy\":52,\"typically\":53,\"follows\":54,\"precedence\":55,\"command\":56,\"line\":57,\"arguments\":58,\"highest\":59,\"variables\":60,\"default\":61,\"lowest\":62,\"file\":63,\"formats\":64,\"common\":65,\"include\":66,\"yaml\":67,\"human\":68,\"readable\":69,\"supports\":70,\"comments\":71,\"json\":72,\"machine\":73,\"widely\":74,\"supported\":75,\"toml\":76,\"simple\":77,\"explicit\":78,\"typing\":79,\"ini\":80,\"key\":81,\"value\":82,\"pairs\":83,\"implementation\":84,\"typescript\":85,\"interface\":86,\"configservice\":87,\"get\":88,\"string\":89,\"getordefault\":90,\"defaultvalue\":91,\"has\":92,\"boolean\":93,\"reload\":94,\"promise\":95,\"void\":96,\"class\":97,\"configmanager\":98,\"implements\":99,\"private\":100,\"map\":101,\"unknown\":102,\"constructor\":103,\"configsource\":104,\"load\":105,\"merge\":106,\"all\":107,\"respect\":108,\"rules\":109,\"return\":110,\"typed\":111,\"throw\":112,\"missing\":113,\"best\":114,\"practices\":115,\"validate\":116,\"early\":117,\"check\":118,\"startup\":119,\"document\":120,\"everything\":121,\"schema\":122,\"documented\":123,\"use\":124,\"sensible\":125,\"defaults\":126,\"most\":127,\"users\":128,\"shouldn\":129,\"need\":130,\"configure\":131,\"support\":132,\"hot\":133,\"allow\":134,\"changes\":135,\"without\":136,\"restart\":137,\"audit\":138,\"track\":139,\"who\":140,\"changed\":141,\"what\":142,\"when\":143,\"patterns\":144,\"features\":145,\"newdashboard\":146,\"rendernewdashboard\":147,\"else\":148,\"renderlegacydashboard\":149,\"production\":150,\"database\":151,\"host\":152,\"prod\":153,\"example\":154,\"com\":155,\"poolsize\":156,\"development\":158,\"localhost\":159,\"distributed\":160,\"architecture\":161,\"are\":162,\"collection\":163,\"independent\":164,\"computers\":165,\"that\":166,\"appear\":167,\"single\":168,\"coherent\":169,\"these\":170,\"enable\":171,\"scalability\":172,\"fault\":173,\"tolerance\":174,\"geographic\":175,\"distribution\":176,\"challenges\":177,\"network\":178,\"partitions\":179,\"networks\":180,\"can\":181,\"fail\":182,\"causing\":183,\"message\":184,\"loss\":185,\"delays\":186,\"split\":187,\"brain\":188,\"scenarios\":189,\"availability\":190,\"cap\":191,\"theorem\":192,\"states\":193,\"you\":194,\"only\":195,\"have\":196,\"two\":197,\"nodes\":198,\"see\":199,\"same\":200,\"data\":201,\"responds\":202,\"partition\":203,\"works\":204,\"despite\":205,\"issues\":206,\"clock\":207,\"synchronization\":208,\"struggle\":209,\"with\":210,\"time\":211,\"physical\":212,\"clocks\":213,\"drift\":214,\"vary\":215,\"ordering\":216,\"events\":217,\"challenging\":218,\"design\":219,\"service\":220,\"discovery\":221,\"services\":222,\"find\":223,\"each\":224,\"other\":225,\"dns\":226,\"based\":227,\"registries\":228,\"consul\":229,\"etcd\":230,\"balancer\":231,\"integration\":232,\"circuit\":233,\"breakers\":234,\"prevent\":235,\"cascade\":236,\"failures\":237,\"circuitbreaker\":238,\"state\":239,\"closed\":240,\"open\":241,\"half\":242,\"async\":243,\"call\":244,\"this\":245,\"new\":246,\"circuitopenerror\":247,\"try\":248,\"const\":249,\"result\":250,\"await\":251,\"onsuccess\":252,\"catch\":253,\"error\":254,\"onfailure\":255,\"event\":256,\"sourcing\":257,\"store\":258,\"sequence\":259,\"complete\":260,\"trail\":261,\"temporal\":262,\"queries\":263,\"easy\":264,\"replay\":265,\"debugging\":266,\"communication\":267,\"synchronous\":268,\"request\":269,\"response\":270,\"rest\":271,\"apis\":272,\"grpc\":273,\"direct\":274,\"calls\":275,\"asynchronous\":276,\"queues\":277,\"streams\":278,\"pub\":279,\"sub\":280,\"for\":281,\"failure\":282,\"assume\":283,\"components\":284,\"will\":285,\"embrace\":286,\"eventual\":287,\"not\":288,\"needs\":289,\"strong\":290,\"idempotent\":291,\"operations\":292,\"safe\":293,\"retry\":294,\"monitor\":295,\"observability\":296,\"critical\":297,\"test\":298,\"modes\":299,\"chaos\":300,\"engineering\":301,\"validates\":302,\"resilience\":303,\"introduction\":304,\"process\":305,\"responding\":306,\"recovering\":307,\"conditions\":308,\"software\":309,\"good\":310,\"improves\":311,\"reliability\":312,\"user\":313,\"experience\":314,\"types\":315,\"operational\":316,\"errors\":317,\"occur\":318,\"during\":319,\"normal\":320,\"operation\":321,\"timeouts\":322,\"found\":323,\"invalid\":324,\"input\":325,\"connection\":326,\"programming\":327,\"bugs\":328,\"null\":329,\"pointer\":330,\"exceptions\":331,\"type\":332,\"logic\":333,\"array\":334,\"bounds\":335,\"violations\":336,\"strategies\":337,\"blocks\":338,\"riskyoperation\":339,\"instanceof\":340,\"networkerror\":341,\"validationerror\":342,\"friendly\":343,\"log\":344,\"instead\":345,\"throwing\":346,\"success\":347,\"true\":348,\"false\":349,\"function\":350,\"parseconfig\":351,\"path\":352,\"configerror\":353,\"structured\":354,\"boundaries\":355,\"applications\":356,\"entire\":357,\"app\":358,\"crashes\":359,\"component\":360,\"trees\":361,\"display\":362,\"fallback\":363,\"generic\":364,\"exception\":365,\"fast\":366,\"detect\":367,\"more\":368,\"damage\":369,\"provide\":370,\"context\":371,\"messages\":372,\"explain\":373,\"why\":374,\"appropriately\":375,\"stack\":376,\"traces\":377,\"summaries\":378,\"clean\":379,\"resources\":380,\"finally\":381,\"anti\":382,\"swallowing\":383,\"silently\":384,\"catching\":385,\"too\":386,\"broadly\":387,\"exposing\":388,\"internal\":389,\"details\":390,\"cleaning\":391,\"automation\":392,\"automatically\":393,\"detecting\":394,\"reporting\":395,\"intervention\":396,\"approach\":397,\"essential\":398,\"maintaining\":399,\"high\":400,\"modern\":401,\"concepts\":402,\"detection\":403,\"health\":404,\"checks\":405,\"heartbeats\":406,\"monitoring\":407,\"must\":408,\"accurate\":409,\"minimize\":410,\"downtime\":411,\"automatic\":412,\"recovery\":413,\"once\":414,\"detected\":415,\"failed\":416,\"failover\":417,\"backup\":418,\"scale\":419,\"healthy\":420,\"instances\":421,\"alert\":422,\"teams\":423,\"isolation\":424,\"isolate\":425,\"cascading\":426,\"effects\":427,\"bulkheads\":428,\"regularly\":429,\"set\":430,\"appropriate\":431,\"balance\":432,\"between\":433,\"positives\":434,\"responses\":435,\"trails\":436,\"graceful\":437,\"degradation\":438,\"partially\":439,\"failureautomation\":440,\"detectfailure\":441,\"endpoint\":442,\"rates\":443,\"analyze\":444,\"latency\":445,\"respondtofailure\":446,\"trigger\":447,\"send\":448,\"alerts\":449,\"update\":450,\"status\":451,\"page\":452,\"related\":453,\"topics\":454,\"site\":455,\"job\":456,\"refers\":457,\"metadata\":458,\"associated\":459,\"running\":460,\"task\":461,\"understanding\":462,\"crucial\":463,\"managing\":464,\"batch\":465,\"processing\":466,\"runtime\":467,\"includes\":468,\"working\":469,\"directory\":470,\"paths\":471,\"information\":472,\"pid\":473,\"memory\":474,\"cpu\":475,\"permission\":476,\"execution\":477,\"carries\":478,\"about\":479,\"its\":480,\"name\":481,\"start\":482,\"duration\":483,\"parent\":484,\"workflow\":485,\"reference\":486,\"count\":487,\"history\":488,\"tracks\":489,\"current\":490,\"parameters\":491,\"received\":492,\"progress\":493,\"percentage\":494,\"intermediate\":495,\"results\":496,\"checkpoints\":497,\"passing\":498,\"jobs\":499,\"flows\":500,\"jobcontext\":501,\"jobid\":502,\"workflowid\":503,\"inputs\":504,\"record\":505,\"outputs\":506,\"startedat\":507,\"date\":508,\"retrycount\":509,\"number\":510,\"executejob\":511,\"access\":512,\"enriched\":513,\"immutable\":514,\"create\":515,\"objects\":516,\"rather\":517,\"than\":518,\"mutating\":519,\"serialize\":520,\"carefully\":521,\"ensure\":522,\"persisted\":523,\"scope\":524,\"don\":525,\"pass\":526,\"needed\":527,\"how\":528,\"evolves\":529,\"cases\":530,\"examining\":531,\"their\":532,\"replaying\":533,\"captured\":534,\"updates\":535,\"implementing\":536,\"dependencies\":537,\"orchestration\":538,\"coordination\":539,\"multiple\":540,\"tasks\":541,\"workflows\":542,\"achieve\":543,\"business\":544,\"goal\":545,\"differs\":546,\"choreography\":547,\"where\":548,\"coordinate\":549,\"themselves\":550,\"central\":551,\"control\":552,\"orchestrator\":553,\"directs\":554,\"point\":555,\"understand\":556,\"flow\":557,\"simpler\":558,\"become\":559,\"bottleneck\":560,\"react\":561,\"independently\":562,\"scalable\":563,\"harder\":564,\"overall\":565,\"complex\":566,\"sequential\":567,\"run\":568,\"one\":569,\"after\":570,\"another\":571,\"processorder\":572,\"order\":573,\"validateorder\":574,\"reserveinventory\":575,\"items\":576,\"processpayment\":577,\"payment\":578,\"scheduleshipping\":579,\"notifycustomer\":580,\"parallel\":581,\"concurrently\":582,\"enrichorder\":583,\"enrichedorder\":584,\"customer\":585,\"inventory\":586,\"pricing\":587,\"fetchcustomerdetails\":588,\"customerid\":589,\"checkinventorylevels\":590,\"calculatepricing\":591,\"saga\":592,\"pattern\":593,\"long\":594,\"transactions\":595,\"compensation\":596,\"ordersaga\":597,\"execute\":598,\"compensations\":599,\"push\":600,\"releaseinventory\":601,\"chargepayment\":602,\"refundpayment\":603,\"shiporder\":604,\"reverse\":605,\"compensate\":606,\"engines\":607,\"popular\":608,\"tools\":609,\"durable\":610,\"apache\":611,\"airflow\":612,\"pipelines\":613,\"kubernetes\":614,\"container\":615,\"step\":616,\"functions\":617,\"aws\":618,\"serverless\":619,\"clear\":620,\"know\":621,\"rollback\":622,\"visibility\":623,\"timeout\":624,\"wait\":625,\"forever\":626,\"compatibility\":627},{},[],[]]",
|
|
3
|
+
"sectionMap": [
|
|
4
|
+
[
|
|
5
|
+
0,
|
|
6
|
+
{
|
|
7
|
+
"sectionId": "7af8c1a9f31c-configuration-management",
|
|
8
|
+
"documentPath": "configuration-management.md",
|
|
9
|
+
"heading": "Configuration Management"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
[
|
|
13
|
+
1,
|
|
14
|
+
{
|
|
15
|
+
"sectionId": "7af8c1a9f31c-overview",
|
|
16
|
+
"documentPath": "configuration-management.md",
|
|
17
|
+
"heading": "Overview"
|
|
18
|
+
}
|
|
19
|
+
],
|
|
20
|
+
[
|
|
21
|
+
2,
|
|
22
|
+
{
|
|
23
|
+
"sectionId": "7af8c1a9f31c-core-principles",
|
|
24
|
+
"documentPath": "configuration-management.md",
|
|
25
|
+
"heading": "Core Principles"
|
|
26
|
+
}
|
|
27
|
+
],
|
|
28
|
+
[
|
|
29
|
+
3,
|
|
30
|
+
{
|
|
31
|
+
"sectionId": "7af8c1a9f31c-infrastructure-as-code",
|
|
32
|
+
"documentPath": "configuration-management.md",
|
|
33
|
+
"heading": "Infrastructure as Code"
|
|
34
|
+
}
|
|
35
|
+
],
|
|
36
|
+
[
|
|
37
|
+
4,
|
|
38
|
+
{
|
|
39
|
+
"sectionId": "7af8c1a9f31c-separation-of-concerns",
|
|
40
|
+
"documentPath": "configuration-management.md",
|
|
41
|
+
"heading": "Separation of Concerns"
|
|
42
|
+
}
|
|
43
|
+
],
|
|
44
|
+
[
|
|
45
|
+
5,
|
|
46
|
+
{
|
|
47
|
+
"sectionId": "7af8c1a9f31c-configuration-sources",
|
|
48
|
+
"documentPath": "configuration-management.md",
|
|
49
|
+
"heading": "Configuration Sources"
|
|
50
|
+
}
|
|
51
|
+
],
|
|
52
|
+
[
|
|
53
|
+
6,
|
|
54
|
+
{
|
|
55
|
+
"sectionId": "7af8c1a9f31c-hierarchy-of-configuration",
|
|
56
|
+
"documentPath": "configuration-management.md",
|
|
57
|
+
"heading": "Hierarchy of Configuration"
|
|
58
|
+
}
|
|
59
|
+
],
|
|
60
|
+
[
|
|
61
|
+
7,
|
|
62
|
+
{
|
|
63
|
+
"sectionId": "7af8c1a9f31c-configuration-file-formats",
|
|
64
|
+
"documentPath": "configuration-management.md",
|
|
65
|
+
"heading": "Configuration File Formats"
|
|
66
|
+
}
|
|
67
|
+
],
|
|
68
|
+
[
|
|
69
|
+
8,
|
|
70
|
+
{
|
|
71
|
+
"sectionId": "7af8c1a9f31c-implementation",
|
|
72
|
+
"documentPath": "configuration-management.md",
|
|
73
|
+
"heading": "Implementation"
|
|
74
|
+
}
|
|
75
|
+
],
|
|
76
|
+
[
|
|
77
|
+
9,
|
|
78
|
+
{
|
|
79
|
+
"sectionId": "7af8c1a9f31c-best-practices",
|
|
80
|
+
"documentPath": "configuration-management.md",
|
|
81
|
+
"heading": "Best Practices"
|
|
82
|
+
}
|
|
83
|
+
],
|
|
84
|
+
[
|
|
85
|
+
10,
|
|
86
|
+
{
|
|
87
|
+
"sectionId": "7af8c1a9f31c-common-patterns",
|
|
88
|
+
"documentPath": "configuration-management.md",
|
|
89
|
+
"heading": "Common Patterns"
|
|
90
|
+
}
|
|
91
|
+
],
|
|
92
|
+
[
|
|
93
|
+
11,
|
|
94
|
+
{
|
|
95
|
+
"sectionId": "7af8c1a9f31c-feature-flags",
|
|
96
|
+
"documentPath": "configuration-management.md",
|
|
97
|
+
"heading": "Feature Flags"
|
|
98
|
+
}
|
|
99
|
+
],
|
|
100
|
+
[
|
|
101
|
+
12,
|
|
102
|
+
{
|
|
103
|
+
"sectionId": "7af8c1a9f31c-environment-specific-configuration",
|
|
104
|
+
"documentPath": "configuration-management.md",
|
|
105
|
+
"heading": "Environment-Specific Configuration"
|
|
106
|
+
}
|
|
107
|
+
],
|
|
108
|
+
[
|
|
109
|
+
13,
|
|
110
|
+
{
|
|
111
|
+
"sectionId": "c7a87467b534-distributed-systems-architecture",
|
|
112
|
+
"documentPath": "distributed-systems.md",
|
|
113
|
+
"heading": "Distributed Systems Architecture"
|
|
114
|
+
}
|
|
115
|
+
],
|
|
116
|
+
[
|
|
117
|
+
14,
|
|
118
|
+
{
|
|
119
|
+
"sectionId": "c7a87467b534-what-are-distributed-systems",
|
|
120
|
+
"documentPath": "distributed-systems.md",
|
|
121
|
+
"heading": "What Are Distributed Systems?"
|
|
122
|
+
}
|
|
123
|
+
],
|
|
124
|
+
[
|
|
125
|
+
15,
|
|
126
|
+
{
|
|
127
|
+
"sectionId": "c7a87467b534-key-challenges",
|
|
128
|
+
"documentPath": "distributed-systems.md",
|
|
129
|
+
"heading": "Key Challenges"
|
|
130
|
+
}
|
|
131
|
+
],
|
|
132
|
+
[
|
|
133
|
+
16,
|
|
134
|
+
{
|
|
135
|
+
"sectionId": "c7a87467b534-network-partitions",
|
|
136
|
+
"documentPath": "distributed-systems.md",
|
|
137
|
+
"heading": "Network Partitions"
|
|
138
|
+
}
|
|
139
|
+
],
|
|
140
|
+
[
|
|
141
|
+
17,
|
|
142
|
+
{
|
|
143
|
+
"sectionId": "c7a87467b534-consistency-vs-availability",
|
|
144
|
+
"documentPath": "distributed-systems.md",
|
|
145
|
+
"heading": "Consistency vs Availability"
|
|
146
|
+
}
|
|
147
|
+
],
|
|
148
|
+
[
|
|
149
|
+
18,
|
|
150
|
+
{
|
|
151
|
+
"sectionId": "c7a87467b534-clock-synchronization",
|
|
152
|
+
"documentPath": "distributed-systems.md",
|
|
153
|
+
"heading": "Clock Synchronization"
|
|
154
|
+
}
|
|
155
|
+
],
|
|
156
|
+
[
|
|
157
|
+
19,
|
|
158
|
+
{
|
|
159
|
+
"sectionId": "c7a87467b534-design-patterns",
|
|
160
|
+
"documentPath": "distributed-systems.md",
|
|
161
|
+
"heading": "Design Patterns"
|
|
162
|
+
}
|
|
163
|
+
],
|
|
164
|
+
[
|
|
165
|
+
20,
|
|
166
|
+
{
|
|
167
|
+
"sectionId": "c7a87467b534-service-discovery",
|
|
168
|
+
"documentPath": "distributed-systems.md",
|
|
169
|
+
"heading": "Service Discovery"
|
|
170
|
+
}
|
|
171
|
+
],
|
|
172
|
+
[
|
|
173
|
+
21,
|
|
174
|
+
{
|
|
175
|
+
"sectionId": "c7a87467b534-circuit-breakers",
|
|
176
|
+
"documentPath": "distributed-systems.md",
|
|
177
|
+
"heading": "Circuit Breakers"
|
|
178
|
+
}
|
|
179
|
+
],
|
|
180
|
+
[
|
|
181
|
+
22,
|
|
182
|
+
{
|
|
183
|
+
"sectionId": "c7a87467b534-event-sourcing",
|
|
184
|
+
"documentPath": "distributed-systems.md",
|
|
185
|
+
"heading": "Event Sourcing"
|
|
186
|
+
}
|
|
187
|
+
],
|
|
188
|
+
[
|
|
189
|
+
23,
|
|
190
|
+
{
|
|
191
|
+
"sectionId": "c7a87467b534-communication-patterns",
|
|
192
|
+
"documentPath": "distributed-systems.md",
|
|
193
|
+
"heading": "Communication Patterns"
|
|
194
|
+
}
|
|
195
|
+
],
|
|
196
|
+
[
|
|
197
|
+
24,
|
|
198
|
+
{
|
|
199
|
+
"sectionId": "c7a87467b534-synchronous-request-response",
|
|
200
|
+
"documentPath": "distributed-systems.md",
|
|
201
|
+
"heading": "Synchronous (Request-Response)"
|
|
202
|
+
}
|
|
203
|
+
],
|
|
204
|
+
[
|
|
205
|
+
25,
|
|
206
|
+
{
|
|
207
|
+
"sectionId": "c7a87467b534-asynchronous-message-based",
|
|
208
|
+
"documentPath": "distributed-systems.md",
|
|
209
|
+
"heading": "Asynchronous (Message-Based)"
|
|
210
|
+
}
|
|
211
|
+
],
|
|
212
|
+
[
|
|
213
|
+
26,
|
|
214
|
+
{
|
|
215
|
+
"sectionId": "c7a87467b534-best-practices",
|
|
216
|
+
"documentPath": "distributed-systems.md",
|
|
217
|
+
"heading": "Best Practices"
|
|
218
|
+
}
|
|
219
|
+
],
|
|
220
|
+
[
|
|
221
|
+
27,
|
|
222
|
+
{
|
|
223
|
+
"sectionId": "94adf3c4c1b9-error-handling-patterns",
|
|
224
|
+
"documentPath": "error-handling.md",
|
|
225
|
+
"heading": "Error Handling Patterns"
|
|
226
|
+
}
|
|
227
|
+
],
|
|
228
|
+
[
|
|
229
|
+
28,
|
|
230
|
+
{
|
|
231
|
+
"sectionId": "94adf3c4c1b9-introduction-to-error-handling",
|
|
232
|
+
"documentPath": "error-handling.md",
|
|
233
|
+
"heading": "Introduction to Error Handling"
|
|
234
|
+
}
|
|
235
|
+
],
|
|
236
|
+
[
|
|
237
|
+
29,
|
|
238
|
+
{
|
|
239
|
+
"sectionId": "94adf3c4c1b9-error-types",
|
|
240
|
+
"documentPath": "error-handling.md",
|
|
241
|
+
"heading": "Error Types"
|
|
242
|
+
}
|
|
243
|
+
],
|
|
244
|
+
[
|
|
245
|
+
30,
|
|
246
|
+
{
|
|
247
|
+
"sectionId": "94adf3c4c1b9-operational-errors",
|
|
248
|
+
"documentPath": "error-handling.md",
|
|
249
|
+
"heading": "Operational Errors"
|
|
250
|
+
}
|
|
251
|
+
],
|
|
252
|
+
[
|
|
253
|
+
31,
|
|
254
|
+
{
|
|
255
|
+
"sectionId": "94adf3c4c1b9-programming-errors",
|
|
256
|
+
"documentPath": "error-handling.md",
|
|
257
|
+
"heading": "Programming Errors"
|
|
258
|
+
}
|
|
259
|
+
],
|
|
260
|
+
[
|
|
261
|
+
32,
|
|
262
|
+
{
|
|
263
|
+
"sectionId": "94adf3c4c1b9-handling-strategies",
|
|
264
|
+
"documentPath": "error-handling.md",
|
|
265
|
+
"heading": "Handling Strategies"
|
|
266
|
+
}
|
|
267
|
+
],
|
|
268
|
+
[
|
|
269
|
+
33,
|
|
270
|
+
{
|
|
271
|
+
"sectionId": "94adf3c4c1b9-try-catch-blocks",
|
|
272
|
+
"documentPath": "error-handling.md",
|
|
273
|
+
"heading": "Try-Catch Blocks"
|
|
274
|
+
}
|
|
275
|
+
],
|
|
276
|
+
[
|
|
277
|
+
34,
|
|
278
|
+
{
|
|
279
|
+
"sectionId": "94adf3c4c1b9-result-types",
|
|
280
|
+
"documentPath": "error-handling.md",
|
|
281
|
+
"heading": "Result Types"
|
|
282
|
+
}
|
|
283
|
+
],
|
|
284
|
+
[
|
|
285
|
+
35,
|
|
286
|
+
{
|
|
287
|
+
"sectionId": "94adf3c4c1b9-error-boundaries",
|
|
288
|
+
"documentPath": "error-handling.md",
|
|
289
|
+
"heading": "Error Boundaries"
|
|
290
|
+
}
|
|
291
|
+
],
|
|
292
|
+
[
|
|
293
|
+
36,
|
|
294
|
+
{
|
|
295
|
+
"sectionId": "94adf3c4c1b9-best-practices",
|
|
296
|
+
"documentPath": "error-handling.md",
|
|
297
|
+
"heading": "Best Practices"
|
|
298
|
+
}
|
|
299
|
+
],
|
|
300
|
+
[
|
|
301
|
+
37,
|
|
302
|
+
{
|
|
303
|
+
"sectionId": "94adf3c4c1b9-error-handling-anti-patterns",
|
|
304
|
+
"documentPath": "error-handling.md",
|
|
305
|
+
"heading": "Error Handling Anti-Patterns"
|
|
306
|
+
}
|
|
307
|
+
],
|
|
308
|
+
[
|
|
309
|
+
38,
|
|
310
|
+
{
|
|
311
|
+
"sectionId": "bd3d01a0b08c-failure-automation",
|
|
312
|
+
"documentPath": "failure-automation.md",
|
|
313
|
+
"heading": "Failure Automation"
|
|
314
|
+
}
|
|
315
|
+
],
|
|
316
|
+
[
|
|
317
|
+
39,
|
|
318
|
+
{
|
|
319
|
+
"sectionId": "bd3d01a0b08c-overview",
|
|
320
|
+
"documentPath": "failure-automation.md",
|
|
321
|
+
"heading": "Overview"
|
|
322
|
+
}
|
|
323
|
+
],
|
|
324
|
+
[
|
|
325
|
+
40,
|
|
326
|
+
{
|
|
327
|
+
"sectionId": "bd3d01a0b08c-core-concepts",
|
|
328
|
+
"documentPath": "failure-automation.md",
|
|
329
|
+
"heading": "Core Concepts"
|
|
330
|
+
}
|
|
331
|
+
],
|
|
332
|
+
[
|
|
333
|
+
41,
|
|
334
|
+
{
|
|
335
|
+
"sectionId": "bd3d01a0b08c-automated-failure-detection",
|
|
336
|
+
"documentPath": "failure-automation.md",
|
|
337
|
+
"heading": "Automated Failure Detection"
|
|
338
|
+
}
|
|
339
|
+
],
|
|
340
|
+
[
|
|
341
|
+
42,
|
|
342
|
+
{
|
|
343
|
+
"sectionId": "bd3d01a0b08c-automatic-recovery",
|
|
344
|
+
"documentPath": "failure-automation.md",
|
|
345
|
+
"heading": "Automatic Recovery"
|
|
346
|
+
}
|
|
347
|
+
],
|
|
348
|
+
[
|
|
349
|
+
43,
|
|
350
|
+
{
|
|
351
|
+
"sectionId": "bd3d01a0b08c-failure-isolation",
|
|
352
|
+
"documentPath": "failure-automation.md",
|
|
353
|
+
"heading": "Failure Isolation"
|
|
354
|
+
}
|
|
355
|
+
],
|
|
356
|
+
[
|
|
357
|
+
44,
|
|
358
|
+
{
|
|
359
|
+
"sectionId": "bd3d01a0b08c-best-practices",
|
|
360
|
+
"documentPath": "failure-automation.md",
|
|
361
|
+
"heading": "Best Practices"
|
|
362
|
+
}
|
|
363
|
+
],
|
|
364
|
+
[
|
|
365
|
+
45,
|
|
366
|
+
{
|
|
367
|
+
"sectionId": "bd3d01a0b08c-implementation-example",
|
|
368
|
+
"documentPath": "failure-automation.md",
|
|
369
|
+
"heading": "Implementation Example"
|
|
370
|
+
}
|
|
371
|
+
],
|
|
372
|
+
[
|
|
373
|
+
46,
|
|
374
|
+
{
|
|
375
|
+
"sectionId": "bd3d01a0b08c-related-topics",
|
|
376
|
+
"documentPath": "failure-automation.md",
|
|
377
|
+
"heading": "Related Topics"
|
|
378
|
+
}
|
|
379
|
+
],
|
|
380
|
+
[
|
|
381
|
+
47,
|
|
382
|
+
{
|
|
383
|
+
"sectionId": "f686caa5e0ff-job-context",
|
|
384
|
+
"documentPath": "job-context.md",
|
|
385
|
+
"heading": "Job Context"
|
|
386
|
+
}
|
|
387
|
+
],
|
|
388
|
+
[
|
|
389
|
+
48,
|
|
390
|
+
{
|
|
391
|
+
"sectionId": "f686caa5e0ff-what-is-job-context",
|
|
392
|
+
"documentPath": "job-context.md",
|
|
393
|
+
"heading": "What is Job Context?"
|
|
394
|
+
}
|
|
395
|
+
],
|
|
396
|
+
[
|
|
397
|
+
49,
|
|
398
|
+
{
|
|
399
|
+
"sectionId": "f686caa5e0ff-components-of-job-context",
|
|
400
|
+
"documentPath": "job-context.md",
|
|
401
|
+
"heading": "Components of Job Context"
|
|
402
|
+
}
|
|
403
|
+
],
|
|
404
|
+
[
|
|
405
|
+
50,
|
|
406
|
+
{
|
|
407
|
+
"sectionId": "f686caa5e0ff-runtime-environment",
|
|
408
|
+
"documentPath": "job-context.md",
|
|
409
|
+
"heading": "Runtime Environment"
|
|
410
|
+
}
|
|
411
|
+
],
|
|
412
|
+
[
|
|
413
|
+
51,
|
|
414
|
+
{
|
|
415
|
+
"sectionId": "f686caa5e0ff-execution-metadata",
|
|
416
|
+
"documentPath": "job-context.md",
|
|
417
|
+
"heading": "Execution Metadata"
|
|
418
|
+
}
|
|
419
|
+
],
|
|
420
|
+
[
|
|
421
|
+
52,
|
|
422
|
+
{
|
|
423
|
+
"sectionId": "f686caa5e0ff-state-information",
|
|
424
|
+
"documentPath": "job-context.md",
|
|
425
|
+
"heading": "State Information"
|
|
426
|
+
}
|
|
427
|
+
],
|
|
428
|
+
[
|
|
429
|
+
53,
|
|
430
|
+
{
|
|
431
|
+
"sectionId": "f686caa5e0ff-passing-context-between-jobs",
|
|
432
|
+
"documentPath": "job-context.md",
|
|
433
|
+
"heading": "Passing Context Between Jobs"
|
|
434
|
+
}
|
|
435
|
+
],
|
|
436
|
+
[
|
|
437
|
+
54,
|
|
438
|
+
{
|
|
439
|
+
"sectionId": "f686caa5e0ff-best-practices",
|
|
440
|
+
"documentPath": "job-context.md",
|
|
441
|
+
"heading": "Best Practices"
|
|
442
|
+
}
|
|
443
|
+
],
|
|
444
|
+
[
|
|
445
|
+
55,
|
|
446
|
+
{
|
|
447
|
+
"sectionId": "f686caa5e0ff-use-cases",
|
|
448
|
+
"documentPath": "job-context.md",
|
|
449
|
+
"heading": "Use Cases"
|
|
450
|
+
}
|
|
451
|
+
],
|
|
452
|
+
[
|
|
453
|
+
56,
|
|
454
|
+
{
|
|
455
|
+
"sectionId": "0daacc6a0c05-process-orchestration",
|
|
456
|
+
"documentPath": "process-orchestration.md",
|
|
457
|
+
"heading": "Process Orchestration"
|
|
458
|
+
}
|
|
459
|
+
],
|
|
460
|
+
[
|
|
461
|
+
57,
|
|
462
|
+
{
|
|
463
|
+
"sectionId": "0daacc6a0c05-introduction",
|
|
464
|
+
"documentPath": "process-orchestration.md",
|
|
465
|
+
"heading": "Introduction"
|
|
466
|
+
}
|
|
467
|
+
],
|
|
468
|
+
[
|
|
469
|
+
58,
|
|
470
|
+
{
|
|
471
|
+
"sectionId": "0daacc6a0c05-orchestration-vs-choreography",
|
|
472
|
+
"documentPath": "process-orchestration.md",
|
|
473
|
+
"heading": "Orchestration vs Choreography"
|
|
474
|
+
}
|
|
475
|
+
],
|
|
476
|
+
[
|
|
477
|
+
59,
|
|
478
|
+
{
|
|
479
|
+
"sectionId": "0daacc6a0c05-orchestration-central-control",
|
|
480
|
+
"documentPath": "process-orchestration.md",
|
|
481
|
+
"heading": "Orchestration (Central Control)"
|
|
482
|
+
}
|
|
483
|
+
],
|
|
484
|
+
[
|
|
485
|
+
60,
|
|
486
|
+
{
|
|
487
|
+
"sectionId": "0daacc6a0c05-choreography-distributed",
|
|
488
|
+
"documentPath": "process-orchestration.md",
|
|
489
|
+
"heading": "Choreography (Distributed)"
|
|
490
|
+
}
|
|
491
|
+
],
|
|
492
|
+
[
|
|
493
|
+
61,
|
|
494
|
+
{
|
|
495
|
+
"sectionId": "0daacc6a0c05-orchestration-patterns",
|
|
496
|
+
"documentPath": "process-orchestration.md",
|
|
497
|
+
"heading": "Orchestration Patterns"
|
|
498
|
+
}
|
|
499
|
+
],
|
|
500
|
+
[
|
|
501
|
+
62,
|
|
502
|
+
{
|
|
503
|
+
"sectionId": "0daacc6a0c05-sequential-execution",
|
|
504
|
+
"documentPath": "process-orchestration.md",
|
|
505
|
+
"heading": "Sequential Execution"
|
|
506
|
+
}
|
|
507
|
+
],
|
|
508
|
+
[
|
|
509
|
+
63,
|
|
510
|
+
{
|
|
511
|
+
"sectionId": "0daacc6a0c05-parallel-execution",
|
|
512
|
+
"documentPath": "process-orchestration.md",
|
|
513
|
+
"heading": "Parallel Execution"
|
|
514
|
+
}
|
|
515
|
+
],
|
|
516
|
+
[
|
|
517
|
+
64,
|
|
518
|
+
{
|
|
519
|
+
"sectionId": "0daacc6a0c05-saga-pattern",
|
|
520
|
+
"documentPath": "process-orchestration.md",
|
|
521
|
+
"heading": "Saga Pattern"
|
|
522
|
+
}
|
|
523
|
+
],
|
|
524
|
+
[
|
|
525
|
+
65,
|
|
526
|
+
{
|
|
527
|
+
"sectionId": "0daacc6a0c05-workflow-engines",
|
|
528
|
+
"documentPath": "process-orchestration.md",
|
|
529
|
+
"heading": "Workflow Engines"
|
|
530
|
+
}
|
|
531
|
+
],
|
|
532
|
+
[
|
|
533
|
+
66,
|
|
534
|
+
{
|
|
535
|
+
"sectionId": "0daacc6a0c05-best-practices",
|
|
536
|
+
"documentPath": "process-orchestration.md",
|
|
537
|
+
"heading": "Best Practices"
|
|
538
|
+
}
|
|
539
|
+
]
|
|
540
|
+
]
|
|
541
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 1,
|
|
3
|
+
"rootPath": "/Users/alphab/Dev/LLM/DEV/mdcontext/worktrees/nancy-ALP-34/src/__tests__/fixtures/semantic-search/multi-word-corpus",
|
|
4
|
+
"include": ["**/*.md", "**/*.mdx"],
|
|
5
|
+
"exclude": ["**/node_modules/**", "**/.*/**"],
|
|
6
|
+
"createdAt": "2026-01-25T16:16:55.867Z",
|
|
7
|
+
"updatedAt": "2026-01-25T16:16:55.868Z"
|
|
8
|
+
}
|
|
Binary file
|