velm 0.1.2__py3-none-any.whl
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.
- velm/__init__.py +17 -0
- velm/__main__.py +24 -0
- velm/archetypes/__init__.py +10 -0
- velm/archetypes/genesis/ai-agent-swarm.scaffold +117 -0
- velm/archetypes/genesis/astro-basic.scaffold +76 -0
- velm/archetypes/genesis/chrome-extension.scaffold +101 -0
- velm/archetypes/genesis/cli-tool.scaffold +198 -0
- velm/archetypes/genesis/data-science-crucible.scaffold +96 -0
- velm/archetypes/genesis/docs-mkdocs.scaffold +123 -0
- velm/archetypes/genesis/electron-forge.scaffold +103 -0
- velm/archetypes/genesis/express-api.scaffold +163 -0
- velm/archetypes/genesis/fastapi-service.scaffold +343 -0
- velm/archetypes/genesis/fastapi-sqlalchemy.scaffold +130 -0
- velm/archetypes/genesis/fullstack-monorepo.scaffold +200 -0
- velm/archetypes/genesis/generic-container.scaffold +188 -0
- velm/archetypes/genesis/generic-script.scaffold +48 -0
- velm/archetypes/genesis/generic.scaffold +33 -0
- velm/archetypes/genesis/gnostic-library.scaffold +79 -0
- velm/archetypes/genesis/gnostic-symphony.scaffold +77 -0
- velm/archetypes/genesis/go-cli.scaffold +127 -0
- velm/archetypes/genesis/graphene-api.scaffold +86 -0
- velm/archetypes/genesis/grpc-microservice.scaffold +103 -0
- velm/archetypes/genesis/langchain-nexus.scaffold +91 -0
- velm/archetypes/genesis/monorepo-citadel.scaffold +0 -0
- velm/archetypes/genesis/new-artisan.scaffold +42 -0
- velm/archetypes/genesis/nextjs-fortress.scaffold +120 -0
- velm/archetypes/genesis/node-basic.scaffold +130 -0
- velm/archetypes/genesis/node.scaffold +63 -0
- velm/archetypes/genesis/poetry-basic.scaffold +114 -0
- velm/archetypes/genesis/python-basic.scaffold +115 -0
- velm/archetypes/genesis/python-cli.scaffold +124 -0
- velm/archetypes/genesis/python-universal.scaffold +159 -0
- velm/archetypes/genesis/react-vite.scaffold +198 -0
- velm/archetypes/genesis/rust-lib.scaffold +145 -0
- velm/archetypes/genesis/serverless-synapse.scaffold +61 -0
- velm/artisans/TODO.txt +4 -0
- velm/artisans/__init__.py +0 -0
- velm/artisans/adopt.py +194 -0
- velm/artisans/aether/__init__.py +4 -0
- velm/artisans/aether/analyzer.py +56 -0
- velm/artisans/aether/artisan.py +40 -0
- velm/artisans/aether/mesh.py +27 -0
- velm/artisans/agent/Act/__init__.py +0 -0
- velm/artisans/agent/Act/executor.py +83 -0
- velm/artisans/agent/Act/tools/__init__.py +0 -0
- velm/artisans/agent/Act/tools/base.py +25 -0
- velm/artisans/agent/Act/tools/file_system.py +144 -0
- velm/artisans/agent/Act/tools/git.py +258 -0
- velm/artisans/agent/Act/tools/gnostic_tools.py +236 -0
- velm/artisans/agent/Act/tools/testing.py +42 -0
- velm/artisans/agent/Memory/__init__.py +0 -0
- velm/artisans/agent/Memory/long_term.py +187 -0
- velm/artisans/agent/Memory/short_term.py +33 -0
- velm/artisans/agent/Perceive/__init__.py +1 -0
- velm/artisans/agent/Perceive/perceiver.py +41 -0
- velm/artisans/agent/Plan/__init__.py +1 -0
- velm/artisans/agent/Plan/planner.py +61 -0
- velm/artisans/agent/Plan/prompt_forge.py +146 -0
- velm/artisans/agent/Verify/__init__.py +0 -0
- velm/artisans/agent/Verify/critic.py +177 -0
- velm/artisans/agent/__init__.py +3 -0
- velm/artisans/agent/agent.scaffold +32 -0
- velm/artisans/agent/artisan.py +174 -0
- velm/artisans/agent/contracts.py +42 -0
- velm/artisans/agent/engine.py +208 -0
- velm/artisans/akasha/__init__.py +0 -0
- velm/artisans/akasha/artisan.py +68 -0
- velm/artisans/alias/__init__.py +3 -0
- velm/artisans/alias/artisan.py +69 -0
- velm/artisans/analyze/__init__.py +13 -0
- velm/artisans/analyze/artisan.py +457 -0
- velm/artisans/analyze/completion_codex/__init__.py +11 -0
- velm/artisans/analyze/completion_codex/conductor.py +213 -0
- velm/artisans/analyze/completion_codex/scaffold.py +615 -0
- velm/artisans/analyze/completion_codex/symphony.py +275 -0
- velm/artisans/analyze/core/context.py +107 -0
- velm/artisans/analyze/core/shadow.py +57 -0
- velm/artisans/analyze/divination/grammar.py +145 -0
- velm/artisans/analyze/graph_generator.py +57 -0
- velm/artisans/analyze/orchestrator.py +138 -0
- velm/artisans/analyze/processing/base.py +13 -0
- velm/artisans/analyze/processing/foreign.py +67 -0
- velm/artisans/analyze/processing/scaffold.py +319 -0
- velm/artisans/analyze/redemption/healer.py +82 -0
- velm/artisans/analyze/reporting/console.py +95 -0
- velm/artisans/analyze/reporting/diagnostics.py +169 -0
- velm/artisans/analyze/reporting/privacy.py +86 -0
- velm/artisans/analyze/rites/inquisition.py +35 -0
- velm/artisans/analyze/rites/prophecy.py +74 -0
- velm/artisans/analyze/rites/symbolism.py +62 -0
- velm/artisans/analyze/rites/visualization.py +146 -0
- velm/artisans/analyze/static_inquisitor/__init__.py +5 -0
- velm/artisans/analyze/static_inquisitor/detectors/atomic.py +325 -0
- velm/artisans/analyze/static_inquisitor/detectors/base.py +116 -0
- velm/artisans/analyze/static_inquisitor/detectors/paths.py +184 -0
- velm/artisans/analyze/static_inquisitor/detectors/variables.py +202 -0
- velm/artisans/analyze/static_inquisitor/inquisitor.py +101 -0
- velm/artisans/analyze/structure_visualizer.py +294 -0
- velm/artisans/arch.py +281 -0
- velm/artisans/archetypes/artisan.py +242 -0
- velm/artisans/architect/__init__.py +13 -0
- velm/artisans/architect/artisan.py +241 -0
- velm/artisans/architect/contracts.py +19 -0
- velm/artisans/architect/inquest.py +58 -0
- velm/artisans/architect/planner.py +85 -0
- velm/artisans/astrolabe/__init__.py +4 -0
- velm/artisans/astrolabe/artisan.py +45 -0
- velm/artisans/astrolabe/tui.py +124 -0
- velm/artisans/audit/__init__.py +5 -0
- velm/artisans/audit/architectural_auditor.py +124 -0
- velm/artisans/audit/artisan.py +38 -0
- velm/artisans/audit/license_auditor.py +158 -0
- velm/artisans/babel/__init__.py +0 -0
- velm/artisans/babel/artisan.py +93 -0
- velm/artisans/beautify.py +250 -0
- velm/artisans/biome/__init__.py +5 -0
- velm/artisans/biome/analyst.py +102 -0
- velm/artisans/biome/artisan.py +55 -0
- velm/artisans/biome/template.py +298 -0
- velm/artisans/blame.py +334 -0
- velm/artisans/blueprint_add.py +200 -0
- velm/artisans/blueprint_optimize/__init__.py +2 -0
- velm/artisans/blueprint_optimize/artisan.py +105 -0
- velm/artisans/blueprint_optimize/biologist.py +115 -0
- velm/artisans/blueprint_remove.py +225 -0
- velm/artisans/bridge/__init__.py +3 -0
- velm/artisans/bridge/artisan.py +137 -0
- velm/artisans/canon/__init__.py +4 -0
- velm/artisans/canon/artisan.py +51 -0
- velm/artisans/canon/law.py +23 -0
- velm/artisans/changelog/artisan.py +137 -0
- velm/artisans/chaos_game/__init__.py +3 -0
- velm/artisans/chaos_game/artisan.py +93 -0
- velm/artisans/ci_optimize/__init__.py +2 -0
- velm/artisans/ci_optimize/artisan.py +97 -0
- velm/artisans/ci_optimize/engine.py +122 -0
- velm/artisans/cli_bridge/artisan.py +199 -0
- velm/artisans/codex/__init__.py +0 -0
- velm/artisans/codex/artisan.py +130 -0
- velm/artisans/completion_artisan/__init__.py +10 -0
- velm/artisans/completion_artisan/artisan.py +286 -0
- velm/artisans/completion_artisan/cartographer.py +424 -0
- velm/artisans/completion_artisan/grimoire/reader.py +164 -0
- velm/artisans/completion_artisan/grimoire/snippets/scaffold.jsonc +1728 -0
- velm/artisans/completion_artisan/grimoire/snippets/symphony.jsonc +1073 -0
- velm/artisans/completion_artisan/prophets/__init__.py +13 -0
- velm/artisans/completion_artisan/prophets/alchemist.py +205 -0
- velm/artisans/completion_artisan/prophets/base.py +133 -0
- velm/artisans/completion_artisan/prophets/canon.py +156 -0
- velm/artisans/completion_artisan/prophets/directives.py +242 -0
- velm/artisans/completion_artisan/prophets/snippets.py +24 -0
- velm/artisans/compose/__init__.py +14 -0
- velm/artisans/compose/artisan.py +198 -0
- velm/artisans/compose/parser.py +220 -0
- velm/artisans/configuration/__init__.py +2 -0
- velm/artisans/configuration/artisan.py +81 -0
- velm/artisans/conform.py +260 -0
- velm/artisans/create/__init__.py +13 -0
- velm/artisans/create/artisan.py +240 -0
- velm/artisans/create/builder.py +477 -0
- velm/artisans/create/create.scaffold +7 -0
- velm/artisans/create/safety.py +70 -0
- velm/artisans/daemon_artisan/__init__.py +14 -0
- velm/artisans/daemon_artisan/conductor.py +122 -0
- velm/artisans/daemon_artisan/contracts.py +23 -0
- velm/artisans/daemon_artisan/governance.py +22 -0
- velm/artisans/daemon_artisan/lifecycle.py +498 -0
- velm/artisans/daemon_artisan/telemetry.py +63 -0
- velm/artisans/data/__init__.py +0 -0
- velm/artisans/data/artisan.py +152 -0
- velm/artisans/definition/__init__.py +17 -0
- velm/artisans/definition/alchemist.py +48 -0
- velm/artisans/definition/hierophant.py +138 -0
- velm/artisans/definition/oracle.py +148 -0
- velm/artisans/deploy/__init__.py +14 -0
- velm/artisans/deploy/artisan.py +237 -0
- velm/artisans/distill/__init__.py +15 -0
- velm/artisans/distill/artisan.py +407 -0
- velm/artisans/distill/celestial.py +55 -0
- velm/artisans/distill/codex_of_anti_patterns.py +54 -0
- velm/artisans/distill/core/__init__.py +14 -0
- velm/artisans/distill/core/analyzer/architectural.py +93 -0
- velm/artisans/distill/core/assembler/__init__.py +14 -0
- velm/artisans/distill/core/assembler/budget.py +37 -0
- velm/artisans/distill/core/assembler/content/__init__.py +14 -0
- velm/artisans/distill/core/assembler/content/artisans/__init__.py +19 -0
- velm/artisans/distill/core/assembler/content/artisans/annotator.py +102 -0
- velm/artisans/distill/core/assembler/content/artisans/formatter.py +352 -0
- velm/artisans/distill/core/assembler/content/artisans/reader.py +35 -0
- velm/artisans/distill/core/assembler/content/artisans/sanitizer.py +39 -0
- velm/artisans/distill/core/assembler/content/artisans/summarizer.py +60 -0
- velm/artisans/distill/core/assembler/content/artisans/transformer.py +46 -0
- velm/artisans/distill/core/assembler/content/contracts.py +35 -0
- velm/artisans/distill/core/assembler/content/facade.py +84 -0
- velm/artisans/distill/core/assembler/content/orchestrator.py +96 -0
- velm/artisans/distill/core/assembler/contracts.py +25 -0
- velm/artisans/distill/core/assembler/engine.py +212 -0
- velm/artisans/distill/core/assembler/header.py +84 -0
- velm/artisans/distill/core/assembler/seer.py +70 -0
- velm/artisans/distill/core/causality/__init__.py +15 -0
- velm/artisans/distill/core/causality/constants.py +30 -0
- velm/artisans/distill/core/causality/contracts.py +57 -0
- velm/artisans/distill/core/causality/engine.py +77 -0
- velm/artisans/distill/core/causality/graph_walker.py +138 -0
- velm/artisans/distill/core/consts.py +47 -0
- velm/artisans/distill/core/contracts.py +89 -0
- velm/artisans/distill/core/forensics/__init__.py +7 -0
- velm/artisans/distill/core/forensics/contracts.py +36 -0
- velm/artisans/distill/core/forensics/detectives.py +115 -0
- velm/artisans/distill/core/forensics/engine.py +121 -0
- velm/artisans/distill/core/forensics/filters.py +36 -0
- velm/artisans/distill/core/forensics/grimoire.py +48 -0
- velm/artisans/distill/core/governance/__init__.py +22 -0
- velm/artisans/distill/core/governance/contracts.py +51 -0
- velm/artisans/distill/core/governance/engine.py +273 -0
- velm/artisans/distill/core/governance/estimator.py +76 -0
- velm/artisans/distill/core/governance/policies.py +52 -0
- velm/artisans/distill/core/inquisitor/architectural.py +58 -0
- velm/artisans/distill/core/inquisitor/config.py +86 -0
- velm/artisans/distill/core/inquisitor/temporal.py +105 -0
- velm/artisans/distill/core/inquisitor/testing.py +59 -0
- velm/artisans/distill/core/oracle/__init__.py +18 -0
- velm/artisans/distill/core/oracle/adjudicator.py +113 -0
- velm/artisans/distill/core/oracle/contracts.py +66 -0
- velm/artisans/distill/core/oracle/diviner.py +222 -0
- velm/artisans/distill/core/oracle/engine.py +138 -0
- velm/artisans/distill/core/oracle/perceiver.py +121 -0
- velm/artisans/distill/core/oracle/propagator.py +304 -0
- velm/artisans/distill/core/oracle/reviewer.py +124 -0
- velm/artisans/distill/core/oracle/scribe/__init__.py +8 -0
- velm/artisans/distill/core/oracle/scribe/content.py +121 -0
- velm/artisans/distill/core/oracle/scribe/critique.py +57 -0
- velm/artisans/distill/core/oracle/scribe/facade.py +87 -0
- velm/artisans/distill/core/oracle/scribe/header.py +119 -0
- velm/artisans/distill/core/oracle/scribe/manifest.py +67 -0
- velm/artisans/distill/core/oracle/scribe/topology.py +54 -0
- velm/artisans/distill/core/scribes/mermaid_scribe.py +65 -0
- velm/artisans/distill/core/skeletonizer/__init__.py +7 -0
- velm/artisans/distill/core/skeletonizer/contracts.py +30 -0
- velm/artisans/distill/core/skeletonizer/engine.py +84 -0
- velm/artisans/distill/core/skeletonizer/utils.py +117 -0
- velm/artisans/distill/core/skeletonizer/visitors/base.py +15 -0
- velm/artisans/distill/core/skeletonizer/visitors/c_style.py +173 -0
- velm/artisans/distill/core/skeletonizer/visitors/python.py +170 -0
- velm/artisans/distill/core/skeletonizer/visitors/ruby.py +71 -0
- velm/artisans/distill/core/skeletonizer/visitors/web.py +57 -0
- velm/artisans/distill/core/slicer/__init__.py +15 -0
- velm/artisans/distill/core/slicer/contracts.py +76 -0
- velm/artisans/distill/core/slicer/engine.py +76 -0
- velm/artisans/distill/core/slicer/graph.py +95 -0
- velm/artisans/distill/core/slicer/languages/base.py +26 -0
- velm/artisans/distill/core/slicer/languages/python.py +87 -0
- velm/artisans/distill/core/slicer/weavers/__init__.py +4 -0
- velm/artisans/distill/core/slicer/weavers/base_strategy.py +28 -0
- velm/artisans/distill/core/slicer/weavers/contracts.py +21 -0
- velm/artisans/distill/core/slicer/weavers/facade.py +134 -0
- velm/artisans/distill/core/slicer/weavers/python_strategy.py +135 -0
- velm/artisans/distill/core/tracer/__init__.py +6 -0
- velm/artisans/distill/core/tracer/contracts.py +66 -0
- velm/artisans/distill/core/tracer/coverage_bridge.py +105 -0
- velm/artisans/distill/core/tracer/engine.py +170 -0
- velm/artisans/distill/core/tracer/probes/base.py +21 -0
- velm/artisans/distill/core/tracer/probes/python_probe.py +153 -0
- velm/artisans/distill/core/tracer/snapshot.py +58 -0
- velm/artisans/distill/core/tracer/symbolic.py +38 -0
- velm/artisans/distill/core/utils/__init__.py +1 -0
- velm/artisans/distill/core/utils/core.py +175 -0
- velm/artisans/distill/io.py +110 -0
- velm/artisans/distill/modes.py +81 -0
- velm/artisans/distill/resolution.py +185 -0
- velm/artisans/distill/scribes/dossier_scribe.py +196 -0
- velm/artisans/dream.py +41 -0
- velm/artisans/env_tools.py +298 -0
- velm/artisans/excise.py +213 -0
- velm/artisans/expose/__init__.py +3 -0
- velm/artisans/expose/artisan.py +64 -0
- velm/artisans/forge/__init__.py +3 -0
- velm/artisans/forge/artisan.py +117 -0
- velm/artisans/fortress/__init__.py +0 -0
- velm/artisans/fortress/artisan.py +86 -0
- velm/artisans/freeze_artisan.py +82 -0
- velm/artisans/fusion/__init__.py +3 -0
- velm/artisans/fusion/artisan.py +187 -0
- velm/artisans/garden/__init__.py +6 -0
- velm/artisans/garden/analyst.py +183 -0
- velm/artisans/garden/artisan.py +76 -0
- velm/artisans/garden/contracts.py +22 -0
- velm/artisans/garden/pruner.py +69 -0
- velm/artisans/genesis/__init__.py +6 -0
- velm/artisans/genesis/conductor.py +366 -0
- velm/artisans/genesis/materializer.py +514 -0
- velm/artisans/ghost_hunter/__init__.py +3 -0
- velm/artisans/ghost_hunter/artisan.py +106 -0
- velm/artisans/graph/__init__.py +3 -0
- velm/artisans/graph/architect.py +70 -0
- velm/artisans/graph/artisan.py +39 -0
- velm/artisans/graph/cartographer.py +275 -0
- velm/artisans/graph/layout.py +27 -0
- velm/artisans/gui/__init__.py +3 -0
- velm/artisans/gui/app.py +124 -0
- velm/artisans/gui/artisan.py +49 -0
- velm/artisans/guild/__init__.py +4 -0
- velm/artisans/guild/artisan.py +111 -0
- velm/artisans/guild/packer.py +33 -0
- velm/artisans/guild/registry.py +99 -0
- velm/artisans/harvest.py +206 -0
- velm/artisans/heal/__init__.py +6 -0
- velm/artisans/heal/artisan.py +306 -0
- velm/artisans/heal/contracts.py +74 -0
- velm/artisans/heal/healers/javascript_import_healer.py +150 -0
- velm/artisans/heal/healers/python_import_healer.py +149 -0
- velm/artisans/heal/healers/typescript_import_healer.py +165 -0
- velm/artisans/help.py +339 -0
- velm/artisans/history/__init__.py +15 -0
- velm/artisans/history/artisan.py +184 -0
- velm/artisans/history/contracts.py +80 -0
- velm/artisans/history/differ.py +248 -0
- velm/artisans/history/scribe.py +121 -0
- velm/artisans/history/tui.py +256 -0
- velm/artisans/hivemind/__init__.py +4 -0
- velm/artisans/hivemind/arena.py +174 -0
- velm/artisans/hivemind/artisan.py +66 -0
- velm/artisans/hivemind/contracts.py +36 -0
- velm/artisans/hivemind/grimoire.py +66 -0
- velm/artisans/holocron/__init__.py +4 -0
- velm/artisans/holocron/artisan.py +35 -0
- velm/artisans/holocron/contracts.py +21 -0
- velm/artisans/holocron/curator.py +63 -0
- velm/artisans/holocron/engine.py +154 -0
- velm/artisans/holocron/graph.py +209 -0
- velm/artisans/holocron/slicer.py +135 -0
- velm/artisans/holograph_artisan.py +98 -0
- velm/artisans/holographic/__init__.py +3 -0
- velm/artisans/holographic/artisan.py +59 -0
- velm/artisans/hover/__init__.py +16 -0
- velm/artisans/hover/canon.py +46 -0
- velm/artisans/hover/command_grimoire.py +1147 -0
- velm/artisans/hover/formatter.py +290 -0
- velm/artisans/hover/hierophant.py +457 -0
- velm/artisans/hover/hover_mentor/__init__.py +54 -0
- velm/artisans/hover/hover_mentor/grimoire.py +458 -0
- velm/artisans/hover/hover_mentor/inquisitor.py +68 -0
- velm/artisans/hover/hover_mentor/warden.py +51 -0
- velm/artisans/hover/perception.py +236 -0
- velm/artisans/ignore/artisan.py +70 -0
- velm/artisans/indexer/__init__.py +3 -0
- velm/artisans/indexer/artisan.py +50 -0
- velm/artisans/indexer/core/contracts.py +14 -0
- velm/artisans/indexer/core/engine.py +51 -0
- velm/artisans/indexer/languages/base.py +33 -0
- velm/artisans/indexer/languages/factory.py +25 -0
- velm/artisans/indexer/languages/go.py +13 -0
- velm/artisans/indexer/languages/java.py +13 -0
- velm/artisans/indexer/languages/javascript.py +17 -0
- velm/artisans/indexer/languages/python.py +14 -0
- velm/artisans/indexer/languages/ruby.py +13 -0
- velm/artisans/indexer/languages/rust.py +15 -0
- velm/artisans/init/__init__.py +12 -0
- velm/artisans/init/artisan.py +288 -0
- velm/artisans/init/manual.py +156 -0
- velm/artisans/initialize/artisan.py +262 -0
- velm/artisans/inspect/__init__.py +3 -0
- velm/artisans/inspect/artisan.py +643 -0
- velm/artisans/introspect/__init__.py +13 -0
- velm/artisans/introspect/conductor.py +80 -0
- velm/artisans/introspect/registry_scribe.py +109 -0
- velm/artisans/introspect/scaffold_scribe.py +348 -0
- velm/artisans/introspect/symphony_scribe.py +291 -0
- velm/artisans/introspect/ui_scribe.py +105 -0
- velm/artisans/isolate/__init__.py +3 -0
- velm/artisans/isolate/artisan.py +103 -0
- velm/artisans/lazarus/__init__.py +0 -0
- velm/artisans/lazarus/artisan.py +97 -0
- velm/artisans/lfg/artisan.py +60 -0
- velm/artisans/lint/__init__.py +13 -0
- velm/artisans/lint/artisan.py +117 -0
- velm/artisans/lint/contracts.py +130 -0
- velm/artisans/lint/engine.py +28 -0
- velm/artisans/lint/rules/base.py +37 -0
- velm/artisans/lint/rules/graph.py +118 -0
- velm/artisans/lint/rules/layers.py +67 -0
- velm/artisans/lint/rules/structural.py +75 -0
- velm/artisans/lint_blueprint/__init__.py +3 -0
- velm/artisans/lint_blueprint/artisan.py +71 -0
- velm/artisans/manifest.py +278 -0
- velm/artisans/matrix/__init__.py +3 -0
- velm/artisans/matrix/artisan.py +140 -0
- velm/artisans/mimic/__init__.py +4 -0
- velm/artisans/mimic/artisan.py +92 -0
- velm/artisans/mimic/generator.py +106 -0
- velm/artisans/mimic/reflector.py +64 -0
- velm/artisans/mock/__init__.py +3 -0
- velm/artisans/mock/artisan.py +75 -0
- velm/artisans/mri/__init__.py +3 -0
- velm/artisans/mri/artisan.py +120 -0
- velm/artisans/muse/__init__.py +3 -0
- velm/artisans/muse/analyst.py +103 -0
- velm/artisans/muse/artisan.py +97 -0
- velm/artisans/neural/__init__.py +14 -0
- velm/artisans/neural/artisan.py +116 -0
- velm/artisans/neural/contracts.py +14 -0
- velm/artisans/neural/tui.py +323 -0
- velm/artisans/neural_link/__init__.py +4 -0
- velm/artisans/neural_link/artisan.py +48 -0
- velm/artisans/neural_link/dashboard.py +129 -0
- velm/artisans/observatory/__init__.py +26 -0
- velm/artisans/observatory/artisan.py +249 -0
- velm/artisans/observatory/contracts.py +62 -0
- velm/artisans/ocular/__init__.py +4 -0
- velm/artisans/ocular/artisan.py +118 -0
- velm/artisans/pad.py +103 -0
- velm/artisans/patch/__init__.py +12 -0
- velm/artisans/patch/artisan.py +321 -0
- velm/artisans/patch/contracts.py +114 -0
- velm/artisans/patch/mutators/__init__.py +11 -0
- velm/artisans/patch/mutators/base.py +12 -0
- velm/artisans/patch/mutators/facade.py +58 -0
- velm/artisans/patch/mutators/regex.py +76 -0
- velm/artisans/patch/mutators/semantic/__init__.py +12 -0
- velm/artisans/patch/mutators/semantic/contracts.py +15 -0
- velm/artisans/patch/mutators/semantic/router.py +94 -0
- velm/artisans/patch/mutators/semantic/strategies.py +184 -0
- velm/artisans/patch/mutators/structured.py +91 -0
- velm/artisans/patch/mutators/textual.py +60 -0
- velm/artisans/patch/parser.py +74 -0
- velm/artisans/patch/patch.scaffold +6 -0
- velm/artisans/plugins/__init__.py +2 -0
- velm/artisans/plugins/artisan.py +286 -0
- velm/artisans/preview/__init__.py +2 -0
- velm/artisans/preview/artisan.py +155 -0
- velm/artisans/preview/contracts.py +27 -0
- velm/artisans/preview/parsers/__init__.py +61 -0
- velm/artisans/preview/parsers/base.py +20 -0
- velm/artisans/preview/parsers/html.py +273 -0
- velm/artisans/preview/parsers/react.py +351 -0
- velm/artisans/prophesy/__init__.py +4 -0
- velm/artisans/prophesy/artisan.py +47 -0
- velm/artisans/qr/__init__.py +3 -0
- velm/artisans/qr/artisan.py +75 -0
- velm/artisans/query/__init__.py +2 -0
- velm/artisans/query/artisan.py +535 -0
- velm/artisans/read_soul/__init__.py +3 -0
- velm/artisans/read_soul/artisan.py +30 -0
- velm/artisans/refactor.py +200 -0
- velm/artisans/repair/__init__.py +5 -0
- velm/artisans/repair/artisan.py +381 -0
- velm/artisans/repair/heuristics.py +282 -0
- velm/artisans/repair/surgery.py +61 -0
- velm/artisans/repl_artisan.py +161 -0
- velm/artisans/replay.py +309 -0
- velm/artisans/resonate/__init__.py +3 -0
- velm/artisans/resonate/artisan.py +82 -0
- velm/artisans/review/artisan.py +93 -0
- velm/artisans/risk/__init__.py +3 -0
- velm/artisans/risk/artisan.py +98 -0
- velm/artisans/run/__init__.py +6 -0
- velm/artisans/run/bridge.py +84 -0
- velm/artisans/run/conductor.py +211 -0
- velm/artisans/run/polyglot_bridge.py +213 -0
- velm/artisans/run/prophet/__init__.py +15 -0
- velm/artisans/run/prophet/conductor.py +79 -0
- velm/artisans/run/prophet/contracts.py +21 -0
- velm/artisans/run/prophet/grimoire.py +63 -0
- velm/artisans/run/prophet/language_oracle.py +96 -0
- velm/artisans/run/prophet/rite_adjudicator.py +41 -0
- velm/artisans/run/prophet/sanctum_seer.py +35 -0
- velm/artisans/run/scribe.py +321 -0
- velm/artisans/run/vigil.py +99 -0
- velm/artisans/runtimes.py +458 -0
- velm/artisans/save_artisan.py +118 -0
- velm/artisans/schema/__init__.py +4 -0
- velm/artisans/schema/artisan.py +116 -0
- velm/artisans/schema/engine.py +123 -0
- velm/artisans/scribe/__init__.py +5 -0
- velm/artisans/scribe/base_scribe.py +42 -0
- velm/artisans/scribe/conductor.py +153 -0
- velm/artisans/scribe/form_scribe.py +30 -0
- velm/artisans/scribe/monad_scribe.py +28 -0
- velm/artisans/scribe/will_scribe.py +27 -0
- velm/artisans/seed/__init__.py +4 -0
- velm/artisans/seed/artisan.py +54 -0
- velm/artisans/seed/fabricator.py +44 -0
- velm/artisans/self_test.py +114 -0
- velm/artisans/semantic_fs/__init__.py +3 -0
- velm/artisans/semantic_fs/artisan.py +106 -0
- velm/artisans/semantic_fs/operations.py +101 -0
- velm/artisans/semdiff/__init__.py +3 -0
- velm/artisans/semdiff/artisan.py +86 -0
- velm/artisans/services/__init__.py +0 -0
- velm/artisans/services/billing/__init__.py +0 -0
- velm/artisans/services/billing/artisan.py +91 -0
- velm/artisans/services/billing/client.py +34 -0
- velm/artisans/services/billing/domains/customers.py +32 -0
- velm/artisans/services/billing/domains/invoices.py +27 -0
- velm/artisans/services/billing/domains/links.py +18 -0
- velm/artisans/services/billing/domains/portal.py +13 -0
- velm/artisans/services/billing/domains/products.py +23 -0
- velm/artisans/services/billing/domains/subscriptions.py +32 -0
- velm/artisans/services/browser/__init__.py +2 -0
- velm/artisans/services/browser/artisan.py +49 -0
- velm/artisans/services/browser/engine.py +68 -0
- velm/artisans/services/cache/__init__.py +2 -0
- velm/artisans/services/cache/artisan.py +41 -0
- velm/artisans/services/cache/engine.py +78 -0
- velm/artisans/services/calendar/artisan.py +258 -0
- velm/artisans/services/calendar/brain.py +45 -0
- velm/artisans/services/calendar/client.py +151 -0
- velm/artisans/services/clerk/__init__.py +0 -0
- velm/artisans/services/clerk/artisan.py +141 -0
- velm/artisans/services/clerk/client.py +32 -0
- velm/artisans/services/clerk/constants.py +22 -0
- velm/artisans/services/clerk/domains/base.py +50 -0
- velm/artisans/services/clerk/domains/invitations.py +70 -0
- velm/artisans/services/clerk/domains/organizations.py +42 -0
- velm/artisans/services/clerk/domains/sessions.py +31 -0
- velm/artisans/services/clerk/domains/users.py +149 -0
- velm/artisans/services/clerk/simulation/engine.py +65 -0
- velm/artisans/services/clerk/simulation/generators.py +53 -0
- velm/artisans/services/clerk/simulation/state.py +57 -0
- velm/artisans/services/communication/__init__.py +0 -0
- velm/artisans/services/communication/artisan.py +695 -0
- velm/artisans/services/communication/channels/base.py +15 -0
- velm/artisans/services/communication/channels/email_api.py +51 -0
- velm/artisans/services/communication/channels/email_smtp.py +77 -0
- velm/artisans/services/communication/channels/mock.py +96 -0
- velm/artisans/services/communication/channels/sms_twilio.py +270 -0
- velm/artisans/services/communication/channels/social.py +379 -0
- velm/artisans/services/communication/contracts.py +18 -0
- velm/artisans/services/communication/herald.py +167 -0
- velm/artisans/services/crm/__init__.py +0 -0
- velm/artisans/services/crm/artisan.py +97 -0
- velm/artisans/services/crm/factory.py +19 -0
- velm/artisans/services/crm/providers/base.py +58 -0
- velm/artisans/services/crm/providers/hubspot.py +81 -0
- velm/artisans/services/document/__init__.py +2 -0
- velm/artisans/services/document/artisan.py +66 -0
- velm/artisans/services/document/domains/data.py +35 -0
- velm/artisans/services/document/domains/pdf.py +14 -0
- velm/artisans/services/intelligence/__init__.py +0 -0
- velm/artisans/services/intelligence/artisan.py +96 -0
- velm/artisans/services/memory/__init__.py +2 -0
- velm/artisans/services/memory/artisan.py +76 -0
- velm/artisans/services/memory/encoder.py +19 -0
- velm/artisans/services/memory/store.py +25 -0
- velm/artisans/services/network/__init__.py +0 -0
- velm/artisans/services/network/artisan.py +65 -0
- velm/artisans/services/network/client.py +31 -0
- velm/artisans/services/network/domains/graphql.py +48 -0
- velm/artisans/services/network/domains/rest.py +78 -0
- velm/artisans/services/network/domains/webhook.py +50 -0
- velm/artisans/services/sheets/__init__.py +2 -0
- velm/artisans/services/sheets/artisan.py +48 -0
- velm/artisans/services/sheets/domains/airtable.py +41 -0
- velm/artisans/services/sheets/domains/google.py +49 -0
- velm/artisans/services/storage/__init__.py +4 -0
- velm/artisans/services/storage/artisan.py +311 -0
- velm/artisans/services/storage/client.py +56 -0
- velm/artisans/services/storage/domains/buckets.py +27 -0
- velm/artisans/services/storage/domains/objects.py +79 -0
- velm/artisans/services/storage/domains/security.py +34 -0
- velm/artisans/services/supabase/__init__.py +0 -0
- velm/artisans/services/supabase/artisan.py +63 -0
- velm/artisans/services/supabase/client.py +156 -0
- velm/artisans/services/supabase/domains/auth.py +40 -0
- velm/artisans/services/supabase/domains/database.py +226 -0
- velm/artisans/services/supabase/domains/storage.py +43 -0
- velm/artisans/services/twilio/__init__.py +11 -0
- velm/artisans/services/twilio/artisan.py +394 -0
- velm/artisans/services/twilio/client.py +43 -0
- velm/artisans/services/twilio/constants.py +42 -0
- velm/artisans/services/twilio/domains/base.py +23 -0
- velm/artisans/services/twilio/domains/compliance.py +76 -0
- velm/artisans/services/twilio/domains/intelligence.py +41 -0
- velm/artisans/services/twilio/domains/lookups.py +38 -0
- velm/artisans/services/twilio/domains/management.py +49 -0
- velm/artisans/services/twilio/domains/messaging.py +68 -0
- velm/artisans/services/twilio/domains/numbers.py +95 -0
- velm/artisans/services/twilio/domains/provisioning.py +73 -0
- velm/artisans/services/twilio/simulation/engine.py +158 -0
- velm/artisans/services/twilio/simulation/generators.py +64 -0
- velm/artisans/services/twilio/simulation/physics.py +60 -0
- velm/artisans/services/twilio/simulation/reactor.py +63 -0
- velm/artisans/services/twilio/simulation/state.py +72 -0
- velm/artisans/services/twilio/utils.py +55 -0
- velm/artisans/services/worker/__init__.py +2 -0
- velm/artisans/services/worker/artisan.py +40 -0
- velm/artisans/services/worker/engine.py +64 -0
- velm/artisans/settings.py +96 -0
- velm/artisans/sgrep/__init__.py +3 -0
- velm/artisans/sgrep/artisan.py +95 -0
- velm/artisans/shadow_clone/__init__.py +5 -0
- velm/artisans/shadow_clone/artisan.py +565 -0
- velm/artisans/shadow_clone/catalog.py +58 -0
- velm/artisans/shadow_clone/config_injector.py +58 -0
- velm/artisans/shadow_clone/contracts.py +130 -0
- velm/artisans/shadow_clone/governor.py +241 -0
- velm/artisans/shadow_clone/mirror.py +143 -0
- velm/artisans/shadow_clone/network.py +205 -0
- velm/artisans/shadow_clone/state_cloner.py +76 -0
- velm/artisans/shadow_clone/worktree.py +228 -0
- velm/artisans/shell.py +32 -0
- velm/artisans/signature_artisan.py +256 -0
- velm/artisans/simulacrum/__init__.py +9 -0
- velm/artisans/simulacrum/artisan.py +193 -0
- velm/artisans/simulacrum/bridge.py +196 -0
- velm/artisans/simulacrum/contracts.py +22 -0
- velm/artisans/simulacrum/engine.py +283 -0
- velm/artisans/simulacrum/exceptions.py +18 -0
- velm/artisans/simulacrum/heuristics/__init__.py +9 -0
- velm/artisans/simulacrum/heuristics/engine.py +81 -0
- velm/artisans/simulacrum/heuristics/strategies.py +149 -0
- velm/artisans/simulacrum/runtimes/__init__.py +19 -0
- velm/artisans/simulacrum/runtimes/base.py +34 -0
- velm/artisans/simulacrum/runtimes/go.py +130 -0
- velm/artisans/simulacrum/runtimes/node.py +124 -0
- velm/artisans/simulacrum/runtimes/python.py +38 -0
- velm/artisans/simulacrum/runtimes/rust.py +23 -0
- velm/artisans/simulacrum/runtimes/shell.py +11 -0
- velm/artisans/snippet/artisan.py +108 -0
- velm/artisans/studio.py +50 -0
- velm/artisans/summarize.py +176 -0
- velm/artisans/surveyor/__init__.py +2 -0
- velm/artisans/surveyor/artisan.py +218 -0
- velm/artisans/symphony.py +151 -0
- velm/artisans/telepathy/__init__.py +3 -0
- velm/artisans/telepathy/artisan.py +121 -0
- velm/artisans/telepresence/__init__.py +3 -0
- velm/artisans/telepresence/artisan.py +192 -0
- velm/artisans/telepresence/causal_slicer.py +171 -0
- velm/artisans/telepresence/maestro_bridge.py +184 -0
- velm/artisans/telepresence/shadow_vault.py +163 -0
- velm/artisans/telepresence/url_projector.py +151 -0
- velm/artisans/template_engine/__init__.py +23 -0
- velm/artisans/template_engine/contracts.py +36 -0
- velm/artisans/template_engine/engine/__init__.py +2 -0
- velm/artisans/template_engine/engine/ai_prophet.py +169 -0
- velm/artisans/template_engine/engine/alias_oracle.py +108 -0
- velm/artisans/template_engine/engine/cache_oracle.py +155 -0
- velm/artisans/template_engine/engine/conductor.py +151 -0
- velm/artisans/template_engine/engine/gaze_conductor.py +210 -0
- velm/artisans/template_engine/engine/manifest_oracle.py +148 -0
- velm/artisans/template_engine/system_forge.py +197 -0
- velm/artisans/templates.py +647 -0
- velm/artisans/time_branch.py +60 -0
- velm/artisans/time_machine.py +38 -0
- velm/artisans/tool/ascii_artisan.py +238 -0
- velm/artisans/tool/banner_artisan.py +87 -0
- velm/artisans/tool/chronicle_artisan.py +18 -0
- velm/artisans/tool/doctor_artisan.py +18 -0
- velm/artisans/tool/gnosis_artisan.py +18 -0
- velm/artisans/tool/hash_artisan.py +21 -0
- velm/artisans/tool/keyring_artisan.py +55 -0
- velm/artisans/tool/pack_artisan.py +17 -0
- velm/artisans/tool/read_soul_artisan.py +43 -0
- velm/artisans/tool/sbom_artisan.py +84 -0
- velm/artisans/tool/secrets_artisan.py +66 -0
- velm/artisans/tool/tool_cli.py +60 -0
- velm/artisans/train/__init__.py +2 -0
- velm/artisans/train/artisan.py +27 -0
- velm/artisans/transfigure.py +275 -0
- velm/artisans/translate/__init__.py +3 -0
- velm/artisans/translate/artisan.py +65 -0
- velm/artisans/translocate.py +451 -0
- velm/artisans/translocate_core/__init__.py +11 -0
- velm/artisans/translocate_core/conductor/__init__.py +14 -0
- velm/artisans/translocate_core/conductor/engine.py +86 -0
- velm/artisans/translocate_core/conductor/execution.py +240 -0
- velm/artisans/translocate_core/conductor/perception.py +72 -0
- velm/artisans/translocate_core/conductor/proclamation.py +152 -0
- velm/artisans/translocate_core/conductor/snapshot.py +330 -0
- velm/artisans/translocate_core/contracts.py +31 -0
- velm/artisans/translocate_core/detective.py +717 -0
- velm/artisans/translocate_core/resolvers/ROADMAP.md +35 -0
- velm/artisans/translocate_core/resolvers/__init__.py +18 -0
- velm/artisans/translocate_core/resolvers/cpp/__init__.py +5 -0
- velm/artisans/translocate_core/resolvers/cpp/contracts.py +23 -0
- velm/artisans/translocate_core/resolvers/cpp/engine.py +75 -0
- velm/artisans/translocate_core/resolvers/cpp/inquisitor.py +58 -0
- velm/artisans/translocate_core/resolvers/cpp/pathfinder.py +47 -0
- velm/artisans/translocate_core/resolvers/cpp/surgeon.py +24 -0
- velm/artisans/translocate_core/resolvers/go/__init__.py +1 -0
- velm/artisans/translocate_core/resolvers/go/contracts.py +18 -0
- velm/artisans/translocate_core/resolvers/go/engine.py +70 -0
- velm/artisans/translocate_core/resolvers/go/inquisitor.py +36 -0
- velm/artisans/translocate_core/resolvers/go/pathfinder.py +54 -0
- velm/artisans/translocate_core/resolvers/go/surgeon.py +17 -0
- velm/artisans/translocate_core/resolvers/java/__init__.py +5 -0
- velm/artisans/translocate_core/resolvers/java/contracts.py +29 -0
- velm/artisans/translocate_core/resolvers/java/engine.py +75 -0
- velm/artisans/translocate_core/resolvers/java/inquisitor.py +66 -0
- velm/artisans/translocate_core/resolvers/java/pathfinder.py +45 -0
- velm/artisans/translocate_core/resolvers/java/surgeon.py +24 -0
- velm/artisans/translocate_core/resolvers/javascript/__init__.py +4 -0
- velm/artisans/translocate_core/resolvers/javascript/contracts.py +29 -0
- velm/artisans/translocate_core/resolvers/javascript/engine.py +75 -0
- velm/artisans/translocate_core/resolvers/javascript/inquisitor.py +72 -0
- velm/artisans/translocate_core/resolvers/javascript/pathfinder.py +80 -0
- velm/artisans/translocate_core/resolvers/javascript/surgeon.py +42 -0
- velm/artisans/translocate_core/resolvers/python/__init__.py +6 -0
- velm/artisans/translocate_core/resolvers/python/contracts.py +29 -0
- velm/artisans/translocate_core/resolvers/python/engine.py +147 -0
- velm/artisans/translocate_core/resolvers/python/inquisitor.py +138 -0
- velm/artisans/translocate_core/resolvers/python/intelligence.py +46 -0
- velm/artisans/translocate_core/resolvers/python/pathfinder.py +264 -0
- velm/artisans/translocate_core/resolvers/python/surgeon.py +160 -0
- velm/artisans/translocate_core/resolvers/ruby/__init__.py +5 -0
- velm/artisans/translocate_core/resolvers/ruby/contracts.py +28 -0
- velm/artisans/translocate_core/resolvers/ruby/engine.py +74 -0
- velm/artisans/translocate_core/resolvers/ruby/inquisitor.py +90 -0
- velm/artisans/translocate_core/resolvers/ruby/pathfinder.py +79 -0
- velm/artisans/translocate_core/resolvers/ruby/surgeon.py +32 -0
- velm/artisans/translocate_core/resolvers/rust/__init__.py +5 -0
- velm/artisans/translocate_core/resolvers/rust/contracts.py +22 -0
- velm/artisans/translocate_core/resolvers/rust/engine.py +110 -0
- velm/artisans/translocate_core/resolvers/rust/inquisitor.py +57 -0
- velm/artisans/translocate_core/resolvers/rust/pathfinder.py +75 -0
- velm/artisans/translocate_core/resolvers/rust/surgeon.py +22 -0
- velm/artisans/translocate_core/resolvers/typescript/__init__.py +3 -0
- velm/artisans/translocate_core/resolvers/typescript/engine.py +13 -0
- velm/artisans/translocate_core/resolvers/typescript/pathfinder.py +83 -0
- velm/artisans/translocate_core/will_parser.py +199 -0
- velm/artisans/transmute.py +969 -0
- velm/artisans/transmute_core/seer.py +357 -0
- velm/artisans/tray_guardian.py +75 -0
- velm/artisans/tree.py +253 -0
- velm/artisans/tutorial/__init__.py +4 -0
- velm/artisans/tutorial/artisans.py +92 -0
- velm/artisans/tutorial/engine.py +51 -0
- velm/artisans/tutorial/quest_giver.py +81 -0
- velm/artisans/unambiguous_artisan.py +0 -0
- velm/artisans/undo/__init__.py +15 -0
- velm/artisans/undo/artisan.py +193 -0
- velm/artisans/undo/reverser.py +173 -0
- velm/artisans/upgrade/__init__.py +4 -0
- velm/artisans/upgrade/artisan.py +86 -0
- velm/artisans/upgrade/merger.py +143 -0
- velm/artisans/vector/__init__.py +0 -0
- velm/artisans/vector/artisan.py +111 -0
- velm/artisans/verify.py +319 -0
- velm/artisans/watchman/__init__.py +4 -0
- velm/artisans/watchman/artisan.py +182 -0
- velm/artisans/watchman/engine.py +124 -0
- velm/artisans/watchman/profiles.py +83 -0
- velm/artisans/watchman/ui.py +49 -0
- velm/artisans/weave/__init__.py +15 -0
- velm/artisans/weave/ci_weaver.py +90 -0
- velm/artisans/weave/conductor.py +205 -0
- velm/artisans/weave/oracle.py +90 -0
- velm/artisans/weave/validator.py +24 -0
- velm/artisans/weave/weaver.py +333 -0
- velm/artisans/with_secrets.py +109 -0
- velm/artisans/workspace/__init__.py +6 -0
- velm/artisans/workspace/artisan.py +583 -0
- velm/artisans/workspace/contracts.py +97 -0
- velm/artisans/workspace/pad/app.py +232 -0
- velm/banners/__init__.py +67 -0
- velm/banners/fallback.py +35 -0
- velm/banners/sigil.py +2024 -0
- velm/communion/__init__.py +133 -0
- velm/communion/oracle.py +325 -0
- velm/communion/renderers.py +178 -0
- velm/constants.py +679 -0
- velm/containerization/__init__.py +13 -0
- velm/containerization/engine.py +356 -0
- velm/contracts/architectural_contracts.py +19 -0
- velm/contracts/communion_contracts.py +48 -0
- velm/contracts/data_contracts.py +758 -0
- velm/contracts/heresy_contracts.py +557 -0
- velm/contracts/law_contracts.py +134 -0
- velm/contracts/persona_contracts.py +35 -0
- velm/contracts/symphony_contracts.py +263 -0
- velm/core/__init__.py +6 -0
- velm/core/__main__.py +13 -0
- velm/core/ai/__init__.py +33 -0
- velm/core/ai/akasha.py +112 -0
- velm/core/ai/contracts.py +159 -0
- velm/core/ai/engine/__init__.py +5 -0
- velm/core/ai/engine/audit.py +37 -0
- velm/core/ai/engine/core.py +249 -0
- velm/core/ai/knowledge_base.json +22 -0
- velm/core/ai/providers/__init__.py +21 -0
- velm/core/ai/providers/anthropic.py +134 -0
- velm/core/ai/providers/base.py +219 -0
- velm/core/ai/providers/google.py +143 -0
- velm/core/ai/providers/local.py +118 -0
- velm/core/ai/providers/openai.py +244 -0
- velm/core/ai/rag/__init__.py +30 -0
- velm/core/ai/rag/knowledge/__init__.py +33 -0
- velm/core/ai/rag/knowledge/devops_gnosis.py +61 -0
- velm/core/ai/rag/knowledge/go_gnosis.py +27 -0
- velm/core/ai/rag/knowledge/python_gnosis.py +54 -0
- velm/core/ai/rag/knowledge/rust_gnosis.py +49 -0
- velm/core/ai/rag/knowledge/scaffold_syntax.py +71 -0
- velm/core/ai/rag/knowledge/security_gnosis.py +45 -0
- velm/core/ai/rag/knowledge/symphony_syntax.py +65 -0
- velm/core/ai/rag/knowledge/typescript_gnosis.py +63 -0
- velm/core/ai/rag/librarian/__init__.py +7 -0
- velm/core/ai/rag/librarian/analysis.py +62 -0
- velm/core/ai/rag/librarian/assembly.py +60 -0
- velm/core/ai/rag/librarian/contracts.py +45 -0
- velm/core/ai/rag/librarian/indexers/base.py +18 -0
- velm/core/ai/rag/librarian/indexers/code.py +200 -0
- velm/core/ai/rag/librarian/indexers/text.py +150 -0
- velm/core/ai/rag/librarian/master.py +344 -0
- velm/core/ai/rag/librarian/ranking.py +30 -0
- velm/core/ai/rag/librarian/retrieval/__init__.py +0 -0
- velm/core/ai/rag/librarian/retrieval/engine.py +51 -0
- velm/core/alchemist/__init__.py +14 -0
- velm/core/alchemist/engine.py +202 -0
- velm/core/alchemist/environment.py +126 -0
- velm/core/alchemist/inference.py +114 -0
- velm/core/alchemist/library.py +117 -0
- velm/core/alchemist/resolution.py +297 -0
- velm/core/artisan.py +197 -0
- velm/core/assembler/__init__.py +15 -0
- velm/core/assembler/engine.py +191 -0
- velm/core/assembler/weavers/__init__.py +15 -0
- velm/core/assembler/weavers/base_weaver.py +130 -0
- velm/core/assembler/weavers/python_weaver.py +528 -0
- velm/core/assembler/weavers/react_weaver.py +368 -0
- velm/core/blueprint_scribe/__init__.py +11 -0
- velm/core/blueprint_scribe/canonical_serializer.py +124 -0
- velm/core/blueprint_scribe/content_renderer.py +75 -0
- velm/core/blueprint_scribe/metadata_scribe.py +72 -0
- velm/core/blueprint_scribe/scribe.py +114 -0
- velm/core/blueprint_scribe/sorting_hat.py +33 -0
- velm/core/blueprint_scribe/tree_forger.py +52 -0
- velm/core/chaos_engine.py +229 -0
- velm/core/cli/cli_conductor.py +343 -0
- velm/core/cli/cli_shims.py +795 -0
- velm/core/cli/cli_utils.py +244 -0
- velm/core/cli/core_cli.py +270 -0
- velm/core/cli/grimoire/__init__.py +76 -0
- velm/core/cli/grimoire/_ai_rites.py +247 -0
- velm/core/cli/grimoire/_automation_rites.py +52 -0
- velm/core/cli/grimoire/_core_rites.py +244 -0
- velm/core/cli/grimoire/_evolution_rites.py +212 -0
- velm/core/cli/grimoire/_guild_rites.py +32 -0
- velm/core/cli/grimoire/_history_rites.py +60 -0
- velm/core/cli/grimoire/_mimic_rites.py +20 -0
- velm/core/cli/grimoire/_perception_rites.py +398 -0
- velm/core/cli/grimoire/_security_rites.py +57 -0
- velm/core/cli/grimoire/_service_rites.py +197 -0
- velm/core/cli/grimoire/_ui_rites.py +58 -0
- velm/core/cli/grimoire/_utility_rites.py +172 -0
- velm/core/cli/grimoire/_workspace_rites.py +59 -0
- velm/core/cli/grimoire_data.py +147 -0
- velm/core/cortex/__init__.py +9 -0
- velm/core/cortex/blueprint_merger.py +311 -0
- velm/core/cortex/call_graph.py +160 -0
- velm/core/cortex/contracts.py +515 -0
- velm/core/cortex/data_flow.py +91 -0
- velm/core/cortex/dependency_oracle.py +311 -0
- velm/core/cortex/engine/__init__.py +16 -0
- velm/core/cortex/engine/analysis.py +182 -0
- velm/core/cortex/engine/conductor.py +144 -0
- velm/core/cortex/engine/perception.py +154 -0
- velm/core/cortex/entropy_oracle.py +125 -0
- velm/core/cortex/file_discoverer.py +207 -0
- velm/core/cortex/file_interrogator.py +252 -0
- velm/core/cortex/git_historian.py +320 -0
- velm/core/cortex/graph_builder.py +551 -0
- velm/core/cortex/import_resolver.py +206 -0
- velm/core/cortex/knowledge.py +96 -0
- velm/core/cortex/language_oracle.py +120 -0
- velm/core/cortex/logic_inductor.py +216 -0
- velm/core/cortex/ocular/__init__.py +15 -0
- velm/core/cortex/ocular/engine.py +198 -0
- velm/core/cortex/ranking/__init__.py +16 -0
- velm/core/cortex/ranking/contracts.py +47 -0
- velm/core/cortex/ranking/engine.py +254 -0
- velm/core/cortex/ranking/factors/cohesion.py +152 -0
- velm/core/cortex/ranking/factors/resonance.py +41 -0
- velm/core/cortex/ranking/factors/semantic.py +34 -0
- velm/core/cortex/ranking/factors/structural.py +32 -0
- velm/core/cortex/ranking/factors/symbiosis.py +28 -0
- velm/core/cortex/ranking/factors/temporal.py +30 -0
- velm/core/cortex/ranking/factors/topological.py +62 -0
- velm/core/cortex/ranking/strategies.py +194 -0
- velm/core/cortex/scanner.py +193 -0
- velm/core/cortex/semantic_comparator.py +98 -0
- velm/core/cortex/semantic_indexer.py +353 -0
- velm/core/cortex/tag_extractor.py +49 -0
- velm/core/cortex/tokenomics.py +44 -0
- velm/core/cortex/vector.py +502 -0
- velm/core/daemon/__init__.py +18 -0
- velm/core/daemon/akashic/__init__.py +20 -0
- velm/core/daemon/akashic/broadcaster.py +331 -0
- velm/core/daemon/akashic/constants.py +24 -0
- velm/core/daemon/akashic/engine.py +442 -0
- velm/core/daemon/akashic/envelope.py +187 -0
- velm/core/daemon/akashic/memory.py +154 -0
- velm/core/daemon/constants.py +176 -0
- velm/core/daemon/dispatcher/__init__.py +21 -0
- velm/core/daemon/dispatcher/constants.py +31 -0
- velm/core/daemon/dispatcher/engine.py +335 -0
- velm/core/daemon/dispatcher/errors.py +43 -0
- velm/core/daemon/dispatcher/executor.py +51 -0
- velm/core/daemon/dispatcher/pools.py +114 -0
- velm/core/daemon/dispatcher/triage.py +162 -0
- velm/core/daemon/nexus/__init__.py +17 -0
- velm/core/daemon/nexus/engine.py +543 -0
- velm/core/daemon/nexus/gatekeeper.py +515 -0
- velm/core/daemon/nexus/scout.py +41 -0
- velm/core/daemon/nexus/synapse.py +341 -0
- velm/core/daemon/registry/__init__.py +4 -0
- velm/core/daemon/registry/consecrator.py +123 -0
- velm/core/daemon/registry/guard.py +24 -0
- velm/core/daemon/registry/resolver.py +24 -0
- velm/core/daemon/resolver/__init__.py +17 -0
- velm/core/daemon/resolver/constants.py +33 -0
- velm/core/daemon/resolver/dna.py +74 -0
- velm/core/daemon/resolver/engine.py +65 -0
- velm/core/daemon/resolver/executable.py +49 -0
- velm/core/daemon/resolver/identity.py +48 -0
- velm/core/daemon/resolver/virtual.py +47 -0
- velm/core/daemon/serializer/__init__.py +17 -0
- velm/core/daemon/serializer/constants.py +19 -0
- velm/core/daemon/serializer/encoders/forensic.py +22 -0
- velm/core/daemon/serializer/encoders/meta.py +44 -0
- velm/core/daemon/serializer/encoders/schema.py +45 -0
- velm/core/daemon/serializer/encoders/scientific.py +34 -0
- velm/core/daemon/serializer/encoders/spatial.py +18 -0
- velm/core/daemon/serializer/encoders/temporal.py +20 -0
- velm/core/daemon/serializer/engine.py +88 -0
- velm/core/daemon/serializer/registry.py +33 -0
- velm/core/daemon/server/__init__.py +17 -0
- velm/core/daemon/server/banner.py +20 -0
- velm/core/daemon/server/engine.py +334 -0
- velm/core/daemon/server/signals.py +46 -0
- velm/core/daemon/server/vitality.py +212 -0
- velm/core/daemon/surveyor/constants.py +78 -0
- velm/core/daemon/surveyor/engine.py +330 -0
- velm/core/daemon/surveyor/registry.py +151 -0
- velm/core/daemon/surveyor/sentinels/adapter.py +206 -0
- velm/core/daemon/surveyor/sentinels/base.py +70 -0
- velm/core/daemon/surveyor/sentinels/cpp.py +0 -0
- velm/core/daemon/surveyor/sentinels/docker.py +0 -0
- velm/core/daemon/surveyor/sentinels/golang.py +45 -0
- velm/core/daemon/surveyor/sentinels/infra.py +62 -0
- velm/core/daemon/surveyor/sentinels/java.py +52 -0
- velm/core/daemon/surveyor/sentinels/javascript.py +67 -0
- velm/core/daemon/surveyor/sentinels/python.py +84 -0
- velm/core/daemon/surveyor/sentinels/ruby.py +0 -0
- velm/core/daemon/surveyor/sentinels/rust.py +60 -0
- velm/core/daemon/surveyor/sentinels/scaffold.py +57 -0
- velm/core/daemon/surveyor/sentinels/symphony.py +0 -0
- velm/core/daemon/surveyor/sentinels/typescript.py +40 -0
- velm/core/daemon/transporter/__init__.py +17 -0
- velm/core/daemon/transporter/buffer.py +207 -0
- velm/core/daemon/transporter/constants.py +37 -0
- velm/core/daemon/transporter/engine.py +304 -0
- velm/core/daemon/transporter/physics.py +51 -0
- velm/core/fusion/__init__.py +6 -0
- velm/core/fusion/engine.py +174 -0
- velm/core/guardian/__init__.py +15 -0
- velm/core/guardian/contracts.py +43 -0
- velm/core/guardian/grimoire.py +57 -0
- velm/core/guardian/sentry.py +103 -0
- velm/core/guardian/wards/filesystem.py +93 -0
- velm/core/guardian/wards/semantic.py +45 -0
- velm/core/guardian/wards/syntax.py +56 -0
- velm/core/ignition/__init__.py +40 -0
- velm/core/ignition/conductor.py +169 -0
- velm/core/ignition/contracts.py +248 -0
- velm/core/ignition/diviner/__init__.py +21 -0
- velm/core/ignition/diviner/engine.py +175 -0
- velm/core/ignition/diviner/exceptions.py +37 -0
- velm/core/ignition/diviner/heuristics/__init__.py +8 -0
- velm/core/ignition/diviner/heuristics/base.py +27 -0
- velm/core/ignition/diviner/heuristics/engine.py +57 -0
- velm/core/ignition/diviner/heuristics/node_inquisitor.py +54 -0
- velm/core/ignition/diviner/heuristics/python_inquisitor.py +48 -0
- velm/core/ignition/diviner/heuristics/systems_inquisitor.py +27 -0
- velm/core/ignition/diviner/heuristics/visual_inquisitor.py +21 -0
- velm/core/ignition/diviner/persistence.py +75 -0
- velm/core/ignition/diviner/seekers/__init__.py +29 -0
- velm/core/ignition/diviner/seekers/base.py +54 -0
- velm/core/ignition/diviner/seekers/conductor.py +81 -0
- velm/core/ignition/diviner/seekers/entropy_seeker.py +57 -0
- velm/core/ignition/diviner/seekers/environmental_seeker.py +50 -0
- velm/core/ignition/diviner/seekers/heart_seeker.py +59 -0
- velm/core/ignition/diviner/seekers/magic_seeker.py +46 -0
- velm/core/ignition/diviner/seekers/semantic_seeker.py +35 -0
- velm/core/ignition/diviner/seekers/visual_seeker.py +58 -0
- velm/core/ignition/diviner/strategies.py +261 -0
- velm/core/ignition/diviner/telemetry.py +28 -0
- velm/core/ignition/sentinel/__init__.py +7 -0
- velm/core/ignition/sentinel/biology.py +37 -0
- velm/core/ignition/sentinel/grimoire.py +45 -0
- velm/core/ignition/sentinel/priest.py +100 -0
- velm/core/ignition/sentinel/scanner.py +64 -0
- velm/core/ignition/sentinel/vitality.py +72 -0
- velm/core/jurisprudence/adjudicator.py +172 -0
- velm/core/jurisprudence/contracts.py +41 -0
- velm/core/jurisprudence/vows/__init__.py +75 -0
- velm/core/jurisprudence/vows/base.py +108 -0
- velm/core/jurisprudence/vows/cloud_vows.py +74 -0
- velm/core/jurisprudence/vows/database_vows.py +78 -0
- velm/core/jurisprudence/vows/docker_ops_vows.py +65 -0
- velm/core/jurisprudence/vows/filesystem.py +447 -0
- velm/core/jurisprudence/vows/git_vows.py +63 -0
- velm/core/jurisprudence/vows/http_vows.py +61 -0
- velm/core/jurisprudence/vows/meta.py +43 -0
- velm/core/jurisprudence/vows/network.py +70 -0
- velm/core/jurisprudence/vows/process.py +50 -0
- velm/core/jurisprudence/vows/python_vows.py +80 -0
- velm/core/jurisprudence/vows/quality_vows.py +76 -0
- velm/core/jurisprudence/vows/resource_vows.py +68 -0
- velm/core/jurisprudence/vows/security_vows.py +91 -0
- velm/core/jurisprudence/vows/system.py +37 -0
- velm/core/kernel/__init__.py +15 -0
- velm/core/kernel/archivist/__init__.py +22 -0
- velm/core/kernel/archivist/contracts.py +57 -0
- velm/core/kernel/archivist/engine.py +124 -0
- velm/core/kernel/archivist/filters.py +102 -0
- velm/core/kernel/archivist/manifest.py +37 -0
- velm/core/kernel/archivist/restorer.py +81 -0
- velm/core/kernel/archivist/retention.py +44 -0
- velm/core/kernel/archivist/storage.py +105 -0
- velm/core/kernel/artifact_hoarder.py +170 -0
- velm/core/kernel/chronicle/__init__.py +16 -0
- velm/core/kernel/chronicle/archivist.py +63 -0
- velm/core/kernel/chronicle/facade.py +204 -0
- velm/core/kernel/chronicle/integrity_alchemist.py +77 -0
- velm/core/kernel/chronicle/manifest_federator.py +125 -0
- velm/core/kernel/chronicle/provenance_scribe.py +126 -0
- velm/core/kernel/hologram.py +230 -0
- velm/core/kernel/sentinel_gardener.py +113 -0
- velm/core/kernel/sentinel_watcher.py +561 -0
- velm/core/kernel/transaction/__init__.py +17 -0
- velm/core/kernel/transaction/chronicle_bridge.py +217 -0
- velm/core/kernel/transaction/committer.py +126 -0
- velm/core/kernel/transaction/contracts.py +77 -0
- velm/core/kernel/transaction/facade.py +216 -0
- velm/core/kernel/transaction/locking.py +332 -0
- velm/core/kernel/transaction/rollback.py +122 -0
- velm/core/kernel/transaction/staging.py +132 -0
- velm/core/lsp/STREAMING_PROTOCOL.md +121 -0
- velm/core/lsp/__init__.py +127 -0
- velm/core/lsp/base/__init__.py +39 -0
- velm/core/lsp/base/contracts.py +34 -0
- velm/core/lsp/base/dispatcher.py +390 -0
- velm/core/lsp/base/document.py +227 -0
- velm/core/lsp/base/errors.py +31 -0
- velm/core/lsp/base/features/__init__.py +0 -0
- velm/core/lsp/base/features/call_hierarchy/__init__.py +16 -0
- velm/core/lsp/base/features/call_hierarchy/contracts.py +41 -0
- velm/core/lsp/base/features/call_hierarchy/engine.py +91 -0
- velm/core/lsp/base/features/call_hierarchy/models.py +12 -0
- velm/core/lsp/base/features/code_action/__init__.py +19 -0
- velm/core/lsp/base/features/code_action/contracts.py +47 -0
- velm/core/lsp/base/features/code_action/engine.py +108 -0
- velm/core/lsp/base/features/code_action/models.py +16 -0
- velm/core/lsp/base/features/code_lens/__init__.py +19 -0
- velm/core/lsp/base/features/code_lens/contracts.py +46 -0
- velm/core/lsp/base/features/code_lens/engine.py +111 -0
- velm/core/lsp/base/features/code_lens/models.py +6 -0
- velm/core/lsp/base/features/completion/__init__.py +19 -0
- velm/core/lsp/base/features/completion/contracts.py +126 -0
- velm/core/lsp/base/features/completion/engine.py +183 -0
- velm/core/lsp/base/features/completion/models.py +7 -0
- velm/core/lsp/base/features/definition/__init__.py +19 -0
- velm/core/lsp/base/features/definition/contracts.py +47 -0
- velm/core/lsp/base/features/definition/engine.py +90 -0
- velm/core/lsp/base/features/definition/models.py +6 -0
- velm/core/lsp/base/features/definition/registry.py +19 -0
- velm/core/lsp/base/features/diagnostics/__init__.py +19 -0
- velm/core/lsp/base/features/diagnostics/context.py +75 -0
- velm/core/lsp/base/features/diagnostics/engine.py +186 -0
- velm/core/lsp/base/features/diagnostics/formatter.py +214 -0
- velm/core/lsp/base/features/diagnostics/governor.py +92 -0
- velm/core/lsp/base/features/diagnostics/ledger.py +123 -0
- velm/core/lsp/base/features/diagnostics/manager.py +222 -0
- velm/core/lsp/base/features/diagnostics/registry.py +123 -0
- velm/core/lsp/base/features/document_link/__init__.py +7 -0
- velm/core/lsp/base/features/document_link/contracts.py +37 -0
- velm/core/lsp/base/features/document_link/engine.py +66 -0
- velm/core/lsp/base/features/document_link/models.py +6 -0
- velm/core/lsp/base/features/folding_range/__init__.py +25 -0
- velm/core/lsp/base/features/folding_range/contracts.py +32 -0
- velm/core/lsp/base/features/folding_range/engine.py +84 -0
- velm/core/lsp/base/features/folding_range/models.py +10 -0
- velm/core/lsp/base/features/formatting/__init__.py +19 -0
- velm/core/lsp/base/features/formatting/contracts.py +47 -0
- velm/core/lsp/base/features/formatting/engine.py +88 -0
- velm/core/lsp/base/features/formatting/models.py +6 -0
- velm/core/lsp/base/features/hover/__init__.py +7 -0
- velm/core/lsp/base/features/hover/contracts.py +55 -0
- velm/core/lsp/base/features/hover/engine.py +211 -0
- velm/core/lsp/base/features/hover/models.py +23 -0
- velm/core/lsp/base/features/hover/registry.py +18 -0
- velm/core/lsp/base/features/inlay_hint/__init__.py +19 -0
- velm/core/lsp/base/features/inlay_hint/contracts.py +39 -0
- velm/core/lsp/base/features/inlay_hint/engine.py +98 -0
- velm/core/lsp/base/features/inlay_hint/models.py +6 -0
- velm/core/lsp/base/features/inline_completion/__init__.py +19 -0
- velm/core/lsp/base/features/inline_completion/contracts.py +36 -0
- velm/core/lsp/base/features/inline_completion/engine.py +77 -0
- velm/core/lsp/base/features/inline_completion/models.py +7 -0
- velm/core/lsp/base/features/linter/__init__.py +19 -0
- velm/core/lsp/base/features/linter/contracts.py +53 -0
- velm/core/lsp/base/features/linter/engine.py +94 -0
- velm/core/lsp/base/features/references/__init__.py +19 -0
- velm/core/lsp/base/features/references/contracts.py +39 -0
- velm/core/lsp/base/features/references/engine.py +114 -0
- velm/core/lsp/base/features/references/models.py +6 -0
- velm/core/lsp/base/features/rename/__init__.py +27 -0
- velm/core/lsp/base/features/rename/contracts.py +56 -0
- velm/core/lsp/base/features/rename/engine.py +126 -0
- velm/core/lsp/base/features/rename/models.py +6 -0
- velm/core/lsp/base/features/selection_range/__init__.py +13 -0
- velm/core/lsp/base/features/selection_range/contracts.py +32 -0
- velm/core/lsp/base/features/selection_range/engine.py +67 -0
- velm/core/lsp/base/features/selection_range/models.py +50 -0
- velm/core/lsp/base/features/semantic_tokens/__init__.py +20 -0
- velm/core/lsp/base/features/semantic_tokens/contracts.py +23 -0
- velm/core/lsp/base/features/semantic_tokens/differ.py +66 -0
- velm/core/lsp/base/features/semantic_tokens/encoder.py +50 -0
- velm/core/lsp/base/features/semantic_tokens/engine.py +200 -0
- velm/core/lsp/base/features/semantic_tokens/legend.py +37 -0
- velm/core/lsp/base/features/semantic_tokens/models.py +8 -0
- velm/core/lsp/base/features/signature_help/__init__.py +25 -0
- velm/core/lsp/base/features/signature_help/contracts.py +45 -0
- velm/core/lsp/base/features/signature_help/engine.py +139 -0
- velm/core/lsp/base/features/signature_help/models.py +7 -0
- velm/core/lsp/base/features/symbols/__init__.py +19 -0
- velm/core/lsp/base/features/symbols/contracts.py +64 -0
- velm/core/lsp/base/features/symbols/engine.py +99 -0
- velm/core/lsp/base/features/symbols/models.py +7 -0
- velm/core/lsp/base/features/type_hierarchy/__init__.py +18 -0
- velm/core/lsp/base/features/type_hierarchy/contracts.py +39 -0
- velm/core/lsp/base/features/type_hierarchy/engine.py +91 -0
- velm/core/lsp/base/features/type_hierarchy/models.py +9 -0
- velm/core/lsp/base/features/workspace/__init__.py +8 -0
- velm/core/lsp/base/features/workspace/commands/router.py +30 -0
- velm/core/lsp/base/features/workspace/contracts.py +20 -0
- velm/core/lsp/base/features/workspace/engine.py +42 -0
- velm/core/lsp/base/features/workspace/folders/__init__.py +14 -0
- velm/core/lsp/base/features/workspace/folders/manager.py +110 -0
- velm/core/lsp/base/features/workspace/folders/models.py +38 -0
- velm/core/lsp/base/features/workspace/folders/scryer.py +53 -0
- velm/core/lsp/base/features/workspace/models.py +8 -0
- velm/core/lsp/base/features/workspace/symbols/__init__.py +14 -0
- velm/core/lsp/base/features/workspace/symbols/contracts.py +19 -0
- velm/core/lsp/base/features/workspace/symbols/cortex_bridge.py +34 -0
- velm/core/lsp/base/features/workspace/symbols/engine.py +46 -0
- velm/core/lsp/base/features/workspace/symbols/models.py +21 -0
- velm/core/lsp/base/features/workspace/symbols/scryer.py +46 -0
- velm/core/lsp/base/features/workspace/watcher/core.py +217 -0
- velm/core/lsp/base/features/workspace/watcher/debounce.py +29 -0
- velm/core/lsp/base/foundry.py +62 -0
- velm/core/lsp/base/governor.py +100 -0
- velm/core/lsp/base/kernel.py +363 -0
- velm/core/lsp/base/manager.py +148 -0
- velm/core/lsp/base/middleware.py +112 -0
- velm/core/lsp/base/protocol/__init__.py +31 -0
- velm/core/lsp/base/protocol/constants.py +33 -0
- velm/core/lsp/base/protocol/endpoint.py +258 -0
- velm/core/lsp/base/protocol/framing.py +105 -0
- velm/core/lsp/base/protocol/streams.py +274 -0
- velm/core/lsp/base/protocol/telemetry.py +73 -0
- velm/core/lsp/base/rpc/__init__.py +49 -0
- velm/core/lsp/base/rpc/base.py +17 -0
- velm/core/lsp/base/rpc/cancellation.py +54 -0
- velm/core/lsp/base/rpc/codes.py +30 -0
- velm/core/lsp/base/rpc/converter.py +50 -0
- velm/core/lsp/base/rpc/errors.py +56 -0
- velm/core/lsp/base/rpc/filters.py +30 -0
- velm/core/lsp/base/rpc/messages.py +136 -0
- velm/core/lsp/base/rpc/serializer.py +302 -0
- velm/core/lsp/base/state.py +32 -0
- velm/core/lsp/base/telemetry.py +88 -0
- velm/core/lsp/base/types/__init__.py +187 -0
- velm/core/lsp/base/types/base.py +54 -0
- velm/core/lsp/base/types/call_hierarchy.py +69 -0
- velm/core/lsp/base/types/code_action.py +83 -0
- velm/core/lsp/base/types/code_lens.py +23 -0
- velm/core/lsp/base/types/completion.py +230 -0
- velm/core/lsp/base/types/definition.py +88 -0
- velm/core/lsp/base/types/diagnostics.py +129 -0
- velm/core/lsp/base/types/document_highlight.py +68 -0
- velm/core/lsp/base/types/document_link.py +48 -0
- velm/core/lsp/base/types/folding_range.py +93 -0
- velm/core/lsp/base/types/formatting.py +22 -0
- velm/core/lsp/base/types/hover.py +107 -0
- velm/core/lsp/base/types/inlay_hint.py +31 -0
- velm/core/lsp/base/types/inline_completion.py +65 -0
- velm/core/lsp/base/types/lifecycle.py +182 -0
- velm/core/lsp/base/types/navigation.py +104 -0
- velm/core/lsp/base/types/primitives.py +262 -0
- velm/core/lsp/base/types/references.py +79 -0
- velm/core/lsp/base/types/rename.py +61 -0
- velm/core/lsp/base/types/selection_range.py +73 -0
- velm/core/lsp/base/types/semantic_tokens.py +44 -0
- velm/core/lsp/base/types/signature_help.py +131 -0
- velm/core/lsp/base/types/symbols.py +47 -0
- velm/core/lsp/base/types/sync.py +58 -0
- velm/core/lsp/base/types/type_hierarchy.py +65 -0
- velm/core/lsp/base/types/window.py +98 -0
- velm/core/lsp/base/types/workspace.py +155 -0
- velm/core/lsp/base/utils/__init__.py +13 -0
- velm/core/lsp/base/utils/debounce.py +38 -0
- velm/core/lsp/base/utils/position.py +29 -0
- velm/core/lsp/base/utils/text.py +201 -0
- velm/core/lsp/base/utils/timing.py +64 -0
- velm/core/lsp/base/utils/uri.py +267 -0
- velm/core/lsp/base/utils/validation.py +19 -0
- velm/core/lsp/scaffold_features/call_hierarchy/__init__.py +6 -0
- velm/core/lsp/scaffold_features/call_hierarchy/engine.py +26 -0
- velm/core/lsp/scaffold_features/call_hierarchy/providers/daemon_bridge.py +128 -0
- velm/core/lsp/scaffold_features/code_action/__init__.py +25 -0
- velm/core/lsp/scaffold_features/code_action/engine.py +89 -0
- velm/core/lsp/scaffold_features/code_action/models.py +6 -0
- velm/core/lsp/scaffold_features/code_action/providers/artisan_bridge.py +214 -0
- velm/core/lsp/scaffold_features/code_action/providers/neural_healer.py +52 -0
- velm/core/lsp/scaffold_features/code_action/providers/refactor_surgeon.py +57 -0
- velm/core/lsp/scaffold_features/code_action/providers/syntax_medic.py +64 -0
- velm/core/lsp/scaffold_features/code_lens/__init__.py +15 -0
- velm/core/lsp/scaffold_features/code_lens/engine.py +32 -0
- velm/core/lsp/scaffold_features/code_lens/models.py +5 -0
- velm/core/lsp/scaffold_features/code_lens/providers/blueprint.py +55 -0
- velm/core/lsp/scaffold_features/code_lens/providers/intelligence.py +57 -0
- velm/core/lsp/scaffold_features/code_lens/providers/kinetic.py +56 -0
- velm/core/lsp/scaffold_features/completion/__init__.py +17 -0
- velm/core/lsp/scaffold_features/completion/engine.py +278 -0
- velm/core/lsp/scaffold_features/completion/models.py +7 -0
- velm/core/lsp/scaffold_features/completion/providers/__init__.py +27 -0
- velm/core/lsp/scaffold_features/completion/providers/global_prophet.py +160 -0
- velm/core/lsp/scaffold_features/completion/providers/internal.py +153 -0
- velm/core/lsp/scaffold_features/completion/providers/keyword_prophet.py +246 -0
- velm/core/lsp/scaffold_features/completion/providers/path_prophet.py +330 -0
- velm/core/lsp/scaffold_features/completion/providers/variable_prophet.py +92 -0
- velm/core/lsp/scaffold_features/definition/__init__.py +19 -0
- velm/core/lsp/scaffold_features/definition/engine.py +40 -0
- velm/core/lsp/scaffold_features/definition/models.py +6 -0
- velm/core/lsp/scaffold_features/definition/rules/__init__.py +8 -0
- velm/core/lsp/scaffold_features/definition/rules/file_links.py +57 -0
- velm/core/lsp/scaffold_features/definition/rules/global_symbols.py +57 -0
- velm/core/lsp/scaffold_features/definition/rules/local_vars.py +47 -0
- velm/core/lsp/scaffold_features/definition/rules/macros.py +51 -0
- velm/core/lsp/scaffold_features/definition/rules/stdlib.py +38 -0
- velm/core/lsp/scaffold_features/document_link/__init__.py +6 -0
- velm/core/lsp/scaffold_features/document_link/engine.py +25 -0
- velm/core/lsp/scaffold_features/document_link/providers/gnostic_linker.py +114 -0
- velm/core/lsp/scaffold_features/folding_range/__init__.py +21 -0
- velm/core/lsp/scaffold_features/folding_range/engine.py +42 -0
- velm/core/lsp/scaffold_features/folding_range/providers/commentary.py +50 -0
- velm/core/lsp/scaffold_features/folding_range/providers/content_block.py +64 -0
- velm/core/lsp/scaffold_features/folding_range/providers/gnostic_structure.py +70 -0
- velm/core/lsp/scaffold_features/folding_range/providers/indentation_fallback.py +59 -0
- velm/core/lsp/scaffold_features/formatting/__init__.py +6 -0
- velm/core/lsp/scaffold_features/formatting/engine.py +26 -0
- velm/core/lsp/scaffold_features/formatting/models.py +6 -0
- velm/core/lsp/scaffold_features/formatting/providers/__init__.py +5 -0
- velm/core/lsp/scaffold_features/formatting/providers/beautifier.py +105 -0
- velm/core/lsp/scaffold_features/hover/__init__.py +20 -0
- velm/core/lsp/scaffold_features/hover/engine.py +240 -0
- velm/core/lsp/scaffold_features/hover/grimoire_data.py +239 -0
- velm/core/lsp/scaffold_features/hover/models.py +6 -0
- velm/core/lsp/scaffold_features/hover/providers/__init__.py +29 -0
- velm/core/lsp/scaffold_features/hover/providers/alchemy.py +64 -0
- velm/core/lsp/scaffold_features/hover/providers/internal.py +170 -0
- velm/core/lsp/scaffold_features/hover/providers/matter.py +89 -0
- velm/core/lsp/scaffold_features/hover/providers/mentor.py +63 -0
- velm/core/lsp/scaffold_features/inlay_hint/__init__.py +15 -0
- velm/core/lsp/scaffold_features/inlay_hint/engine.py +32 -0
- velm/core/lsp/scaffold_features/inlay_hint/models.py +6 -0
- velm/core/lsp/scaffold_features/inlay_hint/providers/__init__.py +5 -0
- velm/core/lsp/scaffold_features/inlay_hint/providers/macro_param.py +114 -0
- velm/core/lsp/scaffold_features/inlay_hint/providers/shadow_truth.py +96 -0
- velm/core/lsp/scaffold_features/inlay_hint/providers/variable_type.py +112 -0
- velm/core/lsp/scaffold_features/inline_completion/__init__.py +8 -0
- velm/core/lsp/scaffold_features/inline_completion/engine.py +29 -0
- velm/core/lsp/scaffold_features/inline_completion/providers/muse.py +60 -0
- velm/core/lsp/scaffold_features/inline_completion/providers/snippet.py +40 -0
- velm/core/lsp/scaffold_features/linter/__init__.py +19 -0
- velm/core/lsp/scaffold_features/linter/context.py +74 -0
- velm/core/lsp/scaffold_features/linter/engine.py +59 -0
- velm/core/lsp/scaffold_features/linter/registry.py +63 -0
- velm/core/lsp/scaffold_features/linter/rules/architecture_law.py +79 -0
- velm/core/lsp/scaffold_features/linter/rules/artisan_inquest.py +387 -0
- velm/core/lsp/scaffold_features/linter/rules/base.py +79 -0
- velm/core/lsp/scaffold_features/linter/rules/bond_law.py +57 -0
- velm/core/lsp/scaffold_features/linter/rules/complexity_law.py +47 -0
- velm/core/lsp/scaffold_features/linter/rules/geometry_law.py +45 -0
- velm/core/lsp/scaffold_features/linter/rules/security_law.py +47 -0
- velm/core/lsp/scaffold_features/linter/rules/syntax_law.py +53 -0
- velm/core/lsp/scaffold_features/refactoring/__init__.py +7 -0
- velm/core/lsp/scaffold_features/refactoring/engine.py +41 -0
- velm/core/lsp/scaffold_features/refactoring/handlers/rename_files.py +90 -0
- velm/core/lsp/scaffold_features/references/__init__.py +15 -0
- velm/core/lsp/scaffold_features/references/engine.py +36 -0
- velm/core/lsp/scaffold_features/references/models.py +5 -0
- velm/core/lsp/scaffold_features/references/providers/__init__.py +5 -0
- velm/core/lsp/scaffold_features/references/providers/daemon_bridge.py +55 -0
- velm/core/lsp/scaffold_features/references/providers/inclusion.py +49 -0
- velm/core/lsp/scaffold_features/references/providers/local_usage.py +56 -0
- velm/core/lsp/scaffold_features/rename/__init__.py +12 -0
- velm/core/lsp/scaffold_features/rename/contracts.py +41 -0
- velm/core/lsp/scaffold_features/rename/engine.py +33 -0
- velm/core/lsp/scaffold_features/rename/models.py +6 -0
- velm/core/lsp/scaffold_features/rename/mutators/cortex.py +45 -0
- velm/core/lsp/scaffold_features/rename/mutators/local.py +55 -0
- velm/core/lsp/scaffold_features/rename/validator.py +32 -0
- velm/core/lsp/scaffold_features/selection_range/__init__.py +6 -0
- velm/core/lsp/scaffold_features/selection_range/engine.py +26 -0
- velm/core/lsp/scaffold_features/selection_range/providers/semantic_expander.py +236 -0
- velm/core/lsp/scaffold_features/semantic_tokens/__init__.py +6 -0
- velm/core/lsp/scaffold_features/semantic_tokens/engine.py +26 -0
- velm/core/lsp/scaffold_features/semantic_tokens/legend.py +124 -0
- velm/core/lsp/scaffold_features/semantic_tokens/models.py +8 -0
- velm/core/lsp/scaffold_features/semantic_tokens/providers/__init__.py +6 -0
- velm/core/lsp/scaffold_features/semantic_tokens/providers/gnostic.py +117 -0
- velm/core/lsp/scaffold_features/signature_help/__init__.py +15 -0
- velm/core/lsp/scaffold_features/signature_help/engine.py +32 -0
- velm/core/lsp/scaffold_features/signature_help/models.py +6 -0
- velm/core/lsp/scaffold_features/signature_help/providers/__init__.py +5 -0
- velm/core/lsp/scaffold_features/signature_help/providers/alchemist_oracle.py +55 -0
- velm/core/lsp/scaffold_features/signature_help/providers/bridge.py +41 -0
- velm/core/lsp/scaffold_features/signature_help/providers/macro_oracle.py +47 -0
- velm/core/lsp/scaffold_features/symbols/__init__.py +19 -0
- velm/core/lsp/scaffold_features/symbols/engine.py +37 -0
- velm/core/lsp/scaffold_features/symbols/models.py +7 -0
- velm/core/lsp/scaffold_features/symbols/providers/__init__.py +30 -0
- velm/core/lsp/scaffold_features/symbols/providers/base.py +22 -0
- velm/core/lsp/scaffold_features/symbols/providers/logic.py +58 -0
- velm/core/lsp/scaffold_features/symbols/providers/maestro.py +41 -0
- velm/core/lsp/scaffold_features/symbols/providers/matter.py +65 -0
- velm/core/lsp/scaffold_features/symbols/providers/polyglot.py +31 -0
- velm/core/lsp/scaffold_features/symbols/providers/variables.py +37 -0
- velm/core/lsp/scaffold_features/type_hierarchy/__init__.py +6 -0
- velm/core/lsp/scaffold_features/type_hierarchy/engine.py +26 -0
- velm/core/lsp/scaffold_features/type_hierarchy/providers/daemon_bridge.py +129 -0
- velm/core/lsp/scaffold_features/workspace/__init__.py +14 -0
- velm/core/lsp/scaffold_features/workspace/commands.py +57 -0
- velm/core/lsp/scaffold_features/workspace/engine.py +34 -0
- velm/core/lsp/scaffold_features/workspace/grimoire.py +19 -0
- velm/core/lsp/scaffold_features/workspace/watcher.py +31 -0
- velm/core/lsp/scaffold_server/__init__.py +39 -0
- velm/core/lsp/scaffold_server/__main__.py +22 -0
- velm/core/lsp/scaffold_server/adrenaline.py +208 -0
- velm/core/lsp/scaffold_server/auth.py +183 -0
- velm/core/lsp/scaffold_server/bootstrap.py +233 -0
- velm/core/lsp/scaffold_server/commands.py +267 -0
- velm/core/lsp/scaffold_server/engine.py +1157 -0
- velm/core/lsp/scaffold_server/inquest.py +268 -0
- velm/core/lsp/scaffold_server/lifecycle.py +214 -0
- velm/core/lsp/scaffold_server/mirror.py +162 -0
- velm/core/lsp/scaffold_server/relay.py +264 -0
- velm/core/lsp/scaffold_server/sync.py +224 -0
- velm/core/lsp/scaffold_server/telemetry.py +189 -0
- velm/core/maestro/__init__.py +16 -0
- velm/core/maestro/conductor.py +377 -0
- velm/core/maestro/context.py +227 -0
- velm/core/maestro/contracts.py +39 -0
- velm/core/maestro/handlers/__init__.py +14 -0
- velm/core/maestro/handlers/base.py +38 -0
- velm/core/maestro/handlers/browser.py +53 -0
- velm/core/maestro/handlers/hosts.py +109 -0
- velm/core/maestro/handlers/proclaim.py +40 -0
- velm/core/maestro/handlers/raw.py +40 -0
- velm/core/maestro/handlers/shell.py +306 -0
- velm/core/maestro/handlers/tunnel.py +32 -0
- velm/core/maestro/reverser.py +132 -0
- velm/core/maestro/scribe.py +90 -0
- velm/core/net/__init__.py +13 -0
- velm/core/net/aether/__init__.py +14 -0
- velm/core/net/aether/anonymizer.py +19 -0
- velm/core/net/aether/client.py +32 -0
- velm/core/net/tunnel.py +222 -0
- velm/core/observatory/__init__.py +26 -0
- velm/core/observatory/contracts.py +62 -0
- velm/core/observatory/health.py +57 -0
- velm/core/observatory/manager.py +166 -0
- velm/core/observatory/scanner.py +65 -0
- velm/core/observatory/store.py +67 -0
- velm/core/persona/manager.py +74 -0
- velm/core/persona/registry.py +52 -0
- velm/core/redemption/__init__.py +0 -0
- velm/core/redemption/diagnostician/__init__.py +14 -0
- velm/core/redemption/diagnostician/contracts.py +21 -0
- velm/core/redemption/diagnostician/doctor.py +71 -0
- velm/core/redemption/diagnostician/grimoire.py +39 -0
- velm/core/redemption/diagnostician/specialists/__init__.py +0 -0
- velm/core/redemption/diagnostician/specialists/fs_healer.py +73 -0
- velm/core/redemption/diagnostician/specialists/import_healer.py +64 -0
- velm/core/redemption/diagnostician/specialists/network_healer.py +69 -0
- velm/core/redemption/diagnostician/specialists/system_healer.py +151 -0
- velm/core/resolvers/__init__.py +5 -0
- velm/core/resolvers/pathfinder.py +137 -0
- velm/core/runtime/__init__.py +13 -0
- velm/core/runtime/context.py +199 -0
- velm/core/runtime/engine/__init__.py +15 -0
- velm/core/runtime/engine/constants.py +22 -0
- velm/core/runtime/engine/core.py +775 -0
- velm/core/runtime/engine/execution/__init__.py +27 -0
- velm/core/runtime/engine/execution/context.py +93 -0
- velm/core/runtime/engine/execution/dispatcher.py +365 -0
- velm/core/runtime/engine/execution/executor.py +61 -0
- velm/core/runtime/engine/execution/locking.py +35 -0
- velm/core/runtime/engine/execution/retry.py +44 -0
- velm/core/runtime/engine/execution/transaction.py +143 -0
- velm/core/runtime/engine/intelligence/__init__.py +27 -0
- velm/core/runtime/engine/intelligence/cache.py +49 -0
- velm/core/runtime/engine/intelligence/memory.py +36 -0
- velm/core/runtime/engine/intelligence/optimizer.py +46 -0
- velm/core/runtime/engine/intelligence/predictor.py +355 -0
- velm/core/runtime/engine/lifecycle/__init__.py +34 -0
- velm/core/runtime/engine/lifecycle/bootstrap.py +175 -0
- velm/core/runtime/engine/lifecycle/shutdown.py +54 -0
- velm/core/runtime/engine/lifecycle/signals.py +36 -0
- velm/core/runtime/engine/lifecycle/state.py +31 -0
- velm/core/runtime/engine/lifecycle/vitality.py +212 -0
- velm/core/runtime/engine/resilience/__init__.py +27 -0
- velm/core/runtime/engine/resilience/circuit.py +75 -0
- velm/core/runtime/engine/resilience/forensics.py +45 -0
- velm/core/runtime/engine/resilience/healer.py +187 -0
- velm/core/runtime/engine/resilience/watchdog.py +293 -0
- velm/core/runtime/middleware/__init__.py +96 -0
- velm/core/runtime/middleware/adaptive.py +128 -0
- velm/core/runtime/middleware/auth.py +56 -0
- velm/core/runtime/middleware/budget.py +41 -0
- velm/core/runtime/middleware/caching.py +253 -0
- velm/core/runtime/middleware/chaos.py +173 -0
- velm/core/runtime/middleware/circuit.py +85 -0
- velm/core/runtime/middleware/compliance.py +122 -0
- velm/core/runtime/middleware/concourse.py +46 -0
- velm/core/runtime/middleware/constitution.py +130 -0
- velm/core/runtime/middleware/contract.py +30 -0
- velm/core/runtime/middleware/enrichment.py +138 -0
- velm/core/runtime/middleware/entropy_shield.py +202 -0
- velm/core/runtime/middleware/flags.py +179 -0
- velm/core/runtime/middleware/forensics.py +53 -0
- velm/core/runtime/middleware/governor.py +95 -0
- velm/core/runtime/middleware/harmonizer.py +153 -0
- velm/core/runtime/middleware/healing.py +66 -0
- velm/core/runtime/middleware/librarian.py +212 -0
- velm/core/runtime/middleware/notification.py +78 -0
- velm/core/runtime/middleware/optimization.py +78 -0
- velm/core/runtime/middleware/output_veil.py +86 -0
- velm/core/runtime/middleware/persona_warden.py +92 -0
- velm/core/runtime/middleware/pipeline.py +376 -0
- velm/core/runtime/middleware/policy.py +66 -0
- velm/core/runtime/middleware/prerequisites.py +307 -0
- velm/core/runtime/middleware/privacy.py +299 -0
- velm/core/runtime/middleware/profiler.py +178 -0
- velm/core/runtime/middleware/reflective.py +58 -0
- velm/core/runtime/middleware/resonance.py +79 -0
- velm/core/runtime/middleware/safety.py +48 -0
- velm/core/runtime/middleware/singularity.py +98 -0
- velm/core/runtime/middleware/telemetry.py +334 -0
- velm/core/runtime/middleware/tracing.py +53 -0
- velm/core/runtime/middleware/veil.py +74 -0
- velm/core/runtime/plugin_interface.py +26 -0
- velm/core/runtime/registry.py +368 -0
- velm/core/runtime/remote.py +312 -0
- velm/core/runtime/resilience.py +117 -0
- velm/core/runtime/telemetry.py +391 -0
- velm/core/sanctum/base.py +113 -0
- velm/core/sanctum/local.py +309 -0
- velm/core/sanctum/memory.py +379 -0
- velm/core/sanctum/s3.py +203 -0
- velm/core/sanctum/ssh.py +338 -0
- velm/core/sanitization/__init__.py +13 -0
- velm/core/sanitization/ghost_buster.py +116 -0
- velm/core/scaffold.lock +374 -0
- velm/core/scaffold.scaffold +44 -0
- velm/core/semantics/__init__.py +27 -0
- velm/core/semantics/contracts.py +133 -0
- velm/core/semantics/engine.py +223 -0
- velm/core/semantics/intent.py +87 -0
- velm/core/semantics/reranker.py +95 -0
- velm/core/semantics/retriever.py +124 -0
- velm/core/sentinel_conduit.py +164 -0
- velm/core/simulation/__init__.py +16 -0
- velm/core/simulation/conductor/__init__.py +11 -0
- velm/core/simulation/conductor/gnostic_comparator.py +219 -0
- velm/core/simulation/conductor/orchestrator.py +127 -0
- velm/core/simulation/conductor/reality_forge.py +188 -0
- velm/core/simulation/conductor/simulation_mind.py +115 -0
- velm/core/simulation/prophecy.py +33 -0
- velm/core/simulation/scribe.py +232 -0
- velm/core/state/__init__.py +26 -0
- velm/core/state/contracts.py +141 -0
- velm/core/state/gnostic_db/__init__.py +35 -0
- velm/core/state/gnostic_db/engine.py +299 -0
- velm/core/state/gnostic_db/models.py +176 -0
- velm/core/state/ledger.py +46 -0
- velm/core/state/machine.py +25 -0
- velm/core/state/snapshot.py +30 -0
- velm/core/state/store.py +205 -0
- velm/core/structure_sentinel/__init__.py +15 -0
- velm/core/structure_sentinel/contracts.py +24 -0
- velm/core/structure_sentinel/facade.py +84 -0
- velm/core/structure_sentinel/strategies/__init__.py +38 -0
- velm/core/structure_sentinel/strategies/base_strategy.py +17 -0
- velm/core/structure_sentinel/strategies/boundary_strategy.py +59 -0
- velm/core/structure_sentinel/strategies/cpp_strategy.py +115 -0
- velm/core/structure_sentinel/strategies/go_strategy.py +130 -0
- velm/core/structure_sentinel/strategies/java_strategy.py +99 -0
- velm/core/structure_sentinel/strategies/javascript_strategy.py +12 -0
- velm/core/structure_sentinel/strategies/node_strategy.py +160 -0
- velm/core/structure_sentinel/strategies/python_strategy/__init__.py +6 -0
- velm/core/structure_sentinel/strategies/python_strategy/base_faculty.py +43 -0
- velm/core/structure_sentinel/strategies/python_strategy/contracts.py +19 -0
- velm/core/structure_sentinel/strategies/python_strategy/engine.py +101 -0
- velm/core/structure_sentinel/strategies/python_strategy/frameworks/__init__.py +13 -0
- velm/core/structure_sentinel/strategies/python_strategy/frameworks/contracts.py +52 -0
- velm/core/structure_sentinel/strategies/python_strategy/frameworks/engine.py +96 -0
- velm/core/structure_sentinel/strategies/python_strategy/frameworks/heuristics.py +63 -0
- velm/core/structure_sentinel/strategies/python_strategy/frameworks/strategies/__init__.py +14 -0
- velm/core/structure_sentinel/strategies/python_strategy/frameworks/strategies/django.py +57 -0
- velm/core/structure_sentinel/strategies/python_strategy/frameworks/strategies/fastapi.py +46 -0
- velm/core/structure_sentinel/strategies/python_strategy/frameworks/strategies/flask.py +41 -0
- velm/core/structure_sentinel/strategies/python_strategy/frameworks/strategies/typer.py +40 -0
- velm/core/structure_sentinel/strategies/python_strategy/frameworks/surgeon.py +93 -0
- velm/core/structure_sentinel/strategies/python_strategy/semantic/__init__.py +2 -0
- velm/core/structure_sentinel/strategies/python_strategy/semantic/engine.py +171 -0
- velm/core/structure_sentinel/strategies/python_strategy/semantic/guardian.py +172 -0
- velm/core/structure_sentinel/strategies/python_strategy/semantic/harvester.py +142 -0
- velm/core/structure_sentinel/strategies/python_strategy/semantic/weaver.py +232 -0
- velm/core/structure_sentinel/strategies/python_strategy/structural/__init__.py +2 -0
- velm/core/structure_sentinel/strategies/python_strategy/structural/content.py +239 -0
- velm/core/structure_sentinel/strategies/python_strategy/structural/engine.py +192 -0
- velm/core/structure_sentinel/strategies/python_strategy/structural/layout.py +244 -0
- velm/core/structure_sentinel/strategies/python_strategy/testing/__init__.py +5 -0
- velm/core/structure_sentinel/strategies/python_strategy/testing/analyzer.py +90 -0
- velm/core/structure_sentinel/strategies/python_strategy/testing/contracts.py +31 -0
- velm/core/structure_sentinel/strategies/python_strategy/testing/engine.py +100 -0
- velm/core/structure_sentinel/strategies/python_strategy/testing/generator.py +119 -0
- velm/core/structure_sentinel/strategies/ruby_strategy.py +104 -0
- velm/core/structure_sentinel/strategies/rust_strategy.py +169 -0
- velm/core/structure_sentinel/strategies/typescript_strategy.py +12 -0
- velm/core/symbolic/__init__.py +154 -0
- velm/core/symbolic/contracts.py +134 -0
- velm/core/symbolic/engine.py +230 -0
- velm/core/symbolic/inquisitors/__init__.py +119 -0
- velm/core/symbolic/inquisitors/banker.py +166 -0
- velm/core/symbolic/inquisitors/base.py +157 -0
- velm/core/symbolic/inquisitors/bouncer.py +214 -0
- velm/core/symbolic/inquisitors/chronos.py +190 -0
- velm/core/symbolic/inquisitors/librarian.py +284 -0
- velm/core/symbolic/inquisitors/retina.py +154 -0
- velm/core/symbolic/inquisitors/scrier.py +153 -0
- velm/core/symbolic/inquisitors/sentinel.py +155 -0
- velm/core/symbolic/refinement/__init__.py +89 -0
- velm/core/symbolic/refinement/alchemist.py +198 -0
- velm/core/symbolic/refinement/purifier.py +180 -0
- velm/core/symbolic/sutures/__init__.py +76 -0
- velm/core/symbolic/sutures/neural_bridge.py +440 -0
- velm/core/symbolic/sutures/vision_gate.py +178 -0
- velm/core/symbolic/telemetry/__init__.py +75 -0
- velm/core/symbolic/telemetry/pulse.py +128 -0
- velm/core/symbolic.scaffold +28 -0
- velm/core/system/manager.py +304 -0
- velm/core/traceback/__init__.py +15 -0
- velm/core/traceback/contracts.py +123 -0
- velm/core/traceback/handler.py +188 -0
- velm/core/traceback/inspector.py +222 -0
- velm/core/traceback/renderer.py +138 -0
- velm/creator/__init__.py +15 -0
- velm/creator/alu.py +46 -0
- velm/creator/bootloader.py +66 -0
- velm/creator/cpu.py +148 -0
- velm/creator/engine/__init__.py +12 -0
- velm/creator/engine/adjudicator.py +110 -0
- velm/creator/engine/facade.py +237 -0
- velm/creator/factory.py +46 -0
- velm/creator/io_controller/__init__.py +23 -0
- velm/creator/io_controller/contracts.py +17 -0
- velm/creator/io_controller/facade.py +221 -0
- velm/creator/io_controller/ledger_scribe.py +109 -0
- velm/creator/io_controller/operations.py +128 -0
- velm/creator/io_controller/path_alchemist.py +45 -0
- velm/creator/io_controller/security.py +67 -0
- velm/creator/io_controller/transaction_router.py +66 -0
- velm/creator/io_controller/trash.py +126 -0
- velm/creator/io_validators.py +90 -0
- velm/creator/next_step_oracle.py +143 -0
- velm/creator/opcodes.py +39 -0
- velm/creator/registers.py +152 -0
- velm/creator/reports.py +85 -0
- velm/creator/security.py +108 -0
- velm/creator/writer/__init__.py +13 -0
- velm/creator/writer/atomic.py +58 -0
- velm/creator/writer/contracts.py +27 -0
- velm/creator/writer/differential.py +30 -0
- velm/creator/writer/engine.py +327 -0
- velm/creator/writer/normalizer.py +48 -0
- velm/creator/writer/security.py +32 -0
- velm/creator/writer/validator.py +53 -0
- velm/default_templates/template.alembic.ini.scaffold +27 -0
- velm/default_templates/template.changelog.scaffold +23 -0
- velm/default_templates/template.code_of_conduct.scaffold +25 -0
- velm/default_templates/template.contributing.scaffold +52 -0
- velm/default_templates/template.cpp.scaffold +22 -0
- velm/default_templates/template.cs.scaffold +18 -0
- velm/default_templates/template.css.scaffold +17 -0
- velm/default_templates/template.dart.scaffold +14 -0
- velm/default_templates/template.docker-compose.scaffold +34 -0
- velm/default_templates/template.dockerfile.scaffold +31 -0
- velm/default_templates/template.dockerignore.scaffold +32 -0
- velm/default_templates/template.editorconfig.scaffold +33 -0
- velm/default_templates/template.env.example.scaffold +24 -0
- velm/default_templates/template.gitattributes.scaffold +32 -0
- velm/default_templates/template.github-action-python.scaffold +135 -0
- velm/default_templates/template.gitignore.scaffold +28 -0
- velm/default_templates/template.go.scaffold +17 -0
- velm/default_templates/template.html.scaffold +19 -0
- velm/default_templates/template.java.scaffold +27 -0
- velm/default_templates/template.js.scaffold +22 -0
- velm/default_templates/template.json.scaffold +15 -0
- velm/default_templates/template.justfile.scaffold +54 -0
- velm/default_templates/template.kt.scaffold +23 -0
- velm/default_templates/template.license.scaffold +13 -0
- velm/default_templates/template.lua.scaffold +12 -0
- velm/default_templates/template.makefile.scaffold +23 -0
- velm/default_templates/template.nginx.conf.scaffold +42 -0
- velm/default_templates/template.package.scaffold +21 -0
- velm/default_templates/template.php.scaffold +20 -0
- velm/default_templates/template.pre-commit-config.scaffold +30 -0
- velm/default_templates/template.py.scaffold +23 -0
- velm/default_templates/template.pyproject.scaffold +34 -0
- velm/default_templates/template.pytest.ini.scaffold +22 -0
- velm/default_templates/template.readme.scaffold +27 -0
- velm/default_templates/template.rs.scaffold +14 -0
- velm/default_templates/template.ruby.scaffold +11 -0
- velm/default_templates/template.sbt.scaffold +11 -0
- velm/default_templates/template.scaffold.scaffold +28 -0
- velm/default_templates/template.scala.scaffold +6 -0
- velm/default_templates/template.security.scaffold +26 -0
- velm/default_templates/template.settings.json.scaffold +95 -0
- velm/default_templates/template.sh.scaffold +25 -0
- velm/default_templates/template.swift.scaffold +17 -0
- velm/default_templates/template.ts.scaffold +23 -0
- velm/default_templates/template.tsx.scaffold +20 -0
- velm/default_templates/template.zig.scaffold +26 -0
- velm/forge/__init__.py +4 -0
- velm/forge/adapters/base.py +21 -0
- velm/forge/adapters/huggingface.py +147 -0
- velm/forge/conductor.py +60 -0
- velm/forge/corpus_harvester.py +57 -0
- velm/forge/instruction_forger.py +75 -0
- velm/genesis/__init__.py +0 -0
- velm/genesis/genesis_engine/__init__.py +12 -0
- velm/genesis/genesis_engine/apotheosis.py +155 -0
- velm/genesis/genesis_engine/communion.py +333 -0
- velm/genesis/genesis_engine/engine.py +163 -0
- velm/genesis/genesis_engine/materialization.py +236 -0
- velm/genesis/genesis_engine/perception.py +67 -0
- velm/genesis/genesis_engine/weaving.py +227 -0
- velm/genesis/genesis_grimoires.py +142 -0
- velm/genesis/genesis_orchestrator/__init__.py +13 -0
- velm/genesis/genesis_orchestrator/genesis_pleas.py +257 -0
- velm/genesis/genesis_orchestrator/jurisprudence.py +59 -0
- velm/genesis/genesis_orchestrator/oracle.py +91 -0
- velm/genesis/genesis_orchestrator/orchestrator.py +350 -0
- velm/genesis/genesis_orchestrator/pleas.py +146 -0
- velm/genesis/genesis_orchestrator/prophecy.py +177 -0
- velm/genesis/genesis_orchestrator/review.py +167 -0
- velm/genesis/genesis_profiles.py +204 -0
- velm/gnosis/README.md +1 -0
- velm/gnosis/__init__.py +20 -0
- velm/gnosis/canon.py +569 -0
- velm/gnosis/redemption.py +6210 -0
- velm/gnosis/wisdom.py +25 -0
- velm/gnostic_instrumentarium.py +161 -0
- velm/grammar.py +160 -0
- velm/help_registry.py +170 -0
- velm/herald.py +137 -0
- velm/inquisitor/TODO.md +113 -0
- velm/inquisitor/__init__.py +13 -0
- velm/inquisitor/config.py +161 -0
- velm/inquisitor/config_shim.py +7 -0
- velm/inquisitor/core.py +247 -0
- velm/inquisitor/python_inquisitor.py +217 -0
- velm/inquisitor/queries/react_queries.py +68 -0
- velm/inquisitor/sanctum/__Init__.py +0 -0
- velm/inquisitor/sanctum/diagnostics/__init__.py +9 -0
- velm/inquisitor/sanctum/diagnostics/cpp_symbolic_cortex.py +96 -0
- velm/inquisitor/sanctum/diagnostics/go.py +29 -0
- velm/inquisitor/sanctum/diagnostics/go_symbolic_cortex.py +92 -0
- velm/inquisitor/sanctum/diagnostics/java_symbolic_cortex.py +80 -0
- velm/inquisitor/sanctum/diagnostics/javascript.py +45 -0
- velm/inquisitor/sanctum/diagnostics/javascript_symbolic_cortex.py +83 -0
- velm/inquisitor/sanctum/diagnostics/python.py +47 -0
- velm/inquisitor/sanctum/diagnostics/python_symbolic_cortex.py +317 -0
- velm/inquisitor/sanctum/diagnostics/react.py +150 -0
- velm/inquisitor/sanctum/diagnostics/ruby.py +36 -0
- velm/inquisitor/sanctum/diagnostics/ruby_symbolic_cortex.py +84 -0
- velm/inquisitor/sanctum/diagnostics/rust.py +34 -0
- velm/inquisitor/sanctum/diagnostics/rust_symbolic_cortex.py +117 -0
- velm/inquisitor/sanctum/diagnostics/typescript_symbolic_cortex.py +80 -0
- velm/inquisitor/sanctum/engine.py +298 -0
- velm/interfaces/__init__.py +61 -0
- velm/interfaces/base.py +241 -0
- velm/interfaces/requests.py +4854 -0
- velm/jurisprudence_core/__init__.py +0 -0
- velm/jurisprudence_core/adjudicator_of_souls.py +136 -0
- velm/jurisprudence_core/architectural_grimoire.py +448 -0
- velm/jurisprudence_core/foreign_adjudicators.py +25 -0
- velm/jurisprudence_core/genesis_jurisprudence.py +159 -0
- velm/jurisprudence_core/gnostic_type_system.py +361 -0
- velm/jurisprudence_core/heresy_chronicles/__init__.py +5 -0
- velm/jurisprudence_core/heresy_chronicles/heresy_chronicler.py +205 -0
- velm/jurisprudence_core/heresy_chronicles/living_oracle.py +95 -0
- velm/jurisprudence_core/heresy_codex/__init__.py +45 -0
- velm/jurisprudence_core/heresy_codex/architectural.py +109 -0
- velm/jurisprudence_core/heresy_codex/data.py +39 -0
- velm/jurisprudence_core/heresy_codex/hygiene.py +89 -0
- velm/jurisprudence_core/heresy_codex/infra.py +125 -0
- velm/jurisprudence_core/heresy_codex/lexical.py +120 -0
- velm/jurisprudence_core/heresy_codex/meta.py +60 -0
- velm/jurisprudence_core/heresy_codex/perf.py +59 -0
- velm/jurisprudence_core/heresy_codex/security.py +81 -0
- velm/jurisprudence_core/heresy_codex/supply_chain.py +99 -0
- velm/jurisprudence_core/jurisprudence.py +117 -0
- velm/jurisprudence_core/scaffold_grammar_codex.py +131 -0
- velm/jurisprudence_core/schema_adjudicator.py +225 -0
- velm/jurisprudence_core/symphony_grammar_codex.py +182 -0
- velm/jurisprudence_core/symphony_heresy_codex/__init__.py +34 -0
- velm/jurisprudence_core/symphony_heresy_codex/kinetic.py +124 -0
- velm/jurisprudence_core/symphony_heresy_codex/lexical.py +59 -0
- velm/jurisprudence_core/symphony_heresy_codex/metaphysical.py +153 -0
- velm/jurisprudence_core/symphony_heresy_codex/philosophy.py +186 -0
- velm/jurisprudence_core/symphony_heresy_codex/polyglot.py +99 -0
- velm/language_server_handler.py +121 -0
- velm/logger.py +958 -0
- velm/main.py +328 -0
- velm/parser_core/__init__.py +1 -0
- velm/parser_core/block_consumer.py +135 -0
- velm/parser_core/hierophant.py +52 -0
- velm/parser_core/lexer_core/__init__.py +15 -0
- velm/parser_core/lexer_core/contracts.py +142 -0
- velm/parser_core/lexer_core/deconstructor.py +439 -0
- velm/parser_core/lexer_core/inquisitor.py +280 -0
- velm/parser_core/lexer_core/lexer.py +75 -0
- velm/parser_core/lfg_builder/__init__.py +15 -0
- velm/parser_core/lfg_builder/builders/blueprint.py +94 -0
- velm/parser_core/lfg_builder/builders/codebase_python.py +100 -0
- velm/parser_core/lfg_builder/contracts.py +46 -0
- velm/parser_core/lfg_builder/facade.py +43 -0
- velm/parser_core/lfg_builder/renderers/mermaid.py +50 -0
- velm/parser_core/logic_weaver/__init__.py +16 -0
- velm/parser_core/logic_weaver/contracts.py +45 -0
- velm/parser_core/logic_weaver/engine.py +113 -0
- velm/parser_core/logic_weaver/state.py +59 -0
- velm/parser_core/logic_weaver/traversal.py +282 -0
- velm/parser_core/manifest_parser.py +231 -0
- velm/parser_core/parser/__init__.py +15 -0
- velm/parser_core/parser/ast_weaver/__init__.py +11 -0
- velm/parser_core/parser/ast_weaver/contracts.py +19 -0
- velm/parser_core/parser/ast_weaver/node_factory.py +33 -0
- velm/parser_core/parser/ast_weaver/stack_manager.py +127 -0
- velm/parser_core/parser/ast_weaver/weaver.py +208 -0
- velm/parser_core/parser/engine.py +421 -0
- velm/parser_core/parser/gateway.py +59 -0
- velm/parser_core/parser/parser_scribes/__init__.py +65 -0
- velm/parser_core/parser/parser_scribes/base_scribe.py +44 -0
- velm/parser_core/parser/parser_scribes/scaffold_scribes/__init__.py +10 -0
- velm/parser_core/parser/parser_scribes/scaffold_scribes/comment_scribe.py +150 -0
- velm/parser_core/parser/parser_scribes/scaffold_scribes/contract_scribe.py +163 -0
- velm/parser_core/parser/parser_scribes/scaffold_scribes/directive_scribe.py +325 -0
- velm/parser_core/parser/parser_scribes/scaffold_scribes/jinja_scribe.py +40 -0
- velm/parser_core/parser/parser_scribes/scaffold_scribes/makefile_scribe.py +77 -0
- velm/parser_core/parser/parser_scribes/scaffold_scribes/on_undo_scribe.py +24 -0
- velm/parser_core/parser/parser_scribes/scaffold_scribes/post_run_scribe.py +195 -0
- velm/parser_core/parser/parser_scribes/scaffold_scribes/scaffold_base_scribe.py +16 -0
- velm/parser_core/parser/parser_scribes/scaffold_scribes/structural_scribe.py +346 -0
- velm/parser_core/parser/parser_scribes/scaffold_scribes/variable_scribe.py +204 -0
- velm/parser_core/parser/parser_scribes/symphony_scribes/__init__.py +8 -0
- velm/parser_core/parser/parser_scribes/symphony_scribes/symphony_atomic_scribe.py +430 -0
- velm/parser_core/parser/parser_scribes/symphony_scribes/symphony_base_scribe.py +51 -0
- velm/parser_core/parser/parser_scribes/symphony_scribes/symphony_block_scribe.py +78 -0
- velm/parser_core/parser/parser_scribes/symphony_scribes/symphony_communion_scribe.py +212 -0
- velm/parser_core/parser/parser_scribes/symphony_scribes/symphony_directive_scribe.py +657 -0
- velm/parser_core/parser/parser_scribes/symphony_scribes/symphony_logic_scribe.py +152 -0
- velm/parser_core/parser/parser_scribes/symphony_scribes/symphony_parallel_scribe.py +156 -0
- velm/parser_core/parser/parser_scribes/symphony_scribes/symphony_polyglot_scribe.py +293 -0
- velm/prophecy/__Init__.py +25 -0
- velm/prophecy/grimoires.py +137 -0
- velm/prophecy/oracle.py +167 -0
- velm/rendering/POSSIBILITIES.txt +73 -0
- velm/rendering/__init__.py +98 -0
- velm/rendering/base_renderer.py +162 -0
- velm/rendering/json_renderer.py +175 -0
- velm/rendering/lfg_scribe.py +101 -0
- velm/rendering/studio.log +12 -0
- velm/rendering/svg_renderer.py +866 -0
- velm/rendering/text_renderer/__init__.py +11 -0
- velm/rendering/text_renderer/canonical_scribe.py +29 -0
- velm/rendering/text_renderer/config.py +19 -0
- velm/rendering/text_renderer/content_previewer.py +49 -0
- velm/rendering/text_renderer/diagnostic_scribe.py +55 -0
- velm/rendering/text_renderer/facade.py +60 -0
- velm/rendering/text_renderer/luminous_scribe.py +92 -0
- velm/rendering/text_renderer/metadata_herald.py +87 -0
- velm/rendering/text_renderer/telemetry.py +15 -0
- velm/rendering/text_renderer/tree_weaver.py +128 -0
- velm/rendering/theme.py +88 -0
- velm/rendering/tree_renderer.py +34 -0
- velm/runtime_manager/__Init__.py +3 -0
- velm/runtime_manager/codex.py +218 -0
- velm/runtime_manager/manager.py +611 -0
- velm/semantic_injection/__init__.py +40 -0
- velm/semantic_injection/contract.py +70 -0
- velm/semantic_injection/directives/__init__.py +15 -0
- velm/semantic_injection/directives/ai_domain.py +312 -0
- velm/semantic_injection/directives/api_domain.py +114 -0
- velm/semantic_injection/directives/auth_domain.py +171 -0
- velm/semantic_injection/directives/cloud_domain.py +228 -0
- velm/semantic_injection/directives/crypto_domain.py +109 -0
- velm/semantic_injection/directives/data_domain.py +94 -0
- velm/semantic_injection/directives/diagram_domain.py +86 -0
- velm/semantic_injection/directives/editor_domain.py +126 -0
- velm/semantic_injection/directives/fetch_domain.py +81 -0
- velm/semantic_injection/directives/flow_domain.py +163 -0
- velm/semantic_injection/directives/git_domain.py +223 -0
- velm/semantic_injection/directives/guide_domain.py +71 -0
- velm/semantic_injection/directives/guide_knowledge/__init__.py +19 -0
- velm/semantic_injection/directives/guide_knowledge/accessibility.py +7 -0
- velm/semantic_injection/directives/guide_knowledge/algorithms.py +11 -0
- velm/semantic_injection/directives/guide_knowledge/architecture_patterns.py +11 -0
- velm/semantic_injection/directives/guide_knowledge/auth_security.py +10 -0
- velm/semantic_injection/directives/guide_knowledge/aws_terms.py +9 -0
- velm/semantic_injection/directives/guide_knowledge/clean_code.py +7 -0
- velm/semantic_injection/directives/guide_knowledge/cloud_native.py +6 -0
- velm/semantic_injection/directives/guide_knowledge/data_structures.py +12 -0
- velm/semantic_injection/directives/guide_knowledge/database_concepts.py +8 -0
- velm/semantic_injection/directives/guide_knowledge/design_patterns.py +13 -0
- velm/semantic_injection/directives/guide_knowledge/devops.py +11 -0
- velm/semantic_injection/directives/guide_knowledge/git_flow.py +8 -0
- velm/semantic_injection/directives/guide_knowledge/graphql.py +8 -0
- velm/semantic_injection/directives/guide_knowledge/javascript_modern.py +8 -0
- velm/semantic_injection/directives/guide_knowledge/python_idioms.py +8 -0
- velm/semantic_injection/directives/guide_knowledge/react_patterns.py +8 -0
- velm/semantic_injection/directives/guide_knowledge/realtime.py +6 -0
- velm/semantic_injection/directives/guide_knowledge/refactoring.py +7 -0
- velm/semantic_injection/directives/guide_knowledge/rest_api.py +10 -0
- velm/semantic_injection/directives/guide_knowledge/solid.py +8 -0
- velm/semantic_injection/directives/guide_knowledge/testing.py +9 -0
- velm/semantic_injection/directives/guide_knowledge/ux_laws.py +7 -0
- velm/semantic_injection/directives/infra_knowledge/__init__.py +3 -0
- velm/semantic_injection/directives/infra_knowledge/registry.py +211 -0
- velm/semantic_injection/directives/integration_domain.py +131 -0
- velm/semantic_injection/directives/kinesis_domain.py +137 -0
- velm/semantic_injection/directives/legal_domain.py +181 -0
- velm/semantic_injection/directives/mock_domain.py +115 -0
- velm/semantic_injection/directives/neuron_domain.py +168 -0
- velm/semantic_injection/directives/neuron_knowledge/__init__.py +11 -0
- velm/semantic_injection/directives/neuron_knowledge/agents.py +423 -0
- velm/semantic_injection/directives/neuron_knowledge/edge.py +263 -0
- velm/semantic_injection/directives/neuron_knowledge/evaluation.py +262 -0
- velm/semantic_injection/directives/neuron_knowledge/memory.py +324 -0
- velm/semantic_injection/directives/neuron_knowledge/optimization.py +284 -0
- velm/semantic_injection/directives/neuron_knowledge/orchestration.py +243 -0
- velm/semantic_injection/directives/neuron_knowledge/providers.py +279 -0
- velm/semantic_injection/directives/ops_domain.py +94 -0
- velm/semantic_injection/directives/policy_domain.py +132 -0
- velm/semantic_injection/directives/shield_domain.py +127 -0
- velm/semantic_injection/directives/stack_domain.py +163 -0
- velm/semantic_injection/directives/struct_domain.py +136 -0
- velm/semantic_injection/directives/test_domain.py +115 -0
- velm/semantic_injection/directives/ui_domain.py +333 -0
- velm/semantic_injection/directives/ui_knowledge/__init__.py +49 -0
- velm/semantic_injection/directives/ui_knowledge/admin_dashboard/admin_dashboard.scaffold +379 -0
- velm/semantic_injection/directives/ui_knowledge/admin_dashboard/src/App.tsx +33 -0
- velm/semantic_injection/directives/ui_knowledge/admin_dashboard/src/components/auth/AuthGuard.tsx +4 -0
- velm/semantic_injection/directives/ui_knowledge/admin_dashboard/src/components/dashboard/RecentSales.tsx +21 -0
- velm/semantic_injection/directives/ui_knowledge/admin_dashboard/src/components/dashboard/StatsCards.tsx +28 -0
- velm/semantic_injection/directives/ui_knowledge/admin_dashboard/src/components/layout/Header.tsx +30 -0
- velm/semantic_injection/directives/ui_knowledge/admin_dashboard/src/components/layout/Sidebar.tsx +49 -0
- velm/semantic_injection/directives/ui_knowledge/admin_dashboard/src/components/layout/UserNav.tsx +43 -0
- velm/semantic_injection/directives/ui_knowledge/admin_dashboard/src/components/ui/avatar.tsx +47 -0
- velm/semantic_injection/directives/ui_knowledge/admin_dashboard/src/components/ui/badge.tsx +32 -0
- velm/semantic_injection/directives/ui_knowledge/admin_dashboard/src/components/ui/button.tsx +52 -0
- velm/semantic_injection/directives/ui_knowledge/admin_dashboard/src/components/ui/card.tsx +66 -0
- velm/semantic_injection/directives/ui_knowledge/admin_dashboard/src/components/ui/dropdown-menu.tsx +90 -0
- velm/semantic_injection/directives/ui_knowledge/admin_dashboard/src/components/ui/input.tsx +24 -0
- velm/semantic_injection/directives/ui_knowledge/admin_dashboard/src/components/ui/skeleton.tsx +15 -0
- velm/semantic_injection/directives/ui_knowledge/admin_dashboard/src/components/ui/table.tsx +116 -0
- velm/semantic_injection/directives/ui_knowledge/admin_dashboard/src/hooks/useAuth.ts +35 -0
- velm/semantic_injection/directives/ui_knowledge/admin_dashboard/src/layouts/DashboardLayout.tsx +25 -0
- velm/semantic_injection/directives/ui_knowledge/admin_dashboard/src/lib/utils.ts +6 -0
- velm/semantic_injection/directives/ui_knowledge/admin_dashboard/src/pages/DashboardPage.tsx +40 -0
- velm/semantic_injection/directives/ui_knowledge/admin_dashboard/src/pages/UsersPage.tsx +39 -0
- velm/semantic_injection/directives/ui_knowledge/admin_dashboard.py +123 -0
- velm/semantic_injection/directives/ui_knowledge/ascend_ui_knowledge.scaffold +421 -0
- velm/semantic_injection/directives/ui_knowledge/auth_form.py +90 -0
- velm/semantic_injection/directives/ui_knowledge/command_palette.py +59 -0
- velm/semantic_injection/directives/ui_knowledge/data_table.py +121 -0
- velm/semantic_injection/directives/ui_knowledge/gnostic_html_kit.scaffold +704 -0
- velm/semantic_injection/directives/ui_knowledge/go_tui.py +51 -0
- velm/semantic_injection/directives/ui_knowledge/go_ui/__init__.py +0 -0
- velm/semantic_injection/directives/ui_knowledge/go_ui/go.mod +9 -0
- velm/semantic_injection/directives/ui_knowledge/go_ui/main.go +145 -0
- velm/semantic_injection/directives/ui_knowledge/go_ui/tui_forge.py +58 -0
- velm/semantic_injection/directives/ui_knowledge/go_ui/ui/atoms/badge.go +34 -0
- velm/semantic_injection/directives/ui_knowledge/go_ui/ui/atoms/button.go +34 -0
- velm/semantic_injection/directives/ui_knowledge/go_ui/ui/atoms/separator.go +19 -0
- velm/semantic_injection/directives/ui_knowledge/go_ui/ui/atoms/spinner.go +15 -0
- velm/semantic_injection/directives/ui_knowledge/go_ui/ui/molecules/card.go +24 -0
- velm/semantic_injection/directives/ui_knowledge/go_ui/ui/molecules/input_field.go +22 -0
- velm/semantic_injection/directives/ui_knowledge/go_ui/ui/molecules/progress_bar.go +24 -0
- velm/semantic_injection/directives/ui_knowledge/go_ui/ui/molecules/status_item.go +17 -0
- velm/semantic_injection/directives/ui_knowledge/go_ui/ui/organisms/datatable.go +45 -0
- velm/semantic_injection/directives/ui_knowledge/go_ui/ui/organisms/help_footer.go +38 -0
- velm/semantic_injection/directives/ui_knowledge/go_ui/ui/organisms/log_viewport.go +28 -0
- velm/semantic_injection/directives/ui_knowledge/go_ui/ui/organisms/tabs.go +73 -0
- velm/semantic_injection/directives/ui_knowledge/go_ui/ui/theme/theme.go +37 -0
- velm/semantic_injection/directives/ui_knowledge/go_ui.scaffold +635 -0
- velm/semantic_injection/directives/ui_knowledge/html_ui/__init__.py +0 -0
- velm/semantic_injection/directives/ui_knowledge/html_ui/html_forge.py +104 -0
- velm/semantic_injection/directives/ui_knowledge/html_ui/index.html +44 -0
- velm/semantic_injection/directives/ui_knowledge/html_ui/src/components/atoms/badge.html +13 -0
- velm/semantic_injection/directives/ui_knowledge/html_ui/src/components/atoms/btn_ghost.html +5 -0
- velm/semantic_injection/directives/ui_knowledge/html_ui/src/components/atoms/btn_gradient.html +8 -0
- velm/semantic_injection/directives/ui_knowledge/html_ui/src/components/atoms/btn_icon.html +10 -0
- velm/semantic_injection/directives/ui_knowledge/html_ui/src/components/atoms/btn_outline.html +8 -0
- velm/semantic_injection/directives/ui_knowledge/html_ui/src/components/atoms/btn_primary.html +15 -0
- velm/semantic_injection/directives/ui_knowledge/html_ui/src/components/atoms/checkbox_custom.html +20 -0
- velm/semantic_injection/directives/ui_knowledge/html_ui/src/components/atoms/input_basic.html +13 -0
- velm/semantic_injection/directives/ui_knowledge/html_ui/src/components/atoms/input_floating.html +23 -0
- velm/semantic_injection/directives/ui_knowledge/html_ui/src/components/atoms/loader.html +11 -0
- velm/semantic_injection/directives/ui_knowledge/html_ui/src/components/atoms/radio_custom.html +19 -0
- velm/semantic_injection/directives/ui_knowledge/html_ui/src/components/atoms/toggle_switch.html +20 -0
- velm/semantic_injection/directives/ui_knowledge/html_ui/src/components/molecules/accordion.html +25 -0
- velm/semantic_injection/directives/ui_knowledge/html_ui/src/components/molecules/alert_card.html +18 -0
- velm/semantic_injection/directives/ui_knowledge/html_ui/src/components/molecules/card_basic.html +19 -0
- velm/semantic_injection/directives/ui_knowledge/html_ui/src/components/molecules/card_glass.html +16 -0
- velm/semantic_injection/directives/ui_knowledge/html_ui/src/components/molecules/modal.html +29 -0
- velm/semantic_injection/directives/ui_knowledge/html_ui/src/components/molecules/search_bar.html +20 -0
- velm/semantic_injection/directives/ui_knowledge/html_ui/src/components/molecules/tooltip_top.html +20 -0
- velm/semantic_injection/directives/ui_knowledge/html_ui/src/components/molecules/user_profile.html +20 -0
- velm/semantic_injection/directives/ui_knowledge/html_ui/src/components/organisms/data_table.html +25 -0
- velm/semantic_injection/directives/ui_knowledge/html_ui/src/components/organisms/footer.html +28 -0
- velm/semantic_injection/directives/ui_knowledge/html_ui/src/components/organisms/hero_section.html +21 -0
- velm/semantic_injection/directives/ui_knowledge/html_ui/src/components/organisms/navbar.html +21 -0
- velm/semantic_injection/directives/ui_knowledge/html_ui/src/components/organisms/pricing_table.html +37 -0
- velm/semantic_injection/directives/ui_knowledge/html_ui/src/components/organisms/sidebar.html +30 -0
- velm/semantic_injection/directives/ui_knowledge/html_ui/src/css/variables.css +44 -0
- velm/semantic_injection/directives/ui_knowledge/layouts.py +242 -0
- velm/semantic_injection/directives/ui_knowledge/multi_step_wizard.py +95 -0
- velm/semantic_injection/directives/ui_knowledge/python_ui/__init__.py +17 -0
- velm/semantic_injection/directives/ui_knowledge/python_ui/dash_forge.py +55 -0
- velm/semantic_injection/directives/ui_knowledge/python_ui/flet_forge.py +39 -0
- velm/semantic_injection/directives/ui_knowledge/python_ui/gradio_forge.py +79 -0
- velm/semantic_injection/directives/ui_knowledge/python_ui/nicegui_forge.py +39 -0
- velm/semantic_injection/directives/ui_knowledge/python_ui/reflex_forge.py +51 -0
- velm/semantic_injection/directives/ui_knowledge/python_ui/streamlit_forge.py +116 -0
- velm/semantic_injection/directives/ui_knowledge/python_ui/textual_forge.py +48 -0
- velm/semantic_injection/directives/ui_knowledge/react/__init__.py +28 -0
- velm/semantic_injection/directives/ui_knowledge/react/atoms.py +128 -0
- velm/semantic_injection/directives/ui_knowledge/react/charts.py +134 -0
- velm/semantic_injection/directives/ui_knowledge/react/data_display.py +139 -0
- velm/semantic_injection/directives/ui_knowledge/react/disclosure.py +92 -0
- velm/semantic_injection/directives/ui_knowledge/react/feedback.py +92 -0
- velm/semantic_injection/directives/ui_knowledge/react/forms_advanced.py +94 -0
- velm/semantic_injection/directives/ui_knowledge/react/menus.py +223 -0
- velm/semantic_injection/directives/ui_knowledge/react/molecules.py +146 -0
- velm/semantic_injection/directives/ui_knowledge/react/navigation_complex.py +73 -0
- velm/semantic_injection/directives/ui_knowledge/react/overlays.py +107 -0
- velm/semantic_injection/directives/ui_knowledge/react/structures.py +423 -0
- velm/semantic_injection/directives/ui_knowledge/react/visuals.py +102 -0
- velm/semantic_injection/directives/ui_knowledge/registry.py +35 -0
- velm/semantic_injection/directives/ui_knowledge/user_loader.py +66 -0
- velm/semantic_injection/injector.py +216 -0
- velm/semantic_injection/loader.py +300 -0
- velm/settings/manager.py +277 -0
- velm/settings/schema.py +236 -0
- velm/settings/tui.py +615 -0
- velm/setup_entry.py +40 -0
- velm/shell/__init__.py +3 -0
- velm/shell/app.py +408 -0
- velm/shell/contracts.py +31 -0
- velm/shell/interpreter.py +123 -0
- velm/shell/shell.css +172 -0
- velm/shell/widgets/dossier.py +114 -0
- velm/shell/widgets/history_screen.py +65 -0
- velm/shell/widgets/orrery.py +111 -0
- velm/shell/widgets/prompter.py +208 -0
- velm/shell/widgets/suggestion_menu.py +32 -0
- velm/studio/IMPORTANT.txt +0 -0
- velm/studio/__init__.py +11 -0
- velm/studio/app.css +213 -0
- velm/studio/app.py +426 -0
- velm/studio/contracts.py +204 -0
- velm/studio/emissary.py +81 -0
- velm/studio/gnostic_events.py +88 -0
- velm/studio/logger.py +84 -0
- velm/studio/main.py +113 -0
- velm/studio/messages.py +62 -0
- velm/studio/pads/__init__.py +5 -0
- velm/studio/pads/distill_pad/__init__.py +3 -0
- velm/studio/pads/distill_pad/distill_pad.css +271 -0
- velm/studio/pads/distill_pad/distill_pad_app.py +294 -0
- velm/studio/pads/distill_pad/state.py +73 -0
- velm/studio/pads/distill_pad/widgets/__init__.py +6 -0
- velm/studio/pads/distill_pad/widgets/config_pane.py +112 -0
- velm/studio/pads/distill_pad/widgets/file_picker.py +158 -0
- velm/studio/pads/distill_pad/widgets/file_selector.py +241 -0
- velm/studio/pads/distill_pad/widgets/preview_pane.py +223 -0
- velm/studio/pads/distill_pad.scaffold +10 -0
- velm/studio/pads/genesis_pad.py +487 -0
- velm/studio/pads/pad.css +112 -0
- velm/studio/pads/pad_launcher.py +200 -0
- velm/studio/pads/refactor.css +222 -0
- velm/studio/pads/refactor_pad.py +888 -0
- velm/studio/pads/scaffold_pad.py +529 -0
- velm/studio/pads/studio.log +1 -0
- velm/studio/screens/__init__.py +5 -0
- velm/studio/screens/form_mode.py +302 -0
- velm/studio/screens/mentors_gaze.py +54 -0
- velm/studio/screens/studio.log +1 -0
- velm/studio/screens/will_mode.py +22 -0
- velm/studio/services/__init__.py +12 -0
- velm/studio/services/command_gnosis.py +78 -0
- velm/studio/services/fs_watcher.py +296 -0
- velm/studio/services/scaffold_bridge.py +232 -0
- velm/studio/state.py +330 -0
- velm/studio/studio.log +11 -0
- velm/studio/studio.scaffold +24 -0
- velm/studio/widgets/__init__.py +13 -0
- velm/studio/widgets/command_altar.py +307 -0
- velm/studio/widgets/context_menu.py +129 -0
- velm/studio/widgets/editor.py +15 -0
- velm/studio/widgets/file_tree.py +322 -0
- velm/studio/widgets/log_viewer.py +174 -0
- velm/studio/widgets/studio.log +11 -0
- velm/symphony/__init__.py +59 -0
- velm/symphony/build.symphony +43 -0
- velm/symphony/conductor/__init__.py +7 -0
- velm/symphony/conductor/events.py +6 -0
- velm/symphony/conductor/orchestrator.py +281 -0
- velm/symphony/conductor_core/__init__.py +26 -0
- velm/symphony/conductor_core/context/__init__.py +14 -0
- velm/symphony/conductor_core/context/chronicle.py +38 -0
- velm/symphony/conductor_core/context/manager.py +307 -0
- velm/symphony/conductor_core/context/scope.py +50 -0
- velm/symphony/conductor_core/context/vault.py +287 -0
- velm/symphony/conductor_core/engine.py +179 -0
- velm/symphony/conductor_core/handlers/TODO.md +3 -0
- velm/symphony/conductor_core/handlers/__init__.py +112 -0
- velm/symphony/conductor_core/handlers/action_handler/__init__.py +15 -0
- velm/symphony/conductor_core/handlers/action_handler/contracts.py +56 -0
- velm/symphony/conductor_core/handlers/action_handler/dispatcher.py +166 -0
- velm/symphony/conductor_core/handlers/action_handler/facade.py +117 -0
- velm/symphony/conductor_core/handlers/action_handler/specialists/interactive.py +108 -0
- velm/symphony/conductor_core/handlers/action_handler/specialists/kinetic.py +176 -0
- velm/symphony/conductor_core/handlers/action_handler/specialists/network.py +171 -0
- velm/symphony/conductor_core/handlers/action_handler/specialists/polyglot.py +89 -0
- velm/symphony/conductor_core/handlers/action_handler/specialists/service.py +96 -0
- velm/symphony/conductor_core/handlers/action_handler/utils/redaction.py +24 -0
- velm/symphony/conductor_core/handlers/base.py +119 -0
- velm/symphony/conductor_core/handlers/logic_handler.py +92 -0
- velm/symphony/conductor_core/handlers/meta_handler.py +75 -0
- velm/symphony/conductor_core/handlers/parallel_handler.py +38 -0
- velm/symphony/conductor_core/handlers/state_handler/__init__.py +13 -0
- velm/symphony/conductor_core/handlers/state_handler/contracts.py +30 -0
- velm/symphony/conductor_core/handlers/state_handler/dispatcher.py +70 -0
- velm/symphony/conductor_core/handlers/state_handler/facade.py +49 -0
- velm/symphony/conductor_core/handlers/state_handler/specialists/artifact.py +18 -0
- velm/symphony/conductor_core/handlers/state_handler/specialists/environment.py +34 -0
- velm/symphony/conductor_core/handlers/state_handler/specialists/lifecycle.py +41 -0
- velm/symphony/conductor_core/handlers/state_handler/specialists/proclamation.py +22 -0
- velm/symphony/conductor_core/handlers/state_handler/specialists/sanctum.py +33 -0
- velm/symphony/conductor_core/handlers/state_handler/specialists/temporal.py +20 -0
- velm/symphony/conductor_core/handlers/state_handler/specialists/variable.py +63 -0
- velm/symphony/conductor_core/handlers/state_handler/utils/path_resolver.py +41 -0
- velm/symphony/conductor_core/handlers/state_handler/utils/time_parser.py +25 -0
- velm/symphony/conductor_core/handlers/state_handler/utils/type_diviner.py +55 -0
- velm/symphony/conductor_core/handlers/vow_handler/__init__.py +13 -0
- velm/symphony/conductor_core/handlers/vow_handler/adjudicator.py +96 -0
- velm/symphony/conductor_core/handlers/vow_handler/contracts.py +24 -0
- velm/symphony/conductor_core/handlers/vow_handler/facade.py +63 -0
- velm/symphony/conductor_core/lifecycle/__init__.py +18 -0
- velm/symphony/conductor_core/lifecycle/contracts.py +35 -0
- velm/symphony/conductor_core/lifecycle/manager.py +208 -0
- velm/symphony/conductor_core/lifecycle/supervisor.py +212 -0
- velm/symphony/conductor_core/resilience/__init__.py +14 -0
- velm/symphony/conductor_core/resilience/artifacts.py +50 -0
- velm/symphony/conductor_core/resilience/contracts.py +55 -0
- velm/symphony/conductor_core/resilience/diagnosis.py +121 -0
- velm/symphony/conductor_core/resilience/intercession.py +225 -0
- velm/symphony/conductor_core/resilience/manager.py +208 -0
- velm/symphony/conductor_core/setup.py +238 -0
- velm/symphony/docs_generator.symphony +45 -0
- velm/symphony/execution/__init__.py +17 -0
- velm/symphony/execution/interface.py +103 -0
- velm/symphony/execution/kinetic_titan/__init__.py +13 -0
- velm/symphony/execution/kinetic_titan/executor.py +221 -0
- velm/symphony/execution/kinetic_titan/renderer.py +255 -0
- velm/symphony/execution/kinetic_titan/security.py +37 -0
- velm/symphony/execution/kinetic_titan/semantics.py +155 -0
- velm/symphony/execution/kinetic_titan/titan/__init__.py +14 -0
- velm/symphony/execution/kinetic_titan/titan/loops.py +406 -0
- velm/symphony/execution/kinetic_titan/titan/orchestrator.py +187 -0
- velm/symphony/execution/kinetic_titan/titan/state.py +185 -0
- velm/symphony/execution/kinetic_titan/titan/visuals.py +73 -0
- velm/symphony/execution/prophetic_oracle.py +113 -0
- velm/symphony/inquisitor/__init__.py +16 -0
- velm/symphony/inquisitor/oracle.py +172 -0
- velm/symphony/inquisitor/renderer.py +145 -0
- velm/symphony/inquisitor/temporal.py +133 -0
- velm/symphony/polyglot/__init__.py +68 -0
- velm/symphony/polyglot/adjudicators.py +77 -0
- velm/symphony/polyglot/artisan.py +396 -0
- velm/symphony/polyglot/grimoire.py +227 -0
- velm/symphony/polyglot/wards/__init__.py +0 -0
- velm/symphony/polyglot/wards/go_ward.py +20 -0
- velm/symphony/polyglot/wards/java_ward.py +21 -0
- velm/symphony/polyglot/wards/python_ward.py +37 -0
- velm/symphony/polyglot/wards/ruby_ward.py +49 -0
- velm/symphony/proclamations/__init__.py +0 -0
- velm/symphony/proclamations/base.py +39 -0
- velm/symphony/proclamations/file_scribe.py +47 -0
- velm/symphony/proclamations/panel_scribe.py +46 -0
- velm/symphony/proclamations/router.py +65 -0
- velm/symphony/proclamations/slack_scribe.py +93 -0
- velm/symphony/proclamations/table_scribe.py +109 -0
- velm/symphony/release.symphony +31 -0
- velm/symphony/renderers/__init__.py +17 -0
- velm/symphony/renderers/base.py +72 -0
- velm/symphony/renderers/basic_renderer/__init__.py +12 -0
- velm/symphony/renderers/basic_renderer/codex.py +16 -0
- velm/symphony/renderers/basic_renderer/emitter.py +59 -0
- velm/symphony/renderers/basic_renderer/facade.py +244 -0
- velm/symphony/renderers/basic_renderer/scribe.py +115 -0
- velm/symphony/renderers/basic_renderer/styler.py +59 -0
- velm/symphony/renderers/cinematic_renderer/__init__.py +12 -0
- velm/symphony/renderers/cinematic_renderer/facade.py +194 -0
- velm/symphony/renderers/cinematic_renderer/layout_engine.py +56 -0
- velm/symphony/renderers/cinematic_renderer/state.py +78 -0
- velm/symphony/renderers/cinematic_renderer/theme.py +40 -0
- velm/symphony/renderers/cinematic_renderer/widgets/__init__.py +8 -0
- velm/symphony/renderers/cinematic_renderer/widgets/context.py +20 -0
- velm/symphony/renderers/cinematic_renderer/widgets/footer.py +15 -0
- velm/symphony/renderers/cinematic_renderer/widgets/header.py +37 -0
- velm/symphony/renderers/cinematic_renderer/widgets/monitor.py +23 -0
- velm/symphony/renderers/cinematic_renderer/widgets/output.py +31 -0
- velm/symphony/renderers/cinematic_renderer/widgets/sparkline.py +105 -0
- velm/symphony/renderers/cinematic_renderer/widgets/timeline.py +49 -0
- velm/symphony/renderers/github_renderer/__init__.py +13 -0
- velm/symphony/renderers/github_renderer/emitter.py +92 -0
- velm/symphony/renderers/github_renderer/facade.py +232 -0
- velm/symphony/renderers/github_renderer/sanitizer.py +41 -0
- velm/symphony/renderers/raw_renderer/__init__.py +2 -0
- velm/symphony/renderers/raw_renderer/facade.py +96 -0
- velm/symphony/renderers/rich_renderer/__init__.py +2 -0
- velm/symphony/renderers/rich_renderer/facade.py +320 -0
- velm/symphony/renderers/rich_renderer/state.py +84 -0
- velm/symphony/renderers/rich_renderer/stream_scribe.py +301 -0
- velm/symphony/renderers/rich_renderer/theme.py +106 -0
- velm/symphony/renderers/rich_renderer/utils.py +29 -0
- velm/symphony/renderers/stream_renderer/__init__.py +13 -0
- velm/symphony/renderers/stream_renderer/codex.py +51 -0
- velm/symphony/renderers/stream_renderer/emitter.py +116 -0
- velm/symphony/renderers/stream_renderer/facade.py +218 -0
- velm/symphony/swarm.py +538 -0
- velm/themes/cyberpunk.css +29 -0
- velm/themes/monokai.css +24 -0
- velm/utils/__init__.py +69 -0
- velm/utils/archetype_utils.py +154 -0
- velm/utils/converters.py +135 -0
- velm/utils/core_utils.py +3238 -0
- velm/utils/dossier_scribe/__init__.py +13 -0
- velm/utils/dossier_scribe/constellation/__init__.py +14 -0
- velm/utils/dossier_scribe/constellation/arch_scribe/__init__.py +14 -0
- velm/utils/dossier_scribe/constellation/arch_scribe/dna.py +290 -0
- velm/utils/dossier_scribe/constellation/arch_scribe/markdown.py +139 -0
- velm/utils/dossier_scribe/constellation/arch_scribe/mermaids.py +60 -0
- velm/utils/dossier_scribe/constellation/arch_scribe/scribe.py +96 -0
- velm/utils/dossier_scribe/constellation/assets.py +74 -0
- velm/utils/dossier_scribe/constellation/crystal.py +66 -0
- velm/utils/dossier_scribe/constellation/hyperlinks.py +176 -0
- velm/utils/dossier_scribe/constellation/renderer.py +163 -0
- velm/utils/dossier_scribe/constellation/scribe.py +108 -0
- velm/utils/dossier_scribe/constellation/xray.py +69 -0
- velm/utils/dossier_scribe/facade.py +270 -0
- velm/utils/dossier_scribe/mentorship_scribe.py +47 -0
- velm/utils/dossier_scribe/prophecy_panel.py +29 -0
- velm/utils/dossier_scribe/security_scribe.py +27 -0
- velm/utils/dossier_scribe/telemetry_grid.py +167 -0
- velm/utils/ephemeral_server.py +53 -0
- velm/utils/gnosis_discovery.py +354 -0
- velm/utils/invocation.py +252 -0
- velm/utils/resolve_gnostic_content.py +140 -0
- velm/utils/workspace_utils.py +35 -0
- velm-0.1.2.dist-info/METADATA +283 -0
- velm-0.1.2.dist-info/RECORD +2195 -0
- velm-0.1.2.dist-info/WHEEL +5 -0
- velm-0.1.2.dist-info/entry_points.txt +2 -0
- velm-0.1.2.dist-info/licenses/LICENSE +52 -0
- velm-0.1.2.dist-info/top_level.txt +1 -0
velm/banners/sigil.py
ADDED
|
@@ -0,0 +1,2024 @@
|
|
|
1
|
+
|
|
2
|
+
from rich.text import Text
|
|
3
|
+
|
|
4
|
+
# This scripture was auto-forged by the 'scaffold tool ascii' artisan.
|
|
5
|
+
def get_sigil() -> Text:
|
|
6
|
+
"""Proclaims the sacred Sigil of the project."""
|
|
7
|
+
|
|
8
|
+
segments = [
|
|
9
|
+
('%', "rgb(254,254,254)"),
|
|
10
|
+
('%', "rgb(254,254,254)"),
|
|
11
|
+
('@', "rgb(255,255,255)"),
|
|
12
|
+
('%', "rgb(247,247,247)"),
|
|
13
|
+
('#', "rgb(225,226,225)"),
|
|
14
|
+
('#', "rgb(226,226,226)"),
|
|
15
|
+
('#', "rgb(225,225,225)"),
|
|
16
|
+
('%', "rgb(240,241,241)"),
|
|
17
|
+
('@', "rgb(255,255,255)"),
|
|
18
|
+
('@', "rgb(254,255,255)"),
|
|
19
|
+
('@', "rgb(255,255,255)"),
|
|
20
|
+
('%', "rgb(233,234,234)"),
|
|
21
|
+
('#', "rgb(225,225,225)"),
|
|
22
|
+
('#', "rgb(226,226,226)"),
|
|
23
|
+
('%', "rgb(228,228,228)"),
|
|
24
|
+
('%', "rgb(252,253,253)"),
|
|
25
|
+
('@', "rgb(255,255,255)"),
|
|
26
|
+
('@', "rgb(255,255,255)"),
|
|
27
|
+
('%', "rgb(247,247,247)"),
|
|
28
|
+
('#', "rgb(225,226,225)"),
|
|
29
|
+
('#', "rgb(226,226,226)"),
|
|
30
|
+
('#', "rgb(225,225,225)"),
|
|
31
|
+
('%', "rgb(240,241,241)"),
|
|
32
|
+
('@', "rgb(255,255,255)"),
|
|
33
|
+
('@', "rgb(255,255,255)"),
|
|
34
|
+
('@', "rgb(255,255,255)"),
|
|
35
|
+
('%', "rgb(233,233,233)"),
|
|
36
|
+
('#', "rgb(225,225,225)"),
|
|
37
|
+
('#', "rgb(225,226,226)"),
|
|
38
|
+
('%', "rgb(228,228,228)"),
|
|
39
|
+
('%', "rgb(253,253,253)"),
|
|
40
|
+
('@', "rgb(255,255,255)"),
|
|
41
|
+
('@', "rgb(255,255,255)"),
|
|
42
|
+
('%', "rgb(247,247,247)"),
|
|
43
|
+
('#', "rgb(225,225,225)"),
|
|
44
|
+
('#', "rgb(226,226,226)"),
|
|
45
|
+
('#', "rgb(225,224,225)"),
|
|
46
|
+
('%', "rgb(240,241,240)"),
|
|
47
|
+
('@', "rgb(255,255,255)"),
|
|
48
|
+
('@', "rgb(254,255,255)"),
|
|
49
|
+
('@', "rgb(255,255,255)"),
|
|
50
|
+
('%', "rgb(233,233,233)"),
|
|
51
|
+
('#', "rgb(225,225,225)"),
|
|
52
|
+
('#', "rgb(226,226,226)"),
|
|
53
|
+
('%', "rgb(228,228,228)"),
|
|
54
|
+
('%', "rgb(252,253,253)"),
|
|
55
|
+
('@', "rgb(254,255,255)"),
|
|
56
|
+
('@', "rgb(255,255,255)"),
|
|
57
|
+
('%', "rgb(247,247,247)"),
|
|
58
|
+
('#', "rgb(225,225,225)"),
|
|
59
|
+
('#', "rgb(225,226,225)"),
|
|
60
|
+
('#', "rgb(224,224,224)"),
|
|
61
|
+
('%', "rgb(240,240,240)"),
|
|
62
|
+
('@', "rgb(255,255,255)"),
|
|
63
|
+
('%', "rgb(254,254,254)"),
|
|
64
|
+
('@', "rgb(254,255,255)"),
|
|
65
|
+
('%', "rgb(233,233,233)"),
|
|
66
|
+
('#', "rgb(225,225,225)"),
|
|
67
|
+
('#', "rgb(226,226,226)"),
|
|
68
|
+
('#', "rgb(226,226,226)"),
|
|
69
|
+
('\n', "default"),
|
|
70
|
+
('%', "rgb(253,253,253)"),
|
|
71
|
+
('%', "rgb(253,253,253)"),
|
|
72
|
+
('%', "rgb(253,253,253)"),
|
|
73
|
+
('%', "rgb(246,246,246)"),
|
|
74
|
+
('%', "rgb(228,228,228)"),
|
|
75
|
+
('%', "rgb(228,228,228)"),
|
|
76
|
+
('%', "rgb(227,227,227)"),
|
|
77
|
+
('%', "rgb(240,241,241)"),
|
|
78
|
+
('%', "rgb(253,253,253)"),
|
|
79
|
+
('%', "rgb(253,253,253)"),
|
|
80
|
+
('%', "rgb(253,253,253)"),
|
|
81
|
+
('%', "rgb(235,235,235)"),
|
|
82
|
+
('%', "rgb(227,227,228)"),
|
|
83
|
+
('%', "rgb(228,228,228)"),
|
|
84
|
+
('%', "rgb(230,230,230)"),
|
|
85
|
+
('%', "rgb(251,252,252)"),
|
|
86
|
+
('%', "rgb(253,253,253)"),
|
|
87
|
+
('%', "rgb(253,253,253)"),
|
|
88
|
+
('%', "rgb(246,246,246)"),
|
|
89
|
+
('%', "rgb(228,228,227)"),
|
|
90
|
+
('%', "rgb(228,228,228)"),
|
|
91
|
+
('%', "rgb(227,227,227)"),
|
|
92
|
+
('%', "rgb(241,241,241)"),
|
|
93
|
+
('%', "rgb(253,253,253)"),
|
|
94
|
+
('%', "rgb(253,253,253)"),
|
|
95
|
+
('%', "rgb(253,253,253)"),
|
|
96
|
+
('%', "rgb(235,235,235)"),
|
|
97
|
+
('%', "rgb(228,228,228)"),
|
|
98
|
+
('%', "rgb(228,228,228)"),
|
|
99
|
+
('%', "rgb(230,230,230)"),
|
|
100
|
+
('%', "rgb(252,252,252)"),
|
|
101
|
+
('%', "rgb(253,253,253)"),
|
|
102
|
+
('%', "rgb(253,253,253)"),
|
|
103
|
+
('%', "rgb(246,246,246)"),
|
|
104
|
+
('%', "rgb(227,227,227)"),
|
|
105
|
+
('%', "rgb(228,228,228)"),
|
|
106
|
+
('%', "rgb(227,227,227)"),
|
|
107
|
+
('%', "rgb(240,241,241)"),
|
|
108
|
+
('%', "rgb(253,253,253)"),
|
|
109
|
+
('%', "rgb(253,253,253)"),
|
|
110
|
+
('%', "rgb(253,253,253)"),
|
|
111
|
+
('%', "rgb(234,234,234)"),
|
|
112
|
+
('%', "rgb(227,227,227)"),
|
|
113
|
+
('%', "rgb(228,228,228)"),
|
|
114
|
+
('%', "rgb(230,230,230)"),
|
|
115
|
+
('%', "rgb(251,252,252)"),
|
|
116
|
+
('%', "rgb(253,253,253)"),
|
|
117
|
+
('%', "rgb(253,253,253)"),
|
|
118
|
+
('%', "rgb(246,246,246)"),
|
|
119
|
+
('%', "rgb(227,228,227)"),
|
|
120
|
+
('%', "rgb(228,228,228)"),
|
|
121
|
+
('%', "rgb(227,227,227)"),
|
|
122
|
+
('%', "rgb(241,241,241)"),
|
|
123
|
+
('%', "rgb(253,253,253)"),
|
|
124
|
+
('%', "rgb(253,253,253)"),
|
|
125
|
+
('%', "rgb(253,253,253)"),
|
|
126
|
+
('%', "rgb(234,235,235)"),
|
|
127
|
+
('%', "rgb(227,228,227)"),
|
|
128
|
+
('%', "rgb(228,228,228)"),
|
|
129
|
+
('%', "rgb(228,228,228)"),
|
|
130
|
+
('\n', "default"),
|
|
131
|
+
('%', "rgb(229,229,229)"),
|
|
132
|
+
('%', "rgb(229,229,229)"),
|
|
133
|
+
('%', "rgb(228,229,228)"),
|
|
134
|
+
('%', "rgb(235,235,235)"),
|
|
135
|
+
('%', "rgb(251,252,252)"),
|
|
136
|
+
('%', "rgb(250,251,251)"),
|
|
137
|
+
('%', "rgb(251,252,252)"),
|
|
138
|
+
('%', "rgb(240,240,240)"),
|
|
139
|
+
('%', "rgb(228,228,228)"),
|
|
140
|
+
('%', "rgb(229,229,229)"),
|
|
141
|
+
('%', "rgb(228,229,229)"),
|
|
142
|
+
('%', "rgb(246,246,246)"),
|
|
143
|
+
('%', "rgb(252,252,252)"),
|
|
144
|
+
('%', "rgb(251,252,251)"),
|
|
145
|
+
('%', "rgb(250,250,250)"),
|
|
146
|
+
('%', "rgb(231,231,231)"),
|
|
147
|
+
('%', "rgb(229,229,229)"),
|
|
148
|
+
('%', "rgb(228,229,228)"),
|
|
149
|
+
('%', "rgb(235,235,235)"),
|
|
150
|
+
('%', "rgb(252,252,252)"),
|
|
151
|
+
('%', "rgb(251,251,251)"),
|
|
152
|
+
('%', "rgb(252,252,252)"),
|
|
153
|
+
('%', "rgb(240,241,241)"),
|
|
154
|
+
('%', "rgb(229,229,229)"),
|
|
155
|
+
('%', "rgb(230,230,230)"),
|
|
156
|
+
('%', "rgb(229,229,229)"),
|
|
157
|
+
('%', "rgb(246,246,246)"),
|
|
158
|
+
('%', "rgb(251,252,252)"),
|
|
159
|
+
('%', "rgb(251,251,251)"),
|
|
160
|
+
('%', "rgb(249,250,250)"),
|
|
161
|
+
('%', "rgb(231,231,231)"),
|
|
162
|
+
('%', "rgb(229,229,229)"),
|
|
163
|
+
('%', "rgb(228,228,228)"),
|
|
164
|
+
('%', "rgb(235,235,235)"),
|
|
165
|
+
('%', "rgb(251,252,252)"),
|
|
166
|
+
('%', "rgb(250,251,251)"),
|
|
167
|
+
('%', "rgb(252,252,252)"),
|
|
168
|
+
('%', "rgb(240,240,240)"),
|
|
169
|
+
('%', "rgb(228,228,228)"),
|
|
170
|
+
('%', "rgb(229,229,229)"),
|
|
171
|
+
('%', "rgb(229,229,229)"),
|
|
172
|
+
('%', "rgb(246,246,246)"),
|
|
173
|
+
('%', "rgb(252,252,252)"),
|
|
174
|
+
('%', "rgb(251,252,251)"),
|
|
175
|
+
('%', "rgb(250,250,250)"),
|
|
176
|
+
('%', "rgb(231,231,231)"),
|
|
177
|
+
('%', "rgb(229,229,229)"),
|
|
178
|
+
('%', "rgb(228,229,228)"),
|
|
179
|
+
('%', "rgb(235,235,235)"),
|
|
180
|
+
('%', "rgb(251,252,252)"),
|
|
181
|
+
('%', "rgb(250,251,251)"),
|
|
182
|
+
('%', "rgb(252,252,252)"),
|
|
183
|
+
('%', "rgb(240,241,240)"),
|
|
184
|
+
('%', "rgb(228,229,229)"),
|
|
185
|
+
('%', "rgb(229,229,229)"),
|
|
186
|
+
('%', "rgb(229,229,229)"),
|
|
187
|
+
('%', "rgb(246,246,246)"),
|
|
188
|
+
('%', "rgb(251,252,252)"),
|
|
189
|
+
('%', "rgb(251,251,251)"),
|
|
190
|
+
('%', "rgb(251,251,251)"),
|
|
191
|
+
('\n', "default"),
|
|
192
|
+
('%', "rgb(227,227,227)"),
|
|
193
|
+
('%', "rgb(227,227,227)"),
|
|
194
|
+
('#', "rgb(226,226,226)"),
|
|
195
|
+
('%', "rgb(234,234,234)"),
|
|
196
|
+
('@', "rgb(254,255,255)"),
|
|
197
|
+
('%', "rgb(253,254,254)"),
|
|
198
|
+
('@', "rgb(254,255,255)"),
|
|
199
|
+
('%', "rgb(240,240,240)"),
|
|
200
|
+
('#', "rgb(226,226,226)"),
|
|
201
|
+
('%', "rgb(227,227,227)"),
|
|
202
|
+
('#', "rgb(226,226,226)"),
|
|
203
|
+
('%', "rgb(247,247,247)"),
|
|
204
|
+
('@', "rgb(255,255,255)"),
|
|
205
|
+
('%', "rgb(254,254,255)"),
|
|
206
|
+
('%', "rgb(252,252,252)"),
|
|
207
|
+
('%', "rgb(229,229,229)"),
|
|
208
|
+
('%', "rgb(227,227,227)"),
|
|
209
|
+
('#', "rgb(226,226,226)"),
|
|
210
|
+
('%', "rgb(234,234,234)"),
|
|
211
|
+
('@', "rgb(255,255,255)"),
|
|
212
|
+
('%', "rgb(254,254,255)"),
|
|
213
|
+
('@', "rgb(255,255,255)"),
|
|
214
|
+
('%', "rgb(240,240,241)"),
|
|
215
|
+
('#', "rgb(226,226,226)"),
|
|
216
|
+
('%', "rgb(227,227,227)"),
|
|
217
|
+
('%', "rgb(226,227,227)"),
|
|
218
|
+
('%', "rgb(247,247,247)"),
|
|
219
|
+
('%', "rgb(254,254,255)"),
|
|
220
|
+
('%', "rgb(253,254,254)"),
|
|
221
|
+
('%', "rgb(251,252,252)"),
|
|
222
|
+
('%', "rgb(229,229,229)"),
|
|
223
|
+
('#', "rgb(227,226,227)"),
|
|
224
|
+
('#', "rgb(226,226,226)"),
|
|
225
|
+
('%', "rgb(234,234,234)"),
|
|
226
|
+
('%', "rgb(254,254,255)"),
|
|
227
|
+
('%', "rgb(253,254,254)"),
|
|
228
|
+
('@', "rgb(255,255,255)"),
|
|
229
|
+
('%', "rgb(240,240,240)"),
|
|
230
|
+
('#', "rgb(226,226,226)"),
|
|
231
|
+
('%', "rgb(227,227,227)"),
|
|
232
|
+
('#', "rgb(226,226,226)"),
|
|
233
|
+
('%', "rgb(247,247,248)"),
|
|
234
|
+
('@', "rgb(255,255,255)"),
|
|
235
|
+
('%', "rgb(254,254,254)"),
|
|
236
|
+
('%', "rgb(252,252,252)"),
|
|
237
|
+
('%', "rgb(229,229,229)"),
|
|
238
|
+
('%', "rgb(226,227,227)"),
|
|
239
|
+
('#', "rgb(226,226,226)"),
|
|
240
|
+
('%', "rgb(234,234,234)"),
|
|
241
|
+
('@', "rgb(254,255,255)"),
|
|
242
|
+
('%', "rgb(253,254,254)"),
|
|
243
|
+
('@', "rgb(254,255,255)"),
|
|
244
|
+
('%', "rgb(240,240,240)"),
|
|
245
|
+
('#', "rgb(226,226,226)"),
|
|
246
|
+
('%', "rgb(227,227,227)"),
|
|
247
|
+
('%', "rgb(227,227,227)"),
|
|
248
|
+
('%', "rgb(247,247,248)"),
|
|
249
|
+
('@', "rgb(255,255,255)"),
|
|
250
|
+
('%', "rgb(254,254,254)"),
|
|
251
|
+
('%', "rgb(254,254,254)"),
|
|
252
|
+
('\n', "default"),
|
|
253
|
+
('%', "rgb(250,250,251)"),
|
|
254
|
+
('%', "rgb(250,250,250)"),
|
|
255
|
+
('%', "rgb(251,251,251)"),
|
|
256
|
+
('%', "rgb(245,245,245)"),
|
|
257
|
+
('%', "rgb(230,230,230)"),
|
|
258
|
+
('%', "rgb(230,231,231)"),
|
|
259
|
+
('%', "rgb(230,230,230)"),
|
|
260
|
+
('%', "rgb(240,240,241)"),
|
|
261
|
+
('%', "rgb(251,250,251)"),
|
|
262
|
+
('%', "rgb(249,250,250)"),
|
|
263
|
+
('%', "rgb(250,251,251)"),
|
|
264
|
+
('%', "rgb(235,236,236)"),
|
|
265
|
+
('%', "rgb(230,230,230)"),
|
|
266
|
+
('%', "rgb(230,231,230)"),
|
|
267
|
+
('%', "rgb(232,232,232)"),
|
|
268
|
+
('%', "rgb(249,249,249)"),
|
|
269
|
+
('%', "rgb(250,250,250)"),
|
|
270
|
+
('%', "rgb(250,251,251)"),
|
|
271
|
+
('%', "rgb(245,245,245)"),
|
|
272
|
+
('%', "rgb(231,231,231)"),
|
|
273
|
+
('%', "rgb(231,231,231)"),
|
|
274
|
+
('%', "rgb(230,230,230)"),
|
|
275
|
+
('%', "rgb(240,241,240)"),
|
|
276
|
+
('%', "rgb(250,250,250)"),
|
|
277
|
+
('%', "rgb(249,249,249)"),
|
|
278
|
+
('%', "rgb(249,250,250)"),
|
|
279
|
+
('%', "rgb(235,236,236)"),
|
|
280
|
+
('%', "rgb(230,231,230)"),
|
|
281
|
+
('%', "rgb(231,231,231)"),
|
|
282
|
+
('%', "rgb(233,233,233)"),
|
|
283
|
+
('%', "rgb(248,249,248)"),
|
|
284
|
+
('%', "rgb(249,250,249)"),
|
|
285
|
+
('%', "rgb(250,250,250)"),
|
|
286
|
+
('%', "rgb(244,244,245)"),
|
|
287
|
+
('%', "rgb(230,230,230)"),
|
|
288
|
+
('%', "rgb(230,231,231)"),
|
|
289
|
+
('%', "rgb(230,230,229)"),
|
|
290
|
+
('%', "rgb(240,240,240)"),
|
|
291
|
+
('%', "rgb(250,250,251)"),
|
|
292
|
+
('%', "rgb(249,250,250)"),
|
|
293
|
+
('%', "rgb(250,250,250)"),
|
|
294
|
+
('%', "rgb(235,235,236)"),
|
|
295
|
+
('%', "rgb(230,230,230)"),
|
|
296
|
+
('%', "rgb(230,230,230)"),
|
|
297
|
+
('%', "rgb(232,232,232)"),
|
|
298
|
+
('%', "rgb(248,249,249)"),
|
|
299
|
+
('%', "rgb(250,250,250)"),
|
|
300
|
+
('%', "rgb(250,250,250)"),
|
|
301
|
+
('%', "rgb(244,245,245)"),
|
|
302
|
+
('%', "rgb(230,230,230)"),
|
|
303
|
+
('%', "rgb(230,230,230)"),
|
|
304
|
+
('%', "rgb(229,229,229)"),
|
|
305
|
+
('%', "rgb(240,240,240)"),
|
|
306
|
+
('%', "rgb(250,250,251)"),
|
|
307
|
+
('%', "rgb(249,249,249)"),
|
|
308
|
+
('%', "rgb(250,250,250)"),
|
|
309
|
+
('%', "rgb(235,236,235)"),
|
|
310
|
+
('%', "rgb(230,230,230)"),
|
|
311
|
+
('%', "rgb(230,231,231)"),
|
|
312
|
+
('%', "rgb(230,230,230)"),
|
|
313
|
+
('\n', "default"),
|
|
314
|
+
('@', "rgb(255,255,255)"),
|
|
315
|
+
('@', "rgb(255,255,255)"),
|
|
316
|
+
('@', "rgb(255,255,255)"),
|
|
317
|
+
('%', "rgb(247,247,247)"),
|
|
318
|
+
('#', "rgb(225,226,226)"),
|
|
319
|
+
('#', "rgb(226,226,227)"),
|
|
320
|
+
('#', "rgb(225,225,225)"),
|
|
321
|
+
('%', "rgb(240,241,241)"),
|
|
322
|
+
('@', "rgb(255,255,255)"),
|
|
323
|
+
('@', "rgb(254,255,255)"),
|
|
324
|
+
('@', "rgb(255,255,255)"),
|
|
325
|
+
('%', "rgb(234,234,234)"),
|
|
326
|
+
('#', "rgb(225,226,225)"),
|
|
327
|
+
('#', "rgb(226,226,226)"),
|
|
328
|
+
('%', "rgb(229,229,229)"),
|
|
329
|
+
('%', "rgb(252,253,253)"),
|
|
330
|
+
('@', "rgb(254,255,255)"),
|
|
331
|
+
('@', "rgb(255,255,255)"),
|
|
332
|
+
('%', "rgb(247,247,247)"),
|
|
333
|
+
('#', "rgb(226,226,226)"),
|
|
334
|
+
('%', "rgb(227,227,227)"),
|
|
335
|
+
('#', "rgb(225,226,226)"),
|
|
336
|
+
('%', "rgb(240,240,241)"),
|
|
337
|
+
('@', "rgb(255,255,255)"),
|
|
338
|
+
('%', "rgb(253,253,254)"),
|
|
339
|
+
('%', "rgb(254,254,254)"),
|
|
340
|
+
('%', "rgb(233,234,234)"),
|
|
341
|
+
('%', "rgb(228,228,228)"),
|
|
342
|
+
('%', "rgb(232,232,230)"),
|
|
343
|
+
('%', "rgb(232,232,231)"),
|
|
344
|
+
('%', "rgb(254,254,253)"),
|
|
345
|
+
('@', "rgb(255,255,255)"),
|
|
346
|
+
('@', "rgb(255,255,255)"),
|
|
347
|
+
('%', "rgb(246,246,246)"),
|
|
348
|
+
('#', "rgb(225,226,226)"),
|
|
349
|
+
('#', "rgb(226,226,227)"),
|
|
350
|
+
('#', "rgb(225,225,225)"),
|
|
351
|
+
('%', "rgb(240,241,241)"),
|
|
352
|
+
('@', "rgb(255,255,255)"),
|
|
353
|
+
('%', "rgb(254,254,255)"),
|
|
354
|
+
('@', "rgb(254,255,255)"),
|
|
355
|
+
('%', "rgb(233,233,233)"),
|
|
356
|
+
('#', "rgb(225,225,225)"),
|
|
357
|
+
('#', "rgb(226,226,226)"),
|
|
358
|
+
('%', "rgb(228,228,229)"),
|
|
359
|
+
('%', "rgb(252,253,253)"),
|
|
360
|
+
('@', "rgb(254,255,255)"),
|
|
361
|
+
('@', "rgb(254,255,255)"),
|
|
362
|
+
('%', "rgb(247,247,247)"),
|
|
363
|
+
('#', "rgb(226,226,226)"),
|
|
364
|
+
('#', "rgb(226,226,226)"),
|
|
365
|
+
('#', "rgb(224,225,225)"),
|
|
366
|
+
('%', "rgb(240,240,241)"),
|
|
367
|
+
('@', "rgb(255,255,255)"),
|
|
368
|
+
('%', "rgb(254,254,254)"),
|
|
369
|
+
('%', "rgb(254,254,254)"),
|
|
370
|
+
('%', "rgb(233,233,233)"),
|
|
371
|
+
('#', "rgb(225,225,225)"),
|
|
372
|
+
('#', "rgb(226,226,226)"),
|
|
373
|
+
('#', "rgb(225,226,226)"),
|
|
374
|
+
('\n', "default"),
|
|
375
|
+
('%', "rgb(232,232,233)"),
|
|
376
|
+
('%', "rgb(232,232,232)"),
|
|
377
|
+
('%', "rgb(231,231,231)"),
|
|
378
|
+
('%', "rgb(236,236,236)"),
|
|
379
|
+
('%', "rgb(249,249,249)"),
|
|
380
|
+
('%', "rgb(248,249,249)"),
|
|
381
|
+
('%', "rgb(249,249,249)"),
|
|
382
|
+
('%', "rgb(240,240,241)"),
|
|
383
|
+
('%', "rgb(231,231,231)"),
|
|
384
|
+
('%', "rgb(232,232,232)"),
|
|
385
|
+
('%', "rgb(232,232,231)"),
|
|
386
|
+
('%', "rgb(244,244,244)"),
|
|
387
|
+
('%', "rgb(249,249,249)"),
|
|
388
|
+
('%', "rgb(248,248,249)"),
|
|
389
|
+
('%', "rgb(247,247,247)"),
|
|
390
|
+
('%', "rgb(233,234,234)"),
|
|
391
|
+
('%', "rgb(232,232,232)"),
|
|
392
|
+
('%', "rgb(231,231,231)"),
|
|
393
|
+
('%', "rgb(236,236,236)"),
|
|
394
|
+
('%', "rgb(248,248,249)"),
|
|
395
|
+
('%', "rgb(247,248,248)"),
|
|
396
|
+
('%', "rgb(248,248,249)"),
|
|
397
|
+
('%', "rgb(240,240,240)"),
|
|
398
|
+
('%', "rgb(231,232,232)"),
|
|
399
|
+
('%', "rgb(234,234,234)"),
|
|
400
|
+
('%', "rgb(237,237,236)"),
|
|
401
|
+
('%', "rgb(246,245,245)"),
|
|
402
|
+
('%', "rgb(227,227,232)"),
|
|
403
|
+
('*', "rgb(194,196,207)"),
|
|
404
|
+
('+', "rgb(140,145,168)"),
|
|
405
|
+
('=', "rgb(135,139,162)"),
|
|
406
|
+
('*', "rgb(185,187,198)"),
|
|
407
|
+
('#', "rgb(217,218,222)"),
|
|
408
|
+
('%', "rgb(240,240,239)"),
|
|
409
|
+
('%', "rgb(253,253,252)"),
|
|
410
|
+
('%', "rgb(249,249,249)"),
|
|
411
|
+
('%', "rgb(248,249,249)"),
|
|
412
|
+
('%', "rgb(240,240,240)"),
|
|
413
|
+
('%', "rgb(231,231,231)"),
|
|
414
|
+
('%', "rgb(232,232,232)"),
|
|
415
|
+
('%', "rgb(232,232,232)"),
|
|
416
|
+
('%', "rgb(244,244,244)"),
|
|
417
|
+
('%', "rgb(248,248,249)"),
|
|
418
|
+
('%', "rgb(248,248,248)"),
|
|
419
|
+
('%', "rgb(247,247,247)"),
|
|
420
|
+
('%', "rgb(233,233,233)"),
|
|
421
|
+
('%', "rgb(232,232,232)"),
|
|
422
|
+
('%', "rgb(231,231,231)"),
|
|
423
|
+
('%', "rgb(236,236,236)"),
|
|
424
|
+
('%', "rgb(249,249,249)"),
|
|
425
|
+
('%', "rgb(248,248,248)"),
|
|
426
|
+
('%', "rgb(249,248,249)"),
|
|
427
|
+
('%', "rgb(240,240,240)"),
|
|
428
|
+
('%', "rgb(231,231,231)"),
|
|
429
|
+
('%', "rgb(232,232,232)"),
|
|
430
|
+
('%', "rgb(232,232,232)"),
|
|
431
|
+
('%', "rgb(244,244,244)"),
|
|
432
|
+
('%', "rgb(248,248,248)"),
|
|
433
|
+
('%', "rgb(247,247,247)"),
|
|
434
|
+
('%', "rgb(247,247,247)"),
|
|
435
|
+
('\n', "default"),
|
|
436
|
+
('#', "rgb(226,226,226)"),
|
|
437
|
+
('#', "rgb(225,226,226)"),
|
|
438
|
+
('#', "rgb(225,225,225)"),
|
|
439
|
+
('%', "rgb(233,234,233)"),
|
|
440
|
+
('@', "rgb(255,255,255)"),
|
|
441
|
+
('@', "rgb(255,255,255)"),
|
|
442
|
+
('@', "rgb(255,255,255)"),
|
|
443
|
+
('%', "rgb(240,240,241)"),
|
|
444
|
+
('#', "rgb(224,225,225)"),
|
|
445
|
+
('#', "rgb(226,226,226)"),
|
|
446
|
+
('#', "rgb(225,225,225)"),
|
|
447
|
+
('%', "rgb(248,248,248)"),
|
|
448
|
+
('@', "rgb(255,255,255)"),
|
|
449
|
+
('@', "rgb(254,255,255)"),
|
|
450
|
+
('%', "rgb(252,253,253)"),
|
|
451
|
+
('%', "rgb(228,228,228)"),
|
|
452
|
+
('#', "rgb(225,226,226)"),
|
|
453
|
+
('#', "rgb(225,225,225)"),
|
|
454
|
+
('%', "rgb(233,233,233)"),
|
|
455
|
+
('%', "rgb(254,254,254)"),
|
|
456
|
+
('%', "rgb(253,254,253)"),
|
|
457
|
+
('@', "rgb(255,255,255)"),
|
|
458
|
+
('%', "rgb(245,245,244)"),
|
|
459
|
+
('%', "rgb(227,228,227)"),
|
|
460
|
+
('#', "rgb(210,211,215)"),
|
|
461
|
+
('*', "rgb(179,182,193)"),
|
|
462
|
+
('+', "rgb(163,166,184)"),
|
|
463
|
+
('+', "rgb(162,165,184)"),
|
|
464
|
+
('*', "rgb(179,181,195)"),
|
|
465
|
+
('+', "rgb(136,142,164)"),
|
|
466
|
+
('=', "rgb(130,135,156)"),
|
|
467
|
+
('+', "rgb(161,164,179)"),
|
|
468
|
+
('=', "rgb(129,133,155)"),
|
|
469
|
+
('+', "rgb(146,150,169)"),
|
|
470
|
+
('#', "rgb(201,204,215)"),
|
|
471
|
+
('%', "rgb(236,237,241)"),
|
|
472
|
+
('@', "rgb(255,255,255)"),
|
|
473
|
+
('%', "rgb(244,244,243)"),
|
|
474
|
+
('%', "rgb(227,227,226)"),
|
|
475
|
+
('#', "rgb(226,226,226)"),
|
|
476
|
+
('#', "rgb(225,225,225)"),
|
|
477
|
+
('%', "rgb(247,247,247)"),
|
|
478
|
+
('@', "rgb(255,255,255)"),
|
|
479
|
+
('@', "rgb(254,255,254)"),
|
|
480
|
+
('%', "rgb(252,252,252)"),
|
|
481
|
+
('%', "rgb(228,228,228)"),
|
|
482
|
+
('#', "rgb(226,226,226)"),
|
|
483
|
+
('#', "rgb(225,225,225)"),
|
|
484
|
+
('%', "rgb(233,234,233)"),
|
|
485
|
+
('@', "rgb(255,255,255)"),
|
|
486
|
+
('%', "rgb(254,254,254)"),
|
|
487
|
+
('@', "rgb(255,255,255)"),
|
|
488
|
+
('%', "rgb(239,240,240)"),
|
|
489
|
+
('#', "rgb(224,225,225)"),
|
|
490
|
+
('#', "rgb(226,226,226)"),
|
|
491
|
+
('#', "rgb(225,225,225)"),
|
|
492
|
+
('%', "rgb(246,246,246)"),
|
|
493
|
+
('%', "rgb(253,254,254)"),
|
|
494
|
+
('%', "rgb(253,253,253)"),
|
|
495
|
+
('%', "rgb(252,253,253)"),
|
|
496
|
+
('\n', "default"),
|
|
497
|
+
('%', "rgb(247,248,248)"),
|
|
498
|
+
('%', "rgb(247,247,247)"),
|
|
499
|
+
('%', "rgb(248,248,248)"),
|
|
500
|
+
('%', "rgb(244,244,244)"),
|
|
501
|
+
('%', "rgb(233,233,233)"),
|
|
502
|
+
('%', "rgb(233,233,234)"),
|
|
503
|
+
('%', "rgb(233,233,233)"),
|
|
504
|
+
('%', "rgb(240,240,240)"),
|
|
505
|
+
('%', "rgb(247,247,248)"),
|
|
506
|
+
('%', "rgb(247,246,247)"),
|
|
507
|
+
('%', "rgb(247,247,247)"),
|
|
508
|
+
('%', "rgb(237,237,238)"),
|
|
509
|
+
('%', "rgb(233,233,233)"),
|
|
510
|
+
('%', "rgb(233,233,234)"),
|
|
511
|
+
('%', "rgb(235,235,235)"),
|
|
512
|
+
('%', "rgb(245,245,245)"),
|
|
513
|
+
('%', "rgb(246,246,246)"),
|
|
514
|
+
('%', "rgb(247,246,247)"),
|
|
515
|
+
('%', "rgb(245,245,245)"),
|
|
516
|
+
('%', "rgb(238,238,237)"),
|
|
517
|
+
('%', "rgb(236,236,236)"),
|
|
518
|
+
('#', "rgb(217,218,222)"),
|
|
519
|
+
('*', "rgb(189,191,203)"),
|
|
520
|
+
('+', "rgb(162,164,182)"),
|
|
521
|
+
('+', "rgb(160,162,181)"),
|
|
522
|
+
('*', "rgb(174,176,192)"),
|
|
523
|
+
('*', "rgb(176,177,190)"),
|
|
524
|
+
('*', "rgb(178,180,191)"),
|
|
525
|
+
('*', "rgb(185,186,196)"),
|
|
526
|
+
('+', "rgb(139,142,164)"),
|
|
527
|
+
('+', "rgb(157,160,178)"),
|
|
528
|
+
('*', "rgb(195,196,205)"),
|
|
529
|
+
('*', "rgb(186,189,200)"),
|
|
530
|
+
('*', "rgb(186,188,199)"),
|
|
531
|
+
('+', "rgb(163,166,180)"),
|
|
532
|
+
('+', "rgb(150,153,171)"),
|
|
533
|
+
('+', "rgb(160,164,180)"),
|
|
534
|
+
('*', "rgb(195,197,207)"),
|
|
535
|
+
('%', "rgb(232,232,236)"),
|
|
536
|
+
('%', "rgb(250,249,249)"),
|
|
537
|
+
('%', "rgb(251,251,250)"),
|
|
538
|
+
('%', "rgb(238,238,238)"),
|
|
539
|
+
('%', "rgb(233,233,233)"),
|
|
540
|
+
('%', "rgb(233,233,233)"),
|
|
541
|
+
('%', "rgb(234,234,234)"),
|
|
542
|
+
('%', "rgb(245,245,245)"),
|
|
543
|
+
('%', "rgb(246,246,246)"),
|
|
544
|
+
('%', "rgb(246,246,247)"),
|
|
545
|
+
('%', "rgb(243,243,243)"),
|
|
546
|
+
('%', "rgb(233,233,233)"),
|
|
547
|
+
('%', "rgb(233,233,233)"),
|
|
548
|
+
('%', "rgb(233,232,233)"),
|
|
549
|
+
('%', "rgb(240,240,240)"),
|
|
550
|
+
('%', "rgb(247,247,247)"),
|
|
551
|
+
('%', "rgb(246,247,247)"),
|
|
552
|
+
('%', "rgb(246,246,247)"),
|
|
553
|
+
('%', "rgb(251,251,251)"),
|
|
554
|
+
('%', "rgb(252,252,252)"),
|
|
555
|
+
('%', "rgb(252,252,252)"),
|
|
556
|
+
('%', "rgb(252,252,252)"),
|
|
557
|
+
('\n', "default"),
|
|
558
|
+
('@', "rgb(255,255,255)"),
|
|
559
|
+
('@', "rgb(255,255,255)"),
|
|
560
|
+
('@', "rgb(255,255,255)"),
|
|
561
|
+
('%', "rgb(248,248,248)"),
|
|
562
|
+
('#', "rgb(224,224,224)"),
|
|
563
|
+
('#', "rgb(225,225,225)"),
|
|
564
|
+
('#', "rgb(224,224,224)"),
|
|
565
|
+
('%', "rgb(240,240,241)"),
|
|
566
|
+
('@', "rgb(255,255,255)"),
|
|
567
|
+
('@', "rgb(255,255,255)"),
|
|
568
|
+
('@', "rgb(255,255,255)"),
|
|
569
|
+
('%', "rgb(233,233,233)"),
|
|
570
|
+
('#', "rgb(224,225,224)"),
|
|
571
|
+
('#', "rgb(225,226,225)"),
|
|
572
|
+
('%', "rgb(228,228,228)"),
|
|
573
|
+
('%', "rgb(253,253,253)"),
|
|
574
|
+
('@', "rgb(255,255,255)"),
|
|
575
|
+
('@', "rgb(255,255,255)"),
|
|
576
|
+
('%', "rgb(230,232,235)"),
|
|
577
|
+
('*', "rgb(178,180,192)"),
|
|
578
|
+
('+', "rgb(151,154,172)"),
|
|
579
|
+
('+', "rgb(149,152,170)"),
|
|
580
|
+
('*', "rgb(178,180,193)"),
|
|
581
|
+
('#', "rgb(222,223,229)"),
|
|
582
|
+
('%', "rgb(242,242,244)"),
|
|
583
|
+
('#', "rgb(203,204,213)"),
|
|
584
|
+
('*', "rgb(177,180,191)"),
|
|
585
|
+
('*', "rgb(179,180,190)"),
|
|
586
|
+
('*', "rgb(183,185,194)"),
|
|
587
|
+
('=', "rgb(133,138,158)"),
|
|
588
|
+
('+', "rgb(163,167,183)"),
|
|
589
|
+
('#', "rgb(197,200,208)"),
|
|
590
|
+
('#', "rgb(199,200,209)"),
|
|
591
|
+
('*', "rgb(196,198,207)"),
|
|
592
|
+
('*', "rgb(174,176,186)"),
|
|
593
|
+
('#', "rgb(213,214,215)"),
|
|
594
|
+
('*', "rgb(183,185,194)"),
|
|
595
|
+
('*', "rgb(168,171,184)"),
|
|
596
|
+
('+', "rgb(156,160,178)"),
|
|
597
|
+
('*', "rgb(169,173,189)"),
|
|
598
|
+
('#', "rgb(205,207,217)"),
|
|
599
|
+
('#', "rgb(221,222,224)"),
|
|
600
|
+
('%', "rgb(229,229,228)"),
|
|
601
|
+
('%', "rgb(230,230,229)"),
|
|
602
|
+
('%', "rgb(229,229,229)"),
|
|
603
|
+
('%', "rgb(251,251,251)"),
|
|
604
|
+
('%', "rgb(253,253,253)"),
|
|
605
|
+
('%', "rgb(253,254,253)"),
|
|
606
|
+
('%', "rgb(245,246,246)"),
|
|
607
|
+
('#', "rgb(225,225,225)"),
|
|
608
|
+
('#', "rgb(225,226,226)"),
|
|
609
|
+
('#', "rgb(224,225,224)"),
|
|
610
|
+
('%', "rgb(240,240,240)"),
|
|
611
|
+
('@', "rgb(254,255,255)"),
|
|
612
|
+
('%', "rgb(253,253,253)"),
|
|
613
|
+
('%', "rgb(253,253,253)"),
|
|
614
|
+
('%', "rgb(253,254,254)"),
|
|
615
|
+
('%', "rgb(253,254,254)"),
|
|
616
|
+
('%', "rgb(253,253,253)"),
|
|
617
|
+
('%', "rgb(253,253,253)"),
|
|
618
|
+
('\n', "default"),
|
|
619
|
+
('%', "rgb(235,235,236)"),
|
|
620
|
+
('%', "rgb(235,235,235)"),
|
|
621
|
+
('%', "rgb(234,234,234)"),
|
|
622
|
+
('%', "rgb(238,238,238)"),
|
|
623
|
+
('%', "rgb(246,246,246)"),
|
|
624
|
+
('%', "rgb(245,245,246)"),
|
|
625
|
+
('%', "rgb(246,246,246)"),
|
|
626
|
+
('%', "rgb(240,241,241)"),
|
|
627
|
+
('%', "rgb(235,234,235)"),
|
|
628
|
+
('%', "rgb(235,235,235)"),
|
|
629
|
+
('%', "rgb(235,234,235)"),
|
|
630
|
+
('%', "rgb(243,243,243)"),
|
|
631
|
+
('%', "rgb(245,246,246)"),
|
|
632
|
+
('%', "rgb(245,245,245)"),
|
|
633
|
+
('%', "rgb(249,249,249)"),
|
|
634
|
+
('%', "rgb(239,240,243)"),
|
|
635
|
+
('#', "rgb(202,204,215)"),
|
|
636
|
+
('+', "rgb(165,167,186)"),
|
|
637
|
+
('+', "rgb(154,157,176)"),
|
|
638
|
+
('*', "rgb(181,184,198)"),
|
|
639
|
+
('#', "rgb(209,210,217)"),
|
|
640
|
+
('*', "rgb(191,193,203)"),
|
|
641
|
+
('%', "rgb(236,236,236)"),
|
|
642
|
+
('%', "rgb(235,236,235)"),
|
|
643
|
+
('*', "rgb(166,169,184)"),
|
|
644
|
+
('*', "rgb(176,180,191)"),
|
|
645
|
+
('#', "rgb(195,201,208)"),
|
|
646
|
+
('*', "rgb(171,183,194)"),
|
|
647
|
+
('*', "rgb(179,193,202)"),
|
|
648
|
+
('+', "rgb(148,162,177)"),
|
|
649
|
+
('+', "rgb(130,150,169)"),
|
|
650
|
+
('*', "rgb(165,189,199)"),
|
|
651
|
+
('*', "rgb(164,181,193)"),
|
|
652
|
+
('*', "rgb(192,199,207)"),
|
|
653
|
+
('#', "rgb(201,202,208)"),
|
|
654
|
+
('*', "rgb(194,195,203)"),
|
|
655
|
+
('*', "rgb(182,183,195)"),
|
|
656
|
+
('%', "rgb(242,242,242)"),
|
|
657
|
+
('*', "rgb(181,183,196)"),
|
|
658
|
+
('*', "rgb(169,172,187)"),
|
|
659
|
+
('*', "rgb(171,174,189)"),
|
|
660
|
+
('+', "rgb(153,157,174)"),
|
|
661
|
+
('+', "rgb(164,167,183)"),
|
|
662
|
+
('#', "rgb(201,203,212)"),
|
|
663
|
+
('%', "rgb(239,239,241)"),
|
|
664
|
+
('@', "rgb(255,255,255)"),
|
|
665
|
+
('%', "rgb(252,252,252)"),
|
|
666
|
+
('%', "rgb(252,252,253)"),
|
|
667
|
+
('%', "rgb(250,250,251)"),
|
|
668
|
+
('%', "rgb(244,245,245)"),
|
|
669
|
+
('%', "rgb(245,245,245)"),
|
|
670
|
+
('%', "rgb(244,245,245)"),
|
|
671
|
+
('%', "rgb(249,249,249)"),
|
|
672
|
+
('%', "rgb(252,252,253)"),
|
|
673
|
+
('%', "rgb(252,252,252)"),
|
|
674
|
+
('%', "rgb(252,253,253)"),
|
|
675
|
+
('%', "rgb(239,239,239)"),
|
|
676
|
+
('%', "rgb(234,234,234)"),
|
|
677
|
+
('%', "rgb(234,235,235)"),
|
|
678
|
+
('%', "rgb(234,234,234)"),
|
|
679
|
+
('\n', "default"),
|
|
680
|
+
('#', "rgb(225,225,225)"),
|
|
681
|
+
('#', "rgb(224,225,225)"),
|
|
682
|
+
('#', "rgb(223,224,224)"),
|
|
683
|
+
('%', "rgb(233,233,233)"),
|
|
684
|
+
('@', "rgb(255,255,255)"),
|
|
685
|
+
('@', "rgb(255,255,255)"),
|
|
686
|
+
('@', "rgb(255,255,255)"),
|
|
687
|
+
('%', "rgb(240,240,241)"),
|
|
688
|
+
('#', "rgb(224,224,224)"),
|
|
689
|
+
('#', "rgb(225,225,225)"),
|
|
690
|
+
('#', "rgb(224,225,224)"),
|
|
691
|
+
('%', "rgb(247,247,248)"),
|
|
692
|
+
('@', "rgb(255,255,255)"),
|
|
693
|
+
('@', "rgb(255,255,255)"),
|
|
694
|
+
('*', "rgb(169,173,191)"),
|
|
695
|
+
('=', "rgb(109,114,144)"),
|
|
696
|
+
('+', "rgb(137,141,162)"),
|
|
697
|
+
('*', "rgb(170,173,185)"),
|
|
698
|
+
('#', "rgb(204,206,210)"),
|
|
699
|
+
('*', "rgb(193,195,205)"),
|
|
700
|
+
('%', "rgb(233,234,237)"),
|
|
701
|
+
('#', "rgb(197,199,209)"),
|
|
702
|
+
('#', "rgb(196,199,206)"),
|
|
703
|
+
('*', "rgb(188,196,200)"),
|
|
704
|
+
('+', "rgb(151,167,180)"),
|
|
705
|
+
('#', "rgb(178,211,213)"),
|
|
706
|
+
('#', "rgb(187,232,234)"),
|
|
707
|
+
('*', "rgb(144,197,207)"),
|
|
708
|
+
('+', "rgb(117,179,193)"),
|
|
709
|
+
('=', "rgb(84,144,166)"),
|
|
710
|
+
('=', "rgb(70,129,153)"),
|
|
711
|
+
('=', "rgb(86,151,170)"),
|
|
712
|
+
('*', "rgb(131,188,199)"),
|
|
713
|
+
('#', "rgb(174,223,228)"),
|
|
714
|
+
('*', "rgb(175,202,210)"),
|
|
715
|
+
('#', "rgb(187,203,211)"),
|
|
716
|
+
('*', "rgb(189,196,205)"),
|
|
717
|
+
('*', "rgb(170,173,188)"),
|
|
718
|
+
('#', "rgb(200,201,210)"),
|
|
719
|
+
('*', "rgb(191,193,203)"),
|
|
720
|
+
('#', "rgb(196,199,208)"),
|
|
721
|
+
('*', "rgb(187,188,198)"),
|
|
722
|
+
('*', "rgb(172,174,185)"),
|
|
723
|
+
('+', "rgb(149,152,171)"),
|
|
724
|
+
('=', "rgb(122,126,153)"),
|
|
725
|
+
('*', "rgb(177,180,196)"),
|
|
726
|
+
('@', "rgb(255,255,255)"),
|
|
727
|
+
('%', "rgb(253,254,254)"),
|
|
728
|
+
('%', "rgb(253,254,254)"),
|
|
729
|
+
('%', "rgb(253,253,254)"),
|
|
730
|
+
('%', "rgb(253,253,254)"),
|
|
731
|
+
('%', "rgb(253,253,254)"),
|
|
732
|
+
('%', "rgb(253,254,254)"),
|
|
733
|
+
('%', "rgb(253,254,254)"),
|
|
734
|
+
('%', "rgb(253,253,254)"),
|
|
735
|
+
('%', "rgb(254,254,254)"),
|
|
736
|
+
('%', "rgb(232,232,232)"),
|
|
737
|
+
('#', "rgb(224,224,224)"),
|
|
738
|
+
('#', "rgb(225,225,225)"),
|
|
739
|
+
('#', "rgb(224,225,225)"),
|
|
740
|
+
('\n', "default"),
|
|
741
|
+
('%', "rgb(244,245,245)"),
|
|
742
|
+
('%', "rgb(244,244,245)"),
|
|
743
|
+
('%', "rgb(244,244,244)"),
|
|
744
|
+
('%', "rgb(242,242,242)"),
|
|
745
|
+
('%', "rgb(237,237,237)"),
|
|
746
|
+
('%', "rgb(236,237,237)"),
|
|
747
|
+
('%', "rgb(236,236,236)"),
|
|
748
|
+
('%', "rgb(240,241,240)"),
|
|
749
|
+
('%', "rgb(244,244,244)"),
|
|
750
|
+
('%', "rgb(244,244,244)"),
|
|
751
|
+
('%', "rgb(244,244,244)"),
|
|
752
|
+
('%', "rgb(239,239,239)"),
|
|
753
|
+
('%', "rgb(236,237,237)"),
|
|
754
|
+
('%', "rgb(240,240,239)"),
|
|
755
|
+
('+', "rgb(136,140,165)"),
|
|
756
|
+
('*', "rgb(167,170,186)"),
|
|
757
|
+
('+', "rgb(158,162,179)"),
|
|
758
|
+
('+', "rgb(152,156,173)"),
|
|
759
|
+
('+', "rgb(164,167,182)"),
|
|
760
|
+
('*', "rgb(178,180,192)"),
|
|
761
|
+
('*', "rgb(191,194,201)"),
|
|
762
|
+
('*', "rgb(193,199,205)"),
|
|
763
|
+
('*', "rgb(188,201,208)"),
|
|
764
|
+
('*', "rgb(164,187,198)"),
|
|
765
|
+
('+', "rgb(123,168,183)"),
|
|
766
|
+
('=', "rgb(88,160,178)"),
|
|
767
|
+
('+', "rgb(71,179,196)"),
|
|
768
|
+
('+', "rgb(61,197,212)"),
|
|
769
|
+
('+', "rgb(66,211,223)"),
|
|
770
|
+
('=', "rgb(57,150,172)"),
|
|
771
|
+
('=', "rgb(55,140,164)"),
|
|
772
|
+
('*', "rgb(67,212,224)"),
|
|
773
|
+
('+', "rgb(61,197,211)"),
|
|
774
|
+
('+', "rgb(69,172,191)"),
|
|
775
|
+
('=', "rgb(86,154,174)"),
|
|
776
|
+
('+', "rgb(125,172,187)"),
|
|
777
|
+
('*', "rgb(157,188,199)"),
|
|
778
|
+
('*', "rgb(169,185,196)"),
|
|
779
|
+
('#', "rgb(194,202,207)"),
|
|
780
|
+
('*', "rgb(195,198,205)"),
|
|
781
|
+
('*', "rgb(182,184,195)"),
|
|
782
|
+
('+', "rgb(157,160,176)"),
|
|
783
|
+
('+', "rgb(146,149,169)"),
|
|
784
|
+
('+', "rgb(149,153,174)"),
|
|
785
|
+
('+', "rgb(147,151,172)"),
|
|
786
|
+
('+', "rgb(139,143,165)"),
|
|
787
|
+
('%', "rgb(241,241,240)"),
|
|
788
|
+
('%', "rgb(236,237,237)"),
|
|
789
|
+
('%', "rgb(240,241,241)"),
|
|
790
|
+
('%', "rgb(252,252,253)"),
|
|
791
|
+
('%', "rgb(252,252,252)"),
|
|
792
|
+
('%', "rgb(253,253,253)"),
|
|
793
|
+
('%', "rgb(244,244,245)"),
|
|
794
|
+
('%', "rgb(235,235,236)"),
|
|
795
|
+
('%', "rgb(237,237,237)"),
|
|
796
|
+
('%', "rgb(236,237,237)"),
|
|
797
|
+
('%', "rgb(242,242,242)"),
|
|
798
|
+
('%', "rgb(244,244,244)"),
|
|
799
|
+
('%', "rgb(244,244,244)"),
|
|
800
|
+
('%', "rgb(244,244,244)"),
|
|
801
|
+
('\n', "default"),
|
|
802
|
+
('@', "rgb(255,255,255)"),
|
|
803
|
+
('@', "rgb(255,255,255)"),
|
|
804
|
+
('@', "rgb(255,255,255)"),
|
|
805
|
+
('%', "rgb(248,248,248)"),
|
|
806
|
+
('#', "rgb(224,224,224)"),
|
|
807
|
+
('#', "rgb(225,225,225)"),
|
|
808
|
+
('#', "rgb(223,223,223)"),
|
|
809
|
+
('%', "rgb(240,240,240)"),
|
|
810
|
+
('@', "rgb(255,255,255)"),
|
|
811
|
+
('@', "rgb(255,255,255)"),
|
|
812
|
+
('@', "rgb(255,255,255)"),
|
|
813
|
+
('%', "rgb(233,233,233)"),
|
|
814
|
+
('#', "rgb(225,224,225)"),
|
|
815
|
+
('%', "rgb(229,229,228)"),
|
|
816
|
+
('+', "rgb(137,141,165)"),
|
|
817
|
+
('*', "rgb(189,191,203)"),
|
|
818
|
+
('#', "rgb(203,204,213)"),
|
|
819
|
+
('#', "rgb(201,203,213)"),
|
|
820
|
+
('*', "rgb(182,184,196)"),
|
|
821
|
+
('+', "rgb(149,155,170)"),
|
|
822
|
+
('+', "rgb(136,148,166)"),
|
|
823
|
+
('+', "rgb(130,154,171)"),
|
|
824
|
+
('=', "rgb(103,143,164)"),
|
|
825
|
+
('+', "rgb(86,169,186)"),
|
|
826
|
+
('+', "rgb(67,198,212)"),
|
|
827
|
+
('+', "rgb(58,204,218)"),
|
|
828
|
+
('+', "rgb(52,177,197)"),
|
|
829
|
+
('=', "rgb(50,157,179)"),
|
|
830
|
+
('-', "rgb(42,112,142)"),
|
|
831
|
+
(':', "rgb(36,80,116)"),
|
|
832
|
+
('-', "rgb(42,107,138)"),
|
|
833
|
+
('-', "rgb(44,110,142)"),
|
|
834
|
+
('-', "rgb(45,127,155)"),
|
|
835
|
+
('+', "rgb(54,180,200)"),
|
|
836
|
+
('+', "rgb(58,203,218)"),
|
|
837
|
+
('+', "rgb(66,194,208)"),
|
|
838
|
+
('+', "rgb(91,175,190)"),
|
|
839
|
+
('+', "rgb(113,154,172)"),
|
|
840
|
+
('+', "rgb(133,157,172)"),
|
|
841
|
+
('+', "rgb(137,150,168)"),
|
|
842
|
+
('+', "rgb(140,147,165)"),
|
|
843
|
+
('*', "rgb(168,171,187)"),
|
|
844
|
+
('*', "rgb(187,188,202)"),
|
|
845
|
+
('%', "rgb(237,237,240)"),
|
|
846
|
+
('*', "rgb(183,186,199)"),
|
|
847
|
+
('+', "rgb(141,146,167)"),
|
|
848
|
+
('%', "rgb(230,230,229)"),
|
|
849
|
+
('#', "rgb(225,225,225)"),
|
|
850
|
+
('%', "rgb(233,233,233)"),
|
|
851
|
+
('%', "rgb(254,254,254)"),
|
|
852
|
+
('%', "rgb(253,253,254)"),
|
|
853
|
+
('@', "rgb(255,255,255)"),
|
|
854
|
+
('%', "rgb(239,239,239)"),
|
|
855
|
+
('#', "rgb(224,224,224)"),
|
|
856
|
+
('#', "rgb(225,225,225)"),
|
|
857
|
+
('#', "rgb(224,224,225)"),
|
|
858
|
+
('%', "rgb(249,249,249)"),
|
|
859
|
+
('@', "rgb(255,255,255)"),
|
|
860
|
+
('@', "rgb(255,255,255)"),
|
|
861
|
+
('@', "rgb(255,255,255)"),
|
|
862
|
+
('\n', "default"),
|
|
863
|
+
('%', "rgb(238,239,239)"),
|
|
864
|
+
('%', "rgb(238,238,238)"),
|
|
865
|
+
('%', "rgb(238,238,238)"),
|
|
866
|
+
('%', "rgb(239,240,239)"),
|
|
867
|
+
('%', "rgb(243,243,243)"),
|
|
868
|
+
('%', "rgb(242,243,243)"),
|
|
869
|
+
('%', "rgb(242,243,243)"),
|
|
870
|
+
('%', "rgb(240,241,241)"),
|
|
871
|
+
('%', "rgb(238,238,238)"),
|
|
872
|
+
('%', "rgb(238,238,238)"),
|
|
873
|
+
('%', "rgb(238,238,238)"),
|
|
874
|
+
('%', "rgb(241,241,241)"),
|
|
875
|
+
('%', "rgb(242,243,242)"),
|
|
876
|
+
('%', "rgb(245,245,244)"),
|
|
877
|
+
('+', "rgb(141,146,168)"),
|
|
878
|
+
('*', "rgb(175,178,190)"),
|
|
879
|
+
('*', "rgb(189,191,200)"),
|
|
880
|
+
('*', "rgb(191,195,203)"),
|
|
881
|
+
('#', "rgb(198,202,208)"),
|
|
882
|
+
('*', "rgb(180,190,198)"),
|
|
883
|
+
('*', "rgb(168,197,205)"),
|
|
884
|
+
('=', "rgb(83,125,150)"),
|
|
885
|
+
('=', "rgb(68,164,183)"),
|
|
886
|
+
('=', "rgb(59,162,183)"),
|
|
887
|
+
('-', "rgb(48,134,161)"),
|
|
888
|
+
('-', "rgb(42,112,142)"),
|
|
889
|
+
(':', "rgb(33,63,103)"),
|
|
890
|
+
(':', "rgb(37,90,126)"),
|
|
891
|
+
('.', "rgb(31,60,102)"),
|
|
892
|
+
(':', "rgb(34,77,115)"),
|
|
893
|
+
(':', "rgb(34,72,111)"),
|
|
894
|
+
('.', "rgb(31,56,99)"),
|
|
895
|
+
(':', "rgb(38,88,125)"),
|
|
896
|
+
(':', "rgb(39,95,129)"),
|
|
897
|
+
('-', "rgb(42,110,141)"),
|
|
898
|
+
('=', "rgb(48,143,168)"),
|
|
899
|
+
('=', "rgb(59,167,187)"),
|
|
900
|
+
('=', "rgb(66,159,179)"),
|
|
901
|
+
('-', "rgb(64,106,134)"),
|
|
902
|
+
('*', "rgb(148,185,196)"),
|
|
903
|
+
('*', "rgb(183,196,204)"),
|
|
904
|
+
('*', "rgb(190,193,201)"),
|
|
905
|
+
('*', "rgb(176,178,191)"),
|
|
906
|
+
('#', "rgb(199,202,210)"),
|
|
907
|
+
('*', "rgb(176,179,191)"),
|
|
908
|
+
('+', "rgb(145,149,169)"),
|
|
909
|
+
('%', "rgb(245,245,245)"),
|
|
910
|
+
('%', "rgb(242,242,242)"),
|
|
911
|
+
('%', "rgb(241,241,241)"),
|
|
912
|
+
('%', "rgb(238,238,239)"),
|
|
913
|
+
('%', "rgb(238,238,238)"),
|
|
914
|
+
('%', "rgb(238,238,238)"),
|
|
915
|
+
('%', "rgb(240,241,241)"),
|
|
916
|
+
('%', "rgb(243,243,243)"),
|
|
917
|
+
('%', "rgb(242,243,243)"),
|
|
918
|
+
('%', "rgb(243,243,243)"),
|
|
919
|
+
('%', "rgb(240,240,240)"),
|
|
920
|
+
('%', "rgb(238,238,238)"),
|
|
921
|
+
('%', "rgb(239,239,239)"),
|
|
922
|
+
('%', "rgb(238,239,239)"),
|
|
923
|
+
('\n', "default"),
|
|
924
|
+
('#', "rgb(224,225,225)"),
|
|
925
|
+
('#', "rgb(224,224,225)"),
|
|
926
|
+
('#', "rgb(223,223,223)"),
|
|
927
|
+
('%', "rgb(232,233,233)"),
|
|
928
|
+
('@', "rgb(255,255,255)"),
|
|
929
|
+
('@', "rgb(255,255,255)"),
|
|
930
|
+
('@', "rgb(255,255,255)"),
|
|
931
|
+
('%', "rgb(240,240,240)"),
|
|
932
|
+
('#', "rgb(224,224,224)"),
|
|
933
|
+
('#', "rgb(225,225,225)"),
|
|
934
|
+
('#', "rgb(225,225,225)"),
|
|
935
|
+
('%', "rgb(247,247,248)"),
|
|
936
|
+
('@', "rgb(255,255,255)"),
|
|
937
|
+
('@', "rgb(255,255,255)"),
|
|
938
|
+
('+', "rgb(144,148,171)"),
|
|
939
|
+
('+', "rgb(164,168,180)"),
|
|
940
|
+
('*', "rgb(172,175,186)"),
|
|
941
|
+
('*', "rgb(180,184,194)"),
|
|
942
|
+
('*', "rgb(173,180,191)"),
|
|
943
|
+
('#', "rgb(210,231,233)"),
|
|
944
|
+
('#', "rgb(182,237,238)"),
|
|
945
|
+
('=', "rgb(75,137,161)"),
|
|
946
|
+
('*', "rgb(73,234,242)"),
|
|
947
|
+
('=', "rgb(53,169,191)"),
|
|
948
|
+
(':', "rgb(37,75,113)"),
|
|
949
|
+
('-', "rgb(42,106,139)"),
|
|
950
|
+
('.', "rgb(30,61,102)"),
|
|
951
|
+
('.', "rgb(27,39,87)"),
|
|
952
|
+
(':', "rgb(36,87,127)"),
|
|
953
|
+
('+', "rgb(58,205,223)"),
|
|
954
|
+
('+', "rgb(58,205,223)"),
|
|
955
|
+
(':', "rgb(37,86,126)"),
|
|
956
|
+
('.', "rgb(26,36,84)"),
|
|
957
|
+
(':', "rgb(32,68,108)"),
|
|
958
|
+
(':', "rgb(40,96,131)"),
|
|
959
|
+
(':', "rgb(38,83,120)"),
|
|
960
|
+
('=', "rgb(51,153,178)"),
|
|
961
|
+
('*', "rgb(69,236,245)"),
|
|
962
|
+
('=', "rgb(64,133,160)"),
|
|
963
|
+
('#', "rgb(155,219,224)"),
|
|
964
|
+
('*', "rgb(155,175,189)"),
|
|
965
|
+
('*', "rgb(178,184,194)"),
|
|
966
|
+
('*', "rgb(183,185,194)"),
|
|
967
|
+
('+', "rgb(163,165,179)"),
|
|
968
|
+
('*', "rgb(167,170,182)"),
|
|
969
|
+
('+', "rgb(148,152,172)"),
|
|
970
|
+
('@', "rgb(255,255,255)"),
|
|
971
|
+
('@', "rgb(255,255,255)"),
|
|
972
|
+
('%', "rgb(247,247,247)"),
|
|
973
|
+
('#', "rgb(225,225,225)"),
|
|
974
|
+
('#', "rgb(225,226,226)"),
|
|
975
|
+
('#', "rgb(224,224,224)"),
|
|
976
|
+
('%', "rgb(241,241,241)"),
|
|
977
|
+
('@', "rgb(255,255,255)"),
|
|
978
|
+
('@', "rgb(255,255,255)"),
|
|
979
|
+
('@', "rgb(255,255,255)"),
|
|
980
|
+
('%', "rgb(233,232,233)"),
|
|
981
|
+
('#', "rgb(224,224,224)"),
|
|
982
|
+
('#', "rgb(225,225,225)"),
|
|
983
|
+
('#', "rgb(224,224,224)"),
|
|
984
|
+
('\n', "default"),
|
|
985
|
+
('%', "rgb(241,241,241)"),
|
|
986
|
+
('%', "rgb(241,241,241)"),
|
|
987
|
+
('%', "rgb(241,241,241)"),
|
|
988
|
+
('%', "rgb(241,241,241)"),
|
|
989
|
+
('%', "rgb(240,241,240)"),
|
|
990
|
+
('%', "rgb(240,240,240)"),
|
|
991
|
+
('%', "rgb(240,240,240)"),
|
|
992
|
+
('%', "rgb(241,240,241)"),
|
|
993
|
+
('%', "rgb(241,241,241)"),
|
|
994
|
+
('%', "rgb(240,241,241)"),
|
|
995
|
+
('%', "rgb(240,241,241)"),
|
|
996
|
+
('%', "rgb(240,240,240)"),
|
|
997
|
+
('%', "rgb(240,240,240)"),
|
|
998
|
+
('%', "rgb(242,243,242)"),
|
|
999
|
+
('+', "rgb(142,146,168)"),
|
|
1000
|
+
('*', "rgb(169,173,186)"),
|
|
1001
|
+
('+', "rgb(164,168,181)"),
|
|
1002
|
+
('*', "rgb(174,179,189)"),
|
|
1003
|
+
('*', "rgb(178,186,196)"),
|
|
1004
|
+
('*', "rgb(177,202,210)"),
|
|
1005
|
+
('*', "rgb(145,213,218)"),
|
|
1006
|
+
('=', "rgb(63,131,158)"),
|
|
1007
|
+
('*', "rgb(64,230,240)"),
|
|
1008
|
+
('=', "rgb(53,172,192)"),
|
|
1009
|
+
(':', "rgb(41,92,126)"),
|
|
1010
|
+
(':', "rgb(36,81,118)"),
|
|
1011
|
+
('.', "rgb(26,44,88)"),
|
|
1012
|
+
('.', "rgb(27,42,89)"),
|
|
1013
|
+
('+', "rgb(55,179,202)"),
|
|
1014
|
+
('=', "rgb(51,162,186)"),
|
|
1015
|
+
('=', "rgb(50,164,187)"),
|
|
1016
|
+
('+', "rgb(55,179,201)"),
|
|
1017
|
+
('.', "rgb(27,42,89)"),
|
|
1018
|
+
('.', "rgb(27,46,92)"),
|
|
1019
|
+
(':', "rgb(37,88,124)"),
|
|
1020
|
+
(':', "rgb(38,83,119)"),
|
|
1021
|
+
('=', "rgb(51,154,178)"),
|
|
1022
|
+
('*', "rgb(64,233,243)"),
|
|
1023
|
+
('-', "rgb(60,131,158)"),
|
|
1024
|
+
('*', "rgb(133,207,214)"),
|
|
1025
|
+
('*', "rgb(167,198,206)"),
|
|
1026
|
+
('#', "rgb(198,203,210)"),
|
|
1027
|
+
('*', "rgb(191,193,201)"),
|
|
1028
|
+
('*', "rgb(174,177,189)"),
|
|
1029
|
+
('*', "rgb(179,182,194)"),
|
|
1030
|
+
('+', "rgb(144,148,169)"),
|
|
1031
|
+
('%', "rgb(243,243,243)"),
|
|
1032
|
+
('%', "rgb(240,240,240)"),
|
|
1033
|
+
('%', "rgb(240,240,240)"),
|
|
1034
|
+
('%', "rgb(241,241,241)"),
|
|
1035
|
+
('%', "rgb(241,241,241)"),
|
|
1036
|
+
('%', "rgb(240,241,241)"),
|
|
1037
|
+
('%', "rgb(240,241,241)"),
|
|
1038
|
+
('%', "rgb(240,240,240)"),
|
|
1039
|
+
('%', "rgb(240,241,241)"),
|
|
1040
|
+
('%', "rgb(240,240,240)"),
|
|
1041
|
+
('%', "rgb(241,241,241)"),
|
|
1042
|
+
('%', "rgb(241,241,241)"),
|
|
1043
|
+
('%', "rgb(241,241,241)"),
|
|
1044
|
+
('%', "rgb(241,241,241)"),
|
|
1045
|
+
('\n', "default"),
|
|
1046
|
+
('@', "rgb(255,255,255)"),
|
|
1047
|
+
('@', "rgb(255,255,255)"),
|
|
1048
|
+
('@', "rgb(255,255,255)"),
|
|
1049
|
+
('%', "rgb(247,248,247)"),
|
|
1050
|
+
('#', "rgb(224,224,224)"),
|
|
1051
|
+
('#', "rgb(225,225,225)"),
|
|
1052
|
+
('#', "rgb(223,223,223)"),
|
|
1053
|
+
('%', "rgb(240,240,240)"),
|
|
1054
|
+
('@', "rgb(255,255,255)"),
|
|
1055
|
+
('@', "rgb(254,255,255)"),
|
|
1056
|
+
('@', "rgb(255,255,255)"),
|
|
1057
|
+
('%', "rgb(232,233,232)"),
|
|
1058
|
+
('#', "rgb(224,225,225)"),
|
|
1059
|
+
('%', "rgb(229,229,228)"),
|
|
1060
|
+
('+', "rgb(138,142,164)"),
|
|
1061
|
+
('+', "rgb(163,165,181)"),
|
|
1062
|
+
('*', "rgb(181,183,192)"),
|
|
1063
|
+
('*', "rgb(189,192,199)"),
|
|
1064
|
+
('*', "rgb(190,195,203)"),
|
|
1065
|
+
('*', "rgb(162,179,192)"),
|
|
1066
|
+
('*', "rgb(156,215,220)"),
|
|
1067
|
+
('=', "rgb(67,134,159)"),
|
|
1068
|
+
('*', "rgb(70,233,242)"),
|
|
1069
|
+
('=', "rgb(53,166,188)"),
|
|
1070
|
+
(':', "rgb(39,92,126)"),
|
|
1071
|
+
(':', "rgb(39,96,130)"),
|
|
1072
|
+
(':', "rgb(29,64,105)"),
|
|
1073
|
+
('.', "rgb(27,40,86)"),
|
|
1074
|
+
('-', "rgb(45,126,157)"),
|
|
1075
|
+
('=', "rgb(53,171,193)"),
|
|
1076
|
+
('=', "rgb(53,169,192)"),
|
|
1077
|
+
('-', "rgb(46,129,161)"),
|
|
1078
|
+
('.', "rgb(26,33,83)"),
|
|
1079
|
+
(':', "rgb(31,67,108)"),
|
|
1080
|
+
(':', "rgb(36,82,120)"),
|
|
1081
|
+
(':', "rgb(40,90,127)"),
|
|
1082
|
+
('=', "rgb(52,154,178)"),
|
|
1083
|
+
('*', "rgb(72,238,245)"),
|
|
1084
|
+
('=', "rgb(71,143,166)"),
|
|
1085
|
+
('*', "rgb(151,217,222)"),
|
|
1086
|
+
('*', "rgb(175,192,202)"),
|
|
1087
|
+
('*', "rgb(179,182,194)"),
|
|
1088
|
+
('#', "rgb(198,199,208)"),
|
|
1089
|
+
('*', "rgb(192,194,204)"),
|
|
1090
|
+
('*', "rgb(184,187,200)"),
|
|
1091
|
+
('+', "rgb(139,143,165)"),
|
|
1092
|
+
('%', "rgb(230,230,229)"),
|
|
1093
|
+
('#', "rgb(225,225,225)"),
|
|
1094
|
+
('%', "rgb(233,233,234)"),
|
|
1095
|
+
('@', "rgb(255,255,255)"),
|
|
1096
|
+
('@', "rgb(255,255,255)"),
|
|
1097
|
+
('@', "rgb(255,255,255)"),
|
|
1098
|
+
('%', "rgb(240,240,240)"),
|
|
1099
|
+
('#', "rgb(224,224,224)"),
|
|
1100
|
+
('#', "rgb(225,225,225)"),
|
|
1101
|
+
('#', "rgb(224,224,224)"),
|
|
1102
|
+
('%', "rgb(248,249,249)"),
|
|
1103
|
+
('@', "rgb(255,255,255)"),
|
|
1104
|
+
('@', "rgb(255,255,255)"),
|
|
1105
|
+
('@', "rgb(255,255,255)"),
|
|
1106
|
+
('\n', "default"),
|
|
1107
|
+
('%', "rgb(242,242,242)"),
|
|
1108
|
+
('%', "rgb(241,242,242)"),
|
|
1109
|
+
('%', "rgb(241,242,242)"),
|
|
1110
|
+
('%', "rgb(240,241,241)"),
|
|
1111
|
+
('%', "rgb(239,239,239)"),
|
|
1112
|
+
('%', "rgb(239,239,239)"),
|
|
1113
|
+
('%', "rgb(239,239,239)"),
|
|
1114
|
+
('%', "rgb(241,240,241)"),
|
|
1115
|
+
('%', "rgb(242,242,242)"),
|
|
1116
|
+
('%', "rgb(241,242,242)"),
|
|
1117
|
+
('%', "rgb(241,242,242)"),
|
|
1118
|
+
('%', "rgb(239,240,240)"),
|
|
1119
|
+
('%', "rgb(239,239,239)"),
|
|
1120
|
+
('%', "rgb(242,242,241)"),
|
|
1121
|
+
('+', "rgb(141,146,167)"),
|
|
1122
|
+
('*', "rgb(177,179,192)"),
|
|
1123
|
+
('*', "rgb(185,186,197)"),
|
|
1124
|
+
('*', "rgb(170,172,186)"),
|
|
1125
|
+
('*', "rgb(195,198,205)"),
|
|
1126
|
+
('*', "rgb(184,195,203)"),
|
|
1127
|
+
('*', "rgb(152,185,197)"),
|
|
1128
|
+
('-', "rgb(64,105,134)"),
|
|
1129
|
+
('=', "rgb(59,156,178)"),
|
|
1130
|
+
('=', "rgb(54,167,187)"),
|
|
1131
|
+
('=', "rgb(49,142,168)"),
|
|
1132
|
+
('-', "rgb(41,103,136)"),
|
|
1133
|
+
(':', "rgb(38,91,126)"),
|
|
1134
|
+
(':', "rgb(35,82,118)"),
|
|
1135
|
+
(':', "rgb(34,77,114)"),
|
|
1136
|
+
('=', "rgb(46,138,166)"),
|
|
1137
|
+
('-', "rgb(45,135,163)"),
|
|
1138
|
+
(':', "rgb(35,82,118)"),
|
|
1139
|
+
(':', "rgb(33,71,110)"),
|
|
1140
|
+
('-', "rgb(39,99,132)"),
|
|
1141
|
+
('-', "rgb(42,103,136)"),
|
|
1142
|
+
('-', "rgb(47,132,159)"),
|
|
1143
|
+
('=', "rgb(60,169,190)"),
|
|
1144
|
+
('=', "rgb(69,169,188)"),
|
|
1145
|
+
('=', "rgb(78,125,150)"),
|
|
1146
|
+
('*', "rgb(150,188,198)"),
|
|
1147
|
+
('*', "rgb(173,183,194)"),
|
|
1148
|
+
('*', "rgb(193,196,204)"),
|
|
1149
|
+
('*', "rgb(182,184,196)"),
|
|
1150
|
+
('*', "rgb(188,191,200)"),
|
|
1151
|
+
('*', "rgb(181,184,198)"),
|
|
1152
|
+
('+', "rgb(144,148,169)"),
|
|
1153
|
+
('%', "rgb(242,242,242)"),
|
|
1154
|
+
('%', "rgb(239,239,239)"),
|
|
1155
|
+
('%', "rgb(239,240,240)"),
|
|
1156
|
+
('%', "rgb(242,242,242)"),
|
|
1157
|
+
('%', "rgb(242,242,242)"),
|
|
1158
|
+
('%', "rgb(242,242,242)"),
|
|
1159
|
+
('%', "rgb(240,241,240)"),
|
|
1160
|
+
('%', "rgb(239,239,239)"),
|
|
1161
|
+
('%', "rgb(239,239,240)"),
|
|
1162
|
+
('%', "rgb(239,239,239)"),
|
|
1163
|
+
('%', "rgb(242,242,242)"),
|
|
1164
|
+
('%', "rgb(242,242,242)"),
|
|
1165
|
+
('%', "rgb(242,242,242)"),
|
|
1166
|
+
('%', "rgb(242,242,242)"),
|
|
1167
|
+
('\n', "default"),
|
|
1168
|
+
('#', "rgb(225,226,226)"),
|
|
1169
|
+
('#', "rgb(225,225,225)"),
|
|
1170
|
+
('#', "rgb(223,224,224)"),
|
|
1171
|
+
('%', "rgb(232,233,233)"),
|
|
1172
|
+
('@', "rgb(255,255,255)"),
|
|
1173
|
+
('@', "rgb(255,255,255)"),
|
|
1174
|
+
('@', "rgb(255,255,255)"),
|
|
1175
|
+
('%', "rgb(240,240,240)"),
|
|
1176
|
+
('#', "rgb(224,225,224)"),
|
|
1177
|
+
('#', "rgb(226,226,226)"),
|
|
1178
|
+
('#', "rgb(225,225,225)"),
|
|
1179
|
+
('%', "rgb(247,248,248)"),
|
|
1180
|
+
('@', "rgb(255,255,255)"),
|
|
1181
|
+
('@', "rgb(255,255,255)"),
|
|
1182
|
+
('+', "rgb(149,153,175)"),
|
|
1183
|
+
('*', "rgb(184,186,199)"),
|
|
1184
|
+
('*', "rgb(193,195,206)"),
|
|
1185
|
+
('*', "rgb(181,184,196)"),
|
|
1186
|
+
('*', "rgb(174,177,191)"),
|
|
1187
|
+
('+', "rgb(139,146,164)"),
|
|
1188
|
+
('+', "rgb(132,145,162)"),
|
|
1189
|
+
('+', "rgb(146,170,182)"),
|
|
1190
|
+
('+', "rgb(124,169,185)"),
|
|
1191
|
+
('+', "rgb(88,181,198)"),
|
|
1192
|
+
('+', "rgb(63,196,212)"),
|
|
1193
|
+
('+', "rgb(58,205,219)"),
|
|
1194
|
+
('+', "rgb(54,181,199)"),
|
|
1195
|
+
('-', "rgb(45,133,160)"),
|
|
1196
|
+
(':', "rgb(38,96,128)"),
|
|
1197
|
+
('-', "rgb(40,99,131)"),
|
|
1198
|
+
(':', "rgb(36,84,120)"),
|
|
1199
|
+
(':', "rgb(38,91,126)"),
|
|
1200
|
+
('=', "rgb(48,138,163)"),
|
|
1201
|
+
('+', "rgb(56,185,203)"),
|
|
1202
|
+
('+', "rgb(59,206,220)"),
|
|
1203
|
+
('+', "rgb(64,203,218)"),
|
|
1204
|
+
('+', "rgb(80,172,190)"),
|
|
1205
|
+
('=', "rgb(105,142,164)"),
|
|
1206
|
+
('+', "rgb(140,161,176)"),
|
|
1207
|
+
('+', "rgb(142,156,172)"),
|
|
1208
|
+
('+', "rgb(148,156,172)"),
|
|
1209
|
+
('*', "rgb(184,187,199)"),
|
|
1210
|
+
('#', "rgb(204,206,215)"),
|
|
1211
|
+
('#', "rgb(201,203,213)"),
|
|
1212
|
+
('*', "rgb(185,187,201)"),
|
|
1213
|
+
('+', "rgb(149,153,174)"),
|
|
1214
|
+
('@', "rgb(255,255,255)"),
|
|
1215
|
+
('@', "rgb(255,255,255)"),
|
|
1216
|
+
('%', "rgb(247,247,247)"),
|
|
1217
|
+
('#', "rgb(224,225,225)"),
|
|
1218
|
+
('#', "rgb(225,226,226)"),
|
|
1219
|
+
('#', "rgb(224,224,224)"),
|
|
1220
|
+
('%', "rgb(241,241,241)"),
|
|
1221
|
+
('@', "rgb(255,255,255)"),
|
|
1222
|
+
('@', "rgb(255,255,255)"),
|
|
1223
|
+
('@', "rgb(255,255,255)"),
|
|
1224
|
+
('%', "rgb(232,233,233)"),
|
|
1225
|
+
('#', "rgb(224,224,224)"),
|
|
1226
|
+
('#', "rgb(225,225,225)"),
|
|
1227
|
+
('#', "rgb(225,225,225)"),
|
|
1228
|
+
('\n', "default"),
|
|
1229
|
+
('%', "rgb(237,237,238)"),
|
|
1230
|
+
('%', "rgb(237,237,237)"),
|
|
1231
|
+
('%', "rgb(237,237,237)"),
|
|
1232
|
+
('%', "rgb(239,239,239)"),
|
|
1233
|
+
('%', "rgb(243,243,244)"),
|
|
1234
|
+
('%', "rgb(243,243,243)"),
|
|
1235
|
+
('%', "rgb(243,243,243)"),
|
|
1236
|
+
('%', "rgb(240,241,241)"),
|
|
1237
|
+
('%', "rgb(238,237,238)"),
|
|
1238
|
+
('%', "rgb(238,238,238)"),
|
|
1239
|
+
('%', "rgb(237,238,238)"),
|
|
1240
|
+
('%', "rgb(242,242,242)"),
|
|
1241
|
+
('%', "rgb(243,243,244)"),
|
|
1242
|
+
('%', "rgb(247,247,246)"),
|
|
1243
|
+
('+', "rgb(138,142,165)"),
|
|
1244
|
+
('+', "rgb(145,149,169)"),
|
|
1245
|
+
('+', "rgb(152,155,175)"),
|
|
1246
|
+
('+', "rgb(146,149,169)"),
|
|
1247
|
+
('+', "rgb(154,157,173)"),
|
|
1248
|
+
('*', "rgb(178,180,191)"),
|
|
1249
|
+
('*', "rgb(192,194,202)"),
|
|
1250
|
+
('*', "rgb(185,192,200)"),
|
|
1251
|
+
('*', "rgb(170,188,196)"),
|
|
1252
|
+
('*', "rgb(169,203,210)"),
|
|
1253
|
+
('+', "rgb(126,174,188)"),
|
|
1254
|
+
('=', "rgb(81,149,170)"),
|
|
1255
|
+
('=', "rgb(64,168,189)"),
|
|
1256
|
+
('+', "rgb(61,196,212)"),
|
|
1257
|
+
('*', "rgb(68,215,226)"),
|
|
1258
|
+
('=', "rgb(57,147,169)"),
|
|
1259
|
+
('=', "rgb(59,154,176)"),
|
|
1260
|
+
('+', "rgb(65,207,220)"),
|
|
1261
|
+
('+', "rgb(62,202,216)"),
|
|
1262
|
+
('+', "rgb(65,174,193)"),
|
|
1263
|
+
('=', "rgb(81,154,175)"),
|
|
1264
|
+
('+', "rgb(120,170,185)"),
|
|
1265
|
+
('*', "rgb(170,199,207)"),
|
|
1266
|
+
('#', "rgb(197,210,214)"),
|
|
1267
|
+
('#', "rgb(197,203,209)"),
|
|
1268
|
+
('#', "rgb(198,201,207)"),
|
|
1269
|
+
('*', "rgb(191,193,201)"),
|
|
1270
|
+
('*', "rgb(169,172,187)"),
|
|
1271
|
+
('+', "rgb(156,159,177)"),
|
|
1272
|
+
('+', "rgb(158,161,179)"),
|
|
1273
|
+
('+', "rgb(164,167,184)"),
|
|
1274
|
+
('+', "rgb(140,144,166)"),
|
|
1275
|
+
('%', "rgb(246,246,246)"),
|
|
1276
|
+
('%', "rgb(243,243,243)"),
|
|
1277
|
+
('%', "rgb(241,241,241)"),
|
|
1278
|
+
('%', "rgb(237,237,237)"),
|
|
1279
|
+
('%', "rgb(237,237,237)"),
|
|
1280
|
+
('%', "rgb(237,237,237)"),
|
|
1281
|
+
('%', "rgb(241,241,241)"),
|
|
1282
|
+
('%', "rgb(244,244,244)"),
|
|
1283
|
+
('%', "rgb(243,244,244)"),
|
|
1284
|
+
('%', "rgb(243,243,244)"),
|
|
1285
|
+
('%', "rgb(239,239,239)"),
|
|
1286
|
+
('%', "rgb(237,237,237)"),
|
|
1287
|
+
('%', "rgb(237,237,237)"),
|
|
1288
|
+
('%', "rgb(237,237,237)"),
|
|
1289
|
+
('\n', "default"),
|
|
1290
|
+
('%', "rgb(253,253,253)"),
|
|
1291
|
+
('%', "rgb(253,253,253)"),
|
|
1292
|
+
('%', "rgb(253,254,254)"),
|
|
1293
|
+
('%', "rgb(245,245,245)"),
|
|
1294
|
+
('#', "rgb(224,225,224)"),
|
|
1295
|
+
('#', "rgb(225,225,225)"),
|
|
1296
|
+
('#', "rgb(223,223,223)"),
|
|
1297
|
+
('%', "rgb(239,239,239)"),
|
|
1298
|
+
('@', "rgb(254,255,254)"),
|
|
1299
|
+
('%', "rgb(253,253,253)"),
|
|
1300
|
+
('%', "rgb(253,254,254)"),
|
|
1301
|
+
('%', "rgb(233,233,233)"),
|
|
1302
|
+
('#', "rgb(226,226,226)"),
|
|
1303
|
+
('%', "rgb(231,232,231)"),
|
|
1304
|
+
('+', "rgb(151,154,173)"),
|
|
1305
|
+
('=', "rgb(114,119,146)"),
|
|
1306
|
+
('+', "rgb(148,151,169)"),
|
|
1307
|
+
('*', "rgb(170,173,183)"),
|
|
1308
|
+
('*', "rgb(184,186,196)"),
|
|
1309
|
+
('*', "rgb(194,196,206)"),
|
|
1310
|
+
('*', "rgb(195,197,206)"),
|
|
1311
|
+
('#', "rgb(204,206,214)"),
|
|
1312
|
+
('+', "rgb(156,159,175)"),
|
|
1313
|
+
('+', "rgb(160,168,180)"),
|
|
1314
|
+
('*', "rgb(170,189,196)"),
|
|
1315
|
+
('*', "rgb(155,187,195)"),
|
|
1316
|
+
('*', "rgb(149,194,203)"),
|
|
1317
|
+
('+', "rgb(107,159,177)"),
|
|
1318
|
+
('=', "rgb(89,154,174)"),
|
|
1319
|
+
('=', "rgb(67,131,155)"),
|
|
1320
|
+
('=', "rgb(80,140,162)"),
|
|
1321
|
+
('+', "rgb(120,187,200)"),
|
|
1322
|
+
('*', "rgb(147,203,212)"),
|
|
1323
|
+
('#', "rgb(182,227,229)"),
|
|
1324
|
+
('#', "rgb(180,209,211)"),
|
|
1325
|
+
('*', "rgb(182,199,204)"),
|
|
1326
|
+
('*', "rgb(184,193,199)"),
|
|
1327
|
+
('*', "rgb(189,192,201)"),
|
|
1328
|
+
('#', "rgb(205,207,216)"),
|
|
1329
|
+
('%', "rgb(228,229,234)"),
|
|
1330
|
+
('#', "rgb(213,215,222)"),
|
|
1331
|
+
('*', "rgb(166,169,183)"),
|
|
1332
|
+
('*', "rgb(187,189,196)"),
|
|
1333
|
+
('+', "rgb(147,151,169)"),
|
|
1334
|
+
('=', "rgb(107,112,142)"),
|
|
1335
|
+
('+', "rgb(149,153,172)"),
|
|
1336
|
+
('%', "rgb(231,231,230)"),
|
|
1337
|
+
('#', "rgb(224,225,225)"),
|
|
1338
|
+
('%', "rgb(232,233,233)"),
|
|
1339
|
+
('%', "rgb(254,254,254)"),
|
|
1340
|
+
('%', "rgb(253,253,253)"),
|
|
1341
|
+
('@', "rgb(254,255,254)"),
|
|
1342
|
+
('%', "rgb(239,240,239)"),
|
|
1343
|
+
('#', "rgb(224,225,225)"),
|
|
1344
|
+
('#', "rgb(226,226,226)"),
|
|
1345
|
+
('#', "rgb(225,225,225)"),
|
|
1346
|
+
('%', "rgb(247,247,247)"),
|
|
1347
|
+
('@', "rgb(255,255,255)"),
|
|
1348
|
+
('%', "rgb(254,254,254)"),
|
|
1349
|
+
('%', "rgb(254,254,254)"),
|
|
1350
|
+
('\n', "default"),
|
|
1351
|
+
('%', "rgb(252,252,253)"),
|
|
1352
|
+
('%', "rgb(252,252,252)"),
|
|
1353
|
+
('%', "rgb(252,253,253)"),
|
|
1354
|
+
('%', "rgb(247,248,248)"),
|
|
1355
|
+
('%', "rgb(235,235,235)"),
|
|
1356
|
+
('%', "rgb(236,235,236)"),
|
|
1357
|
+
('%', "rgb(235,235,235)"),
|
|
1358
|
+
('%', "rgb(243,244,244)"),
|
|
1359
|
+
('%', "rgb(253,253,253)"),
|
|
1360
|
+
('%', "rgb(252,252,252)"),
|
|
1361
|
+
('%', "rgb(252,252,252)"),
|
|
1362
|
+
('%', "rgb(233,233,233)"),
|
|
1363
|
+
('%', "rgb(227,227,227)"),
|
|
1364
|
+
('%', "rgb(228,227,228)"),
|
|
1365
|
+
('%', "rgb(233,233,233)"),
|
|
1366
|
+
('%', "rgb(238,239,242)"),
|
|
1367
|
+
('#', "rgb(201,203,214)"),
|
|
1368
|
+
('+', "rgb(165,168,185)"),
|
|
1369
|
+
('+', "rgb(154,158,176)"),
|
|
1370
|
+
('*', "rgb(167,170,185)"),
|
|
1371
|
+
('#', "rgb(197,199,208)"),
|
|
1372
|
+
('%', "rgb(234,234,237)"),
|
|
1373
|
+
('%', "rgb(230,231,232)"),
|
|
1374
|
+
('*', "rgb(176,178,189)"),
|
|
1375
|
+
('*', "rgb(181,185,193)"),
|
|
1376
|
+
('*', "rgb(190,193,201)"),
|
|
1377
|
+
('#', "rgb(206,211,216)"),
|
|
1378
|
+
('*', "rgb(180,194,202)"),
|
|
1379
|
+
('*', "rgb(169,190,198)"),
|
|
1380
|
+
('+', "rgb(126,146,165)"),
|
|
1381
|
+
('+', "rgb(156,169,184)"),
|
|
1382
|
+
('#', "rgb(197,214,220)"),
|
|
1383
|
+
('*', "rgb(173,187,198)"),
|
|
1384
|
+
('#', "rgb(221,228,229)"),
|
|
1385
|
+
('%', "rgb(230,232,232)"),
|
|
1386
|
+
('*', "rgb(190,191,199)"),
|
|
1387
|
+
('#', "rgb(202,203,209)"),
|
|
1388
|
+
('*', "rgb(172,174,187)"),
|
|
1389
|
+
('#', "rgb(206,207,214)"),
|
|
1390
|
+
('#', "rgb(218,219,225)"),
|
|
1391
|
+
('*', "rgb(180,182,196)"),
|
|
1392
|
+
('+', "rgb(147,151,170)"),
|
|
1393
|
+
('+', "rgb(155,158,177)"),
|
|
1394
|
+
('*', "rgb(189,191,202)"),
|
|
1395
|
+
('%', "rgb(228,228,232)"),
|
|
1396
|
+
('%', "rgb(240,240,239)"),
|
|
1397
|
+
('%', "rgb(236,236,236)"),
|
|
1398
|
+
('%', "rgb(235,235,235)"),
|
|
1399
|
+
('%', "rgb(240,240,240)"),
|
|
1400
|
+
('%', "rgb(252,252,253)"),
|
|
1401
|
+
('%', "rgb(251,252,252)"),
|
|
1402
|
+
('%', "rgb(252,253,253)"),
|
|
1403
|
+
('%', "rgb(239,239,239)"),
|
|
1404
|
+
('#', "rgb(226,226,226)"),
|
|
1405
|
+
('%', "rgb(227,227,227)"),
|
|
1406
|
+
('#', "rgb(226,226,226)"),
|
|
1407
|
+
('%', "rgb(246,246,247)"),
|
|
1408
|
+
('%', "rgb(254,254,254)"),
|
|
1409
|
+
('%', "rgb(253,253,253)"),
|
|
1410
|
+
('%', "rgb(252,253,253)"),
|
|
1411
|
+
('\n', "default"),
|
|
1412
|
+
('%', "rgb(254,254,254)"),
|
|
1413
|
+
('%', "rgb(253,254,254)"),
|
|
1414
|
+
('%', "rgb(253,253,254)"),
|
|
1415
|
+
('%', "rgb(253,253,254)"),
|
|
1416
|
+
('%', "rgb(253,254,254)"),
|
|
1417
|
+
('%', "rgb(253,254,254)"),
|
|
1418
|
+
('%', "rgb(253,254,254)"),
|
|
1419
|
+
('%', "rgb(253,253,254)"),
|
|
1420
|
+
('%', "rgb(253,253,254)"),
|
|
1421
|
+
('%', "rgb(253,253,253)"),
|
|
1422
|
+
('%', "rgb(253,254,254)"),
|
|
1423
|
+
('%', "rgb(233,233,233)"),
|
|
1424
|
+
('#', "rgb(226,226,226)"),
|
|
1425
|
+
('%', "rgb(226,227,227)"),
|
|
1426
|
+
('%', "rgb(228,229,229)"),
|
|
1427
|
+
('%', "rgb(254,254,253)"),
|
|
1428
|
+
('@', "rgb(255,255,255)"),
|
|
1429
|
+
('@', "rgb(255,255,255)"),
|
|
1430
|
+
('%', "rgb(231,232,236)"),
|
|
1431
|
+
('*', "rgb(181,183,194)"),
|
|
1432
|
+
('+', "rgb(152,155,173)"),
|
|
1433
|
+
('+', "rgb(146,150,168)"),
|
|
1434
|
+
('*', "rgb(180,183,195)"),
|
|
1435
|
+
('*', "rgb(189,191,202)"),
|
|
1436
|
+
('#', "rgb(222,223,228)"),
|
|
1437
|
+
('#', "rgb(199,200,209)"),
|
|
1438
|
+
('#', "rgb(203,204,212)"),
|
|
1439
|
+
('#', "rgb(200,202,210)"),
|
|
1440
|
+
('#', "rgb(201,203,210)"),
|
|
1441
|
+
('+', "rgb(161,165,182)"),
|
|
1442
|
+
('+', "rgb(145,148,167)"),
|
|
1443
|
+
('*', "rgb(195,196,202)"),
|
|
1444
|
+
('*', "rgb(186,186,195)"),
|
|
1445
|
+
('*', "rgb(186,187,197)"),
|
|
1446
|
+
('#', "rgb(196,198,208)"),
|
|
1447
|
+
('#', "rgb(203,205,213)"),
|
|
1448
|
+
('#', "rgb(218,219,226)"),
|
|
1449
|
+
('*', "rgb(181,183,196)"),
|
|
1450
|
+
('+', "rgb(152,156,173)"),
|
|
1451
|
+
('+', "rgb(158,162,180)"),
|
|
1452
|
+
('*', "rgb(194,196,208)"),
|
|
1453
|
+
('#', "rgb(216,217,221)"),
|
|
1454
|
+
('%', "rgb(228,228,227)"),
|
|
1455
|
+
('%', "rgb(231,231,230)"),
|
|
1456
|
+
('%', "rgb(230,231,230)"),
|
|
1457
|
+
('%', "rgb(252,252,252)"),
|
|
1458
|
+
('%', "rgb(254,254,254)"),
|
|
1459
|
+
('%', "rgb(254,254,254)"),
|
|
1460
|
+
('%', "rgb(253,253,253)"),
|
|
1461
|
+
('%', "rgb(252,252,252)"),
|
|
1462
|
+
('%', "rgb(252,252,252)"),
|
|
1463
|
+
('%', "rgb(253,253,253)"),
|
|
1464
|
+
('%', "rgb(238,239,239)"),
|
|
1465
|
+
('#', "rgb(225,225,225)"),
|
|
1466
|
+
('#', "rgb(226,226,226)"),
|
|
1467
|
+
('#', "rgb(225,225,225)"),
|
|
1468
|
+
('%', "rgb(246,247,247)"),
|
|
1469
|
+
('@', "rgb(254,255,255)"),
|
|
1470
|
+
('%', "rgb(253,254,254)"),
|
|
1471
|
+
('%', "rgb(253,254,254)"),
|
|
1472
|
+
('\n', "default"),
|
|
1473
|
+
('%', "rgb(246,246,247)"),
|
|
1474
|
+
('%', "rgb(246,246,246)"),
|
|
1475
|
+
('%', "rgb(246,246,246)"),
|
|
1476
|
+
('%', "rgb(247,248,248)"),
|
|
1477
|
+
('%', "rgb(253,253,253)"),
|
|
1478
|
+
('%', "rgb(252,253,253)"),
|
|
1479
|
+
('%', "rgb(252,253,253)"),
|
|
1480
|
+
('%', "rgb(249,249,249)"),
|
|
1481
|
+
('%', "rgb(245,245,246)"),
|
|
1482
|
+
('%', "rgb(246,246,246)"),
|
|
1483
|
+
('%', "rgb(246,246,246)"),
|
|
1484
|
+
('%', "rgb(237,238,237)"),
|
|
1485
|
+
('%', "rgb(234,234,234)"),
|
|
1486
|
+
('%', "rgb(235,235,235)"),
|
|
1487
|
+
('%', "rgb(235,235,236)"),
|
|
1488
|
+
('%', "rgb(246,246,246)"),
|
|
1489
|
+
('%', "rgb(246,247,246)"),
|
|
1490
|
+
('%', "rgb(247,247,247)"),
|
|
1491
|
+
('%', "rgb(245,245,245)"),
|
|
1492
|
+
('%', "rgb(239,239,238)"),
|
|
1493
|
+
('%', "rgb(236,237,236)"),
|
|
1494
|
+
('#', "rgb(218,219,223)"),
|
|
1495
|
+
('*', "rgb(187,189,201)"),
|
|
1496
|
+
('+', "rgb(163,166,183)"),
|
|
1497
|
+
('+', "rgb(162,166,183)"),
|
|
1498
|
+
('*', "rgb(168,171,186)"),
|
|
1499
|
+
('*', "rgb(190,192,203)"),
|
|
1500
|
+
('*', "rgb(188,190,200)"),
|
|
1501
|
+
('*', "rgb(189,192,201)"),
|
|
1502
|
+
('+', "rgb(145,150,169)"),
|
|
1503
|
+
('+', "rgb(145,148,169)"),
|
|
1504
|
+
('#', "rgb(198,199,207)"),
|
|
1505
|
+
('*', "rgb(184,186,195)"),
|
|
1506
|
+
('*', "rgb(182,184,194)"),
|
|
1507
|
+
('*', "rgb(178,181,195)"),
|
|
1508
|
+
('+', "rgb(165,168,185)"),
|
|
1509
|
+
('+', "rgb(164,167,185)"),
|
|
1510
|
+
('*', "rgb(188,191,203)"),
|
|
1511
|
+
('#', "rgb(224,225,229)"),
|
|
1512
|
+
('%', "rgb(247,247,247)"),
|
|
1513
|
+
('%', "rgb(252,251,250)"),
|
|
1514
|
+
('%', "rgb(239,240,239)"),
|
|
1515
|
+
('%', "rgb(234,234,234)"),
|
|
1516
|
+
('%', "rgb(234,234,234)"),
|
|
1517
|
+
('%', "rgb(235,235,236)"),
|
|
1518
|
+
('%', "rgb(245,245,245)"),
|
|
1519
|
+
('%', "rgb(246,246,246)"),
|
|
1520
|
+
('%', "rgb(245,245,246)"),
|
|
1521
|
+
('%', "rgb(247,247,247)"),
|
|
1522
|
+
('%', "rgb(252,252,253)"),
|
|
1523
|
+
('%', "rgb(252,252,252)"),
|
|
1524
|
+
('%', "rgb(253,253,253)"),
|
|
1525
|
+
('%', "rgb(243,243,243)"),
|
|
1526
|
+
('%', "rgb(233,233,233)"),
|
|
1527
|
+
('%', "rgb(234,234,234)"),
|
|
1528
|
+
('%', "rgb(233,234,234)"),
|
|
1529
|
+
('%', "rgb(243,243,243)"),
|
|
1530
|
+
('%', "rgb(246,247,247)"),
|
|
1531
|
+
('%', "rgb(246,246,246)"),
|
|
1532
|
+
('%', "rgb(246,246,246)"),
|
|
1533
|
+
('\n', "default"),
|
|
1534
|
+
('#', "rgb(226,226,226)"),
|
|
1535
|
+
('#', "rgb(226,226,226)"),
|
|
1536
|
+
('#', "rgb(225,225,225)"),
|
|
1537
|
+
('%', "rgb(232,232,233)"),
|
|
1538
|
+
('%', "rgb(254,254,255)"),
|
|
1539
|
+
('%', "rgb(253,254,254)"),
|
|
1540
|
+
('@', "rgb(254,255,255)"),
|
|
1541
|
+
('%', "rgb(239,239,240)"),
|
|
1542
|
+
('#', "rgb(224,224,224)"),
|
|
1543
|
+
('#', "rgb(225,225,225)"),
|
|
1544
|
+
('#', "rgb(225,225,225)"),
|
|
1545
|
+
('%', "rgb(247,248,248)"),
|
|
1546
|
+
('@', "rgb(255,255,255)"),
|
|
1547
|
+
('@', "rgb(255,255,255)"),
|
|
1548
|
+
('%', "rgb(252,253,253)"),
|
|
1549
|
+
('%', "rgb(228,228,228)"),
|
|
1550
|
+
('#', "rgb(225,225,226)"),
|
|
1551
|
+
('#', "rgb(225,225,225)"),
|
|
1552
|
+
('%', "rgb(233,233,233)"),
|
|
1553
|
+
('@', "rgb(255,255,255)"),
|
|
1554
|
+
('%', "rgb(254,254,254)"),
|
|
1555
|
+
('@', "rgb(255,255,255)"),
|
|
1556
|
+
('%', "rgb(245,245,244)"),
|
|
1557
|
+
('%', "rgb(227,227,227)"),
|
|
1558
|
+
('#', "rgb(208,209,214)"),
|
|
1559
|
+
('*', "rgb(181,183,194)"),
|
|
1560
|
+
('+', "rgb(151,155,175)"),
|
|
1561
|
+
('=', "rgb(131,136,158)"),
|
|
1562
|
+
('+', "rgb(159,162,178)"),
|
|
1563
|
+
('=', "rgb(131,135,158)"),
|
|
1564
|
+
('=', "rgb(127,131,154)"),
|
|
1565
|
+
('*', "rgb(167,169,183)"),
|
|
1566
|
+
('+', "rgb(150,153,171)"),
|
|
1567
|
+
('+', "rgb(157,161,178)"),
|
|
1568
|
+
('*', "rgb(195,197,210)"),
|
|
1569
|
+
('%', "rgb(229,231,236)"),
|
|
1570
|
+
('%', "rgb(254,254,254)"),
|
|
1571
|
+
('%', "rgb(245,245,244)"),
|
|
1572
|
+
('%', "rgb(228,227,227)"),
|
|
1573
|
+
('#', "rgb(226,226,226)"),
|
|
1574
|
+
('#', "rgb(225,225,225)"),
|
|
1575
|
+
('%', "rgb(247,247,248)"),
|
|
1576
|
+
('@', "rgb(255,255,255)"),
|
|
1577
|
+
('@', "rgb(254,255,255)"),
|
|
1578
|
+
('%', "rgb(252,252,252)"),
|
|
1579
|
+
('%', "rgb(227,227,227)"),
|
|
1580
|
+
('#', "rgb(225,225,225)"),
|
|
1581
|
+
('#', "rgb(224,224,224)"),
|
|
1582
|
+
('%', "rgb(232,233,232)"),
|
|
1583
|
+
('%', "rgb(254,254,255)"),
|
|
1584
|
+
('%', "rgb(253,253,254)"),
|
|
1585
|
+
('%', "rgb(253,253,254)"),
|
|
1586
|
+
('%', "rgb(253,253,254)"),
|
|
1587
|
+
('%', "rgb(253,253,253)"),
|
|
1588
|
+
('%', "rgb(253,253,253)"),
|
|
1589
|
+
('%', "rgb(253,253,254)"),
|
|
1590
|
+
('%', "rgb(232,232,232)"),
|
|
1591
|
+
('#', "rgb(225,225,225)"),
|
|
1592
|
+
('#', "rgb(226,226,226)"),
|
|
1593
|
+
('#', "rgb(225,225,226)"),
|
|
1594
|
+
('\n', "default"),
|
|
1595
|
+
('%', "rgb(233,233,233)"),
|
|
1596
|
+
('%', "rgb(233,233,233)"),
|
|
1597
|
+
('%', "rgb(232,232,232)"),
|
|
1598
|
+
('%', "rgb(237,237,237)"),
|
|
1599
|
+
('%', "rgb(248,249,248)"),
|
|
1600
|
+
('%', "rgb(247,248,248)"),
|
|
1601
|
+
('%', "rgb(248,248,249)"),
|
|
1602
|
+
('%', "rgb(240,241,240)"),
|
|
1603
|
+
('%', "rgb(232,232,232)"),
|
|
1604
|
+
('%', "rgb(232,233,233)"),
|
|
1605
|
+
('%', "rgb(232,232,232)"),
|
|
1606
|
+
('%', "rgb(244,244,244)"),
|
|
1607
|
+
('%', "rgb(249,249,249)"),
|
|
1608
|
+
('%', "rgb(248,249,249)"),
|
|
1609
|
+
('%', "rgb(247,247,247)"),
|
|
1610
|
+
('%', "rgb(234,234,234)"),
|
|
1611
|
+
('%', "rgb(233,233,233)"),
|
|
1612
|
+
('%', "rgb(232,233,232)"),
|
|
1613
|
+
('%', "rgb(237,237,237)"),
|
|
1614
|
+
('%', "rgb(248,248,248)"),
|
|
1615
|
+
('%', "rgb(247,248,248)"),
|
|
1616
|
+
('%', "rgb(248,249,248)"),
|
|
1617
|
+
('%', "rgb(240,240,240)"),
|
|
1618
|
+
('%', "rgb(233,233,233)"),
|
|
1619
|
+
('%', "rgb(235,236,235)"),
|
|
1620
|
+
('%', "rgb(237,238,237)"),
|
|
1621
|
+
('%', "rgb(245,246,245)"),
|
|
1622
|
+
('#', "rgb(225,226,231)"),
|
|
1623
|
+
('*', "rgb(187,189,202)"),
|
|
1624
|
+
('=', "rgb(130,135,158)"),
|
|
1625
|
+
('=', "rgb(133,138,161)"),
|
|
1626
|
+
('*', "rgb(183,186,198)"),
|
|
1627
|
+
('#', "rgb(211,212,217)"),
|
|
1628
|
+
('%', "rgb(237,237,237)"),
|
|
1629
|
+
('%', "rgb(253,253,252)"),
|
|
1630
|
+
('%', "rgb(250,250,250)"),
|
|
1631
|
+
('%', "rgb(248,248,248)"),
|
|
1632
|
+
('%', "rgb(240,240,240)"),
|
|
1633
|
+
('%', "rgb(232,232,232)"),
|
|
1634
|
+
('%', "rgb(233,233,233)"),
|
|
1635
|
+
('%', "rgb(232,232,233)"),
|
|
1636
|
+
('%', "rgb(244,244,244)"),
|
|
1637
|
+
('%', "rgb(248,249,248)"),
|
|
1638
|
+
('%', "rgb(247,248,248)"),
|
|
1639
|
+
('%', "rgb(246,247,247)"),
|
|
1640
|
+
('%', "rgb(233,233,234)"),
|
|
1641
|
+
('%', "rgb(232,233,232)"),
|
|
1642
|
+
('%', "rgb(232,232,232)"),
|
|
1643
|
+
('%', "rgb(236,237,237)"),
|
|
1644
|
+
('%', "rgb(248,248,248)"),
|
|
1645
|
+
('%', "rgb(247,248,247)"),
|
|
1646
|
+
('%', "rgb(247,247,247)"),
|
|
1647
|
+
('%', "rgb(250,250,250)"),
|
|
1648
|
+
('%', "rgb(253,253,253)"),
|
|
1649
|
+
('%', "rgb(252,253,253)"),
|
|
1650
|
+
('%', "rgb(252,253,253)"),
|
|
1651
|
+
('%', "rgb(237,238,238)"),
|
|
1652
|
+
('%', "rgb(232,232,232)"),
|
|
1653
|
+
('%', "rgb(232,233,233)"),
|
|
1654
|
+
('%', "rgb(232,232,232)"),
|
|
1655
|
+
('\n', "default"),
|
|
1656
|
+
('@', "rgb(255,255,255)"),
|
|
1657
|
+
('@', "rgb(255,255,255)"),
|
|
1658
|
+
('@', "rgb(255,255,255)"),
|
|
1659
|
+
('%', "rgb(247,247,247)"),
|
|
1660
|
+
('#', "rgb(225,225,226)"),
|
|
1661
|
+
('#', "rgb(226,226,226)"),
|
|
1662
|
+
('#', "rgb(225,225,225)"),
|
|
1663
|
+
('%', "rgb(241,241,241)"),
|
|
1664
|
+
('@', "rgb(255,255,255)"),
|
|
1665
|
+
('@', "rgb(255,255,255)"),
|
|
1666
|
+
('@', "rgb(255,255,255)"),
|
|
1667
|
+
('%', "rgb(234,234,234)"),
|
|
1668
|
+
('#', "rgb(225,225,225)"),
|
|
1669
|
+
('#', "rgb(226,226,226)"),
|
|
1670
|
+
('%', "rgb(228,228,228)"),
|
|
1671
|
+
('%', "rgb(253,253,253)"),
|
|
1672
|
+
('@', "rgb(255,255,255)"),
|
|
1673
|
+
('@', "rgb(255,255,255)"),
|
|
1674
|
+
('%', "rgb(247,247,247)"),
|
|
1675
|
+
('#', "rgb(226,226,226)"),
|
|
1676
|
+
('#', "rgb(226,226,226)"),
|
|
1677
|
+
('#', "rgb(225,225,225)"),
|
|
1678
|
+
('%', "rgb(240,240,241)"),
|
|
1679
|
+
('@', "rgb(255,255,255)"),
|
|
1680
|
+
('%', "rgb(254,254,254)"),
|
|
1681
|
+
('%', "rgb(254,254,255)"),
|
|
1682
|
+
('%', "rgb(234,234,234)"),
|
|
1683
|
+
('%', "rgb(229,229,229)"),
|
|
1684
|
+
('%', "rgb(232,232,231)"),
|
|
1685
|
+
('%', "rgb(230,230,230)"),
|
|
1686
|
+
('%', "rgb(253,253,253)"),
|
|
1687
|
+
('@', "rgb(255,255,255)"),
|
|
1688
|
+
('@', "rgb(255,255,255)"),
|
|
1689
|
+
('%', "rgb(247,247,247)"),
|
|
1690
|
+
('#', "rgb(226,226,226)"),
|
|
1691
|
+
('#', "rgb(226,226,226)"),
|
|
1692
|
+
('#', "rgb(225,225,225)"),
|
|
1693
|
+
('%', "rgb(240,240,241)"),
|
|
1694
|
+
('@', "rgb(255,255,255)"),
|
|
1695
|
+
('%', "rgb(254,254,255)"),
|
|
1696
|
+
('@', "rgb(255,255,255)"),
|
|
1697
|
+
('%', "rgb(233,234,234)"),
|
|
1698
|
+
('#', "rgb(225,225,225)"),
|
|
1699
|
+
('#', "rgb(226,226,226)"),
|
|
1700
|
+
('%', "rgb(228,228,228)"),
|
|
1701
|
+
('%', "rgb(253,253,253)"),
|
|
1702
|
+
('@', "rgb(255,255,255)"),
|
|
1703
|
+
('@', "rgb(255,255,255)"),
|
|
1704
|
+
('%', "rgb(247,247,247)"),
|
|
1705
|
+
('#', "rgb(225,225,225)"),
|
|
1706
|
+
('#', "rgb(226,226,226)"),
|
|
1707
|
+
('#', "rgb(225,224,225)"),
|
|
1708
|
+
('%', "rgb(240,240,240)"),
|
|
1709
|
+
('@', "rgb(255,255,255)"),
|
|
1710
|
+
('%', "rgb(253,254,254)"),
|
|
1711
|
+
('%', "rgb(253,253,254)"),
|
|
1712
|
+
('%', "rgb(253,253,253)"),
|
|
1713
|
+
('%', "rgb(252,253,253)"),
|
|
1714
|
+
('%', "rgb(252,253,253)"),
|
|
1715
|
+
('%', "rgb(252,253,253)"),
|
|
1716
|
+
('\n', "default"),
|
|
1717
|
+
('%', "rgb(250,250,250)"),
|
|
1718
|
+
('%', "rgb(250,250,250)"),
|
|
1719
|
+
('%', "rgb(250,250,250)"),
|
|
1720
|
+
('%', "rgb(245,245,245)"),
|
|
1721
|
+
('%', "rgb(231,231,231)"),
|
|
1722
|
+
('%', "rgb(231,232,231)"),
|
|
1723
|
+
('%', "rgb(231,231,231)"),
|
|
1724
|
+
('%', "rgb(241,241,241)"),
|
|
1725
|
+
('%', "rgb(250,250,250)"),
|
|
1726
|
+
('%', "rgb(249,250,250)"),
|
|
1727
|
+
('%', "rgb(250,250,250)"),
|
|
1728
|
+
('%', "rgb(236,237,237)"),
|
|
1729
|
+
('%', "rgb(231,231,231)"),
|
|
1730
|
+
('%', "rgb(231,232,232)"),
|
|
1731
|
+
('%', "rgb(233,233,233)"),
|
|
1732
|
+
('%', "rgb(248,249,249)"),
|
|
1733
|
+
('%', "rgb(250,250,250)"),
|
|
1734
|
+
('%', "rgb(250,250,250)"),
|
|
1735
|
+
('%', "rgb(245,246,245)"),
|
|
1736
|
+
('%', "rgb(231,232,231)"),
|
|
1737
|
+
('%', "rgb(231,232,232)"),
|
|
1738
|
+
('%', "rgb(231,231,231)"),
|
|
1739
|
+
('%', "rgb(240,241,241)"),
|
|
1740
|
+
('%', "rgb(250,250,250)"),
|
|
1741
|
+
('%', "rgb(249,249,249)"),
|
|
1742
|
+
('%', "rgb(249,250,250)"),
|
|
1743
|
+
('%', "rgb(236,237,236)"),
|
|
1744
|
+
('%', "rgb(231,232,231)"),
|
|
1745
|
+
('%', "rgb(231,231,231)"),
|
|
1746
|
+
('%', "rgb(233,233,233)"),
|
|
1747
|
+
('%', "rgb(248,249,248)"),
|
|
1748
|
+
('%', "rgb(249,250,249)"),
|
|
1749
|
+
('%', "rgb(249,250,250)"),
|
|
1750
|
+
('%', "rgb(244,245,244)"),
|
|
1751
|
+
('%', "rgb(231,231,231)"),
|
|
1752
|
+
('%', "rgb(231,232,231)"),
|
|
1753
|
+
('%', "rgb(231,231,231)"),
|
|
1754
|
+
('%', "rgb(241,241,241)"),
|
|
1755
|
+
('%', "rgb(250,250,250)"),
|
|
1756
|
+
('%', "rgb(249,250,250)"),
|
|
1757
|
+
('%', "rgb(250,250,250)"),
|
|
1758
|
+
('%', "rgb(236,236,236)"),
|
|
1759
|
+
('%', "rgb(231,231,231)"),
|
|
1760
|
+
('%', "rgb(231,231,231)"),
|
|
1761
|
+
('%', "rgb(233,233,233)"),
|
|
1762
|
+
('%', "rgb(248,249,249)"),
|
|
1763
|
+
('%', "rgb(250,250,250)"),
|
|
1764
|
+
('%', "rgb(250,250,250)"),
|
|
1765
|
+
('%', "rgb(244,245,245)"),
|
|
1766
|
+
('%', "rgb(231,231,231)"),
|
|
1767
|
+
('%', "rgb(231,231,231)"),
|
|
1768
|
+
('%', "rgb(230,231,230)"),
|
|
1769
|
+
('%', "rgb(240,241,241)"),
|
|
1770
|
+
('%', "rgb(249,250,250)"),
|
|
1771
|
+
('%', "rgb(249,249,249)"),
|
|
1772
|
+
('%', "rgb(248,249,249)"),
|
|
1773
|
+
('%', "rgb(252,252,252)"),
|
|
1774
|
+
('%', "rgb(252,253,253)"),
|
|
1775
|
+
('%', "rgb(252,253,253)"),
|
|
1776
|
+
('%', "rgb(252,253,253)"),
|
|
1777
|
+
('\n', "default"),
|
|
1778
|
+
('%', "rgb(227,227,227)"),
|
|
1779
|
+
('%', "rgb(227,227,227)"),
|
|
1780
|
+
('#', "rgb(226,226,226)"),
|
|
1781
|
+
('%', "rgb(234,234,234)"),
|
|
1782
|
+
('%', "rgb(254,254,255)"),
|
|
1783
|
+
('%', "rgb(254,254,254)"),
|
|
1784
|
+
('@', "rgb(255,255,255)"),
|
|
1785
|
+
('%', "rgb(240,241,241)"),
|
|
1786
|
+
('#', "rgb(226,225,226)"),
|
|
1787
|
+
('#', "rgb(227,226,227)"),
|
|
1788
|
+
('#', "rgb(226,226,226)"),
|
|
1789
|
+
('%', "rgb(247,247,248)"),
|
|
1790
|
+
('@', "rgb(255,255,255)"),
|
|
1791
|
+
('%', "rgb(254,254,255)"),
|
|
1792
|
+
('%', "rgb(252,252,252)"),
|
|
1793
|
+
('%', "rgb(229,229,229)"),
|
|
1794
|
+
('%', "rgb(227,227,227)"),
|
|
1795
|
+
('#', "rgb(226,226,226)"),
|
|
1796
|
+
('%', "rgb(234,234,234)"),
|
|
1797
|
+
('@', "rgb(254,255,255)"),
|
|
1798
|
+
('%', "rgb(254,254,254)"),
|
|
1799
|
+
('@', "rgb(255,255,255)"),
|
|
1800
|
+
('%', "rgb(240,240,241)"),
|
|
1801
|
+
('#', "rgb(226,226,226)"),
|
|
1802
|
+
('%', "rgb(227,227,227)"),
|
|
1803
|
+
('#', "rgb(226,226,226)"),
|
|
1804
|
+
('%', "rgb(247,247,247)"),
|
|
1805
|
+
('%', "rgb(254,254,255)"),
|
|
1806
|
+
('%', "rgb(253,254,254)"),
|
|
1807
|
+
('%', "rgb(251,251,252)"),
|
|
1808
|
+
('%', "rgb(229,228,229)"),
|
|
1809
|
+
('#', "rgb(226,226,226)"),
|
|
1810
|
+
('#', "rgb(225,225,225)"),
|
|
1811
|
+
('%', "rgb(233,234,234)"),
|
|
1812
|
+
('%', "rgb(254,254,255)"),
|
|
1813
|
+
('%', "rgb(254,254,254)"),
|
|
1814
|
+
('@', "rgb(255,255,255)"),
|
|
1815
|
+
('%', "rgb(240,240,240)"),
|
|
1816
|
+
('#', "rgb(225,225,225)"),
|
|
1817
|
+
('#', "rgb(227,226,227)"),
|
|
1818
|
+
('#', "rgb(226,226,226)"),
|
|
1819
|
+
('%', "rgb(247,247,247)"),
|
|
1820
|
+
('@', "rgb(255,255,255)"),
|
|
1821
|
+
('%', "rgb(254,254,255)"),
|
|
1822
|
+
('%', "rgb(252,252,252)"),
|
|
1823
|
+
('%', "rgb(229,229,229)"),
|
|
1824
|
+
('#', "rgb(226,226,227)"),
|
|
1825
|
+
('#', "rgb(226,225,226)"),
|
|
1826
|
+
('%', "rgb(234,233,234)"),
|
|
1827
|
+
('@', "rgb(254,255,255)"),
|
|
1828
|
+
('%', "rgb(253,254,254)"),
|
|
1829
|
+
('@', "rgb(255,255,255)"),
|
|
1830
|
+
('%', "rgb(240,240,240)"),
|
|
1831
|
+
('#', "rgb(225,225,226)"),
|
|
1832
|
+
('%', "rgb(227,227,227)"),
|
|
1833
|
+
('#', "rgb(226,226,226)"),
|
|
1834
|
+
('%', "rgb(246,246,247)"),
|
|
1835
|
+
('%', "rgb(254,254,254)"),
|
|
1836
|
+
('%', "rgb(253,253,253)"),
|
|
1837
|
+
('%', "rgb(253,253,253)"),
|
|
1838
|
+
('\n', "default"),
|
|
1839
|
+
('%', "rgb(230,230,230)"),
|
|
1840
|
+
('%', "rgb(230,230,230)"),
|
|
1841
|
+
('%', "rgb(229,230,230)"),
|
|
1842
|
+
('%', "rgb(236,236,236)"),
|
|
1843
|
+
('%', "rgb(251,251,252)"),
|
|
1844
|
+
('%', "rgb(251,251,251)"),
|
|
1845
|
+
('%', "rgb(251,251,251)"),
|
|
1846
|
+
('%', "rgb(240,241,241)"),
|
|
1847
|
+
('%', "rgb(229,229,229)"),
|
|
1848
|
+
('%', "rgb(230,230,230)"),
|
|
1849
|
+
('%', "rgb(229,230,230)"),
|
|
1850
|
+
('%', "rgb(246,246,246)"),
|
|
1851
|
+
('%', "rgb(251,252,251)"),
|
|
1852
|
+
('%', "rgb(251,251,252)"),
|
|
1853
|
+
('%', "rgb(249,250,250)"),
|
|
1854
|
+
('%', "rgb(232,232,232)"),
|
|
1855
|
+
('%', "rgb(230,230,230)"),
|
|
1856
|
+
('%', "rgb(230,230,230)"),
|
|
1857
|
+
('%', "rgb(236,236,236)"),
|
|
1858
|
+
('%', "rgb(251,252,252)"),
|
|
1859
|
+
('%', "rgb(251,251,251)"),
|
|
1860
|
+
('%', "rgb(251,252,251)"),
|
|
1861
|
+
('%', "rgb(240,241,241)"),
|
|
1862
|
+
('%', "rgb(229,229,229)"),
|
|
1863
|
+
('%', "rgb(230,230,230)"),
|
|
1864
|
+
('%', "rgb(230,230,230)"),
|
|
1865
|
+
('%', "rgb(246,246,246)"),
|
|
1866
|
+
('%', "rgb(251,251,252)"),
|
|
1867
|
+
('%', "rgb(251,251,251)"),
|
|
1868
|
+
('%', "rgb(249,249,249)"),
|
|
1869
|
+
('%', "rgb(231,232,232)"),
|
|
1870
|
+
('%', "rgb(229,230,230)"),
|
|
1871
|
+
('%', "rgb(229,229,229)"),
|
|
1872
|
+
('%', "rgb(235,235,236)"),
|
|
1873
|
+
('%', "rgb(252,252,252)"),
|
|
1874
|
+
('%', "rgb(251,251,251)"),
|
|
1875
|
+
('%', "rgb(252,252,252)"),
|
|
1876
|
+
('%', "rgb(240,240,240)"),
|
|
1877
|
+
('%', "rgb(229,229,229)"),
|
|
1878
|
+
('%', "rgb(230,230,230)"),
|
|
1879
|
+
('%', "rgb(229,230,229)"),
|
|
1880
|
+
('%', "rgb(246,246,246)"),
|
|
1881
|
+
('%', "rgb(252,252,252)"),
|
|
1882
|
+
('%', "rgb(251,251,252)"),
|
|
1883
|
+
('%', "rgb(249,250,250)"),
|
|
1884
|
+
('%', "rgb(232,232,232)"),
|
|
1885
|
+
('%', "rgb(230,230,230)"),
|
|
1886
|
+
('%', "rgb(229,229,229)"),
|
|
1887
|
+
('%', "rgb(235,236,236)"),
|
|
1888
|
+
('%', "rgb(251,251,252)"),
|
|
1889
|
+
('%', "rgb(250,251,251)"),
|
|
1890
|
+
('%', "rgb(251,251,251)"),
|
|
1891
|
+
('%', "rgb(240,240,240)"),
|
|
1892
|
+
('%', "rgb(229,229,229)"),
|
|
1893
|
+
('%', "rgb(230,230,230)"),
|
|
1894
|
+
('%', "rgb(230,230,230)"),
|
|
1895
|
+
('%', "rgb(247,247,247)"),
|
|
1896
|
+
('%', "rgb(252,253,253)"),
|
|
1897
|
+
('%', "rgb(250,250,250)"),
|
|
1898
|
+
('%', "rgb(250,250,250)"),
|
|
1899
|
+
('\n', "default"),
|
|
1900
|
+
('%', "rgb(252,252,252)"),
|
|
1901
|
+
('%', "rgb(252,252,252)"),
|
|
1902
|
+
('%', "rgb(253,253,253)"),
|
|
1903
|
+
('%', "rgb(246,246,246)"),
|
|
1904
|
+
('%', "rgb(227,227,227)"),
|
|
1905
|
+
('%', "rgb(228,228,228)"),
|
|
1906
|
+
('%', "rgb(227,227,227)"),
|
|
1907
|
+
('%', "rgb(240,240,240)"),
|
|
1908
|
+
('%', "rgb(254,254,254)"),
|
|
1909
|
+
('%', "rgb(253,253,253)"),
|
|
1910
|
+
('%', "rgb(253,253,254)"),
|
|
1911
|
+
('%', "rgb(234,235,234)"),
|
|
1912
|
+
('%', "rgb(227,227,227)"),
|
|
1913
|
+
('%', "rgb(227,227,227)"),
|
|
1914
|
+
('%', "rgb(230,230,230)"),
|
|
1915
|
+
('%', "rgb(251,251,252)"),
|
|
1916
|
+
('%', "rgb(253,253,253)"),
|
|
1917
|
+
('%', "rgb(254,254,254)"),
|
|
1918
|
+
('%', "rgb(246,246,247)"),
|
|
1919
|
+
('%', "rgb(227,227,227)"),
|
|
1920
|
+
('%', "rgb(227,228,228)"),
|
|
1921
|
+
('%', "rgb(226,227,227)"),
|
|
1922
|
+
('%', "rgb(240,240,240)"),
|
|
1923
|
+
('%', "rgb(254,254,254)"),
|
|
1924
|
+
('%', "rgb(253,253,253)"),
|
|
1925
|
+
('%', "rgb(253,254,254)"),
|
|
1926
|
+
('%', "rgb(234,235,235)"),
|
|
1927
|
+
('%', "rgb(227,227,227)"),
|
|
1928
|
+
('%', "rgb(227,227,227)"),
|
|
1929
|
+
('%', "rgb(229,230,229)"),
|
|
1930
|
+
('%', "rgb(251,251,251)"),
|
|
1931
|
+
('%', "rgb(253,253,253)"),
|
|
1932
|
+
('%', "rgb(253,254,254)"),
|
|
1933
|
+
('%', "rgb(246,247,246)"),
|
|
1934
|
+
('%', "rgb(227,227,227)"),
|
|
1935
|
+
('%', "rgb(227,227,228)"),
|
|
1936
|
+
('#', "rgb(226,226,226)"),
|
|
1937
|
+
('%', "rgb(240,240,240)"),
|
|
1938
|
+
('%', "rgb(254,254,254)"),
|
|
1939
|
+
('%', "rgb(253,253,253)"),
|
|
1940
|
+
('%', "rgb(253,253,254)"),
|
|
1941
|
+
('%', "rgb(234,234,234)"),
|
|
1942
|
+
('%', "rgb(226,227,227)"),
|
|
1943
|
+
('%', "rgb(227,227,227)"),
|
|
1944
|
+
('%', "rgb(230,230,230)"),
|
|
1945
|
+
('%', "rgb(251,251,251)"),
|
|
1946
|
+
('%', "rgb(253,253,253)"),
|
|
1947
|
+
('%', "rgb(253,254,254)"),
|
|
1948
|
+
('%', "rgb(246,246,246)"),
|
|
1949
|
+
('%', "rgb(227,227,227)"),
|
|
1950
|
+
('%', "rgb(227,227,227)"),
|
|
1951
|
+
('#', "rgb(226,226,226)"),
|
|
1952
|
+
('%', "rgb(240,240,240)"),
|
|
1953
|
+
('%', "rgb(254,254,254)"),
|
|
1954
|
+
('%', "rgb(252,253,253)"),
|
|
1955
|
+
('%', "rgb(253,253,253)"),
|
|
1956
|
+
('%', "rgb(242,242,242)"),
|
|
1957
|
+
('%', "rgb(232,232,232)"),
|
|
1958
|
+
('%', "rgb(228,228,228)"),
|
|
1959
|
+
('%', "rgb(227,228,228)"),
|
|
1960
|
+
('\n', "default"),
|
|
1961
|
+
('%', "rgb(253,253,253)"),
|
|
1962
|
+
('%', "rgb(253,253,253)"),
|
|
1963
|
+
('%', "rgb(254,254,254)"),
|
|
1964
|
+
('%', "rgb(246,246,246)"),
|
|
1965
|
+
('#', "rgb(226,226,226)"),
|
|
1966
|
+
('%', "rgb(227,227,227)"),
|
|
1967
|
+
('#', "rgb(226,226,226)"),
|
|
1968
|
+
('%', "rgb(240,240,241)"),
|
|
1969
|
+
('@', "rgb(255,255,255)"),
|
|
1970
|
+
('%', "rgb(253,254,254)"),
|
|
1971
|
+
('@', "rgb(254,255,255)"),
|
|
1972
|
+
('%', "rgb(233,233,233)"),
|
|
1973
|
+
('#', "rgb(225,226,226)"),
|
|
1974
|
+
('#', "rgb(226,226,227)"),
|
|
1975
|
+
('%', "rgb(229,229,229)"),
|
|
1976
|
+
('%', "rgb(252,252,252)"),
|
|
1977
|
+
('%', "rgb(254,254,254)"),
|
|
1978
|
+
('@', "rgb(254,255,255)"),
|
|
1979
|
+
('%', "rgb(246,247,247)"),
|
|
1980
|
+
('#', "rgb(226,226,226)"),
|
|
1981
|
+
('%', "rgb(227,227,227)"),
|
|
1982
|
+
('#', "rgb(225,225,226)"),
|
|
1983
|
+
('%', "rgb(240,240,240)"),
|
|
1984
|
+
('@', "rgb(255,255,255)"),
|
|
1985
|
+
('%', "rgb(253,254,254)"),
|
|
1986
|
+
('%', "rgb(254,254,255)"),
|
|
1987
|
+
('%', "rgb(234,234,234)"),
|
|
1988
|
+
('#', "rgb(226,226,226)"),
|
|
1989
|
+
('%', "rgb(227,227,227)"),
|
|
1990
|
+
('%', "rgb(229,229,229)"),
|
|
1991
|
+
('%', "rgb(252,252,252)"),
|
|
1992
|
+
('%', "rgb(254,254,254)"),
|
|
1993
|
+
('@', "rgb(254,255,255)"),
|
|
1994
|
+
('%', "rgb(246,246,246)"),
|
|
1995
|
+
('#', "rgb(225,225,225)"),
|
|
1996
|
+
('#', "rgb(226,226,226)"),
|
|
1997
|
+
('#', "rgb(225,225,225)"),
|
|
1998
|
+
('%', "rgb(240,240,240)"),
|
|
1999
|
+
('@', "rgb(255,255,255)"),
|
|
2000
|
+
('%', "rgb(254,254,254)"),
|
|
2001
|
+
('@', "rgb(254,255,255)"),
|
|
2002
|
+
('%', "rgb(233,233,233)"),
|
|
2003
|
+
('#', "rgb(225,225,225)"),
|
|
2004
|
+
('#', "rgb(226,226,226)"),
|
|
2005
|
+
('%', "rgb(229,229,229)"),
|
|
2006
|
+
('%', "rgb(252,252,252)"),
|
|
2007
|
+
('%', "rgb(254,254,254)"),
|
|
2008
|
+
('@', "rgb(254,255,255)"),
|
|
2009
|
+
('%', "rgb(246,246,246)"),
|
|
2010
|
+
('#', "rgb(225,225,225)"),
|
|
2011
|
+
('#', "rgb(226,226,227)"),
|
|
2012
|
+
('#', "rgb(225,225,225)"),
|
|
2013
|
+
('%', "rgb(240,240,240)"),
|
|
2014
|
+
('@', "rgb(255,255,255)"),
|
|
2015
|
+
('%', "rgb(253,254,254)"),
|
|
2016
|
+
('%', "rgb(254,254,255)"),
|
|
2017
|
+
('%', "rgb(233,233,233)"),
|
|
2018
|
+
('#', "rgb(225,225,225)"),
|
|
2019
|
+
('%', "rgb(227,227,227)"),
|
|
2020
|
+
('%', "rgb(227,227,227)"),
|
|
2021
|
+
('\n', "default")
|
|
2022
|
+
]
|
|
2023
|
+
|
|
2024
|
+
return Text.assemble(*segments)
|