vault backup: 2024-12-07 22:59:16

This commit is contained in:
sShemet
2024-12-07 22:59:16 +05:00
commit 5cc19787f0
41 changed files with 130386 additions and 0 deletions

5
.obsidian/app.json vendored Normal file
View File

@@ -0,0 +1,5 @@
{
"promptDelete": false,
"showUnsupportedFiles": true,
"alwaysUpdateLinks": true
}

4
.obsidian/appearance.json vendored Normal file
View File

@@ -0,0 +1,4 @@
{
"theme": "obsidian",
"accentColor": "#5c8af5"
}

5
.obsidian/community-plugins.json vendored Normal file
View File

@@ -0,0 +1,5 @@
[
"obsidian-full-calendar",
"obsidian-icon-folder",
"obsidian-git"
]

30
.obsidian/core-plugins.json vendored Normal file
View File

@@ -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
}

22
.obsidian/graph.json vendored Normal file
View File

@@ -0,0 +1,22 @@
{
"collapse-filter": true,
"search": "",
"showTags": false,
"showAttachments": false,
"hideUnresolved": false,
"showOrphans": true,
"collapse-color-groups": true,
"colorGroups": [],
"collapse-display": true,
"showArrow": false,
"textFadeMultiplier": 0,
"nodeSizeMultiplier": 1,
"lineSizeMultiplier": 1,
"collapse-forces": true,
"centerStrength": 0.518713248970312,
"repelStrength": 10,
"linkStrength": 1,
"linkDistance": 250,
"scale": 1.6445151322070504,
"close": true
}

View File

@@ -0,0 +1,10 @@
{
"calendarSources": [],
"defaultCalendar": 0,
"firstDay": 0,
"initialView": {
"desktop": "timeGridWeek",
"mobile": "timeGrid3Days"
},
"timeFormat24h": false
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,11 @@
{
"id": "obsidian-full-calendar",
"name": "Full Calendar",
"version": "0.10.7",
"minAppVersion": "0.16.3",
"description": "Obsidian integration with Full Calendar (fullcalendar.io)",
"author": "Davis Haupt",
"authorUrl": "https://davi.sh",
"isDesktopOnly": false,
"fundingUrl": "https://ko-fi.com/davish"
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,56 @@
{
"commitMessage": "vault backup: {{date}}",
"commitDateFormat": "YYYY-MM-DD HH:mm:ss",
"autoSaveInterval": 0,
"autoPushInterval": 0,
"autoPullInterval": 0,
"autoPullOnBoot": false,
"disablePush": false,
"pullBeforePush": true,
"disablePopups": false,
"disablePopupsForNoChanges": false,
"listChangedFilesInMessageBody": false,
"showStatusBar": true,
"updateSubmodules": false,
"syncMethod": "merge",
"customMessageOnAutoBackup": false,
"autoBackupAfterFileChange": false,
"treeStructure": false,
"refreshSourceControl": true,
"basePath": "",
"differentIntervalCommitAndPush": false,
"changedFilesInStatusBar": false,
"showedMobileNotice": true,
"refreshSourceControlTimer": 7000,
"showBranchStatusBar": true,
"setLastSaveToLastCommit": false,
"submoduleRecurseCheckout": false,
"gitDir": "",
"showFileMenu": true,
"authorInHistoryView": "hide",
"dateInHistoryView": false,
"lineAuthor": {
"show": false,
"followMovement": "inactive",
"authorDisplay": "initials",
"showCommitHash": false,
"dateTimeFormatOptions": "date",
"dateTimeFormatCustomString": "YYYY-MM-DD HH:mm",
"dateTimeTimezone": "viewer-local",
"coloringMaxAge": "1y",
"colorNew": {
"r": 255,
"g": 150,
"b": 150
},
"colorOld": {
"r": 120,
"g": 160,
"b": 255
},
"textColorCss": "var(--text-muted)",
"ignoreWhitespace": false,
"gutterSpacingFallbackLength": 5
},
"autoCommitMessage": "vault backup: {{date}}"
}

383
.obsidian/plugins/obsidian-git/main.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,10 @@
{
"author": "Vinzent",
"authorUrl": "https://github.com/Vinzent03",
"id": "obsidian-git",
"name": "Git",
"description": "Integrate Git version control with automatic backup and other advanced features.",
"isDesktopOnly": false,
"fundingUrl": "https://ko-fi.com/vinzent",
"version": "2.30.1"
}

View File

@@ -0,0 +1,23 @@
#!/bin/sh
PROMPT="$1"
TEMP_FILE="$OBSIDIAN_GIT_CREDENTIALS_INPUT"
cleanup() {
rm -f "$TEMP_FILE" "$TEMP_FILE.response"
}
trap cleanup EXIT
echo "$PROMPT" > "$TEMP_FILE"
while [ ! -e "$TEMP_FILE.response" ]; do
if [ ! -e "$TEMP_FILE" ]; then
echo "Trigger file got removed: Abort" >&2
exit 1
fi
sleep 0.1
done
RESPONSE=$(cat "$TEMP_FILE.response")
echo "$RESPONSE"

View File

@@ -0,0 +1,566 @@
@keyframes loading {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.workspace-leaf-content[data-type="git-view"] .button-border {
border: 2px solid var(--interactive-accent);
border-radius: var(--radius-s);
}
.workspace-leaf-content[data-type="git-view"] .view-content {
padding: 0;
}
.workspace-leaf-content[data-type="git-history-view"] .view-content {
padding: 0;
}
.loading > svg {
animation: 2s linear infinite loading;
transform-origin: 50% 50%;
display: inline-block;
}
.obsidian-git-center {
margin: auto;
text-align: center;
width: 50%;
}
.obsidian-git-textarea {
display: block;
margin-left: auto;
margin-right: auto;
}
.obsidian-git-disabled {
opacity: 0.5;
}
.obsidian-git-center-button {
display: block;
margin: 20px auto;
}
.tooltip.mod-left {
overflow-wrap: break-word;
}
.tooltip.mod-right {
overflow-wrap: break-word;
}
.git-tools {
display: flex;
margin-left: auto;
}
.git-tools .type {
padding-left: var(--size-2-1);
display: flex;
align-items: center;
justify-content: center;
width: 11px;
}
.git-tools .type[data-type="M"] {
color: orange;
}
.git-tools .type[data-type="D"] {
color: red;
}
.git-tools .buttons {
display: flex;
}
.git-tools .buttons > * {
padding: 0 0;
height: auto;
}
.is-active .git-tools .buttons > * {
color: var(--nav-item-color-active);
}
.git-author {
color: var(--text-accent);
}
.git-date {
color: var(--text-accent);
}
.git-ref {
color: var(--text-accent);
}
.workspace-leaf-content[data-type="diff-view"] .d2h-d-none {
display: none;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-wrapper {
text-align: left;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-header {
background-color: var(--background-primary);
border-bottom: 1px solid var(--interactive-accent);
font-family: var(--font-monospace);
height: 35px;
padding: 5px 10px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-header,
.workspace-leaf-content[data-type="diff-view"] .d2h-file-stats {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-stats {
font-size: 14px;
margin-left: auto;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-lines-added {
border: 1px solid #b4e2b4;
border-radius: 5px 0 0 5px;
color: #399839;
padding: 2px;
text-align: right;
vertical-align: middle;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-lines-deleted {
border: 1px solid #e9aeae;
border-radius: 0 5px 5px 0;
color: #c33;
margin-left: 1px;
padding: 2px;
text-align: left;
vertical-align: middle;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-name-wrapper {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
font-size: 15px;
width: 100%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-name {
overflow-x: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-wrapper {
border: 1px solid var(--background-modifier-border);
border-radius: 3px;
margin-bottom: 1em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse {
-webkit-box-pack: end;
-ms-flex-pack: end;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
border: 1px solid var(--background-modifier-border);
border-radius: 3px;
cursor: pointer;
display: none;
font-size: 12px;
justify-content: flex-end;
padding: 4px 8px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse.d2h-selected {
background-color: #c8e1ff;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse-input {
margin: 0 4px 0 0;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-diff-table {
border-collapse: collapse;
font-family: Menlo, Consolas, monospace;
font-size: 13px;
width: 100%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-files-diff {
width: 100%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-diff {
overflow-y: hidden;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-side-diff {
display: inline-block;
margin-bottom: -8px;
margin-right: -4px;
overflow-x: scroll;
overflow-y: hidden;
width: 50%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line {
padding: 0 8em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line {
display: inline-block;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
white-space: nowrap;
width: 100%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line {
padding: 0 4.5em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line-ctn {
word-wrap: normal;
background: none;
display: inline-block;
padding: 0;
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
vertical-align: middle;
white-space: pre;
width: 100%;
}
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-code-line del,
.theme-light
.workspace-leaf-content[data-type="diff-view"]
.d2h-code-side-line
del {
background-color: #ffb6ba;
}
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-code-line del,
.theme-dark
.workspace-leaf-content[data-type="diff-view"]
.d2h-code-side-line
del {
background-color: #8d232881;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line del,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line del,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line ins {
border-radius: 0.2em;
display: inline-block;
margin-top: -1px;
text-decoration: none;
vertical-align: middle;
}
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins,
.theme-light
.workspace-leaf-content[data-type="diff-view"]
.d2h-code-side-line
ins {
background-color: #97f295;
text-align: left;
}
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins,
.theme-dark
.workspace-leaf-content[data-type="diff-view"]
.d2h-code-side-line
ins {
background-color: #1d921996;
text-align: left;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line-prefix {
word-wrap: normal;
background: none;
display: inline;
padding: 0;
white-space: pre;
}
.workspace-leaf-content[data-type="diff-view"] .line-num1 {
float: left;
}
.workspace-leaf-content[data-type="diff-view"] .line-num1,
.workspace-leaf-content[data-type="diff-view"] .line-num2 {
-webkit-box-sizing: border-box;
box-sizing: border-box;
overflow: hidden;
padding: 0 0.5em;
text-overflow: ellipsis;
width: 3.5em;
}
.workspace-leaf-content[data-type="diff-view"] .line-num2 {
float: right;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber {
background-color: var(--background-primary);
border: solid var(--background-modifier-border);
border-width: 0 1px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
color: var(--text-muted);
cursor: pointer;
display: inline-block;
position: absolute;
text-align: right;
width: 7.5em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber:after {
content: "\200b";
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber {
background-color: var(--background-primary);
border: solid var(--background-modifier-border);
border-width: 0 1px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
color: var(--text-muted);
cursor: pointer;
display: inline-block;
overflow: hidden;
padding: 0 0.5em;
position: absolute;
text-align: right;
text-overflow: ellipsis;
width: 4em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-diff-tbody tr {
position: relative;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber:after {
content: "\200b";
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-emptyplaceholder,
.workspace-leaf-content[data-type="diff-view"] .d2h-emptyplaceholder {
background-color: var(--background-primary);
border-color: var(--background-modifier-border);
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line-prefix,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber,
.workspace-leaf-content[data-type="diff-view"] .d2h-emptyplaceholder {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber {
direction: rtl;
}
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-del {
background-color: #fee8e9;
border-color: #e9aeae;
}
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-ins {
background-color: #dfd;
border-color: #b4e2b4;
}
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-del {
background-color: #521b1d83;
border-color: #691d1d73;
}
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-ins {
background-color: rgba(30, 71, 30, 0.5);
border-color: #13501381;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-info {
background-color: var(--background-primary);
border-color: var(--background-modifier-border);
color: var(--text-normal);
}
.theme-light
.workspace-leaf-content[data-type="diff-view"]
.d2h-file-diff
.d2h-del.d2h-change {
background-color: #fdf2d0;
}
.theme-dark
.workspace-leaf-content[data-type="diff-view"]
.d2h-file-diff
.d2h-del.d2h-change {
background-color: #55492480;
}
.theme-light
.workspace-leaf-content[data-type="diff-view"]
.d2h-file-diff
.d2h-ins.d2h-change {
background-color: #ded;
}
.theme-dark
.workspace-leaf-content[data-type="diff-view"]
.d2h-file-diff
.d2h-ins.d2h-change {
background-color: rgba(37, 78, 37, 0.418);
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-wrapper {
margin-bottom: 10px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-wrapper a {
color: #3572b0;
text-decoration: none;
}
.workspace-leaf-content[data-type="diff-view"]
.d2h-file-list-wrapper
a:visited {
color: #3572b0;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-header {
text-align: left;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-title {
font-weight: 700;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-line {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
text-align: left;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list {
display: block;
list-style: none;
margin: 0;
padding: 0;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list > li {
border-bottom: 1px solid var(--background-modifier-border);
margin: 0;
padding: 5px 10px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list > li:last-child {
border-bottom: none;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-switch {
cursor: pointer;
display: none;
font-size: 10px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-icon {
fill: currentColor;
margin-right: 10px;
vertical-align: middle;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-deleted {
color: #c33;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-added {
color: #399839;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-changed {
color: #d0b44c;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-moved {
color: #3572b0;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-tag {
background-color: var(--background-primary);
display: -webkit-box;
display: -ms-flexbox;
display: flex;
font-size: 10px;
margin-left: 5px;
padding: 0 2px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-deleted-tag {
border: 2px solid #c33;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-added-tag {
border: 1px solid #399839;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-changed-tag {
border: 1px solid #d0b44c;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-moved-tag {
border: 1px solid #3572b0;
}
/* ====================== Line Authoring Information ====================== */
.cm-gutterElement.obs-git-blame-gutter {
/* Add background color to spacing inbetween and around the gutter for better aesthetics */
border-width: 0px 2px 0.2px 2px;
border-style: solid;
border-color: var(--background-secondary);
background-color: var(--background-secondary);
}
.cm-gutterElement.obs-git-blame-gutter > div,
.line-author-settings-preview {
/* delegate text color to settings */
color: var(--obs-git-gutter-text);
font-family: monospace;
height: 100%; /* ensure, that age-based background color occupies entire parent */
text-align: right;
padding: 0px 6px 0px 6px;
white-space: pre; /* Keep spaces and do not collapse them. */
}
@media (max-width: 800px) {
/* hide git blame gutter not to superpose text */
.cm-gutterElement.obs-git-blame-gutter {
display: none;
}
}

View File

@@ -0,0 +1,38 @@
{
"settings": {
"migrated": 6,
"iconPacksPath": ".obsidian/icons",
"fontSize": 16,
"emojiStyle": "native",
"iconColor": null,
"recentlyUsedIcons": [
"LiAmbulance",
"LiActivitySquare",
"LiAreaChart"
],
"recentlyUsedIconsSize": 5,
"rules": [],
"extraMargin": {
"top": 0,
"right": 4,
"bottom": 0,
"left": 0
},
"iconInTabsEnabled": true,
"iconInTitleEnabled": true,
"iconInTitlePosition": "above",
"iconInFrontmatterEnabled": true,
"iconInFrontmatterFieldName": "icon",
"iconColorInFrontmatterFieldName": "iconColor",
"iconsBackgroundCheckEnabled": true,
"iconsInNotesEnabled": true,
"iconsInLinksEnabled": true,
"iconIdentifier": ":",
"lucideIconPackType": "native",
"debugMode": false,
"useInternalPlugins": false
},
"WORK & PROJECTS": "LiAreaChart",
"WORK & PROJECTS/Mol": "LiActivitySquare",
"WORK & PROJECTS/Ulab": "LiAmbulance"
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,10 @@
{
"id": "obsidian-icon-folder",
"name": "Iconize",
"version": "2.14.6",
"minAppVersion": "0.9.12",
"description": "Add icons to anything you desire in Obsidian, including files, folders, and text.",
"author": "Florian Woelki",
"authorUrl": "https://florianwoelki.com/",
"isDesktopOnly": false
}

View File

@@ -0,0 +1,119 @@
.iconize-inline-title-wrapper {
width: var(--line-width);
margin-inline: var(--content-margin);
}
.iconize-title-icon {
max-width: var(--max-width);
margin-right: var(--size-4-2);
}
.iconize-icon-in-link {
transform: translateY(20%);
margin-right: var(--size-2-2);
display: inline-flex;
}
.iconize-icon {
border: 1px solid transparent;
margin: 0px 4px 0px 0px;
display: flex;
align-self: center;
margin: auto 0;
}
.nav-folder-title,
.nav-file-title {
align-items: center;
}
.iconize-setting input[type='color'] {
margin: 0 6px;
}
.iconize-modal.prompt-results {
margin: 0;
overflow-y: auto;
display: grid;
grid-template-columns: repeat(5, minmax(0, 1fr));
}
.prompt .iconize-subheadline {
margin-top: 12px;
font-size: 12px;
color: gray;
grid-column-start: 1;
grid-column-end: 6;
}
@media (max-width: 640px) {
.iconize-modal.prompt-results {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.prompt .iconize-subheadline {
grid-column-end: 4;
}
}
.iconize-modal.prompt-results .suggestion-item {
cursor: pointer;
white-space: pre-wrap;
display: flex;
justify-content: flex-end;
align-items: center;
flex-direction: column-reverse;
text-align: center;
font-size: 13px;
color: var(--text-muted);
padding: 16px 8px;
line-break: auto;
word-break: break-word;
line-height: 1.3;
}
.iconize-modal.prompt-results .suggestion-item.suggestion-item__center {
justify-content: center;
}
.iconize-icon-preview {
font-size: 22px;
}
.iconize-icon-preview img {
width: 16px;
height: 16px;
}
.iconize-icon-preview svg {
width: 24px;
height: 24px;
color: currentColor;
margin-bottom: 4px;
}
.iconize-dragover {
position: relative;
}
.iconize-dragover-el {
position: absolute;
width: 100%;
height: 100%;
color: var(--text-normal);
background-color: var(--background-secondary-alt);
display: flex;
align-items: center;
justify-content: center;
}
/* Custom rule modal. */
.iconize-custom-modal .modal-content {
display: flex;
align-items: center;
justify-content: center;
}
.iconize-custom-modal .modal-content input {
width: 100%;
margin-right: 0.5rem;
}

211
.obsidian/workspace.json vendored Normal file
View File

@@ -0,0 +1,211 @@
{
"main": {
"id": "7cd8bb78e76490a7",
"type": "split",
"children": [
{
"id": "fdf86e2ed485db82",
"type": "tabs",
"children": [
{
"id": "09819c3b868a102a",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "WORK & PROJECTS/Mol/Серверы/00_Список серверов.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "00_Список серверов"
}
}
]
}
],
"direction": "vertical"
},
"left": {
"id": "778ea157b2ae582e",
"type": "split",
"children": [
{
"id": "cf1450c22d475b64",
"type": "tabs",
"children": [
{
"id": "221c41e61c302338",
"type": "leaf",
"state": {
"type": "file-explorer",
"state": {
"sortOrder": "alphabetical"
},
"icon": "lucide-folder-closed",
"title": "Файловый менеджер"
}
},
{
"id": "d8e904468e9e51c0",
"type": "leaf",
"state": {
"type": "search",
"state": {
"query": "",
"matchingCase": false,
"explainSearch": false,
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical"
},
"icon": "lucide-search",
"title": "Поиск"
}
},
{
"id": "83306eaaf1db4a0f",
"type": "leaf",
"state": {
"type": "bookmarks",
"state": {},
"icon": "lucide-bookmark",
"title": "Закладки"
}
}
]
}
],
"direction": "horizontal",
"width": 363.500732421875
},
"right": {
"id": "5a12b65cf742d665",
"type": "split",
"children": [
{
"id": "180cb69b65617b25",
"type": "tabs",
"children": [
{
"id": "3d299a116634427d",
"type": "leaf",
"state": {
"type": "backlink",
"state": {
"file": "WORK & PROJECTS/Ulab/Доступы к точкам.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
"showSearch": false,
"searchQuery": "",
"backlinkCollapsed": false,
"unlinkedCollapsed": true
},
"icon": "links-coming-in",
"title": "Обратные ссылки для Доступы к точкам"
}
},
{
"id": "09d86309ffcb5b3b",
"type": "leaf",
"state": {
"type": "outgoing-link",
"state": {
"file": "WORK & PROJECTS/Ulab/Доступы к точкам.md",
"linksCollapsed": false,
"unlinkedCollapsed": true
},
"icon": "links-going-out",
"title": "Исходящие ссылки из Доступы к точкам"
}
},
{
"id": "55c15b0f4ae9006f",
"type": "leaf",
"state": {
"type": "tag",
"state": {
"sortOrder": "frequency",
"useHierarchy": true
},
"icon": "lucide-tags",
"title": "Теги"
}
},
{
"id": "5df88436af119afe",
"type": "leaf",
"state": {
"type": "outline",
"state": {
"file": "WORK & PROJECTS/Ulab/Доступы к точкам.md"
},
"icon": "lucide-list",
"title": "Структура Доступы к точкам"
}
},
{
"id": "c463341da3a7d6da",
"type": "leaf",
"state": {
"type": "git-view",
"state": {},
"icon": "git-pull-request",
"title": "Source Control"
}
}
],
"currentTab": 4
}
],
"direction": "horizontal",
"width": 300
},
"left-ribbon": {
"hiddenItems": {
"switcher:Меню быстрого перехода": false,
"graph:Граф": false,
"canvas:Создать новый холст": false,
"daily-notes:Сегодняшняя заметка": false,
"templates:Вставить шаблон": false,
"command-palette:Открыть палитру команд": false,
"obsidian-full-calendar:Open Full Calendar": false,
"obsidian-git:Open Git source control": false
}
},
"active": "221c41e61c302338",
"lastOpenFiles": [
"WORK & PROJECTS/Mol/Планы и диаграммы/План разработки.md",
"WORK & PROJECTS/Mol/Документы ООО Моль-софт/001.pdf",
"WORK & PROJECTS/Mol/Документы для ТЗ ЛИМС/ГОСТ 53798.pdf",
"WORK & PROJECTS/Mol/Документы для ТЗ ЛИМС/ГОСТ 17025 2019.pdf",
"WORK & PROJECTS/Mol/Документы для ТЗ ЛИМС/~$ЛИМС_Опросный_лист_поТТ_от_21_10_2024_для_Исполнителя.xlsx",
"WORK & PROJECTS/Mol/Продукты",
"Скрипт blender Set Origin to Bottom Centre.md",
"WORK & PROJECTS/Mol/Документы ООО Моль-софт/003.pdf",
"WORK & PROJECTS/Ulab/Формы импорта оборудования.zip",
"WORK & PROJECTS/Ulab/ФОСАГРО Доступ SAShemet.docx.pdf",
"WORK & PROJECTS/Mol/Документы ООО Моль-софт/documentPackage_83479332.zip",
"WORK & PROJECTS/Mol/Документы для ТЗ ЛИМС/ЛИМС_Опросный_лист_поТТ_от_21_10_2024_для_Исполнителя.xlsx",
"WORK & PROJECTS/Mol/Серверы/Схема инфраструктуры.canvas",
"WORK & PROJECTS/Mol/Серверы/crm.mol-soft.ru.md",
"WORK & PROJECTS/Mol/Серверы/Jira Confluence.md",
"WORK & PROJECTS/Mol/Серверы/mail.mol-soft.ru.md",
"WORK & PROJECTS/Mol/Серверы/00_Список серверов.md",
"WORK & PROJECTS/Mol/Серверы/mol-desk.ru PROD.md",
"WORK & PROJECTS/Mol/Серверы/VPN-GATE (Cerberus).md",
"WORK & PROJECTS/Mol/Серверы/1С Бухгалтерия.md",
"WORK & PROJECTS/Mol/Серверы/moldev.ru.md",
"WORK & PROJECTS/Ulab/Доступы к точкам.md",
"WORK & PROJECTS/Mol/Планы и диаграммы/ОБЩАЯ СХЕМА.md",
"WORK & PROJECTS/Mol/Без названия.md",
"WORK & PROJECTS/Ulab/testcode.md",
"2024-12-05.md",
"Добро пожаловать.md",
",sdaf,gnsd,fgn,sdmfgn.md",
"Без названия 2.canvas",
"Без названия.canvas",
"Без названия 1.canvas"
]
}

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,3 @@
[ТЫК на гугл-диск](https://docs.google.com/spreadsheets/d/1Rom1C0ylNKGdBvPYldCWapBlDc1r5Wms/edit?gid=1927546932#gid=1927546932)

View File

@@ -0,0 +1,11 @@
В работе
- [[mail.mol-soft.ru]] (доделать отправку)
- [[moldev.ru]] (перейти на bitbucket после переноса Jira)
- [[1С Бухгалтерия]] (установить и протестировать)
Планируются
- [[VPN-GATE (Cerberus)]] (настроить доступы к инфраструктуре)
- [[Jira Confluence]] (перенести с moldev)
- [[mol-desk.ru PROD]] (настроить полноценный прод с CI/CD)
- [[crm.mol-soft.ru]] (перенести bitrix с moldev)

View File

@@ -0,0 +1 @@
почтовый сервер

View File

@@ -0,0 +1 @@
Дев-сервер

View File

@@ -0,0 +1,10 @@
{
"nodes":[
{"id":"74a9c9df4b90fdb3","x":-1201,"y":-262,"width":400,"height":50,"type":"file","file":"WORK & PROJECTS/Mol/Серверы/Jira Confluence.md"},
{"id":"6275b5741bf26285","x":-686,"y":-262,"width":400,"height":50,"type":"file","file":"WORK & PROJECTS/Mol/Серверы/mail.mol-soft.ru.md"},
{"id":"898531ae75948834","x":165,"y":-600,"width":400,"height":60,"type":"file","file":"WORK & PROJECTS/Mol/Серверы/VPN-GATE (Cerberus).md"},
{"id":"b0513e10e691a707","x":463,"y":-132,"width":400,"height":50,"type":"file","file":"WORK & PROJECTS/Mol/Серверы/mol-desk.ru PROD.md"},
{"id":"1afd15cb21aa8f9e","x":-35,"y":-312,"width":400,"height":50,"type":"file","file":"WORK & PROJECTS/Mol/Серверы/crm.mol-soft.ru.md"}
],
"edges":[]
}

View File

@@ -0,0 +1 @@
https://docs.google.com/spreadsheets/d/1gPaz87lxEvPAxr9xRC9_jMtcdkuVY7or/edit?gid=989083186#gid=989083186

View File

@@ -0,0 +1,174 @@
<mxfile host="Electron" agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/24.7.17 Chrome/128.0.6613.36 Electron/32.0.1 Safari/537.36" version="24.7.17">
<diagram name="Страница — 1" id="v3HT4Cgg873dKbmONRVU">
<mxGraphModel dx="1976" dy="1107" grid="0" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="0" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="gJ0ydw9pl4z5VGWosjsA-4" value="БД ULAB" style="rounded=1;whiteSpace=wrap;html=1;verticalAlign=top;arcSize=5;fillColor=#0050ef;fontColor=#ffffff;strokeColor=#001DBC;" parent="1" vertex="1">
<mxGeometry x="-219" y="31" width="193.5" height="394" as="geometry" />
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-16" value="Таблица синхронизации" style="rounded=0;whiteSpace=wrap;html=1;verticalAlign=top;fontSize=9;strokeColor=#4f4f4f;" parent="1" vertex="1">
<mxGeometry x="-208.25" y="302" width="172" height="82" as="geometry" />
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-40" style="edgeStyle=none;curved=1;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;fontSize=12;startSize=8;endSize=8;strokeColor=#00b336;strokeWidth=4;" parent="1" source="gJ0ydw9pl4z5VGWosjsA-15" target="gJ0ydw9pl4z5VGWosjsA-16" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-15" value="Данные ЛИМС" style="rounded=0;whiteSpace=wrap;html=1;verticalAlign=top;fontSize=9;strokeColor=#4f4f4f;" parent="1" vertex="1">
<mxGeometry x="-208.25" y="62" width="172" height="194" as="geometry" />
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-1" value="Схема работы API ULAB в контексте интеграции с 1С:CRM СоЭкс" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=16;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="-537" y="-67" width="934" height="30" as="geometry" />
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-2" value="API / менеджер сообщений ULAB" style="rounded=1;whiteSpace=wrap;html=1;verticalAlign=top;arcSize=5;fillColor=#6a00ff;fontColor=#ffffff;strokeColor=#3700CC;" parent="1" vertex="1">
<mxGeometry x="5" y="-18" width="245" height="502" as="geometry" />
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-5" value="sync_messages" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-192.75" y="328" width="141" height="30" as="geometry" />
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-6" value="ba_tz" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-192.75" y="123.5" width="141" height="25" as="geometry" />
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-7" value="DOGOVORS" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-192.75" y="181.5" width="141" height="25" as="geometry" />
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-8" value="ACT_BASE" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-192.75" y="152.5" width="141" height="25" as="geometry" />
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-9" value="b_crm_company" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-192.75" y="93.5" width="141" height="25" as="geometry" />
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-10" value="...." style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-192.75" y="211.5" width="141" height="25" as="geometry" />
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-11" value="ЛИМС ULAB" style="rounded=1;whiteSpace=wrap;html=1;verticalAlign=top;arcSize=5;fillColor=#1ba1e2;fontColor=#ffffff;strokeColor=#006EAF;" parent="1" vertex="1">
<mxGeometry x="-480.25" y="28" width="193.5" height="400" as="geometry" />
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-18" style="edgeStyle=none;curved=1;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;fontSize=12;startSize=8;endSize=8;strokeColor=#ff2929;strokeWidth=4;" parent="1" source="gJ0ydw9pl4z5VGWosjsA-12" target="gJ0ydw9pl4z5VGWosjsA-13" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-22" style="edgeStyle=none;curved=1;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;fontSize=12;startSize=8;endSize=8;startArrow=classic;startFill=1;endArrow=none;endFill=0;strokeColor=#ff2929;strokeWidth=4;" parent="1" source="gJ0ydw9pl4z5VGWosjsA-12" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-544" y="124" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-12" value="Создание сущностей / обновление данных" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-461" y="93.5" width="155" height="60" as="geometry" />
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-20" style="edgeStyle=none;curved=1;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fontSize=12;startSize=8;endSize=8;strokeColor=#ff2929;strokeWidth=4;" parent="1" source="gJ0ydw9pl4z5VGWosjsA-13" target="gJ0ydw9pl4z5VGWosjsA-16" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-13" value="Генерация сообщений в таблице синхронизации" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-461" y="302" width="155" height="87" as="geometry" />
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-19" style="edgeStyle=none;curved=1;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0.003;entryY=0.321;entryDx=0;entryDy=0;entryPerimeter=0;fontSize=12;startSize=8;endSize=8;strokeColor=#ff2929;strokeWidth=4;" parent="1" source="gJ0ydw9pl4z5VGWosjsA-12" target="gJ0ydw9pl4z5VGWosjsA-15" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-23" value="Приём данных в API&lt;div&gt;по таймеру&lt;/div&gt;" style="rounded=0;whiteSpace=wrap;html=1;verticalAlign=top;fontSize=9;strokeColor=#4f4f4f;" parent="1" vertex="1">
<mxGeometry x="32" y="26.5" width="194" height="207.5" as="geometry" />
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-30" style="edgeStyle=none;curved=1;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;fontSize=12;startSize=8;endSize=8;strokeColor=#ff2929;strokeWidth=4;" parent="1" source="gJ0ydw9pl4z5VGWosjsA-24" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="396" y="346" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="47bH8__b01oG_WpL42qE-1" value="Запрос данных у ЛИМС" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=12;" parent="gJ0ydw9pl4z5VGWosjsA-30" vertex="1" connectable="0">
<mxGeometry x="-0.1141" y="-2" relative="1" as="geometry">
<mxPoint x="2" y="-2" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-24" value="" style="rounded=0;whiteSpace=wrap;html=1;verticalAlign=top;fontSize=9;strokeColor=#2D7600;fillColor=#60a917;fontColor=#ffffff;" parent="1" vertex="1">
<mxGeometry x="32" y="251.5" width="193" height="188" as="geometry" />
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-26" value="Передача новых неотправленных данных по запросу от 1C" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="58.5" y="264" width="141" height="50" as="geometry" />
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-27" value="Пометка сообщений как &quot;отправленные&quot;" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="58.5" y="322" width="141" height="53" as="geometry" />
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-28" value="Фиксация кодов ошибок" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="58.5" y="392" width="141" height="30" as="geometry" />
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-29" style="edgeStyle=none;curved=1;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;fontSize=12;startSize=8;endSize=8;strokeColor=#ff2929;strokeWidth=4;" parent="1" source="gJ0ydw9pl4z5VGWosjsA-5" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="32" y="343" as="targetPoint" />
<Array as="points">
<mxPoint x="-12" y="343" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-37" style="edgeStyle=none;curved=1;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.25;exitDx=0;exitDy=0;fontSize=12;startSize=8;endSize=8;startArrow=classic;startFill=1;endArrow=none;endFill=0;strokeColor=#00b336;strokeWidth=4;" parent="1" source="gJ0ydw9pl4z5VGWosjsA-31" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="514" y="111" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-31" value="API 1C" style="rounded=0;whiteSpace=wrap;html=1;verticalAlign=middle;fontSize=9;strokeColor=#4f4f4f;" parent="1" vertex="1">
<mxGeometry x="397" y="2" width="58" height="435.5" as="geometry" />
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-32" style="edgeStyle=none;curved=1;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;fontSize=12;startSize=8;endSize=8;strokeColor=#ff2929;strokeWidth=4;" parent="1" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-369" y="520" as="sourcePoint" />
<mxPoint x="-176" y="520" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-33" value="Путь передачи данных из ЛИМС" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=17;" parent="gJ0ydw9pl4z5VGWosjsA-32" vertex="1" connectable="0">
<mxGeometry x="0.381" y="-3" relative="1" as="geometry">
<mxPoint x="204" y="-2" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-34" value="Запрос и парсинг входящих данных" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="55" y="62" width="141" height="30" as="geometry" />
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-35" value="Изменение таблиц ЛИМС" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="55" y="101" width="141" height="30" as="geometry" />
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-36" value="Фиксация входящего сообщения и результата в таблице синхронизации" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="55" y="138" width="141" height="68.5" as="geometry" />
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-38" style="edgeStyle=none;curved=1;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.25;exitDx=0;exitDy=0;entryX=1.018;entryY=0.404;entryDx=0;entryDy=0;entryPerimeter=0;fontSize=12;startSize=8;endSize=8;strokeColor=#00b336;strokeWidth=4;" parent="1" source="gJ0ydw9pl4z5VGWosjsA-31" target="gJ0ydw9pl4z5VGWosjsA-23" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="47bH8__b01oG_WpL42qE-3" value="Запрос данных у 1С" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=12;" parent="gJ0ydw9pl4z5VGWosjsA-38" vertex="1" connectable="0">
<mxGeometry x="-0.0893" y="-4" relative="1" as="geometry">
<mxPoint y="2" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-39" style="edgeStyle=none;curved=1;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=0.999;entryY=0.353;entryDx=0;entryDy=0;entryPerimeter=0;fontSize=12;startSize=8;endSize=8;strokeColor=#00b336;strokeWidth=4;" parent="1" source="gJ0ydw9pl4z5VGWosjsA-23" target="gJ0ydw9pl4z5VGWosjsA-15" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-43" style="edgeStyle=none;curved=1;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;fontSize=12;startSize=8;endSize=8;strokeColor=#00b336;strokeWidth=4;startArrow=classic;startFill=1;endArrow=none;endFill=0;" parent="1" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-370" y="569" as="sourcePoint" />
<mxPoint x="-177" y="569" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="gJ0ydw9pl4z5VGWosjsA-44" value="Путь приёма данных из 1С:CRM" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=17;" parent="gJ0ydw9pl4z5VGWosjsA-43" vertex="1" connectable="0">
<mxGeometry x="0.381" y="-3" relative="1" as="geometry">
<mxPoint x="204" y="-2" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="UwFomfuWjIYo8jFzseUZ-1" style="edgeStyle=none;curved=1;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=12;startSize=8;endSize=8;strokeColor=#001DBC;strokeWidth=4;exitX=0.987;exitY=0.734;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0.022;entryY=0.408;entryDx=0;entryDy=0;entryPerimeter=0;fillColor=#0050ef;" edge="1" parent="1" source="gJ0ydw9pl4z5VGWosjsA-23" target="gJ0ydw9pl4z5VGWosjsA-31">
<mxGeometry relative="1" as="geometry">
<mxPoint x="322" y="162" as="sourcePoint" />
<mxPoint x="254" y="162" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="UwFomfuWjIYo8jFzseUZ-3" value="Отправка&lt;div&gt;присвоенных&lt;div&gt;ID&lt;/div&gt;&lt;/div&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=12;" vertex="1" connectable="0" parent="UwFomfuWjIYo8jFzseUZ-1">
<mxGeometry x="0.0389" y="1" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="UwFomfuWjIYo8jFzseUZ-5" style="edgeStyle=none;curved=1;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=12;startSize=8;endSize=8;strokeColor=#001DBC;strokeWidth=4;exitX=0.987;exitY=0.734;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0.022;entryY=0.408;entryDx=0;entryDy=0;entryPerimeter=0;fillColor=#0050ef;startArrow=classic;startFill=1;endArrow=none;endFill=0;" edge="1" parent="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="226" y="416" as="sourcePoint" />
<mxPoint x="401" y="417" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="UwFomfuWjIYo8jFzseUZ-6" value="Отправка&lt;div&gt;присвоенных&lt;div&gt;ID&lt;/div&gt;&lt;/div&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=12;" vertex="1" connectable="0" parent="UwFomfuWjIYo8jFzseUZ-5">
<mxGeometry x="0.0389" y="1" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
</root>
</mxGraphModel>
</diagram>
</mxfile>