@ -0,0 +1 @@ |
|||
{} |
@ -0,0 +1 @@ |
|||
{} |
@ -0,0 +1,4 @@ |
|||
[ |
|||
"smart-connections", |
|||
"smart-connections-visualizer" |
|||
] |
@ -0,0 +1,30 @@ |
|||
{ |
|||
"file-explorer": true, |
|||
"global-search": true, |
|||
"switcher": true, |
|||
"graph": true, |
|||
"backlink": true, |
|||
"canvas": true, |
|||
"outgoing-link": true, |
|||
"tag-pane": true, |
|||
"properties": false, |
|||
"page-preview": true, |
|||
"daily-notes": true, |
|||
"templates": true, |
|||
"note-composer": true, |
|||
"command-palette": true, |
|||
"slash-command": false, |
|||
"editor-status": true, |
|||
"bookmarks": true, |
|||
"markdown-importer": false, |
|||
"zk-prefixer": false, |
|||
"random-note": false, |
|||
"outline": true, |
|||
"word-count": true, |
|||
"slides": false, |
|||
"audio-recorder": false, |
|||
"workspaces": false, |
|||
"file-recovery": true, |
|||
"publish": false, |
|||
"sync": false |
|||
} |
@ -0,0 +1,20 @@ |
|||
[ |
|||
"file-explorer", |
|||
"global-search", |
|||
"switcher", |
|||
"graph", |
|||
"backlink", |
|||
"canvas", |
|||
"outgoing-link", |
|||
"tag-pane", |
|||
"page-preview", |
|||
"daily-notes", |
|||
"templates", |
|||
"note-composer", |
|||
"command-palette", |
|||
"editor-status", |
|||
"bookmarks", |
|||
"outline", |
|||
"word-count", |
|||
"file-recovery" |
|||
] |
@ -0,0 +1,30 @@ |
|||
{ |
|||
"collapse-filter": false, |
|||
"search": "", |
|||
"showTags": false, |
|||
"showAttachments": false, |
|||
"hideUnresolved": false, |
|||
"showOrphans": true, |
|||
"collapse-color-groups": false, |
|||
"colorGroups": [ |
|||
{ |
|||
"query": "group A", |
|||
"color": { |
|||
"a": 1, |
|||
"rgb": 14048348 |
|||
} |
|||
} |
|||
], |
|||
"collapse-display": false, |
|||
"showArrow": false, |
|||
"textFadeMultiplier": 0.8, |
|||
"nodeSizeMultiplier": 1.4497920997921, |
|||
"lineSizeMultiplier": 1.69428274428274, |
|||
"collapse-forces": false, |
|||
"centerStrength": 0.346153846153846, |
|||
"repelStrength": 7.92099792099792, |
|||
"linkStrength": 0, |
|||
"linkDistance": 500, |
|||
"scale": 0.7132754626224491, |
|||
"close": false |
|||
} |
@ -0,0 +1,18 @@ |
|||
{ |
|||
"relevanceScoreThreshold": 0.5, |
|||
"nodeSize": 4.06, |
|||
"linkThickness": 0.3, |
|||
"repelForce": 153, |
|||
"linkForce": 0.37, |
|||
"linkDistance": 70, |
|||
"centerForce": 0.1, |
|||
"textFadeThreshold": 3.39, |
|||
"minLinkThickness": 1.11, |
|||
"maxLinkThickness": 1.71, |
|||
"maxLabelCharacters": 18, |
|||
"linkLabelSize": 7, |
|||
"nodeLabelSize": 6, |
|||
"connectionType": "note", |
|||
"noteFillColor": "#7c8594", |
|||
"blockFillColor": "#926ec9" |
|||
} |
@ -0,0 +1,12 @@ |
|||
{ |
|||
"id": "smart-connections-visualizer", |
|||
"name": "Smart Connections Visualizer", |
|||
"version": "1.0.18", |
|||
"minAppVersion": "0.15.0", |
|||
"description": "View your Smart Connections in a visualized format.", |
|||
"author": "Evan Moscoso", |
|||
"authorUrl": "https://github.com/mossy1022", |
|||
"fundingUrl": "https://buymeacoffee.com/evansoasis", |
|||
"isDesktopOnly": true |
|||
} |
|||
|
@ -0,0 +1,239 @@ |
|||
.smart-connections-visualizer-link { |
|||
stroke: var(--background-modifier-border); |
|||
stroke-opacity: 1; |
|||
cursor: pointer; |
|||
} |
|||
.smart-connections-visualizer-label { |
|||
pointer-events: none; |
|||
fill: var(--text-normal); |
|||
font-family: 'Inter'; |
|||
} |
|||
.smart-connections-visualizer-link-label { |
|||
font-family: 'Inter'; |
|||
} |
|||
|
|||
.smart-connections-visualizer-node:hover { |
|||
stroke: #fff; |
|||
cursor: pointer; |
|||
stroke-width: 0.4px; |
|||
} |
|||
|
|||
|
|||
svg .smart-connections-visualizer-nodes circle { |
|||
cursor: pointer; |
|||
} |
|||
|
|||
.smart-connections-visualizer-node { |
|||
cursor: pointer; |
|||
} |
|||
|
|||
.smart-connections-visualizer-settings-icon { |
|||
position: absolute; |
|||
top: 14px; |
|||
right: 14px; |
|||
cursor: pointer; |
|||
font-size: 24px; |
|||
color: #bbb; |
|||
z-index: 999; /* Ensure the icon stays above other elements */ |
|||
} |
|||
.sc-visualizer-dropdown-menu { |
|||
font-family: 'Cascadia'; |
|||
display: none; |
|||
position: absolute; |
|||
top: 13px; /* Position on top of the settings icon */ |
|||
right: 10px; |
|||
background-color: #333; |
|||
border: 1px solid #444; |
|||
border-radius: 5px; |
|||
padding: 10px; |
|||
width: 300px; |
|||
z-index: 1000; /* Ensure the menu stays above other elements */ |
|||
} |
|||
.sc-visualizer-dropdown-menu { |
|||
background-color: rgba(51, 51, 51, 0.9) !important; |
|||
} |
|||
|
|||
.sc-visualizer-dropdown-menu.visible { |
|||
display: block !important; |
|||
} |
|||
.sc-visualizer-dropdown-menu.open { |
|||
display: block !important; |
|||
} |
|||
.smart-connections-visualizer-menu-header { |
|||
display: flex; |
|||
justify-content: flex-end; |
|||
margin-bottom: 5px; |
|||
font-family: sans-serif; |
|||
} |
|||
.smart-connections-visualizer-menu-header .smart-connections-visualizer-icon { |
|||
cursor: pointer; |
|||
font-size: 19px; |
|||
color: #bbb; |
|||
margin-left: 10px; |
|||
margin-top: -2px; |
|||
} |
|||
.smart-connections-visualizer-menu-header .smart-connections-visualizer-icon:hover { |
|||
color: #fff; |
|||
} |
|||
.smart-connections-visualizer-accordion-item { |
|||
margin-bottom: 10px; |
|||
color: #a3aecb; |
|||
} |
|||
|
|||
.smart-connections-visualizer-slider { |
|||
width: 100% !important; |
|||
} |
|||
|
|||
.smart-connections-visualizer-slider-container { |
|||
margin-bottom: 8px; |
|||
} |
|||
|
|||
.smart-connections-visualizer-score-threshold-label { |
|||
text-wrap: nowrap; |
|||
} |
|||
|
|||
#smart-connections-visualizer-refresh-icon { |
|||
font-size: 28px; |
|||
margin-top: -2px; |
|||
width: 20px; |
|||
height: 20px; |
|||
display: flex; |
|||
} |
|||
|
|||
.smart-connections-visualizer-lucide-x { |
|||
height: 24px !important; |
|||
width: 24px !important; |
|||
} |
|||
|
|||
.smart-connections-visualizer-settings-icon { |
|||
-webkit-app-region: no-drag; |
|||
background-color: transparent; |
|||
display: flex; |
|||
align-items: center; |
|||
justify-content: center; |
|||
cursor: pointer; |
|||
border-radius: 1px; |
|||
color: #7c849c; |
|||
/* opacity: var(--icon-opacity); */ |
|||
transition: opacity 0.15s ease-in-out; |
|||
height: auto; |
|||
border: 1px solid #434851; |
|||
position: absolute; |
|||
padding: 8px; |
|||
top: 14px; |
|||
right: 14px; |
|||
} |
|||
|
|||
.smart-connections-visualizer-accordion-header { |
|||
cursor: pointer; |
|||
background-color: #444; |
|||
color: #fff; |
|||
padding: 10px; |
|||
border-radius: 5px; |
|||
display: block; |
|||
align-items: center; |
|||
} |
|||
.smart-connections-visualizer-accordion-header:hover { |
|||
background-color: #555; |
|||
} |
|||
.smart-connections-visualizer-accordion-content { |
|||
display: none; |
|||
padding: 10px; |
|||
background-color: #333; |
|||
border-radius: 5px; |
|||
} |
|||
.smart-connections-visualizer-accordion-content.show { |
|||
display: block; |
|||
} |
|||
.smart-connections-visualizer-dropdown-indicator { |
|||
width: 16px; |
|||
height: 16px; |
|||
margin-right: 8px; |
|||
vertical-align: middle; |
|||
} |
|||
|
|||
.smart-connections-visualizer-radio-container { |
|||
margin-top: 10px; |
|||
} |
|||
|
|||
.smart-connections-visualizer-radio-container label { |
|||
margin-right: 10px; |
|||
color: #a3aecb; |
|||
} |
|||
|
|||
.smart-connections-visualizer-settings-item-content-label { |
|||
margin-right: 20px; |
|||
} |
|||
|
|||
.smart-connections-visualizer-selection-box { |
|||
stroke: #00f; |
|||
stroke-width: 1; |
|||
fill: rgba(0, 0, 255, 0.3); |
|||
} |
|||
|
|||
/* Styles for the legend container */ |
|||
.smart-connections-visualizer-legend-container { |
|||
width: 295px; |
|||
border-collapse: collapse; |
|||
background-color: #2d3039; /* Dark background color similar to settings menu */ |
|||
color: #a3aecb; /* Light text color similar to settings menu */ |
|||
position: absolute; |
|||
top: 14; |
|||
left: 10; |
|||
} |
|||
|
|||
/* Styles for the legend header */ |
|||
.smart-connections-visualizer-legend-header { |
|||
display: flex; |
|||
background-color: #303030; /* Darker background color for header */ |
|||
text-align: left; |
|||
/* border-bottom: 1px solid #ddd; */ |
|||
} |
|||
|
|||
/* Styles for each header cell in the legend */ |
|||
.smart-connections-visualizer-legend-header div { |
|||
padding: 8px; |
|||
} |
|||
|
|||
/* Styles for each row in the legend */ |
|||
.smart-connections-visualizer-legend-row { |
|||
display: flex; |
|||
align-items: center; |
|||
/* border-bottom: 1px solid #ddd; */ |
|||
} |
|||
|
|||
/* Alternate row coloring for better readability */ |
|||
.smart-connections-visualizer-legend-row:nth-child(even) { |
|||
background-color: #3d4149; /* Slightly lighter row color for contrast */ |
|||
} |
|||
|
|||
.smart-connections-visualizer-legend-row:nth-child(odd) { |
|||
background-color: #2d3039; /* Same as container background color */ |
|||
} |
|||
|
|||
/* Styles for each cell in the row */ |
|||
.smart-connections-visualizer-legend-row div { |
|||
padding: 8px; |
|||
} |
|||
|
|||
/* Styles for the color picker input */ |
|||
.smart-connections-visualizer-legend-color-picker { |
|||
width: 30px; |
|||
height: 30px; |
|||
border: none; |
|||
cursor: pointer; |
|||
} |
|||
|
|||
.smart-connections-visualizer-variable-col { |
|||
flex: 2; |
|||
} |
|||
|
|||
.smart-connections-visualizer-count-col { |
|||
flex: 1; |
|||
text-align: center; |
|||
} |
|||
|
|||
.smart-connections-visualizer-color-col { |
|||
flex: 1; |
|||
text-align: center; |
|||
} |
@ -0,0 +1,21 @@ |
|||
{ |
|||
"env_data_dir": ".smart-env", |
|||
"new_user": false, |
|||
"legacy_transformers": false, |
|||
"enable_mobile": false, |
|||
"actions": { |
|||
"lookup": true |
|||
}, |
|||
"system_prompts_folder": "smart prompts", |
|||
"smart_chat_folder": "smart-chats", |
|||
"smart_chat_folder_last": "smart-chats", |
|||
"chat_model_platform_key": "open_router", |
|||
"open_router": {}, |
|||
"api_key": "", |
|||
"excluded_headings": "", |
|||
"show_full_path": false, |
|||
"expanded_view": true, |
|||
"language": "en", |
|||
"version": "2.2.76", |
|||
"env_data_dir_last": ".smart-env" |
|||
} |
@ -0,0 +1,10 @@ |
|||
{ |
|||
"id": "smart-connections", |
|||
"name": "Smart Connections", |
|||
"author": "Brian Petro", |
|||
"description": "Find links to similar notes using artificial intelligence from OpenAI.", |
|||
"minAppVersion": "1.1.0", |
|||
"authorUrl": "https://wfhbrian.com", |
|||
"isDesktopOnly": false, |
|||
"version": "2.2.76" |
|||
} |
@ -0,0 +1,465 @@ |
|||
/* deprecated positioning, use bottom bar instead */ |
|||
.view-content > .sc-brand { |
|||
position: fixed; |
|||
bottom: 0; |
|||
right: 0; |
|||
background-color: var(--titlebar-background); |
|||
} |
|||
.sc-brand { |
|||
> svg, > p { |
|||
display: inline; |
|||
margin: 0 0.1rem 0 0.3rem; |
|||
color: var(--text-muted); |
|||
font-size: var(--font-smallest); |
|||
line-height: 1; |
|||
height: 0.88rem; |
|||
width: auto; |
|||
} |
|||
> p > a { |
|||
color: var(--text-muted); |
|||
} |
|||
} |
|||
|
|||
div[data-type^="smart-connections-"] { |
|||
> .view-content { |
|||
display: flex; |
|||
flex-direction: column; |
|||
#settings, /* DEPRECATED v2.2 */ |
|||
.sc-overlay { |
|||
background-color: var(--background-primary-alt); |
|||
max-width: 100%; |
|||
max-height: 42%; |
|||
&:has(.setting-component){ |
|||
overflow-y: auto; |
|||
height: 100%; |
|||
min-height: 42%; |
|||
padding: var(--size-4-4); |
|||
} |
|||
.setting-item { |
|||
flex-direction: column; |
|||
align-items: flex-start; |
|||
} |
|||
.sc-search-container { |
|||
width: 100%; |
|||
display: flex; |
|||
flex-direction: column; |
|||
.sc-search-input { |
|||
width: 100%; |
|||
display: flex; |
|||
flex-direction: row; |
|||
> textarea { |
|||
border-radius: 1.5rem; |
|||
margin-right: -4rem; |
|||
flex-grow: 1; |
|||
height: 4lh; |
|||
padding: 1rem 3rem 1rem 1rem; |
|||
} |
|||
> button { |
|||
width: 3rem; |
|||
height: 3rem; |
|||
border-radius: 99999px; |
|||
margin: auto; |
|||
margin-right: 1rem; |
|||
} |
|||
} |
|||
|
|||
} |
|||
} |
|||
} |
|||
} |
|||
.sc-list { |
|||
|
|||
.tree-item-self { |
|||
cursor: pointer; |
|||
} |
|||
.tree-item-self small { |
|||
color: var(--color-gray-40); |
|||
} |
|||
> .sc-collapsed ul { |
|||
display: none; |
|||
} |
|||
> .sc-collapsed span svg { |
|||
transform: rotate(-90deg); |
|||
} |
|||
> :not(.sc-collapsed) span svg { |
|||
transform: rotate(0deg); |
|||
} |
|||
> div span svg { |
|||
height: auto; |
|||
margin: auto 0.5em auto 0; |
|||
flex: none; |
|||
} |
|||
> div > span { |
|||
display: inline-flex; |
|||
width: 100%; |
|||
padding-left: 0; |
|||
} |
|||
> div ul { |
|||
margin: 0; |
|||
padding-left: 1.3rem; |
|||
} |
|||
> div > a { |
|||
display: block; |
|||
} |
|||
> div > ul > li { |
|||
display: block; |
|||
} |
|||
.search-result { |
|||
cursor: pointer; |
|||
background: transparent; |
|||
padding: var(--nav-item-padding); |
|||
padding-left: 10px; |
|||
margin-bottom: 1px; |
|||
align-items: baseline; |
|||
border-radius: var(--radius-s); |
|||
font-weight: var(--nav-item-weight); |
|||
} |
|||
.search-result:hover { |
|||
color: var(--nav-item-color-active); |
|||
background-color: var(--nav-item-background-active); |
|||
font-weight: var(--nav-item-weight-active); |
|||
} |
|||
.search-result span { |
|||
color: var(--h5-color); |
|||
} |
|||
.search-result small { |
|||
color: var(--h5-color); |
|||
font-size: 0.8rem; |
|||
font-weight: 500; |
|||
} |
|||
.search-result p { |
|||
margin-top: 0.3rem; |
|||
margin-bottom: 0.3rem; |
|||
} |
|||
|
|||
} |
|||
|
|||
/* Only on right sidebar */ |
|||
.mod-right-split .sc-list .search-result { |
|||
font-size: var(--font-text-size); |
|||
font-size: 0.88rem; |
|||
} |
|||
.sc-top-bar { |
|||
display: flex; |
|||
width: 100%; |
|||
justify-content: end; |
|||
|
|||
.search-input-container { |
|||
width: calc(100% - var(--size-4-8)); |
|||
margin: 4px auto; |
|||
} |
|||
.sc-context { |
|||
color: var(--nav-item-color); |
|||
font-size: var(--nav-item-size); |
|||
margin: 0.5em 0.5em 1em; |
|||
width: 100%; |
|||
} |
|||
} |
|||
|
|||
/* Chat */ |
|||
.sc-top-bar-container { |
|||
align-self: flex-end; |
|||
display: flex; |
|||
width: 100%; |
|||
|
|||
.sc-chat-name-input{ |
|||
flex-grow: 1; |
|||
} |
|||
} |
|||
.sc-chat-container { |
|||
display: flex; |
|||
flex-direction: column; |
|||
align-items: center; |
|||
justify-content: flex-end; |
|||
height: 100%; |
|||
background-color: var(--background-primary-alt); |
|||
} |
|||
.sc-chat-box { |
|||
display: flex; |
|||
flex-direction: column; |
|||
align-items: flex-start; |
|||
justify-content: flex-end; |
|||
height: 100%; |
|||
width: 100%; |
|||
overflow: hidden; |
|||
user-select: text; |
|||
} |
|||
.sc-message-container { |
|||
border: 1px solid var(--divider-color); |
|||
border-radius: 10px; |
|||
margin: 0.5rem 0; |
|||
display: flex; |
|||
flex-direction: column; |
|||
align-items: flex-start; |
|||
width: 100%; |
|||
height: 100%; |
|||
overflow-y: auto; |
|||
} |
|||
.sc-message { |
|||
max-width: 90ch; |
|||
width: 90%; |
|||
margin: 10px; |
|||
padding: 10px; |
|||
border-radius: 1.5rem; |
|||
word-break: break-word; |
|||
|
|||
&.user { |
|||
align-self: flex-end; |
|||
color: var(--text-normal); |
|||
align-self: flex-end; |
|||
background-color: var(--background-primary); |
|||
} |
|||
|
|||
&.assistant, &.system { |
|||
background-color: var(--background-primary-alt); |
|||
color: var(--text-normal); |
|||
} |
|||
} |
|||
.sc-system { |
|||
align-self: center; |
|||
font-style: italic; |
|||
color: var(--text-faint); |
|||
} |
|||
|
|||
|
|||
.sc-message-content { |
|||
margin: 0; |
|||
padding: 1rem; |
|||
|
|||
> * p { |
|||
margin: 0; |
|||
} |
|||
} |
|||
|
|||
.sc-chat-form { |
|||
display: flex; |
|||
padding: 0 10px 1rem 0; |
|||
width: 100%; |
|||
max-height: 50%; |
|||
|
|||
.sc-chat-input { |
|||
flex-grow: 1; |
|||
padding: 0.88rem; |
|||
border: none; |
|||
border-radius: 1.5rem; |
|||
resize: none; |
|||
height: auto; |
|||
min-height: 4.2lh; |
|||
max-height: 100%; |
|||
background-color: var(--background-primary); |
|||
color: var(--text-normal); |
|||
margin-right: -2.7rem; |
|||
padding-right: 3rem; |
|||
} |
|||
|
|||
.sc-btn-container{ |
|||
width: 2rem; |
|||
height: 2rem; |
|||
margin: auto; |
|||
|
|||
> button.send-button { |
|||
border-radius: 99999px; |
|||
cursor: pointer; |
|||
outline: 2px solid transparent; |
|||
padding: 0; |
|||
outline-offset: 2px; |
|||
background: none !important; |
|||
|
|||
&:focus-visible{ |
|||
outline-color: var(--text-faint); |
|||
box-shadow: none; |
|||
} |
|||
|
|||
> svg{ |
|||
> circle { |
|||
fill: var(--text-faint); |
|||
} |
|||
> path { |
|||
fill: var(--background-primary); |
|||
} |
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
|
|||
.sc-msg-button { |
|||
cursor: pointer; |
|||
float: right; |
|||
margin-left: 5px; |
|||
opacity: 0.8; |
|||
} |
|||
.sc-msg-button:hover { |
|||
opacity: 1; |
|||
} |
|||
#sc-abort-button { |
|||
cursor: pointer; |
|||
padding: 10px; |
|||
border-radius: 5px; |
|||
} |
|||
#sc-abort-button:hover { |
|||
background-color: var(--background-primary); |
|||
} |
|||
.sc-change{ |
|||
.sc-change-footer{ |
|||
display: flex; |
|||
justify-content: space-between; |
|||
align-items: center; |
|||
& > * { |
|||
display: inline-block; |
|||
color: var(--text-muted); |
|||
font-size: var(--font-smallest); |
|||
} |
|||
.sc-brand { |
|||
position: unset; |
|||
background-color: var(--background-primary); |
|||
} |
|||
} |
|||
.sc-variation{ |
|||
--new-content-color: hsl(124, 75%, 55%, 0.13); |
|||
--old-content-color: hsl(3, 43%, 47%, 0.13); |
|||
display: flex; |
|||
align-items: flex-end; |
|||
justify-content: space-between; |
|||
margin: 0 -300px; |
|||
padding: 0 300px; |
|||
&:has(.new-content){ |
|||
background-color: var(--new-content-color); |
|||
> button{ |
|||
background-color: var(--new-content-color) !important; |
|||
} |
|||
} |
|||
&:has(.old-content){ |
|||
background-color: var(--old-content-color); |
|||
> button{ |
|||
background-color: var(--old-content-color) !important; |
|||
} |
|||
} |
|||
> div{ |
|||
> *:last-child{ |
|||
margin-bottom: 0; |
|||
} |
|||
} |
|||
.old-content{ |
|||
color: var(--text-muted); |
|||
text-decoration: line-through; |
|||
> *:first-child{ |
|||
margin-top: 0; |
|||
} |
|||
} |
|||
} |
|||
} |
|||
.markdown-source-view.mod-cm6 .cm-embed-block:not(.cm-table-widget):hover:has(.sc-change){ |
|||
overflow: unset; |
|||
box-shadow: unset; |
|||
cursor: unset; |
|||
} |
|||
|
|||
/* V2 */ |
|||
.sc-list .search-result li h1, |
|||
.sc-list .search-result li h2, |
|||
.sc-list .search-result li h3, |
|||
.sc-list .search-result li h4, |
|||
.sc-list .search-result li h5, |
|||
.sc-list .search-result li h6 { |
|||
margin-block-start: calc(var(--p-spacing)/2); |
|||
margin-block-end: calc(var(--p-spacing)/2); |
|||
} |
|||
.sc-list .search-result li h1 { |
|||
font-size: 1.3rem; |
|||
} |
|||
.sc-list .search-result li h2 { |
|||
font-size: 1.25rem; |
|||
} |
|||
.sc-list .search-result li h3 { |
|||
font-size: 1.2rem; |
|||
} |
|||
.sc-list .search-result li h4 { |
|||
font-size: 1.15rem; |
|||
} |
|||
.sc-list .search-result li h5 { |
|||
font-size: 1.1rem; |
|||
} |
|||
.sc-list .search-result li h6 { |
|||
font-size: 1.05rem; |
|||
} |
|||
|
|||
.notice .sc-notice-actions{ |
|||
display: flex; |
|||
justify-content: space-between; |
|||
flex-direction: row-reverse; |
|||
} |
|||
|
|||
.sc-chat-container { |
|||
#settings { |
|||
display: flex; |
|||
flex-direction: column; |
|||
max-width: 100%; |
|||
width: 100%; |
|||
} |
|||
} |
|||
|
|||
.sc-supporters{ |
|||
max-height: 37ch; |
|||
border: 1px solid var(--h1-color); |
|||
border-radius: 10px; |
|||
padding: 10px; |
|||
margin-left: -10px; |
|||
box-shadow: 0 1px 0 1px var(--shadow-300); |
|||
overflow: auto; |
|||
text-wrap: balance; |
|||
|
|||
> p{ |
|||
margin-top: 0; |
|||
margin-bottom: 5px; |
|||
} |
|||
|
|||
> ul { |
|||
margin-top: 5px; |
|||
} |
|||
|
|||
> * li { |
|||
margin-top: 0.37em; |
|||
} |
|||
|
|||
} |
|||
|
|||
/* settings */ |
|||
.vertical-tab-content:has(> .sc-supporters){ |
|||
.setting-item-control{ |
|||
> select { |
|||
max-width: 500px; |
|||
} |
|||
} |
|||
} |
|||
|
|||
.sc-bottom-bar{ |
|||
position: fixed; |
|||
bottom: 0; |
|||
right: 0; |
|||
left: 0; |
|||
width: 100%; |
|||
display: flex; |
|||
justify-content: space-between; |
|||
align-items: center; |
|||
background-color: var(--titlebar-background); |
|||
padding: 0 0.5rem; |
|||
.sc-brand{ |
|||
flex-shrink: 0; |
|||
} |
|||
.sc-context{ |
|||
flex-grow: 1; |
|||
font-size: var(--font-smallest); |
|||
overflow: hidden; |
|||
text-overflow: ellipsis; |
|||
white-space: nowrap; |
|||
} |
|||
} |
|||
|
|||
.setting-component[data-setting*="/"][data-setting*="api_key"] { |
|||
display: none; |
|||
} |
|||
.setting-component[data-setting*="gpu"]:not([data-setting*="/"]) { |
|||
display: none; |
|||
} |
|||
|
@ -0,0 +1,238 @@ |
|||
{ |
|||
"main": { |
|||
"id": "4d637662bdf55d23", |
|||
"type": "split", |
|||
"children": [ |
|||
{ |
|||
"id": "20f548f78adb3aa5", |
|||
"type": "tabs", |
|||
"children": [ |
|||
{ |
|||
"id": "434cabd0fdf73db1", |
|||
"type": "leaf", |
|||
"state": { |
|||
"type": "graph", |
|||
"state": {} |
|||
} |
|||
}, |
|||
{ |
|||
"id": "bfdd3838186c7dc2", |
|||
"type": "leaf", |
|||
"state": { |
|||
"type": "smart-connections-visualizer", |
|||
"state": {} |
|||
} |
|||
}, |
|||
{ |
|||
"id": "2c59738405f67cfb", |
|||
"type": "leaf", |
|||
"state": { |
|||
"type": "markdown", |
|||
"state": { |
|||
"file": "appointment doctor websites/doctor doctor/about Gynecologists and obstetricians.md", |
|||
"mode": "source", |
|||
"source": false |
|||
} |
|||
} |
|||
}, |
|||
{ |
|||
"id": "4460d33f558bee87", |
|||
"type": "leaf", |
|||
"state": { |
|||
"type": "markdown", |
|||
"state": { |
|||
"file": "appointment doctor websites/doctor doctor/about Gynecologists and obstetricians.md", |
|||
"mode": "source", |
|||
"source": false |
|||
} |
|||
} |
|||
} |
|||
], |
|||
"currentTab": 3 |
|||
} |
|||
], |
|||
"direction": "vertical" |
|||
}, |
|||
"left": { |
|||
"id": "24f8afb2924881ad", |
|||
"type": "split", |
|||
"children": [ |
|||
{ |
|||
"id": "9e71c91ab85587ca", |
|||
"type": "tabs", |
|||
"children": [ |
|||
{ |
|||
"id": "c4430ec642c6fa07", |
|||
"type": "leaf", |
|||
"state": { |
|||
"type": "file-explorer", |
|||
"state": { |
|||
"sortOrder": "alphabetical" |
|||
} |
|||
} |
|||
}, |
|||
{ |
|||
"id": "fdc0e0d7e5ea55e4", |
|||
"type": "leaf", |
|||
"state": { |
|||
"type": "search", |
|||
"state": { |
|||
"query": "", |
|||
"matchingCase": false, |
|||
"explainSearch": false, |
|||
"collapseAll": false, |
|||
"extraContext": false, |
|||
"sortOrder": "alphabetical" |
|||
} |
|||
} |
|||
}, |
|||
{ |
|||
"id": "72f0b3e401f450a7", |
|||
"type": "leaf", |
|||
"state": { |
|||
"type": "bookmarks", |
|||
"state": {} |
|||
} |
|||
} |
|||
] |
|||
} |
|||
], |
|||
"direction": "horizontal", |
|||
"width": 300 |
|||
}, |
|||
"right": { |
|||
"id": "89f5c92a6b0d5656", |
|||
"type": "split", |
|||
"children": [ |
|||
{ |
|||
"id": "b7b0592c55cdedd3", |
|||
"type": "tabs", |
|||
"children": [ |
|||
{ |
|||
"id": "8fd1915662934b81", |
|||
"type": "leaf", |
|||
"state": { |
|||
"type": "backlink", |
|||
"state": { |
|||
"file": "appointment doctor websites/doctor doctor/about Gynecologists and obstetricians.md", |
|||
"collapseAll": false, |
|||
"extraContext": false, |
|||
"sortOrder": "alphabetical", |
|||
"showSearch": false, |
|||
"searchQuery": "", |
|||
"backlinkCollapsed": false, |
|||
"unlinkedCollapsed": true |
|||
} |
|||
} |
|||
}, |
|||
{ |
|||
"id": "670bb344c46d4656", |
|||
"type": "leaf", |
|||
"state": { |
|||
"type": "outgoing-link", |
|||
"state": { |
|||
"file": "appointment doctor websites/doctor doctor/about Gynecologists and obstetricians.md", |
|||
"linksCollapsed": false, |
|||
"unlinkedCollapsed": true |
|||
} |
|||
} |
|||
}, |
|||
{ |
|||
"id": "0561703022f7b5a7", |
|||
"type": "leaf", |
|||
"state": { |
|||
"type": "tag", |
|||
"state": { |
|||
"sortOrder": "frequency", |
|||
"useHierarchy": true |
|||
} |
|||
} |
|||
}, |
|||
{ |
|||
"id": "efb229f506169fb5", |
|||
"type": "leaf", |
|||
"state": { |
|||
"type": "outline", |
|||
"state": { |
|||
"file": "appointment doctor websites/doctor doctor/about Gynecologists and obstetricians.md" |
|||
} |
|||
} |
|||
}, |
|||
{ |
|||
"id": "7939f32d300b75d8", |
|||
"type": "leaf", |
|||
"state": { |
|||
"type": "smart-connections-view", |
|||
"state": {} |
|||
} |
|||
}, |
|||
{ |
|||
"id": "1b559d3b28e932f6", |
|||
"type": "leaf", |
|||
"state": { |
|||
"type": "smart-connections-chat-view", |
|||
"state": {} |
|||
} |
|||
} |
|||
], |
|||
"currentTab": 4 |
|||
} |
|||
], |
|||
"direction": "horizontal", |
|||
"width": 300 |
|||
}, |
|||
"left-ribbon": { |
|||
"hiddenItems": { |
|||
"switcher:Open quick switcher": false, |
|||
"graph:Open graph view": false, |
|||
"canvas:Create new canvas": false, |
|||
"daily-notes:Open today's daily note": false, |
|||
"templates:Insert template": false, |
|||
"command-palette:Open command palette": false, |
|||
"smart-connections-visualizer:Open smart connections visualizer": false, |
|||
"smart-connections:Open: View Smart Connections": false, |
|||
"smart-connections:Open: Smart Chat Conversation": false |
|||
} |
|||
}, |
|||
"active": "4460d33f558bee87", |
|||
"lastOpenFiles": [ |
|||
"appointment doctor websites/nobar ir/about Gynecologists and obstetricians.md", |
|||
"appointment doctor websites/doctor doctor/about radiologists.md", |
|||
"appointment doctor websites/doctor doctor/about Gynecologists and obstetricians.md", |
|||
"appointment doctor websites/genders 2.png", |
|||
"appointment doctor websites/nobar ir/about radiologists.md", |
|||
"tehran_neighborhoods_colored_map 3.html", |
|||
"appointment doctor websites/Pasted image 20241022142002.png", |
|||
"appointment doctor websites/high_res_chart_tehran_items 1 1.png", |
|||
"iran_cities_colored_map_with_labels 3.html", |
|||
"appointment doctor websites/Pasted image 20241022141550.png", |
|||
"appointment doctor websites/high_res_chart_3 4.png", |
|||
"appointment doctor websites/high_res_chart_tehran_items 2.png", |
|||
"tehran_neighborhoods_colored_map 2.html", |
|||
"tehran_neighborhoods_colored_map 1.html", |
|||
"appointment doctor websites/Pasted image 20241022140706.png", |
|||
"iran_cities_colored_map_with_labels 2.html", |
|||
"appointment doctor websites/Pasted image 20241022140401.png", |
|||
"appointment doctor websites/high_res_chart_3 3 1.png", |
|||
"appointment doctor websites/high_res_chart_3 2 1.png", |
|||
"Untitled.md", |
|||
"iran_cities_colored_map_with_labels 1.html", |
|||
"tehran_neighborhoods_colored_map.html", |
|||
"iran_cities_colored_map_with_labels.html", |
|||
"smart-chats/UNTITLED CHAT 2024-09-26 15 07 21.md", |
|||
"appointment doctor websites/doctor doctor", |
|||
"Untitled", |
|||
"doctors description/Gynecology and obstetrics/Untitled.md", |
|||
"doctors description/Untitled.md", |
|||
"s2.md", |
|||
"s1.md", |
|||
"note 6.md", |
|||
"note 4.md", |
|||
"note 3.md", |
|||
"note 2.md", |
|||
"note 1.md", |
|||
"c1.canvas", |
|||
"note 5.md", |
|||
"Untitled.canvas" |
|||
] |
|||
} |
@ -0,0 +1,3 @@ |
|||
|
|||
"SmartSource:c1.canvas": {"path":"c1.canvas","class_name":"SmartSource","history":[{"blocks":{},"mtime":1727360456700,"size":237,"hash":"1b2cb2858a3b0dd3cda038d2e20e86f250b474a8ad0f1d348e645958119650fc"}],"embeddings":{"TaylorAI/bge-micro-v2":{"vec":[-0.03169537,-0.01426084,0.00717336,-0.0229644,0.01407965,0.00320554,-0.04870041,0.0225892,0.0263648,0.01935953,0.00335474,-0.07258978,0.0148151,0.03916871,0.01679982,0.02743863,-0.00458891,0.07433999,-0.09635997,0.04213994,0.1009265,-0.01542968,-0.00317555,-0.08236904,0.00688986,0.04540901,-0.02334584,-0.02009674,0.01372439,-0.14614588,-0.0034362,-0.01054626,0.05341122,-0.02163585,0.03841311,-0.00546279,0.03146666,0.04657548,-0.00506933,0.00451618,-0.020593,0.06451553,-0.04240456,0.018139,0.00001221,-0.08291904,-0.0405217,0.0056366,0.00601338,-0.01326851,-0.03007473,-0.08716303,0.02338902,0.01508631,0.01622985,0.09448964,-0.00279043,0.04690526,0.03938058,0.0795231,0.0363602,0.02411305,-0.16194588,0.10655949,0.03580824,-0.01937307,-0.09456263,-0.03197869,0.05217053,0.07930602,-0.03279591,0.00095107,0.01349363,0.04298647,-0.02687533,-0.05842867,-0.05141908,-0.04597922,0.00233253,-0.0311239,-0.08943733,0.02958176,0.0086162,0.02312907,0.01961295,0.02704217,0.02118593,-0.02890977,0.04369254,0.00022113,-0.03189604,-0.05895374,0.00547601,-0.0006828,-0.0979405,-0.04561953,0.05004225,0.03301868,-0.03157423,0.10362061,-0.00958298,-0.02075207,0.0841456,-0.04048248,0.01140568,-0.00460144,-0.01607533,-0.0768656,-0.02144604,0.03543048,-0.04447991,-0.03986925,-0.06740512,-0.04377147,-0.01281618,-0.01163243,0.01349722,0.005024,-0.03652721,0.02855448,-0.02206593,0.05261026,-0.00867621,-0.00509532,0.02727786,0.0406062,0.01907485,0.04398651,0.010678,0.06306837,0.00626008,0.11863039,0.01080194,0.01318707,-0.03227826,-0.00818121,-0.01956793,0.04616252,0.00512388,0.00341164,0.012476,-0.03152757,0.00735747,-0.00768548,-0.00595149,0.06583002,-0.08023121,0.07010044,-0.03966577,-0.05906057,0.0078644,0.05208196,-0.07015039,0.02625293,-0.03064828,0.03032118,0.02092301,0.09306096,-0.04641584,0.00258346,0.0186591,0.00806233,-0.02513165,0.09128867,0.00717878,-0.083436,0.02200493,0.067499,-0.01472929,-0.01451455,-0.04665425,-0.01336239,0.01005552,-0.02800694,0.10134725,0.00404446,-0.0486165,-0.04050011,0.02579881,0.00389093,-0.01214889,-0.02692283,-0.01767256,-0.01083075,-0.0320816,0.01044753,-0.01867358,-0.01764906,0.03538071,0.06737387,-0.03970864,-0.00834509,0.00323953,-0.05855763,-0.05650753,-0.02826761,-0.02011736,-0.06105151,0.00172103,-0.00694929,0.22370452,0.02392897,-0.01039594,-0.003305,0.0091914,-0.00642735,0.01404391,-0.00908124,0.01883445,-0.04890056,-0.05154155,-0.05321434,0.04118175,-0.01198813,0.0289235,-0.00304643,0.02865928,0.01425891,0.0063222,0.06297905,-0.03973009,-0.08702126,-0.14190261,-0.20946285,0.01184572,0.01098323,0.00285119,-0.06689481,-0.02510034,0.04913694,0.01255535,-0.00261037,0.0100172,0.11717718,0.01370477,-0.04521387,-0.06927613,-0.05505996,-0.00572303,-0.01963615,0.0163778,0.01926129,0.06100445,0.01571462,-0.00773481,-0.05975908,-0.01749865,0.02479657,-0.02309624,0.19675495,-0.01018949,-0.01906567,-0.02017157,0.01320892,0.00989108,-0.02186176,-0.04933096,0.02689522,0.07934721,-0.06891305,0.07700949,-0.05026555,-0.04375359,-0.03091623,0.01910403,-0.01719509,-0.06476013,-0.00377053,-0.0436352,-0.00852636,-0.06232016,0.0272191,0.0226978,0.00391299,0.01092832,0.03729592,0.00664572,0.00543309,0.00127046,-0.03122763,-0.01395985,-0.00759894,0.02013064,-0.02825136,-0.07009687,-0.03206085,-0.06291369,0.01424171,0.09456434,0.02998762,-0.04386524,0.00685503,-0.03291953,0.02955356,0.05101703,0.04808125,0.04064694,0.06350899,0.02923446,0.01549671,0.11038197,0.05247319,0.03924448,-0.00346483,-0.02115071,0.08557125,-0.01064014,0.08017627,0.05310616,0.00055491,-0.06440762,0.07581811,-0.06751896,0.03553484,-0.00664267,-0.03906283,-0.00446758,-0.02816129,-0.0137289,-0.29898033,0.00854668,-0.01117085,0.02886611,-0.00146613,0.0364323,0.05711207,0.00174799,-0.08315042,-0.04479213,-0.05471523,0.03301506,0.02616622,-0.07671244,-0.02103514,0.0170021,-0.00796986,-0.03716552,0.08555383,-0.00994061,0.03151212,-0.00152151,0.20178191,-0.00095358,0.02663827,0.02696838,0.01611811,-0.02302994,0.10016553,0.00696861,-0.03852738,0.02326722,0.1260362,-0.00496597,0.03560823,0.05070356,-0.02640733,-0.00425552,0.01980046,-0.00477672,0.01975281,-0.01073455,0.0180604,-0.00554236,0.03873213,0.02930696,0.00589973,0.06007119,0.04130669,-0.02632568,-0.04504012,-0.01655051,-0.09191071,0.00620748,0.03847976,0.02258214,0.00920475,-0.03642976,-0.02749072,-0.02261511,0.01909457,-0.11388774,0.00426431,0.00678129,0.01483517],"tokens":154}},"outlinks":[]} |
|||
"SmartSource:c1.canvas": {"path":"c1.canvas","class_name":"SmartSource","history":[{"blocks":{},"mtime":1727360456700,"size":237,"hash":"1b2cb2858a3b0dd3cda038d2e20e86f250b474a8ad0f1d348e645958119650fc"}],"embeddings":{"Xenova/bge-small-en-v1.5":{"vec":[-0.0520981,-0.0298615,0.04517869,-0.03755423,0.02598844,-0.00432445,-0.01213353,0.02429438,0.02029175,0.04925799,0.03447262,-0.07480889,0.01073357,0.02318444,0.01037456,0.00850624,-0.0211008,0.10544933,-0.09433417,0.03788021,0.05410858,-0.01483629,0.01086664,-0.05085998,0.02145357,0.05348608,-0.0285925,-0.03185345,0.00422265,-0.17312202,-0.00205,-0.02237727,0.0343683,-0.01717391,0.02542396,-0.0186152,0.04517166,0.02709219,-0.00624298,0.03525873,-0.00950248,0.04664154,-0.08026055,0.01683593,-0.01342408,-0.04052349,-0.06109166,0.00653263,0.00604707,-0.0222078,-0.04150213,-0.10680202,0.01167019,-0.04335495,0.02468561,0.06892323,-0.02353124,0.02099681,0.0106401,0.06214065,0.04133268,0.00783547,-0.13194409,0.10100053,0.03007707,-0.01120036,-0.06962768,-0.04162389,0.01400727,0.05986413,-0.02640814,0.0377024,0.05714224,0.026589,-0.00868206,-0.06803129,-0.02516589,-0.03794052,-0.01300739,-0.01532717,-0.12972668,0.0240406,0.03467811,0.02214038,0.02097723,0.05004521,0.00034868,-0.05455075,0.05103187,0.03260232,-0.02543011,-0.02868995,0.02164263,0.03292697,-0.09422728,-0.03446092,0.08511718,0.05021865,-0.02064799,0.12749891,-0.06090655,-0.04178024,0.07480878,-0.02856692,0.00638436,-0.03434447,-0.04685593,-0.09453159,-0.01451863,0.05559869,-0.0105663,-0.03711469,-0.05061934,-0.05541009,-0.03201355,-0.00231293,-0.02127657,0.02838901,-0.05860117,0.03367278,0.00009024,0.05904535,0.01189857,0.00537669,0.00666902,0.03293008,0.02223565,0.04959925,0.0468158,0.07390442,0.01405653,0.11567417,0.0017671,0.01180139,-0.01683474,-0.00901445,-0.0307838,-0.00525451,-0.00153874,0.05278965,0.0306524,-0.03063891,-0.00600343,0.00897252,0.0129069,0.04305797,-0.03790372,0.05107556,-0.0208871,-0.05410425,-0.00892951,0.07323508,-0.06607997,0.05432555,-0.03545186,0.0281747,0.02872713,0.08065145,-0.01356021,0.02247975,-0.02248346,0.00161662,-0.02506853,0.08711547,-0.01181762,-0.07613026,0.04984719,0.05778259,-0.01542146,-0.03039443,-0.0182397,-0.00692284,-0.00457028,-0.0299834,0.09424392,-0.00036707,-0.0868326,-0.05659738,0.02592669,0.02855242,-0.03370456,-0.03294957,-0.02331344,-0.01453896,-0.0293716,0.03460884,-0.00738968,0.00377785,0.01643859,0.05731336,-0.05623461,0.00146929,0.03182222,-0.05549445,-0.04734739,-0.01009446,-0.00723646,-0.05139459,-0.02245655,0.014371,0.20256212,0.01604147,-0.00830895,0.01158381,0.0131897,0.00129337,-0.00194153,-0.00628369,0.04376539,-0.03457335,-0.02929643,-0.05870106,0.06619139,0.00023774,0.01608363,-0.01910097,0.04570995,0.02013082,0.01236538,0.06705242,-0.06703182,-0.14504731,-0.18044752,-0.19953088,-0.00694414,-0.00581893,0.02787647,-0.06754318,-0.00112806,0.00352601,0.00804161,-0.02395231,0.00727814,0.11646944,0.00187758,-0.04350844,-0.05547154,-0.0477136,-0.02715112,0.00425307,0.01619654,0.025341,0.09432252,0.01937207,-0.02803748,-0.06627224,-0.01506644,-0.01701282,-0.0330798,0.18778543,-0.00472292,-0.02286441,0.00770149,-0.00965392,0.02934369,-0.00645393,-0.02510838,0.01552389,0.07447157,-0.01269834,0.06679668,-0.01001648,-0.02133957,-0.02050852,0.03386126,0.01254287,-0.04978363,-0.03101845,-0.02709063,-0.03889193,-0.05681218,0.04101916,-0.00808281,0.01254431,0.03005087,0.06359395,0.0154652,-0.04934433,0.00210313,-0.03995704,0.00794251,-0.00252492,0.01306141,0.00596046,-0.06264488,-0.00531417,-0.05756288,0.02378681,0.0848107,0.03615434,-0.07698663,-0.00459663,-0.03638722,0.03908306,0.04279469,0.0629297,0.03691008,0.03961963,0.05933734,0.01390577,0.07279612,0.02670131,0.04476143,0.00376423,-0.01852978,0.06074372,0.00611838,0.0564937,0.04003049,0.00506379,-0.06719554,0.05740315,-0.06104985,0.04577293,-0.0115105,-0.0550323,-0.01098758,-0.01174102,0.01331244,-0.26745284,0.01399323,0.00185322,0.01913324,0.00671485,0.04523353,0.0473397,-0.02412729,-0.07129164,-0.01419201,-0.06851361,0.06484415,0.02096047,-0.07752363,-0.01952823,0.04036156,0.00073218,-0.01845781,0.0848904,-0.00943402,0.0367938,0.01278064,0.20684062,0.01343125,-0.00410397,0.01266267,-0.01979574,-0.03014846,0.12201744,0.00143325,-0.02338824,0.00550976,0.10699722,0.01697948,0.05146744,0.0358504,-0.00512561,0.02433572,0.03286907,-0.00581187,-0.00111453,-0.0367985,0.03239096,-0.01741905,0.01977962,-0.03458165,-0.03654582,0.04254027,0.02367692,0.0011808,-0.05936287,-0.05161588,-0.07238702,0.00014129,0.01850543,0.02791449,0.00970756,-0.03244336,-0.05186936,-0.01687542,0.04326921,-0.11536592,-0.0179012,0.01212577,-0.03227643],"tokens":154}},"outlinks":[]} |
@ -0,0 +1,3 @@ |
|||
|
|||
"SmartSource:doctors description/Gynecology and obstetrics/test.md 1.txt": {"path":"doctors description/Gynecology and obstetrics/test.md 1.txt","class_name":"SmartSource","history":[{"blocks":{"doctors description/Gynecology and obstetrics/test.md 1.txt#":true},"mtime":1728467758653,"size":5,"hash":"2cf24dba5fb0a30e26e83b2ac5b9e29e1b161e5c1fa7425e73043362938b9824"}],"embeddings":{"Xenova/bge-small-en-v1.5":{"vec":[-0.02094722,0.0296564,0.06766265,0.02396779,0.00639004,-0.03043188,0.04563495,0.06570373,-0.02664596,-0.02776509,-0.01353861,-0.05797445,-0.00898064,0.06224932,-0.03834185,-0.06598641,0.06807692,-0.06596688,0.00794003,0.0528625,0.03434717,0.01593285,-0.05024702,-0.00047846,0.01390986,-0.02333574,0.01997388,-0.01121864,-0.03279134,-0.06617076,-0.06040293,-0.00759071,0.04583022,-0.00689434,0.02526239,-0.04277683,0.01774499,0.01226298,-0.07583164,-0.03429088,0.04607278,-0.05618936,0.00982861,0.05619179,0.00888786,-0.05216957,-0.00848943,0.03165809,0.04279191,-0.01346865,0.01232697,0.02145507,-0.03199049,-0.04224066,0.03097059,-0.05001454,0.07542869,0.01709911,-0.01984313,0.01860818,-0.0140583,0.03910329,-0.17608859,0.04416502,-0.01976762,0.02990771,-0.01027498,-0.03731911,0.04500705,0.05502195,0.04618548,-0.01099235,-0.03473574,0.04565062,0.00140949,0.03697463,0.02372775,0.00943095,0.01694095,0.01258897,-0.0239303,0.00371527,0.00087232,-0.04296269,0.00328675,-0.07871863,-0.02966621,0.01104879,0.00783117,-0.03449972,-0.002839,-0.05893147,-0.00230704,0.00711889,-0.04885678,-0.02992509,-0.02347667,0.01039675,-0.02274051,0.15936846,-0.14373153,-0.03694798,0.03137013,-0.00900304,0.01651536,0.05940128,0.03570144,-0.04375845,-0.03178388,0.02793706,0.0498142,-0.03994903,0.03423751,-0.03797601,0.03622381,0.01976396,0.01278291,-0.00072429,0.01197756,-0.04409127,0.00329994,-0.02687014,0.02426356,-0.10323907,0.10409846,-0.04754757,0.08290136,0.07871763,-0.02903366,0.07690738,0.04728118,0.06316478,-0.08892764,-0.00924677,-0.00679619,-0.02055395,0.00306373,0.02584624,-0.07901083,-0.01496167,-0.00901668,-0.14749789,-0.04027568,-0.06770347,-0.04851681,0.03722095,-0.04982408,0.06668793,0.05831364,-0.01631505,0.06184548,0.04631199,-0.09395382,-0.01947748,0.03641303,0.02317458,0.06326362,0.05493171,-0.03855914,0.01095394,0.04415794,-0.03070406,-0.0483297,0.12863921,0.02302419,-0.07802136,-0.00379468,0.01609516,-0.00928115,-0.0289187,0.1292434,-0.07087561,-0.03259714,0.01093601,0.05746728,-0.05576146,0.05093377,0.06966366,-0.0019167,-0.04157902,-0.00284659,0.01436174,0.0123584,0.00823053,0.00435503,-0.01264533,-0.03087491,-0.01514455,0.04176005,0.00664192,0.06813715,0.00864489,-0.0267532,-0.04708141,-0.05171201,-0.03324657,0.01206749,0.02643109,0.00519843,-0.03642162,0.09984625,0.01997721,0.07375883,0.10273469,-0.01078268,-0.01941015,0.03889856,-0.04309558,0.1122054,0.01777811,-0.01450864,0.02290894,0.05220777,0.00367534,-0.02960718,-0.01867487,-0.00157065,-0.02169237,0.01456072,0.11556449,0.04456762,0.04388974,-0.03050642,-0.21341038,-0.01185068,-0.0221221,-0.00082516,0.03883151,-0.05287076,0.07042065,0.0241365,0.05339434,0.05209798,0.08731773,-0.01488626,-0.06698749,-0.03019727,0.01584211,-0.00763572,0.01725137,-0.02772702,0.02043509,-0.04476625,0.03264568,-0.00225174,0.02316855,-0.04462052,0.01822176,-0.04187903,0.11199292,0.0635058,0.01644713,-0.00282808,0.03182923,-0.00527918,0.06093188,-0.13204545,0.03135799,0.01711016,-0.04117158,-0.02279248,-0.04033208,0.00005817,-0.02564327,-0.04972135,-0.01047818,-0.00818213,-0.03488291,-0.01938173,-0.08047063,0.03601719,-0.0658694,0.08821113,-0.04181727,-0.09956572,-0.0158776,0.00211538,-0.00265905,-0.08972047,-0.10537303,-0.00268578,-0.0457878,-0.00816962,0.04261896,0.03147636,-0.01307729,0.02355904,-0.01816984,0.01667805,-0.04276705,-0.02659679,0.09319846,-0.02231642,-0.00103056,0.00187938,-0.06473295,0.00204078,0.00209097,0.00813193,0.01351689,-0.05249052,-0.0617038,-0.10638287,0.01497457,0.06395731,0.04491312,-0.01087804,0.01032519,0.07004397,0.04281915,0.00467541,0.06383006,-0.01303621,-0.02001131,0.01292937,-0.00874275,-0.05790268,0.02239929,-0.01861206,-0.25319231,0.06368132,-0.06554653,0.01473939,-0.06010702,0.07436304,-0.01664906,0.00494697,-0.01159741,-0.0163988,0.0249857,0.06729446,0.03262112,-0.04693817,-0.01393989,0.07162436,0.08078538,0.00076038,0.04631247,-0.03384031,0.01143773,0.00463114,0.16394585,-0.05879999,0.05323181,-0.00245147,0.01654398,-0.00295924,0.08439437,0.00952828,0.06113336,0.02732879,0.03660627,-0.05396847,0.03457361,0.06614718,-0.03409128,0.032879,0.04356516,-0.01027004,-0.01741909,-0.07283842,-0.08517728,0.00932997,0.08012395,0.00004245,-0.05601861,-0.00673982,-0.04849219,0.02160509,-0.06139549,0.03096861,0.04878337,0.00182022,0.03220625,0.00644997,0.02973513,-0.01065996,-0.07631037,-0.04705108,-0.02457617,-0.07580777,0.03894139,0.13097437,-0.02774009],"tokens":20}},"outlinks":[]} |
|||
"SmartBlock:doctors description/Gynecology and obstetrics/test.md 1.txt#": {"class_name":"SmartBlock","embeddings":{"TaylorAI/bge-micro-v2":{"vec":[0.01397172,0.05436418,0.05607337,0.00459889,0.02751795,0.01114697,0.03302158,0.04864875,-0.03614053,-0.01544925,-0.02682509,-0.04595791,-0.02198116,0.05474401,-0.02236375,-0.05359994,0.06093636,-0.04397703,0.00936684,0.05433014,0.06990515,0.02721027,-0.0562861,-0.00208039,0.03820381,-0.00601906,0.01548435,-0.01339411,-0.04533955,-0.10381693,-0.03973539,0.001486,0.00867433,0.00671746,0.01541036,-0.06532422,0.01407774,0.02808012,-0.07543785,-0.01174507,0.04878354,-0.05204459,-0.01892676,0.03206822,-0.02801874,-0.02206573,-0.04247161,0.03912987,0.0396486,-0.01467702,0.01971884,0.03210417,-0.04575243,-0.04287263,0.0065358,-0.07550107,0.08922167,0.00643617,-0.01845258,0.00826195,0.00971382,0.03680487,-0.17126729,0.04990482,0.00349024,0.05643627,-0.00703986,-0.0266374,0.07662628,0.06846404,0.03145615,-0.00417454,-0.02393582,0.07160121,-0.01372085,0.01804284,0.01125345,-0.00452408,-0.02225327,0.03011654,-0.01915531,-0.00667925,-0.01625192,-0.04746375,-0.02895656,-0.07601254,-0.01216047,-0.01883057,0.00176889,-0.0125922,-0.00329334,-0.08892485,-0.02102066,0.01951381,-0.03154267,-0.00058933,-0.0200306,0.02850128,0.00435617,0.17897633,-0.13457455,-0.00445599,0.04684202,0.03254528,0.01732934,0.04127572,0.02533753,-0.06513223,-0.02857674,0.03642703,0.02694152,-0.03403796,0.036864,-0.04788636,0.00796221,0.00527131,0.03767119,0.03877467,0.00836995,-0.03814875,-0.01250842,-0.0232,0.03882524,-0.09976211,0.10123946,-0.09106182,0.07711721,0.05822335,-0.02879883,0.04777615,0.05024777,0.05301968,-0.08652747,0.00649435,0.00527788,-0.01649118,-0.00497523,0.02746525,-0.05435159,-0.01170165,-0.02784332,-0.12610054,-0.0244802,-0.08679952,-0.05140597,0.0615712,-0.07181311,0.04536735,0.06572194,0.0048522,0.05260203,0.0418287,-0.06700791,-0.01827143,0.0177761,0.0142218,0.04751281,0.02228422,-0.04796823,-0.00246003,0.03183751,-0.03152784,-0.09080409,0.1491401,0.02143164,-0.05744602,-0.00863246,0.02308875,-0.01099808,-0.03898057,0.11496781,-0.05915139,-0.03584892,-0.01416434,0.04939178,-0.05035223,0.02374246,0.05221134,0.01007541,-0.04403431,0.03974077,-0.01486898,0.02668311,0.02879816,0.01650715,-0.01540124,-0.04348592,-0.02633177,0.06244316,-0.0070185,0.0442193,0.0168878,-0.0269678,-0.06239187,-0.04352377,-0.0762869,-0.00493759,0.02282901,-0.00231053,-0.03477938,0.07148668,0.0146532,0.06360748,0.12641239,-0.03229895,-0.02284992,0.03140355,-0.05541455,0.09574058,0.02087629,0.00363191,0.01980757,0.02585541,-0.00571251,-0.0554789,-0.03481577,0.01013916,-0.00565564,0.01760433,0.09010255,0.05596938,0.06373892,0.02536823,-0.20810151,-0.03117826,-0.01353521,-0.01586973,0.0692247,-0.04582469,0.05881282,0.026941,0.02135679,0.05512714,0.07063304,0.00962515,-0.06112964,-0.03193536,0.0310799,-0.02272107,0.02313366,-0.00422738,0.00853139,-0.04075756,0.05011864,-0.00929112,-0.01822171,-0.06813138,0.03534508,-0.04875327,0.12062585,0.03563971,0.02261789,0.0037486,0.04115719,0.01255595,0.04243447,-0.15304425,0.01726027,0.01434108,-0.04402678,-0.01559891,-0.0559808,0.00971042,-0.04914973,-0.02261006,-0.01856585,-0.01887461,-0.04265874,-0.02645116,-0.05452342,0.02943308,-0.0366789,0.07140365,-0.03491092,-0.10914996,-0.03411293,-0.0148493,0.02193265,-0.08702368,-0.11989081,0.00439388,-0.07196233,-0.00421441,0.03259221,0.02504263,-0.00342642,0.00041064,0.00143468,-0.01478038,-0.03636362,-0.02090144,0.0783186,-0.05706921,0.01634671,0.01130773,-0.04265305,-0.0182918,-0.01529253,0.01358598,0.03853123,-0.04172888,-0.07119041,-0.08495151,0.00245446,0.06817301,0.01559407,-0.01293253,0.02974083,0.03919968,0.03735901,0.00307212,0.04220894,-0.0154126,-0.02476438,0.01858285,0.00032522,-0.04286696,0.01763964,0.00509226,-0.24679759,0.05454814,-0.02415144,0.01290018,-0.05256588,0.06845438,-0.01161518,0.02840271,-0.01160413,0.01836407,0.0483847,0.02156541,0.04279559,-0.05605163,-0.02096232,0.05088093,0.09500899,0.0075401,0.0489493,-0.00337171,0.04849917,0.0078207,0.16977789,-0.07980929,0.05832069,0.00215204,-0.00059577,0.01007693,0.09813505,0.01507978,0.08243743,0.03654636,0.04436975,-0.03476636,0.03371979,0.08500414,0.01064776,0.07059862,0.03946207,0.00801223,0.00723267,-0.06241747,-0.04987455,0.01872775,0.09017513,-0.02447802,-0.05750616,-0.03488858,-0.03269202,0.02182891,-0.0669722,0.03791375,0.06426511,-0.00344217,0.04590763,-0.00736821,0.04397813,-0.01560249,-0.04562805,-0.04136072,-0.01928593,-0.07961126,0.02736294,0.13403454,-0.0156624],"tokens":20}},"path":"doctors description/Gynecology and obstetrics/test.md 1.txt#","heading":null,"length":5,"lines":[0,0]} |
@ -0,0 +1,3 @@ |
|||
|
|||
"SmartSource:doctors description/Gynecology and obstetrics/test.md.txt": {"path":"doctors description/Gynecology and obstetrics/test.md.txt","class_name":"SmartSource","history":[{"blocks":{"doctors description/Gynecology and obstetrics/test.md.txt#":true},"mtime":1728467733446,"size":5,"hash":"2cf24dba5fb0a30e26e83b2ac5b9e29e1b161e5c1fa7425e73043362938b9824"}],"embeddings":{"Xenova/bge-small-en-v1.5":{"vec":[-0.02057784,0.0262215,0.05774647,0.02912615,0.02468068,-0.03831747,0.03327567,0.07318383,-0.04068388,-0.02085638,-0.01118761,-0.06790055,-0.00809132,0.06462755,-0.02889983,-0.06043136,0.06619582,-0.05841433,0.0150713,0.06040832,0.03589492,0.01935043,-0.04714068,-0.00061077,0.01182886,-0.01146824,0.00769391,0.00533793,-0.0463683,-0.04800976,-0.07182056,0.00180087,0.03948001,-0.01153199,0.02612972,-0.06186777,0.01201722,0.02306908,-0.07221138,-0.04461109,0.03858981,-0.0576627,0.00354109,0.05884654,0.02086153,-0.05015646,0.00176435,0.02751242,0.02949115,-0.01238292,0.01733839,0.01256644,-0.03876795,-0.0300642,0.0309865,-0.03245261,0.07601182,0.00992215,-0.00978801,0.02468755,-0.00781772,0.0463217,-0.16483985,0.04551237,-0.03339116,0.02383493,-0.01540629,-0.04259021,0.03931186,0.03511487,0.05543627,-0.00046709,-0.04503386,0.06047119,-0.00042786,0.04125424,0.02005556,0.0037828,0.01283461,0.00108323,-0.01282557,0.00945407,0.01005741,-0.03607189,0.00006196,-0.06987403,-0.0297091,0.01557953,0.00083438,-0.02421291,0.00683761,-0.0636921,0.00500435,0.00005328,-0.05204339,-0.03101831,-0.02441542,0.00476158,-0.03371705,0.1559253,-0.13730238,-0.04089122,0.03856428,-0.02227858,0.0126806,0.05728919,0.02693278,-0.02003979,-0.04022701,0.02368739,0.03019121,-0.02687249,0.03259227,-0.02308537,0.04335878,0.01303338,0.01633461,0.0008292,0.00565094,-0.04809288,-0.01470279,-0.02692237,0.01445892,-0.09121937,0.1140035,-0.04967511,0.06536607,0.07236622,-0.03106076,0.07961406,0.04983126,0.07733289,-0.0928085,-0.00810345,-0.01336236,-0.02829716,0.01134696,0.01059795,-0.0771772,-0.01807448,-0.01401963,-0.14889537,-0.05429503,-0.06831881,-0.04723544,0.0388141,-0.05937703,0.06516913,0.06494872,-0.01424257,0.06356962,0.04430554,-0.08681162,-0.02025227,0.0378394,0.02406888,0.06725592,0.05900143,-0.04754088,0.00803275,0.04536396,-0.02531333,-0.04743525,0.13844025,0.01460676,-0.08162364,0.00022902,0.02527961,-0.00972245,-0.02228364,0.12372355,-0.06436478,-0.02580468,0.00848332,0.06667922,-0.05835848,0.05259758,0.07386481,0.00641336,-0.05555765,0.00171384,0.01708336,-0.0046365,0.01682774,-0.00445707,-0.00928242,-0.03833386,-0.0074918,0.04097752,0.00593808,0.06302407,0.01409878,-0.02293777,-0.04685101,-0.05174937,-0.03861221,0.03402641,0.02135495,0.0090495,-0.02977384,0.09291243,0.01970081,0.06276174,0.10276545,-0.00912731,-0.01751173,0.03412149,-0.04781873,0.1195714,0.02422684,-0.01532785,0.02314834,0.05850621,0.00205285,-0.04857951,-0.02765931,-0.00828975,-0.02350515,0.00567403,0.11404508,0.05399852,0.0466348,-0.03586006,-0.2164623,-0.00439376,-0.03125126,0.0059829,0.04689368,-0.06205506,0.05679338,0.02828917,0.04505721,0.06001419,0.10605653,-0.01454472,-0.05425884,-0.03427196,0.00949295,-0.00374823,0.02434931,-0.03854592,0.00255341,-0.04091731,0.03315841,0.00215392,0.02052116,-0.04611648,0.019988,-0.03219292,0.11507915,0.07483567,0.00529317,-0.01727549,0.04408088,-0.00182415,0.05591869,-0.14784926,0.04331199,0.01391037,-0.03143026,-0.01040806,-0.02893178,0.00394978,-0.04040724,-0.05190722,-0.00134876,-0.00680275,-0.02135759,-0.01936449,-0.0768972,0.04210269,-0.06299727,0.08535703,-0.04702454,-0.08112836,-0.02051764,-0.0101538,-0.00479073,-0.07480403,-0.09710053,-0.00545446,-0.05051569,0.01220897,0.03762962,0.023232,-0.02979439,0.02497523,-0.03076313,0.01155007,-0.03228693,-0.02025514,0.08337938,-0.01826883,0.00410198,-0.00085431,-0.07773719,0.00112462,-0.00359053,0.00737608,0.00141432,-0.05223729,-0.05128859,-0.11526265,0.01389299,0.06403758,0.04850981,-0.01118295,0.01145694,0.05762913,0.03534418,-0.0069773,0.05779298,-0.01793399,-0.02647873,0.01092781,-0.01337368,-0.05795772,0.02580124,-0.02623045,-0.2506184,0.06452933,-0.05155507,0.00821015,-0.05445688,0.07433119,-0.01173723,-0.01002365,0.00011042,-0.01576365,0.02970372,0.07004692,0.01936126,-0.04847968,-0.01625064,0.08634889,0.0743976,0.01071053,0.05040799,-0.01692699,-0.00369171,0.00658259,0.16882797,-0.05798182,0.06155577,-0.0071777,0.01970326,0.00724981,0.07657939,0.01113228,0.06194854,0.02401503,0.0409186,-0.05501666,0.02113057,0.06246993,-0.03922067,0.04411783,0.04821692,-0.01971826,-0.01583052,-0.08348557,-0.09156819,0.01720924,0.07697284,-0.00149916,-0.05420235,0.00096353,-0.03397302,0.04451341,-0.05017652,0.03306812,0.03340027,0.00398969,0.03161666,0.00687074,0.03156834,-0.01991738,-0.0700086,-0.04659699,-0.02966098,-0.07384864,0.02944345,0.12996621,-0.03000642],"tokens":19}},"outlinks":[]} |
|||
"SmartBlock:doctors description/Gynecology and obstetrics/test.md.txt#": {"class_name":"SmartBlock","embeddings":{"TaylorAI/bge-micro-v2":{"vec":[0.01155954,0.05731978,0.04880556,0.01249774,0.04135447,0.00994005,0.0412473,0.05221435,-0.03882786,-0.01726178,-0.02268902,-0.05249191,-0.02329034,0.05476465,-0.02233058,-0.04542139,0.06026891,-0.03636506,0.01177323,0.05927198,0.07247,0.03705711,-0.05896412,-0.00266861,0.03519067,0.0092327,0.00535155,0.00267942,-0.0512655,-0.0917794,-0.05020091,0.00366422,0.00273539,-0.00120934,0.02106563,-0.07703993,0.00910256,0.02691532,-0.0768071,-0.02304296,0.04120669,-0.04840004,-0.02141411,0.03178619,-0.01855825,-0.0189818,-0.0349671,0.03628503,0.03090463,-0.01745532,0.01822328,0.0195665,-0.04617697,-0.03592621,0.00534174,-0.06363795,0.09324,-0.00019872,-0.00465008,0.01518187,0.0168332,0.03942795,-0.16871095,0.04794211,0.00058309,0.05154664,-0.01351842,-0.02985952,0.07262608,0.05555657,0.04667402,0.00448892,-0.0281068,0.08824306,-0.01901154,0.01524888,0.00621573,-0.00923112,-0.02350522,0.02265781,-0.00746657,-0.00695103,-0.00272404,-0.03912738,-0.02900494,-0.07060454,-0.01374531,-0.01501521,-0.00497339,-0.00435586,-0.00280011,-0.08606414,-0.02249009,0.00925235,-0.03316291,-0.00074622,-0.01902862,0.02160931,-0.00777898,0.1844925,-0.12571633,-0.00424978,0.04976176,0.02977783,0.011627,0.04030543,0.02232087,-0.04296795,-0.03705854,0.02695994,0.01654769,-0.03153539,0.04477316,-0.04237774,0.00280575,0.00324617,0.0338026,0.03950454,-0.00251792,-0.03511309,-0.0120464,-0.02234083,0.0240847,-0.09712109,0.10309684,-0.08912522,0.06846971,0.05175826,-0.03271769,0.04291455,0.05585824,0.05907449,-0.09279165,0.009441,-0.00424774,-0.02670188,-0.00332331,0.01133718,-0.05000949,-0.01272187,-0.02333005,-0.12743077,-0.03156713,-0.08710778,-0.04812232,0.0591856,-0.09118144,0.05032574,0.07048359,0.0086546,0.05620447,0.03893966,-0.06981318,-0.01918794,0.0168352,0.01361295,0.04446762,0.02910739,-0.05459017,0.00611484,0.03714578,-0.02772846,-0.09440473,0.15158707,0.00791409,-0.05026177,-0.01009399,0.0148324,-0.01032721,-0.03558559,0.11348742,-0.05131928,-0.0385885,-0.01415084,0.04677244,-0.05190308,0.02855534,0.05710442,0.01490365,-0.04610386,0.04362734,-0.01249969,0.01372302,0.04027692,0.018635,-0.00788482,-0.04691926,-0.02052519,0.06349545,-0.00558562,0.03808031,0.02468542,-0.02306086,-0.05251625,-0.0427339,-0.07777014,0.00879674,0.01670527,0.00166294,-0.02738252,0.06175729,0.01654185,0.06374172,0.12214601,-0.03122143,-0.01557287,0.03324613,-0.06788091,0.09958114,0.03095214,-0.00255011,0.01984769,0.03519725,-0.00582238,-0.06126255,-0.0341345,0.00331439,-0.00321545,0.00715796,0.08115332,0.06281946,0.06225157,0.0265531,-0.21375908,-0.03254531,-0.0150554,-0.01167463,0.07390928,-0.04927714,0.03990912,0.03345528,0.02175418,0.05284574,0.08106878,0.01141084,-0.05353404,-0.02991373,0.02968451,-0.01730811,0.01883291,-0.01443956,-0.00690885,-0.03840053,0.0464125,-0.00798502,-0.01506379,-0.06938776,0.03671705,-0.04089655,0.12428121,0.04485526,0.02213608,-0.00416783,0.04637243,0.02287376,0.04273272,-0.16423097,0.02951144,0.01185031,-0.03857903,-0.00043524,-0.04937599,0.01442214,-0.06142669,-0.02760665,-0.00683368,-0.015822,-0.0243939,-0.03241181,-0.0550367,0.03802215,-0.0378634,0.05885591,-0.0268405,-0.09392478,-0.03559566,-0.0202089,0.02346454,-0.07603522,-0.11834557,-0.00638796,-0.077932,0.00387798,0.03521055,0.0255821,-0.01088895,0.00347872,-0.01250316,-0.02054892,-0.02925086,-0.02181321,0.07055801,-0.04715303,0.01606532,0.01357199,-0.04107545,-0.026337,-0.02184546,0.00970382,0.03635728,-0.05212327,-0.06669781,-0.08909813,0.01260054,0.06358334,0.01140745,-0.00818776,0.02920969,0.0276456,0.03117671,-0.00650324,0.04048792,-0.022678,-0.02606307,0.02088486,0.00006715,-0.05171263,0.01891293,-0.0018541,-0.24711099,0.04972614,-0.02417613,0.00343973,-0.05493585,0.06713068,-0.00995014,0.02523083,-0.00817893,0.01837924,0.05231897,0.01977529,0.03798866,-0.06081279,-0.02106434,0.06143779,0.09845299,0.00960454,0.05472512,-0.00021049,0.02993784,0.0088095,0.17749606,-0.08786944,0.06851093,0.00436322,0.00552579,0.01585768,0.09922187,0.01545745,0.08337756,0.04058716,0.0456683,-0.04127176,0.02301879,0.07878534,0.00679343,0.07739097,0.04031621,0.0019701,0.00904335,-0.07452149,-0.0540804,0.02135757,0.08529912,-0.02824605,-0.0586361,-0.03078317,-0.02779162,0.03550804,-0.05223946,0.04038685,0.0551983,-0.00312249,0.04794364,-0.01243903,0.04394219,-0.01999047,-0.04345459,-0.04426704,-0.02363181,-0.07328064,0.02159637,0.13530092,-0.01742365],"tokens":19}},"path":"doctors description/Gynecology and obstetrics/test.md.txt#","heading":null,"length":5,"lines":[0,0]} |
@ -0,0 +1,4 @@ |
|||
|
|||
"SmartSource:note 1.md": {"path":"note 1.md","class_name":"SmartSource","history":[{"blocks":{"note 1.md#":true},"mtime":1725550672647,"size":14,"hash":"4889b6ee6523b59b45a80dca4a9dded2da7909beea6ec4ade8a5b9672c4c62a5"}],"embeddings":{"TaylorAI/bge-micro-v2":{"vec":[-0.11972015,0.00343276,0.06767973,-0.04464169,-0.02574982,-0.01630289,0.03289741,0.0252813,-0.01484189,-0.07554701,0.00731946,0.0041636,0.0734194,-0.02772315,-0.0211079,-0.0528903,0.02811207,-0.03461865,0.01189743,0.00560564,0.01245116,0.00513174,-0.01704526,-0.03080417,0.00871017,0.04428843,0.01018791,-0.07508321,0.00545659,-0.16196863,0.03903058,0.01403507,0.0350733,-0.01415093,0.02935448,0.02070424,-0.02311149,-0.06226822,-0.07280078,0.0093265,0.01374853,0.02329505,-0.03566294,-0.03762161,-0.00069288,-0.07248358,0.02231853,0.01053567,0.07993082,-0.01552908,-0.02208628,-0.01600359,0.02737555,-0.04335187,-0.01954638,-0.01029387,0.0100664,0.0552034,-0.0136809,0.00078008,0.03380496,-0.02805964,-0.19024336,0.08563019,0.03256287,0.07509883,-0.0258858,-0.0201396,0.04907207,0.10678237,-0.03831305,0.03248668,-0.01930417,0.06017713,0.03703886,0.02611905,0.00257131,-0.02817654,0.017371,-0.0286759,-0.06691847,-0.07689546,0.00043462,0.03523752,-0.0256547,-0.00903631,0.00494511,0.02227008,0.05947605,-0.01578671,-0.00486401,-0.01814257,0.01360672,0.03876603,-0.03400184,-0.01395521,0.08154005,0.00263504,-0.02881799,0.24038535,-0.09766419,-0.05985551,-0.00825741,0.01791504,0.01551345,-0.01844866,0.05448408,-0.09022494,-0.04174666,-0.00454994,0.09512971,-0.02721202,0.02111409,-0.02601424,-0.02046637,0.0001381,0.00719991,-0.00033568,0.01255466,-0.02846813,0.02613076,0.01273607,0.04233616,-0.06973344,0.06021421,-0.03871775,0.06640396,0.06906272,-0.01107342,0.01050088,0.01239048,-0.03828868,-0.08639251,-0.00719267,0.03046035,0.04372054,-0.03464483,0.01618712,-0.03813449,0.01117094,-0.07953414,0.00939543,0.06323939,-0.07823923,-0.05873602,0.06702439,0.03553329,0.04971626,-0.06738503,-0.06179578,0.03121265,0.02284144,-0.01354932,-0.00066259,0.0730601,0.02127673,0.09273084,0.0230695,-0.01685552,0.01368137,-0.01660459,0.01319958,-0.0587466,0.10295972,0.05519791,-0.07897856,-0.00706389,0.04627683,0.02349099,-0.01965182,0.02951044,-0.00446054,-0.06867921,-0.02878411,0.00479753,-0.04761137,0.02919202,0.01635412,0.0215933,-0.02166789,0.02896145,0.00608492,0.00420154,0.0067837,0.04170918,-0.01325281,-0.02058638,-0.09238017,0.00596245,0.01877846,0.00076576,0.0231024,-0.02773907,0.00058786,-0.03598827,-0.03385322,-0.09094397,-0.0369685,-0.01020084,-0.07449602,0.08210995,-0.01566911,0.05125238,-0.01865868,-0.00343991,0.04788809,-0.04334205,-0.04395005,0.05340344,0.01334749,-0.03331928,-0.0058199,0.05991365,0.03736642,-0.02440736,-0.03221854,-0.01461889,0.07454428,0.04070008,0.09463239,-0.04417572,0.04312532,-0.00674902,-0.24132988,-0.01898862,-0.03225243,0.036732,0.01714049,-0.01510511,0.03730699,0.03865257,0.03020337,-0.02005823,0.05563902,-0.01125519,-0.02131192,-0.00311281,0.04855467,-0.02299386,-0.02576605,0.00425131,0.01792504,-0.01764846,0.00323825,-0.04363875,0.00814003,-0.04365619,0.0473443,-0.10583943,0.13405022,0.01741871,0.05882313,0.02999391,-0.01404758,0.01907064,0.0038585,-0.12260077,-0.01272675,0.07729373,-0.02808184,0.05320534,0.01465257,-0.01133794,0.00676416,0.04217064,-0.00531699,-0.07156956,-0.05763455,-0.05816095,0.00324776,-0.03264956,-0.03932639,0.05509632,-0.019024,-0.04524953,-0.02777266,0.05817286,0.07690345,-0.0928167,-0.07367957,-0.0000773,0.04269978,-0.02561385,0.03189905,-0.00320812,0.06135037,-0.05683925,0.05654581,0.0371885,-0.03292301,-0.03495986,0.06520057,0.00593828,0.02221243,0.0169182,-0.01410755,-0.00263268,-0.02072458,0.03143643,0.08102953,-0.0621714,-0.02719195,-0.03986799,-0.08231541,-0.02172279,0.01407227,-0.03130965,0.03021608,0.08349092,0.06274298,0.02063136,0.08709392,-0.01452287,-0.00604614,-0.02002122,0.01722782,-0.04887773,0.0443459,0.05553005,-0.20291194,0.00943982,0.01913712,0.027455,-0.05725147,0.02755598,0.03551881,-0.01897413,-0.08465705,0.03044057,-0.0283545,0.01104038,0.04920691,-0.04012696,-0.00284482,0.04674295,0.094731,-0.02295569,0.07875423,-0.08185209,-0.01590292,0.07262693,0.14527626,-0.05511566,0.0048598,0.06659752,0.02997516,0.01830987,0.11964384,0.02120235,0.08626568,-0.02024189,0.05585871,-0.01270504,-0.00470161,0.06789909,-0.0161374,-0.06928593,0.04412903,0.00787941,0.03015566,-0.00716646,-0.04664709,-0.0222609,0.05514427,0.01025921,-0.01603709,-0.05316753,-0.04842157,-0.00667795,-0.06118853,-0.10245597,0.01749651,-0.00727206,0.08872577,0.00084398,-0.00191682,-0.01691369,-0.05498463,-0.05524189,0.03566913,-0.04914176,0.11064447,0.040895,0.03420094],"tokens":7}},"outlinks":[]} |
|||
"SmartBlock:note 1.md#": {"class_name":"SmartBlock","embeddings":{"TaylorAI/bge-micro-v2":{"vec":[-0.11972015,0.00343276,0.06767973,-0.04464169,-0.02574982,-0.01630289,0.03289741,0.0252813,-0.01484189,-0.07554701,0.00731946,0.0041636,0.0734194,-0.02772315,-0.0211079,-0.0528903,0.02811207,-0.03461865,0.01189743,0.00560564,0.01245116,0.00513174,-0.01704526,-0.03080417,0.00871017,0.04428843,0.01018791,-0.07508321,0.00545659,-0.16196863,0.03903058,0.01403507,0.0350733,-0.01415093,0.02935448,0.02070424,-0.02311149,-0.06226822,-0.07280078,0.0093265,0.01374853,0.02329505,-0.03566294,-0.03762161,-0.00069288,-0.07248358,0.02231853,0.01053567,0.07993082,-0.01552908,-0.02208628,-0.01600359,0.02737555,-0.04335187,-0.01954638,-0.01029387,0.0100664,0.0552034,-0.0136809,0.00078008,0.03380496,-0.02805964,-0.19024336,0.08563019,0.03256287,0.07509883,-0.0258858,-0.0201396,0.04907207,0.10678237,-0.03831305,0.03248668,-0.01930417,0.06017713,0.03703886,0.02611905,0.00257131,-0.02817654,0.017371,-0.0286759,-0.06691847,-0.07689546,0.00043462,0.03523752,-0.0256547,-0.00903631,0.00494511,0.02227008,0.05947605,-0.01578671,-0.00486401,-0.01814257,0.01360672,0.03876603,-0.03400184,-0.01395521,0.08154005,0.00263504,-0.02881799,0.24038535,-0.09766419,-0.05985551,-0.00825741,0.01791504,0.01551345,-0.01844866,0.05448408,-0.09022494,-0.04174666,-0.00454994,0.09512971,-0.02721202,0.02111409,-0.02601424,-0.02046637,0.0001381,0.00719991,-0.00033568,0.01255466,-0.02846813,0.02613076,0.01273607,0.04233616,-0.06973344,0.06021421,-0.03871775,0.06640396,0.06906272,-0.01107342,0.01050088,0.01239048,-0.03828868,-0.08639251,-0.00719267,0.03046035,0.04372054,-0.03464483,0.01618712,-0.03813449,0.01117094,-0.07953414,0.00939543,0.06323939,-0.07823923,-0.05873602,0.06702439,0.03553329,0.04971626,-0.06738503,-0.06179578,0.03121265,0.02284144,-0.01354932,-0.00066259,0.0730601,0.02127673,0.09273084,0.0230695,-0.01685552,0.01368137,-0.01660459,0.01319958,-0.0587466,0.10295972,0.05519791,-0.07897856,-0.00706389,0.04627683,0.02349099,-0.01965182,0.02951044,-0.00446054,-0.06867921,-0.02878411,0.00479753,-0.04761137,0.02919202,0.01635412,0.0215933,-0.02166789,0.02896145,0.00608492,0.00420154,0.0067837,0.04170918,-0.01325281,-0.02058638,-0.09238017,0.00596245,0.01877846,0.00076576,0.0231024,-0.02773907,0.00058786,-0.03598827,-0.03385322,-0.09094397,-0.0369685,-0.01020084,-0.07449602,0.08210995,-0.01566911,0.05125238,-0.01865868,-0.00343991,0.04788809,-0.04334205,-0.04395005,0.05340344,0.01334749,-0.03331928,-0.0058199,0.05991365,0.03736642,-0.02440736,-0.03221854,-0.01461889,0.07454428,0.04070008,0.09463239,-0.04417572,0.04312532,-0.00674902,-0.24132988,-0.01898862,-0.03225243,0.036732,0.01714049,-0.01510511,0.03730699,0.03865257,0.03020337,-0.02005823,0.05563902,-0.01125519,-0.02131192,-0.00311281,0.04855467,-0.02299386,-0.02576605,0.00425131,0.01792504,-0.01764846,0.00323825,-0.04363875,0.00814003,-0.04365619,0.0473443,-0.10583943,0.13405022,0.01741871,0.05882313,0.02999391,-0.01404758,0.01907064,0.0038585,-0.12260077,-0.01272675,0.07729373,-0.02808184,0.05320534,0.01465257,-0.01133794,0.00676416,0.04217064,-0.00531699,-0.07156956,-0.05763455,-0.05816095,0.00324776,-0.03264956,-0.03932639,0.05509632,-0.019024,-0.04524953,-0.02777266,0.05817286,0.07690345,-0.0928167,-0.07367957,-0.0000773,0.04269978,-0.02561385,0.03189905,-0.00320812,0.06135037,-0.05683925,0.05654581,0.0371885,-0.03292301,-0.03495986,0.06520057,0.00593828,0.02221243,0.0169182,-0.01410755,-0.00263268,-0.02072458,0.03143643,0.08102953,-0.0621714,-0.02719195,-0.03986799,-0.08231541,-0.02172279,0.01407227,-0.03130965,0.03021608,0.08349092,0.06274298,0.02063136,0.08709392,-0.01452287,-0.00604614,-0.02002122,0.01722782,-0.04887773,0.0443459,0.05553005,-0.20291194,0.00943982,0.01913712,0.027455,-0.05725147,0.02755598,0.03551881,-0.01897413,-0.08465705,0.03044057,-0.0283545,0.01104038,0.04920691,-0.04012696,-0.00284482,0.04674295,0.094731,-0.02295569,0.07875423,-0.08185209,-0.01590292,0.07262693,0.14527626,-0.05511566,0.0048598,0.06659752,0.02997516,0.01830987,0.11964384,0.02120235,0.08626568,-0.02024189,0.05585871,-0.01270504,-0.00470161,0.06789909,-0.0161374,-0.06928593,0.04412903,0.00787941,0.03015566,-0.00716646,-0.04664709,-0.0222609,0.05514427,0.01025921,-0.01603709,-0.05316753,-0.04842157,-0.00667795,-0.06118853,-0.10245597,0.01749651,-0.00727206,0.08872577,0.00084398,-0.00191682,-0.01691369,-0.05498463,-0.05524189,0.03566913,-0.04914176,0.11064447,0.040895,0.03420094],"tokens":7}},"path":"note 1.md#","heading":null,"length":13,"lines":[0,1]} |
|||
"SmartSource:note 1.md": {"path":"note 1.md","class_name":"SmartSource","history":[{"blocks":{"note 1.md#":true},"mtime":1725550672647,"size":14,"hash":"4889b6ee6523b59b45a80dca4a9dded2da7909beea6ec4ade8a5b9672c4c62a5"}],"embeddings":{"Xenova/bge-small-en-v1.5":{"vec":[-0.1366228,0.02472485,0.04294332,-0.04864733,-0.02651015,-0.01627525,0.03571643,0.04794463,-0.00382965,-0.0604211,0.01814477,0.02556616,0.06107818,-0.0326239,-0.01904792,-0.06704997,0.02079176,-0.04606124,0.01929153,0.01337286,0.05834745,0.00036457,-0.0265509,-0.04832743,-0.00436261,0.03758763,0.00072486,-0.07721371,-0.00756593,-0.19735357,0.00106776,0.00304288,0.05223299,-0.04003385,0.04588314,0.03330089,-0.01915979,-0.06999353,-0.07181761,0.00116705,0.02881973,0.01712539,-0.02519005,-0.02813963,-0.01405899,-0.06772088,0.03497162,0.01401804,0.02734276,-0.04054258,-0.05732419,-0.0320527,0.00433696,-0.01160574,-0.01159819,-0.01406437,0.01908626,0.05277806,-0.01480156,-0.00430965,0.01960294,-0.02500716,-0.16149192,0.09872336,0.04320522,0.05208834,-0.04218213,-0.00633068,0.03834578,0.10144953,-0.03101541,0.01829852,-0.04805527,0.06911542,0.02601855,0.01543752,-0.00567422,-0.03148801,0.04326288,-0.04041481,-0.04889158,-0.01389788,0.01575702,0.04284343,-0.01486616,0.00070389,-0.01221711,0.06171996,0.04934946,-0.01427089,0.00438736,0.01306118,-0.01912925,0.0336641,-0.01705124,-0.00910765,0.03571155,0.01760092,-0.01741428,0.15804259,-0.08347927,-0.06708498,0.03179283,0.00704402,0.0350524,-0.00024042,0.06875738,-0.09981966,-0.04244743,-0.00061066,0.08229073,-0.02840548,0.0126251,-0.02942893,-0.02229994,0.01183557,0.03272198,-0.01018312,0.01448333,-0.05296426,0.03580514,-0.00566565,0.03845905,-0.06990977,0.0418053,-0.0521818,0.08431123,0.08594342,-0.02104392,0.02373313,0.00987851,-0.05119633,-0.07772178,-0.00218988,0.01224347,0.02784915,-0.03728549,0.00794584,-0.01447878,0.0431049,-0.03430651,-0.01030444,0.04399853,-0.0894424,-0.05756558,0.08595561,0.0369906,0.06892207,-0.07409015,-0.071973,0.03818468,0.04553812,-0.03150836,-0.00081082,0.04609944,0.03011941,0.07611449,0.04017802,-0.02689823,0.01823402,-0.00467532,-0.01175333,-0.05194781,0.11765055,0.04774594,-0.05005537,0.01215672,0.01859549,0.03391085,-0.03798572,0.04623143,0.00639242,-0.07822724,-0.04488412,0.02333217,-0.03461586,0.02927097,0.03261156,0.01487504,0.0012464,0.01243222,0.00280014,-0.01213055,0.02081933,0.05136018,-0.01443421,-0.01318522,-0.05875702,0.00064245,0.02601607,-0.00352051,-0.01096383,-0.02635673,0.01574752,-0.04401773,-0.03109852,-0.08557843,-0.03885746,-0.046708,-0.06304553,0.09547984,-0.02620165,0.05253398,-0.00903764,0.01356981,0.03813849,-0.0090193,-0.0361807,0.06441785,0.01182419,-0.02992596,0.00795559,0.06289965,0.02557581,0.0028501,-0.0398697,-0.01765789,0.07383259,0.01290257,0.1181877,-0.03184463,0.06019695,0.02097817,-0.25211141,-0.01981155,0.00717904,0.05467089,0.01349606,-0.01123381,0.04189559,0.02528641,0.04039831,-0.03652479,0.04071012,-0.01456115,-0.02225797,0.01367909,0.03349918,-0.02403542,0.00435776,-0.00052897,-0.00416924,-0.01802533,-0.02089914,-0.01350767,-0.0141861,-0.05162151,0.06112542,-0.10269817,0.15028985,-0.00218893,0.0403033,0.02783517,-0.02865264,0.00441775,0.01081623,-0.11185434,0.01799914,0.05623136,-0.03280468,0.06572592,-0.01001742,-0.03502022,-0.00609009,0.03949106,-0.01424933,-0.06889242,-0.05985317,-0.04707721,-0.02705713,-0.02331806,-0.04505813,0.03066533,-0.02653242,-0.04715083,-0.00322205,0.06453261,0.0494462,-0.0985572,-0.07536229,-0.01486895,0.02363519,-0.03199012,0.02175537,-0.00634377,0.0645394,-0.0693351,0.0434698,0.02262173,-0.03220349,-0.03361377,0.07959628,0.0208804,-0.02015152,0.01794971,-0.0034237,-0.04659784,0.02037736,0.0168415,0.09048738,-0.04382293,-0.03735419,-0.04840515,-0.06791119,-0.00115184,0.02666863,-0.03407742,0.05791434,0.0977577,0.04969405,0.00504855,0.06581718,-0.00848261,-0.002991,-0.00113756,-0.00951594,-0.0611061,0.01716065,0.03917453,-0.23270054,-0.02214844,0.0289379,0.04012038,-0.05258502,0.02994557,0.03681819,-0.02891791,-0.08387902,0.02844501,-0.02224024,0.02158917,0.05389634,-0.06073805,0.00765782,0.05651791,0.09754509,-0.03425873,0.05708161,-0.07419705,-0.02058029,0.06335343,0.16357575,-0.04998235,-0.01884273,0.04777524,0.03523308,0.01791651,0.1104689,0.02328111,0.08845237,-0.01946013,0.06649739,0.00702691,-0.01475353,0.06271793,-0.01565952,-0.0585706,0.03139972,-0.0062999,0.00886372,-0.03085337,-0.04477124,-0.01958273,0.08322497,0.02531575,-0.0251257,-0.06096987,-0.02607806,0.00380645,-0.08128972,-0.08391141,0.02748658,-0.01061257,0.08526725,0.01451164,-0.004479,0.00784217,-0.05506001,-0.05049009,0.02697883,-0.03759619,0.12850915,0.07236411,0.00848855],"tokens":7}},"outlinks":[]} |
@ -0,0 +1,4 @@ |
|||
|
|||
"SmartSource:note 2.md": {"path":"note 2.md","class_name":"SmartSource","history":[{"blocks":{"note 2.md#":true},"mtime":1725550910106,"size":24,"hash":"33949e3d7d99b4dc45b35610b5b4e9259b03577fee0fd46d8df73ddd65235577"}],"embeddings":{"TaylorAI/bge-micro-v2":{"vec":[-0.08281958,-0.01395504,0.03224365,-0.05997354,-0.06997694,-0.04256741,0.05152718,0.06057764,0.03924195,-0.0483248,-0.0073949,-0.06552567,0.08650027,0.00955836,0.03249037,-0.03615936,-0.0488763,0.02423731,-0.08334574,0.01187293,0.07441858,-0.05395215,-0.01149086,-0.03403894,0.02000749,0.10542487,-0.01806785,-0.0276635,0.01273268,-0.16637649,-0.01453024,0.10498745,-0.01307506,0.05104756,0.00788594,0.00570537,-0.03290846,-0.01733661,-0.02745527,-0.0152608,0.0371048,0.02092787,-0.00062808,-0.06922973,0.02336872,-0.07025281,0.04071708,-0.00081948,0.02912725,-0.08371452,-0.02265434,0.00517409,-0.01602186,-0.02567257,0.04948913,0.05802275,0.05373352,-0.00695669,0.00041885,0.03484169,0.069613,0.0402656,-0.17616749,0.06681637,-0.00083098,0.02373524,-0.02348591,0.02280103,-0.01888945,0.10838256,0.01635807,0.01588893,-0.03248603,0.0344326,0.03225317,-0.0209551,-0.03206099,-0.03008601,0.01199346,-0.04027309,-0.08422647,-0.03524924,-0.04620476,0.02249409,-0.02288258,0.01997373,-0.00564341,-0.07556565,-0.01833704,0.00687629,-0.04135262,-0.07331585,0.03421474,0.02127029,-0.03284165,0.01426128,0.01987056,0.01063306,-0.06476298,0.13185108,-0.01844631,-0.02508511,0.0952582,0.03313309,0.03190298,-0.00401129,-0.00995733,-0.11163519,-0.00646336,-0.02644468,0.0562098,-0.02098002,-0.04440848,-0.01162691,0.04671879,0.03036402,0.03540251,0.05140304,0.02877275,-0.09103697,0.00700516,0.04845929,0.06169769,0.03156109,-0.0122011,-0.07419371,0.04573147,0.05446674,0.05445119,-0.00222068,-0.002317,-0.0080279,-0.04240109,-0.01575153,-0.02348138,0.01195032,0.02588557,-0.01696663,0.01593464,0.0408354,0.0233383,-0.0936776,-0.0251021,-0.06499388,-0.02425616,0.18245113,0.0584629,0.01464059,-0.08447511,0.0391718,-0.01813965,0.01525865,-0.0042396,-0.06284755,0.06490593,0.02655107,0.06213819,0.01660576,-0.02772468,0.04491144,-0.00022652,-0.05445243,-0.05075321,0.08881012,0.03648252,-0.12866734,-0.00025783,-0.03689929,0.03164778,-0.00767424,0.04457854,0.04808505,-0.0529393,-0.01891381,0.10311745,0.01167166,0.03033476,-0.01978885,-0.00335003,0.00571693,0.02553727,0.01319962,-0.02401484,0.01564077,0.00653739,-0.03533653,-0.00323424,-0.01918508,-0.02630178,0.03153531,-0.02884012,0.05783327,-0.01957767,0.04636626,-0.0549847,-0.03924987,-0.07375618,0.01063393,-0.11439037,-0.01476298,0.07446617,0.00722743,-0.06591942,-0.05556964,-0.00011803,-0.02703587,0.01892368,-0.03441817,-0.04928552,0.00759429,-0.04380202,-0.05219761,0.00678387,0.01251557,0.001889,-0.0409226,-0.00956601,0.06096239,0.03594162,0.07733146,-0.01778538,-0.06641325,0.02934096,-0.23023614,-0.00484214,-0.01660093,-0.00343964,0.00627633,0.00882143,0.02085714,0.01545665,-0.07354102,0.05629684,-0.00824395,-0.00760048,-0.01439186,0.00499024,-0.03983807,0.03100843,0.07678051,0.01203372,0.01140114,0.0027473,-0.00800449,0.03801623,-0.05010724,-0.03913102,0.06745099,-0.00696921,0.18251611,0.04688626,-0.05859735,0.02312463,0.03791906,0.02934127,-0.04337719,-0.09811868,0.03071724,0.01299223,-0.02691507,0.02598587,0.01534027,-0.10248913,-0.02753791,0.02155861,-0.00811872,0.00562994,-0.02242992,-0.04993096,-0.036011,-0.04034175,0.03069802,0.08076797,0.01113318,0.03975741,0.02119804,0.03966592,0.01826737,0.02611032,-0.06871717,0.00325711,-0.02345185,-0.01077565,-0.0343544,0.01263619,0.00944047,-0.05848255,0.03136579,0.01751044,0.00257309,-0.02374269,-0.02716637,0.01762066,0.0198824,0.00910082,-0.0076158,-0.0280802,0.03695643,0.01301354,0.00134575,0.02364162,-0.01519096,-0.00993822,-0.01034612,-0.10578953,0.04653778,0.01362942,-0.01521553,0.00306242,0.05366196,-0.02163416,0.04063065,-0.05539571,-0.02752127,-0.03735802,0.02143268,-0.01617875,0.04998924,-0.02061907,-0.26654112,-0.0117385,0.02309669,0.03312748,-0.05105694,0.05423103,0.06853744,0.00973415,-0.08329064,-0.02360007,0.00160515,0.00934744,0.06997663,0.01751902,-0.04243164,0.00091733,0.0934052,-0.05798734,0.0530433,-0.01919211,0.03840254,0.03009542,0.21253291,0.0491352,-0.01223165,-0.00594244,0.00008263,0.04909968,0.04038737,0.04006634,0.02382788,0.00337798,0.07965712,0.00256142,0.0058822,0.00161883,-0.02556288,-0.00187656,0.05826465,0.00046485,-0.05376971,-0.01827853,-0.09426665,-0.0235812,0.14980102,0.03641389,-0.03324667,-0.01064148,0.01035549,0.05609471,-0.01549692,-0.0528101,-0.00520241,0.05453117,0.03647492,-0.00136458,-0.02695235,-0.00325643,0.02814123,0.0441596,0.00388584,0.00378717,0.0707086,0.0525427,0.04051031],"tokens":13}},"outlinks":[{"title":"note 1","target":"note 1","line":1}]} |
|||
"SmartBlock:note 2.md#": {"class_name":"SmartBlock","embeddings":{"TaylorAI/bge-micro-v2":{"vec":[-0.08281958,-0.01395504,0.03224365,-0.05997354,-0.06997694,-0.04256741,0.05152718,0.06057764,0.03924195,-0.0483248,-0.0073949,-0.06552567,0.08650027,0.00955836,0.03249037,-0.03615936,-0.0488763,0.02423731,-0.08334574,0.01187293,0.07441858,-0.05395215,-0.01149086,-0.03403894,0.02000749,0.10542487,-0.01806785,-0.0276635,0.01273268,-0.16637649,-0.01453024,0.10498745,-0.01307506,0.05104756,0.00788594,0.00570537,-0.03290846,-0.01733661,-0.02745527,-0.0152608,0.0371048,0.02092787,-0.00062808,-0.06922973,0.02336872,-0.07025281,0.04071708,-0.00081948,0.02912725,-0.08371452,-0.02265434,0.00517409,-0.01602186,-0.02567257,0.04948913,0.05802275,0.05373352,-0.00695669,0.00041885,0.03484169,0.069613,0.0402656,-0.17616749,0.06681637,-0.00083098,0.02373524,-0.02348591,0.02280103,-0.01888945,0.10838256,0.01635807,0.01588893,-0.03248603,0.0344326,0.03225317,-0.0209551,-0.03206099,-0.03008601,0.01199346,-0.04027309,-0.08422647,-0.03524924,-0.04620476,0.02249409,-0.02288258,0.01997373,-0.00564341,-0.07556565,-0.01833704,0.00687629,-0.04135262,-0.07331585,0.03421474,0.02127029,-0.03284165,0.01426128,0.01987056,0.01063306,-0.06476298,0.13185108,-0.01844631,-0.02508511,0.0952582,0.03313309,0.03190298,-0.00401129,-0.00995733,-0.11163519,-0.00646336,-0.02644468,0.0562098,-0.02098002,-0.04440848,-0.01162691,0.04671879,0.03036402,0.03540251,0.05140304,0.02877275,-0.09103697,0.00700516,0.04845929,0.06169769,0.03156109,-0.0122011,-0.07419371,0.04573147,0.05446674,0.05445119,-0.00222068,-0.002317,-0.0080279,-0.04240109,-0.01575153,-0.02348138,0.01195032,0.02588557,-0.01696663,0.01593464,0.0408354,0.0233383,-0.0936776,-0.0251021,-0.06499388,-0.02425616,0.18245113,0.0584629,0.01464059,-0.08447511,0.0391718,-0.01813965,0.01525865,-0.0042396,-0.06284755,0.06490593,0.02655107,0.06213819,0.01660576,-0.02772468,0.04491144,-0.00022652,-0.05445243,-0.05075321,0.08881012,0.03648252,-0.12866734,-0.00025783,-0.03689929,0.03164778,-0.00767424,0.04457854,0.04808505,-0.0529393,-0.01891381,0.10311745,0.01167166,0.03033476,-0.01978885,-0.00335003,0.00571693,0.02553727,0.01319962,-0.02401484,0.01564077,0.00653739,-0.03533653,-0.00323424,-0.01918508,-0.02630178,0.03153531,-0.02884012,0.05783327,-0.01957767,0.04636626,-0.0549847,-0.03924987,-0.07375618,0.01063393,-0.11439037,-0.01476298,0.07446617,0.00722743,-0.06591942,-0.05556964,-0.00011803,-0.02703587,0.01892368,-0.03441817,-0.04928552,0.00759429,-0.04380202,-0.05219761,0.00678387,0.01251557,0.001889,-0.0409226,-0.00956601,0.06096239,0.03594162,0.07733146,-0.01778538,-0.06641325,0.02934096,-0.23023614,-0.00484214,-0.01660093,-0.00343964,0.00627633,0.00882143,0.02085714,0.01545665,-0.07354102,0.05629684,-0.00824395,-0.00760048,-0.01439186,0.00499024,-0.03983807,0.03100843,0.07678051,0.01203372,0.01140114,0.0027473,-0.00800449,0.03801623,-0.05010724,-0.03913102,0.06745099,-0.00696921,0.18251611,0.04688626,-0.05859735,0.02312463,0.03791906,0.02934127,-0.04337719,-0.09811868,0.03071724,0.01299223,-0.02691507,0.02598587,0.01534027,-0.10248913,-0.02753791,0.02155861,-0.00811872,0.00562994,-0.02242992,-0.04993096,-0.036011,-0.04034175,0.03069802,0.08076797,0.01113318,0.03975741,0.02119804,0.03966592,0.01826737,0.02611032,-0.06871717,0.00325711,-0.02345185,-0.01077565,-0.0343544,0.01263619,0.00944047,-0.05848255,0.03136579,0.01751044,0.00257309,-0.02374269,-0.02716637,0.01762066,0.0198824,0.00910082,-0.0076158,-0.0280802,0.03695643,0.01301354,0.00134575,0.02364162,-0.01519096,-0.00993822,-0.01034612,-0.10578953,0.04653778,0.01362942,-0.01521553,0.00306242,0.05366196,-0.02163416,0.04063065,-0.05539571,-0.02752127,-0.03735802,0.02143268,-0.01617875,0.04998924,-0.02061907,-0.26654112,-0.0117385,0.02309669,0.03312748,-0.05105694,0.05423103,0.06853744,0.00973415,-0.08329064,-0.02360007,0.00160515,0.00934744,0.06997663,0.01751902,-0.04243164,0.00091733,0.0934052,-0.05798734,0.0530433,-0.01919211,0.03840254,0.03009542,0.21253291,0.0491352,-0.01223165,-0.00594244,0.00008263,0.04909968,0.04038737,0.04006634,0.02382788,0.00337798,0.07965712,0.00256142,0.0058822,0.00161883,-0.02556288,-0.00187656,0.05826465,0.00046485,-0.05376971,-0.01827853,-0.09426665,-0.0235812,0.14980102,0.03641389,-0.03324667,-0.01064148,0.01035549,0.05609471,-0.01549692,-0.0528101,-0.00520241,0.05453117,0.03647492,-0.00136458,-0.02695235,-0.00325643,0.02814123,0.0441596,0.00388584,0.00378717,0.0707086,0.0525427,0.04051031],"tokens":13}},"path":"note 2.md#","heading":null,"length":24,"lines":[0,0]} |
|||
"SmartSource:note 2.md": {"path":"note 2.md","class_name":"SmartSource","history":[{"blocks":{"note 2.md#":true},"mtime":1725550910106,"size":24,"hash":"33949e3d7d99b4dc45b35610b5b4e9259b03577fee0fd46d8df73ddd65235577"}],"embeddings":{"Xenova/bge-small-en-v1.5":{"vec":[-0.0842168,-0.0342136,-0.00085607,-0.04442801,-0.09566717,-0.03662188,0.0332491,0.05581335,0.06451622,-0.03523807,0.00918558,-0.04751325,0.08440884,-0.0098545,0.03843481,-0.04373842,-0.06274512,0.06647155,-0.06895711,-0.00378828,0.09324384,-0.07184928,0.00076905,-0.05250523,0.02141996,0.09291296,-0.02796752,-0.02696937,0.02093857,-0.2318031,-0.03489402,0.06804643,0.03120414,0.06371361,0.01435464,0.02075274,-0.01024859,0.01398633,-0.08420093,0.00261432,0.06025827,0.00473699,-0.02454115,-0.04830486,0.01089768,-0.06478058,0.02630068,0.02335653,0.00553698,-0.0674016,-0.02973418,0.01305298,-0.0242952,-0.00573802,0.05803827,0.02964155,0.06858529,-0.00782014,-0.01387104,0.00989989,0.05500595,-0.00716874,-0.14618742,0.06115676,0.01132041,0.0106183,-0.00646506,-0.00315482,-0.02119466,0.10472439,0.02432332,0.02640967,-0.02922577,0.01222851,0.04190639,-0.02992235,-0.02514754,-0.01559196,0.02585805,-0.03211626,-0.0776617,-0.05927416,-0.014921,0.04252921,-0.01756901,-0.00661029,-0.03278114,-0.05886827,-0.00703282,0.00687252,-0.03556182,-0.04406206,0.01879327,0.01658114,-0.00595026,0.02645939,0.00445736,0.01131918,-0.05672851,0.09368326,-0.03743195,-0.00476231,0.05930185,0.00537752,0.00290289,-0.02078489,0.00915741,-0.11680079,-0.01677595,-0.04122515,0.03406098,-0.03905421,0.02437161,-0.03295114,0.03187713,0.02815974,0.07737055,0.03352889,0.01138356,-0.07297909,-0.00431851,0.01924751,0.04710213,0.02588132,-0.0346549,-0.05024686,-0.00256947,0.07911406,0.0431756,0.06509523,-0.00551064,-0.01479411,-0.00152478,-0.01764861,-0.0257408,0.0229363,0.04836373,-0.02876525,0.02625477,0.02324057,0.02776719,-0.07459424,0.01938634,-0.03632056,0.00672637,0.14961068,0.0165018,0.0365649,-0.05738949,0.03416185,-0.03581721,0.03182854,-0.00576084,-0.05874079,0.05846201,0.01328315,0.07674415,0.0366354,-0.0529001,0.05739573,-0.04548845,-0.04763351,-0.03414752,0.12110814,0.02190768,-0.08283551,0.00808724,-0.0439927,0.03744791,-0.01202964,0.07380112,0.0225303,-0.02432567,0.00238075,0.09426337,-0.00214013,0.00170805,-0.03798352,0.03253588,-0.01006102,-0.01508497,0.00515709,-0.03097226,0.00935571,0.02583595,-0.01363767,-0.01869346,-0.01496787,-0.01365208,0.01239329,-0.04939563,0.01780991,-0.02497259,0.04252649,-0.05724766,-0.07150603,-0.08320584,0.00668796,-0.08006392,-0.00626775,0.08048398,0.04677031,-0.04053709,-0.01432324,-0.02038319,-0.05624168,-0.00827597,-0.01642289,-0.07201332,0.01821305,-0.01851185,-0.04775816,-0.01874455,0.01403474,0.00431062,-0.038964,0.01451252,0.06583357,0.01400176,0.03192719,-0.00711047,-0.07998487,0.00189784,-0.25813997,-0.03229176,0.00465465,-0.00419098,-0.01757512,-0.01224303,0.02170151,-0.01144797,-0.09207913,0.05626842,-0.04051176,-0.0256304,-0.02451864,0.01129478,-0.05172303,0.02606087,0.06668045,0.00843226,0.02779801,0.01779697,-0.01128209,0.03608606,-0.04229927,-0.01489927,0.03519449,-0.00744516,0.1850671,0.06342402,-0.04431967,0.02692169,-0.00619011,-0.00933341,-0.05190341,-0.07304037,0.02707134,0.02076921,-0.00957832,0.03476348,0.03359411,-0.07303388,-0.01277318,0.02638772,-0.02331468,-0.00234907,-0.03977806,-0.03990063,-0.01675716,-0.05753041,0.05608075,0.06705571,0.00171528,0.04062917,0.03924757,0.00730627,0.05128568,0.02101575,-0.0457046,-0.02080025,-0.00366842,-0.00247534,-0.02128152,0.00885231,0.0055048,-0.05450372,0.03005943,0.04835159,-0.01102636,-0.01314909,-0.03014807,0.04066229,0.00301878,-0.00361589,-0.0180748,-0.05573408,0.0527275,0.03604539,0.00421049,0.01847841,-0.01299285,-0.00364859,-0.02231144,-0.083972,0.06311075,0.01769465,-0.00864472,0.00040824,0.07272019,0.02978628,0.02791122,-0.06173819,-0.02710434,0.00477602,0.05788269,-0.00182131,0.04177874,-0.01414678,-0.25821885,-0.00367686,0.00366224,0.00414005,-0.04898554,0.05727159,0.08349828,-0.01891292,-0.110968,-0.020899,0.03164616,0.06661292,0.07617851,0.01869455,-0.05533869,0.02567989,0.12097127,-0.03109433,0.02335566,0.00197458,0.05169003,0.05309107,0.20658228,0.01217465,-0.01288976,-0.03028766,-0.01101097,0.03804807,0.03502295,0.03718841,-0.0092347,0.0087699,0.10968471,0.01422752,0.0299661,0.03628759,-0.02098783,-0.02509788,0.07219345,-0.02388826,-0.06184604,-0.02163767,-0.12088861,-0.0338241,0.12841679,0.02323177,-0.02652324,-0.00881452,0.0393577,0.03779658,-0.01604944,-0.05566997,0.01874081,0.02980664,0.01859599,-0.01005794,-0.08109491,-0.00137978,-0.00426027,0.06154122,-0.01237028,0.02720684,0.08707861,0.03463059,0.05466434],"tokens":13}},"outlinks":[{"title":"note 1","target":"note 1","line":1}]} |
@ -0,0 +1,4 @@ |
|||
|
|||
"SmartSource:note 3.md": {"path":"note 3.md","class_name":"SmartSource","history":[{"blocks":{"note 3.md#":true},"mtime":1725551376742,"size":29,"hash":"b4c743a7584c3419bcb433742d981813f01a4e832be53e11b030960d48c3cce1"}],"embeddings":{"TaylorAI/bge-micro-v2":{"vec":[-0.06650874,-0.03248392,0.01743292,-0.00079317,-0.0267077,-0.01841068,-0.04511778,0.02857301,0.00383181,-0.02191992,0.03106059,-0.0504998,0.04875569,-0.07553945,0.02621479,-0.07747827,-0.04798348,0.00657731,-0.03327977,0.00477729,0.0660515,-0.00642841,0.01848941,0.0156496,0.02773277,0.04152489,-0.01315757,-0.02412509,-0.05587032,-0.16800483,-0.01397952,0.03770013,0.02647397,0.02022053,-0.00089464,0.0258033,-0.06640717,0.03957216,-0.06830099,0.05357219,-0.01454801,0.03291868,0.03615382,-0.02603106,-0.02275674,-0.05601463,-0.01444123,-0.01462896,0.08096908,-0.0636088,-0.04419238,-0.01076386,0.03666524,-0.02080582,0.06626821,-0.00794344,0.07139742,0.02151653,0.05075772,-0.0120178,0.05922004,0.04644324,-0.20105924,0.03071713,0.01918838,0.01541594,0.01623664,-0.00266518,-0.0276266,0.07822429,-0.04440463,0.01282819,-0.04989915,0.06699144,-0.0247174,-0.03289745,-0.02194045,-0.04706017,-0.02377305,-0.03742133,-0.04064328,0.00407945,-0.06615294,0.03291039,-0.04796788,-0.01530216,-0.04661101,-0.06193691,-0.01515457,0.03782317,0.0120407,-0.01977202,0.07593613,0.00321119,-0.08399533,-0.00346819,0.03230316,0.04249232,-0.03623413,0.1232429,-0.01339839,-0.00700003,0.03456024,0.0000878,0.06711801,-0.05462525,-0.00013246,-0.08275352,-0.01195253,-0.01815493,0.01525141,-0.00983848,-0.0058224,-0.02802644,0.03344297,0.02627306,0.03801911,0.02200778,0.03539487,-0.04443599,0.00605953,0.04478184,0.03978064,0.00987976,0.02737141,-0.03872662,0.02815715,0.05466558,0.04648318,0.07781162,-0.00885623,0.00207762,-0.06298321,-0.02078678,-0.05482441,-0.01468687,0.01135455,0.00636101,0.01763643,-0.04975,0.00545907,-0.06092839,-0.04505542,-0.07880105,-0.02307131,0.10548508,-0.02603776,0.02168724,-0.04748024,-0.00042465,0.00467489,0.03504632,-0.01013176,-0.02531174,0.03171268,-0.00563866,0.06094676,0.01372734,-0.02284196,0.02671438,-0.01073057,-0.08729319,-0.04921248,0.09850214,-0.0054298,-0.06843418,0.03644471,-0.0078358,0.00094283,-0.00277337,0.01722887,-0.00108013,-0.02451107,-0.02774132,0.12375055,0.01988963,0.03868248,0.00161326,0.0570751,-0.00991174,-0.0102194,0.01631896,-0.05541034,-0.01255702,0.0438938,-0.01918141,-0.04276251,-0.02554353,-0.00015097,0.08410188,-0.02757863,-0.00135969,-0.05612356,-0.02077389,-0.04562292,-0.04827398,-0.05981278,-0.01159328,-0.04257815,-0.0036686,0.11674074,-0.00487733,-0.02314365,-0.02324362,-0.03750087,0.02792337,0.00877064,-0.00764238,0.01398762,-0.00411415,-0.0113185,0.04574678,0.09182654,0.03599025,-0.04312014,-0.03626431,0.04525055,0.03968323,-0.00923842,0.03921988,0.00216784,-0.05219527,-0.04988146,-0.255413,-0.0061966,0.02809276,-0.02866459,0.04622985,-0.00546515,0.03874391,0.03602678,0.02260017,0.00918528,0.01567537,0.04165459,-0.01803636,-0.02658348,0.03091075,0.06073229,-0.02040437,0.000113,0.01429749,0.00855965,-0.02322174,0.03549021,-0.09390373,-0.0018235,0.10264273,-0.0265621,0.19557224,0.04379967,-0.00720097,0.01797394,0.05703452,0.03644116,-0.01864124,-0.11357602,0.01672416,0.05191058,0.00799824,0.04756915,-0.02467094,-0.04495522,0.01768052,0.05630766,-0.0185528,-0.00663576,-0.00595758,-0.06387729,-0.05241423,-0.02422215,0.08567927,0.07692063,0.02928094,0.00119794,0.01293089,0.02596107,0.05229791,-0.00557418,-0.0733895,0.01094707,-0.0104806,-0.01159607,0.01061496,-0.0295771,0.02410618,-0.04046841,-0.02202467,0.06124107,0.0117109,0.05303261,0.0008932,0.03316933,-0.02468294,0.01672466,0.03759755,0.00687385,0.03770188,0.05031394,-0.02411997,-0.04120807,0.04738097,-0.02230698,-0.01799205,-0.08525664,0.05213595,-0.01288403,-0.01263857,0.01523168,-0.00061946,-0.02279783,0.08190469,-0.04254955,-0.01981429,-0.0571304,0.01922248,-0.02270487,0.13218485,0.00467709,-0.29473642,-0.0070331,-0.03088772,-0.00659323,-0.00365516,0.06889196,-0.0007588,-0.06935829,-0.07281818,-0.02966574,-0.04622062,0.08017851,-0.02471419,-0.00182772,0.01497009,0.01820347,0.09334879,-0.03283516,0.07210657,-0.05963697,0.01935646,0.06349311,0.21754189,0.01022402,-0.03230111,-0.00045644,0.03756782,0.02284891,0.03319012,0.00939412,0.01479581,-0.01272956,0.08194927,0.02500662,0.05410259,0.041875,-0.0359388,-0.02726104,0.04612691,0.02937967,-0.01938931,0.02400729,-0.0908654,-0.01813529,0.1538233,-0.02291087,-0.07648239,-0.0598566,-0.01846317,-0.02291672,-0.01800146,-0.02177783,-0.0837024,0.01203087,0.05925246,0.04570861,-0.01847651,-0.03648091,-0.04714149,0.00289623,0.01285121,-0.03824612,0.07637781,0.05002973,0.04880197],"tokens":21}},"outlinks":[{"title":"note 1","target":"note 1","line":1},{"title":"note 2","target":"note 2","line":1}]} |
|||
"SmartBlock:note 3.md#": {"class_name":"SmartBlock","embeddings":{"TaylorAI/bge-micro-v2":{"vec":[-0.06650874,-0.03248392,0.01743292,-0.00079317,-0.0267077,-0.01841068,-0.04511778,0.02857301,0.00383181,-0.02191992,0.03106059,-0.0504998,0.04875569,-0.07553945,0.02621479,-0.07747827,-0.04798348,0.00657731,-0.03327977,0.00477729,0.0660515,-0.00642841,0.01848941,0.0156496,0.02773277,0.04152489,-0.01315757,-0.02412509,-0.05587032,-0.16800483,-0.01397952,0.03770013,0.02647397,0.02022053,-0.00089464,0.0258033,-0.06640717,0.03957216,-0.06830099,0.05357219,-0.01454801,0.03291868,0.03615382,-0.02603106,-0.02275674,-0.05601463,-0.01444123,-0.01462896,0.08096908,-0.0636088,-0.04419238,-0.01076386,0.03666524,-0.02080582,0.06626821,-0.00794344,0.07139742,0.02151653,0.05075772,-0.0120178,0.05922004,0.04644324,-0.20105924,0.03071713,0.01918838,0.01541594,0.01623664,-0.00266518,-0.0276266,0.07822429,-0.04440463,0.01282819,-0.04989915,0.06699144,-0.0247174,-0.03289745,-0.02194045,-0.04706017,-0.02377305,-0.03742133,-0.04064328,0.00407945,-0.06615294,0.03291039,-0.04796788,-0.01530216,-0.04661101,-0.06193691,-0.01515457,0.03782317,0.0120407,-0.01977202,0.07593613,0.00321119,-0.08399533,-0.00346819,0.03230316,0.04249232,-0.03623413,0.1232429,-0.01339839,-0.00700003,0.03456024,0.0000878,0.06711801,-0.05462525,-0.00013246,-0.08275352,-0.01195253,-0.01815493,0.01525141,-0.00983848,-0.0058224,-0.02802644,0.03344297,0.02627306,0.03801911,0.02200778,0.03539487,-0.04443599,0.00605953,0.04478184,0.03978064,0.00987976,0.02737141,-0.03872662,0.02815715,0.05466558,0.04648318,0.07781162,-0.00885623,0.00207762,-0.06298321,-0.02078678,-0.05482441,-0.01468687,0.01135455,0.00636101,0.01763643,-0.04975,0.00545907,-0.06092839,-0.04505542,-0.07880105,-0.02307131,0.10548508,-0.02603776,0.02168724,-0.04748024,-0.00042465,0.00467489,0.03504632,-0.01013176,-0.02531174,0.03171268,-0.00563866,0.06094676,0.01372734,-0.02284196,0.02671438,-0.01073057,-0.08729319,-0.04921248,0.09850214,-0.0054298,-0.06843418,0.03644471,-0.0078358,0.00094283,-0.00277337,0.01722887,-0.00108013,-0.02451107,-0.02774132,0.12375055,0.01988963,0.03868248,0.00161326,0.0570751,-0.00991174,-0.0102194,0.01631896,-0.05541034,-0.01255702,0.0438938,-0.01918141,-0.04276251,-0.02554353,-0.00015097,0.08410188,-0.02757863,-0.00135969,-0.05612356,-0.02077389,-0.04562292,-0.04827398,-0.05981278,-0.01159328,-0.04257815,-0.0036686,0.11674074,-0.00487733,-0.02314365,-0.02324362,-0.03750087,0.02792337,0.00877064,-0.00764238,0.01398762,-0.00411415,-0.0113185,0.04574678,0.09182654,0.03599025,-0.04312014,-0.03626431,0.04525055,0.03968323,-0.00923842,0.03921988,0.00216784,-0.05219527,-0.04988146,-0.255413,-0.0061966,0.02809276,-0.02866459,0.04622985,-0.00546515,0.03874391,0.03602678,0.02260017,0.00918528,0.01567537,0.04165459,-0.01803636,-0.02658348,0.03091075,0.06073229,-0.02040437,0.000113,0.01429749,0.00855965,-0.02322174,0.03549021,-0.09390373,-0.0018235,0.10264273,-0.0265621,0.19557224,0.04379967,-0.00720097,0.01797394,0.05703452,0.03644116,-0.01864124,-0.11357602,0.01672416,0.05191058,0.00799824,0.04756915,-0.02467094,-0.04495522,0.01768052,0.05630766,-0.0185528,-0.00663576,-0.00595758,-0.06387729,-0.05241423,-0.02422215,0.08567927,0.07692063,0.02928094,0.00119794,0.01293089,0.02596107,0.05229791,-0.00557418,-0.0733895,0.01094707,-0.0104806,-0.01159607,0.01061496,-0.0295771,0.02410618,-0.04046841,-0.02202467,0.06124107,0.0117109,0.05303261,0.0008932,0.03316933,-0.02468294,0.01672466,0.03759755,0.00687385,0.03770188,0.05031394,-0.02411997,-0.04120807,0.04738097,-0.02230698,-0.01799205,-0.08525664,0.05213595,-0.01288403,-0.01263857,0.01523168,-0.00061946,-0.02279783,0.08190469,-0.04254955,-0.01981429,-0.0571304,0.01922248,-0.02270487,0.13218485,0.00467709,-0.29473642,-0.0070331,-0.03088772,-0.00659323,-0.00365516,0.06889196,-0.0007588,-0.06935829,-0.07281818,-0.02966574,-0.04622062,0.08017851,-0.02471419,-0.00182772,0.01497009,0.01820347,0.09334879,-0.03283516,0.07210657,-0.05963697,0.01935646,0.06349311,0.21754189,0.01022402,-0.03230111,-0.00045644,0.03756782,0.02284891,0.03319012,0.00939412,0.01479581,-0.01272956,0.08194927,0.02500662,0.05410259,0.041875,-0.0359388,-0.02726104,0.04612691,0.02937967,-0.01938931,0.02400729,-0.0908654,-0.01813529,0.1538233,-0.02291087,-0.07648239,-0.0598566,-0.01846317,-0.02291672,-0.01800146,-0.02177783,-0.0837024,0.01203087,0.05925246,0.04570861,-0.01847651,-0.03648091,-0.04714149,0.00289623,0.01285121,-0.03824612,0.07637781,0.05002973,0.04880197],"tokens":21}},"path":"note 3.md#","heading":null,"length":28,"lines":[0,1]} |
|||
"SmartSource:note 3.md": {"path":"note 3.md","class_name":"SmartSource","history":[{"blocks":{"note 3.md#":true},"mtime":1725551376742,"size":29,"hash":"b4c743a7584c3419bcb433742d981813f01a4e832be53e11b030960d48c3cce1"}],"embeddings":{"Xenova/bge-small-en-v1.5":{"vec":[-0.07022152,-0.02192441,0.0019209,-0.0108549,-0.04077284,-0.00547245,-0.05286859,0.04140839,0.01703952,-0.01907943,0.04756257,-0.02492312,0.07859735,-0.07386398,0.04209191,-0.06510858,-0.03332257,-0.02933479,-0.00845862,0.02567246,0.0534276,-0.04538364,0.0154916,0.04822297,0.01719388,0.02170503,-0.02079633,-0.04189777,-0.04332686,-0.20651947,-0.00354806,0.00696458,0.04842895,0.04940662,-0.04551703,0.00594975,-0.05264157,0.03732023,-0.07148109,0.04658676,-0.02871657,0.02897071,0.02561991,-0.0350287,-0.01893198,-0.06625937,-0.0031496,0.00005352,0.04391471,-0.08641486,0.00747242,0.00209959,0.05458546,-0.00142937,0.0260139,-0.00300344,0.06041215,-0.00864903,0.07579478,-0.03034064,0.05269497,0.03856928,-0.19329223,0.03109419,-0.02556821,0.01845465,0.01353174,-0.01137005,-0.07235398,0.05159362,-0.0055444,0.01598082,-0.02387642,0.04134558,-0.02343312,-0.02127591,-0.03357813,-0.04329597,-0.02869647,-0.04256284,0.00697648,-0.00739023,-0.08732845,0.04637787,-0.0018275,-0.02421588,-0.06190053,-0.07836973,-0.04301486,0.02713388,0.00765197,0.00905566,0.06733558,0.01923211,-0.0885599,0.01126881,0.01187543,0.04231879,-0.06843727,0.09670752,-0.03536721,-0.00470163,0.03171503,-0.01517847,0.09139638,-0.04399581,0.00397396,-0.08294886,-0.04115574,-0.00802279,-0.00129203,-0.0233298,0.01833021,-0.01362071,0.05290202,0.02944515,0.00858654,0.02964527,0.06282818,-0.05217879,-0.02730935,0.01419629,0.02664934,-0.02969639,0.02171402,-0.03803209,0.03294973,0.03752055,0.02312049,0.0740101,-0.02495839,-0.02427398,-0.0766653,0.00406353,-0.04171122,0.02045407,0.0183658,0.00510008,-0.01597506,-0.05099614,0.01759756,-0.03850647,0.029733,-0.07312888,-0.02012648,0.07874247,-0.02746168,0.03499009,-0.04405297,0.01173035,0.00271516,0.04735858,0.01331249,-0.03396806,0.02659307,0.00236931,0.05440096,0.0044884,-0.03744934,0.04682451,0.01716229,-0.08201013,-0.043177,0.11659016,-0.02092638,-0.12730074,0.05397619,-0.00925917,0.01208291,-0.00259241,0.03437586,-0.00144832,-0.00016536,-0.03320113,0.09893446,0.01721742,0.0247487,-0.00827388,0.05644933,-0.04289314,-0.05259939,-0.01021264,-0.01249631,-0.03810323,0.02028983,-0.00802956,-0.02519555,-0.03272159,0.00882006,0.08485789,-0.03839853,0.01489542,-0.0004677,0.01860006,-0.02306411,-0.04545932,-0.07755234,-0.0030987,-0.05221732,-0.0210812,0.11791022,-0.03115255,0.01714686,-0.0109677,-0.00284671,0.03064133,0.00091983,0.03106195,-0.04291292,-0.00804741,0.01988708,0.03875539,0.10040343,0.0303261,-0.01174747,-0.04572554,0.02790573,0.05092464,-0.03061423,0.02098371,0.02053945,-0.00928532,-0.06567688,-0.23481791,0.0084692,0.01722474,-0.02163483,0.00707406,0.01909382,0.03534754,0.01105043,0.07448839,-0.00160823,0.00335549,0.05551695,-0.00646626,-0.00604382,0.02619493,0.05318356,-0.00482807,0.04779236,-0.00250908,-0.01749311,-0.0300448,0.0579032,-0.09906849,0.037995,0.12679757,-0.028379,0.17433734,0.02987657,-0.00513074,0.03584084,0.03331759,0.04670053,-0.02790336,-0.09107447,0.01279154,0.01664622,0.02448057,0.03790161,-0.03802911,-0.08299409,-0.00463675,0.08075859,-0.01954841,-0.0279157,-0.01846228,-0.05735046,-0.06598251,-0.02871916,0.06257935,0.06066849,0.02431543,0.00496459,0.01543157,0.0138151,0.08391105,0.00232801,-0.04239348,0.00439663,0.00786826,-0.03056011,-0.01690376,-0.02717295,0.02125441,-0.06231626,-0.02360508,0.05974966,0.02232817,0.0530389,-0.01025587,0.02501681,0.01083024,0.01144277,0.00866296,-0.01320628,0.07230656,0.036049,0.00332821,-0.07262678,0.04346882,-0.04022714,-0.02306387,-0.04274869,0.05164512,-0.03127464,0.02210132,0.02419203,0.05463933,-0.01472232,0.05477011,-0.03347858,-0.02156565,-0.03695774,0.02468734,-0.06448048,0.13771272,0.00398199,-0.26275969,0.00103897,-0.04944405,0.00442921,-0.01146221,0.04051028,0.01395592,-0.03522853,-0.10271571,0.00041958,-0.05724534,0.07458868,-0.01175534,0.01487605,0.01234486,0.00192548,0.11206222,-0.04584909,0.06506118,-0.06081075,0.01567394,0.04121712,0.17247105,0.0038707,-0.05261531,0.00411118,0.04744519,0.01133326,0.02157545,0.02481561,0.00244852,-0.01855832,0.08833693,0.02416535,0.04839765,0.04679085,-0.03375024,-0.0354784,0.03591373,0.03516078,-0.01218999,0.00361621,-0.10885868,-0.02912471,0.16388556,-0.02184812,-0.07680495,-0.02897334,0.01153858,-0.00366609,0.00540913,-0.0719882,-0.0902565,-0.01088247,0.06282484,0.03589988,-0.05219299,-0.01902969,-0.03202702,0.04909723,0.01120523,0.00484559,0.07992172,0.05496524,0.07130854],"tokens":21}},"outlinks":[{"title":"note 1","target":"note 1","line":1},{"title":"note 2","target":"note 2","line":1}]} |
@ -0,0 +1,4 @@ |
|||
|
|||
"SmartSource:note 4.md": {"path":"note 4.md","class_name":"SmartSource","history":[{"blocks":{"note 4.md#":true},"mtime":1725551484560,"size":13,"hash":"ba9146e703281028d983225c3eef37e05e2e7aa31bf4224aca8161f819a31b4c"}],"embeddings":{"TaylorAI/bge-micro-v2":{"vec":[-0.092567,0.00213049,0.024817,-0.00398962,-0.04643928,-0.0045081,0.00431151,0.04123235,0.01635132,-0.029765,-0.02360991,-0.03204778,0.03664266,-0.02970478,-0.04087751,-0.03899577,-0.04373729,-0.03870605,-0.04182336,0.03758037,0.07222901,-0.032865,0.02358161,-0.01814921,0.03612806,0.06858709,-0.00574953,-0.01111081,-0.05488083,-0.18619764,0.00875349,0.07200131,0.03681612,0.00498554,-0.01324292,0.03996124,-0.03872238,0.01998795,-0.03959381,0.07405462,0.00548402,0.03627281,-0.02138134,-0.02238845,-0.02973537,-0.06475817,-0.030871,0.0409109,0.08786059,-0.03416705,0.01069827,0.01192064,-0.00767837,-0.01804254,0.06634417,0.00009217,0.02777159,0.01693331,-0.01698881,-0.00143883,0.10211354,0.08349735,-0.19264095,0.0643632,0.03091112,0.01618589,-0.02039992,-0.03155354,-0.02348681,0.07746655,-0.05484203,-0.02541739,-0.03485167,0.02452506,-0.04707861,0.00343263,-0.01550736,-0.0557658,-0.01496566,-0.04190433,-0.04220085,-0.04650186,-0.03252817,0.00097925,0.00273625,0.00632798,-0.0411334,-0.02421394,0.0254539,-0.00334895,-0.03821008,-0.05037677,0.01801093,0.04230617,-0.05385677,-0.00612384,0.05109406,-0.00985728,-0.06548183,0.15207095,-0.03751167,-0.00882167,0.00919337,0.01265995,0.02535535,0.00995568,-0.00345129,-0.05855595,-0.02459821,-0.02976565,0.03830754,-0.03658417,0.041166,-0.04454821,-0.01071071,0.01271866,0.02153251,0.00898647,-0.00204827,-0.06004295,0.00461813,0.02403328,0.04092898,0.01841382,0.027087,-0.0529779,0.06590407,0.10812742,0.04272988,0.07373679,-0.00359551,-0.00159547,-0.01939978,-0.00606875,-0.01545698,0.04125618,0.02467239,-0.03197355,0.06241177,-0.03850585,-0.02260629,-0.06154737,-0.07534382,-0.09093846,-0.01160811,0.11072836,0.00832958,0.00701908,-0.05821793,-0.01500554,0.00786847,0.02248315,-0.01815854,0.00227296,0.04142706,0.03654697,0.04220952,0.02619398,-0.04783997,0.04144341,-0.02927522,-0.05501753,-0.03527262,0.10004091,0.00484403,-0.03457049,0.00233295,0.00538531,0.01584329,-0.00887911,-0.01669814,-0.00364314,-0.0236159,0.04490254,0.1467133,-0.01817892,0.03895871,0.00593542,-0.01219921,-0.00681254,0.02543349,-0.02220825,-0.10872921,-0.04732306,0.03905867,0.00956663,-0.04460127,-0.04890595,0.03438166,0.06941627,-0.05450202,0.02827423,-0.04676813,0.00041273,-0.06675485,-0.04604799,-0.09727772,-0.04217623,-0.02304328,0.01758556,0.10230082,-0.00400618,-0.03710443,-0.01594448,0.05401021,-0.0200029,0.02066443,0.00209386,0.0464861,-0.033872,-0.03425999,0.05945213,0.06841335,0.01751173,-0.01943974,-0.05463351,0.04005271,0.08289167,0.01781301,0.03266805,-0.01004949,-0.08578047,-0.0388695,-0.25772926,-0.0309311,0.02625657,-0.09453782,0.00451706,-0.00559808,0.07166206,0.0261388,0.01570753,-0.01116658,0.02351948,-0.0010057,-0.03311792,-0.04970422,0.01295504,0.07375775,0.04114477,-0.00244582,0.02736302,0.00765271,0.03413834,0.01518018,-0.07229702,-0.03613374,0.05595383,-0.03504261,0.19505608,0.03921499,0.00044415,0.02528517,0.04758957,0.01871016,-0.035704,-0.10482379,0.03347376,0.0260762,-0.01160983,0.05118822,-0.00534911,-0.05415753,-0.0186537,0.04442481,-0.03459795,-0.04113534,-0.03240148,-0.03722454,-0.08899035,-0.04715757,0.02002112,0.04183927,0.04625774,-0.04813173,-0.00345745,0.03102803,0.04706085,-0.04291259,-0.05311254,0.01131813,-0.00838307,0.03059035,-0.01313934,0.00831915,0.03196486,0.00146654,0.00374242,0.02817764,-0.03260577,0.03293911,-0.01362885,-0.01541732,-0.00743818,-0.00128852,0.02607393,0.03539723,0.01968938,-0.00461636,-0.03292014,-0.01307637,-0.05137343,-0.02160943,0.02743554,-0.06144816,0.04134361,-0.03029144,-0.03468301,0.07007322,0.03841203,-0.0099011,0.05947611,-0.0573655,0.01862825,0.02114847,0.02682667,-0.03592822,0.04880935,-0.0113977,-0.288178,-0.00039603,0.01577284,0.0174812,-0.02534562,0.04737523,-0.00533377,-0.03904524,-0.07908217,-0.01452459,-0.08985683,0.0776986,0.01161723,-0.04633351,-0.01435113,0.01896307,0.02706021,-0.00261641,0.01392178,-0.0429265,0.00635854,0.07689624,0.21663666,0.00813856,-0.01596237,0.04512175,0.01206363,0.07507464,0.04239809,0.05260752,0.0104784,-0.02446311,0.09041962,0.05096393,0.03360525,0.07675316,-0.03102464,-0.0335045,0.07616265,0.01843678,-0.05132107,0.00462675,-0.05249694,-0.01526461,0.13920535,0.01557698,-0.04797096,-0.00938908,-0.02066726,0.02654647,-0.02203538,-0.00053092,-0.0156412,0.03495177,0.02033741,0.0705092,-0.01540831,-0.01731274,-0.0027705,0.0252861,0.01100209,0.03318334,0.08056816,0.06286053,0.06899951],"tokens":13}},"outlinks":[{"title":"note 1","target":"note 1","line":1}]} |
|||
"SmartBlock:note 4.md#": {"class_name":"SmartBlock","embeddings":{"TaylorAI/bge-micro-v2":{"vec":[-0.092567,0.00213049,0.024817,-0.00398962,-0.04643928,-0.0045081,0.00431151,0.04123235,0.01635132,-0.029765,-0.02360991,-0.03204778,0.03664266,-0.02970478,-0.04087751,-0.03899577,-0.04373729,-0.03870605,-0.04182336,0.03758037,0.07222901,-0.032865,0.02358161,-0.01814921,0.03612806,0.06858709,-0.00574953,-0.01111081,-0.05488083,-0.18619764,0.00875349,0.07200131,0.03681612,0.00498554,-0.01324292,0.03996124,-0.03872238,0.01998795,-0.03959381,0.07405462,0.00548402,0.03627281,-0.02138134,-0.02238845,-0.02973537,-0.06475817,-0.030871,0.0409109,0.08786059,-0.03416705,0.01069827,0.01192064,-0.00767837,-0.01804254,0.06634417,0.00009217,0.02777159,0.01693331,-0.01698881,-0.00143883,0.10211354,0.08349735,-0.19264095,0.0643632,0.03091112,0.01618589,-0.02039992,-0.03155354,-0.02348681,0.07746655,-0.05484203,-0.02541739,-0.03485167,0.02452506,-0.04707861,0.00343263,-0.01550736,-0.0557658,-0.01496566,-0.04190433,-0.04220085,-0.04650186,-0.03252817,0.00097925,0.00273625,0.00632798,-0.0411334,-0.02421394,0.0254539,-0.00334895,-0.03821008,-0.05037677,0.01801093,0.04230617,-0.05385677,-0.00612384,0.05109406,-0.00985728,-0.06548183,0.15207095,-0.03751167,-0.00882167,0.00919337,0.01265995,0.02535535,0.00995568,-0.00345129,-0.05855595,-0.02459821,-0.02976565,0.03830754,-0.03658417,0.041166,-0.04454821,-0.01071071,0.01271866,0.02153251,0.00898647,-0.00204827,-0.06004295,0.00461813,0.02403328,0.04092898,0.01841382,0.027087,-0.0529779,0.06590407,0.10812742,0.04272988,0.07373679,-0.00359551,-0.00159547,-0.01939978,-0.00606875,-0.01545698,0.04125618,0.02467239,-0.03197355,0.06241177,-0.03850585,-0.02260629,-0.06154737,-0.07534382,-0.09093846,-0.01160811,0.11072836,0.00832958,0.00701908,-0.05821793,-0.01500554,0.00786847,0.02248315,-0.01815854,0.00227296,0.04142706,0.03654697,0.04220952,0.02619398,-0.04783997,0.04144341,-0.02927522,-0.05501753,-0.03527262,0.10004091,0.00484403,-0.03457049,0.00233295,0.00538531,0.01584329,-0.00887911,-0.01669814,-0.00364314,-0.0236159,0.04490254,0.1467133,-0.01817892,0.03895871,0.00593542,-0.01219921,-0.00681254,0.02543349,-0.02220825,-0.10872921,-0.04732306,0.03905867,0.00956663,-0.04460127,-0.04890595,0.03438166,0.06941627,-0.05450202,0.02827423,-0.04676813,0.00041273,-0.06675485,-0.04604799,-0.09727772,-0.04217623,-0.02304328,0.01758556,0.10230082,-0.00400618,-0.03710443,-0.01594448,0.05401021,-0.0200029,0.02066443,0.00209386,0.0464861,-0.033872,-0.03425999,0.05945213,0.06841335,0.01751173,-0.01943974,-0.05463351,0.04005271,0.08289167,0.01781301,0.03266805,-0.01004949,-0.08578047,-0.0388695,-0.25772926,-0.0309311,0.02625657,-0.09453782,0.00451706,-0.00559808,0.07166206,0.0261388,0.01570753,-0.01116658,0.02351948,-0.0010057,-0.03311792,-0.04970422,0.01295504,0.07375775,0.04114477,-0.00244582,0.02736302,0.00765271,0.03413834,0.01518018,-0.07229702,-0.03613374,0.05595383,-0.03504261,0.19505608,0.03921499,0.00044415,0.02528517,0.04758957,0.01871016,-0.035704,-0.10482379,0.03347376,0.0260762,-0.01160983,0.05118822,-0.00534911,-0.05415753,-0.0186537,0.04442481,-0.03459795,-0.04113534,-0.03240148,-0.03722454,-0.08899035,-0.04715757,0.02002112,0.04183927,0.04625774,-0.04813173,-0.00345745,0.03102803,0.04706085,-0.04291259,-0.05311254,0.01131813,-0.00838307,0.03059035,-0.01313934,0.00831915,0.03196486,0.00146654,0.00374242,0.02817764,-0.03260577,0.03293911,-0.01362885,-0.01541732,-0.00743818,-0.00128852,0.02607393,0.03539723,0.01968938,-0.00461636,-0.03292014,-0.01307637,-0.05137343,-0.02160943,0.02743554,-0.06144816,0.04134361,-0.03029144,-0.03468301,0.07007322,0.03841203,-0.0099011,0.05947611,-0.0573655,0.01862825,0.02114847,0.02682667,-0.03592822,0.04880935,-0.0113977,-0.288178,-0.00039603,0.01577284,0.0174812,-0.02534562,0.04737523,-0.00533377,-0.03904524,-0.07908217,-0.01452459,-0.08985683,0.0776986,0.01161723,-0.04633351,-0.01435113,0.01896307,0.02706021,-0.00261641,0.01392178,-0.0429265,0.00635854,0.07689624,0.21663666,0.00813856,-0.01596237,0.04512175,0.01206363,0.07507464,0.04239809,0.05260752,0.0104784,-0.02446311,0.09041962,0.05096393,0.03360525,0.07675316,-0.03102464,-0.0335045,0.07616265,0.01843678,-0.05132107,0.00462675,-0.05249694,-0.01526461,0.13920535,0.01557698,-0.04797096,-0.00938908,-0.02066726,0.02654647,-0.02203538,-0.00053092,-0.0156412,0.03495177,0.02033741,0.0705092,-0.01540831,-0.01731274,-0.0027705,0.0252861,0.01100209,0.03318334,0.08056816,0.06286053,0.06899951],"tokens":13}},"path":"note 4.md#","heading":null,"length":13,"lines":[0,0]} |
|||
"SmartSource:note 4.md": {"path":"note 4.md","class_name":"SmartSource","history":[{"blocks":{"note 4.md#":true},"mtime":1725551484560,"size":13,"hash":"ba9146e703281028d983225c3eef37e05e2e7aa31bf4224aca8161f819a31b4c"}],"embeddings":{"Xenova/bge-small-en-v1.5":{"vec":[-0.02565532,0.05053239,0.01980155,-0.05426347,-0.01097464,-0.00931035,-0.00483238,0.0390119,0.00175554,-0.02789589,-0.03886744,-0.02019614,0.05682705,-0.01938866,-0.03194587,-0.00347116,0.00242314,-0.05989631,-0.0351239,0.03211077,0.07038591,-0.06974596,0.05311731,-0.01062092,0.0284382,0.01313523,-0.01671616,0.00734421,-0.05228073,-0.19043972,-0.00091912,0.0603803,0.05617678,0.02583315,-0.07929654,0.0382984,-0.01506509,0.03082264,-0.0399581,0.02450542,-0.01067341,0.02247077,-0.01489263,0.01093706,-0.01690424,-0.06544627,-0.02529455,0.02901719,0.01656303,-0.05498063,0.0666333,0.0600625,-0.02902329,0.01040331,0.03527892,0.030663,0.04627109,-0.01882517,0.02579287,-0.00919871,0.08797588,0.08364664,-0.15299121,0.06812765,-0.05040061,-0.00710182,0.00216699,-0.02069817,-0.06499561,0.07834086,-0.01971453,-0.02630348,-0.00768296,0.00304785,-0.03605222,0.01784866,0.01180387,-0.0577312,-0.01371206,-0.05234294,-0.01843419,0.00179656,-0.03706287,0.00450012,0.02527746,-0.03756081,-0.07406542,-0.05152254,-0.01263214,-0.01016423,-0.03196427,0.01151689,0.01141747,0.04538465,-0.09694263,-0.02383817,0.03774129,-0.02308225,-0.10428106,0.12593821,-0.08622956,0.00961854,0.04226104,0.01925218,0.08609731,0.01957342,-0.02733831,-0.03944117,-0.04410055,0.00162485,0.04195033,-0.0611217,0.08783774,-0.05292842,-0.00571953,-0.00650285,-0.04899845,-0.01109807,0.02781558,-0.04767826,-0.02805284,0.01667968,0.03533017,-0.05597693,0.05358243,-0.02158817,-0.00307976,0.09375634,0.0395153,0.0312144,-0.03014777,-0.01238912,-0.02542702,-0.00704289,-0.04159258,0.07516518,0.04149064,-0.02935499,0.01786058,-0.0193534,-0.02882782,-0.03152288,-0.00443185,-0.06309589,-0.00562874,0.07349925,-0.03620978,0.01601689,-0.06112991,0.02712975,-0.03054018,0.02718036,0.02948686,0.02093888,0.03668484,0.01351488,0.01409095,0.05838902,-0.09894104,0.06782539,-0.00987732,-0.05217827,-0.06220325,0.08467392,0.03290078,-0.07824337,0.0228864,0.00462389,0.01421247,-0.01650928,-0.01397036,0.04665478,0.00207258,0.01462588,0.12495477,-0.03061708,0.04416416,-0.00634811,-0.01551148,-0.02129259,-0.01527883,-0.00304151,-0.06852853,-0.04321638,0.01704714,-0.02433154,-0.00121744,-0.04347545,0.06872749,0.0440379,-0.0852802,0.01471998,0.0130244,0.01450163,-0.03856927,-0.03185582,-0.12294483,-0.06566752,0.02422184,-0.01786172,0.13431793,-0.01206593,-0.00061325,-0.01353443,0.05636121,-0.01022881,-0.02244976,0.02102957,-0.02162713,-0.01124671,0.01814542,0.0520919,0.06844041,0.03985256,-0.00557417,-0.0708615,0.04762901,0.08467422,-0.00410371,0.01578479,0.00131339,-0.0466354,-0.06517871,-0.23773052,-0.05202678,0.0218334,-0.0966775,-0.03233047,-0.01615889,0.08234254,-0.00801859,0.09412927,0.01884027,0.03142744,0.05295597,-0.05226943,-0.01897224,0.00783251,0.03040281,0.05841863,0.03193245,0.04056539,-0.01554943,0.02283511,0.04101666,-0.10453119,0.00050942,0.07000408,0.00037146,0.16541621,0.05847406,-0.00252045,0.03580221,0.03258654,0.04567397,-0.01808215,-0.07216389,0.04204473,0.03088368,-0.00108886,0.03416327,-0.01262139,-0.08850303,-0.02029813,0.06699242,-0.04164924,-0.09011448,-0.00942202,-0.01891755,-0.11325586,-0.06350294,0.02311214,0.01742397,0.0398354,-0.04815904,-0.01780255,0.01524555,0.10767727,-0.03427054,-0.05257135,0.01270725,-0.01485784,0.04061777,-0.04293399,0.00865192,0.01681078,-0.00346332,0.02021623,-0.00620274,-0.0321438,0.05687701,-0.03507573,0.01175005,-0.01512621,-0.00362462,-0.01582127,0.01782754,0.03270383,-0.02943566,0.00806118,-0.05191476,-0.05701992,-0.02943747,-0.02640122,-0.02202698,0.02883184,-0.0351221,-0.01457208,0.066603,0.07117592,-0.03937126,0.0605581,-0.07470663,0.014592,0.03151198,0.05014599,-0.09724861,0.08673934,-0.00940406,-0.22497399,0.01466316,0.01806336,0.06869971,-0.05397093,0.03918263,-0.01199034,-0.01887727,-0.10138448,0.04310068,-0.09353818,0.06558479,0.03398487,-0.05539052,-0.01195278,-0.01814517,0.03040388,-0.03573861,0.01264738,-0.03012334,0.01336527,0.03713398,0.17123558,-0.0305639,-0.00889925,0.04362317,0.05095512,0.02994154,0.01980739,0.05375752,-0.01578984,0.0141116,0.07618224,0.05156442,0.02951759,0.08291227,-0.01928666,-0.04245829,0.06373272,0.02581565,-0.03634987,0.00366353,-0.06304536,-0.01909916,0.14341059,-0.01268931,-0.05598627,0.01300338,0.00070943,0.02787745,0.03098468,-0.05230325,0.00841784,-0.01641877,-0.02569224,0.03157915,0.00809017,0.00123107,0.01560337,0.06940945,0.02784444,0.04933241,0.06727964,0.04498803,0.06685104],"tokens":21}},"outlinks":[{"title":"note 1","target":"note 1","line":1}]} |
@ -0,0 +1,2 @@ |
|||
|
|||
"SmartSource:note 5.md": {"path":"note 5.md","class_name":"SmartSource","history":[{"blocks":{},"mtime":1727363087836,"size":0,"hash":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"}],"embeddings":{"TaylorAI/bge-micro-v2":{"vec":[-0.10294072,-0.05078865,0.07597972,-0.01969894,-0.04979832,0.01612528,0.06348899,0.08292837,-0.00362493,-0.07319966,0.04955959,0.0199711,-0.03533601,-0.0012959,-0.04656583,-0.0614891,0.00902529,-0.04064222,-0.07853942,0.0255565,0.03840464,-0.06732576,0.02436035,-0.05535797,0.00621709,-0.00236338,-0.02096137,0.01438467,-0.08491883,-0.17311795,-0.06200811,0.05171519,0.0416357,-0.00069782,0.00959467,-0.01654268,-0.0383733,0.05160227,-0.04967976,0.06248167,0.00815397,0.01364385,-0.02770349,-0.03000161,0.01536034,-0.07685762,0.02241036,-0.00973212,0.08393628,-0.02461782,-0.00263037,-0.01212531,-0.07598846,0.02047313,0.01435753,0.02283605,0.10520503,0.00135381,0.0316161,0.02874779,0.07057598,-0.00271135,-0.20505308,0.07020156,0.02447944,0.02855865,0.00367601,-0.00235413,-0.04765533,0.04837023,-0.044213,0.01937781,-0.0420676,0.07083497,0.01050991,0.02642911,-0.02777143,-0.09477731,-0.03081832,-0.01238888,0.00778502,-0.05342082,-0.04526957,0.05509873,-0.02635416,0.020208,-0.01313418,-0.02301352,0.00003769,0.05023095,0.00675678,-0.05598024,-0.04448782,0.02686808,-0.04395702,-0.02169594,0.03724892,-0.05059594,-0.06897286,0.23680724,-0.05924459,0.00744149,0.07285028,0.01725115,0.0495653,-0.02068433,-0.00396803,-0.03064932,-0.00241228,-0.04852165,0.06396124,-0.02749218,0.03629721,-0.05654797,-0.04931071,0.03003172,0.06706438,-0.02635228,-0.02716621,-0.02565582,-0.03030109,0.02084941,0.01004478,0.03681101,0.08741935,-0.01373659,0.01169419,0.07551663,0.01263385,0.05381969,-0.01543874,0.00208108,-0.01226337,-0.07728413,0.07131163,-0.03263101,0.03819543,-0.0170968,0.05267934,-0.09004002,-0.00261976,-0.03198076,0.01069993,-0.07321636,-0.01077558,0.14664425,0.02697022,-0.00690112,-0.00244756,0.01756564,-0.02145321,0.04156678,-0.01804672,0.06426866,0.01031377,0.04300808,0.0388597,-0.0062148,-0.03241587,0.04719687,-0.01879166,-0.018455,-0.0169658,0.08440834,0.01742222,-0.09811217,-0.05832611,-0.00924455,0.01979259,-0.10827658,-0.04642253,0.02712551,-0.02665664,0.04439223,0.12244929,-0.00386941,0.05484929,-0.02410679,-0.00938197,-0.00576145,0.02371989,0.00773305,-0.03143585,0.01287052,-0.04216387,-0.0147276,-0.06675552,-0.06155577,0.04305836,0.05889928,-0.01443562,0.00962922,0.00936207,0.03967912,-0.06149449,-0.08076756,-0.07242228,-0.04380814,-0.01508109,-0.01033272,0.0542107,-0.0116782,-0.00462838,-0.03854026,0.11816853,0.01557913,-0.00643104,-0.00041679,0.06604051,-0.00647796,-0.01733868,0.01519437,0.06036974,0.03319608,-0.01462161,-0.00149967,0.04370208,0.06747669,0.01361958,-0.03124555,0.00636733,0.01717793,-0.00194064,-0.2485784,-0.04968924,-0.003317,-0.02164214,-0.00283368,-0.02378388,0.00691417,-0.02187018,0.01006376,0.01813358,0.02482222,-0.0038817,-0.00774525,0.00243936,0.05360602,0.03068345,-0.02214128,-0.00764213,0.01934799,0.04055932,0.00448561,0.03615696,-0.0557307,-0.04756831,0.10084762,-0.00076255,0.19703284,0.05735163,-0.00799248,0.01756219,0.01785205,0.05369671,-0.00265967,-0.10223231,0.03936169,0.07467981,-0.02454634,0.0204677,-0.00448038,-0.03877698,-0.00745834,0.01149507,-0.0104458,-0.06952122,-0.06254312,-0.05260985,-0.06391871,-0.05749946,0.05406541,-0.02350444,0.03177619,0.03248025,0.04301126,-0.01549634,0.03520568,-0.04623504,-0.03280216,0.04866144,-0.0703309,-0.01117188,-0.01854212,-0.00542913,-0.00778404,-0.03339198,-0.04537526,0.03207894,-0.02036315,0.04712663,0.02255299,0.00569042,0.02444498,-0.02061278,0.01685419,-0.02682997,0.03938089,0.03226618,0.04246587,-0.01036474,-0.00447814,-0.01588709,0.02799643,-0.03209129,0.04041306,-0.02119317,-0.02254998,0.03002395,0.01213511,0.0709023,0.02264826,-0.01454427,0.04860149,-0.02360133,0.02387791,-0.04972176,0.0391352,-0.04385892,-0.25989169,0.03043363,0.01337891,-0.00927741,0.00574757,0.09119559,0.00753181,0.0129349,-0.03918657,0.06113382,-0.06454366,0.05930214,0.02686033,-0.05344303,-0.02955653,0.04887643,0.0260492,-0.06714346,0.00001675,-0.00432707,-0.0142027,0.0478431,0.1670552,-0.02245205,-0.04333688,0.07011794,0.00460118,0.01190151,0.03570798,-0.01010518,0.06279785,-0.06260989,0.08415573,-0.02304473,0.00826105,-0.02988133,-0.00390696,-0.02236903,0.05352399,0.0497404,-0.01460851,0.01380158,-0.06003732,0.03461326,0.06438967,-0.0116192,-0.04300754,-0.02068567,-0.01591664,0.05690287,0.01351938,-0.03230241,0.01137925,-0.01658286,0.04049635,0.02101381,-0.00919697,0.01864879,0.02269207,0.00993178,-0.01101163,-0.04864183,0.0531485,0.00689505,0.05465851],"tokens":5}},"outlinks":[]} |
@ -0,0 +1,4 @@ |
|||
|
|||
"SmartSource:note 6.md": {"path":"note 6.md","class_name":"SmartSource","history":[{"blocks":{"note 6.md#":true},"mtime":1727363740873,"size":12,"hash":"238c7c4dca6d11c722c8d9d79e7fdc924859191b89a1e90b64650ac13cce7c77"}],"embeddings":{},"outlinks":[{"title":"note 3","target":"note 3","line":1}]} |
|||
"SmartBlock:note 6.md#": {"class_name":"SmartBlock","embeddings":{"TaylorAI/bge-micro-v2":{"vec":[-0.06725375,-0.04910536,0.0654983,-0.04328385,-0.00316936,0.0196046,0.02860689,0.04727393,0.02958289,-0.02376019,0.01358642,-0.01007797,-0.05194003,-0.03524467,-0.00278185,-0.03048566,-0.04742627,-0.00503745,-0.06162723,0.01031765,0.07634238,-0.03125061,0.00619525,-0.01813063,0.01575052,0.04461871,0.01231423,-0.00168696,-0.06425115,-0.16282506,-0.03308305,0.04667626,0.08437424,-0.01817156,-0.0061115,0.00966862,-0.07659517,0.03520121,0.00688954,0.02210177,-0.00293675,0.02515105,-0.01298809,0.00880142,-0.02277864,-0.0862571,0.03233857,-0.05554532,0.08906794,-0.06375995,-0.01265709,-0.02568758,0.01754629,0.00594625,0.04808872,0.04787365,0.04956547,0.00763969,0.02710693,-0.00072844,0.0465553,0.06103592,-0.20179246,0.06543699,0.0132318,-0.04161389,0.0146678,-0.00618712,-0.0424365,0.10857833,-0.07398816,0.03689029,-0.05425673,0.06167381,-0.02225128,0.00018679,-0.00444265,-0.02215141,0.00201336,-0.04352631,-0.02608085,-0.04524443,0.01138938,-0.02055686,-0.06401381,-0.01372337,-0.01551683,-0.03538879,-0.02325878,0.043533,-0.02187177,-0.00633248,0.02089894,0.04276327,-0.07455342,-0.04669527,0.03434997,-0.00626555,-0.08060376,0.13968866,-0.02475452,-0.01082512,0.09225592,-0.02104373,0.04009533,-0.05513956,0.00492698,-0.08957165,-0.00660607,-0.06082549,0.03589749,0.00898282,0.01464963,-0.04990163,-0.01716932,0.04182291,0.08278675,-0.01477265,0.01296322,-0.03073344,0.02989712,0.03906454,-0.00367863,-0.00724321,0.02596388,-0.04512262,0.00851908,0.0882536,0.02419638,0.03991022,-0.03226498,0.00325452,-0.04177196,-0.01442521,-0.06661199,0.01587983,0.01468095,-0.04978028,0.00917261,0.010624,-0.00985189,-0.04755432,-0.05007488,-0.11000508,0.0059761,0.11878005,-0.03833114,0.01181197,-0.04164331,0.03003297,-0.02207237,0.04923241,-0.00760214,0.01328869,0.04042008,0.0334398,0.02895647,0.04717461,-0.05212266,0.03583831,-0.0233381,-0.05000128,-0.02721648,0.10707088,0.06285236,-0.07625192,-0.00236726,-0.02044457,0.0110222,-0.0633886,-0.01028734,0.02633508,-0.03097364,-0.00460349,0.11650883,0.01296786,0.08140933,0.0329652,0.07587757,0.00488534,-0.00900589,-0.0346948,-0.05785231,0.01570627,-0.00169667,-0.00285273,0.00431132,-0.02411261,-0.00897423,0.08247848,-0.0235021,0.0419494,-0.04060725,0.00603283,-0.07668487,-0.06341947,-0.04938354,-0.04639467,0.00476152,-0.02141235,0.11260206,-0.01386027,0.00443126,-0.04266792,0.00806816,0.03583894,0.03235302,-0.02503614,0.03076924,0.02760713,-0.08598056,0.03329127,0.11432549,0.04070101,-0.08629024,-0.0322638,0.03302248,0.01201771,0.01625093,-0.00319684,-0.00516824,-0.02386467,-0.01398088,-0.25531778,-0.03959257,0.0655042,-0.02443445,0.01975969,0.00569388,0.04319874,-0.02135048,0.03531256,-0.00063122,-0.01136576,0.02534601,-0.02572261,-0.02291979,-0.00167717,0.05573178,-0.01918154,-0.01707022,-0.03146948,0.06008775,-0.01151523,0.0380685,-0.09551191,-0.03663887,0.08925528,-0.00656456,0.17823035,0.06835485,0.00276221,-0.02964662,0.0784969,0.04526944,-0.01668472,-0.08180341,0.06085998,0.07820961,-0.02944141,0.05121737,0.00771888,-0.03269805,-0.01412585,0.0639364,0.00133934,-0.05002169,-0.01527302,-0.1064365,-0.04622567,-0.05323711,0.05149516,0.03102526,0.0408153,-0.01147099,0.01516396,0.02597317,0.05393584,-0.01944816,-0.06934824,0.01310905,-0.01882531,0.04373015,-0.01910305,-0.00767252,0.0307018,-0.00761545,-0.0044542,0.05168464,0.00038762,0.03508081,0.00771631,-0.002646,-0.058037,-0.01226743,0.00161853,-0.03119336,-0.00819984,-0.02412928,0.0286184,-0.02503667,-0.0103831,-0.01034509,0.0184741,-0.04492275,0.00863069,-0.02375219,-0.01020957,0.05408039,0.02308907,0.00795063,0.06085839,-0.06802233,-0.04607275,0.01299552,0.01298511,-0.01364434,0.12208893,-0.00452899,-0.28374097,-0.0039026,0.02088798,0.01428288,-0.0236773,0.05968872,0.05181177,-0.0308209,-0.05638883,0.05114046,-0.04082199,0.06199059,-0.02851126,-0.00894418,0.04543799,0.01710442,0.03493269,0.01429813,0.06079219,-0.05388406,0.01898816,0.06204936,0.20652582,-0.00706827,-0.03293763,0.05415171,0.04576001,0.04096656,0.03092683,-0.00280796,-0.00027768,-0.04041358,0.0812416,-0.00045946,0.02099791,-0.03520095,-0.03911477,-0.00286536,0.01831803,-0.00460925,-0.02830049,0.03393159,-0.06965198,-0.03792707,0.12905301,0.03892564,-0.03084998,0.00646505,-0.01853906,0.01689961,-0.01379309,-0.0282109,-0.0197513,-0.02011293,0.05574252,0.0094705,0.01688258,-0.03388813,0.0086015,0.06549468,-0.03572112,-0.07462253,0.05195949,0.04778582,0.01169383],"tokens":12}},"path":"note 6.md#","heading":null,"length":12,"lines":[0,0]} |
|||
"SmartSource:note 6.md": {"path":"note 6.md","class_name":"SmartSource","history":[{"blocks":{"note 6.md#":true},"mtime":1727363740873,"size":12,"hash":"238c7c4dca6d11c722c8d9d79e7fdc924859191b89a1e90b64650ac13cce7c77"}],"embeddings":{"Xenova/bge-small-en-v1.5":{"vec":[-0.06632082,-0.01436651,0.05340134,-0.0637766,-0.00409425,0.00282313,0.01260186,0.05876106,0.04534678,-0.00554294,0.01044287,0.00843804,0.01953333,-0.02618773,0.03079622,-0.00437571,0.01966618,-0.02779985,-0.04851611,0.01161373,0.08745902,-0.06812803,-0.00443716,-0.00755005,0.0063774,0.03492557,0.02386468,0.02636095,-0.03455824,-0.17655692,-0.03818947,0.06013202,0.10537794,-0.00878159,-0.04080716,-0.01782404,-0.05830162,0.02265698,0.00104139,-0.00382472,-0.01370537,0.03919137,-0.0282134,-0.00367046,-0.05220402,-0.1120449,0.01826839,-0.03214931,0.04909435,-0.08937684,0.02574447,-0.01899603,0.03672863,0.00049122,0.0230102,0.0471834,0.07578666,-0.01738574,0.04657665,-0.03790741,0.03222087,0.05562459,-0.15630947,0.0643063,-0.03395385,-0.03756839,0.03008297,-0.02852736,-0.06742424,0.06605995,-0.07264186,0.04962976,-0.0298196,0.05383211,-0.02741233,-0.00618555,-0.00906583,-0.00152145,-0.01864568,-0.04193082,-0.01092374,-0.02629252,-0.00236015,-0.00422917,-0.03709997,-0.00990655,-0.04144922,-0.04592585,-0.04583446,0.0446277,-0.03931211,0.02800436,0.03793829,0.03897168,-0.09622564,-0.01422402,0.02734449,-0.02206797,-0.11880567,0.0919557,-0.04490132,-0.00972239,0.10098648,-0.03269323,0.06118838,-0.04427398,-0.01498609,-0.09911338,-0.02933647,-0.03588066,0.0234715,0.00434577,0.01561783,-0.04697084,-0.00050462,0.0197364,0.04679529,-0.01319726,0.03499965,-0.00616184,0.02273489,0.03881977,-0.00624083,-0.01486318,0.01947397,-0.02647386,0.00776603,0.05121461,-0.0006226,0.01833879,-0.06315666,-0.01287548,-0.04921288,0.00206329,-0.07212219,0.06387853,0.00371151,-0.0939116,-0.01806127,0.01610815,-0.01669213,0.00372835,0.03613436,-0.0585188,0.01354703,0.07794003,-0.03062851,0.03229684,-0.02677301,0.04782987,-0.01965646,0.07250823,0.03889073,0.03309735,0.066739,0.03686713,0.0218851,0.08038066,-0.08102839,0.07964721,-0.02742671,-0.02992975,-0.03115459,0.10399256,0.05283686,-0.09388752,0.02483974,-0.01843802,0.00794224,-0.0449288,-0.00698612,0.05157248,-0.01738881,-0.02490114,0.11114062,0.01896005,0.06091776,0.00435579,0.08587889,-0.02920347,-0.07213669,-0.05051484,-0.04511315,-0.01612679,-0.00641969,-0.00101201,0.04257515,-0.00486831,0.04912459,0.08143309,-0.01102499,0.04353168,-0.0045707,0.02661551,-0.07563076,-0.0561898,-0.06807542,-0.01845654,-0.01000871,-0.03799402,0.12114461,-0.00686606,0.03262773,-0.04490526,-0.00096171,0.01165731,0.00072328,0.00353012,-0.04339141,0.03376379,-0.07218134,0.0295182,0.11014634,0.05177924,-0.06159777,-0.03773552,0.01220685,0.03722055,0.001067,-0.0273855,-0.02265701,-0.00058231,-0.05903427,-0.2522189,-0.04539515,0.03957856,-0.01114136,-0.02327126,-0.00030704,0.05367403,-0.04661728,0.09515011,-0.01620096,-0.04858355,0.0280346,-0.00729265,0.01864803,-0.00115523,0.0209648,0.02113113,-0.00011917,-0.03427228,0.01675504,-0.01070311,0.05192453,-0.10589234,-0.01163406,0.07882885,0.01699564,0.17960806,0.05856829,0.01011885,-0.02774819,0.06227246,0.04886497,-0.05905918,-0.06765549,0.05587133,0.07265035,-0.00701613,0.03272525,-0.02721338,-0.04796033,-0.04238228,0.06679047,0.02686998,-0.04968625,-0.02021823,-0.10119656,-0.03673244,-0.07742044,0.0363496,0.01731764,0.03857065,-0.00598513,0.00391885,0.00441195,0.08469229,-0.01202454,-0.0289736,0.00880732,-0.02136057,0.02676708,-0.0224744,-0.00552768,0.0121367,-0.0122747,-0.01953565,0.02511159,0.03255105,0.04066127,-0.02509099,-0.00591177,-0.05215783,0.00347864,-0.02400547,-0.06297557,0.03031572,-0.04120265,0.07109632,-0.06779154,-0.01606599,-0.02024128,-0.00489877,0.00692723,0.01280063,-0.0270036,-0.02138302,0.06116662,0.06756985,-0.01403293,0.02827076,-0.07820176,-0.05607637,-0.00848353,0.03678564,-0.06070626,0.14407133,0.01044042,-0.22151539,0.00336505,-0.00725473,0.0332746,-0.0316006,0.05750986,0.04428278,-0.04650515,-0.09115744,0.09077331,-0.05079814,0.05772201,-0.00661005,-0.01040552,0.04557218,0.00586179,0.07034318,0.0220467,0.05645797,-0.04585737,0.01106381,0.07578819,0.14515118,-0.06729276,-0.0512952,0.04480362,0.04748962,0.03268242,0.02929584,-0.00916754,-0.00172921,-0.02255289,0.06733957,0.01511169,0.0162475,-0.01199711,-0.04297805,-0.02016085,0.02516631,0.0135065,-0.00296173,0.02531924,-0.07200855,-0.05522224,0.12975343,0.0113248,-0.04295414,0.05898494,0.01867655,0.01948305,0.0180207,-0.0706258,-0.02127282,-0.04090258,0.04550564,0.00569467,-0.01974084,-0.0235785,-0.00021149,0.0919504,-0.0033231,-0.01251246,0.05172456,0.05928549,0.02731954],"tokens":12}},"outlinks":[{"title":"note 3","target":"note 3","line":1}]} |
@ -0,0 +1,5 @@ |
|||
|
|||
"SmartSource:s1.md": {"path":"s1.md","class_name":"SmartSource","history":[{"blocks":{"s1.md#":true,"s1.md#{2}":true},"mtime":1727363865795,"size":971,"hash":"eb21b72eb0fa361c965f224a72efb780321c57d1bb7382f041ef7777ffe3d9f8"}],"embeddings":{},"outlinks":[]} |
|||
"SmartBlock:s1.md#": {"class_name":"SmartBlock","embeddings":{"TaylorAI/bge-micro-v2":{"vec":[-0.03884203,0.0165318,0.04768435,-0.04681939,-0.01235211,0.07312984,0.03157269,0.07939022,-0.02914892,-0.01649066,-0.03134665,0.02828207,0.05848813,-0.01151649,0.0213252,-0.01519624,0.02356258,-0.03784573,0.01218297,0.01961008,0.04011161,0.00893462,-0.06300709,-0.04792495,0.00245057,0.05165638,-0.00135642,-0.03783673,-0.01426501,-0.19646358,0.03015266,0.02458294,0.06327154,0.00204111,-0.0293304,-0.0355249,0.02601009,0.00993786,0.00611311,-0.00716434,0.00599433,0.01904956,-0.03669227,-0.00167819,-0.06046254,0.01682727,-0.03190356,-0.05053269,-0.02404066,-0.02201931,0.0644925,-0.02651841,-0.01027591,-0.03487412,0.00458492,-0.00815504,0.0676994,0.03952682,-0.02865948,-0.01714419,0.0358938,-0.01851862,-0.2087526,0.04186288,0.06732868,0.03893663,0.00187537,-0.03023002,0.00070045,0.06023881,-0.03415887,0.01309969,0.0265793,0.11367834,0.06368669,0.07735822,-0.00773911,-0.09436981,0.00046648,0.04080832,-0.0038437,-0.02549298,0.01519951,0.01625344,-0.0432487,-0.03260697,-0.01607888,0.03407121,0.07275196,-0.03770789,-0.00484789,-0.00472748,-0.04003787,0.03922681,-0.02778037,-0.04955947,-0.0092604,-0.01603404,-0.084603,0.14099254,-0.04895149,0.02625378,0.01191067,-0.02682191,0.02847464,0.01692608,0.00968794,-0.05106648,-0.0220159,0.01130201,0.04870981,0.00012594,-0.01279031,0.01894512,0.00382533,0.02503989,-0.04765874,0.0189908,0.08867333,-0.07186267,-0.01770284,0.02918627,0.07920722,-0.08429047,-0.00725554,-0.03526524,0.0920772,0.06637411,-0.03757133,0.02638811,0.02321651,-0.04784051,-0.0823301,-0.0006031,0.00299172,0.00459601,-0.04876425,0.00418282,-0.00286576,0.08545361,0.01864236,0.03308124,0.0797189,-0.09729576,-0.06975488,0.03270098,0.00834001,0.05525118,-0.05573072,-0.00327832,0.0754489,0.00436318,-0.0337272,-0.02673391,-0.02000785,0.00906711,0.03329096,-0.02973023,-0.02932469,0.04809936,-0.00388016,-0.0045162,-0.13086076,0.08419596,-0.04372947,-0.0752499,-0.04698303,0.01140616,0.0436471,-0.01416799,0.02601308,0.00924599,-0.03949427,0.00181515,-0.01176906,0.01087159,-0.05897294,0.03286551,0.0156951,-0.00011785,0.0523027,0.0558272,-0.03779094,-0.0005699,0.02973817,-0.05390478,0.02985924,-0.0308101,0.05399671,0.02428692,-0.00981554,-0.00839927,-0.06354076,0.03313011,-0.02765011,0.02528402,-0.03891487,-0.05625882,-0.019149,-0.03271645,0.01159183,-0.00932336,0.02139232,-0.00353192,0.04041349,0.10083279,0.02372337,-0.06110044,0.06873753,0.03363999,-0.02719042,0.00680884,0.03715957,0.00675262,0.01027291,-0.06349938,0.03415927,0.02797933,0.03777368,0.04947022,0.03283776,0.09485189,-0.04313501,-0.19113445,-0.03564299,0.02680665,0.0562036,0.04488575,-0.01943265,-0.01048107,-0.00630702,0.00251807,0.02335847,0.04822804,-0.01058992,-0.04240816,0.04709469,0.05900357,-0.08561197,-0.00957017,0.00674603,-0.05805801,-0.06444754,-0.01131869,0.03956163,0.0403857,-0.0888845,0.02604333,-0.05281824,0.17810372,-0.0450596,-0.06274309,0.06781521,-0.00775983,-0.01129732,-0.01491596,-0.14448683,0.04524323,0.08729194,-0.01386528,-0.02904925,0.00760528,-0.08706176,-0.00519844,0.03282183,0.01281039,-0.11311805,-0.05455733,-0.05126929,-0.00943725,-0.0155421,-0.08847878,0.04919653,0.01550191,-0.02036447,0.04181585,0.05674779,-0.00588324,-0.08410202,-0.10124818,0.02842826,0.04870039,0.06881294,0.01762828,0.00522225,0.06926842,-0.05746312,0.04965673,-0.01819255,-0.04150478,0.00014642,0.05424149,-0.03461342,-0.03326362,0.11927553,-0.04529769,-0.0157726,0.00670828,0.02269658,0.04331816,-0.02166282,0.03045882,-0.02034257,-0.05074065,0.01238157,0.00224584,-0.0122813,0.03159561,0.02549947,0.00694613,-0.02530667,0.0382119,-0.08258876,-0.01567696,0.00127881,-0.03890981,-0.07681735,-0.01878635,-0.01493984,-0.20059213,0.03479533,-0.02885908,0.10135642,-0.07920765,-0.04478065,0.03386836,0.00265459,-0.04340054,0.00783165,0.0219957,0.00373739,0.01516984,-0.01295906,0.05420884,0.05072321,0.07435836,-0.05307528,0.09061614,-0.146587,0.04893293,0.04643337,0.19033308,-0.06687586,0.02837141,0.01657926,0.04945046,-0.02458573,0.04700248,0.01764949,0.02688225,-0.00664833,0.05627913,-0.03729577,0.00351312,0.0542786,-0.01804272,-0.05897912,-0.00130907,-0.00801456,0.03202126,-0.02905587,0.0234509,-0.01468419,0.12385081,0.01082845,-0.0050003,-0.04626131,-0.03909407,-0.01367166,-0.00388644,-0.04481399,0.02604722,-0.03960662,0.03220067,0.01188591,-0.00959084,0.02090351,-0.02422183,-0.02007252,0.02220636,0.06879389,0.08241318,0.06441883,0.05568593],"tokens":98}},"path":"s1.md#","heading":null,"length":515,"lines":[0,0]} |
|||
"SmartBlock:s1.md#{2}": {"class_name":"SmartBlock","embeddings":{"TaylorAI/bge-micro-v2":{"vec":[0.03654097,0.03022088,0.02145293,-0.00948651,-0.01072362,0.0345658,0.07697413,-0.00300628,0.00884563,-0.00867462,0.02788469,-0.02640402,0.03095995,0.02071856,0.05129088,-0.0083356,-0.00870215,-0.04817979,0.01449054,0.03622878,0.01883195,-0.04074528,0.00515778,-0.01377719,0.00735878,-0.00000458,-0.02295616,-0.0570516,-0.03433312,-0.19302903,0.03655442,-0.04268339,0.04201952,0.00786728,-0.02810334,-0.0038873,0.00791041,0.04098786,-0.04661714,0.03016451,0.01755316,-0.00563388,-0.02420896,0.02517381,-0.02301823,-0.02178785,-0.02712734,0.00600656,-0.04931577,-0.0328754,0.02385463,-0.05806006,0.03065935,0.03002552,-0.01265769,0.01147758,0.06818905,0.03750633,0.00597815,-0.03499694,0.03197716,0.00349329,-0.17364188,0.05038343,0.07853702,0.01180494,-0.03444165,-0.04051277,0.02773812,0.01268298,-0.04878387,-0.00371002,0.03687543,0.02246461,0.05268466,-0.00356483,-0.00383236,-0.04798716,0.02593707,0.01405767,-0.03573561,0.05379387,-0.03109692,-0.00292634,-0.02873205,-0.03342187,0.04512465,-0.00340182,0.03688652,0.02313064,-0.04369216,-0.04904307,-0.04125809,0.0464224,0.00141503,-0.03358696,0.01009225,0.0245357,-0.04651637,0.15250939,-0.04274042,0.06030033,-0.0089398,0.02867991,0.03385916,-0.03733897,0.03445353,-0.10595959,-0.01397459,0.04152068,0.02156856,0.01353667,-0.03094653,-0.04037198,0.02952006,-0.00455196,0.0647743,-0.01695525,0.05181157,-0.03632716,-0.01942592,0.03331144,0.05654347,-0.11288838,0.01485482,-0.07846081,0.09170949,0.09098323,0.03475666,-0.04026801,0.07604274,-0.09016492,-0.08952426,0.02383013,-0.00150967,0.02593337,0.02796149,0.05015024,0.04724864,0.08396135,0.01686544,0.02577851,0.01584818,-0.06048111,-0.0927205,0.09495072,0.00701336,0.01010298,-0.02481049,0.05006359,-0.01972248,0.03719758,-0.06625187,0.01393675,-0.00544693,-0.00592245,-0.03373778,0.01323838,-0.04605471,0.01649051,0.03164368,-0.00929234,-0.05133637,0.01592741,0.03060831,-0.05824915,-0.0474229,0.02272426,0.08209635,-0.04810255,0.03001974,-0.04729792,-0.01888163,-0.00740108,-0.03989106,-0.01878541,-0.10163032,0.03679503,-0.01810941,0.04369951,0.04091156,-0.02060911,0.00259124,0.03920843,-0.02991685,-0.00194409,-0.00836533,-0.04018581,0.04448299,0.03617848,0.0118771,-0.00661515,-0.05367324,-0.01954625,-0.03240939,0.00540963,-0.00556189,-0.02898279,-0.08576181,0.04132376,-0.03937751,0.00051328,0.02360026,0.02757641,0.06752506,0.04641784,0.02002316,-0.03440959,0.12570439,-0.00553783,-0.01434398,0.01619247,-0.02606267,0.00382409,-0.00567502,-0.05455912,0.07819781,0.00910803,0.01453882,0.01179236,-0.01651046,0.02793471,-0.04324435,-0.20021671,-0.05170947,0.07403624,0.02624168,0.0483393,-0.06115921,0.01010279,0.00001793,0.03643996,0.08381187,-0.00246184,0.01568696,-0.09698807,-0.00119673,0.08899629,0.01935598,-0.03604437,0.01199025,-0.05819394,-0.03979237,0.01182938,0.05521544,0.0212791,-0.09800286,0.03074072,0.00585946,0.13397737,0.00541906,-0.03192867,0.04532246,-0.07110909,0.00412144,0.01135205,-0.12632822,0.0247946,0.05082815,0.00250958,-0.03142298,-0.04878192,-0.04815469,-0.02536734,0.00676696,0.01500889,-0.05134831,-0.1096916,-0.00065676,0.0484178,-0.05923954,-0.05409388,-0.011308,0.0432338,-0.04585911,0.02887589,0.05646461,-0.03080787,-0.11194199,-0.11937382,0.01422466,0.00958436,0.05914409,0.00082742,0.01888661,0.04277561,-0.10318861,0.08725585,0.01858096,-0.0243153,-0.00007962,0.01973652,0.01035324,-0.05574978,0.22775465,-0.03895152,-0.01676534,-0.01609688,0.01531543,0.04367363,-0.04888245,-0.0813228,0.00835497,0.06634692,-0.02314769,-0.01567045,0.02507988,0.02135515,0.0297775,0.02940069,-0.07374635,0.05168876,-0.08577395,-0.02646257,0.0188919,0.01576161,-0.1146301,0.02475024,0.04504371,-0.23865777,0.01677327,-0.04250437,0.07432403,-0.05172757,0.04055969,0.04154443,-0.01151232,-0.03950626,0.0031274,-0.00133,0.034995,0.04047002,0.02413891,0.0261307,0.01269072,0.06745444,-0.03155094,0.06963231,-0.07656284,0.03764253,0.03352604,0.19988801,-0.02299877,0.0365766,0.02155332,0.02848604,-0.01915476,0.04968803,0.01668935,0.02763564,-0.00019268,0.01540642,-0.0033853,0.00146164,0.07424691,-0.0483261,-0.04269407,0.02349338,-0.00845663,0.05209227,-0.01124228,0.04368031,-0.03935618,0.14565568,-0.01609006,0.00134359,-0.05515597,-0.00934259,-0.034529,-0.02816815,-0.03598828,0.01200053,-0.01710258,0.04450573,0.0365818,-0.04387602,0.00720562,0.01371428,-0.03672849,-0.00576902,0.01608455,0.01055386,0.08129182,0.01584826],"tokens":88}},"path":"s1.md#{2}","heading":null,"length":453,"lines":[1,2]} |
|||
"SmartSource:s1.md": {"path":"s1.md","class_name":"SmartSource","history":[{"blocks":{"s1.md#":true,"s1.md#{2}":true},"mtime":1727363865795,"size":971,"hash":"eb21b72eb0fa361c965f224a72efb780321c57d1bb7382f041ef7777ffe3d9f8"}],"embeddings":{"Xenova/bge-small-en-v1.5":{"vec":[-0.00703971,0.02995576,0.04143745,-0.02610761,0.01901044,0.06385735,0.0524377,0.08192611,-0.03752732,-0.02575154,-0.02603121,0.00184743,0.07161109,0.00310492,0.01461215,0.0069981,0.02668728,-0.02331435,-0.01097491,0.00195167,0.07227573,0.03414031,-0.05390754,-0.02035723,0.02597819,0.04736805,-0.02399925,-0.0289215,-0.0108319,-0.17253217,0.04414985,0.02977923,0.05133614,-0.01346555,-0.04073324,-0.0575962,0.0066446,0.00337984,0.03874729,0.00013215,-0.02008244,0.01533451,-0.06011626,0.03747497,-0.0253507,0.00904923,-0.05213728,-0.04549994,-0.04643343,-0.02812232,0.02454864,-0.06968833,-0.01034209,-0.0353617,0.00152943,0.01729727,0.10132317,0.02500007,-0.00157272,-0.02314841,0.03949481,-0.01494215,-0.19802694,0.05402035,0.07605994,0.00624357,0.00717961,-0.01828424,-0.00018598,0.04763003,-0.04891621,-0.01142746,0.00514053,0.13352025,0.05920163,0.02523245,0.0240394,-0.09846956,-0.01456934,0.03368667,-0.03713811,0.02736293,0.03351124,0.02231661,-0.01466012,-0.02841411,0.0007276,0.01887994,0.05383528,-0.01502966,0.00948918,-0.03033694,-0.10110138,0.02028628,-0.04378455,-0.04222047,0.01258968,-0.04431283,-0.03959085,0.13351732,-0.07653361,0.0100926,0.01162779,-0.00330983,0.02435943,-0.00585033,0.03045619,-0.03888274,-0.02722026,0.00759048,0.05350581,0.00708402,-0.02897226,0.03959723,0.03065737,0.0142401,-0.04042011,0.02078035,0.06211657,-0.0670513,0.00447023,0.00956628,0.08762706,-0.07964346,0.00411781,-0.05673913,0.05638594,0.06266591,-0.04850095,-0.00928825,0.02458297,-0.05509122,-0.10976514,0.05922032,0.00025308,0.02565743,-0.03783417,0.02801044,0.01599577,0.10982297,0.0291207,0.03299185,0.0515792,-0.10015839,-0.06896692,0.04914458,-0.01470684,0.02850586,-0.00178322,-0.02603996,0.07712892,-0.00119513,-0.04396755,-0.01344363,-0.04388305,-0.01088583,0.03569972,-0.04971162,-0.03678809,0.07035539,0.00421266,-0.02279149,-0.10148208,0.04800199,-0.04205116,-0.05534782,-0.02271807,0.01453207,0.04398132,-0.02968631,0.04020733,0.03745323,-0.06443437,-0.01473347,-0.02166431,0.0081582,-0.05477192,0.05091714,0.04188201,0.0021007,0.02685977,0.06120631,-0.0093562,-0.00864781,0.00582177,-0.03762273,0.02013993,-0.03237136,0.08599589,0.03135373,0.01204221,-0.00990289,-0.08213811,0.0390971,-0.00961529,0.02635121,-0.00478196,-0.06830442,-0.04705473,-0.0244912,0.0440059,-0.01425331,0.01001517,-0.01173915,0.04661788,0.11142849,0.0111466,-0.06556692,0.09888098,0.03144022,-0.02543291,0.00696443,0.03094761,0.01682522,0.04634366,-0.01702965,0.03823141,0.05217253,0.04653697,0.05838053,0.02310174,0.08188891,-0.03191619,-0.14240731,-0.05823719,0.0567686,0.04796377,0.03937311,-0.02112287,-0.01528254,-0.015583,0.00032128,0.02447942,0.01974047,0.00026929,-0.07979693,0.02471389,0.06298707,-0.05299704,-0.02597277,0.02626295,-0.06441188,-0.0447135,-0.04127426,0.0302301,0.02863837,-0.08847714,0.02800041,-0.02648419,0.13698818,-0.03424122,-0.07386621,0.06182671,-0.02568254,-0.01268649,-0.03237988,-0.14751984,0.01217976,0.08537459,-0.01106801,-0.04468449,0.01589125,-0.11890915,-0.02724197,0.01326352,0.02152249,-0.10710106,-0.02442243,-0.01910981,-0.00255095,-0.04171111,-0.06026974,-0.01112998,0.01293637,-0.01937986,0.02725037,0.04988489,-0.04457513,-0.11791126,-0.09461418,0.01251247,0.02519595,0.07875354,-0.03331784,-0.01778821,0.0496443,-0.04939884,0.03476308,-0.01089503,-0.0366337,0.0002903,0.0583552,-0.01272278,-0.04445632,0.14596903,-0.02806161,0.00881996,-0.0105758,0.01276553,0.05570797,-0.03879076,0.0412269,-0.04704681,-0.05407981,0.02666545,-0.00142477,-0.00165409,0.04111515,-0.01285079,0.00854518,-0.09323439,0.04630785,-0.11405268,0.00789921,-0.00067055,-0.0028957,-0.12546179,-0.0135199,-0.00698583,-0.18609287,0.02501631,-0.0432418,0.07176311,-0.09435298,-0.03827278,0.03517127,0.00169923,-0.02649628,0.03322968,-0.01348527,0.0308772,0.02227121,-0.0391171,0.07392862,0.08906496,0.09707527,-0.04468494,0.09436351,-0.13139652,0.03660082,0.04432618,0.16199586,-0.07236514,0.02647338,0.01447906,0.02256928,-0.03462166,0.05513258,0.01756556,0.03647688,-0.02712754,0.05818782,0.01699502,0.00663634,0.03916132,-0.00301028,-0.0687601,-0.00888379,-0.01129809,0.0446047,-0.02136566,0.02750641,0.00538271,0.10427158,0.00200904,-0.00231474,-0.04067478,-0.03086456,0.00761727,-0.00582037,-0.05045159,0.02608407,-0.00450123,0.05287288,-0.01000078,-0.0249285,0.0039185,-0.02140285,-0.00036995,0.01061011,0.05687696,0.06782535,0.08858401,0.0534731],"tokens":181}},"outlinks":[]} |
@ -0,0 +1,6 @@ |
|||
|
|||
"SmartSource:s2.md": {"path":"s2.md","class_name":"SmartSource","history":[{"blocks":{"s2.md#":true,"s2.md#Building a new Product or Feature":true,"s2.md#Identify Market Gaps":true},"mtime":1727364007505,"size":724,"hash":"241bbd0154edce8b56b64b64ea2e917fbb4e049f8966d97a66455bcb230d7555"}],"embeddings":{},"outlinks":[]} |
|||
"SmartBlock:s2.md#": {"class_name":"SmartBlock","embeddings":{"TaylorAI/bge-micro-v2":{"vec":[-0.03777394,-0.01070755,-0.03136785,-0.0543919,0.0354537,0.07454629,0.03491226,0.10313988,-0.04029237,-0.02204331,-0.0371135,-0.01891855,0.05886099,-0.02255263,0.0226525,0.01503129,-0.01560728,-0.00682811,0.00931045,0.00247805,-0.01707967,-0.00288625,-0.02308502,-0.09807266,0.02258691,0.05518744,-0.03873234,-0.02471656,-0.03571967,-0.17849866,-0.01600766,0.01365223,0.03176296,0.00992389,-0.03316183,-0.03900594,0.009391,0.04998338,-0.00360448,-0.02260131,0.02973806,0.01679453,-0.03953119,0.00587112,-0.01079838,-0.07758804,-0.02959305,-0.02353688,-0.06573734,-0.02796032,0.02215776,-0.02486588,0.01372974,0.02824667,0.05044703,0.05689904,0.07179378,-0.0063359,-0.02280822,0.00451947,0.07488556,0.04602396,-0.22037001,0.05121323,0.04470102,0.09536459,-0.06787963,0.03483265,-0.00836537,0.04916641,-0.02369513,-0.00999477,-0.00422729,0.02392263,0.07060087,0.04788703,-0.00599384,-0.1124201,-0.00301433,0.03882283,0.00011076,-0.00617826,-0.01753358,-0.01088683,-0.01792825,-0.03441254,0.03972315,-0.01685347,0.09850339,0.01666506,0.03045251,-0.01121171,-0.02944726,-0.00140892,0.03719259,-0.02814366,0.03060591,0.00490511,0.03884838,0.14226153,-0.02197129,0.02906228,0.09951551,0.00902786,0.04083358,-0.05063947,-0.04694522,0.01041839,-0.02872762,0.01355658,0.02118916,0.03180042,-0.06739441,-0.01668373,0.03311042,0.01145824,-0.02345488,-0.00373811,0.06604473,-0.00656525,-0.03737026,0.02889409,0.05851706,-0.02882809,-0.01186868,-0.05491949,0.05439995,0.04337389,-0.07216566,-0.05053312,0.07992814,-0.01044749,-0.09307908,0.02103289,-0.02233624,-0.01182867,-0.01084534,0.0245646,0.00482647,0.09350728,0.02060841,0.05673724,0.0789526,-0.1125063,-0.00498783,0.11720551,0.04074401,0.01118607,-0.01692045,-0.01034877,-0.00589909,-0.01267715,-0.05258379,-0.02343042,0.00188589,0.02643932,0.05810229,-0.01279421,-0.03977698,0.01446819,0.01851017,-0.03513974,-0.01695698,0.14043006,-0.02191705,-0.08890423,0.00990874,0.04882021,0.05510363,0.00170975,0.00253884,0.01636632,-0.02271293,-0.00882939,0.01009725,-0.01456437,-0.15080668,0.01471184,0.03552048,-0.00232563,0.05922833,0.04277672,-0.03530898,0.00414641,-0.00066153,-0.07135217,-0.00364024,0.01496323,0.00431134,0.02548452,-0.08833677,0.02169629,-0.05227505,0.10140389,-0.00317554,0.02384954,-0.04280695,-0.00742461,0.0127495,-0.04831839,0.05707638,-0.02152879,-0.04519698,-0.02338178,0.01081074,0.07135394,0.06846923,-0.01345681,0.00771392,0.01884575,-0.08985002,0.01710298,0.00904657,-0.02069765,0.01753282,-0.028873,0.08415441,0.04203305,0.0466252,0.06512909,0.04302781,0.08457834,-0.02405458,-0.19941673,-0.04108319,-0.03375106,0.05822352,0.00303175,-0.0310772,-0.03158702,-0.03323066,0.00369746,0.13566183,0.08707631,0.08906954,-0.02995524,0.03748966,-0.00999288,-0.05091837,-0.03587653,-0.02375885,-0.05777097,-0.0417317,-0.02955317,0.03977396,0.01170378,-0.00057395,0.0308826,0.0477747,0.13059372,0.01305874,-0.01731559,-0.03170327,0.01173218,-0.01349619,-0.01570511,-0.03915149,0.0102351,0.05888062,0.0222158,-0.08273002,0.00562005,-0.03903824,-0.02823583,0.03830453,0.02978825,-0.05450491,0.01697136,-0.03300149,0.00958778,-0.04018826,-0.00373848,0.07965257,0.06444953,0.00701382,0.02858233,0.01425971,-0.01989806,-0.01443368,-0.05341481,0.00003547,-0.0147959,-0.01076409,-0.03096886,-0.02060088,0.00080535,-0.07915175,0.05230567,0.00468804,-0.01927975,-0.01936326,-0.05722109,-0.05485261,-0.00433393,0.12841044,-0.03192678,-0.05004339,-0.04577451,0.01843386,0.04356576,-0.01795645,-0.0188959,0.01391898,0.04090875,-0.02067775,0.02799603,0.02267914,0.0385288,0.02295686,-0.00697631,-0.06088943,0.05332262,-0.07720644,-0.02989025,-0.01287897,-0.03158624,-0.05971647,-0.04912383,0.00561337,-0.22112986,-0.0430417,0.00946812,0.04162665,-0.04408367,-0.03248259,0.05562803,-0.05968475,-0.0309157,-0.0287017,0.03260894,0.03186509,-0.00492787,0.02909068,-0.02429556,-0.01069624,0.13238789,-0.04671601,0.0778587,0.01440849,0.0020739,0.0181432,0.24028023,-0.03858528,0.05427441,-0.024871,-0.03697683,-0.01521253,-0.04111961,0.01292809,0.06518757,0.00295925,0.06197821,-0.06454707,-0.02687715,0.06247622,-0.03818534,0.06585563,0.00272545,-0.01606368,-0.02582818,0.00777779,-0.0443255,-0.0253292,0.1154507,-0.01552163,-0.03091979,-0.03569486,-0.06417846,0.03232918,-0.03601488,-0.01469162,-0.07735043,-0.02685801,0.02983732,-0.04029311,-0.04383739,-0.07186686,0.01272896,-0.02518219,0.01651809,0.04771198,-0.03144933,0.04003985,0.05053152],"tokens":43}},"path":"s2.md#","heading":null,"length":215,"lines":[0,1]} |
|||
"SmartBlock:s2.md#Building a new Product or Feature": {"class_name":"SmartBlock","embeddings":{"TaylorAI/bge-micro-v2":{"vec":[-0.05701472,-0.01867271,0.00898519,-0.04875365,0.04790946,0.05719243,0.0215449,0.07443718,-0.01666143,-0.03321736,-0.00635881,-0.0435598,0.05999962,-0.00540792,0.00996646,0.00330001,-0.02226027,0.01577811,-0.01965296,-0.02114476,-0.00665811,-0.02207679,-0.04955082,-0.08261377,0.05268205,0.08345059,-0.07877506,-0.01402343,-0.02839611,-0.20739748,-0.00106989,0.00770817,0.03033392,0.0171035,-0.0095125,-0.02319775,0.0178316,0.02441668,-0.0213991,-0.02122049,0.02959497,0.03209847,-0.03274366,-0.00689138,-0.02546652,-0.0553321,-0.0002764,-0.028773,-0.05136039,-0.04081101,0.03565203,-0.03600145,0.01313879,0.00157224,0.05152561,0.06339814,0.05855285,0.01759576,-0.03326552,0.00762824,0.08545603,0.0280297,-0.21882726,0.04057579,0.03279286,0.08810525,-0.07701613,0.01188516,0.01166703,0.05262924,-0.01411455,0.01465772,-0.01322419,0.01506886,0.06172985,0.06997576,-0.02233872,-0.07371606,0.03123104,0.02937384,0.03890612,-0.01000596,-0.03760359,0.01040034,-0.02611367,-0.02196337,0.00080724,-0.01477013,0.10869679,0.02154513,0.03555057,0.0141615,-0.03245291,0.01280936,0.00446627,-0.02922773,0.00706387,-0.00438319,0.05971418,0.1620235,-0.03040934,0.03152243,0.0402412,-0.00445259,0.03773903,-0.06056637,-0.04240687,-0.02269191,-0.01271762,0.01778802,0.04407522,0.02952365,-0.06724516,-0.01715637,0.03126271,0.02458683,-0.0206099,0.00905751,0.00817635,0.0191258,-0.00900367,0.01407209,0.05713649,-0.0203501,-0.02704232,-0.03670353,0.0648595,0.02013621,-0.05021926,-0.07237337,0.08273549,-0.00318954,-0.09367329,0.00588949,-0.00910519,0.02910161,-0.01508878,-0.01986485,-0.05810254,0.0801345,0.01109763,0.04906202,0.080553,-0.10892384,-0.026002,0.13724154,0.01358896,-0.01134096,-0.02677181,-0.00036708,0.01167887,-0.02556934,-0.05447564,-0.06261469,0.01036201,0.00674385,0.02779731,-0.01555516,-0.02711703,-0.01623768,-0.01587879,0.00107528,-0.04399025,0.14301458,0.0221281,-0.12222368,0.0041854,0.05309045,0.05295233,-0.00031321,0.00216777,0.01109931,-0.02118527,-0.02962681,-0.01044548,-0.03125658,-0.14040832,0.00881317,0.03241505,-0.02577885,0.0752757,0.0237867,-0.04032873,0.02960592,-0.00259469,-0.07752553,-0.02392369,0.01858768,-0.01490346,0.00816015,-0.0835798,0.05633843,-0.05453715,0.08662507,0.0083021,0.05931776,-0.02153532,-0.02187861,0.00575436,-0.01085929,0.02736198,-0.00801279,-0.02959019,-0.00990938,0.01389896,0.0624533,0.03099794,-0.02908054,0.03193012,0.02613105,-0.07053939,0.01081287,-0.02946219,-0.01903858,0.00429802,-0.01575872,0.05282683,0.01429158,0.00196877,0.06597511,0.02164882,0.11772928,-0.02094449,-0.20372009,-0.05195659,-0.0131876,0.03998777,-0.00389036,-0.0038713,-0.02544178,-0.03207685,-0.01408109,0.06127317,0.10676184,0.09380636,-0.00154822,0.02988202,-0.03164681,-0.04714971,-0.00151789,-0.02502333,-0.04137092,0.01541601,-0.00754305,0.03610667,0.00106215,-0.03876397,0.02488646,0.03968002,0.14233649,0.04844705,0.00701614,-0.00877817,0.01549125,-0.01732887,-0.02469322,-0.02631291,-0.01022247,0.05196939,0.05313461,-0.06527186,-0.02775986,-0.057955,-0.0354332,0.02497486,0.04685332,-0.04992488,0.01927254,-0.00562308,-0.01022851,0.00806029,0.03147138,0.05240212,0.06203612,0.02992656,0.06470123,0.0121743,-0.00968488,-0.02652106,-0.06137204,0.03840499,-0.00224312,-0.04119176,-0.01226649,-0.03285646,-0.00286743,-0.03441855,0.08117592,0.01826929,-0.03671875,-0.01399103,-0.04509765,-0.07968325,0.00112923,0.11045815,-0.03681776,-0.04260805,-0.03966973,0.00449,0.05423015,-0.05375889,-0.03293241,0.01197028,0.04130738,-0.06430206,0.03988333,0.01467754,0.03121955,0.01397684,0.05005969,-0.05127609,0.05911449,-0.06080876,-0.0086666,0.0070907,-0.03642174,-0.08078867,-0.02564047,-0.007804,-0.2388602,-0.00759593,0.01076196,0.02406675,-0.05415438,0.00895832,0.0704712,-0.03310516,-0.04442747,-0.01300798,0.03016355,-0.00557483,0.00011395,0.02898486,-0.03436931,0.0270325,0.16721275,-0.02410321,0.05338088,0.04219199,-0.00026277,0.02437577,0.23143052,-0.04118545,0.06761868,-0.02757996,-0.06029037,0.01720436,-0.04467806,0.02360105,0.05134219,0.0029699,0.06605884,-0.04214827,-0.05190957,0.0745877,-0.02147309,0.00778624,-0.0081526,-0.02370119,-0.00457692,-0.01143305,-0.03832862,-0.0375584,0.13223867,-0.03567594,0.00462551,-0.06967389,-0.07616632,0.01589692,-0.05789017,-0.01702771,-0.04728087,-0.00281228,0.04253082,-0.01457013,-0.01365479,-0.05609886,0.01863723,-0.03906244,0.00994621,0.03255914,-0.01067336,0.05133951,0.0339287],"tokens":42}},"path":"s2.md#Building a new Product or Feature","heading":"Building a new Product or Feature","length":172,"lines":[2,5]} |
|||
"SmartBlock:s2.md#Identify Market Gaps": {"class_name":"SmartBlock","embeddings":{"TaylorAI/bge-micro-v2":{"vec":[0.00111281,-0.04846625,0.00120803,-0.04399662,0.08858684,0.04859252,-0.00575639,0.09327815,0.01731937,-0.01879199,0.01096475,0.00908929,0.04816002,-0.01541537,0.00849386,0.02081325,-0.01953102,0.03955485,-0.07621229,-0.00221574,-0.03829144,-0.04250846,-0.01006183,-0.05474053,0.06852353,0.06147283,-0.0255082,-0.04146591,-0.03326095,-0.19561663,-0.00118763,0.04559032,0.04040951,0.00372961,0.00505282,-0.04350455,-0.01555969,0.03095998,0.01065306,-0.0168877,-0.01105245,0.02541286,-0.02154742,-0.01048185,-0.06481817,-0.02801741,-0.01911844,-0.04075701,-0.04610829,-0.0397515,-0.01155147,-0.05506258,0.00369897,0.0512521,0.00902945,0.06495748,0.02068335,0.00981487,-0.0238537,0.00644243,0.08631903,0.01846425,-0.1947618,0.02502681,0.07854092,0.05558514,-0.06058772,0.02003842,-0.01948057,0.07530424,-0.0178629,0.0227051,-0.00214743,0.0331322,0.04179291,0.01501783,0.01057221,-0.0612465,0.04238467,0.0180578,0.00120614,0.00477138,-0.03890711,0.00835951,-0.06913364,-0.04130349,0.06528389,-0.05329429,0.06025274,-0.0079797,0.02253848,-0.00850194,-0.06915724,0.02049773,-0.03371077,-0.01222752,-0.0020502,0.00627998,0.0299099,0.15469156,-0.02303799,0.06322137,0.02117434,-0.04374401,0.03244513,-0.00655887,-0.11279376,-0.0036416,-0.02080557,0.02917547,0.04460097,0.05636941,-0.06117731,-0.04456622,0.02109731,0.02688674,-0.022532,0.00978127,0.06916735,-0.00805411,-0.06693961,0.04894986,0.05265975,-0.02481303,-0.01650601,-0.00021881,0.0545272,0.02117661,-0.05835423,-0.02508856,0.05646783,-0.07609489,-0.09575783,0.03383728,-0.00407324,-0.02018369,-0.05568954,0.01260823,-0.03392622,0.06502619,-0.00748832,0.02531305,0.10071136,-0.13955855,-0.01200872,0.14394604,0.01441908,0.03718001,-0.04649424,-0.06956648,0.00337414,-0.00838253,-0.08332167,-0.04108975,0.04483223,0.0016383,0.05045322,0.01094499,-0.02467026,0.00757806,0.01377056,-0.03428989,-0.06717838,0.16734101,0.00079993,-0.05969552,-0.03520511,0.06712231,0.01257488,0.01658335,0.00407511,0.07434537,-0.00261042,-0.00527314,0.00194403,-0.05636474,-0.14361978,0.01663624,0.01140787,0.01922295,-0.00613687,0.02917646,-0.02695318,0.01141363,0.00341652,-0.09643203,-0.02095782,0.01052289,-0.01768376,0.05919395,-0.08962234,0.05074637,-0.04505751,0.09121021,-0.01355889,0.02930271,-0.05506946,-0.029468,0.01869302,-0.04234591,0.01785319,0.01061206,-0.02561574,0.02621461,0.01481616,0.07594243,0.05140154,-0.02710716,0.06733052,0.04532411,-0.02875635,-0.00045663,0.00058596,0.00068054,-0.01650423,-0.00262556,0.07540216,0.00317998,0.01544379,0.08389536,0.00499773,0.1224389,-0.05282576,-0.19916117,-0.02531904,0.00225478,0.05916229,0.00584144,-0.01007785,0.00168154,0.00201672,-0.03024392,0.09012614,0.06778674,0.05754837,-0.0359348,0.04752666,0.00303026,-0.03576478,-0.01500352,-0.04349883,-0.07340154,0.02430925,-0.0516997,0.04709845,-0.02132702,-0.02286223,0.07636811,0.04127048,0.14465205,-0.00789614,-0.04655838,-0.01776871,-0.0351778,-0.03508148,-0.02444329,-0.00176377,-0.00524176,0.04262141,0.02260989,-0.0402399,-0.02370865,-0.05034114,-0.06757715,0.03518248,0.02036397,-0.00212132,0.01104002,-0.01454734,0.0252793,-0.00531578,0.05160753,0.04202799,0.06645405,0.02167821,0.06135541,0.01525727,-0.00754331,0.00743911,-0.07958301,0.01886762,-0.01153231,-0.02373752,-0.00217655,-0.00361477,0.02655105,-0.00467443,0.06275485,0.03986413,0.00490555,-0.01139567,-0.03380564,-0.00178491,0.00176837,0.13722385,-0.04609599,-0.03593096,-0.03226831,-0.01474401,0.03957117,-0.06390268,0.00135658,0.00077307,0.05047974,-0.04938441,0.0487215,0.04317154,0.0700483,0.03494315,0.04997733,-0.09739582,0.04916112,-0.07197531,-0.01406872,-0.02003315,-0.03690394,-0.05828501,-0.01323498,-0.02043225,-0.18049613,0.02429868,0.01488291,0.03951608,-0.02508484,-0.02783531,0.05290132,-0.05728278,-0.04186963,-0.02730587,0.03032291,-0.00826292,-0.01296312,-0.02737352,-0.04375228,0.05319061,0.11924588,-0.04697575,0.06596422,0.03085556,0.05320245,-0.01125494,0.2326239,-0.0814006,0.05488642,-0.00815786,-0.03061112,0.01859505,-0.01662928,-0.00063335,0.03221062,-0.02369991,0.01712744,-0.05161913,-0.00561699,0.06498578,-0.02393388,0.04743058,-0.02045524,0.00865102,-0.00137512,-0.02120232,-0.0529601,0.00128473,0.11016485,-0.03722597,-0.00790009,-0.08897625,-0.0399226,-0.0054794,-0.0715543,0.0111924,-0.05148748,0.04239815,0.01763557,-0.01488817,-0.0396957,-0.04672931,-0.00394687,-0.04831954,-0.01049332,0.01622233,-0.03143138,-0.00262391,0.02401914],"tokens":56}},"path":"s2.md#Identify Market Gaps","heading":"Identify Market Gaps","length":267,"lines":[6,10]} |
|||
"SmartSource:s2.md": {"path":"s2.md","class_name":"SmartSource","history":[{"blocks":{"s2.md#":true,"s2.md#Building a new Product or Feature":true,"s2.md#Identify Market Gaps":true},"mtime":1727364007505,"size":724,"hash":"241bbd0154edce8b56b64b64ea2e917fbb4e049f8966d97a66455bcb230d7555"}],"embeddings":{"Xenova/bge-small-en-v1.5":{"vec":[-0.03141407,-0.021144,-0.00529382,-0.05289403,0.06196269,0.06678457,0.01455961,0.10798009,-0.01275521,-0.03233403,-0.03174358,-0.01099761,0.0677171,0.00578276,-0.01528068,0.00869709,-0.00992353,0.02841385,-0.0130185,-0.02826276,0.00980118,-0.00805018,-0.02325215,-0.06797082,0.03754334,0.07005416,-0.06883746,-0.01578977,-0.03146007,-0.19456097,-0.00967998,0.02810696,0.0659429,0.02064871,-0.02402313,0.00709571,0.01427006,0.02326938,0.00502488,0.00526623,-0.01028902,0.02723213,-0.032382,0.01734858,-0.01563432,-0.03594895,-0.01494171,-0.0088073,-0.07326191,-0.0552587,-0.00359615,-0.04670922,0.01483499,0.03174533,0.04376044,0.07803974,0.07286324,0.01456613,-0.02770286,-0.02307747,0.0894499,0.02426678,-0.20100431,0.04388857,0.0276437,0.07084697,-0.07327535,0.0168472,-0.01299087,0.0454644,-0.03423187,-0.02458805,0.00786927,-0.00232737,0.0715192,0.01510919,-0.03363519,-0.05851759,-0.00082432,0.03544578,0.02223948,0.02067195,-0.00450665,0.01673202,-0.02188589,-0.00450525,0.03612282,-0.06609365,0.06175996,0.00238251,0.02213626,-0.03890398,-0.06872289,-0.01014061,0.00899436,-0.01955809,0.0369969,-0.00978164,0.05966333,0.15098861,-0.04335573,0.04506041,0.03589417,0.01046638,0.01566159,-0.05887019,-0.02015566,-0.02758204,-0.01902309,0.01468195,0.01526836,0.02771574,-0.09076332,-0.02382796,0.00569417,0.02642697,-0.03752256,0.00262163,0.05497987,0.00923437,-0.03752847,0.03853799,0.05131876,-0.01880871,-0.01277228,-0.01073257,0.06320066,0.02248095,-0.07664446,-0.03230407,0.06530926,-0.03980495,-0.10458112,0.0642399,-0.01717766,0.01192352,-0.03168805,0.06156822,-0.01310258,0.06829531,0.01427762,0.05372161,0.09597481,-0.11613547,-0.00000121,0.15382767,-0.00016961,0.02547537,-0.02726145,-0.05649287,-0.01402149,-0.04045025,-0.06394993,-0.04987194,-0.00297381,-0.00313632,0.03187013,-0.00768412,-0.0253871,-0.01730841,-0.01262,-0.01020832,-0.0094727,0.14044495,-0.01406985,-0.05609163,0.00705961,0.07518537,0.06568395,0.01844436,0.00821861,0.03974338,-0.04489944,0.00122463,-0.0278495,-0.05756943,-0.15469867,0.0165614,0.05230048,0.00355417,0.04996902,0.05198122,-0.04779991,0.02796959,-0.00819116,-0.08758824,0.01348345,-0.02469573,0.01921177,0.0090043,-0.08433911,0.00798652,-0.0244579,0.0591158,-0.01394147,0.06911233,-0.01955834,-0.0191828,0.02111324,-0.06270421,0.04596996,-0.00492232,-0.0250121,-0.00349923,0.04576179,0.05913906,0.02080394,-0.02108123,0.01884909,0.03989874,-0.06500257,-0.00806504,-0.00146913,-0.01980561,0.05506003,0.01127781,0.07465333,0.01736289,0.03101669,0.10260207,-0.00384598,0.11505573,-0.02986292,-0.16134216,-0.04673385,-0.02530775,0.07083403,-0.00117605,-0.02481456,-0.01868505,-0.02577666,-0.02290012,0.08983582,0.10411409,0.09653113,-0.0337337,0.04421987,-0.01398819,-0.05441728,-0.02413104,-0.03179785,-0.0916879,-0.01752386,-0.03526361,0.05785638,0.01754094,-0.04966563,0.04182247,0.02846045,0.10689925,0.03735401,-0.03584,-0.02573437,0.00963995,-0.02479116,-0.0620756,-0.01159593,-0.00924013,0.04381765,0.06472272,-0.05505152,0.011968,-0.0265031,-0.03112207,0.05089691,0.05866447,-0.02194705,0.00335861,-0.02680008,-0.02050578,-0.00534647,0.01583006,0.06973212,0.06490614,0.07805426,0.02629461,0.04860984,-0.01759967,-0.03673159,-0.05623263,0.01212825,-0.01366845,-0.05078049,-0.02058656,-0.02809827,0.01323661,-0.07394936,0.05963078,0.04121695,0.01820689,-0.02864337,-0.03861428,-0.05124034,-0.00261628,0.118834,-0.02731201,-0.04464577,-0.0429854,0.01626115,0.06772522,-0.05221039,-0.01259592,0.03387721,0.02168503,-0.02667602,0.036478,0.00888677,0.02042551,0.00788316,0.04652983,-0.07695629,0.04167956,-0.0917973,0.00159182,-0.00202498,-0.08262838,-0.06625165,-0.03339717,-0.02357253,-0.18969366,-0.01956229,-0.01397875,0.06796817,-0.02219483,0.00938887,0.05159639,-0.07543343,-0.05546456,-0.0121603,0.0246837,0.00594963,-0.0489387,-0.02326041,-0.02585519,0.00211202,0.15118699,-0.01721352,0.05641626,0.01647938,0.0226661,-0.02502121,0.23504987,-0.06545202,0.06550264,-0.02546591,-0.02849411,0.00059615,-0.0181593,0.01931374,0.04401151,-0.01812211,0.06752715,-0.03771644,-0.04836443,0.06039566,-0.0181424,0.0518812,-0.04646311,-0.01169881,0.01506295,0.0170441,-0.00975875,-0.03182209,0.11873222,-0.02946266,-0.01134491,-0.0550606,-0.09548632,0.01166569,-0.07291192,0.00996519,-0.06201889,-0.01792981,0.03111685,-0.0103516,-0.02104172,-0.03833348,0.02777372,-0.04844671,0.02710843,0.02481478,-0.00321952,0.00680465,0.03772873],"tokens":135}},"outlinks":[]} |
@ -0,0 +1,22 @@ |
|||
{ |
|||
"smart_blocks": { |
|||
"embed_model": { |
|||
"model_key": "TaylorAI/bge-micro-v2" |
|||
} |
|||
}, |
|||
"smart_sources": { |
|||
"embed_model": { |
|||
"model_key": "Xenova/bge-small-en-v1.5" |
|||
} |
|||
}, |
|||
"file_exclusions": "Untitled", |
|||
"folder_exclusions": "smart-chats", |
|||
"is_obsidian_vault": true, |
|||
"smart_notices": { |
|||
"muted": { |
|||
"no context": true, |
|||
"Notice muted": true |
|||
} |
|||
}, |
|||
"smart_chats_folder": "smart-chats" |
|||
} |
After Width: | Height: | Size: 1.7 MiB |
After Width: | Height: | Size: 2.4 MiB |
After Width: | Height: | Size: 3.3 MiB |
After Width: | Height: | Size: 512 KiB |
After Width: | Height: | Size: 2.6 MiB |
After Width: | Height: | Size: 5.4 MiB |
After Width: | Height: | Size: 944 KiB |
After Width: | Height: | Size: 4.8 MiB |
@ -0,0 +1,16 @@ |
|||
#### This note shows data obtained from Gynecologists and obstetricians on the doctor doctor site. |
|||
|
|||
![[high_res_chart_3 3.png]] |
|||
|
|||
A few of these users have Fellowship or sub specialist degree. The highest amount in this field is for **Infertility&IVF** ,**Women's oncology** and **Perinatology**. |
|||
|
|||
![[high_res_chart.png]] Most of the specialists who use this website are from city of Tehran. After **Tehran**, the cities of **Mashhad**, **Shizar** and **Esfahan** are in the next ranks. |
|||
|
|||
![[Pasted image 20241022134541.png]] |
|||
![[iran_cities_colored_map_with_labels 1.html]] in this link you can see **the distribution of OB/GYN specialists in Iran. |
|||
|
|||
|
|||
![[high_res_chart_tehran_items 1.png]] because must of Gynecologists and obstetricians was from tehran, an attempt was made to investigate the neighborhoods where these doctors work through the information of their profiles. |
|||
|
|||
![[Pasted image 20241022134828.png]] |
|||
![[tehran_neighborhoods_colored_map.html]] in this link you can see **the distribution of OB/GYN specialists in Tehran. |
@ -0,0 +1,19 @@ |
|||
#### This note shows data obtained from radiologists on the doctor doctor site. |
|||
|
|||
![[genders 1.png]] According to the data obtained from the profiles of more than **1,700 radiologist** users, based on their names, it has been determined that approximately **36%** are women and **64%** are men. |
|||
|
|||
![[high_res_chart_3 2.png]] |
|||
|
|||
A few of these users have Fellowship or sub specialist degree. The highest amount in this field is for **oral imaging subspecialties** and **echocardiography**, which are not included in the scope of our product users. The rest of the sub-specialties are also related to the fields of **interventional imaging**, which are not currently among the users of the desired product. |
|||
|
|||
![[high_res_chart_top_100_2.png]] For more accuracy, the first 500 profiles on the Doctor Doctor website have been checked separately because they include more active profiles on the website and it seems that the number of **echocardiography** is higher among the first 500 profiles. |
|||
|
|||
![[high_res_chart_2 2.png]]Most of the radiologists who use this website are from city of Tehran. After **Tehran**, the cities of **Shizar**, **Tabriz** and **Mashhad** are in the next ranks. |
|||
|
|||
![[Pasted image 20241022135010.png]] |
|||
|
|||
![[iran_cities_colored_map_with_labels.html]] |
|||
in this link you can see **the distribution of radiologists in Iran**. |
|||
|
|||
![[high_res_chart_tehran_items.png]] because must of radiologists was from tehran, an attempt was made to investigate the neighborhoods where these doctors work through the information of their profiles. |
|||
|
After Width: | Height: | Size: 75 KiB |
After Width: | Height: | Size: 74 KiB |
After Width: | Height: | Size: 74 KiB |
After Width: | Height: | Size: 200 KiB |
After Width: | Height: | Size: 203 KiB |
After Width: | Height: | Size: 203 KiB |
After Width: | Height: | Size: 203 KiB |
After Width: | Height: | Size: 199 KiB |
After Width: | Height: | Size: 331 KiB |
After Width: | Height: | Size: 331 KiB |
After Width: | Height: | Size: 751 KiB |
After Width: | Height: | Size: 751 KiB |
After Width: | Height: | Size: 383 KiB |
After Width: | Height: | Size: 194 KiB |
After Width: | Height: | Size: 194 KiB |
After Width: | Height: | Size: 258 KiB |
After Width: | Height: | Size: 254 KiB |
After Width: | Height: | Size: 245 KiB |
After Width: | Height: | Size: 336 KiB |
After Width: | Height: | Size: 408 KiB |
@ -0,0 +1,16 @@ |
|||
#### This note shows data obtained from Gynecologists and obstetricians on the nobat ir site. |
|||
|
|||
![[high_res_chart_3.png]] A few of these users have Fellowship or sub specialist degree. The highest amount in this field is for **Infertility&IVF** and **Perinatology**. |
|||
|
|||
![[high_res_chart_3 1.png]] Most of the specialists who use this website are from city of Tehran. After **Tehran**, the cities of **Mashhad**, **Shizar** and **Esfahan** are in the next ranks. |
|||
|
|||
![[Pasted image 20241022140401.png]] |
|||
|
|||
![[iran_cities_colored_map_with_labels 2.html]] in this link you can see **the distribution of OB/GYN specialists in Iran. |
|||
|
|||
|
|||
![[high_res_chart_tehran_items.png]] because must of Gynecologists and obstetricians was from tehran, an attempt was made to investigate the neighborhoods where these doctors work through the information of their profiles. |
|||
|
|||
![[Pasted image 20241022140706.png]] |
|||
|
|||
![[tehran_neighborhoods_colored_map 2.html]] in this link you can see **the distribution of OB/GYN specialists in Tehran. |
@ -0,0 +1,13 @@ |
|||
![[genders.png]] According to the data obtained from the profiles of more than **900 radiologist** users, based on their names, it has been determined that approximately 42%** are women and **58%** are men. |
|||
|
|||
![[high_res_chart_3 4.png]] Most of the radiologists who use this website are from city of Tehran. After **Tehran**, the cities of **Mashhad** , **Esfahan**, **Shiraz** are in the next ranks. |
|||
|
|||
![[Pasted image 20241022141550.png]] |
|||
|
|||
![[iran_cities_colored_map_with_labels 3.html]] in this link you can see **the distribution of OB/GYN specialists in Iran. |
|||
|
|||
![[high_res_chart_tehran_items 1.png]] because must of Gynecologists and obstetricians was from tehran, an attempt was made to investigate the neighborhoods where these doctors work through the information of their profiles. |
|||
|
|||
![[Pasted image 20241022142002.png]] |
|||
|
|||
![[tehran_neighborhoods_colored_map 3.html]] in this link you can see **the distribution of OB/GYN specialists in Tehran. |
@ -0,0 +1,888 @@ |
|||
<!DOCTYPE html> |
|||
<html> |
|||
<head> |
|||
|
|||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" /> |
|||
|
|||
<script> |
|||
L_NO_TOUCH = false; |
|||
L_DISABLE_3D = false; |
|||
</script> |
|||
|
|||
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style> |
|||
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style> |
|||
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js"></script> |
|||
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script> |
|||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js"></script> |
|||
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script> |
|||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css"/> |
|||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css"/> |
|||
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css"/> |
|||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css"/> |
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/> |
|||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/> |
|||
|
|||
<meta name="viewport" content="width=device-width, |
|||
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> |
|||
<style> |
|||
#map_8354fd216210e6daf25d107b9628d202 { |
|||
position: relative; |
|||
width: 100.0%; |
|||
height: 100.0%; |
|||
left: 0.0%; |
|||
top: 0.0%; |
|||
} |
|||
.leaflet-container { font-size: 1rem; } |
|||
</style> |
|||
|
|||
</head> |
|||
<body> |
|||
|
|||
|
|||
<div class="folium-map" id="map_8354fd216210e6daf25d107b9628d202" ></div> |
|||
|
|||
</body> |
|||
<script> |
|||
|
|||
|
|||
var map_8354fd216210e6daf25d107b9628d202 = L.map( |
|||
"map_8354fd216210e6daf25d107b9628d202", |
|||
{ |
|||
center: [32.4279, 53.688], |
|||
crs: L.CRS.EPSG3857, |
|||
zoom: 5, |
|||
zoomControl: true, |
|||
preferCanvas: false, |
|||
} |
|||
); |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
var tile_layer_67067eaeb0f4be35de5b497277380145 = L.tileLayer( |
|||
"https://tile.openstreetmap.org/{z}/{x}/{y}.png", |
|||
{"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors", "detectRetina": false, "maxNativeZoom": 19, "maxZoom": 19, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false} |
|||
); |
|||
|
|||
|
|||
tile_layer_67067eaeb0f4be35de5b497277380145.addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_896dd345a6db073ebafc0427e2d8ec96 = L.circleMarker( |
|||
[35.6892523, 51.3896004], |
|||
{"bubblingMouseEvents": true, "color": "#0000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0000ff", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 25.2, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_c5d63d4da71e9fd7c5ea90ccad648477 = L.circleMarker( |
|||
[36.2974945, 59.6059232], |
|||
{"bubblingMouseEvents": true, "color": "#157500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#157500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 11.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_87ca8347d75d9b5c1329bf2bb0468ae1 = L.circleMarker( |
|||
[33.1881386, 52.4981635], |
|||
{"bubblingMouseEvents": true, "color": "#2d8700", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#2d8700", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9.2, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_f677b4dadbe0887b534bc467221467ca = L.circleMarker( |
|||
[38.0738612, 46.2978789], |
|||
{"bubblingMouseEvents": true, "color": "#b49a00", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#b49a00", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5.3, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_be15f1b0de40383bdc298dbdcc8c4541 = L.circleMarker( |
|||
[29.6060218, 52.5378041], |
|||
{"bubblingMouseEvents": true, "color": "#578d00", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#578d00", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8.0, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_51f534a0da9b2bc5799dd12bf2cff84b = L.circleMarker( |
|||
[35.8224892, 50.9904681], |
|||
{"bubblingMouseEvents": true, "color": "#819300", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#819300", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6.8, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_0b790a59225b5817dc6a84e0d55d1a89 = L.circleMarker( |
|||
[31.3230637, 48.67932], |
|||
{"bubblingMouseEvents": true, "color": "#6f9000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#6f9000", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 7.3, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_405da67c845f655a2d7b78aa11136f45 = L.circleMarker( |
|||
[34.6422939, 50.8801184], |
|||
{"bubblingMouseEvents": true, "color": "#e7a200", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#e7a200", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.8, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_6ccacfc5317fdc2a6bfac2445a08dbd8 = L.circleMarker( |
|||
[29.571858, 57.301047], |
|||
{"bubblingMouseEvents": true, "color": "#9c9700", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#9c9700", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6.0, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_e0b718f21d34fba65d0daa1991b05679 = L.circleMarker( |
|||
[36.0156291, 49.8398161], |
|||
{"bubblingMouseEvents": true, "color": "#d89f00", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#d89f00", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.3, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_8e4e95845c489d02a798ff8e6eed23ad = L.circleMarker( |
|||
[34.3239414, 47.0735891], |
|||
{"bubblingMouseEvents": true, "color": "#b49a00", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#b49a00", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5.3, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_db8d8b25719e18e8e0370f28e453972f = L.circleMarker( |
|||
[36.5659626, 53.0586327], |
|||
{"bubblingMouseEvents": true, "color": "#b79b00", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#b79b00", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5.2, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_bb8e893505184e2c4db1c90f78eeeaa8 = L.circleMarker( |
|||
[35.3126047, 46.9978639], |
|||
{"bubblingMouseEvents": true, "color": "#e7a200", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#e7a200", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.8, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_bfbe6804e51e0c1a6615d1e5a6f204f9 = L.circleMarker( |
|||
[34.9726302, 48.6563818], |
|||
{"bubblingMouseEvents": true, "color": "#cf9e00", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#cf9e00", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.5, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_c0e5a538ce9dc28be0661a799fc7e76c = L.circleMarker( |
|||
[37.2793607, 49.5846102], |
|||
{"bubblingMouseEvents": true, "color": "#9c9700", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#9c9700", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6.0, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_01da753974e7ceaecc70c1b3370addb5 = L.circleMarker( |
|||
[32.3780257, 48.4032064], |
|||
{"bubblingMouseEvents": true, "color": "#e7a200", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#e7a200", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.8, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_8f4ad044c6e710da62f63ec835972fdc = L.circleMarker( |
|||
[36.5452581, 52.6846571], |
|||
{"bubblingMouseEvents": true, "color": "#cf9e00", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#cf9e00", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.5, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_f666a4ebec0f7dccf6e8141dd09d4ea9 = L.circleMarker( |
|||
[37.548341, 45.0667111], |
|||
{"bubblingMouseEvents": true, "color": "#dba000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#dba000", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.2, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_98bee13b238effa67f259a30ec297a0b = L.circleMarker( |
|||
[27.1793466, 56.2781423], |
|||
{"bubblingMouseEvents": true, "color": "#c99d00", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#c99d00", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.7, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_1a405e6055dee2b6ca3b9c5999f366bb = L.circleMarker( |
|||
[36.515854, 48.4777616], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.2, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_0954c23cc5e914ff6e247d53b8eea4ab = L.circleMarker( |
|||
[29.4928874, 60.8503017], |
|||
{"bubblingMouseEvents": true, "color": "#f3a300", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f3a300", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.5, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_8cf6213d6453acd85a47604c1816ad49 = L.circleMarker( |
|||
[35.6589015, 51.0586022], |
|||
{"bubblingMouseEvents": true, "color": "#f0a300", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f0a300", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.6, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_b53eba32df60d2f2cb92fc82de87b5be = L.circleMarker( |
|||
[34.0862719, 49.6893884], |
|||
{"bubblingMouseEvents": true, "color": "#d29e00", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#d29e00", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.4, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_2b5292eb79002077c95be0ce5408f055 = L.circleMarker( |
|||
[36.8392776, 54.4320858], |
|||
{"bubblingMouseEvents": true, "color": "#e1a100", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#e1a100", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.0, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_4ecf78bcf76cd250a7da2560c3d3b319 = L.circleMarker( |
|||
[32.0406164, 54.6657189], |
|||
{"bubblingMouseEvents": true, "color": "#c69d00", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#c69d00", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.8, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_5e5838a8b1f6a19e90c15c832738b020 = L.circleMarker( |
|||
[28.8936645, 51.3204877], |
|||
{"bubblingMouseEvents": true, "color": "#d89f00", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#d89f00", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.3, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_3552bcbd61d5c237e46740bfe48c482e = L.circleMarker( |
|||
[32.3257366, 50.8497369], |
|||
{"bubblingMouseEvents": true, "color": "#f0a300", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f0a300", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.6, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_55041ffecd648b08c51441e1b3498e49 = L.circleMarker( |
|||
[35.5478513, 51.2318676], |
|||
{"bubblingMouseEvents": true, "color": "#f0a300", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f0a300", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.6, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_69d938db80b4696971215388c4caae66 = L.circleMarker( |
|||
[32.8633961, 59.2177294], |
|||
{"bubblingMouseEvents": true, "color": "#f0a300", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f0a300", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.6, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_ae966611a29f22a89cc5eb25e548429a = L.circleMarker( |
|||
[38.4583983, 47.9313001], |
|||
{"bubblingMouseEvents": true, "color": "#eda200", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#eda200", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.7, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_d991e22891c40944bd24977653fa9383 = L.circleMarker( |
|||
[33.4842109, 48.3538276], |
|||
{"bubblingMouseEvents": true, "color": "#f3a300", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f3a300", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.5, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_39b8d07487b7942bc4efcdd04c98526f = L.circleMarker( |
|||
[35.786678, 51.0025585], |
|||
{"bubblingMouseEvents": true, "color": "#f9a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f9a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.3, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_aaf5c7a54335c97d364032d74d0e4349 = L.circleMarker( |
|||
[30.3636097, 48.2591475], |
|||
{"bubblingMouseEvents": true, "color": "#f3a300", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f3a300", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.5, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_0db3ba24bf8d5e0e305b9cf3d19c3d37 = L.circleMarker( |
|||
[35.7204271, 51.1100769], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.2, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_3f7803df05b5d5e09683a2ce3473bfb6 = L.circleMarker( |
|||
[36.4718947, 52.3499009], |
|||
{"bubblingMouseEvents": true, "color": "#f3a300", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f3a300", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.5, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_15cc67a88d9fe5c78ce847c41a3a0a03 = L.circleMarker( |
|||
[35.7065519, 51.4553993], |
|||
{"bubblingMouseEvents": true, "color": "#f3a300", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f3a300", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.5, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_da67a1ecd7295484683e355271d3778e = L.circleMarker( |
|||
[36.4636399, 52.8579311], |
|||
{"bubblingMouseEvents": true, "color": "#f0a300", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f0a300", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.6, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_ad78e4e3900f451a0891f6432226da95 = L.circleMarker( |
|||
[33.9876533, 51.4428856], |
|||
{"bubblingMouseEvents": true, "color": "#f9a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f9a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.3, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_9d4056111977a4c4a233d4217af65ae2 = L.circleMarker( |
|||
[37.4759752, 57.3319881], |
|||
{"bubblingMouseEvents": true, "color": "#f6a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f6a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.4, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_697aaa141407c71815def8273ee8e33c = L.circleMarker( |
|||
[30.5577268, 49.1997454], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.2, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_9aad25043d1543070772c36c105345b6 = L.circleMarker( |
|||
[35.3843145, 54.6209302], |
|||
{"bubblingMouseEvents": true, "color": "#f9a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f9a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.3, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_5bda28b2861ddf75d3155cb301267ac4 = L.circleMarker( |
|||
[36.8154324, 50.8787003], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_d2bab533eb3415692c99ff4f3d94cd4b = L.circleMarker( |
|||
[33.8943281, 48.7560936], |
|||
{"bubblingMouseEvents": true, "color": "#f3a300", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f3a300", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.5, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_312eda849d1c23d8e74c6c9d59de30f0 = L.circleMarker( |
|||
[35.3283255, 51.6460307], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.2, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_d81dcca14cfc044a9ee93bc51d5b16c4 = L.circleMarker( |
|||
[36.4195026, 54.9649915], |
|||
{"bubblingMouseEvents": true, "color": "#f9a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f9a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.3, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_99b9ab06974bd485c695553e0706880e = L.circleMarker( |
|||
[33.1545696, 46.7576343], |
|||
{"bubblingMouseEvents": true, "color": "#f0a300", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f0a300", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.6, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_05dc4afbe43c123a3841564d1d9db29d = L.circleMarker( |
|||
[32.8556169, 51.558376], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.2, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_c0f062d57421706ed59cdbc90b08009d = L.circleMarker( |
|||
[37.6254335, 57.3602414], |
|||
{"bubblingMouseEvents": true, "color": "#f3a300", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f3a300", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.5, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_4151f901a287e3b3ffe1ca85251885c4 = L.circleMarker( |
|||
[29.4458687, 55.6704717], |
|||
{"bubblingMouseEvents": true, "color": "#e4a100", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#e4a100", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.9, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_3df7de3b406933dbe8f039ec6901e886 = L.circleMarker( |
|||
[36.6506329, 51.4223717], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.2, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_5c0746194c391973700941c05881a40a = L.circleMarker( |
|||
[35.4784573, 51.6824624], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.2, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_a62742cd98d9648a447b22cf46b234de = L.circleMarker( |
|||
[35.4862079, 51.0515404], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_2a41b1e6a9fe17f8e48381432b641aa4 = L.circleMarker( |
|||
[37.2060727, 50.0028774], |
|||
{"bubblingMouseEvents": true, "color": "#eda200", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#eda200", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.7, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_8cd58ceadecfca9961a652954df79f17 = L.circleMarker( |
|||
[36.2134053, 57.6808799], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.2, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_c8810ce6e09da53082fdcfff918b2363 = L.circleMarker( |
|||
[28.5014092, 53.5695867], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.2, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_454ee428cc1d262eddb3b35799c973b3 = L.circleMarker( |
|||
[30.5942116, 50.2434119], |
|||
{"bubblingMouseEvents": true, "color": "#f3a300", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f3a300", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.5, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_d550af0cc6bc054730b7746fcbc67d0d = L.circleMarker( |
|||
[35.9641824, 50.6858036], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.2, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_631f87cb21e7a402ece5e55a60b74583 = L.circleMarker( |
|||
[35.0196331, 50.3652364], |
|||
{"bubblingMouseEvents": true, "color": "#f9a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f9a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.3, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_7de61dfcfcd6484b65dadd0e0e3871fd = L.circleMarker( |
|||
[38.5504343, 44.95354], |
|||
{"bubblingMouseEvents": true, "color": "#f9a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f9a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.3, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_5cb42025937d0fe00100ee66955dbc53 = L.circleMarker( |
|||
[35.2740853, 59.2194494], |
|||
{"bubblingMouseEvents": true, "color": "#f9a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f9a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.3, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_b184266f73ec3dc2f57b4235a90e541a = L.circleMarker( |
|||
[36.2105604, 58.7922291], |
|||
{"bubblingMouseEvents": true, "color": "#eda200", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#eda200", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.7, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_efa23c3064e23e41a8bbe17bb1c800a6 = L.circleMarker( |
|||
[36.1453788, 49.213005], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.2, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_413a6a1be571f28da49616279e624e1d = L.circleMarker( |
|||
[30.402184, 55.9941776], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_c9b7899ffe95264727d4a1f2c0adecea = L.circleMarker( |
|||
[32.0492034, 48.851281], |
|||
{"bubblingMouseEvents": true, "color": "#f9a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f9a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.3, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_bed703bd890a38ab72756a07ae41dbe1 = L.circleMarker( |
|||
[36.7008777, 52.6481047], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_934876c42b93e266c7c7b3751e4230b7 = L.circleMarker( |
|||
[30.4333105, 48.1779858], |
|||
{"bubblingMouseEvents": true, "color": "#f9a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f9a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.3, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_455d35d89c48847e69ff26d57e5fdb25 = L.circleMarker( |
|||
[37.1381592, 50.2927862], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.2, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_bd3a6e57b6479bb927e077cdf5b1ab4f = L.circleMarker( |
|||
[36.6912955, 53.5432769], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_11f8bb964cf3630caa3a83d3c715eb1d = L.circleMarker( |
|||
[35.4421824, 51.5697005], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_e7e8efdf6fe7158d9b29bbc043f61a0f = L.circleMarker( |
|||
[27.2069903, 60.6882515], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_3fad79c19d95f83c39fc0e0aced1fc3d = L.circleMarker( |
|||
[34.2922623, 48.8215749], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.2, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_4edd4a696e4c91d54bd8d61ace6324d8 = L.circleMarker( |
|||
[36.9225518, 50.6431897], |
|||
{"bubblingMouseEvents": true, "color": "#f9a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f9a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.3, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_7dafd7ebe6f03b465e524b41662a85e6 = L.circleMarker( |
|||
[29.8762905, 52.8062895], |
|||
{"bubblingMouseEvents": true, "color": "#f6a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f6a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.4, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_5b40981d59e01cd8525aba7188120dec = L.circleMarker( |
|||
[36.5215096, 46.2111837], |
|||
{"bubblingMouseEvents": true, "color": "#f9a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f9a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.3, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_a66ac8ec91d3592c420f72b25c54d4a6 = L.circleMarker( |
|||
[35.983333, 45.816667], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_04be851853ef00c595e4976dbe7215d5 = L.circleMarker( |
|||
[37.1955948, 50.1529566], |
|||
{"bubblingMouseEvents": true, "color": "#f9a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f9a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.3, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_eb87f4555b07e2faff84818703469f72 = L.circleMarker( |
|||
[27.1505605, 57.0752814], |
|||
{"bubblingMouseEvents": true, "color": "#f9a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f9a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.3, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_35dd327fa19763179fc37835d200f501 = L.circleMarker( |
|||
[32.6938201, 51.5254892], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_5aaaed0fe1699bc73eb94a3840d630d9 = L.circleMarker( |
|||
[31.9719093, 51.291596], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_70a428147a580551d4209fe1922d8231 = L.circleMarker( |
|||
[32.0116032, 51.8651719], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.2, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_3e95aeaa13dc056a8636e4f0f2391310 = L.circleMarker( |
|||
[35.2446715, 58.4641341], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_1b75a4da37f39932fda243dece0e85c7 = L.circleMarker( |
|||
[32.6832096, 59.8725213], |
|||
{"bubblingMouseEvents": true, "color": "#f9a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f9a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.3, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_695d39fff08f19a5740f6b6d24a1af1f = L.circleMarker( |
|||
[35.5219063, 46.1758889], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_3bd78306c128672babf31282047b2943 = L.circleMarker( |
|||
[37.4284148, 47.7058119], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.2, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_a05fbf9026d8c0afce0566106255dee1 = L.circleMarker( |
|||
[35.2432546, 60.626313], |
|||
{"bubblingMouseEvents": true, "color": "#f9a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f9a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.3, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_c85e29a598809e89a08c6e4f71d334a6 = L.circleMarker( |
|||
[27.6619203, 54.3229561], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_84e72753d4e88fd9683d712b993d38de = L.circleMarker( |
|||
[25.2935488, 60.6469115], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.2, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_5951a463eb022c12ef9a4be870f1efa5 = L.circleMarker( |
|||
[28.9366395, 53.6510677], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_51a13a0ea0418afb492456d1ff6499d1 = L.circleMarker( |
|||
[37.4716356, 49.4685904], |
|||
{"bubblingMouseEvents": true, "color": "#f9a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f9a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.3, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_81359069dbff68d8e59f47689768f854 = L.circleMarker( |
|||
[32.4858819, 51.7785054], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_b3a0b39ef405582283bd0214ec40f83e = L.circleMarker( |
|||
[32.3887062, 51.3737142], |
|||
{"bubblingMouseEvents": true, "color": "#f9a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f9a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.3, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_226ec30c329397cc39ecc70a43735b22 = L.circleMarker( |
|||
[36.7651739, 45.7218136], |
|||
{"bubblingMouseEvents": true, "color": "#f9a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f9a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.3, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_0e7e812d4681bbbb54fd76f430dbe440 = L.circleMarker( |
|||
[33.4992998, 49.0529575], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.2, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_d3223e20a2eff68a42625dc01c99a629 = L.circleMarker( |
|||
[29.5818086, 50.5183165], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_0ccff3648064cf183f36ed1677f510a0 = L.circleMarker( |
|||
[33.533792, 47.6078615], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_2a81fa2dfb481fe4abce35849b1a7731 = L.circleMarker( |
|||
[34.3528343, 58.6832352], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_9704597bce7826a1cde27bcd4efbac50 = L.circleMarker( |
|||
[37.7974981, 48.904184], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_6e5eea3e12e67044a3848757af92f4ae = L.circleMarker( |
|||
[30.35695, 50.7939174], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_105f2ae0b82a825753fb01c483d5fd83 = L.circleMarker( |
|||
[31.2780254, 49.6020152], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_9a8fe188b17c74df07bab6e35825da41 = L.circleMarker( |
|||
[38.4306358, 45.7741], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_dd49703c8b6fd9da0303e0d5f2b2760a = L.circleMarker( |
|||
[34.1896877, 48.3716218], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_a825ce381bb5f4f5212fc8c3adde7ecc = L.circleMarker( |
|||
[32.4854294, 48.3270335], |
|||
{"bubblingMouseEvents": true, "color": "#f9a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f9a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.3, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_d99ce173f95cae952a4ad6c8c45f8dda = L.circleMarker( |
|||
[36.0726006, 49.6937027], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_67fabff54f1f030d7e805e7c615664e1 = L.circleMarker( |
|||
[38.4193239, 48.8715278], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.2, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_afe3b6c53972b94f6cd1457f32cc44fa = L.circleMarker( |
|||
[37.301672, 49.3147378], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_cdef3dde0ea0b23784ae48107eeedfe4 = L.circleMarker( |
|||
[37.0750975, 57.5096169], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.2, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_f35cffc505e4661dcf1286a4301721a9 = L.circleMarker( |
|||
[32.6745293, 51.7075264], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_bf10dbd65f5258af1edbd4d392b16c1c = L.circleMarker( |
|||
[32.5576772, 51.5079153], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_c01f2d2c0e4a5f863575cb8e60b9e609 = L.circleMarker( |
|||
[32.3424135, 51.5046633], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_04d5f51fb1e7a04b28c3b0dc1306cc66 = L.circleMarker( |
|||
[36.8929175, 54.0697204], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_4afabe09d9740bd7131c1583eb385241 = L.circleMarker( |
|||
[35.3086544, 51.7190255], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.2, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_02d586d0b81c668f7c9ae8ef960940d8 = L.circleMarker( |
|||
[35.734772, 51.9063798], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_7b2fdc02625e1e8eefca70a194d61514 = L.circleMarker( |
|||
[31.5126237, 50.8303948], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_d48a19fd41b9690c182104755000d320 = L.circleMarker( |
|||
[33.6446965, 50.0801376], |
|||
{"bubblingMouseEvents": true, "color": "#f9a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f9a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.3, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_4d661b45898a9f12facf6258995e581b = L.circleMarker( |
|||
[38.1969035, 44.7685015], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_adf8b7f612c6d9a2f7775693062f4791 = L.circleMarker( |
|||
[32.4834868, 51.4173278], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_8a4fd28e9edb5c4669fbdc963e68c771 = L.circleMarker( |
|||
[27.3651673, 62.3390963], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_961d5938f1d288fd93865ef5eb6cdd22 = L.circleMarker( |
|||
[38.3979293, 47.6764836], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_5f08ab52ba99a45fc871e63fdcd1f24c = L.circleMarker( |
|||
[32.2003687, 48.2489839], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.2, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_711c4df1e24bcf33cd221bf411cd74b1 = L.circleMarker( |
|||
[27.4413347, 57.1909085], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_7d6bdb0aeda7328e40571e453ae715ac = L.circleMarker( |
|||
[29.6203251, 51.6520826], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.2, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_4a65429ddaaf63642f706ec7b4bc29a5 = L.circleMarker( |
|||
[33.6502161, 59.029582612411374], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_63d419d2dded0369d9d72684e4004c03 = L.circleMarker( |
|||
[30.8925778, 52.688496], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_4a61436029d1a58da50ceb79c1c078cd = L.circleMarker( |
|||
[33.456488, 50.2883303], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_523a3913b3755f54e997943d54a0561a = L.circleMarker( |
|||
[36.2574, 46.5487], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_d8107014da4487274e13648d78ec8bf0 = L.circleMarker( |
|||
[37.0134841, 54.4576664], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_296cc026e03aaba01ee4d34256b317fd = L.circleMarker( |
|||
[37.7317933, 56.7121211897333], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.2, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_7b4481798f23e64f968fb9cead1135ed = L.circleMarker( |
|||
[35.954365, 52.1103419], |
|||
{"bubblingMouseEvents": true, "color": "#f9a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f9a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.3, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_7e06883d4fb52a2731ed67489e004bc6 = L.circleMarker( |
|||
[36.7105093, 57.4086684], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_bb44fedff69f925049a7463b75ee4555 = L.circleMarker( |
|||
[34.5478858, 48.4478184], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_097214ce76497605d161f35bf938e561 = L.circleMarker( |
|||
[37.6192217, 48.5278144], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_a6f456a9b92f27c5f7484fe37763f32f = L.circleMarker( |
|||
[37.1060904, 58.5086657], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.2, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_9a05eb9ad2c2ce0c05c4518562f54625 = L.circleMarker( |
|||
[32.8660348, 49.830122], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.2, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_4c618cd54bf198359229c3982e155241 = L.circleMarker( |
|||
[35.2083683, 48.7242053], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.2, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_93100a2a31ed43cc80168e90550a7c88 = L.circleMarker( |
|||
[34.7401763, 60.7755127], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
|
|||
var circle_marker_c8123b74f61be953b7cbe62dc8c9bf9d = L.circleMarker( |
|||
[29.9283973, 56.5717384], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.1, "stroke": true, "weight": 3} |
|||
).addTo(map_8354fd216210e6daf25d107b9628d202); |
|||
|
|||
</script> |
|||
</html> |
@ -0,0 +1,996 @@ |
|||
<!DOCTYPE html> |
|||
<html> |
|||
<head> |
|||
|
|||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" /> |
|||
|
|||
<script> |
|||
L_NO_TOUCH = false; |
|||
L_DISABLE_3D = false; |
|||
</script> |
|||
|
|||
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style> |
|||
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style> |
|||
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js"></script> |
|||
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script> |
|||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js"></script> |
|||
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script> |
|||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css"/> |
|||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css"/> |
|||
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css"/> |
|||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css"/> |
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/> |
|||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/> |
|||
|
|||
<meta name="viewport" content="width=device-width, |
|||
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> |
|||
<style> |
|||
#map_ed0e3a2523d5bb6726e4117d42d1d0e1 { |
|||
position: relative; |
|||
width: 100.0%; |
|||
height: 100.0%; |
|||
left: 0.0%; |
|||
top: 0.0%; |
|||
} |
|||
.leaflet-container { font-size: 1rem; } |
|||
</style> |
|||
|
|||
</head> |
|||
<body> |
|||
|
|||
|
|||
<div class="folium-map" id="map_ed0e3a2523d5bb6726e4117d42d1d0e1" ></div> |
|||
|
|||
</body> |
|||
<script> |
|||
|
|||
|
|||
var map_ed0e3a2523d5bb6726e4117d42d1d0e1 = L.map( |
|||
"map_ed0e3a2523d5bb6726e4117d42d1d0e1", |
|||
{ |
|||
center: [32.4279, 53.688], |
|||
crs: L.CRS.EPSG3857, |
|||
zoom: 5, |
|||
zoomControl: true, |
|||
preferCanvas: false, |
|||
} |
|||
); |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
var tile_layer_ceec4f1ceb6956d97b2345f15585c7f4 = L.tileLayer( |
|||
"https://tile.openstreetmap.org/{z}/{x}/{y}.png", |
|||
{"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors", "detectRetina": false, "maxNativeZoom": 19, "maxZoom": 19, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false} |
|||
); |
|||
|
|||
|
|||
tile_layer_ceec4f1ceb6956d97b2345f15585c7f4.addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_3eca7d821d9dce62203cc9fc8257dc42 = L.circleMarker( |
|||
[32.0406164, 54.6657189], |
|||
{"bubblingMouseEvents": true, "color": "#c69d00", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#c69d00", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5.766666666666667, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_2c2173de8a074f27db71faeb792b250c = L.circleMarker( |
|||
[29.2661428, 51.2120597], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.066666666666666, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_a593061b84c25df5a7d237d3413fc00c = L.circleMarker( |
|||
[29.4458687, 55.6704717], |
|||
{"bubblingMouseEvents": true, "color": "#f6a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f6a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.3, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_642229b43ebd9e7dcde3760995e4ba13 = L.circleMarker( |
|||
[29.6060218, 52.5378041], |
|||
{"bubblingMouseEvents": true, "color": "#939500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#939500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 7.2, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_d017b30c7e32f349e7b996be87456056 = L.circleMarker( |
|||
[35.6892523, 51.3896004], |
|||
{"bubblingMouseEvents": true, "color": "#0000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0000ff", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 26.3, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_2928fddebb6fdfbca8e533019aaf3c8e = L.circleMarker( |
|||
[34.9726302, 48.6563818], |
|||
{"bubblingMouseEvents": true, "color": "#eda200", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#eda200", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.6, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_2df5bcc74ab55c72ded89c1a2e4a9ab9 = L.circleMarker( |
|||
[33.1881386, 52.4981635], |
|||
{"bubblingMouseEvents": true, "color": "#ab9900", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ab9900", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6.5, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_4d14f1e99edd764f36b9d62f87367d3a = L.circleMarker( |
|||
[36.2974945, 59.6059232], |
|||
{"bubblingMouseEvents": true, "color": "#999600", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#999600", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 7.0, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_e26db1b533b845d405d15342ee6a5255 = L.circleMarker( |
|||
[31.3230637, 48.67932], |
|||
{"bubblingMouseEvents": true, "color": "#d59f00", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#d59f00", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5.266666666666667, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_46e597b80a29d6d0006908030f17facf = L.circleMarker( |
|||
[27.1793466, 56.2781423], |
|||
{"bubblingMouseEvents": true, "color": "#f6a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f6a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.333333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_affa5bd523d0798e4ec61b691a22eebb = L.circleMarker( |
|||
[36.8392776, 54.4320858], |
|||
{"bubblingMouseEvents": true, "color": "#f0a300", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f0a300", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.5, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_264ef75b03ad48d540cc07548fcc7ffe = L.circleMarker( |
|||
[35.0196331, 50.3652364], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.166666666666667, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_cc91a91e1a13972c8e2823e034a2b78f = L.circleMarker( |
|||
[29.571858, 57.301047], |
|||
{"bubblingMouseEvents": true, "color": "#e1a100", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#e1a100", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.966666666666667, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_73196c66e0d3d276bbf4971b8a013cfb = L.circleMarker( |
|||
[36.9555967, 45.3878933], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_b12bacd38ceb20c65568c9121c06a7e6 = L.circleMarker( |
|||
[30.2623521, 51.9836519], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.066666666666666, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_c23e9c075fe128770badc61972ccf8b1 = L.circleMarker( |
|||
[36.5659626, 53.0586327], |
|||
{"bubblingMouseEvents": true, "color": "#e7a200", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#e7a200", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.766666666666667, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_db30c479cfc5934866a2242d8520664f = L.circleMarker( |
|||
[38.0738612, 46.2978789], |
|||
{"bubblingMouseEvents": true, "color": "#969600", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#969600", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 7.133333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_1165ceae7e366f6b716eac88b3cbff3f = L.circleMarker( |
|||
[34.0862719, 49.6893884], |
|||
{"bubblingMouseEvents": true, "color": "#f3a300", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f3a300", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.4, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_6b0d921bf5ebd0d01ed37a2db2707d29 = L.circleMarker( |
|||
[35.8224892, 50.9904681], |
|||
{"bubblingMouseEvents": true, "color": "#b49a00", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#b49a00", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6.266666666666667, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_d7e11b81800a752e0975c4021a62b358 = L.circleMarker( |
|||
[36.5452581, 52.6846571], |
|||
{"bubblingMouseEvents": true, "color": "#eaa200", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#eaa200", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.7, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_714cca1142db82ee2808acaa4391125f = L.circleMarker( |
|||
[33.4842109, 48.3538276], |
|||
{"bubblingMouseEvents": true, "color": "#f9a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f9a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.233333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_19f49ada41c100321b0de950a5cae004 = L.circleMarker( |
|||
[34.3239414, 47.0735891], |
|||
{"bubblingMouseEvents": true, "color": "#f3a300", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f3a300", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.433333333333334, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_1667606bc15032c828b1866bb3ea3913 = L.circleMarker( |
|||
[34.6422939, 50.8801184], |
|||
{"bubblingMouseEvents": true, "color": "#f3a300", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f3a300", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.4, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_7a9c5ac2711e3ccecb19ea646ef7e46b = L.circleMarker( |
|||
[35.3843145, 54.6209302], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.166666666666667, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_6cc89a8af24aa6159ca1f672d4b42c94 = L.circleMarker( |
|||
[37.2793607, 49.5846102], |
|||
{"bubblingMouseEvents": true, "color": "#d89f00", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#d89f00", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5.2, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_cb907ba05041b0a0c968888444ba47a1 = L.circleMarker( |
|||
[36.0156291, 49.8398161], |
|||
{"bubblingMouseEvents": true, "color": "#e7a200", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#e7a200", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.766666666666667, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_0e696325c486c48fbc56bf2b5d884e1c = L.circleMarker( |
|||
[35.7065519, 51.4553993], |
|||
{"bubblingMouseEvents": true, "color": "#f6a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f6a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.3, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_1ac13661699fd047c88e94a83607b712 = L.circleMarker( |
|||
[32.8633961, 59.2177294], |
|||
{"bubblingMouseEvents": true, "color": "#f9a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f9a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.233333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_c2cbdc9759fa800f7a623a116b1befb3 = L.circleMarker( |
|||
[33.456488, 50.2883303], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.066666666666666, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_12128693c278078d82c0ebf8c2677e2e = L.circleMarker( |
|||
[28.8936645, 51.3204877], |
|||
{"bubblingMouseEvents": true, "color": "#f6a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f6a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.333333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_a57a18acb87a041b2459519a74a7ebd2 = L.circleMarker( |
|||
[32.3887062, 51.3737142], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.066666666666666, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_f4e934bd01442408dcb282d37553bab7 = L.circleMarker( |
|||
[30.3636097, 48.2591475], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.066666666666666, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_9ff75b4b521261d5b7392de6c52052b2 = L.circleMarker( |
|||
[36.2105604, 58.7922291], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.1, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_2427b1bba014e953b8e978b5fd00ee76 = L.circleMarker( |
|||
[29.9283973, 56.5717384], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_ec2e9e0ea5d725fd285cb51de155344e = L.circleMarker( |
|||
[36.7651739, 45.7218136], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.1, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_c17583cf1cb90d14a48c66d2431ae291 = L.circleMarker( |
|||
[25.2935488, 60.6469115], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_abdddc83d839b8b7c72633232f7ada80 = L.circleMarker( |
|||
[35.3126047, 46.9978639], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.166666666666667, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_d5f081a7804971c33444e871d750cd10 = L.circleMarker( |
|||
[36.177868, 50.7655155], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_69284cc206a87fdb402364d3e8f5e46d = L.circleMarker( |
|||
[32.3257366, 50.8497369], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.166666666666667, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_2d5245abe214f1b9e12bfa5755d7886d = L.circleMarker( |
|||
[31.9719093, 51.291596], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.066666666666666, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_b59cb0fc4b7f98f71a2deaeda4f9ddb1 = L.circleMarker( |
|||
[32.2003687, 48.2489839], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.1, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_f091cc71d028bd276fd8e6c0d4a66fe3 = L.circleMarker( |
|||
[39.6461735, 47.918551], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_5a176cd2b07887bfc422dc6e1a6cf73d = L.circleMarker( |
|||
[37.548341, 45.0667111], |
|||
{"bubblingMouseEvents": true, "color": "#dba000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#dba000", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5.1, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_99d66bfcd1ec56649b8b94edbb801693 = L.circleMarker( |
|||
[33.8943281, 48.7560936], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.166666666666667, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_3efcab51289a5879c6e40a6b0092e736 = L.circleMarker( |
|||
[36.4718947, 52.3499009], |
|||
{"bubblingMouseEvents": true, "color": "#f6a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f6a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.333333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_165a5a5f4e189d755dc2233ec2f3a58a = L.circleMarker( |
|||
[35.954365, 52.1103419], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.1, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_c898f9de716fe98b3f222ca672587a33 = L.circleMarker( |
|||
[30.8925778, 52.688496], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_7414bb370883d52c675e052b7d8780ef = L.circleMarker( |
|||
[36.9083415, 54.8675871], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.1, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_77cb0d8a7246b97a7a2d4b530e03a749 = L.circleMarker( |
|||
[27.1505605, 57.0752814], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.1, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_f4a46fa61d35205b74d09f0449f0aeca = L.circleMarker( |
|||
[36.6506329, 51.4223717], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.2, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_5bf29d6700e921a9cf3947b03ad7400c = L.circleMarker( |
|||
[29.4928874, 60.8503017], |
|||
{"bubblingMouseEvents": true, "color": "#f6a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f6a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.333333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_753040cc8ca0b718ffe82ef1592532e6 = L.circleMarker( |
|||
[33.1545696, 46.7576343], |
|||
{"bubblingMouseEvents": true, "color": "#f9a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f9a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.233333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_73f19c8905133186982a977d3edb6976 = L.circleMarker( |
|||
[29.1059864, 58.3565663], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.066666666666666, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_5b04f5e1ca3a6ce10a91d7020f44a2e7 = L.circleMarker( |
|||
[32.0492034, 48.851281], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_85023dab097f9cfa4dad30b7150553b7 = L.circleMarker( |
|||
[38.4774934, 47.0662215], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.066666666666666, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_2e09d18a1c9832a2b8a7ceab99e110d4 = L.circleMarker( |
|||
[30.4333105, 48.1779858], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_5ba912933a2e7948f0584bb21f292366 = L.circleMarker( |
|||
[35.6589015, 51.0586022], |
|||
{"bubblingMouseEvents": true, "color": "#f6a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f6a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.3, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_5576c276e6669c29fead93e66f7a5d59 = L.circleMarker( |
|||
[36.515854, 48.4777616], |
|||
{"bubblingMouseEvents": true, "color": "#f9a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f9a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.233333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_1a55c67979276999e0470234c72cf524 = L.circleMarker( |
|||
[30.5942116, 50.2434119], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.133333333333334, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_14deadbbd2f6032eb5914a1ffda935f2 = L.circleMarker( |
|||
[35.9641824, 50.6858036], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.133333333333334, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_a1c91d8d6e11349f1173cc73d40b3f36 = L.circleMarker( |
|||
[37.378812499999995, 46.250922101253664], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.1, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_6ca2479e33b574410348c9dbce3bce64 = L.circleMarker( |
|||
[33.533792, 47.6078615], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.066666666666666, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_bf46ae08167a50d3010ff51bac4ed078 = L.circleMarker( |
|||
[35.9558897, 50.6097443], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.066666666666666, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_3243049ffe4b71e0d7a101036097e784 = L.circleMarker( |
|||
[37.4284148, 47.7058119], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.066666666666666, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_ac457922b387da3c414d54c6367d2ab8 = L.circleMarker( |
|||
[36.6912955, 53.5432769], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_641887e082b0ad534ee199c1d655b9a8 = L.circleMarker( |
|||
[27.9502255, 57.7025775], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_0d6c128efb7193c89145cb515dad9b27 = L.circleMarker( |
|||
[34.1896877, 48.3716218], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_34c894dc2f76eb6a3b8bb9ad61265f40 = L.circleMarker( |
|||
[36.2134053, 57.6808799], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.066666666666666, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_6d60848107772f38c823b009b0161899 = L.circleMarker( |
|||
[32.2510825, 54.0159205], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.1, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_3f01ba453207187864b457fddee3fd4a = L.circleMarker( |
|||
[29.8762905, 52.8062895], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.1, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_943fb992a5744b7a3563a727fbe93845 = L.circleMarker( |
|||
[38.4583983, 47.9313001], |
|||
{"bubblingMouseEvents": true, "color": "#f9a400", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f9a400", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.233333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_f7405a874e2962aa87d7f5e5f416dabd = L.circleMarker( |
|||
[32.3780257, 48.4032064], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.1, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_3a5705a9b88e2987f432b17fbc5db48f = L.circleMarker( |
|||
[35.5478513, 51.2318676], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.166666666666667, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_57b8bfbf487c6ca5fa11ff32846af6ca = L.circleMarker( |
|||
[28.5014092, 53.5695867], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.1, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_08c98dc40054951e080d92fa0762b41a = L.circleMarker( |
|||
[31.1627056, 52.6490454], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.066666666666666, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_695c1e7aa85a331a60cae628b69ef23a = L.circleMarker( |
|||
[35.3283255, 51.6460307], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.2, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_9b8aecf6ec7fdd60697691294c867a10 = L.circleMarker( |
|||
[36.6830883, 52.5217808], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.066666666666666, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_3ef24f6b53129c8bf9e82c65875c6dbd = L.circleMarker( |
|||
[35.2432546, 60.626313], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.066666666666666, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_a7f9a4b5e0e9b3d8b37fddab75080179 = L.circleMarker( |
|||
[35.734772, 51.9063798], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_9201f7cf414dff265a9a0831ce60966f = L.circleMarker( |
|||
[35.2083683, 48.7242053], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_5c9824e99535ae2ac38820518e498f28 = L.circleMarker( |
|||
[36.4636399, 52.8579311], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.166666666666667, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_2dfff3654f6ab1ff86ee21ceb8e57116 = L.circleMarker( |
|||
[37.4592329, 49.523213], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.1, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_16c9df750366eb8939299d6a13c888bb = L.circleMarker( |
|||
[36.8154324, 50.8787003], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.1, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_fccef0b44698ba10fdbf4e14f870ae2a = L.circleMarker( |
|||
[30.402184, 55.9941776], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.133333333333334, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_a86fd732dffd9207f0cfae25bf6e98a2 = L.circleMarker( |
|||
[36.6511824, 53.2965182], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_21233caa9ea6af02069017dad3edfbcf = L.circleMarker( |
|||
[33.9876533, 51.4428856], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.2, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_ecf1ef1c50095f64157f1af087430298 = L.circleMarker( |
|||
[37.2060727, 50.0028774], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.2, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_d28069ec16cfe0931b2afa199c97cb69 = L.circleMarker( |
|||
[36.5215096, 46.2111837], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_3ac3b8fdc9ecc4afb629e4ded00a28ae = L.circleMarker( |
|||
[37.301672, 49.3147378], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.066666666666666, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_f60b0fbf4e770bac27c78238d926e702 = L.circleMarker( |
|||
[27.6619203, 54.3229561], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.066666666666666, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_768702910f3f98740f74e0cf795c57d7 = L.circleMarker( |
|||
[28.845604, 52.5727236], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_1913e3289331a4e6b43d561a887e2a78 = L.circleMarker( |
|||
[35.680133, 51.438073], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.2, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_464d0ec30f578b75b47e116ceae42f16 = L.circleMarker( |
|||
[36.5728497, 52.0073656], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_efc2564c19e9c7372cf74af0a64f6d0a = L.circleMarker( |
|||
[36.2427456, 46.2705227], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.066666666666666, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_0647c1181be8ebd94ca7720855622fe5 = L.circleMarker( |
|||
[28.9366395, 53.6510677], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_6052c7c566c643a6b1b116b20aea9b7d = L.circleMarker( |
|||
[31.0277779, 61.4948211], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.1, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_692af4605b77cfc47a6232281fde50f5 = L.circleMarker( |
|||
[34.2930003, 46.9378837], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_0256c6a3a1e34cb36ffc58b55eef7d3a = L.circleMarker( |
|||
[32.6938201, 51.5254892], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.066666666666666, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_f9708413f9c917d028f6e9d0377d3bb4 = L.circleMarker( |
|||
[37.1955948, 50.1529566], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_719f3fe5b97113cf6bcc1dca8485ae67 = L.circleMarker( |
|||
[37.1381592, 50.2927862], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_ae2c8cf56b423e26cc13e5d60137ddd8 = L.circleMarker( |
|||
[32.3424135, 51.5046633], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.1, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_d987e5b86a9fafbe8ca71fac1bda7b1c = L.circleMarker( |
|||
[35.1679005, 47.800886], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_702b19c3b80a1df7f60fd54396ba8e35 = L.circleMarker( |
|||
[34.7832217, 47.5988073], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.066666666666666, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_e76a6bab809fe4078ba6982a7ae7ac01 = L.circleMarker( |
|||
[31.5126237, 50.8303948], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_0df9ced956eb1b7d551cf56b94af7f19 = L.circleMarker( |
|||
[30.6681785, 51.581916], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.133333333333334, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_e6d155ec149437c8fa8399fdfdc2cddc = L.circleMarker( |
|||
[36.8219055, 49.4268249], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_59ef52cf95c7ebb0c350b042cbeccfc4 = L.circleMarker( |
|||
[33.78033785, 46.60246659075068], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_403c59f8ae97a5f048ccf3cced39c240 = L.circleMarker( |
|||
[33.4035124, 49.6921874], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_ac1dbf9df3aacdbc2fcc042fe1c23cae = L.circleMarker( |
|||
[35.4784573, 51.6824624], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_16fc477628a478ccd5aabc2b501e44e4 = L.circleMarker( |
|||
[35.7285207, 51.864313], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.066666666666666, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_782abfd6790a0a1f12915e5ff473ad81 = L.circleMarker( |
|||
[37.7974981, 48.904184], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.066666666666666, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_0a0a1de40d243a37db463ee947a0fa95 = L.circleMarker( |
|||
[36.0726006, 49.6937027], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.066666666666666, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_747f094a40aafbe280b3d7069810002a = L.circleMarker( |
|||
[36.20354, 49.1881871], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_ea3c8e0421273864e231df42bd0d6b3c = L.circleMarker( |
|||
[35.2740853, 59.2194494], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_0a9fc82710972eded6b3ef20af9b882b = L.circleMarker( |
|||
[36.1453788, 49.213005], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.1, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_cb10882cb28fcd61ba295b35d121a907 = L.circleMarker( |
|||
[38.5504343, 44.95354], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_4819bef9d0cc7783d5ae81c01305c4e9 = L.circleMarker( |
|||
[29.6203251, 51.6520826], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_db605a6aff7acc6a2123e9b9df685d04 = L.circleMarker( |
|||
[34.2922623, 48.8215749], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.1, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_6700d9d763205d2e383a465b930f8750 = L.circleMarker( |
|||
[39.029223, 48.0800478], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_3cd218218417f2328ea428c01584b9e2 = L.circleMarker( |
|||
[32.5576772, 51.5079153], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.066666666666666, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_0a9523df24b50751f7611cf6aed8d7de = L.circleMarker( |
|||
[34.4607687, 45.863763], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_c42508510d595a6cb08dc43a1e68810f = L.circleMarker( |
|||
[37.6254335, 57.3602414], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_0bdf07168ce95cfe6d83367f15a6e894 = L.circleMarker( |
|||
[28.6697367, 57.7373382], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.066666666666666, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_f62b284bcee98b9b896f2a36eb95e61b = L.circleMarker( |
|||
[32.2549162, 50.5624938], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.066666666666666, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_90ff06b861ad83d0551f6b07a2cd3786 = L.circleMarker( |
|||
[38.0869539, 46.28169783403382], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_e7cce3e426e181130e30c2c72a1d464c = L.circleMarker( |
|||
[38.4306358, 45.7741], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.066666666666666, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_bd02e1af81427657c30268b98e450919 = L.circleMarker( |
|||
[35.5219063, 46.1758889], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_0276127b38ee294113d182650652aa2a = L.circleMarker( |
|||
[38.1783704, 45.7002363], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_5a1d364da36afb1954dc59f4d92db010 = L.circleMarker( |
|||
[37.6192217, 48.5278144], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_31b2163f0e032bddcb0bc1d092c31e84 = L.circleMarker( |
|||
[32.0116032, 51.8651719], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.1, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_a6241c6fb024c314e56ba43df73bf28e = L.circleMarker( |
|||
[36.7008777, 52.6481047], |
|||
{"bubblingMouseEvents": true, "color": "#fca500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fca500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.133333333333334, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_cc0e7053c91461768256b2c9cae6a2a5 = L.circleMarker( |
|||
[31.1324814, 53.2803103], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_422621b83e160535d45ff300c7dccc59 = L.circleMarker( |
|||
[36.9225518, 50.6431897], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.066666666666666, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_8e82f8787b74b38a8b70a04032d43b17 = L.circleMarker( |
|||
[36.6400238, 52.9100038], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_5fecbd57324144436443c41886477cde = L.circleMarker( |
|||
[33.4992998, 49.0529575], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_f00268f8e0340cbd5a60c198443f2c28 = L.circleMarker( |
|||
[28.2203911, 61.2137052], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_3888c872d956120ccb734ead258fdee7 = L.circleMarker( |
|||
[32.8556169, 51.558376], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.066666666666666, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_5cf37bc0dfaa00652551f5aa34fa1e80 = L.circleMarker( |
|||
[28.6543108, 51.3758834], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.066666666666666, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_7cc713a1913f211251c17837bb904656 = L.circleMarker( |
|||
[27.2069903, 60.6882515], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_8d5dc81cf9d2eccb72bff73ea9ff80e6 = L.circleMarker( |
|||
[37.2607374, 49.9456642], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_3bf5077c03c8e140528bf1ad28460138 = L.circleMarker( |
|||
[30.8134822, 56.5672432], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_b343e3599b522dc95f6d09335abfded4 = L.circleMarker( |
|||
[37.1432315, 46.1056025], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_c3d260e2c689078896d3bd8a1abad491 = L.circleMarker( |
|||
[38.1969035, 44.7685015], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_8667bee568d743e380932d38a8bd98f6 = L.circleMarker( |
|||
[37.2273234, 49.3141954], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_e9b01d1ca32d4a7069e100e0db0350ac = L.circleMarker( |
|||
[38.3979293, 47.6764836], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_cc543428180ab8a23404ada73beef2ca = L.circleMarker( |
|||
[35.2221321, 52.3385276], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_58df10e7a805db9bdc44a1fed35b98fd = L.circleMarker( |
|||
[27.1977195, 54.362564], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_c7a888d90e745fe8a04a10761fa04b92 = L.circleMarker( |
|||
[35.729757, 50.8109893], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_bdb9c2bd754e355973ae2424e8a68dc5 = L.circleMarker( |
|||
[38.4240161, 48.4840477], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_e1f76a280e03d9b21d2d3bd057166370 = L.circleMarker( |
|||
[35.4862079, 51.0515404], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.066666666666666, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_0a420a7a7969c84b480a7bded660b6ca = L.circleMarker( |
|||
[36.6418133, 53.2936513], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_fd9f0ca3411bca80ee4e5ed3c6accfdf = L.circleMarker( |
|||
[35.983333, 45.816667], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_239241703d03232a60a438e1f4d2718d = L.circleMarker( |
|||
[26.7687296, 55.84766533613099], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
|
|||
var circle_marker_aab9718b5de31f9fcdccead7188e3407 = L.circleMarker( |
|||
[32.4854294, 48.3270335], |
|||
{"bubblingMouseEvents": true, "color": "#ffa500", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa500", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.033333333333333, "stroke": true, "weight": 3} |
|||
).addTo(map_ed0e3a2523d5bb6726e4117d42d1d0e1); |
|||
|
|||
</script> |
|||
</html> |