From d930fd049c97c03927586ece1e5ab1228fa9c1ca Mon Sep 17 00:00:00 2001
From: IvanIvchenko <32459492+IvanIvchenko@users.noreply.github.com>
Date: Tue, 17 Oct 2017 16:46:07 +0300
Subject: [PATCH 01/28] =?UTF-8?q?3.=20=D0=9F=D0=BE=D0=BD=D1=8F=D1=82=D1=82?=
=?UTF-8?q?=D1=8F=20=D0=B7=D0=BC=D1=96=D0=BD=D0=BD=D0=BE=D1=97=20=D1=82?=
=?UTF-8?q?=D0=B0=20=D1=82=D0=B8=D0=BF=D1=83=20=D0=B4=D0=B0=D0=BD=D0=B8?=
=?UTF-8?q?=D1=85=20=D1=83=20Python?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
...0\320\264\320\260\320\275\320\270\320\265_1.py" | 6 ++++++
...0\320\264\320\260\320\275\320\270\320\265_2.py" | 5 +++++
...0\320\264\320\260\320\275\320\270\320\265_3.py" | 3 +++
...0\320\264\320\260\320\275\320\270\320\265_4.py" | 7 +++++++
...0\320\264\320\260\320\275\320\270\320\265_5.py" | 4 ++++
...0\320\264\320\260\320\275\320\270\320\265_6.py" | 11 +++++++++++
...0\320\264\320\260\320\275\320\270\320\265_7.py" | 14 ++++++++++++++
7 files changed, 50 insertions(+)
create mode 100644 "km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_1.py"
create mode 100644 "km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_2.py"
create mode 100644 "km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_3.py"
create mode 100644 "km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_4.py"
create mode 100644 "km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_5.py"
create mode 100644 "km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_6.py"
create mode 100644 "km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_7.py"
diff --git "a/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_1.py" "b/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_1.py"
new file mode 100644
index 00000000..48a67c94
--- /dev/null
+++ "b/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_1.py"
@@ -0,0 +1,6 @@
+numb1 = float(input("Введите первое число: "))
+numb2 = float(input("Введите второе число: "))
+numb3 = float(input("Введите третье число: "))
+answer = (numb1 + numb2 + numb3)
+print("Ответ: ", answer)
+input()
diff --git "a/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_2.py" "b/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_2.py"
new file mode 100644
index 00000000..4dbdad85
--- /dev/null
+++ "b/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_2.py"
@@ -0,0 +1,5 @@
+kat1 = float(input("Введите длину первого катета: "))
+kat2 = float(input("Введите длину второго катета: "))
+answer = ((kat1**2 + kat2**2)**(1/2))
+print("Ответ: %.2f"% answer)
+input()
diff --git "a/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_3.py" "b/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_3.py"
new file mode 100644
index 00000000..946ac0fd
--- /dev/null
+++ "b/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_3.py"
@@ -0,0 +1,3 @@
+name = input("Введите имя: ")
+print ('Hi, %s!' % name)
+input()
diff --git "a/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_4.py" "b/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_4.py"
new file mode 100644
index 00000000..9cede587
--- /dev/null
+++ "b/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_4.py"
@@ -0,0 +1,7 @@
+n = int(input("Введите колличество студентов: "))
+k = int(input("Введите колличество яблок: "))
+answer1 = (k//n)
+answer2 = (k - answer1*n)
+print("Колличество яблок на студента: %.0f" % answer1)
+print("Колличество оставшихся яблок: %.0f" % answer2)
+input()
diff --git "a/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_5.py" "b/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_5.py"
new file mode 100644
index 00000000..25b20790
--- /dev/null
+++ "b/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_5.py"
@@ -0,0 +1,4 @@
+numb = int(input("Введите число: "))
+print("The next number for the number", numb, "is %s."% (numb + 1) )
+print("The previous number for the number", numb, "is %s."% (numb - 1) )
+input()
diff --git "a/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_6.py" "b/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_6.py"
new file mode 100644
index 00000000..48900498
--- /dev/null
+++ "b/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_6.py"
@@ -0,0 +1,11 @@
+ppl1 = int(input("Введите колличество учеников в 1 группе: "))
+ppl2 = int(input("Введите колличество учеников во 2 группе: "))
+ppl3 = int(input("Введите колличество учеников в 3 группе: "))
+answer1 = (ppl1/2+0.5)
+round(answer1)
+answer2 = (ppl2/2+0.5)
+round(answer2)
+answer3 = (ppl3/2+0.5)
+round(answer3)
+print("Ответ: %.0f"% (answer1 + answer2 + answer3))
+input()
diff --git "a/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_7.py" "b/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_7.py"
new file mode 100644
index 00000000..f70e414c
--- /dev/null
+++ "b/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_7.py"
@@ -0,0 +1,14 @@
+n = int(input("Введите колличество минут: "))
+minutes_in_day = 1440
+minutes_in_hour = 60
+
+days = n // minutes_in_day
+n = n - (days * minutes_in_day)
+
+hours = n // minutes_in_hour
+n = n - (hours * minutes_in_hour)
+
+minutes = n
+
+print(hours, ":", minutes)
+input()
From 9d588348f09efa1d66e7eafdc1fa9e67ca1a1087 Mon Sep 17 00:00:00 2001
From: IvanIvchenko <32459492+IvanIvchenko@users.noreply.github.com>
Date: Sat, 21 Oct 2017 13:34:17 +0300
Subject: [PATCH 02/28] =?UTF-8?q?4.=20=D0=9A=D0=BE=D0=BD=D1=81=D1=82=D1=80?=
=?UTF-8?q?=D1=83=D0=BA=D1=86=D1=96=D1=97=20=D0=BA=D0=B5=D1=80=D1=83=D0=B2?=
=?UTF-8?q?=D0=B0=D0=BD=D0=BD=D1=8F?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
...\264\320\260\320\275\320\270\320\265_1.py" | 7 +++
...264\320\260\320\275\320\270\320\265_10.py" | 45 +++++++++++++++++++
...264\320\260\320\275\320\270\320\265_11.py" | 43 ++++++++++++++++++
...264\320\260\320\275\320\270\320\265_12.py" | 9 ++++
...\264\320\260\320\275\320\270\320\265_2.py" | 8 ++++
...\264\320\260\320\275\320\270\320\265_3.py" | 6 +++
...\264\320\260\320\275\320\270\320\265_4.py" | 7 +++
...\264\320\260\320\275\320\270\320\265_5.py" | 10 +++++
...\264\320\260\320\275\320\270\320\265_6.py" | 41 +++++++++++++++++
...\264\320\260\320\275\320\270\320\265_7.py" | 45 +++++++++++++++++++
...\264\320\260\320\275\320\270\320\265_8.py" | 43 ++++++++++++++++++
...\264\320\260\320\275\320\270\320\265_9.py" | 43 ++++++++++++++++++
12 files changed, 307 insertions(+)
create mode 100644 "km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_1.py"
create mode 100644 "km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_10.py"
create mode 100644 "km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_11.py"
create mode 100644 "km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_12.py"
create mode 100644 "km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_2.py"
create mode 100644 "km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_3.py"
create mode 100644 "km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_4.py"
create mode 100644 "km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_5.py"
create mode 100644 "km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_6.py"
create mode 100644 "km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_7.py"
create mode 100644 "km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_8.py"
create mode 100644 "km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_9.py"
diff --git "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_1.py" "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_1.py"
new file mode 100644
index 00000000..513c0367
--- /dev/null
+++ "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_1.py"
@@ -0,0 +1,7 @@
+a = int(input("Enter first number: "))
+b = int(input("Enter second number: "))
+
+if a <= b:
+ print("Answer: ", a)
+else:
+ print("Answer: ", b)
diff --git "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_10.py" "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_10.py"
new file mode 100644
index 00000000..b4baa027
--- /dev/null
+++ "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_10.py"
@@ -0,0 +1,45 @@
+while True:
+ try:
+ a=int(input("Введите номер ряда первой клетки: "))
+ if a>8 or a<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ b=int(input("Введите номер столбца первой клетки: "))
+ if b>8 or b<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ c=int(input("Введите номер ряда первой клетки: "))
+ if c>8 or c<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ d=int(input("Введите номер столбца второй клетки: "))
+ if d>8 or d<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+
+if (a/b)==(c/d):
+ print("YES")
+elif (a+c)==(b+d):
+ print("YES")
+elif a==c or b==d:
+ print("Yes")
+else:
+ print("No")
diff --git "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_11.py" "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_11.py"
new file mode 100644
index 00000000..c08942e7
--- /dev/null
+++ "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_11.py"
@@ -0,0 +1,43 @@
+while True:
+ try:
+ a=int(input("Введите номер ряда первой клетки: "))
+ if a>8 or a<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ b=int(input("Введите номер столбца первой клетки: "))
+ if b>8 or b<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ c=int(input("Введите номер ряда первой клетки: "))
+ if c>8 or c<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ d=int(input("Введите номер столбца второй клетки: "))
+ if d>8 or d<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+
+if abs(a-b)==2 and abs(c-d)==1:
+ print("YES")
+elif abs(a-b)==1 and abs(c-d)==2:
+ print("YES")
+else:
+ print("No")
diff --git "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_12.py" "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_12.py"
new file mode 100644
index 00000000..26571f1b
--- /dev/null
+++ "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_12.py"
@@ -0,0 +1,9 @@
+n = int(input("Введите n: "))
+m = int(input("Введите m: "))
+k = int(input("Введите k: "))
+if k/n-k//n==0 and m>k//n:
+ print("YES")
+elif k/m-k//m==0 and n>k//m:
+ print("YES")
+else:
+ print("NO")
diff --git "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_2.py" "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_2.py"
new file mode 100644
index 00000000..86650066
--- /dev/null
+++ "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_2.py"
@@ -0,0 +1,8 @@
+x = float(input("Enter number: "))
+
+if x > 0:
+ print("Answer: 1")
+elif x < 0:
+ print("Answer: -1")
+else:
+ print("Answer: 0")
diff --git "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_3.py" "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_3.py"
new file mode 100644
index 00000000..072a5232
--- /dev/null
+++ "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_3.py"
@@ -0,0 +1,6 @@
+a = int(input("Enter first number: "))
+b = int(input("Enter second number: "))
+c = int(input("Enter third number: "))
+mas = [a, b, c]
+f = min(mas)
+print("Answer: ", f)
diff --git "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_4.py" "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_4.py"
new file mode 100644
index 00000000..8d226aaa
--- /dev/null
+++ "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_4.py"
@@ -0,0 +1,7 @@
+x = int(input("Введите год: "))
+if x/4-x//4==0 and x/10-x//10!=0 or x/400-x//400==0:
+ print("LEAP")
+else:
+ print("COMMON")
+
+
diff --git "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_5.py" "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_5.py"
new file mode 100644
index 00000000..d540d902
--- /dev/null
+++ "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_5.py"
@@ -0,0 +1,10 @@
+a = int(input("Enter first number: "))
+b = int(input("Enter second number: "))
+c = int(input("Enter third number: "))
+if a==b==c:
+ print("3")
+elif a==b or a==c or b==c:
+ print("2")
+else:
+ print("0")
+
diff --git "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_6.py" "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_6.py"
new file mode 100644
index 00000000..210f1190
--- /dev/null
+++ "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_6.py"
@@ -0,0 +1,41 @@
+while True:
+ try:
+ a=int(input("Введите номер ряда первой клетки: "))
+ if a>8 or a<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ b=int(input("Введите номер столбца первой клетки: "))
+ if b>8 or b<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ c=int(input("Введите номер ряда первой клетки: "))
+ if c>8 or c<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ d=int(input("Введите номер столбца второй клетки: "))
+ if d>8 or d<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+
+if a==c or b==d:
+ print("Yes")
+else:
+ print("No")
diff --git "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_7.py" "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_7.py"
new file mode 100644
index 00000000..d6723c36
--- /dev/null
+++ "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_7.py"
@@ -0,0 +1,45 @@
+while True:
+ try:
+ a=int(input("Введите номер ряда первой клетки: "))
+ if a>8 or a<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ b=int(input("Введите номер столбца первой клетки: "))
+ if b>8 or b<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ c=int(input("Введите номер ряда первой клетки: "))
+ if c>8 or c<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ d=int(input("Введите номер столбца второй клетки: "))
+ if d>8 or d<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+
+if (a+c)%2==0 and (b+d)%2==0:
+ print("YES")
+elif (a+c)%2!=0 and (b+d)%2!=0:
+ print("YES")
+else:
+ print("NO")
+
+
diff --git "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_8.py" "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_8.py"
new file mode 100644
index 00000000..2fffe80a
--- /dev/null
+++ "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_8.py"
@@ -0,0 +1,43 @@
+while True:
+ try:
+ a=int(input("Введите номер ряда первой клетки: "))
+ if a>8 or a<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ b=int(input("Введите номер столбца первой клетки: "))
+ if b>8 or b<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ c=int(input("Введите номер ряда первой клетки: "))
+ if c>8 or c<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ d=int(input("Введите номер столбца второй клетки: "))
+ if d>8 or d<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+
+if a==c or b==d:
+ print("Yes")
+elif c==a+1 or c==a-1 and d==b+1 or d==b+1:
+ print("YES")
+else:
+ print("No")
diff --git "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_9.py" "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_9.py"
new file mode 100644
index 00000000..6df6787a
--- /dev/null
+++ "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_9.py"
@@ -0,0 +1,43 @@
+while True:
+ try:
+ a=int(input("Введите номер ряда первой клетки: "))
+ if a>8 or a<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ b=int(input("Введите номер столбца первой клетки: "))
+ if b>8 or b<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ c=int(input("Введите номер ряда первой клетки: "))
+ if c>8 or c<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ d=int(input("Введите номер столбца второй клетки: "))
+ if d>8 or d<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+
+if (a/b)==(c/d):
+ print("YES")
+elif (a+c)==(b+d):
+ print("YES")
+else:
+ print("No")
From f7729c5165cebec410827bb3003e5a44edd4996a Mon Sep 17 00:00:00 2001
From: IvanIvchenko <32459492+IvanIvchenko@users.noreply.github.com>
Date: Mon, 30 Oct 2017 10:47:27 +0200
Subject: [PATCH 03/28] Add files via upload
---
km72/Ivchenko_Ivan/3/task1.py | 6 ++++++
km72/Ivchenko_Ivan/3/task2.py | 5 +++++
km72/Ivchenko_Ivan/3/task3.py | 3 +++
km72/Ivchenko_Ivan/3/task4.py | 7 +++++++
km72/Ivchenko_Ivan/3/task5.py | 4 ++++
km72/Ivchenko_Ivan/3/task6.py | 11 +++++++++++
km72/Ivchenko_Ivan/3/task7.py | 14 ++++++++++++++
7 files changed, 50 insertions(+)
create mode 100644 km72/Ivchenko_Ivan/3/task1.py
create mode 100644 km72/Ivchenko_Ivan/3/task2.py
create mode 100644 km72/Ivchenko_Ivan/3/task3.py
create mode 100644 km72/Ivchenko_Ivan/3/task4.py
create mode 100644 km72/Ivchenko_Ivan/3/task5.py
create mode 100644 km72/Ivchenko_Ivan/3/task6.py
create mode 100644 km72/Ivchenko_Ivan/3/task7.py
diff --git a/km72/Ivchenko_Ivan/3/task1.py b/km72/Ivchenko_Ivan/3/task1.py
new file mode 100644
index 00000000..48a67c94
--- /dev/null
+++ b/km72/Ivchenko_Ivan/3/task1.py
@@ -0,0 +1,6 @@
+numb1 = float(input("Введите первое число: "))
+numb2 = float(input("Введите второе число: "))
+numb3 = float(input("Введите третье число: "))
+answer = (numb1 + numb2 + numb3)
+print("Ответ: ", answer)
+input()
diff --git a/km72/Ivchenko_Ivan/3/task2.py b/km72/Ivchenko_Ivan/3/task2.py
new file mode 100644
index 00000000..4dbdad85
--- /dev/null
+++ b/km72/Ivchenko_Ivan/3/task2.py
@@ -0,0 +1,5 @@
+kat1 = float(input("Введите длину первого катета: "))
+kat2 = float(input("Введите длину второго катета: "))
+answer = ((kat1**2 + kat2**2)**(1/2))
+print("Ответ: %.2f"% answer)
+input()
diff --git a/km72/Ivchenko_Ivan/3/task3.py b/km72/Ivchenko_Ivan/3/task3.py
new file mode 100644
index 00000000..946ac0fd
--- /dev/null
+++ b/km72/Ivchenko_Ivan/3/task3.py
@@ -0,0 +1,3 @@
+name = input("Введите имя: ")
+print ('Hi, %s!' % name)
+input()
diff --git a/km72/Ivchenko_Ivan/3/task4.py b/km72/Ivchenko_Ivan/3/task4.py
new file mode 100644
index 00000000..9cede587
--- /dev/null
+++ b/km72/Ivchenko_Ivan/3/task4.py
@@ -0,0 +1,7 @@
+n = int(input("Введите колличество студентов: "))
+k = int(input("Введите колличество яблок: "))
+answer1 = (k//n)
+answer2 = (k - answer1*n)
+print("Колличество яблок на студента: %.0f" % answer1)
+print("Колличество оставшихся яблок: %.0f" % answer2)
+input()
diff --git a/km72/Ivchenko_Ivan/3/task5.py b/km72/Ivchenko_Ivan/3/task5.py
new file mode 100644
index 00000000..25b20790
--- /dev/null
+++ b/km72/Ivchenko_Ivan/3/task5.py
@@ -0,0 +1,4 @@
+numb = int(input("Введите число: "))
+print("The next number for the number", numb, "is %s."% (numb + 1) )
+print("The previous number for the number", numb, "is %s."% (numb - 1) )
+input()
diff --git a/km72/Ivchenko_Ivan/3/task6.py b/km72/Ivchenko_Ivan/3/task6.py
new file mode 100644
index 00000000..48900498
--- /dev/null
+++ b/km72/Ivchenko_Ivan/3/task6.py
@@ -0,0 +1,11 @@
+ppl1 = int(input("Введите колличество учеников в 1 группе: "))
+ppl2 = int(input("Введите колличество учеников во 2 группе: "))
+ppl3 = int(input("Введите колличество учеников в 3 группе: "))
+answer1 = (ppl1/2+0.5)
+round(answer1)
+answer2 = (ppl2/2+0.5)
+round(answer2)
+answer3 = (ppl3/2+0.5)
+round(answer3)
+print("Ответ: %.0f"% (answer1 + answer2 + answer3))
+input()
diff --git a/km72/Ivchenko_Ivan/3/task7.py b/km72/Ivchenko_Ivan/3/task7.py
new file mode 100644
index 00000000..f70e414c
--- /dev/null
+++ b/km72/Ivchenko_Ivan/3/task7.py
@@ -0,0 +1,14 @@
+n = int(input("Введите колличество минут: "))
+minutes_in_day = 1440
+minutes_in_hour = 60
+
+days = n // minutes_in_day
+n = n - (days * minutes_in_day)
+
+hours = n // minutes_in_hour
+n = n - (hours * minutes_in_hour)
+
+minutes = n
+
+print(hours, ":", minutes)
+input()
From b0de3d42000c29e4ea54fe501aa0d134697cd915 Mon Sep 17 00:00:00 2001
From: IvanIvchenko <32459492+IvanIvchenko@users.noreply.github.com>
Date: Mon, 30 Oct 2017 10:48:08 +0200
Subject: [PATCH 04/28] Add files via upload
---
km72/Ivchenko_Ivan/4/task1.py | 7 ++++++
km72/Ivchenko_Ivan/4/task10.py | 45 ++++++++++++++++++++++++++++++++++
km72/Ivchenko_Ivan/4/task11.py | 43 ++++++++++++++++++++++++++++++++
km72/Ivchenko_Ivan/4/task12.py | 9 +++++++
km72/Ivchenko_Ivan/4/task2.py | 8 ++++++
km72/Ivchenko_Ivan/4/task3.py | 6 +++++
km72/Ivchenko_Ivan/4/task4.py | 7 ++++++
km72/Ivchenko_Ivan/4/task5.py | 10 ++++++++
km72/Ivchenko_Ivan/4/task6.py | 41 +++++++++++++++++++++++++++++++
km72/Ivchenko_Ivan/4/task7.py | 45 ++++++++++++++++++++++++++++++++++
km72/Ivchenko_Ivan/4/task8.py | 43 ++++++++++++++++++++++++++++++++
km72/Ivchenko_Ivan/4/task9.py | 43 ++++++++++++++++++++++++++++++++
12 files changed, 307 insertions(+)
create mode 100644 km72/Ivchenko_Ivan/4/task1.py
create mode 100644 km72/Ivchenko_Ivan/4/task10.py
create mode 100644 km72/Ivchenko_Ivan/4/task11.py
create mode 100644 km72/Ivchenko_Ivan/4/task12.py
create mode 100644 km72/Ivchenko_Ivan/4/task2.py
create mode 100644 km72/Ivchenko_Ivan/4/task3.py
create mode 100644 km72/Ivchenko_Ivan/4/task4.py
create mode 100644 km72/Ivchenko_Ivan/4/task5.py
create mode 100644 km72/Ivchenko_Ivan/4/task6.py
create mode 100644 km72/Ivchenko_Ivan/4/task7.py
create mode 100644 km72/Ivchenko_Ivan/4/task8.py
create mode 100644 km72/Ivchenko_Ivan/4/task9.py
diff --git a/km72/Ivchenko_Ivan/4/task1.py b/km72/Ivchenko_Ivan/4/task1.py
new file mode 100644
index 00000000..513c0367
--- /dev/null
+++ b/km72/Ivchenko_Ivan/4/task1.py
@@ -0,0 +1,7 @@
+a = int(input("Enter first number: "))
+b = int(input("Enter second number: "))
+
+if a <= b:
+ print("Answer: ", a)
+else:
+ print("Answer: ", b)
diff --git a/km72/Ivchenko_Ivan/4/task10.py b/km72/Ivchenko_Ivan/4/task10.py
new file mode 100644
index 00000000..b4baa027
--- /dev/null
+++ b/km72/Ivchenko_Ivan/4/task10.py
@@ -0,0 +1,45 @@
+while True:
+ try:
+ a=int(input("Введите номер ряда первой клетки: "))
+ if a>8 or a<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ b=int(input("Введите номер столбца первой клетки: "))
+ if b>8 or b<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ c=int(input("Введите номер ряда первой клетки: "))
+ if c>8 or c<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ d=int(input("Введите номер столбца второй клетки: "))
+ if d>8 or d<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+
+if (a/b)==(c/d):
+ print("YES")
+elif (a+c)==(b+d):
+ print("YES")
+elif a==c or b==d:
+ print("Yes")
+else:
+ print("No")
diff --git a/km72/Ivchenko_Ivan/4/task11.py b/km72/Ivchenko_Ivan/4/task11.py
new file mode 100644
index 00000000..c08942e7
--- /dev/null
+++ b/km72/Ivchenko_Ivan/4/task11.py
@@ -0,0 +1,43 @@
+while True:
+ try:
+ a=int(input("Введите номер ряда первой клетки: "))
+ if a>8 or a<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ b=int(input("Введите номер столбца первой клетки: "))
+ if b>8 or b<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ c=int(input("Введите номер ряда первой клетки: "))
+ if c>8 or c<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ d=int(input("Введите номер столбца второй клетки: "))
+ if d>8 or d<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+
+if abs(a-b)==2 and abs(c-d)==1:
+ print("YES")
+elif abs(a-b)==1 and abs(c-d)==2:
+ print("YES")
+else:
+ print("No")
diff --git a/km72/Ivchenko_Ivan/4/task12.py b/km72/Ivchenko_Ivan/4/task12.py
new file mode 100644
index 00000000..26571f1b
--- /dev/null
+++ b/km72/Ivchenko_Ivan/4/task12.py
@@ -0,0 +1,9 @@
+n = int(input("Введите n: "))
+m = int(input("Введите m: "))
+k = int(input("Введите k: "))
+if k/n-k//n==0 and m>k//n:
+ print("YES")
+elif k/m-k//m==0 and n>k//m:
+ print("YES")
+else:
+ print("NO")
diff --git a/km72/Ivchenko_Ivan/4/task2.py b/km72/Ivchenko_Ivan/4/task2.py
new file mode 100644
index 00000000..86650066
--- /dev/null
+++ b/km72/Ivchenko_Ivan/4/task2.py
@@ -0,0 +1,8 @@
+x = float(input("Enter number: "))
+
+if x > 0:
+ print("Answer: 1")
+elif x < 0:
+ print("Answer: -1")
+else:
+ print("Answer: 0")
diff --git a/km72/Ivchenko_Ivan/4/task3.py b/km72/Ivchenko_Ivan/4/task3.py
new file mode 100644
index 00000000..072a5232
--- /dev/null
+++ b/km72/Ivchenko_Ivan/4/task3.py
@@ -0,0 +1,6 @@
+a = int(input("Enter first number: "))
+b = int(input("Enter second number: "))
+c = int(input("Enter third number: "))
+mas = [a, b, c]
+f = min(mas)
+print("Answer: ", f)
diff --git a/km72/Ivchenko_Ivan/4/task4.py b/km72/Ivchenko_Ivan/4/task4.py
new file mode 100644
index 00000000..8d226aaa
--- /dev/null
+++ b/km72/Ivchenko_Ivan/4/task4.py
@@ -0,0 +1,7 @@
+x = int(input("Введите год: "))
+if x/4-x//4==0 and x/10-x//10!=0 or x/400-x//400==0:
+ print("LEAP")
+else:
+ print("COMMON")
+
+
diff --git a/km72/Ivchenko_Ivan/4/task5.py b/km72/Ivchenko_Ivan/4/task5.py
new file mode 100644
index 00000000..d540d902
--- /dev/null
+++ b/km72/Ivchenko_Ivan/4/task5.py
@@ -0,0 +1,10 @@
+a = int(input("Enter first number: "))
+b = int(input("Enter second number: "))
+c = int(input("Enter third number: "))
+if a==b==c:
+ print("3")
+elif a==b or a==c or b==c:
+ print("2")
+else:
+ print("0")
+
diff --git a/km72/Ivchenko_Ivan/4/task6.py b/km72/Ivchenko_Ivan/4/task6.py
new file mode 100644
index 00000000..210f1190
--- /dev/null
+++ b/km72/Ivchenko_Ivan/4/task6.py
@@ -0,0 +1,41 @@
+while True:
+ try:
+ a=int(input("Введите номер ряда первой клетки: "))
+ if a>8 or a<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ b=int(input("Введите номер столбца первой клетки: "))
+ if b>8 or b<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ c=int(input("Введите номер ряда первой клетки: "))
+ if c>8 or c<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ d=int(input("Введите номер столбца второй клетки: "))
+ if d>8 or d<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+
+if a==c or b==d:
+ print("Yes")
+else:
+ print("No")
diff --git a/km72/Ivchenko_Ivan/4/task7.py b/km72/Ivchenko_Ivan/4/task7.py
new file mode 100644
index 00000000..d6723c36
--- /dev/null
+++ b/km72/Ivchenko_Ivan/4/task7.py
@@ -0,0 +1,45 @@
+while True:
+ try:
+ a=int(input("Введите номер ряда первой клетки: "))
+ if a>8 or a<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ b=int(input("Введите номер столбца первой клетки: "))
+ if b>8 or b<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ c=int(input("Введите номер ряда первой клетки: "))
+ if c>8 or c<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ d=int(input("Введите номер столбца второй клетки: "))
+ if d>8 or d<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+
+if (a+c)%2==0 and (b+d)%2==0:
+ print("YES")
+elif (a+c)%2!=0 and (b+d)%2!=0:
+ print("YES")
+else:
+ print("NO")
+
+
diff --git a/km72/Ivchenko_Ivan/4/task8.py b/km72/Ivchenko_Ivan/4/task8.py
new file mode 100644
index 00000000..2fffe80a
--- /dev/null
+++ b/km72/Ivchenko_Ivan/4/task8.py
@@ -0,0 +1,43 @@
+while True:
+ try:
+ a=int(input("Введите номер ряда первой клетки: "))
+ if a>8 or a<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ b=int(input("Введите номер столбца первой клетки: "))
+ if b>8 or b<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ c=int(input("Введите номер ряда первой клетки: "))
+ if c>8 or c<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ d=int(input("Введите номер столбца второй клетки: "))
+ if d>8 or d<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+
+if a==c or b==d:
+ print("Yes")
+elif c==a+1 or c==a-1 and d==b+1 or d==b+1:
+ print("YES")
+else:
+ print("No")
diff --git a/km72/Ivchenko_Ivan/4/task9.py b/km72/Ivchenko_Ivan/4/task9.py
new file mode 100644
index 00000000..6df6787a
--- /dev/null
+++ b/km72/Ivchenko_Ivan/4/task9.py
@@ -0,0 +1,43 @@
+while True:
+ try:
+ a=int(input("Введите номер ряда первой клетки: "))
+ if a>8 or a<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ b=int(input("Введите номер столбца первой клетки: "))
+ if b>8 or b<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ c=int(input("Введите номер ряда первой клетки: "))
+ if c>8 or c<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+while True:
+ try:
+ d=int(input("Введите номер столбца второй клетки: "))
+ if d>8 or d<1:
+ print("Значение должнобыть в пределах от 1 до 8")
+ else:
+ break
+ except:
+ print("Координата должна быть численным значением")
+
+if (a/b)==(c/d):
+ print("YES")
+elif (a+c)==(b+d):
+ print("YES")
+else:
+ print("No")
From 3f0f740a116cc19ebf18b291c1f48fef6f518ae8 Mon Sep 17 00:00:00 2001
From: IvanIvchenko <32459492+IvanIvchenko@users.noreply.github.com>
Date: Mon, 30 Oct 2017 10:48:39 +0200
Subject: [PATCH 05/28] Add files via upload
---
km72/Ivchenko_Ivan/5/task1.py | 7 +++++++
km72/Ivchenko_Ivan/5/task2.py | 9 +++++++++
km72/Ivchenko_Ivan/5/task3.py | 13 +++++++++++++
km72/Ivchenko_Ivan/5/task4.py | 16 ++++++++++++++++
km72/Ivchenko_Ivan/5/task5.py | 17 +++++++++++++++++
5 files changed, 62 insertions(+)
create mode 100644 km72/Ivchenko_Ivan/5/task1.py
create mode 100644 km72/Ivchenko_Ivan/5/task2.py
create mode 100644 km72/Ivchenko_Ivan/5/task3.py
create mode 100644 km72/Ivchenko_Ivan/5/task4.py
create mode 100644 km72/Ivchenko_Ivan/5/task5.py
diff --git a/km72/Ivchenko_Ivan/5/task1.py b/km72/Ivchenko_Ivan/5/task1.py
new file mode 100644
index 00000000..c14abfbd
--- /dev/null
+++ b/km72/Ivchenko_Ivan/5/task1.py
@@ -0,0 +1,7 @@
+x = [int(x) for x in input("Введите рост учеников: ").split()]
+number = 0
+height = int(input("Введите рост Пети: "))
+for i in range(0, len(x)):
+ if x[i] >= height:
+ number += 1
+print(number + 1)
diff --git a/km72/Ivchenko_Ivan/5/task2.py b/km72/Ivchenko_Ivan/5/task2.py
new file mode 100644
index 00000000..1dfdd3f1
--- /dev/null
+++ b/km72/Ivchenko_Ivan/5/task2.py
@@ -0,0 +1,9 @@
+num = input("Введите спосок чисел: ").split()
+count = 0
+for i in num:
+ i = int(i)
+ for b in num:
+ b = int(b)
+ if i == b:
+ count = count + 1
+print((count+0.5)//4)
diff --git a/km72/Ivchenko_Ivan/5/task3.py b/km72/Ivchenko_Ivan/5/task3.py
new file mode 100644
index 00000000..174a3bfe
--- /dev/null
+++ b/km72/Ivchenko_Ivan/5/task3.py
@@ -0,0 +1,13 @@
+a = input("Введите список чсел: ").split()
+count = 0
+count1 = 0
+for i in range(1, len(a)):
+ if a[i-1] != a[i]:
+ count += 1
+for c in a:
+ c = int(c)
+ for b in a:
+ b = int(b)
+ if c == b:
+ count1 = count1 + 1
+print(count-(count1+0.5)//4)
diff --git a/km72/Ivchenko_Ivan/5/task4.py b/km72/Ivchenko_Ivan/5/task4.py
new file mode 100644
index 00000000..219a3683
--- /dev/null
+++ b/km72/Ivchenko_Ivan/5/task4.py
@@ -0,0 +1,16 @@
+count = input("Введите пару N:K: ").split()
+N = int(count[0])
+K = int(count[1])
+i = 0
+li = []
+ri = []
+line = [x for x in "I"*N]
+while i < K:
+ li_ri = input("Введите пару li:ri: ").split()
+ li.append(int(li_ri[0]))
+ ri.append(int(li_ri[1]))
+ i += 1
+for b in range(K+1):
+ for i in (li[b], ri[b]+1):
+ line[i] = "."
+print(line)
diff --git a/km72/Ivchenko_Ivan/5/task5.py b/km72/Ivchenko_Ivan/5/task5.py
new file mode 100644
index 00000000..e8465628
--- /dev/null
+++ b/km72/Ivchenko_Ivan/5/task5.py
@@ -0,0 +1,17 @@
+i = 0
+x =[]
+y = []
+a = 'NO'
+while i < 8:
+ x_y = input("Введите пару x:y: ").split()
+ x.append(int(x_y[0]))
+ y.append(int(x_y[1]))
+ i += 1
+for pos1 in range(0, 8):
+ for pos2 in range(0, 8):
+ if pos1 == pos2:
+ continue
+ if abs(x[pos1] - x[pos2]) == abs(y[pos1] - y[pos2]) or (x[pos2] == x[pos1] or y[pos2] == y[pos1]):
+ a = 'YES'
+ break
+print(a)
From 91feb6a57fcdff529c815148d1b1ea2dc88bb593 Mon Sep 17 00:00:00 2001
From: IvanIvchenko <32459492+IvanIvchenko@users.noreply.github.com>
Date: Mon, 30 Oct 2017 12:20:04 +0200
Subject: [PATCH 06/28] Add files via upload
---
km72/Ivchenko_Ivan/1/task1.oom | 3407 ++++++++++
km72/Ivchenko_Ivan/1/task2.oom | 3149 +++++++++
km72/Ivchenko_Ivan/1/task3.oom | 2302 +++++++
km72/Ivchenko_Ivan/2/task1.oom | 11006 +++++++++++++++++++++++++++++++
4 files changed, 19864 insertions(+)
create mode 100644 km72/Ivchenko_Ivan/1/task1.oom
create mode 100644 km72/Ivchenko_Ivan/1/task2.oom
create mode 100644 km72/Ivchenko_Ivan/1/task3.oom
create mode 100644 km72/Ivchenko_Ivan/2/task1.oom
diff --git a/km72/Ivchenko_Ivan/1/task1.oom b/km72/Ivchenko_Ivan/1/task1.oom
new file mode 100644
index 00000000..8336f85c
--- /dev/null
+++ b/km72/Ivchenko_Ivan/1/task1.oom
@@ -0,0 +1,3407 @@
+
+
+
+
+
+
+
+
+
+D4AE2141-373F-4BEB-9CC6-FEE05D77B64B
+Activity Diagram_1
+ActivityDiagram_1
+1504964904
+Димыч
+1506276950
+Programmer
+[FolderOptions]
+
+[FolderOptions\Class Diagram Objects]
+GenerationCheckModel=Yes
+GenerationPath=
+GenerationOptions=
+GenerationTasks=
+GenerationTargets=
+GenerationSelections=
+[ModelOptions]
+
+[ModelOptions\Cld]
+CaseSensitive=Yes
+DisplayName=Yes
+EnableTrans=Yes
+UseTerm=No
+EnableRequirements=No
+EnableFullShortcut=Yes
+ShowClss=No
+DeftAttr=int
+DeftMthd=int
+DeftParm=int
+DeftCont=java.util.Collection
+DomnDttp=Yes
+DomnChck=No
+DomnRule=No
+SupportDelay=No
+PreviewEditable=Yes
+AutoRealize=No
+DttpFullName=Yes
+DeftClssAttrVisi=private
+VBNetPreprocessingSymbols=
+CSharpPreprocessingSymbols=
+SynchroCode=Yes
+
+[ModelOptions\Cld\NamingOptionsTemplates]
+
+[ModelOptions\Cld\ClssNamingOptions]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDPCKG]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDPCKG\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=.convert_name(%Name%,,,firstLowerWord)
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDPCKG\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDDOMN]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDDOMN\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDDOMN\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDCLASS]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDCLASS\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=.convert_name(%Name%,,,FirstUpperChar)
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDCLASS\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDINTF]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDINTF\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=.convert_name(%Name%,,,FirstUpperChar)
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDINTF\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\UCDACTR]
+
+[ModelOptions\Cld\ClssNamingOptions\UCDACTR\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\UCDACTR\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\UCDUCAS]
+
+[ModelOptions\Cld\ClssNamingOptions\UCDUCAS\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\UCDUCAS\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\SQDOBJT]
+
+[ModelOptions\Cld\ClssNamingOptions\SQDOBJT\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\SQDOBJT\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\SQDMSSG]
+
+[ModelOptions\Cld\ClssNamingOptions\SQDMSSG\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\SQDMSSG\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CPDCOMP]
+
+[ModelOptions\Cld\ClssNamingOptions\CPDCOMP\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=.convert_name(%Name%,,,FirstUpperChar)
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CPDCOMP\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDATTR]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDATTR\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=.convert_name(%Name%,,,firstLowerWord)
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDATTR\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDMETHOD]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDMETHOD\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=.convert_name(%Name%,,,firstLowerWord)
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDMETHOD\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDPARM]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDPARM\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=.convert_name(%Name%,,,firstLowerWord)
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDPARM\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\OOMPORT]
+
+[ModelOptions\Cld\ClssNamingOptions\OOMPORT\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\OOMPORT\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\OOMPART]
+
+[ModelOptions\Cld\ClssNamingOptions\OOMPART\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\OOMPART\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDASSC]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDASSC\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=.convert_name(%Name%,,,firstLowerWord)
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDASSC\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\UCDASSC]
+
+[ModelOptions\Cld\ClssNamingOptions\UCDASSC\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\UCDASSC\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\GNRLLINK]
+
+[ModelOptions\Cld\ClssNamingOptions\GNRLLINK\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\GNRLLINK\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\RQLINK]
+
+[ModelOptions\Cld\ClssNamingOptions\RQLINK\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\RQLINK\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\RLZSLINK]
+
+[ModelOptions\Cld\ClssNamingOptions\RLZSLINK\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\RLZSLINK\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DEPDLINK]
+
+[ModelOptions\Cld\ClssNamingOptions\DEPDLINK\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DEPDLINK\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\OOMACTV]
+
+[ModelOptions\Cld\ClssNamingOptions\OOMACTV\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\OOMACTV\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\ACDOBST]
+
+[ModelOptions\Cld\ClssNamingOptions\ACDOBST\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\ACDOBST\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\STAT]
+
+[ModelOptions\Cld\ClssNamingOptions\STAT\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\STAT\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DPDNODE]
+
+[ModelOptions\Cld\ClssNamingOptions\DPDNODE\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DPDNODE\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DPDCMPI]
+
+[ModelOptions\Cld\ClssNamingOptions\DPDCMPI\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DPDCMPI\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DPDASSC]
+
+[ModelOptions\Cld\ClssNamingOptions\DPDASSC\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DPDASSC\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\OOMVAR]
+
+[ModelOptions\Cld\ClssNamingOptions\OOMVAR\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\OOMVAR\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\FILO]
+
+[ModelOptions\Cld\ClssNamingOptions\FILO\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\FILO\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\FRMEOBJ]
+
+[ModelOptions\Cld\ClssNamingOptions\FRMEOBJ\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\FRMEOBJ\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\FRMELNK]
+
+[ModelOptions\Cld\ClssNamingOptions\FRMELNK\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\FRMELNK\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DefaultClass]
+
+[ModelOptions\Cld\ClssNamingOptions\DefaultClass\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DefaultClass\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Generate]
+
+[ModelOptions\Generate\Xsm]
+GenRootElement=Yes
+GenComplexType=No
+GenAttribute=Yes
+CheckModel=Yes
+SaveLinks=Yes
+ORMapping=No
+NameToCode=No
+
+[ModelOptions\Generate\Cdm]
+CheckModel=Yes
+SaveLinks=Yes
+NameToCode=No
+Notation=2
+
+[ModelOptions\Generate\Pdm]
+CheckModel=Yes
+SaveLinks=Yes
+ORMapping=No
+NameToCode=No
+BuildTrgr=No
+TablePrefix=
+IndxPKName=%TABLE%_PK
+IndxAKName=%TABLE%_AK
+IndxFKName=%REFR%_FK
+IndxThreshold=
+ColnFKName=%.3:PARENT%_%COLUMN%
+ColnFKNameUse=No
+
+
+A23834D2-0BBA-402F-A60A-C53B16E4B634
+Java
+Java
+1506273549
+Programmer
+1506273549
+Programmer
+
+0DEDDB90-46E2-45A0-886E-411709DA0DC9
+1811206C-1A4B-11D1-83D9-444553540000
+
+
+
+
+
+
+
+8EE23237-FF71-407F-BB8B-D39C5D3329A3
+1504965139
+Димыч
+1504965139
+Димыч
+
+
+
+
+
+
+
+
+4265BB0A-C5CC-45E3-8316-28D04F8BD207
+1504965502
+Димыч
+1504965502
+Димыч
+
+
+
+
+
+
+
+
+685B383F-80DE-4D82-AA22-0E4BB5ACB5C7
+1504966663
+Димыч
+1506274140
+Programmer
+більше ніж 60
+
+
+
+
+
+
+
+
+40FC04ED-B953-4B30-9532-8DAA5824C4A3
+1505028944
+Димыч
+1506274149
+Programmer
+менше ніж 60
+
+
+
+
+
+
+
+
+F7E725FA-6078-47AA-8DD5-880DBA4D2B66
+1505029210
+Димыч
+1505029210
+Димыч
+
+
+
+
+
+
+
+
+8649CDAE-9AAE-4360-924B-A873AD3A5524
+1505029375
+Димыч
+1505029375
+Димыч
+
+
+
+
+
+
+
+
+F96BC457-390B-49CA-92F8-EB6F8A4DF71D
+1505029378
+Димыч
+1506275816
+Programmer
+ні
+
+
+
+
+
+
+
+
+7D27359D-6860-40DA-99DC-51E404D0AE6F
+1505029581
+Димыч
+1505029581
+Димыч
+
+
+
+
+
+
+
+
+1D2F3010-E3C1-4239-B380-EBF782A9DC9C
+1505029583
+Димыч
+1505029583
+Димыч
+
+
+
+
+
+
+
+
+68BFDA91-8D3B-4B87-8F81-9286C3756A96
+1505029612
+Димыч
+1505029612
+Димыч
+
+
+
+
+
+
+
+
+119D83A7-7C6E-472E-9E37-7A2DAA10DF91
+1506275284
+Programmer
+1506275284
+Programmer
+
+
+
+
+
+
+
+
+AB124576-F029-4013-AAFF-CC75C5F6FD8B
+1506275293
+Programmer
+1506275293
+Programmer
+
+
+
+
+
+
+
+
+69355060-AB89-43A3-9D71-0DDB04D4463B
+1506275295
+Programmer
+1506275295
+Programmer
+
+
+
+
+
+
+
+
+E326B991-2C81-4507-AD3D-9464E73FC3E1
+1506275433
+Programmer
+1506275570
+Programmer
+так
+
+
+
+
+
+
+
+
+9AFA8AF8-4290-4A07-86C0-5C0EF6559522
+1506275444
+Programmer
+1506275444
+Programmer
+
+
+
+
+
+
+
+
+3DBBA7EA-F60B-4D09-96FB-C14A42E8A65A
+1506275612
+Programmer
+1506275612
+Programmer
+
+
+
+
+
+
+
+
+6A96FC95-38AC-453A-8FA3-5EB2B67D96D1
+1506275766
+Programmer
+1506275766
+Programmer
+
+
+
+
+
+
+
+
+0F7EC1BF-554F-4FDB-B31E-EBD74206D9D8
+1506275769
+Programmer
+1506275769
+Programmer
+
+
+
+
+
+
+
+
+B58C9605-9AC5-4A52-AE9D-C8791843DB5D
+1506275853
+Programmer
+1506275860
+Programmer
+ні
+
+
+
+
+
+
+
+
+7A9206CB-CB93-4E47-A3EA-8E320BF07D2B
+1506275939
+Programmer
+1506275954
+Programmer
+так
+
+
+
+
+
+
+
+
+7A35C07D-16B2-40BD-932E-7F9750A45763
+1506275941
+Programmer
+1506275941
+Programmer
+
+
+
+
+
+
+
+
+
+
+908521A0-5EDF-4D0B-AEDC-A6B17A2A73EB
+Визначити значення N
+identifyvalueofN
+1504965132
+Димыч
+1506273869
+Programmer
+UNDEF
+
+
+5190E2A8-4A22-4FED-BC45-AFB8F3A1EB76
+N
+N
+1506273655
+Programmer
+1506273669
+Programmer
+int
+
+
+
+
+E64C1422-7EB5-4151-B7FD-35411681D0D8
+Числове значення N
+ЧисловезначенняN
+1506273671
+Programmer
+1506273889
+Programmer
+int
+
+
+
+
+19F82960-B444-404C-9A37-C42DB2ECA3AB
+відправити результат до ячейки хвилин
+відправитирезультатдоячейкихвилин
+1504965512
+Димыч
+1506275816
+Programmer
+UNDEF
+
+
+EA1CE6D3-E447-443C-AA4E-B95DEB250EA4
+N- 60
+N-60
+1504965513
+Димыч
+1506275809
+Programmer
+UNDEF
+
+
+B151EC13-D388-4867-B428-B393576B6E22
+N
+N
+1506274658
+Programmer
+1506274663
+Programmer
+int
+
+
+
+
+7E23451D-27C2-4AC9-ABB4-6C6665578183
+M - залишок
+M-залишок
+1506274908
+Programmer
+1506275331
+Programmer
+int
+
+
+052F8A69-64A2-436A-9CF0-40CE4405FC4A
+O = 60
+O60
+1506275311
+Programmer
+1506275331
+Programmer
+int
+
+
+
+
+10A6D4A2-CC20-46B2-B1A9-7F4FFD7EC41C
+відправити R до ячейки годин
+відправитиRдоячейкигодин
+1504966212
+Димыч
+1506275777
+Programmer
+UNDEF
+
+
+56FFAF59-CE94-4D9B-AD07-F60F6EC39FA2
+відправити значення N до ячейки додавання хвилин
+відправитизначенняNдоячейкидодаванняхвилин
+1505028804
+Димыч
+1506275860
+Programmer
+send to the summation place
+
+
+59F56B0F-5D95-49DC-8B57-C7C27E19E8C4
+N
+N
+1506273980
+Programmer
+1506273995
+Programmer
+int
+
+
+
+
+BD72BD35-42A3-4697-B434-FBE06A255BCA
+N
+N
+1506273980
+Programmer
+1506273995
+Programmer
+int
+
+
+
+
+5EB74599-4F14-4FEE-A594-EEF9A24CD682
+Додати усі хвилини
+Додатиусіхвилини
+1505029061
+Димыч
+1506275915
+Programmer
+UNDEF
+
+
+93B133F9-7034-4CC2-A9FD-DF5A040772D2
+N
+N
+1506275903
+Programmer
+1506275915
+Programmer
+int
+
+
+
+
+8BCC651A-DA5F-42BF-A15A-201B74BF50C0
+S
+S
+1506275903
+Programmer
+1506275915
+Programmer
+int
+
+
+
+
+ECB74C21-35C9-4F38-8446-3C61886F9840
+показати користувачу час
+показатикористувачучас
+1505029576
+Димыч
+1506274087
+Programmer
+UNDEF
+
+
+AFA5993D-800D-4798-A8B5-FE572D27C90F
+відправити значення О до ячейки додавання годин
+відправитизначенняОдоячейкидодаваннягодин
+1506275289
+Programmer
+1506275538
+Programmer
+UNDEF
+
+
+90450468-5759-401A-86BC-BA6D23583454
+O
+O
+1506275533
+Programmer
+1506275538
+Programmer
+int
+
+
+
+
+3203033F-3E9C-46AB-9D49-6102D9626BBB
+M=N
+MN
+1506275430
+Programmer
+1506275570
+Programmer
+UNDEF
+
+
+C10BE3A6-AA16-41EE-9A0D-7BB7F1650BB3
+M
+M
+1506275541
+Programmer
+1506275545
+Programmer
+int
+
+
+
+
+9BE55A05-0CD4-42C2-827E-41BF85A235E4
+N
+N
+1506275546
+Programmer
+1506275551
+Programmer
+int
+
+
+
+
+E33B2015-77E3-4276-9A28-D0C42C7BA9F3
+додати усі значення О
+додатиусізначенняО
+1506275580
+Programmer
+1506275725
+Programmer
+UNDEF
+
+
+2330F803-ECAA-4716-BF11-048ACAC1BD44
+О
+О
+1506275581
+Programmer
+1506275725
+Programmer
+int
+
+
+
+
+D31E8E4E-537B-4AC6-BD5C-A43C28C875B7
+P
+P
+1506275701
+Programmer
+1506275725
+Programmer
+int
+
+
+
+
+C1868EF6-E0BE-45E2-A83A-F95A27C36E87
+P/60
+P60
+1506275737
+Programmer
+1506275759
+Programmer
+UNDEF
+
+
+F3F7B6EF-D34D-4E1C-BDC5-C4E818FD47D7
+P
+P
+1506275739
+Programmer
+1506275759
+Programmer
+int
+
+
+
+
+2366EC00-D5BD-4BB1-BD5B-9C20AC8E719B
+R
+R
+1506275739
+Programmer
+1506275759
+Programmer
+int
+
+
+
+
+72E952F4-6449-404A-B751-970CA21AE8BD
+S = N
+SN
+1506275931
+Programmer
+1506275954
+Programmer
+UNDEF
+
+
+
+
+ECA40F41-DB0B-4984-A8FE-68A1EA221E2D
+Synchronization_1
+Synchronization_1
+1506275280
+Programmer
+1506275280
+Programmer
+
+
+
+
+5DBCD2DB-557C-4F74-B72F-DCD2DED37B9A
+якщо N
+якщоN
+1504965478
+Димыч
+1506274149
+Programmer
+
+
+C55B0526-2414-40D3-B58B-19BD7115746A
+результат > 60
+результат>60
+1505029263
+Димыч
+1506275954
+Programmer
+
+
+4B9A7D15-4FFD-476C-A137-138D04F2B47D
+М > 60
+М>60
+1506275291
+Programmer
+1506275860
+Programmer
+
+
+
+
+C16F4BDD-D575-435D-9B3A-9EDA5BB5D8CE
+Activity Diagram_1
+ActivityDiagram_1
+1504964904
+Димыч
+1506276950
+Programmer
+[DisplayPreferences]
+
+[DisplayPreferences\ACD]
+
+[DisplayPreferences\General]
+Adjust to text=Yes
+Snap Grid=No
+Constrain Labels=Yes
+Display Grid=No
+Show Page Delimiter=Yes
+Show Links intersections=Yes
+Activate automatic link routing=Yes
+Grid size=800
+Graphic unit=2
+Window color=255 255 255
+Background image=
+Background mode=8
+Watermark image=
+Watermark mode=8
+Show watermark on screen=No
+Gradient mode=0
+Gradient end color=255 255 255
+Show Swimlane=Yes
+SwimlaneVert=Yes
+TreeVert=No
+CompDark=0
+
+[DisplayPreferences\Object]
+Show Icon=Yes
+Mode=0
+Trunc Length=80
+Word Length=80
+Word Text=!""#$%&'()*+,-./:;<=>?@[\]^_`{|}~
+Shortcut IntIcon=Yes
+Shortcut IntLoct=Yes
+Shortcut IntFullPath=No
+Shortcut IntLastPackage=Yes
+Shortcut ExtIcon=Yes
+Shortcut ExtLoct=No
+Shortcut ExtFullPath=No
+Shortcut ExtLastPackage=Yes
+Shortcut ExtIncludeModl=Yes
+EObjShowStrn=Yes
+ExtendedObject.Comment=No
+ExtendedObject.IconPicture=No
+ExtendedObject.TextStyle=No
+ExtendedObject_SymbolLayout=
+ELnkShowStrn=Yes
+ELnkShowName=Yes
+ExtendedLink_SymbolLayout=
+ExtDpdShowStrn=Yes
+ExtendedDependency_SymbolLayout=<Form>[CRLF] <Form Name="Center" >[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Caption="" Mandatory="No" />[CRLF] </Form>[CRLF] <Form Name="Source" >[CRLF] </Form>[CRLF] <Form Name="Destination" >[CRLF] </Form>[CRLF]</Form>
+FileObject.Stereotype=No
+FileObject.DisplayName=Yes
+FileObject.LocationOrName=No
+FileObject.IconPicture=No
+FileObject.TextStyle=No
+FileObject.IconMode=Yes
+FileObject_SymbolLayout=
+Package.Stereotype=Yes
+Package.Comment=No
+Package.IconPicture=No
+Package.TextStyle=No
+Package_SymbolLayout=
+Display Model Version=Yes
+Activity.Stereotype=Yes
+Activity.Comment=No
+Activity.ParametersDisplay=Yes
+Activity.IconPicture=No
+Activity.TextStyle=No
+Activity.SubSymbols=Yes
+Activity_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+ObjectNode.Stereotype=Yes
+ObjectNode.Comment=No
+ObjectNode.IconPicture=No
+ObjectNode.TextStyle=No
+ObjectNode_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="Name" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="State" Attribute="States" Prefix="[" Suffix="]" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Variable.Stereotype=Yes
+Variable.Comment=No
+Variable.IconPicture=No
+Variable.TextStyle=No
+Variable_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+ActivityParameter.DisplayName=Yes
+ActivityParameter.InstanceDisplay=No
+ActivityParameter.IconPicture=No
+ActivityParameter.TextStyle=No
+ActivityParameter_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Start.Stereotype=Yes
+Start.DisplayName=No
+Start.IconPicture=No
+Start.TextStyle=No
+Start_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+End.Stereotype=Yes
+End.DisplayName=No
+End.IconPicture=No
+End.TextStyle=No
+End_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Decision.Stereotype=Yes
+Decision.DisplayedExpression=No
+Decision.DisplayedExpressionOrName=Yes
+Decision.IconPicture=No
+Decision.TextStyle=No
+Decision_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <ExclusiveChoice Name="Exclusive Choice" Mandatory="Yes" Display="HorizontalRadios" >[CRLF] <StandardAttribute Name="Expression" Attribute="DisplayedExpression" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name if no condition" Attribute="DisplayedExpressionOrName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] </ExclusiveChoice>[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Synchronization.IconPicture=No
+Synchronization.TextStyle=No
+Synchronization_SymbolLayout=
+OrganizationUnit.Stereotype=Yes
+OrganizationUnit.IconPicture=No
+OrganizationUnit.TextStyle=No
+OrganizationUnit_SymbolLayout=
+ActivityFlow.Stereotype=Yes
+ActivityFlow_SymbolLayout=<Form>[CRLF] <Form Name="Source" >[CRLF] <StandardAttribute Name="Condition" Attribute="DisplayedCondition" Prefix="[" Suffix="]" Caption="" Mandatory="Yes" />[CRLF] </Form>[CRLF] <Form Name="Destination" >[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Caption="" Mandatory="No" />[CRLF] </Form>[CRLF] <Form Name="Center" >[CRLF] </Form>[CRLF]</Form>
+
+[DisplayPreferences\Symbol]
+
+[DisplayPreferences\Symbol\FRMEOBJ]
+STRNFont=Arial,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=6000
+Height=2000
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=64
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 255 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FRMELNK]
+CENTERFont=Arial,8,N
+CENTERFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\USRDEPD]
+CENTERFont=Arial Unicode MS,8,N
+CENTERFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=2 0 128 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FILO]
+OBJSTRNFont=Arial Unicode MS,8,N
+OBJSTRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LCNMFont=Arial Unicode MS,8,N
+LCNMFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=No
+Width=2400
+Height=2400
+Brush color=255 255 255
+Fill Color=No
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=-1
+
+[DisplayPreferences\Symbol\CLDPCKG]
+STRNFont=Arial,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=3600
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 178 178 178
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMACTV]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+LABLFont=Arial,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=6000
+Height=2000
+Brush color=233 202 131
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 255 128 0
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\ACDOBST]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+NAMEFont=Arial Unicode MS,8,N
+NAMEFont color=0, 0, 0
+STATFont=Arial Unicode MS,8,N
+STATFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=3975
+Height=3000
+Brush color=205 156 156
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMVAR]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+LABLFont=Arial,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=3975
+Height=3000
+Brush color=255 176 176
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=2 0 128 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMATPM]
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=825
+Height=800
+Brush color=234 181 21
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 64
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMSTRT]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+AutoAdjustToText=No
+Keep aspect=Yes
+Keep center=Yes
+Keep size=Yes
+Width=1200
+Height=1200
+Brush color=255 128 0
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 255 128 0
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMEND]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+AutoAdjustToText=No
+Keep aspect=Yes
+Keep center=Yes
+Keep size=Yes
+Width=1500
+Height=1500
+Brush color=255 128 0
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 255 128 0
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMDCSN]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DEXPFont=Arial,8,N
+DEXPFont color=0 0 0
+DEXNFont=Arial Unicode MS,8,N
+DEXNFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=Yes
+Keep size=No
+Width=6600
+Height=4000
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 0
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMSYNC]
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=2400
+Height=1500
+Brush color=0 128 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=0 128 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMORGN]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=No
+Width=3225
+Height=4800
+Brush color=233 202 131
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=200 216 248
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 255 128 64
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMFLOW]
+SOURCEFont=Arial Unicode MS,8,N
+SOURCEFont color=0, 0, 0
+DESTINATIONFont=Arial Unicode MS,8,N
+DESTINATIONFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\Free Symbol]
+Free TextFont=Arial,8,N
+Free TextFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=0
+(8268, 11693)
+((315,354), (433,354))
+1
+15
+
+
+1504965139
+1506275457
+((-1389,18800), (-139,28149))
+((-637,27749),(-637,23562),(-764,23562),(-764,19200))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+4
+
+
+
+
+
+
+
+
+
+
+
+1504965502
+1506275461
+((-1337,15549), (-87,19374))
+((-712,18974),(-712,15949))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1504966663
+1506275838
+(-2587, -1052)
+((-20403,12270), (-3612,14957))
+((-4012,13949),(-11135,13949),(-11135,14332),(-20003,14332))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+3
+
+
+
+
+
+
+
+
+
+
+
+1505028944
+1506275843
+(3000, 748)
+((2187,13324), (11349,15121))
+((2587,13949),(10949,13949))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+1
+
+
+
+
+
+
+
+
+
+
+
+1505029210
+1506275462
+((11301,-2949), (20422,13075))
+((11701,12675),(11701,5251),(19797,5251),(19797,-2549))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+4
+
+
+
+
+
+
+
+
+
+
+
+1505029375
+1506275963
+((16286,-12097), (20218,-3148))
+((19818,-3548),(19818,-11472),(16686,-11472))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+4
+
+
+
+
+
+
+
+
+
+
+
+1505029378
+1506275963
+((11790,-19097), (14063,-13072))
+((12301,-13472),(12301,-15272),(12415,-15272),(12415,-18697))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+2
+
+
+
+
+
+
+
+
+
+
+
+1505029581
+1506275799
+((-17988,-29273), (-1214,-17672))
+((-17588,-18072),(-1839,-18072),(-1839,-28873))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1505029583
+1506275794
+((-2464,-29273), (16266,-17672))
+((15866,-18072),(-1839,-18072),(-1839,-28873))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+3
+
+
+
+
+
+
+
+
+
+
+
+1505029612
+1506275788
+((-2012,-34975), (-762,-29473))
+((-1387,-29873),(-1387,-34575))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506275284
+1506275490
+((-17853,4827), (-13543,13757))
+((-17453,13357),(-17453,11047),(-14168,11047),(-14168,5227))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+2
+
+
+
+
+
+
+
+
+
+
+
+1506275293
+1506275372
+((-23344,777), (-13768,5627))
+((-14168,5227),(-22719,5227),(-22719,1177))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+3
+
+
+
+
+
+
+
+
+
+
+
+1506275295
+1506275888
+((-14568,-1573), (-4093,5627))
+((-14168,5227),(-4718,5227),(-4718,-1173))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+3
+
+
+
+
+
+
+
+
+
+
+
+1506275433
+1506275888
+((-1819,-3572), (3256,7078))
+((-1419,-3172),(2631,-3172),(2631,6678))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506275444
+1506275868
+((-19278,6278), (3031,13757))
+((2631,6678),(-18653,6678),(-18653,13357))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506275612
+1506275612
+((-22062,-3817), (-20808,578))
+((-21427,178),(-21441,-3417))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506275766
+1506275799
+((-18213,-18244), (-16963,-10382))
+((-17588,-10782),(-17588,-17844))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506275769
+1506275769
+((-19669,-11182), (-18419,-3017))
+((-19044,-3417),(-19044,-10782))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506275853
+1506275888
+(4613, 4349)
+((-1819,-3572), (16111,13451))
+((-1419,-3172),(15486,-3172),(15486,13051))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506275939
+1506275963
+((8906,-9873), (12701,-6352))
+((12301,-9473),(12301,-9112),(9531,-9112),(9531,-6752))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506275941
+1506275941
+((-20478,-6152), (9931,13757))
+((9531,-5752),(9531,3878),(-19853,3878),(-19853,13357))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1504965030
+1506275452
+-1
+((-1237,27150), (-38,28349))
+0
+33023
+33023
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+6
+512
+12632256
+1
+1
+1
+
+
+
+
+
+1504965132
+1506275457
+-1
+((-5368,17975), (3488,19974))
+33023
+8637161
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+
+
+1506273655
+1506273869
+-1
+((-4954,19574), (-4131,20373))
+0
+4227200
+1422826
+12632256
+DISPNAME 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+1506273671
+1506273869
+-1
+((2253,17575), (3076,18374))
+0
+4227200
+1422826
+12632256
+DISPNAME 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+
+
+
+
+
+1504965478
+1506275461
+-1
+((-4012,11950), (2587,15949))
+32896
+12648447
+12632256
+STRN 0 Arial,8,N
+DEXP 0 Arial,8,N
+DEXN 0 Arial Unicode MS,8,N
+6
+512
+16777215
+1
+
+
+
+
+
+1504965512
+1506275792
+-1
+((8213,-19072), (23519,-17073))
+33023
+8637161
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+1504965513
+1506275483
+-1
+((-21788,12277), (-15518,14437))
+0
+33023
+8637161
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+1
+
+
+1506274658
+1506275483
+-1
+((-21886,14038), (-21063,14837))
+0
+4227200
+1422826
+12632256
+DISPNAME 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+1506274908
+1506275483
+-1
+((-16243,11878), (-15420,12677))
+0
+4227200
+1422826
+12632256
+DISPNAME 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+1506275311
+1506275483
+-1
+(0, -900)
+((-17184,11878), (-16361,12677))
+0
+4227200
+1422826
+12632256
+DISPNAME 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+
+
+
+
+
+1504966212
+1506275799
+-1
+((-23441,-18844), (-11735,-16845))
+33023
+8637161
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+1505028804
+1506275462
+-1
+((10949,12052), (30979,14051))
+33023
+8637161
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+
+
+1506273980
+1506275367
+-1
+((12224,13651), (13047,14450))
+0
+4227200
+1422826
+12632256
+DISPNAME 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+1506273980
+1506275367
+-1
+((28880,11652), (29703,12451))
+0
+4227200
+1422826
+12632256
+DISPNAME 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+
+
+
+
+
+1505029061
+1506275915
+-1
+((17361,-3548), (25317,-1549))
+33023
+8637161
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+
+
+1506275903
+1506275915
+-1
+((24605,-3948), (25428,-3149))
+0
+4227200
+1422826
+12632256
+DISPNAME 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+1506275903
+1506275915
+-1
+((17249,-1949), (18072,-1150))
+0
+4227200
+1422826
+12632256
+DISPNAME 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+
+
+
+
+
+1505029263
+1506275963
+-1
+((7916,-13472), (16686,-9473))
+32896
+12648447
+12632256
+STRN 0 Arial,8,N
+DEXP 0 Arial,8,N
+DEXN 0 Arial Unicode MS,8,N
+6
+512
+16777215
+1
+
+
+
+
+
+1505029576
+1506275788
+-1
+((-6979,-29873), (3301,-27874))
+33023
+8637161
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+1505029608
+1506275787
+-1
+((-2137,-35325), (-638,-33826))
+0
+33023
+33023
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+6
+512
+12632256
+1
+1
+1
+
+
+
+
+
+1506275280
+1506275372
+((-15368,4478), (-12969,5977))
+12615680
+12615680
+12632256
+6
+512
+12615680
+
+
+
+
+
+1506275289
+1506275538
+-1
+((-32434,178), (-13007,2177))
+33023
+8637161
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+
+
+1506275533
+1506275538
+-1
+((-32546,1777), (-31723,2576))
+0
+4227200
+1422826
+12632256
+DISPNAME 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+
+
+
+
+
+1506275291
+1506275888
+-1
+((-8018,-5172), (-1419,-1173))
+32896
+12648447
+12632256
+STRN 0 Arial,8,N
+DEXP 0 Arial,8,N
+DEXN 0 Arial Unicode MS,8,N
+6
+512
+16777215
+1
+
+
+
+
+
+1506275430
+1506275868
+-1
+((-368,5679), (5631,7678))
+33023
+8637161
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+
+
+1506275541
+1506275545
+-1
+((-480,7278), (343,8077))
+0
+4227200
+1422826
+12632256
+DISPNAME 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+1506275546
+1506275551
+-1
+((4919,5279), (5742,6078))
+0
+4227200
+1422826
+12632256
+DISPNAME 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+
+
+
+
+
+1506275580
+1506275725
+-1
+((-25984,-4416), (-16753,-2417))
+33023
+8637161
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+
+
+1506275581
+1506275691
+-1
+((-25196,-2818), (-24373,-2019))
+0
+4227200
+1422826
+12632256
+DISPNAME 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+1506275701
+1506275725
+-1
+((-17465,-4816), (-16642,-4017))
+0
+4227200
+1422826
+12632256
+DISPNAME 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+
+
+
+
+
+1506275737
+1506275759
+-1
+((-22043,-11781), (-16044,-9782))
+33023
+8637161
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+
+
+1506275739
+1506275759
+-1
+((-16756,-12181), (-15933,-11382))
+0
+4227200
+1422826
+12632256
+DISPNAME 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+1506275739
+1506275759
+-1
+((-22155,-10182), (-21332,-9383))
+0
+4227200
+1422826
+12632256
+DISPNAME 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+
+
+
+
+
+1506275931
+1506275931
+-1
+((6532,-6752), (12531,-4753))
+33023
+8637161
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+1506276860
+1506276860
+((-24600,23775), (-20625,26774))
+8421504
+2
+11579647
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+1506276861
+1506276861
+((-19800,23775), (-15825,26774))
+8421504
+2
+11579647
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+1506276862
+1506276862
+((-15000,23775), (-11025,26774))
+8421504
+2
+11579647
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+1506276863
+1506276863
+((-10350,23775), (-6375,26774))
+8421504
+2
+11579647
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+1506276864
+1506276864
+((1575,23925), (5550,26924))
+8421504
+2
+11579647
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+1506276950
+1506276950
+((7275,23850), (11250,26849))
+8421504
+2
+11579647
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+
+
+
+
+A296F3D5-373B-40A1-AAAA-1D53D963A8CC
+Start_1
+Start_1
+1504965030
+Димыч
+1504965030
+Димыч
+
+
+
+
+B9F41A49-7D4B-4CAA-942D-D51B6819FF21
+End_1
+End_1
+1505029608
+Димыч
+1505029608
+Димыч
+
+
+
+
+DA07BF99-307D-4D90-B681-4B94E5C5D08B
+M
+M
+1506276860
+Programmer
+1506276875
+Programmer
+int
+
+
+5A11A65D-C342-48DB-B68B-1C61D7E4859F
+N
+N
+1506276861
+Programmer
+1506276881
+Programmer
+int
+
+
+9665115F-BD62-4EDC-A704-3A2D4B7911CD
+O
+O
+1506276862
+Programmer
+1506276884
+Programmer
+int
+
+
+E550A150-D64D-4B57-96A6-AC0579EBD352
+P
+P
+1506276863
+Programmer
+1506276890
+Programmer
+int
+
+
+FC900FBC-E0AD-48F9-AB58-6F74DC19D95B
+R
+R
+1506276864
+Programmer
+1506276894
+Programmer
+int
+
+
+139EE7E4-6BF9-403E-984A-EDBC8D9B8600
+S
+S
+1506276950
+Programmer
+1506276955
+Programmer
+int
+
+
+
+
+18DE4086-CD19-491E-AB73-1BC31113BF92
+Java
+Java
+1506273549
+Programmer
+1506273549
+Programmer
+file:///%_OBJLANG%/java5-j2ee14.xol
+0DEDDB90-46E2-45A0-886E-411709DA0DC9
+1811206C-1A4B-11D1-83D9-444553540000
+1302065259
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/km72/Ivchenko_Ivan/1/task2.oom b/km72/Ivchenko_Ivan/1/task2.oom
new file mode 100644
index 00000000..48a61fe2
--- /dev/null
+++ b/km72/Ivchenko_Ivan/1/task2.oom
@@ -0,0 +1,3149 @@
+
+
+
+
+
+
+
+
+
+B72C25CA-5B69-4D94-A380-B53350190FC0
+Activity Diagram_1
+ActivityDiagram_1
+1505029972
+Димыч
+1506276531
+Programmer
+[FolderOptions]
+
+[FolderOptions\Class Diagram Objects]
+GenerationCheckModel=Yes
+GenerationPath=
+GenerationOptions=
+GenerationTasks=
+GenerationTargets=
+GenerationSelections=
+[ModelOptions]
+
+[ModelOptions\Cld]
+CaseSensitive=Yes
+DisplayName=Yes
+EnableTrans=Yes
+UseTerm=No
+EnableRequirements=No
+EnableFullShortcut=Yes
+ShowClss=No
+DeftAttr=int
+DeftMthd=int
+DeftParm=int
+DeftCont=java.util.Collection
+DomnDttp=Yes
+DomnChck=No
+DomnRule=No
+SupportDelay=No
+PreviewEditable=Yes
+AutoRealize=No
+DttpFullName=Yes
+DeftClssAttrVisi=private
+VBNetPreprocessingSymbols=
+CSharpPreprocessingSymbols=
+SynchroCode=Yes
+
+[ModelOptions\Cld\NamingOptionsTemplates]
+
+[ModelOptions\Cld\ClssNamingOptions]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDPCKG]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDPCKG\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=.convert_name(%Name%,,,firstLowerWord)
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDPCKG\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDDOMN]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDDOMN\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDDOMN\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDCLASS]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDCLASS\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=.convert_name(%Name%,,,FirstUpperChar)
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDCLASS\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDINTF]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDINTF\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=.convert_name(%Name%,,,FirstUpperChar)
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDINTF\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\UCDACTR]
+
+[ModelOptions\Cld\ClssNamingOptions\UCDACTR\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\UCDACTR\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\UCDUCAS]
+
+[ModelOptions\Cld\ClssNamingOptions\UCDUCAS\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\UCDUCAS\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\SQDOBJT]
+
+[ModelOptions\Cld\ClssNamingOptions\SQDOBJT\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\SQDOBJT\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\SQDMSSG]
+
+[ModelOptions\Cld\ClssNamingOptions\SQDMSSG\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\SQDMSSG\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CPDCOMP]
+
+[ModelOptions\Cld\ClssNamingOptions\CPDCOMP\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=.convert_name(%Name%,,,FirstUpperChar)
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CPDCOMP\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDATTR]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDATTR\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=.convert_name(%Name%,,,firstLowerWord)
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDATTR\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDMETHOD]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDMETHOD\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=.convert_name(%Name%,,,firstLowerWord)
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDMETHOD\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDPARM]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDPARM\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=.convert_name(%Name%,,,firstLowerWord)
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDPARM\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\OOMPORT]
+
+[ModelOptions\Cld\ClssNamingOptions\OOMPORT\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\OOMPORT\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\OOMPART]
+
+[ModelOptions\Cld\ClssNamingOptions\OOMPART\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\OOMPART\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDASSC]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDASSC\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=.convert_name(%Name%,,,firstLowerWord)
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDASSC\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\UCDASSC]
+
+[ModelOptions\Cld\ClssNamingOptions\UCDASSC\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\UCDASSC\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\GNRLLINK]
+
+[ModelOptions\Cld\ClssNamingOptions\GNRLLINK\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\GNRLLINK\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\RQLINK]
+
+[ModelOptions\Cld\ClssNamingOptions\RQLINK\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\RQLINK\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\RLZSLINK]
+
+[ModelOptions\Cld\ClssNamingOptions\RLZSLINK\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\RLZSLINK\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DEPDLINK]
+
+[ModelOptions\Cld\ClssNamingOptions\DEPDLINK\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DEPDLINK\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\OOMACTV]
+
+[ModelOptions\Cld\ClssNamingOptions\OOMACTV\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\OOMACTV\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\ACDOBST]
+
+[ModelOptions\Cld\ClssNamingOptions\ACDOBST\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\ACDOBST\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\STAT]
+
+[ModelOptions\Cld\ClssNamingOptions\STAT\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\STAT\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DPDNODE]
+
+[ModelOptions\Cld\ClssNamingOptions\DPDNODE\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DPDNODE\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DPDCMPI]
+
+[ModelOptions\Cld\ClssNamingOptions\DPDCMPI\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DPDCMPI\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DPDASSC]
+
+[ModelOptions\Cld\ClssNamingOptions\DPDASSC\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DPDASSC\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\OOMVAR]
+
+[ModelOptions\Cld\ClssNamingOptions\OOMVAR\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\OOMVAR\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\FILO]
+
+[ModelOptions\Cld\ClssNamingOptions\FILO\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\FILO\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\FRMEOBJ]
+
+[ModelOptions\Cld\ClssNamingOptions\FRMEOBJ\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\FRMEOBJ\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\FRMELNK]
+
+[ModelOptions\Cld\ClssNamingOptions\FRMELNK\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\FRMELNK\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DefaultClass]
+
+[ModelOptions\Cld\ClssNamingOptions\DefaultClass\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DefaultClass\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Generate]
+
+[ModelOptions\Generate\Xsm]
+GenRootElement=Yes
+GenComplexType=No
+GenAttribute=Yes
+CheckModel=Yes
+SaveLinks=Yes
+ORMapping=No
+NameToCode=No
+
+[ModelOptions\Generate\Cdm]
+CheckModel=Yes
+SaveLinks=Yes
+NameToCode=No
+Notation=2
+
+[ModelOptions\Generate\Pdm]
+CheckModel=Yes
+SaveLinks=Yes
+ORMapping=No
+NameToCode=No
+BuildTrgr=No
+TablePrefix=
+IndxPKName=%TABLE%_PK
+IndxAKName=%TABLE%_AK
+IndxFKName=%REFR%_FK
+IndxThreshold=
+ColnFKName=%.3:PARENT%_%COLUMN%
+ColnFKNameUse=No
+
+
+39E8E3B0-4162-48BB-A1B5-304627208F9A
+Java
+Java
+1506276180
+Programmer
+1506276180
+Programmer
+
+0DEDDB90-46E2-45A0-886E-411709DA0DC9
+1811206C-1A4B-11D1-83D9-444553540000
+
+
+
+
+
+
+
+A62D8465-BF9D-4174-8716-11A809A31A9E
+1505030002
+Димыч
+1505030002
+Димыч
+
+
+
+
+
+
+
+
+EAE9D203-C913-4095-9D8A-5FD2C993CCE2
+1505030370
+Димыч
+1505030370
+Димыч
+
+
+
+
+
+
+
+
+AEABA7A7-0DF2-45B6-AF9E-664343DB4F40
+1505030372
+Димыч
+1505030372
+Димыч
+
+
+
+
+
+
+
+
+EB60EC34-A456-4CF6-AF4D-281E2809C357
+1505031572
+Димыч
+1505031572
+Димыч
+
+
+
+
+
+
+
+
+5B2EAE18-1DE5-4A9F-8D19-59C5CA79B1B0
+1505031574
+Димыч
+1505031574
+Димыч
+
+
+
+
+
+
+
+
+B2044DEC-76E0-432B-A822-C315BA409751
+1505031692
+Димыч
+1505031692
+Димыч
+
+
+
+
+
+
+
+
+4ED6D630-A7C7-40A8-B254-E78D8F29766C
+1505031699
+Димыч
+1505031699
+Димыч
+
+
+
+
+
+
+
+
+AFB128C4-8DDE-4380-88F7-35AB9559F2D6
+1505032693
+Димыч
+1505032693
+Димыч
+
+
+
+
+
+
+
+
+
+
+8D96779D-5874-4B28-87A3-D11589F5A9A0
+привітати користувача
+привітатикористувача
+1505029998
+Димыч
+1506276198
+Programmer
+UNDEF
+
+
+A4469CAE-6071-411C-BA7A-714E47072A49
+показати користувача поле для вводу значення першого катета (а)
+showacellforafirstcathetus
+1505030363
+Димыч
+1506276282
+Programmer
+UNDEF
+
+
+E7CC0384-2C4D-4F77-A546-452A175F55D5
+показати користувача поле для вводу значення другого катета (b)
+showacellforbsecondcathetus
+1505030365
+Димыч
+1506276291
+Programmer
+UNDEF
+
+
+1DCE3BAF-EA3A-4CC7-B25D-01E34B65CA0B
+дозволити користувачу ввести дані
+allowcustomertoentervaluesofa,b
+1505031522
+Димыч
+1506276314
+Programmer
+UNDEF
+
+
+B7BC6111-1E5A-4685-8F7B-3341BAA97C32
+а
+Valueofa
+1505037834
+Димыч
+1506276329
+Programmer
+int
+
+
+F34AF0A6-DE4B-4931-9A93-0FC41BED5FDB
+b
+Valueofb
+1505037834
+Димыч
+1506276329
+Programmer
+int
+
+
+
+
+B2D437B4-8D29-47DC-A909-989E424C5287
+розрахувати площу
+calculatetheareausingthepackageformula
+1505031591
+Димыч
+1506276566
+Programmer
+UNDEF
+
+
+
+
+
+5B3F6FAF-B442-4022-8A07-8132934277CC
+1506276434
+Programmer
+1506276434
+Programmer
+
+
+
+
+
+
+
+
+975EEEB4-20AF-4A7B-816F-65987A6D4013
+1506276507
+Programmer
+1506276507
+Programmer
+
+
+
+
+
+
+
+
+B6057A53-5DA3-486F-857E-2C3FB6DFCA27
+1506276514
+Programmer
+1506276514
+Programmer
+
+
+
+
+
+
+
+
+
+
+34F5507B-643C-40E9-994D-A28B186FD521
+a
+a
+1506276553
+Programmer
+1506276566
+Programmer
+int
+
+
+024B7223-39F2-4DFF-B0AB-DFCF2086A493
+b
+b
+1506276553
+Programmer
+1506276566
+Programmer
+int
+
+
+
+
+BF51969B-CA73-4EFC-9885-C8A9939C79C2
+s
+s
+1505032529
+Димыч
+1506276566
+Programmer
+int
+
+
+
+
+34E1F698-EE7B-452A-B454-6FA0C2864073
+s
+s
+1506276391
+Programmer
+1506276566
+Programmer
+int
+
+
+
+
+
+751DCA25-CBA7-45C2-9B12-1F9027FE06A7
+a
+a
+1506276553
+Programmer
+1506276566
+Programmer
+int
+
+
+
+
+
+C2525E2C-4A5A-44F6-8F35-0E53EDAC90FC
+b
+b
+1506276553
+Programmer
+1506276566
+Programmer
+int
+
+
+
+
+
+
+
+4920455A-8BED-41F6-B43B-BD6A984ABC52
+a*b
+ab
+1506276407
+Programmer
+1506276417
+Programmer
+UNDEF
+
+
+5BC6F425-7CD5-4591-A7F0-1B3742095F5D
+a*b*0.5
+ab05
+1506276420
+Programmer
+1506276428
+Programmer
+UNDEF
+
+
+
+
+6A5CBA17-8CAB-4F9E-AB29-69832CC9ADD0
+ActivityDiagram_1
+ActivityDiagram_1
+1506276391
+Programmer
+1506276566
+Programmer
+[DisplayPreferences]
+
+[DisplayPreferences\ACD]
+
+[DisplayPreferences\General]
+Adjust to text=Yes
+Snap Grid=No
+Constrain Labels=Yes
+Display Grid=No
+Show Page Delimiter=Yes
+Show Links intersections=Yes
+Activate automatic link routing=Yes
+Grid size=0
+Graphic unit=2
+Window color=255, 255, 255
+Background image=
+Background mode=8
+Watermark image=
+Watermark mode=8
+Show watermark on screen=No
+Gradient mode=0
+Gradient end color=255, 255, 255
+Show Swimlane=Yes
+SwimlaneVert=Yes
+TreeVert=No
+CompDark=0
+
+[DisplayPreferences\Object]
+Show Icon=Yes
+Mode=2
+Trunc Length=40
+Word Length=40
+Word Text=!"#$%&')*+,-./:;=>?@\]^_`|}~
+Shortcut IntIcon=Yes
+Shortcut IntLoct=Yes
+Shortcut IntFullPath=No
+Shortcut IntLastPackage=Yes
+Shortcut ExtIcon=Yes
+Shortcut ExtLoct=No
+Shortcut ExtFullPath=No
+Shortcut ExtLastPackage=Yes
+Shortcut ExtIncludeModl=Yes
+EObjShowStrn=Yes
+ExtendedObject.Comment=No
+ExtendedObject.IconPicture=No
+ExtendedObject.TextStyle=No
+ExtendedObject_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Object Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+ELnkShowStrn=Yes
+ELnkShowName=Yes
+ExtendedLink_SymbolLayout=<Form>[CRLF] <Form Name="Center" >[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Caption="" Mandatory="No" />[CRLF] </Form>[CRLF] <Form Name="Source" >[CRLF] </Form>[CRLF] <Form Name="Destination" >[CRLF] </Form>[CRLF]</Form>
+FileObject.Stereotype=No
+FileObject.DisplayName=Yes
+FileObject.LocationOrName=No
+FileObject.IconPicture=No
+FileObject.TextStyle=No
+FileObject.IconMode=Yes
+FileObject_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <ExclusiveChoice Name="Exclusive Choice" Mandatory="Yes" Display="HorizontalRadios" >[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Location" Attribute="LocationOrName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] </ExclusiveChoice>[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Package.Stereotype=Yes
+Package.Comment=No
+Package.IconPicture=No
+Package.TextStyle=No
+Package_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Display Model Version=Yes
+Activity.Stereotype=Yes
+Activity.Comment=No
+Activity.ParametersDisplay=Yes
+Activity.IconPicture=No
+Activity.TextStyle=No
+Activity.SubSymbols=Yes
+Activity_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+ObjectNode.Stereotype=Yes
+ObjectNode.Comment=No
+ObjectNode.IconPicture=No
+ObjectNode.TextStyle=No
+ObjectNode_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="Name" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="State" Attribute="States" Prefix="[" Suffix="]" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Variable.Stereotype=Yes
+Variable.Comment=No
+Variable.IconPicture=No
+Variable.TextStyle=No
+Variable_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+ActivityParameter.DisplayName=Yes
+ActivityParameter.InstanceDisplay=No
+ActivityParameter.IconPicture=No
+ActivityParameter.TextStyle=No
+ActivityParameter_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Start.Stereotype=Yes
+Start.DisplayName=No
+Start.IconPicture=No
+Start.TextStyle=No
+Start_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+End.Stereotype=Yes
+End.DisplayName=No
+End.IconPicture=No
+End.TextStyle=No
+End_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Decision.Stereotype=Yes
+Decision.DisplayedExpression=No
+Decision.DisplayedExpressionOrName=Yes
+Decision.IconPicture=No
+Decision.TextStyle=No
+Decision_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <ExclusiveChoice Name="Exclusive Choice" Mandatory="Yes" Display="HorizontalRadios" >[CRLF] <StandardAttribute Name="Expression" Attribute="DisplayedExpression" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name if no condition" Attribute="DisplayedExpressionOrName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] </ExclusiveChoice>[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Synchronization.IconPicture=No
+Synchronization.TextStyle=No
+Synchronization_SymbolLayout=
+OrganizationUnit.Stereotype=Yes
+OrganizationUnit.IconPicture=No
+OrganizationUnit.TextStyle=No
+OrganizationUnit_SymbolLayout=
+ActivityFlow.Stereotype=Yes
+ActivityFlow_SymbolLayout=<Form>[CRLF] <Form Name="Source" >[CRLF] <StandardAttribute Name="Condition" Attribute="DisplayedCondition" Prefix="[" Suffix="]" Caption="" Mandatory="Yes" />[CRLF] </Form>[CRLF] <Form Name="Destination" >[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Caption="" Mandatory="No" />[CRLF] </Form>[CRLF] <Form Name="Center" >[CRLF] </Form>[CRLF]</Form>
+
+[DisplayPreferences\Symbol]
+
+[DisplayPreferences\Symbol\FRMEOBJ]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=6000
+Height=2000
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=64
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 255 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FRMELNK]
+CENTERFont=Arial Unicode MS,8,N
+CENTERFont color=0, 0, 0
+Line style=1
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FILO]
+OBJSTRNFont=Arial Unicode MS,8,N
+OBJSTRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LCNMFont=Arial Unicode MS,8,N
+LCNMFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=3600
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\CLDPCKG]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=4000
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 178 178 178
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMACTV]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=6000
+Height=2000
+Brush color=192 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\ACDOBST]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+NAMEFont=Arial Unicode MS,8,N
+NAMEFont color=0, 0, 0
+STATFont=Arial Unicode MS,8,N
+STATFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4000
+Height=3000
+Brush color=224 224 224
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMVAR]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4000
+Height=3000
+Brush color=224 224 224
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=2 0 128 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMATPM]
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=Yes
+Width=800
+Height=800
+Brush color=192 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMSTRT]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=Yes
+Width=1200
+Height=1200
+Brush color=0 128 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMEND]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=Yes
+Width=1500
+Height=1500
+Brush color=0 128 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMDCSN]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DEXPFont=Arial Unicode MS,8,N
+DEXPFont color=0, 0, 0
+DEXNFont=Arial Unicode MS,8,N
+DEXNFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=Yes
+Keep size=No
+Width=6600
+Height=4000
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 0
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMSYNC]
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=2400
+Height=1500
+Brush color=0 128 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=0 128 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMORGN]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=No
+Width=3200
+Height=4800
+Brush color=242 242 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=200 216 248
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMFLOW]
+SOURCEFont=Arial Unicode MS,8,N
+SOURCEFont color=0, 0, 0
+DESTINATIONFont=Arial Unicode MS,8,N
+DESTINATIONFont color=0, 0, 0
+Line style=1
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\USRDEPD]
+OBJXSTRFont=Arial Unicode MS,8,N
+OBJXSTRFont color=0, 0, 0
+Line style=1
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=2 0 128 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\Free Symbol]
+Free TextFont=Arial Unicode MS,8,N
+Free TextFont color=0, 0, 0
+Line style=0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=0
+(8268, 11693)
+((315,354), (433,354))
+1
+15
+
+
+1506276434
+1506276500
+((-438,2338), (812,9063))
+((187,8663),(187,2738))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+4
+
+
+
+
+
+
+
+
+
+
+
+1506276507
+1506276507
+((-887,8562), (587,14537))
+((187,14137),(187,11750),(-262,11750),(-262,8962))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506276514
+1506276514
+((304,-1037), (1643,3063))
+((787,2663),(1087,-637))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+4
+
+
+
+
+
+
+
+
+
+
+
+1506276391
+1506276405
+((-1926,-6824), (2074,-3825))
+8421504
+14737632
+12632256
+STRN 0 Arial Unicode MS,8,N
+NAME 0 Arial Unicode MS,8,N
+STAT 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+1506276407
+1506276500
+-1
+((-3262,7963), (2737,9962))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+1506276420
+1506276499
+-1
+((-3562,2188), (2437,4187))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+1506276455
+1506276461
+((13488,7163), (17487,10162))
+8421504
+2
+14737632
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+1506276480
+1506276485
+((19338,7238), (23337,10237))
+8421504
+2
+14737632
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+1506276503
+1506276503
+-1
+((-412,13538), (787,14737))
+12615680
+12615680
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+12632256
+1
+1
+1
+
+
+
+
+
+1506276508
+1506276508
+-1
+((338,-1387), (1837,112))
+12615680
+12615680
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+12632256
+1
+1
+1
+
+
+
+
+
+1506276553
+1506276566
+((-11202,3812), (-7202,6811))
+8421504
+14737632
+12632256
+STRN 0 Arial Unicode MS,8,N
+NAME 0 Arial Unicode MS,8,N
+STAT 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+1506276553
+1506276566
+((-12285,-7435), (-8285,-4436))
+8421504
+14737632
+12632256
+STRN 0 Arial Unicode MS,8,N
+NAME 0 Arial Unicode MS,8,N
+STAT 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+
+
+
+
+364E8C21-135C-4274-9769-CF9F80F89947
+Start_1
+Start_1
+1506276503
+Programmer
+1506276503
+Programmer
+
+
+
+
+CD8FE99B-C55E-405E-8E78-3407DA8CDACC
+End_1
+End_1
+1506276508
+Programmer
+1506276508
+Programmer
+
+
+
+
+5E4FD581-464A-4237-AC4E-3FA1FAC5CDA2
+a
+a
+1506276455
+Programmer
+1506276459
+Programmer
+int
+
+
+1D640F1F-F433-42D2-B5B7-31E0972526D5
+b
+b
+1506276480
+Programmer
+1506276482
+Programmer
+int
+
+
+
+
+3FE38ABE-D221-415E-896C-75546A2E5261
+показати s користувачу
+показатиsкористувачу
+1505031675
+Димыч
+1506276598
+Programmer
+UNDEF
+
+
+6AAF8912-AD4C-4958-B375-1A8B370E34D0
+s
+s
+1506276589
+Programmer
+1506276598
+Programmer
+int
+
+
+
+
+
+
+1E7033B8-01E4-4E82-90A9-F03A10FB691F
+Activity Diagram_1
+ActivityDiagram_1
+1505029972
+Димыч
+1506276598
+Programmer
+[DisplayPreferences]
+
+[DisplayPreferences\ACD]
+
+[DisplayPreferences\General]
+Adjust to text=Yes
+Snap Grid=No
+Constrain Labels=Yes
+Display Grid=No
+Show Page Delimiter=Yes
+Show Links intersections=Yes
+Activate automatic link routing=Yes
+Grid size=800
+Graphic unit=2
+Window color=255 255 255
+Background image=
+Background mode=8
+Watermark image=
+Watermark mode=8
+Show watermark on screen=No
+Gradient mode=0
+Gradient end color=255 255 255
+Show Swimlane=Yes
+SwimlaneVert=Yes
+TreeVert=No
+CompDark=0
+
+[DisplayPreferences\Object]
+Show Icon=Yes
+Mode=0
+Trunc Length=80
+Word Length=80
+Word Text=!""#$%&'()*+,-./:;<=>?@[\]^_`{|}~
+Shortcut IntIcon=Yes
+Shortcut IntLoct=Yes
+Shortcut IntFullPath=No
+Shortcut IntLastPackage=Yes
+Shortcut ExtIcon=Yes
+Shortcut ExtLoct=No
+Shortcut ExtFullPath=No
+Shortcut ExtLastPackage=Yes
+Shortcut ExtIncludeModl=Yes
+EObjShowStrn=Yes
+ExtendedObject.Comment=No
+ExtendedObject.IconPicture=No
+ExtendedObject.TextStyle=No
+ExtendedObject_SymbolLayout=
+ELnkShowStrn=Yes
+ELnkShowName=Yes
+ExtendedLink_SymbolLayout=
+ExtDpdShowStrn=Yes
+ExtendedDependency_SymbolLayout=<Form>[CRLF] <Form Name="Center" >[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Caption="" Mandatory="No" />[CRLF] </Form>[CRLF] <Form Name="Source" >[CRLF] </Form>[CRLF] <Form Name="Destination" >[CRLF] </Form>[CRLF]</Form>
+FileObject.Stereotype=No
+FileObject.DisplayName=Yes
+FileObject.LocationOrName=No
+FileObject.IconPicture=No
+FileObject.TextStyle=No
+FileObject.IconMode=Yes
+FileObject_SymbolLayout=
+Package.Stereotype=Yes
+Package.Comment=No
+Package.IconPicture=No
+Package.TextStyle=No
+Package_SymbolLayout=
+Display Model Version=Yes
+Activity.Stereotype=Yes
+Activity.Comment=No
+Activity.ParametersDisplay=Yes
+Activity.IconPicture=No
+Activity.TextStyle=No
+Activity.SubSymbols=Yes
+Activity_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+ObjectNode.Stereotype=Yes
+ObjectNode.Comment=No
+ObjectNode.IconPicture=No
+ObjectNode.TextStyle=No
+ObjectNode_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="Name" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="State" Attribute="States" Prefix="[" Suffix="]" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Variable.Stereotype=Yes
+Variable.Comment=No
+Variable.IconPicture=No
+Variable.TextStyle=No
+Variable_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+ActivityParameter.DisplayName=Yes
+ActivityParameter.InstanceDisplay=No
+ActivityParameter.IconPicture=No
+ActivityParameter.TextStyle=No
+ActivityParameter_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Start.Stereotype=Yes
+Start.DisplayName=No
+Start.IconPicture=No
+Start.TextStyle=No
+Start_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+End.Stereotype=Yes
+End.DisplayName=No
+End.IconPicture=No
+End.TextStyle=No
+End_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Decision.Stereotype=Yes
+Decision.DisplayedExpression=No
+Decision.DisplayedExpressionOrName=Yes
+Decision.IconPicture=No
+Decision.TextStyle=No
+Decision_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <ExclusiveChoice Name="Exclusive Choice" Mandatory="Yes" Display="HorizontalRadios" >[CRLF] <StandardAttribute Name="Expression" Attribute="DisplayedExpression" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name if no condition" Attribute="DisplayedExpressionOrName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] </ExclusiveChoice>[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Synchronization.IconPicture=No
+Synchronization.TextStyle=No
+Synchronization_SymbolLayout=
+OrganizationUnit.Stereotype=Yes
+OrganizationUnit.IconPicture=No
+OrganizationUnit.TextStyle=No
+OrganizationUnit_SymbolLayout=
+ActivityFlow.Stereotype=Yes
+ActivityFlow_SymbolLayout=<Form>[CRLF] <Form Name="Source" >[CRLF] <StandardAttribute Name="Condition" Attribute="DisplayedCondition" Prefix="[" Suffix="]" Caption="" Mandatory="Yes" />[CRLF] </Form>[CRLF] <Form Name="Destination" >[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Caption="" Mandatory="No" />[CRLF] </Form>[CRLF] <Form Name="Center" >[CRLF] </Form>[CRLF]</Form>
+
+[DisplayPreferences\Symbol]
+
+[DisplayPreferences\Symbol\FRMEOBJ]
+STRNFont=Arial,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=6000
+Height=2000
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=64
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 255 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FRMELNK]
+CENTERFont=Arial,8,N
+CENTERFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\USRDEPD]
+CENTERFont=Arial Unicode MS,8,N
+CENTERFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=2 0 128 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FILO]
+OBJSTRNFont=Arial Unicode MS,8,N
+OBJSTRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LCNMFont=Arial Unicode MS,8,N
+LCNMFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=No
+Width=2400
+Height=2400
+Brush color=255 255 255
+Fill Color=No
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=-1
+
+[DisplayPreferences\Symbol\CLDPCKG]
+STRNFont=Arial,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=3600
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 178 178 178
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMACTV]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+LABLFont=Arial,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=6000
+Height=2000
+Brush color=233 202 131
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 255 128 0
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\ACDOBST]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+NAMEFont=Arial Unicode MS,8,N
+NAMEFont color=0, 0, 0
+STATFont=Arial Unicode MS,8,N
+STATFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=3975
+Height=3000
+Brush color=205 156 156
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMVAR]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+LABLFont=Arial,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=3975
+Height=3000
+Brush color=255 176 176
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=2 0 128 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMATPM]
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=825
+Height=800
+Brush color=234 181 21
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 64
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMSTRT]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+AutoAdjustToText=No
+Keep aspect=Yes
+Keep center=Yes
+Keep size=Yes
+Width=1200
+Height=1200
+Brush color=255 128 0
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 255 128 0
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMEND]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+AutoAdjustToText=No
+Keep aspect=Yes
+Keep center=Yes
+Keep size=Yes
+Width=1500
+Height=1500
+Brush color=255 128 0
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 255 128 0
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMDCSN]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DEXPFont=Arial,8,N
+DEXPFont color=0 0 0
+DEXNFont=Arial Unicode MS,8,N
+DEXNFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=Yes
+Keep size=No
+Width=6600
+Height=4000
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 0
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMSYNC]
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=2400
+Height=1500
+Brush color=0 128 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=0 128 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMORGN]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=No
+Width=3225
+Height=4800
+Brush color=233 202 131
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=200 216 248
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 255 128 64
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMFLOW]
+SOURCEFont=Arial Unicode MS,8,N
+SOURCEFont color=0, 0, 0
+DESTINATIONFont=Arial Unicode MS,8,N
+DESTINATIONFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\Free Symbol]
+Free TextFont=Arial,8,N
+Free TextFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=0
+(8268, 11693)
+((315,354), (433,354))
+1
+15
+
+
+1505030002
+1505030010
+((-2613,8224), (-1363,14499))
+((-1987,14099),(-1988,8624))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1505030370
+1505030370
+((-14912,1399), (-6167,9024))
+((-6567,8624),(-14287,8624),(-14287,1799))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1505030372
+1506276252
+((-64,1474), (12289,8025))
+((336,7625),(11664,7625),(11664,1874))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1505031572
+1506276275
+((-14689,-5272), (-1212,1200))
+((-14289,800),(-14289,-4872),(-1612,-3821))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+2
+
+
+
+
+
+
+
+
+
+
+
+1505031574
+1506276275
+((-2012,-4446), (12064,1275))
+((11664,875),(11664,-3822),(-1612,-3821))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+4
+
+
+
+
+
+
+
+
+
+
+
+1505031692
+1506276388
+((-2914,-20048), (-1664,-12420))
+((-2289,-12820),(-2289,-19648))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1505031699
+1505031737
+((-2840,-25600), (-1588,-20248))
+((-2219,-20648),(-2212,-25200))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1505032693
+1506276388
+((-1414,-13219), (-164,-3422))
+((-789,-3822),(-789,-12819))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1505029993
+1505029993
+-1
+((-2587,13500), (-1388,14699))
+0
+33023
+33023
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+6
+512
+12632256
+1
+1
+1
+
+
+
+
+
+1505029998
+1505030010
+-1
+((-6567,7625), (2589,9624))
+33023
+8637161
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+1505030363
+1505030363
+-1
+((-26929,800), (-1649,2799))
+33023
+8637161
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+1505030365
+1506276252
+-1
+((-826,875), (24154,2874))
+33023
+8637161
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+1505031522
+1506276275
+-1
+((-8478,-4821), (5253,-2822))
+33023
+8637161
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+
+
+1505037834
+1506276314
+-1
+((5216,-5222), (6039,-4423))
+0
+4227200
+1422826
+12632256
+DISPNAME 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+1505037834
+1506276314
+-1
+(0, -900)
+((4316,-5222), (5139,-4423))
+0
+4227200
+1422826
+12632256
+DISPNAME 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+
+
+
+
+
+1505031591
+1506276566
+-1
+((-4655,-13819), (3077,-11820))
+33023
+8637161
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+
+
+1505032529
+1506276388
+-1
+((978,-14219), (1801,-13420))
+0
+4227200
+1422826
+12632256
+DISPNAME 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+1506276553
+1506276566
+-1
+((-4767,-12220), (-3944,-11421))
+0
+4227200
+1422826
+12632256
+DISPNAME 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+1506276553
+1506276566
+-1
+(0, 900)
+((-3867,-12220), (-3044,-11421))
+0
+4227200
+1422826
+12632256
+DISPNAME 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+
+
+
+
+
+1505031675
+1506276598
+-1
+((-6942,-20648), (2364,-18649))
+33023
+8637161
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+
+
+1506276589
+1506276598
+-1
+((-7054,-19049), (-6231,-18250))
+0
+4227200
+1422826
+12632256
+DISPNAME 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+
+
+
+
+
+1505031695
+1505031737
+-1
+((-2962,-25950), (-1463,-24451))
+0
+33023
+33023
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+6
+512
+12632256
+1
+1
+1
+
+
+
+
+
+1506276531
+1506276531
+((7500,12137), (11475,15136))
+8421504
+2
+11579647
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+1506276531
+1506276603
+((15750,12062), (19725,15061))
+8421504
+2
+11579647
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+
+
+
+
+041769F6-76C9-4813-BE6C-B0F3AF03DA0F
+Start_1
+Start_1
+1505029993
+Димыч
+1505029993
+Димыч
+
+
+
+
+03BB31E7-C598-4176-87EF-E87E7243C2AC
+End_1
+End_1
+1505031695
+Димыч
+1505031695
+Димыч
+
+
+
+
+3F482CCD-7D4D-436E-BB34-5FEFC6D91005
+A
+A
+1506276531
+Programmer
+1506276541
+Programmer
+int
+
+
+49F51EB7-C481-420E-B94D-39E93F37BB0B
+B
+B
+1506276531
+Programmer
+1506276545
+Programmer
+int
+
+
+
+
+A95A6CBC-EACF-4D21-B8D9-675B2DA409B7
+Java
+Java
+1506276180
+Programmer
+1506276180
+Programmer
+file:///%_OBJLANG%/java5-j2ee14.xol
+0DEDDB90-46E2-45A0-886E-411709DA0DC9
+1811206C-1A4B-11D1-83D9-444553540000
+1302065259
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/km72/Ivchenko_Ivan/1/task3.oom b/km72/Ivchenko_Ivan/1/task3.oom
new file mode 100644
index 00000000..06d487c1
--- /dev/null
+++ b/km72/Ivchenko_Ivan/1/task3.oom
@@ -0,0 +1,2302 @@
+
+
+
+
+
+
+
+
+
+16131120-5CA3-401F-9D34-8D4A66429C16
+Activity Diagram_1
+ActivityDiagram_1
+1505039185
+Димыч
+1506278094
+Programmer
+[FolderOptions]
+
+[FolderOptions\Class Diagram Objects]
+GenerationCheckModel=Yes
+GenerationPath=
+GenerationOptions=
+GenerationTasks=
+GenerationTargets=
+GenerationSelections=
+[ModelOptions]
+
+[ModelOptions\Cld]
+CaseSensitive=Yes
+DisplayName=Yes
+EnableTrans=Yes
+UseTerm=No
+EnableRequirements=No
+EnableFullShortcut=Yes
+ShowClss=No
+DeftAttr=int
+DeftMthd=int
+DeftParm=int
+DeftCont=java.util.Collection
+DomnDttp=Yes
+DomnChck=No
+DomnRule=No
+SupportDelay=No
+PreviewEditable=Yes
+AutoRealize=No
+DttpFullName=Yes
+DeftClssAttrVisi=private
+VBNetPreprocessingSymbols=
+CSharpPreprocessingSymbols=
+SynchroCode=Yes
+
+[ModelOptions\Cld\NamingOptionsTemplates]
+
+[ModelOptions\Cld\ClssNamingOptions]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDPCKG]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDPCKG\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=.convert_name(%Name%,,,firstLowerWord)
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDPCKG\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDDOMN]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDDOMN\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDDOMN\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDCLASS]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDCLASS\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=.convert_name(%Name%,,,FirstUpperChar)
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDCLASS\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDINTF]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDINTF\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=.convert_name(%Name%,,,FirstUpperChar)
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDINTF\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\UCDACTR]
+
+[ModelOptions\Cld\ClssNamingOptions\UCDACTR\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\UCDACTR\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\UCDUCAS]
+
+[ModelOptions\Cld\ClssNamingOptions\UCDUCAS\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\UCDUCAS\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\SQDOBJT]
+
+[ModelOptions\Cld\ClssNamingOptions\SQDOBJT\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\SQDOBJT\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\SQDMSSG]
+
+[ModelOptions\Cld\ClssNamingOptions\SQDMSSG\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\SQDMSSG\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CPDCOMP]
+
+[ModelOptions\Cld\ClssNamingOptions\CPDCOMP\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=.convert_name(%Name%,,,FirstUpperChar)
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CPDCOMP\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDATTR]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDATTR\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=.convert_name(%Name%,,,firstLowerWord)
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDATTR\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDMETHOD]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDMETHOD\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=.convert_name(%Name%,,,firstLowerWord)
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDMETHOD\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDPARM]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDPARM\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=.convert_name(%Name%,,,firstLowerWord)
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDPARM\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\OOMPORT]
+
+[ModelOptions\Cld\ClssNamingOptions\OOMPORT\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\OOMPORT\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\OOMPART]
+
+[ModelOptions\Cld\ClssNamingOptions\OOMPART\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\OOMPART\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDASSC]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDASSC\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=.convert_name(%Name%,,,firstLowerWord)
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDASSC\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\UCDASSC]
+
+[ModelOptions\Cld\ClssNamingOptions\UCDASSC\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\UCDASSC\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\GNRLLINK]
+
+[ModelOptions\Cld\ClssNamingOptions\GNRLLINK\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\GNRLLINK\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\RQLINK]
+
+[ModelOptions\Cld\ClssNamingOptions\RQLINK\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\RQLINK\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\RLZSLINK]
+
+[ModelOptions\Cld\ClssNamingOptions\RLZSLINK\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\RLZSLINK\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DEPDLINK]
+
+[ModelOptions\Cld\ClssNamingOptions\DEPDLINK\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DEPDLINK\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\OOMACTV]
+
+[ModelOptions\Cld\ClssNamingOptions\OOMACTV\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\OOMACTV\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\ACDOBST]
+
+[ModelOptions\Cld\ClssNamingOptions\ACDOBST\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\ACDOBST\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\STAT]
+
+[ModelOptions\Cld\ClssNamingOptions\STAT\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\STAT\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DPDNODE]
+
+[ModelOptions\Cld\ClssNamingOptions\DPDNODE\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DPDNODE\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DPDCMPI]
+
+[ModelOptions\Cld\ClssNamingOptions\DPDCMPI\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DPDCMPI\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DPDASSC]
+
+[ModelOptions\Cld\ClssNamingOptions\DPDASSC\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DPDASSC\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\OOMVAR]
+
+[ModelOptions\Cld\ClssNamingOptions\OOMVAR\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\OOMVAR\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\FILO]
+
+[ModelOptions\Cld\ClssNamingOptions\FILO\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\FILO\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\FRMEOBJ]
+
+[ModelOptions\Cld\ClssNamingOptions\FRMEOBJ\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\FRMEOBJ\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\FRMELNK]
+
+[ModelOptions\Cld\ClssNamingOptions\FRMELNK\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\FRMELNK\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DefaultClass]
+
+[ModelOptions\Cld\ClssNamingOptions\DefaultClass\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DefaultClass\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Generate]
+
+[ModelOptions\Generate\Xsm]
+GenRootElement=Yes
+GenComplexType=No
+GenAttribute=Yes
+CheckModel=Yes
+SaveLinks=Yes
+ORMapping=No
+NameToCode=No
+
+[ModelOptions\Generate\Cdm]
+CheckModel=Yes
+SaveLinks=Yes
+NameToCode=No
+Notation=2
+
+[ModelOptions\Generate\Pdm]
+CheckModel=Yes
+SaveLinks=Yes
+ORMapping=No
+NameToCode=No
+BuildTrgr=No
+TablePrefix=
+IndxPKName=%TABLE%_PK
+IndxAKName=%TABLE%_AK
+IndxFKName=%REFR%_FK
+IndxThreshold=
+ColnFKName=%.3:PARENT%_%COLUMN%
+ColnFKNameUse=No
+
+
+18F552AF-3D9D-49B7-A215-EF23B6104F18
+Java
+Java
+1506277459
+Programmer
+1506277459
+Programmer
+
+0DEDDB90-46E2-45A0-886E-411709DA0DC9
+1811206C-1A4B-11D1-83D9-444553540000
+
+
+
+
+
+
+
+DE39AFEC-529A-40A1-81C0-376118A46444
+1505039282
+Димыч
+1505039282
+Димыч
+
+
+
+
+
+
+
+
+E1F77C4B-005C-4E99-8081-08499EB0B94B
+1506277820
+Programmer
+1506277820
+Programmer
+
+
+
+
+
+
+
+
+49CA4BC4-F0A2-4AA3-928D-BA26F182A861
+1506277821
+Programmer
+1506277821
+Programmer
+
+
+
+
+
+
+
+
+EA8AFB55-BD1C-4A90-A4B0-87CA2725DD48
+1506278049
+Programmer
+1506278049
+Programmer
+
+
+
+
+
+
+
+
+3CD07042-E781-4CAC-8C9F-1C38FD960913
+1506278051
+Programmer
+1506278051
+Programmer
+
+
+
+
+
+
+
+
+FE4CA858-7DF2-4495-9C88-79F61A3F9352
+1506278091
+Programmer
+1506278091
+Programmer
+
+
+
+
+
+
+
+
+
+
+7B1E0BD1-0D27-4D78-A471-26EBF12DD34F
+проаналізувати N, K
+analyseN,K
+1505039194
+Димыч
+1506277527
+Programmer
+UNDEF
+
+
+B2AA3018-9F62-4550-91AF-5EB546DC506E
+N
+N
+1505039294
+Димыч
+1506277527
+Programmer
+int
+
+
+2E44AC69-86A6-4A13-A4B3-F001BCC93A72
+K
+K
+1505039294
+Димыч
+1506277527
+Programmer
+int
+
+
+
+
+C44FDBC9-933A-4735-8CA1-D8938417F9DC
+N//K
+NK
+1506277811
+Programmer
+1506277969
+Programmer
+UNDEF
+
+
+2F28ACBF-E116-4503-94F0-67BEB14F7EE9
+N
+N
+1506277952
+Programmer
+1506277958
+Programmer
+int
+
+
+5BB5AB9C-F628-4DD4-92CD-5D93D279C5B8
+K
+K
+1506277959
+Programmer
+1506277963
+Programmer
+int
+
+
+
+
+FCBADF9B-6FB3-436B-AE8D-2DAFE7BD8F3F
+M
+M
+1506277964
+Programmer
+1506277969
+Programmer
+int
+
+
+
+
+DCB3EE99-513D-47B1-8C9D-86266450D94E
+N%K
+N%K
+1506277812
+Programmer
+1506277980
+Programmer
+UNDEF
+
+
+B4101D29-06F6-468A-8EC7-4A1D8A6A1CF8
+N
+N
+1506277970
+Programmer
+1506277980
+Programmer
+int
+
+
+A2E29FF7-35E1-487C-B2CA-9B9C99043FC5
+K
+K
+1506277970
+Programmer
+1506277980
+Programmer
+int
+
+
+
+
+336577A8-FF51-41F6-BC66-F07CAE7F2C4D
+O
+O
+1506277970
+Programmer
+1506277980
+Programmer
+int
+
+
+
+
+5E005DC6-488F-45D3-B0D2-2268B40C5CB2
+вивести результат
+вивестирезультат
+1506278045
+Programmer
+1506278088
+Programmer
+UNDEF
+
+
+0238A468-67F7-4482-B817-DC8A995B4E0D
+M
+M
+1506278080
+Programmer
+1506278088
+Programmer
+int
+
+
+00B09B8C-4ED0-41B3-802C-1BDAC8ECBAA6
+O
+O
+1506278080
+Programmer
+1506278088
+Programmer
+int
+
+
+
+
+
+
+16F7A230-5D71-4EDD-B38B-2690BCBF73CA
+Activity Diagram_1
+ActivityDiagram_1
+1505039185
+Димыч
+1506278094
+Programmer
+[DisplayPreferences]
+
+[DisplayPreferences\ACD]
+
+[DisplayPreferences\General]
+Adjust to text=Yes
+Snap Grid=No
+Constrain Labels=Yes
+Display Grid=No
+Show Page Delimiter=Yes
+Show Links intersections=Yes
+Activate automatic link routing=Yes
+Grid size=800
+Graphic unit=2
+Window color=255 255 255
+Background image=
+Background mode=8
+Watermark image=
+Watermark mode=8
+Show watermark on screen=No
+Gradient mode=0
+Gradient end color=255 255 255
+Show Swimlane=Yes
+SwimlaneVert=Yes
+TreeVert=No
+CompDark=0
+
+[DisplayPreferences\Object]
+Show Icon=Yes
+Mode=0
+Trunc Length=80
+Word Length=80
+Word Text=!""#$%&'()*+,-./:;<=>?@[\]^_`{|}~
+Shortcut IntIcon=Yes
+Shortcut IntLoct=Yes
+Shortcut IntFullPath=No
+Shortcut IntLastPackage=Yes
+Shortcut ExtIcon=Yes
+Shortcut ExtLoct=No
+Shortcut ExtFullPath=No
+Shortcut ExtLastPackage=Yes
+Shortcut ExtIncludeModl=Yes
+EObjShowStrn=Yes
+ExtendedObject.Comment=No
+ExtendedObject.IconPicture=No
+ExtendedObject.TextStyle=No
+ExtendedObject_SymbolLayout=
+ELnkShowStrn=Yes
+ELnkShowName=Yes
+ExtendedLink_SymbolLayout=
+ExtDpdShowStrn=Yes
+ExtendedDependency_SymbolLayout=<Form>[CRLF] <Form Name="Center" >[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Caption="" Mandatory="No" />[CRLF] </Form>[CRLF] <Form Name="Source" >[CRLF] </Form>[CRLF] <Form Name="Destination" >[CRLF] </Form>[CRLF]</Form>
+FileObject.Stereotype=No
+FileObject.DisplayName=Yes
+FileObject.LocationOrName=No
+FileObject.IconPicture=No
+FileObject.TextStyle=No
+FileObject.IconMode=Yes
+FileObject_SymbolLayout=
+Package.Stereotype=Yes
+Package.Comment=No
+Package.IconPicture=No
+Package.TextStyle=No
+Package_SymbolLayout=
+Display Model Version=Yes
+Activity.Stereotype=Yes
+Activity.Comment=No
+Activity.ParametersDisplay=Yes
+Activity.IconPicture=No
+Activity.TextStyle=No
+Activity.SubSymbols=Yes
+Activity_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+ObjectNode.Stereotype=Yes
+ObjectNode.Comment=No
+ObjectNode.IconPicture=No
+ObjectNode.TextStyle=No
+ObjectNode_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="Name" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="State" Attribute="States" Prefix="[" Suffix="]" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Variable.Stereotype=Yes
+Variable.Comment=No
+Variable.IconPicture=No
+Variable.TextStyle=No
+Variable_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+ActivityParameter.DisplayName=Yes
+ActivityParameter.InstanceDisplay=No
+ActivityParameter.IconPicture=No
+ActivityParameter.TextStyle=No
+ActivityParameter_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Start.Stereotype=Yes
+Start.DisplayName=No
+Start.IconPicture=No
+Start.TextStyle=No
+Start_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+End.Stereotype=Yes
+End.DisplayName=No
+End.IconPicture=No
+End.TextStyle=No
+End_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Decision.Stereotype=Yes
+Decision.DisplayedExpression=No
+Decision.DisplayedExpressionOrName=Yes
+Decision.IconPicture=No
+Decision.TextStyle=No
+Decision_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <ExclusiveChoice Name="Exclusive Choice" Mandatory="Yes" Display="HorizontalRadios" >[CRLF] <StandardAttribute Name="Expression" Attribute="DisplayedExpression" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name if no condition" Attribute="DisplayedExpressionOrName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] </ExclusiveChoice>[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Synchronization.IconPicture=No
+Synchronization.TextStyle=No
+Synchronization_SymbolLayout=
+OrganizationUnit.Stereotype=Yes
+OrganizationUnit.IconPicture=No
+OrganizationUnit.TextStyle=No
+OrganizationUnit_SymbolLayout=
+ActivityFlow.Stereotype=Yes
+ActivityFlow_SymbolLayout=<Form>[CRLF] <Form Name="Source" >[CRLF] <StandardAttribute Name="Condition" Attribute="DisplayedCondition" Prefix="[" Suffix="]" Caption="" Mandatory="Yes" />[CRLF] </Form>[CRLF] <Form Name="Destination" >[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Caption="" Mandatory="No" />[CRLF] </Form>[CRLF] <Form Name="Center" >[CRLF] </Form>[CRLF]</Form>
+
+[DisplayPreferences\Symbol]
+
+[DisplayPreferences\Symbol\FRMEOBJ]
+STRNFont=Arial,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=6000
+Height=2000
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=64
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 255 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FRMELNK]
+CENTERFont=Arial,8,N
+CENTERFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\USRDEPD]
+CENTERFont=Arial Unicode MS,8,N
+CENTERFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=2 0 128 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FILO]
+OBJSTRNFont=Arial Unicode MS,8,N
+OBJSTRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LCNMFont=Arial Unicode MS,8,N
+LCNMFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=No
+Width=2400
+Height=2400
+Brush color=255 255 255
+Fill Color=No
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=-1
+
+[DisplayPreferences\Symbol\CLDPCKG]
+STRNFont=Arial,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=3600
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 178 178 178
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMACTV]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+LABLFont=Arial,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=6000
+Height=2000
+Brush color=233 202 131
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 255 128 0
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\ACDOBST]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+NAMEFont=Arial Unicode MS,8,N
+NAMEFont color=0, 0, 0
+STATFont=Arial Unicode MS,8,N
+STATFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=3975
+Height=3000
+Brush color=205 156 156
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMVAR]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+LABLFont=Arial,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=3975
+Height=3000
+Brush color=255 176 176
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=2 0 128 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMATPM]
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=825
+Height=800
+Brush color=234 181 21
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 64
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMSTRT]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+AutoAdjustToText=No
+Keep aspect=Yes
+Keep center=Yes
+Keep size=Yes
+Width=1200
+Height=1200
+Brush color=255 128 0
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 255 128 0
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMEND]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+AutoAdjustToText=No
+Keep aspect=Yes
+Keep center=Yes
+Keep size=Yes
+Width=1500
+Height=1500
+Brush color=255 128 0
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 255 128 0
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMDCSN]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DEXPFont=Arial,8,N
+DEXPFont color=0 0 0
+DEXNFont=Arial Unicode MS,8,N
+DEXNFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=Yes
+Keep size=No
+Width=6600
+Height=4000
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 0
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMSYNC]
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=2400
+Height=1500
+Brush color=0 128 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=0 128 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMORGN]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=No
+Width=3225
+Height=4800
+Brush color=233 202 131
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=200 216 248
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 255 128 64
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMFLOW]
+SOURCEFont=Arial Unicode MS,8,N
+SOURCEFont color=0, 0, 0
+DESTINATIONFont=Arial Unicode MS,8,N
+DESTINATIONFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\Free Symbol]
+Free TextFont=Arial,8,N
+Free TextFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=0
+(8268, 11693)
+((315,354), (433,354))
+1
+15
+
+
+1505039282
+1505039710
+((-1839,5674), (-579,10899))
+((-1237,10499),(-1195,6074))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506277820
+1506277827
+((-10937,-326), (-5078,6677))
+((-5478,6277),(-10312,6277),(-10312,74))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+2
+
+
+
+
+
+
+
+
+
+
+
+1506277821
+1506277870
+((-1787,-25), (9812,6474))
+((-1387,6074),(9187,6074),(9187,375))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+4
+
+
+
+
+
+
+
+
+
+
+
+1506278049
+1506278075
+((-12588,-6699), (-312,-351))
+((-12188,-751),(-12188,-6074),(-712,-6074))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+3
+
+
+
+
+
+
+
+
+
+
+
+1506278051
+1506278051
+((-1112,-6699), (7562,624))
+((7162,224),(7162,-6075),(-712,-6074))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506278091
+1506278091
+((-1562,-13300), (-312,-6674))
+((-937,-7074),(-937,-12900))
+2
+1
+16711680
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1505039191
+1505039191
+-1
+((-1837,9900), (-638,11099))
+0
+33023
+33023
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+6
+512
+12632256
+1
+1
+1
+
+
+
+
+
+1505039194
+1505039705
+-1
+((-5478,5075), (2703,7074))
+33023
+8637161
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+
+
+1505039294
+1506277527
+-1
+((-4690,6674), (-3867,7473))
+0
+4227200
+1422826
+12632256
+DISPNAME 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+1505039294
+1506277527
+-1
+((1091,6675), (1914,7474))
+0
+4227200
+1422826
+12632256
+DISPNAME 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+
+
+
+
+
+1505039954
+1506278077
+-1
+((-1687,-13650), (-188,-12151))
+0
+33023
+33023
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+6
+512
+12632256
+1
+1
+1
+
+
+
+
+
+1506277774
+1506277831
+((12301,4800), (16275,7799))
+8421504
+2
+11579647
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+1506277774
+1506277832
+((16800,4800), (20775,7799))
+8421504
+2
+11579647
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+1506277811
+1506277969
+-1
+((-13312,-925), (-7313,1074))
+33023
+8637161
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+
+
+1506277952
+1506277958
+-1
+((-13424,674), (-12601,1473))
+0
+4227200
+1422826
+12632256
+DISPNAME 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+1506277959
+1506277963
+-1
+(0, 900)
+((-12524,674), (-11701,1473))
+0
+4227200
+1422826
+12632256
+DISPNAME 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+1506277964
+1506277969
+-1
+((-8025,-1325), (-7202,-526))
+0
+4227200
+1422826
+12632256
+DISPNAME 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+
+
+
+
+
+1506277812
+1506277980
+-1
+((4163,-775), (10162,1224))
+33023
+8637161
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+
+
+1506277970
+1506277980
+-1
+((4051,824), (4874,1623))
+0
+4227200
+1422826
+12632256
+DISPNAME 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+1506277970
+1506277980
+-1
+(0, 900)
+((4951,824), (5774,1623))
+0
+4227200
+1422826
+12632256
+DISPNAME 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+1506277970
+1506277980
+-1
+((9450,-1175), (10273,-376))
+0
+4227200
+1422826
+12632256
+DISPNAME 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+
+
+
+
+
+1506278045
+1506278088
+-1
+((-4503,-7074), (3078,-5075))
+33023
+8637161
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+
+
+1506278080
+1506278088
+-1
+((-4615,-5475), (-3792,-4676))
+0
+4227200
+1422826
+12632256
+DISPNAME 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+1506278080
+1506278088
+-1
+(0, 900)
+((-3715,-5475), (-2892,-4676))
+0
+4227200
+1422826
+12632256
+DISPNAME 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+
+
+
+
+
+1506278093
+1506278093
+((13426,75), (17400,3074))
+8421504
+2
+11579647
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+1506278094
+1506278094
+((18300,225), (22275,3224))
+8421504
+2
+11579647
+12632256
+STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N
+6
+65
+16777215
+
+
+
+
+
+
+
+
+
+822BB1A2-07C4-4C77-81AC-A6000FD1EDB7
+Start_1
+Start_1
+1505039191
+Димыч
+1505039191
+Димыч
+
+
+
+
+4F734200-AA15-4746-8209-93454E6C3196
+End_1
+End_1
+1505039954
+Димыч
+1505039968
+Димыч
+
+
+
+
+5423F56F-35B6-4F8C-960B-B230714CF46E
+N
+N
+1506277774
+Programmer
+1506277781
+Programmer
+int
+
+
+F62AF317-BBEA-4116-8B07-8CA40FA56CE9
+K
+K
+1506277775
+Programmer
+1506277783
+Programmer
+int
+
+
+11A7F630-09BA-405E-9C76-5D72152D624A
+M
+M
+1506278093
+Programmer
+1506278096
+Programmer
+int
+
+
+AB3FC6EC-19AF-4AB9-834A-90B55A6FCDB6
+O
+O
+1506278094
+Programmer
+1506278099
+Programmer
+int
+
+
+
+
+83002BAF-D354-468D-B355-DE882235BCF7
+Java
+Java
+1506277459
+Programmer
+1506277459
+Programmer
+file:///%_OBJLANG%/java5-j2ee14.xol
+0DEDDB90-46E2-45A0-886E-411709DA0DC9
+1811206C-1A4B-11D1-83D9-444553540000
+1302065259
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/km72/Ivchenko_Ivan/2/task1.oom b/km72/Ivchenko_Ivan/2/task1.oom
new file mode 100644
index 00000000..5e597231
--- /dev/null
+++ b/km72/Ivchenko_Ivan/2/task1.oom
@@ -0,0 +1,11006 @@
+
+
+
+
+
+
+
+
+
+6960D315-5BE9-44DC-B1EC-32ADFE24B692
+UML Activity Diagram_1
+UMLActivityDiagram_1
+1506767878
+Programmer
+1506781133
+Programmer
+[FolderOptions]
+
+[FolderOptions\Class Diagram Objects]
+GenerationCheckModel=Yes
+GenerationPath=
+GenerationOptions=
+GenerationTasks=
+GenerationTargets=
+GenerationSelections=
+[ModelOptions]
+
+[ModelOptions\Cld]
+CaseSensitive=Yes
+DisplayName=Yes
+EnableTrans=Yes
+UseTerm=No
+EnableRequirements=No
+EnableFullShortcut=Yes
+ShowClss=No
+DeftAttr=int
+DeftMthd=int
+DeftParm=int
+DeftCont=java.util.Collection
+DomnDttp=Yes
+DomnChck=No
+DomnRule=No
+SupportDelay=No
+PreviewEditable=Yes
+AutoRealize=No
+DttpFullName=Yes
+DeftClssAttrVisi=private
+VBNetPreprocessingSymbols=
+CSharpPreprocessingSymbols=
+
+[ModelOptions\Cld\NamingOptionsTemplates]
+
+[ModelOptions\Cld\ClssNamingOptions]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDPCKG]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDPCKG\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=.convert_name(%Name%,,,firstLowerWord)
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDPCKG\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDDOMN]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDDOMN\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDDOMN\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDCLASS]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDCLASS\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=.convert_name(%Name%,,,FirstUpperChar)
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDCLASS\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDINTF]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDINTF\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=.convert_name(%Name%,,,FirstUpperChar)
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDINTF\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\UCDACTR]
+
+[ModelOptions\Cld\ClssNamingOptions\UCDACTR\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\UCDACTR\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\UCDUCAS]
+
+[ModelOptions\Cld\ClssNamingOptions\UCDUCAS\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\UCDUCAS\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\SQDOBJT]
+
+[ModelOptions\Cld\ClssNamingOptions\SQDOBJT\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\SQDOBJT\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\SQDMSSG]
+
+[ModelOptions\Cld\ClssNamingOptions\SQDMSSG\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\SQDMSSG\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CPDCOMP]
+
+[ModelOptions\Cld\ClssNamingOptions\CPDCOMP\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=.convert_name(%Name%,,,FirstUpperChar)
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CPDCOMP\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDATTR]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDATTR\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=.convert_name(%Name%,,,firstLowerWord)
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDATTR\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDMETHOD]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDMETHOD\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=.convert_name(%Name%,,,firstLowerWord)
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDMETHOD\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDPARM]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDPARM\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=.convert_name(%Name%,,,firstLowerWord)
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDPARM\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\OOMPORT]
+
+[ModelOptions\Cld\ClssNamingOptions\OOMPORT\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\OOMPORT\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\OOMPART]
+
+[ModelOptions\Cld\ClssNamingOptions\OOMPART\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\OOMPART\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDASSC]
+
+[ModelOptions\Cld\ClssNamingOptions\CLDASSC\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=.convert_name(%Name%,,,firstLowerWord)
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\CLDASSC\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\UCDASSC]
+
+[ModelOptions\Cld\ClssNamingOptions\UCDASSC\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\UCDASSC\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\GNRLLINK]
+
+[ModelOptions\Cld\ClssNamingOptions\GNRLLINK\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\GNRLLINK\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\RQLINK]
+
+[ModelOptions\Cld\ClssNamingOptions\RQLINK\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\RQLINK\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\RLZSLINK]
+
+[ModelOptions\Cld\ClssNamingOptions\RLZSLINK\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\RLZSLINK\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DEPDLINK]
+
+[ModelOptions\Cld\ClssNamingOptions\DEPDLINK\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DEPDLINK\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\OOMACTV]
+
+[ModelOptions\Cld\ClssNamingOptions\OOMACTV\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\OOMACTV\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\ACDOBST]
+
+[ModelOptions\Cld\ClssNamingOptions\ACDOBST\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\ACDOBST\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\STAT]
+
+[ModelOptions\Cld\ClssNamingOptions\STAT\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\STAT\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DPDNODE]
+
+[ModelOptions\Cld\ClssNamingOptions\DPDNODE\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DPDNODE\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DPDCMPI]
+
+[ModelOptions\Cld\ClssNamingOptions\DPDCMPI\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DPDCMPI\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DPDASSC]
+
+[ModelOptions\Cld\ClssNamingOptions\DPDASSC\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DPDASSC\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\OOMVAR]
+
+[ModelOptions\Cld\ClssNamingOptions\OOMVAR\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\OOMVAR\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\FILO]
+
+[ModelOptions\Cld\ClssNamingOptions\FILO\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\FILO\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\FRMEOBJ]
+
+[ModelOptions\Cld\ClssNamingOptions\FRMEOBJ\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\FRMEOBJ\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\FRMELNK]
+
+[ModelOptions\Cld\ClssNamingOptions\FRMELNK\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\FRMELNK\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DefaultClass]
+
+[ModelOptions\Cld\ClssNamingOptions\DefaultClass\Name]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Cld\ClssNamingOptions\DefaultClass\Code]
+Template=
+MaxLen=254
+Case=M
+ValidChar=
+InvldChar=" '(.)+=*/"
+AllValid=Yes
+NoAccent=No
+DefaultChar=
+Script=
+ConvTable=
+ConvTablePath=%_HOME%\Resource Files\Conversion Tables
+
+[ModelOptions\Generate]
+
+[ModelOptions\Generate\Xsm]
+GenRootElement=Yes
+GenComplexType=No
+GenAttribute=Yes
+CheckModel=Yes
+SaveLinks=Yes
+ORMapping=No
+NameToCode=No
+
+[ModelOptions\Generate\Cdm]
+CheckModel=Yes
+SaveLinks=Yes
+NameToCode=No
+Notation=2
+
+[ModelOptions\Generate\Pdm]
+CheckModel=Yes
+SaveLinks=Yes
+ORMapping=No
+NameToCode=No
+BuildTrgr=No
+TablePrefix=
+IndxPKName=%TABLE%_PK
+IndxAKName=%TABLE%_AK
+IndxFKName=%REFR%_FK
+IndxThreshold=
+ColnFKName=%.3:PARENT%_%COLUMN%
+ColnFKNameUse=No
+
+
+5B1B7FE2-3BD8-418D-B755-D8241F732782
+Java
+Java
+1506767877
+Programmer
+1506767877
+Programmer
+
+0DEDDB90-46E2-45A0-886E-411709DA0DC9
+1811206C-1A4B-11D1-83D9-444553540000
+
+
+
+
+49498E8F-32BF-4F06-B274-3077831A2A9F
+WSDL for Java
+WSDLJava
+1506767878
+Programmer
+1506767878
+Programmer
+
+C8F5F7B2-CF9D-4E98-8301-959BB6E86C8A
+186C8AC3-D3DC-11D3-881C-00508B03C75C
+
+
+
+
+
+
+
+7FD6045B-88D2-4905-82E7-738F5CF40CF8
+1506768141
+Programmer
+1506768141
+Programmer
+
+
+
+
+
+
+
+
+DF353058-061B-4979-B391-E681603BA9DB
+1506769181
+Programmer
+1506769181
+Programmer
+
+
+
+
+
+
+
+
+0D3266C5-4676-44A5-96F1-C61692F7F310
+1506769183
+Programmer
+1506769183
+Programmer
+
+
+
+
+
+
+
+
+A69C33E6-2414-4FEC-A7DF-0F05C003B3C3
+1506769660
+Programmer
+1506769660
+Programmer
+
+
+
+
+
+
+
+
+E6EF61A2-1309-4050-B6C7-93DF3AD3D180
+1506770091
+Programmer
+1506770091
+Programmer
+
+
+
+
+
+
+
+
+D3D13D4F-5BE5-431D-99BC-E178A347B543
+1506770766
+Programmer
+1506770766
+Programmer
+
+
+
+
+
+
+
+
+36C28A84-E284-4C53-8B1A-1513407C8522
+1506770767
+Programmer
+1506770767
+Programmer
+
+
+
+
+
+
+
+
+AAC6E64E-73EF-4B69-BD03-5263C78E794D
+1506770767
+Programmer
+1506770767
+Programmer
+
+
+
+
+
+
+
+
+A3FD457F-08B9-4765-9AD3-8EEE0512092A
+1506771372
+Programmer
+1506771372
+Programmer
+
+
+
+
+
+
+
+
+72C89139-E09A-419C-A7C8-E0B787D112F1
+1506771410
+Programmer
+1506771410
+Programmer
+
+
+
+
+
+
+
+
+8D78F322-DCD0-4897-8B1D-8906866C5B97
+1506772476
+Programmer
+1506772476
+Programmer
+
+
+
+
+
+
+
+
+60DE3457-9529-4AB6-873B-08955C891246
+1506772479
+Programmer
+1506772692
+Programmer
+так
+
+
+
+
+
+
+
+
+3996F7FC-5CFB-4DCE-A5DE-4AA74F47CF1A
+1506774494
+Programmer
+1506774494
+Programmer
+
+
+
+
+
+
+
+
+0891AD52-291E-42B9-8B17-C644196D05B1
+1506774553
+Programmer
+1506774553
+Programmer
+
+
+
+
+
+
+
+
+7DE707CE-7A1F-45DD-A7B7-4133EA2B14D0
+1506774887
+Programmer
+1506774887
+Programmer
+
+
+
+
+
+
+
+
+36AA9A9B-B4B4-4119-9CDA-628887136887
+1506774888
+Programmer
+1506774888
+Programmer
+
+
+
+
+
+
+
+
+32F63DFA-4400-4BB0-88C5-A5A232A7DCA6
+1506774888
+Programmer
+1506774888
+Programmer
+
+
+
+
+
+
+
+
+1D1A0B4C-F75D-439B-BB40-456FC5537931
+1506775078
+Programmer
+1506775078
+Programmer
+
+
+
+
+
+
+
+
+24A078CD-FAA2-4646-A5B7-4701E6E15583
+1506775112
+Programmer
+1506775112
+Programmer
+
+
+
+
+
+
+
+
+1512D963-66FA-4FBF-A851-EFA3E31A4505
+1506775317
+Programmer
+1506775317
+Programmer
+
+
+
+
+
+
+
+
+37DB9FF8-CB2C-4A27-A038-77725AD5ACB8
+1506775318
+Programmer
+1506775318
+Programmer
+
+
+
+
+
+
+
+
+BAF17DDF-7EBE-4613-887B-1A44436878C6
+1506775573
+Programmer
+1506775573
+Programmer
+
+
+
+
+
+
+
+
+4633CCD4-8B03-4215-BCA1-B2CC8E464520
+1506771748
+Programmer
+1506771748
+Programmer
+
+
+
+
+
+
+
+
+921CE82B-0988-4DA6-ADFA-6900A3C9E14D
+1506771872
+Programmer
+1506771872
+Programmer
+
+
+
+
+
+
+
+
+E0AA2030-A5B5-418D-97C3-52A6E03723D8
+1506771936
+Programmer
+1506775638
+Programmer
+Так
+
+
+
+
+
+
+
+
+834FC6C3-76BD-439C-BE4B-39EFC794B8C7
+1506772007
+Programmer
+1506781097
+Programmer
+Так
+
+
+
+
+
+
+
+
+46CDF44E-609E-41DB-96DB-AF119EB3D77F
+1506776061
+Programmer
+1506776061
+Programmer
+
+
+
+
+
+
+
+
+68CF38DF-D096-41E5-97E6-E32BBAC060E2
+1506776092
+Programmer
+1506776092
+Programmer
+
+
+
+
+
+
+
+
+F856BBCD-D104-4FE8-8C52-F1FF49C06B0E
+1506776289
+Programmer
+1506776289
+Programmer
+
+
+
+
+
+
+
+
+86646722-3815-4153-A01D-332BE2FEEE9A
+1506776355
+Programmer
+1506776355
+Programmer
+
+
+
+
+
+
+
+
+25F06540-472C-4768-A2DD-7C7E2F382E09
+1506776357
+Programmer
+1506776357
+Programmer
+
+
+
+
+
+
+
+
+F044D6A2-7052-45E9-B8E3-5C762644B99E
+1506776377
+Programmer
+1506776377
+Programmer
+
+
+
+
+
+
+
+
+AC2C6775-47DC-4F94-854E-9C78E6354CE4
+1506776379
+Programmer
+1506776379
+Programmer
+
+
+
+
+
+
+
+
+B97669C1-306F-42F7-93A5-B5F19AEA6E1B
+1506776563
+Programmer
+1506776563
+Programmer
+
+
+
+
+
+
+
+
+40686A00-F6DA-47A0-B8A4-A62CDDB518CC
+1506777217
+Programmer
+1506777287
+Programmer
+ні
+
+
+
+
+
+
+
+
+7D42DEEF-9F2A-4209-8580-7150C4864465
+1506777321
+Programmer
+1506777321
+Programmer
+
+
+
+
+
+
+
+
+82A819C9-7207-4A36-ADF1-C1D54E6B5B4E
+1506777360
+Programmer
+1506777360
+Programmer
+
+
+
+
+
+
+
+
+4AD30419-B219-40B4-93EB-8B74274C3C19
+1506777361
+Programmer
+1506777361
+Programmer
+
+
+
+
+
+
+
+
+9CB856C4-FF6F-497A-A80E-0DCC5D2993E9
+1506779454
+Programmer
+1506780726
+Programmer
+Так
+
+
+
+
+
+
+
+
+674694A6-CA46-4CA1-AEAF-1459DD248EAA
+1506779511
+Programmer
+1506780734
+Programmer
+Ні
+
+
+
+
+
+
+
+
+C22861EF-7DA1-4508-9B5D-DB17918934D4
+1506779572
+Programmer
+1506779572
+Programmer
+
+
+
+
+
+
+
+
+B926717E-61EA-41AC-A5CB-81E0CA667897
+1506779607
+Programmer
+1506779607
+Programmer
+
+
+
+
+
+
+
+
+3AE6F387-D8A6-45E3-8357-F2D281B4392F
+1506779667
+Programmer
+1506779667
+Programmer
+
+
+
+
+
+
+
+
+118750F0-7D1D-47E8-9A86-B9D25F1AF4C6
+1506780959
+Programmer
+1506781103
+Programmer
+Ні
+
+
+
+
+
+
+
+
+D467C57F-1568-4B30-94FD-89D45D08BF63
+1506780961
+Programmer
+1506781110
+Programmer
+Ні
+
+
+
+
+
+
+
+
+EC2AFF23-BD94-4421-9F95-444AEF23EFD3
+1506781116
+Programmer
+1506781116
+Programmer
+
+
+
+
+
+
+
+
+5670638A-023D-4DE4-A4E9-B8362ED80168
+1506781117
+Programmer
+1506781117
+Programmer
+
+
+
+
+
+
+
+
+43134297-1FDE-49A1-A7A4-4F7040DF90AD
+1506781119
+Programmer
+1506781119
+Programmer
+
+
+
+
+
+
+
+
+81B262E4-DF9F-473E-9E15-2C967B996DF2
+1506781121
+Programmer
+1506781121
+Programmer
+
+
+
+
+
+
+
+
+
+
+F6DADFE8-2B29-43D2-8706-28741E3D5480
+Отримати дані від користувача
+Отриматиданівідкористувача
+1506768054
+Programmer
+1506776981
+Programmer
+UML_ACTV
+
+
+
+
+
+348C830A-AD0C-47CB-AC63-F531892F1C0F
+1506768542
+Programmer
+1506768542
+Programmer
+
+
+
+
+
+
+
+
+409C778E-B42E-4A70-8D70-100E776724AD
+1506768543
+Programmer
+1506768543
+Programmer
+
+
+
+
+
+
+
+
+A3B82E39-3FCB-41DE-96B5-3E1A5558BC9B
+1506768578
+Programmer
+1506768578
+Programmer
+
+
+
+
+
+
+
+
+A68021DF-5839-4FE2-9725-244B38D9A4E8
+1506768579
+Programmer
+1506768579
+Programmer
+
+
+
+
+
+
+
+
+
+
+6CC500CA-719A-4EB1-9F99-C7DF0359CE85
+N
+Variable_1
+1506768121
+Programmer
+1506768254
+Programmer
+int
+
+
+
+
+0AAF8E69-1FAD-412B-9436-E694840D215D
+N
+Variable_1
+1506768233
+Programmer
+1506768254
+Programmer
+int
+
+
+
+
+
+
+
+9E1663F8-D771-44E6-ABE9-10D16EBA37DD
+Вивести текст на екран
+Вивеститекстнаекран
+1506768316
+Programmer
+1506768418
+Programmer
+Текст, подібний до: "Введіть значення N:"
+UNDEF
+
+
+E6C4E6E5-5E57-4091-8218-8EDD1C5F6CD0
+Вивести на екран рядок для вводу інформації
+Вивестинаекранрядокдлявводуінформації
+1506768422
+Programmer
+1506772268
+Programmer
+UNDEF
+
+
+0F67EC20-610F-4F4F-A494-EA2F51EEA224
+Отримати значення N від користувача
+ОтриматизначенняNвідкористувача
+1506768490
+Programmer
+1506775050
+Programmer
+UML_READVAR
+
+
+
+
+E3DA4723-E5C8-4DFD-8083-D76DB65F0D8A
+Отримання даних
+Отриманняданих
+1506768233
+Programmer
+1506770490
+Programmer
+[DisplayPreferences]
+
+[DisplayPreferences\ACD]
+
+[DisplayPreferences\General]
+Adjust to text=Yes
+Snap Grid=No
+Constrain Labels=Yes
+Display Grid=No
+Show Page Delimiter=Yes
+Show Links intersections=Yes
+Activate automatic link routing=Yes
+Grid size=0
+Graphic unit=2
+Window color=255, 255, 255
+Background image=
+Background mode=8
+Watermark image=
+Watermark mode=8
+Show watermark on screen=No
+Gradient mode=0
+Gradient end color=255, 255, 255
+Show Swimlane=Yes
+SwimlaneVert=Yes
+TreeVert=No
+CompDark=0
+
+[DisplayPreferences\Object]
+Show Icon=Yes
+Mode=2
+Trunc Length=40
+Word Length=40
+Word Text=!"#$%&')*+,-./:;=>?@\]^_`|}~
+Shortcut IntIcon=Yes
+Shortcut IntLoct=Yes
+Shortcut IntFullPath=No
+Shortcut IntLastPackage=Yes
+Shortcut ExtIcon=Yes
+Shortcut ExtLoct=No
+Shortcut ExtFullPath=No
+Shortcut ExtLastPackage=Yes
+Shortcut ExtIncludeModl=Yes
+EObjShowStrn=Yes
+ExtendedObject.Comment=No
+ExtendedObject.IconPicture=No
+ExtendedObject.TextStyle=No
+ExtendedObject_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Object Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+ELnkShowStrn=Yes
+ELnkShowName=Yes
+ExtendedLink_SymbolLayout=<Form>[CRLF] <Form Name="Center" >[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Caption="" Mandatory="No" />[CRLF] </Form>[CRLF] <Form Name="Source" >[CRLF] </Form>[CRLF] <Form Name="Destination" >[CRLF] </Form>[CRLF]</Form>
+FileObject.Stereotype=No
+FileObject.DisplayName=Yes
+FileObject.LocationOrName=No
+FileObject.IconPicture=No
+FileObject.TextStyle=No
+FileObject.IconMode=Yes
+FileObject_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <ExclusiveChoice Name="Exclusive Choice" Mandatory="Yes" Display="HorizontalRadios" >[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Location" Attribute="LocationOrName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] </ExclusiveChoice>[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Package.Stereotype=Yes
+Package.Comment=No
+Package.IconPicture=No
+Package.TextStyle=No
+Package_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Display Model Version=Yes
+Activity.Stereotype=Yes
+Activity.Comment=No
+Activity.ParametersDisplay=Yes
+Activity.IconPicture=No
+Activity.TextStyle=No
+Activity.SubSymbols=Yes
+Activity_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+ObjectNode.Stereotype=Yes
+ObjectNode.Comment=No
+ObjectNode.IconPicture=No
+ObjectNode.TextStyle=No
+ObjectNode_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="Name" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="State" Attribute="States" Prefix="[" Suffix="]" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Variable.Stereotype=Yes
+Variable.Comment=No
+Variable.IconPicture=No
+Variable.TextStyle=No
+Variable_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+ActivityParameter.DisplayName=Yes
+ActivityParameter.InstanceDisplay=No
+ActivityParameter.IconPicture=No
+ActivityParameter.TextStyle=No
+ActivityParameter_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Start.Stereotype=Yes
+Start.DisplayName=No
+Start.IconPicture=No
+Start.TextStyle=No
+Start_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+End.Stereotype=Yes
+End.DisplayName=No
+End.IconPicture=No
+End.TextStyle=No
+End_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Decision.Stereotype=Yes
+Decision.DisplayedExpression=No
+Decision.DisplayedExpressionOrName=Yes
+Decision.IconPicture=No
+Decision.TextStyle=No
+Decision_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <ExclusiveChoice Name="Exclusive Choice" Mandatory="Yes" Display="HorizontalRadios" >[CRLF] <StandardAttribute Name="Expression" Attribute="DisplayedExpression" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name if no condition" Attribute="DisplayedExpressionOrName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] </ExclusiveChoice>[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Synchronization.IconPicture=No
+Synchronization.TextStyle=No
+Synchronization_SymbolLayout=
+OrganizationUnit.Stereotype=Yes
+OrganizationUnit.IconPicture=No
+OrganizationUnit.TextStyle=No
+OrganizationUnit_SymbolLayout=
+ActivityFlow.Stereotype=Yes
+ActivityFlow_SymbolLayout=<Form>[CRLF] <Form Name="Source" >[CRLF] <StandardAttribute Name="Condition" Attribute="DisplayedCondition" Prefix="[" Suffix="]" Caption="" Mandatory="Yes" />[CRLF] </Form>[CRLF] <Form Name="Destination" >[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Caption="" Mandatory="No" />[CRLF] </Form>[CRLF] <Form Name="Center" >[CRLF] </Form>[CRLF]</Form>
+
+[DisplayPreferences\Symbol]
+
+[DisplayPreferences\Symbol\FRMEOBJ]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=6000
+Height=2000
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=64
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 255 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FRMELNK]
+CENTERFont=Arial Unicode MS,8,N
+CENTERFont color=0, 0, 0
+Line style=1
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FILO]
+OBJSTRNFont=Arial Unicode MS,8,N
+OBJSTRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LCNMFont=Arial Unicode MS,8,N
+LCNMFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=3600
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\CLDPCKG]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=4000
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 178 178 178
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMACTV]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=6000
+Height=2000
+Brush color=192 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\ACDOBST]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+NAMEFont=Arial Unicode MS,8,N
+NAMEFont color=0, 0, 0
+STATFont=Arial Unicode MS,8,N
+STATFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4000
+Height=3000
+Brush color=224 224 224
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMVAR]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4000
+Height=3000
+Brush color=224 224 224
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=2 0 128 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMATPM]
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=Yes
+Width=800
+Height=800
+Brush color=192 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMSTRT]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=Yes
+Width=1200
+Height=1200
+Brush color=0 128 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMEND]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=Yes
+Width=1500
+Height=1500
+Brush color=0 128 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMDCSN]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DEXPFont=Arial Unicode MS,8,N
+DEXPFont color=0, 0, 0
+DEXNFont=Arial Unicode MS,8,N
+DEXNFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=Yes
+Keep size=No
+Width=6600
+Height=4000
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 0
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMSYNC]
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=2400
+Height=1500
+Brush color=0 128 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=0 128 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMORGN]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=No
+Width=3200
+Height=4800
+Brush color=242 242 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=200 216 248
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMFLOW]
+SOURCEFont=Arial Unicode MS,8,N
+SOURCEFont color=0, 0, 0
+DESTINATIONFont=Arial Unicode MS,8,N
+DESTINATIONFont color=0, 0, 0
+Line style=1
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\USRDEPD]
+OBJXSTRFont=Arial Unicode MS,8,N
+OBJXSTRFont color=0, 0, 0
+Line style=1
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=2 0 128 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\Free Symbol]
+Free TextFont=Arial Unicode MS,8,N
+Free TextFont color=0, 0, 0
+Line style=0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=0
+(8268, 11693)
+((315,354), (433,354))
+1
+15
+
+
+1506768542
+1506768542
+((312,6087), (1639,11837))
+((712,11437),(712,9162),(1014,9162),(1014,6487))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506768543
+1506768543
+((164,-589), (1414,5888))
+((789,5488),(789,-189))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506768578
+1506768578
+((275,-6962), (1526,-312))
+((904,-712),(900,-6562))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+4
+
+
+
+
+
+
+
+
+
+
+
+1506768579
+1506768579
+((462,-11987), (1712,-6860))
+((1087,-7260),(1087,-11587))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506768233
+1506768582
+((-12500,6450), (-8501,9449))
+8421504
+14737632
+12632256
+STRN 0 Arial Unicode MS,8,N
+NAME 0 Arial Unicode MS,8,N
+STAT 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+1506768313
+1506768313
+-1
+((113,10838), (1312,12037))
+12615680
+12615680
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+12632256
+1
+1
+1
+
+
+
+
+
+1506768316
+1506768316
+-1
+((-3719,5488), (5747,7487))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+1506768422
+1506768422
+-1
+((-6071,-1388), (7649,1010))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+1506768490
+1506768490
+-1
+((-6794,-7260), (8222,-5261))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+1506768574
+1506768574
+-1
+((338,-12337), (1837,-10838))
+12615680
+12615680
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+12632256
+1
+1
+1
+
+
+
+
+
+
+
+
+
+B6492AD4-B717-4A19-8161-6737457ACE62
+Start_1
+Start_1
+1506768313
+Programmer
+1506768313
+Programmer
+
+
+
+
+4C72BAD7-D1ED-4430-955B-9CE65FA13415
+End_1
+End_1
+1506768574
+Programmer
+1506768574
+Programmer
+
+
+
+
+4D26DFFB-DC6F-410E-8170-EF5CE4BD3ABD
+Підрахувати кількість хвилин
+Підрахуватикількістьхвилин
+1506769145
+Programmer
+1506780654
+Programmer
+Рез 1
+UML_VALSPEC
+
+
+
+
+
+1D8840EF-1E3E-4F18-A225-060DF5B5E2E7
+Рез 1
+Рез 1
+1506778191
+Programmer
+1506780654
+Programmer
+int
+
+
+
+
+91129744-DA78-43D3-8D2A-C60813263674
+Підрахувати кількість годин
+Підрахуватикількістьгодин
+1506769160
+Programmer
+1506780647
+Programmer
+Рез 2
+UML_VALSPEC
+
+
+
+
+
+0FB6459F-6B40-4E31-8A09-32B39713B9B2
+Рез 2
+Рез 2
+1506779054
+Programmer
+1506780647
+Programmer
+int
+
+
+
+
+E013532C-DDF8-4883-906D-1F81A8E1DCE1
+Ділення змінної N на 60 з остачею
+ДіленнязмінноїNна60зостачею
+1506769657
+Programmer
+1506780826
+Programmer
+
+
+3D010873-C828-47B1-ACCB-1A1543126C5B
+N
+N
+1506769662
+Programmer
+1506769683
+Programmer
+int
+
+
+
+
+F8829B01-A754-468B-BE36-029206491BE5
+Результат 1
+Результат1
+1506777995
+Programmer
+1506778005
+Programmer
+int
+
+
+
+
+71C86011-1BA7-438B-B603-6F6E7E06C939
+Виведення результату
+Виведеннярезультату
+1506770088
+Programmer
+1506778038
+Programmer
+Результат 1 =
+UML_VALSPEC
+
+
+225D2773-DBC7-4C54-95F7-1FE3A56AEDF8
+Результат 1 =
+Результат 1 =
+1506770133
+Programmer
+1506771776
+Programmer
+int
+
+
+
+
+EDC6A4D7-98D7-42D3-B7F2-8C661652DA57
+Ділення змінної N на 60 націло
+ДіленнязмінноїNна60націло
+1506770694
+Programmer
+1506780808
+Programmer
+
+
+B6830436-30DE-4FC8-8216-1934F787FC30
+N
+N
+1506771106
+Programmer
+1506771139
+Programmer
+int
+
+
+
+
+72599688-4602-4FCE-A342-DF9508C842AB
+Рез 2
+Рез2
+1506780757
+Programmer
+1506780772
+Programmer
+int
+
+
+
+
+E35315F4-6E51-4576-B51D-1FFF4F8D206D
+Результат ділення націло
+Результатділеннянаціло
+1506770694
+Programmer
+1506780782
+Programmer
+Рез 2 =
+UML_VALSPEC
+
+
+44C12506-2E45-4BFE-9CE2-3CFBEF3A5B77
+Рез 2
+Рез2
+1506780778
+Programmer
+1506780782
+Programmer
+int
+
+
+
+
+E6AB0FA8-BC57-4DC7-96D2-9328153F2B49
+Рез 2 =
+Рез 2 =
+1506770801
+Programmer
+1506778757
+Programmer
+int
+
+
+
+
+FB20DD16-FF1F-4905-A057-03743C82C622
+Вивести результат
+Вивестирезультат
+1506771367
+Programmer
+1506780613
+Programmer
+Рез 1 = , Рез 2 =
+UML_VALSPEC
+
+
+
+
+
+F73D6F17-9A70-455D-B2EE-647EC4E40680
+Рез 1
+Рез1
+1506779074
+Programmer
+1506779086
+Programmer
+int
+
+
+1FC27381-28FE-4A84-AC3D-79EC3C5A8FF4
+Рез 2
+Рез2
+1506779090
+Programmer
+1506779097
+Programmer
+int
+
+
+
+
+2AF9C92A-863C-46F2-925E-E06A09C09E38
+Рез 1 = , Рез 2 =
+Рез 1 = , Рез 2 =
+1506780589
+Programmer
+1506780613
+Programmer
+int
+
+
+
+
+4FBB2688-1E6C-4980-8AFE-0D1C469544AA
+Отримати дані від користувача 2
+Отриматиданівідкористувача2
+1506768054
+Programmer
+1506780514
+Programmer
+UML_READVAR
+
+
+
+
+
+B60A41FA-F87A-4482-A8F6-A481427214EF
+a
+Variable_1
+1506768121
+Programmer
+1506776997
+Programmer
+int
+
+
+864E4731-73D3-4181-8745-6F3AA4E36094
+b
+b
+1506774825
+Programmer
+1506776997
+Programmer
+int
+
+
+
+
+941EC2B4-1270-4C75-8CAB-8496FD22ECBD
+Виведення текста
+Виведеннятекста
+1506774877
+Programmer
+1506777139
+Programmer
+Виведення наступного текста: "Введіть значення а, b"
+
+
+6575FBCE-A6EE-45B7-9DEE-B7E02DEC9E79
+Вивести рядок для змінної
+Вивестирядокдлязмінної
+1506774881
+Programmer
+1506775445
+Programmer
+UNDEF
+
+
+346EE144-C57D-4395-91A3-70744212FD33
+Вивести рядок для іншої змінної
+Вивестирядокдляіншоїзмінної
+1506774882
+Programmer
+1506775462
+Programmer
+UNDEF
+
+
+49CF2ED0-6EA6-4B51-A1C8-0490BB8993FC
+Отримати значення змінної від користувача
+Отриматизначеннязмінноївідкористувача
+1506775075
+Programmer
+1506777153
+Programmer
+UML_READVAR
+
+
+1E1A9D6C-79C4-42E1-AB2B-979B449837C6
+1 змінна
+1змінна
+1506777144
+Programmer
+1506777153
+Programmer
+int
+
+
+
+
+
+
+
+9F410EDF-6784-4D58-A726-653A314AC75F
+Отримати значення другої змінної від користувача
+Отриматизначеннядругоїзмінноївідкористувача
+1506775280
+Programmer
+1506777161
+Programmer
+UML_READVAR
+
+
+9F428EFB-7808-49DF-88FB-7B4B0327177F
+2 змінна
+2змінна
+1506777155
+Programmer
+1506777161
+Programmer
+int
+
+
+
+
+
+
+
+DCCCB1A5-C5E4-47B8-A640-F0738D993536
+Підрахувати площу
+Підрахуватиплощу
+1506775569
+Programmer
+1506780665
+Programmer
+UNDEF
+
+
+
+
+
+DE1DFE4C-F920-415A-9993-183865C50E22
+1506775753
+Programmer
+1506775753
+Programmer
+
+
+
+
+
+
+
+
+EB78C12D-0F15-4919-ADFE-FB38A7DD3023
+1506775925
+Programmer
+1506775925
+Programmer
+
+
+
+
+
+
+
+
+5441C427-81DA-459F-B139-3A598A822DF3
+1506775925
+Programmer
+1506775925
+Programmer
+
+
+
+
+
+
+
+
+
+
+C4BC4930-8C9A-40FF-AD6C-355DCAF781A9
+a
+a
+1506779250
+Programmer
+1506779274
+Programmer
+int
+
+
+9ED03043-262E-4A78-A62D-36123B8D7A55
+b
+b
+1506779250
+Programmer
+1506779274
+Programmer
+int
+
+
+
+
+86EC32B5-D6D8-4FC9-93D3-7AFE8FA56C58
+S1
+S1
+1506780658
+Programmer
+1506780665
+Programmer
+int
+
+
+
+
+7CA2B4B5-4C4B-433E-9D30-730614FCBAF9
+a
+a
+1506779250
+Programmer
+1506779274
+Programmer
+int
+
+
+
+
+
+AAFD84F3-91CD-4095-93ED-0BB08FAAB2C9
+b
+b
+1506779250
+Programmer
+1506779274
+Programmer
+int
+
+
+
+
+
+C39044FA-E2CE-47E8-8AC7-58771013BB47
+S1
+S1
+1506780658
+Programmer
+1506780665
+Programmer
+int
+
+
+
+
+
+
+
+3D852B43-D0DF-4531-9D1B-43D9692CC850
+Підрахувати S1і за формулою S
+ПідрахуватиS1ізаформулоюS
+1506775751
+Programmer
+1506776042
+Programmer
+UNDEF
+
+
+E24B2821-AC25-480E-B344-38C5CF7588AF
+a
+a
+1506775834
+Programmer
+1506775845
+Programmer
+int
+
+
+C53BCD6E-80CF-4B97-B318-FA3FB12D5A84
+b
+b
+1506775834
+Programmer
+1506775845
+Programmer
+int
+
+
+2AFB599A-B0BF-437E-83AF-792F4D0B516C
+S
+S
+1506775834
+Programmer
+1506775845
+Programmer
+int
+
+
+
+
+6D505E24-DB10-4FEC-9A2D-9A7764C51B00
+S1
+S1
+1506776036
+Programmer
+1506776042
+Programmer
+int
+
+
+
+
+0B767E59-6D3C-4AB3-94CA-02DD0E05CA48
+Результат
+Результат
+1506775920
+Programmer
+1506776004
+Programmer
+результат = S1
+UML_VALSPEC
+
+
+EC7526C5-1700-4B30-A365-59E72ADDBB8E
+результат = S1
+результат = S1
+1506775927
+Programmer
+1506776004
+Programmer
+int
+
+
+
+
+
+
+A3EF388C-3D8E-4795-BAAA-2A7FEDB45379
+Підрахунок площі
+Підрахунокплощі
+1506775723
+Programmer
+1506781360
+Programmer
+[DisplayPreferences]
+
+[DisplayPreferences\ACD]
+
+[DisplayPreferences\General]
+Adjust to text=Yes
+Snap Grid=No
+Constrain Labels=Yes
+Display Grid=No
+Show Page Delimiter=Yes
+Show Links intersections=Yes
+Activate automatic link routing=Yes
+Grid size=0
+Graphic unit=2
+Window color=255, 255, 255
+Background image=
+Background mode=8
+Watermark image=
+Watermark mode=8
+Show watermark on screen=No
+Gradient mode=0
+Gradient end color=255, 255, 255
+Show Swimlane=Yes
+SwimlaneVert=Yes
+TreeVert=No
+CompDark=0
+
+[DisplayPreferences\Object]
+Show Icon=Yes
+Mode=2
+Trunc Length=40
+Word Length=40
+Word Text=!"#$%&')*+,-./:;=>?@\]^_`|}~
+Shortcut IntIcon=Yes
+Shortcut IntLoct=Yes
+Shortcut IntFullPath=No
+Shortcut IntLastPackage=Yes
+Shortcut ExtIcon=Yes
+Shortcut ExtLoct=No
+Shortcut ExtFullPath=No
+Shortcut ExtLastPackage=Yes
+Shortcut ExtIncludeModl=Yes
+EObjShowStrn=Yes
+ExtendedObject.Comment=No
+ExtendedObject.IconPicture=No
+ExtendedObject.TextStyle=No
+ExtendedObject_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Object Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+ELnkShowStrn=Yes
+ELnkShowName=Yes
+ExtendedLink_SymbolLayout=<Form>[CRLF] <Form Name="Center" >[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Caption="" Mandatory="No" />[CRLF] </Form>[CRLF] <Form Name="Source" >[CRLF] </Form>[CRLF] <Form Name="Destination" >[CRLF] </Form>[CRLF]</Form>
+FileObject.Stereotype=No
+FileObject.DisplayName=Yes
+FileObject.LocationOrName=No
+FileObject.IconPicture=No
+FileObject.TextStyle=No
+FileObject.IconMode=Yes
+FileObject_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <ExclusiveChoice Name="Exclusive Choice" Mandatory="Yes" Display="HorizontalRadios" >[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Location" Attribute="LocationOrName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] </ExclusiveChoice>[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Package.Stereotype=Yes
+Package.Comment=No
+Package.IconPicture=No
+Package.TextStyle=No
+Package_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Display Model Version=Yes
+Activity.Stereotype=Yes
+Activity.Comment=No
+Activity.ParametersDisplay=Yes
+Activity.IconPicture=No
+Activity.TextStyle=No
+Activity.SubSymbols=Yes
+Activity_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+ObjectNode.Stereotype=Yes
+ObjectNode.Comment=No
+ObjectNode.IconPicture=No
+ObjectNode.TextStyle=No
+ObjectNode_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="Name" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="State" Attribute="States" Prefix="[" Suffix="]" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Variable.Stereotype=Yes
+Variable.Comment=No
+Variable.IconPicture=No
+Variable.TextStyle=No
+Variable_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+ActivityParameter.DisplayName=Yes
+ActivityParameter.InstanceDisplay=No
+ActivityParameter.IconPicture=No
+ActivityParameter.TextStyle=No
+ActivityParameter_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Start.Stereotype=Yes
+Start.DisplayName=No
+Start.IconPicture=No
+Start.TextStyle=No
+Start_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+End.Stereotype=Yes
+End.DisplayName=No
+End.IconPicture=No
+End.TextStyle=No
+End_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Decision.Stereotype=Yes
+Decision.DisplayedExpression=No
+Decision.DisplayedExpressionOrName=Yes
+Decision.IconPicture=No
+Decision.TextStyle=No
+Decision_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <ExclusiveChoice Name="Exclusive Choice" Mandatory="Yes" Display="HorizontalRadios" >[CRLF] <StandardAttribute Name="Expression" Attribute="DisplayedExpression" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name if no condition" Attribute="DisplayedExpressionOrName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] </ExclusiveChoice>[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Synchronization.IconPicture=No
+Synchronization.TextStyle=No
+Synchronization_SymbolLayout=
+OrganizationUnit.Stereotype=Yes
+OrganizationUnit.IconPicture=No
+OrganizationUnit.TextStyle=No
+OrganizationUnit_SymbolLayout=
+ActivityFlow.Stereotype=Yes
+ActivityFlow_SymbolLayout=<Form>[CRLF] <Form Name="Source" >[CRLF] <StandardAttribute Name="Condition" Attribute="DisplayedCondition" Prefix="[" Suffix="]" Caption="" Mandatory="Yes" />[CRLF] </Form>[CRLF] <Form Name="Destination" >[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Caption="" Mandatory="No" />[CRLF] </Form>[CRLF] <Form Name="Center" >[CRLF] </Form>[CRLF]</Form>
+
+[DisplayPreferences\Symbol]
+
+[DisplayPreferences\Symbol\FRMEOBJ]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=6000
+Height=2000
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=64
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 255 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FRMELNK]
+CENTERFont=Arial Unicode MS,8,N
+CENTERFont color=0, 0, 0
+Line style=1
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FILO]
+OBJSTRNFont=Arial Unicode MS,8,N
+OBJSTRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LCNMFont=Arial Unicode MS,8,N
+LCNMFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=3600
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\CLDPCKG]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=4000
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 178 178 178
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMACTV]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=6000
+Height=2000
+Brush color=192 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\ACDOBST]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+NAMEFont=Arial Unicode MS,8,N
+NAMEFont color=0, 0, 0
+STATFont=Arial Unicode MS,8,N
+STATFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4000
+Height=3000
+Brush color=224 224 224
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMVAR]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4000
+Height=3000
+Brush color=224 224 224
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=2 0 128 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMATPM]
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=Yes
+Width=800
+Height=800
+Brush color=192 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMSTRT]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=Yes
+Width=1200
+Height=1200
+Brush color=0 128 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMEND]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=Yes
+Width=1500
+Height=1500
+Brush color=0 128 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMDCSN]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DEXPFont=Arial Unicode MS,8,N
+DEXPFont color=0, 0, 0
+DEXNFont=Arial Unicode MS,8,N
+DEXNFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=Yes
+Keep size=No
+Width=6600
+Height=4000
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 0
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMSYNC]
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=2400
+Height=1500
+Brush color=0 128 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=0 128 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMORGN]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=No
+Width=3200
+Height=4800
+Brush color=242 242 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=200 216 248
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMFLOW]
+SOURCEFont=Arial Unicode MS,8,N
+SOURCEFont color=0, 0, 0
+DESTINATIONFont=Arial Unicode MS,8,N
+DESTINATIONFont color=0, 0, 0
+Line style=1
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\USRDEPD]
+OBJXSTRFont=Arial Unicode MS,8,N
+OBJXSTRFont color=0, 0, 0
+Line style=1
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=2 0 128 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\Free Symbol]
+Free TextFont=Arial Unicode MS,8,N
+Free TextFont color=0, 0, 0
+Line style=0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=0
+(8268, 11693)
+((315,354), (433,354))
+1
+15
+
+
+1506775753
+1506775872
+((-2808,5861), (-1544,11011))
+((-2137,10611),(-2197,6261))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506775925
+1506775925
+((-2721,236), (-1454,5662))
+((-2142,5262),(-2062,636))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506775925
+1506775979
+((-2312,-5088), (-1062,1036))
+((-1687,636),(-1687,-4688))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506775747
+1506775747
+-1
+((-2737,10012), (-1538,11211))
+12615680
+12615680
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+12632256
+1
+1
+1
+
+
+
+
+
+1506775751
+1506776042
+-1
+((-8635,5262), (3906,7261))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+1506775834
+1506775999
+-1
+((-10608,6862), (-9809,7661))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+1506775834
+1506775999
+-1
+((-9708,6862), (-8909,7661))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+1506775834
+1506775999
+-1
+((-8658,6862), (-7859,7661))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+1506776036
+1506776042
+-1
+((3206,4862), (4005,5661))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+
+
+
+
+
+1506775920
+1506775976
+-1
+((-5062,-363), (937,1636))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+1506775927
+1506775976
+-1
+((237,-763), (1036,36))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+
+
+
+
+
+1506775922
+1506775979
+-1
+((-2437,-5438), (-938,-3939))
+12615680
+12615680
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+12632256
+1
+1
+1
+
+
+
+
+
+1506779250
+1506779793
+((8378,4665), (12378,7664))
+8421504
+14737632
+12632256
+STRN 0 Arial Unicode MS,8,N
+NAME 0 Arial Unicode MS,8,N
+STAT 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+1506779250
+1506780030
+((14350,4725), (18350,7724))
+8421504
+14737632
+12632256
+STRN 0 Arial Unicode MS,8,N
+NAME 0 Arial Unicode MS,8,N
+STAT 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+1506780658
+1506781367
+((11303,-435), (15303,2564))
+8421504
+14737632
+12632256
+STRN 0 Arial Unicode MS,8,N
+NAME 0 Arial Unicode MS,8,N
+STAT 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+
+
+
+
+2D3834B0-5C33-4779-B5A8-1016719E3F9A
+Start_1
+Start_1
+1506775747
+Programmer
+1506775747
+Programmer
+
+
+
+
+8253CEA3-7D76-4486-AC65-1C3CB5BFAA2A
+End_1
+End_1
+1506775922
+Programmer
+1506775922
+Programmer
+
+
+
+
+52868126-F59E-4C77-8001-8578831EFDB3
+вивести текст на екран2
+вивеститекстнаекран2
+1506771516
+Programmer
+1506775638
+Programmer
+Вивести: "Підрахунки закінчення, ваша відповідь"
+UNDEF
+
+
+C9AAFE8B-C33F-45AE-908E-0303DE3E2062
+Вивести на екран Рез 1
+ВивестинаекранРез1
+1506771931
+Programmer
+1506781156
+Programmer
+UML_READVAR
+
+
+B8569D81-9A67-4A0A-8ED1-23356C0F0923
+Рез 1
+Рез1
+1506781145
+Programmer
+1506781156
+Programmer
+int
+
+
+
+
+
+
+
+41B6AF46-96E1-4E6B-972D-E4BA9E76155E
+Вивести на екран Рез 3
+ВивестинаекранРез3
+1506771932
+Programmer
+1506781175
+Programmer
+UML_READVAR
+
+
+4AB18E60-3239-45E2-ADFC-2B4119B1598D
+Рез 3
+Рез3
+1506781166
+Programmer
+1506781175
+Programmer
+int
+
+
+
+
+
+
+
+AB409523-948D-40DB-BD97-51DE3DC5AEE8
+Вивести на екран Рез 2
+ВивестинаекранРез2
+1506771998
+Programmer
+1506781164
+Programmer
+UML_READVAR
+
+
+93025FE5-7A68-4610-B906-0A362F9608A8
+Рез 2
+Рез2
+1506781158
+Programmer
+1506781164
+Programmer
+int
+
+
+
+
+
+
+
+CE4CC6AE-7F6B-4430-82B2-956A142B03DB
+Вивести на екран Рез 4
+ВивестинаекранРез4
+1506772067
+Programmer
+1506781184
+Programmer
+UML_READVAR
+
+
+1AAEE550-4B79-47D0-9E53-FB44A26473DE
+Рез 4
+Рез4
+1506781176
+Programmer
+1506781184
+Programmer
+int
+
+
+
+
+
+
+
+C685B79D-8609-4BFA-B4CA-133293752C71
+Вивести результат 2
+Вивестирезультат2
+1506776058
+Programmer
+1506780673
+Programmer
+UNDEF
+
+
+
+
+
+FD420AA2-CCCD-41CB-B6BE-C47AE0D77886
+1506776176
+Programmer
+1506776176
+Programmer
+
+
+
+
+
+
+
+
+D3B738FA-E8BA-40A5-B9D9-36164B479F0F
+1506776214
+Programmer
+1506776214
+Programmer
+
+
+
+
+
+
+
+
+B93D27CF-C8BA-4880-A225-9BE32A497030
+1506776255
+Programmer
+1506776255
+Programmer
+
+
+
+
+
+
+
+
+
+
+66FE2D69-96AA-4CF1-A91F-EBB7EE56C9D7
+S1
+S1
+1506780669
+Programmer
+1506780673
+Programmer
+int
+
+
+
+
+762DD38B-1086-40D5-BD3A-30EACC38A0BB
+S1
+S1
+1506779979
+Programmer
+1506779985
+Programmer
+int
+
+
+
+
+87A21349-9C6A-4854-90FC-2626E2FF10AE
+S1
+S1
+1506779979
+Programmer
+1506779985
+Programmer
+int
+
+
+
+
+
+E34235BE-0F3F-473B-B8EB-0DB5595D7D70
+S1
+S1
+1506780669
+Programmer
+1506780673
+Programmer
+int
+
+
+
+
+
+
+
+80BB84FF-DB07-4B52-AD65-2F0261D48E41
+Вивести текст
+Вивеститекст
+1506776174
+Programmer
+1506776207
+Programmer
+Вивести наступный текст:"Ваш результат:"
+
+UNDEF
+
+
+3C5A38FB-9F59-4E9A-A44F-CB6FCA14AA5D
+вивести значення S1
+вивестизначенняS1
+1506776211
+Programmer
+1506776242
+Programmer
+S1=
+UML_VALSPEC
+
+
+BE06C74C-4D3A-4D4B-9F32-546BB9D1D742
+S1
+S1
+1506776237
+Programmer
+1506776242
+Programmer
+int
+
+
+
+
+746D37F0-138D-4D89-91EF-6002E22D99BB
+S1=
+S1=
+1506776215
+Programmer
+1506776237
+Programmer
+int
+
+
+
+
+
+
+A445DC55-46F6-44D4-9A8C-F7693990B081
+виведення результату
+виведеннярезультату
+1506776095
+Programmer
+1506780673
+Programmer
+[DisplayPreferences]
+
+[DisplayPreferences\ACD]
+
+[DisplayPreferences\General]
+Adjust to text=Yes
+Snap Grid=No
+Constrain Labels=Yes
+Display Grid=No
+Show Page Delimiter=Yes
+Show Links intersections=Yes
+Activate automatic link routing=Yes
+Grid size=0
+Graphic unit=2
+Window color=255, 255, 255
+Background image=
+Background mode=8
+Watermark image=
+Watermark mode=8
+Show watermark on screen=No
+Gradient mode=0
+Gradient end color=255, 255, 255
+Show Swimlane=Yes
+SwimlaneVert=Yes
+TreeVert=No
+CompDark=0
+
+[DisplayPreferences\Object]
+Show Icon=Yes
+Mode=2
+Trunc Length=40
+Word Length=40
+Word Text=!"#$%&')*+,-./:;=>?@\]^_`|}~
+Shortcut IntIcon=Yes
+Shortcut IntLoct=Yes
+Shortcut IntFullPath=No
+Shortcut IntLastPackage=Yes
+Shortcut ExtIcon=Yes
+Shortcut ExtLoct=No
+Shortcut ExtFullPath=No
+Shortcut ExtLastPackage=Yes
+Shortcut ExtIncludeModl=Yes
+EObjShowStrn=Yes
+ExtendedObject.Comment=No
+ExtendedObject.IconPicture=No
+ExtendedObject.TextStyle=No
+ExtendedObject_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Object Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+ELnkShowStrn=Yes
+ELnkShowName=Yes
+ExtendedLink_SymbolLayout=<Form>[CRLF] <Form Name="Center" >[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Caption="" Mandatory="No" />[CRLF] </Form>[CRLF] <Form Name="Source" >[CRLF] </Form>[CRLF] <Form Name="Destination" >[CRLF] </Form>[CRLF]</Form>
+FileObject.Stereotype=No
+FileObject.DisplayName=Yes
+FileObject.LocationOrName=No
+FileObject.IconPicture=No
+FileObject.TextStyle=No
+FileObject.IconMode=Yes
+FileObject_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <ExclusiveChoice Name="Exclusive Choice" Mandatory="Yes" Display="HorizontalRadios" >[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Location" Attribute="LocationOrName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] </ExclusiveChoice>[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Package.Stereotype=Yes
+Package.Comment=No
+Package.IconPicture=No
+Package.TextStyle=No
+Package_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Display Model Version=Yes
+Activity.Stereotype=Yes
+Activity.Comment=No
+Activity.ParametersDisplay=Yes
+Activity.IconPicture=No
+Activity.TextStyle=No
+Activity.SubSymbols=Yes
+Activity_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+ObjectNode.Stereotype=Yes
+ObjectNode.Comment=No
+ObjectNode.IconPicture=No
+ObjectNode.TextStyle=No
+ObjectNode_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="Name" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="State" Attribute="States" Prefix="[" Suffix="]" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Variable.Stereotype=Yes
+Variable.Comment=No
+Variable.IconPicture=No
+Variable.TextStyle=No
+Variable_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+ActivityParameter.DisplayName=Yes
+ActivityParameter.InstanceDisplay=No
+ActivityParameter.IconPicture=No
+ActivityParameter.TextStyle=No
+ActivityParameter_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Start.Stereotype=Yes
+Start.DisplayName=No
+Start.IconPicture=No
+Start.TextStyle=No
+Start_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+End.Stereotype=Yes
+End.DisplayName=No
+End.IconPicture=No
+End.TextStyle=No
+End_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Decision.Stereotype=Yes
+Decision.DisplayedExpression=No
+Decision.DisplayedExpressionOrName=Yes
+Decision.IconPicture=No
+Decision.TextStyle=No
+Decision_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <ExclusiveChoice Name="Exclusive Choice" Mandatory="Yes" Display="HorizontalRadios" >[CRLF] <StandardAttribute Name="Expression" Attribute="DisplayedExpression" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name if no condition" Attribute="DisplayedExpressionOrName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] </ExclusiveChoice>[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Synchronization.IconPicture=No
+Synchronization.TextStyle=No
+Synchronization_SymbolLayout=
+OrganizationUnit.Stereotype=Yes
+OrganizationUnit.IconPicture=No
+OrganizationUnit.TextStyle=No
+OrganizationUnit_SymbolLayout=
+ActivityFlow.Stereotype=Yes
+ActivityFlow_SymbolLayout=<Form>[CRLF] <Form Name="Source" >[CRLF] <StandardAttribute Name="Condition" Attribute="DisplayedCondition" Prefix="[" Suffix="]" Caption="" Mandatory="Yes" />[CRLF] </Form>[CRLF] <Form Name="Destination" >[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Caption="" Mandatory="No" />[CRLF] </Form>[CRLF] <Form Name="Center" >[CRLF] </Form>[CRLF]</Form>
+
+[DisplayPreferences\Symbol]
+
+[DisplayPreferences\Symbol\FRMEOBJ]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=6000
+Height=2000
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=64
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 255 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FRMELNK]
+CENTERFont=Arial Unicode MS,8,N
+CENTERFont color=0, 0, 0
+Line style=1
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FILO]
+OBJSTRNFont=Arial Unicode MS,8,N
+OBJSTRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LCNMFont=Arial Unicode MS,8,N
+LCNMFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=3600
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\CLDPCKG]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=4000
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 178 178 178
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMACTV]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=6000
+Height=2000
+Brush color=192 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\ACDOBST]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+NAMEFont=Arial Unicode MS,8,N
+NAMEFont color=0, 0, 0
+STATFont=Arial Unicode MS,8,N
+STATFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4000
+Height=3000
+Brush color=224 224 224
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMVAR]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4000
+Height=3000
+Brush color=224 224 224
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=2 0 128 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMATPM]
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=Yes
+Width=800
+Height=800
+Brush color=192 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMSTRT]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=Yes
+Width=1200
+Height=1200
+Brush color=0 128 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMEND]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=Yes
+Width=1500
+Height=1500
+Brush color=0 128 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMDCSN]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DEXPFont=Arial Unicode MS,8,N
+DEXPFont color=0, 0, 0
+DEXNFont=Arial Unicode MS,8,N
+DEXNFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=Yes
+Keep size=No
+Width=6600
+Height=4000
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 0
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMSYNC]
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=2400
+Height=1500
+Brush color=0 128 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=0 128 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMORGN]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=No
+Width=3200
+Height=4800
+Brush color=242 242 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=200 216 248
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMFLOW]
+SOURCEFont=Arial Unicode MS,8,N
+SOURCEFont color=0, 0, 0
+DESTINATIONFont=Arial Unicode MS,8,N
+DESTINATIONFont color=0, 0, 0
+Line style=1
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\USRDEPD]
+OBJXSTRFont=Arial Unicode MS,8,N
+OBJXSTRFont color=0, 0, 0
+Line style=1
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=2 0 128 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\Free Symbol]
+Free TextFont=Arial Unicode MS,8,N
+Free TextFont color=0, 0, 0
+Line style=0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=0
+(8268, 11693)
+((315,354), (433,354))
+1
+15
+
+
+1506776176
+1506776176
+((-1937,8145), (-537,14570))
+((-937,14170),(-937,11558),(-1312,11558),(-1312,8545))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506776214
+1506776214
+((-2012,1620), (-762,7946))
+((-1387,7546),(-1387,2020))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506776255
+1506776255
+((-1562,-3479), (-312,2420))
+((-937,2020),(-937,-3079))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506776107
+1506776107
+-1
+((-1537,13571), (-338,14770))
+12615680
+12615680
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+12632256
+1
+1
+1
+
+
+
+
+
+1506776173
+1506776174
+-1
+((-4312,7546), (1687,9545))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+1506776211
+1506776242
+-1
+((-5597,1021), (2819,3020))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+1506776215
+1506776237
+-1
+((2119,621), (2918,1420))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+1506776237
+1506776242
+-1
+((-5697,2620), (-4898,3419))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+
+
+
+
+
+1506776252
+1506776252
+-1
+((-1687,-3829), (-188,-2330))
+12615680
+12615680
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+12632256
+1
+1
+1
+
+
+
+
+
+1506779979
+1506779985
+((3953,-4935), (7953,-1936))
+8421504
+14737632
+12632256
+STRN 0 Arial Unicode MS,8,N
+NAME 0 Arial Unicode MS,8,N
+STAT 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+1506780669
+1506780673
+((-13250,-1500), (-9250,1499))
+8421504
+14737632
+12632256
+STRN 0 Arial Unicode MS,8,N
+NAME 0 Arial Unicode MS,8,N
+STAT 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+
+
+
+
+E5FEA5FD-8359-4E67-8A86-76710D0797F5
+Start_1
+Start_1
+1506776107
+Programmer
+1506776107
+Programmer
+
+
+
+
+A91F3AAE-6858-4E6E-B284-281CDBA2CA58
+End_1
+End_1
+1506776252
+Programmer
+1506776252
+Programmer
+
+
+
+
+2316D1D8-B546-4C75-A17F-911AA318FFAA
+Отримати дані від користувача 3
+Отриматиданівідкористувача3
+1506776285
+Programmer
+1506776551
+Programmer
+UML_READVAR
+
+
+
+
+
+E9B52B7C-964A-4012-88C1-167B401B0AC6
+K
+K
+1506776541
+Programmer
+1506776551
+Programmer
+int
+
+
+730EB4C6-8942-43AE-BA0A-8B288712DC8C
+L
+L
+1506776541
+Programmer
+1506776551
+Programmer
+int
+
+
+
+
+90E4A7B5-3F5E-464D-BCEE-E584AC377AA1
+Підрахувати кількість яблук на одного студента
+Підрахуватикількістьяблукнаодногостудента
+1506776348
+Programmer
+1506780531
+Programmer
+UML_VALSPEC
+
+
+
+
+
+FFF89C74-470D-417D-BD6A-FE5B9D0DB5E5
+N
+N
+1506780434
+Programmer
+1506780451
+Programmer
+int
+
+
+F5DF8BAF-3068-4AD3-9B6F-4C5E6EA14FD6
+K
+K
+1506780434
+Programmer
+1506780451
+Programmer
+int
+
+
+
+
+F8ED3086-54EA-4B37-8A0B-A870197400B8
+Рез 4
+Рез4
+1506780453
+Programmer
+1506780487
+Programmer
+int
+
+
+
+
+EC8FEA7E-083F-4132-B5DF-02D700CF8931
+Підрахувати кількість яблук, що залишилась
+Підрахуватикількістьяблук,щозалишилась
+1506776349
+Programmer
+1506780525
+Programmer
+UML_VALSPEC
+
+
+
+
+
+CF06AB51-2276-4233-9261-616703F7A309
+K
+K
+1506780464
+Programmer
+1506780479
+Programmer
+int
+
+
+3CA07065-A7F4-4CF9-BC8F-F30F992C68CC
+L
+L
+1506780464
+Programmer
+1506780479
+Programmer
+int
+
+
+
+
+68ECD081-06E6-4B4B-8CE6-4F6FEBA56E50
+Рез 3
+Рез3
+1506780464
+Programmer
+1506780479
+Programmer
+int
+
+
+
+
+AE088E44-13E3-4DF7-B82B-64DEC70439CB
+Вивести результат 3
+Вивестирезультат3
+1506776350
+Programmer
+1506780708
+Programmer
+Рез 3 = , Рез 4 =
+UML_VALSPEC
+
+
+
+
+
+34FAD992-3C2A-490A-890E-27D3896FBFAD
+Рез 3
+Рез3
+1506780678
+Programmer
+1506780689
+Programmer
+int
+
+
+B53A8D65-7FB5-4B39-B3B9-8A03CAEF8E7D
+рез 4
+рез4
+1506780678
+Programmer
+1506780689
+Programmer
+int
+
+
+
+
+2763C3EA-D3CD-452A-A76B-A3000B4B0046
+Рез 3 = , Рез 4 =
+Рез 3 = , Рез 4 =
+1506779991
+Programmer
+1506780708
+Programmer
+int
+
+
+
+
+BB9FD10C-B8C3-4E49-9CE0-98D14BFA08D4
+Ділення з остачею K на L
+ДіленнязостачеюKнаL
+1506777214
+Programmer
+1506778017
+Programmer
+UNDEF
+
+
+0F09F6D3-B0C1-4402-AAFF-A5CB7EA16D1E
+K
+K
+1506777978
+Programmer
+1506777989
+Programmer
+int
+
+
+821C7E7D-4DBB-4D68-9DFF-931D525A3ABC
+L
+L
+1506777978
+Programmer
+1506777989
+Programmer
+int
+
+
+
+
+7B90E3C0-0768-4F27-87A2-F66189E74681
+Результат 3
+Результат3
+1506778007
+Programmer
+1506778285
+Programmer
+int
+
+
+
+
+09E34AA1-3F13-491D-9321-8E1E9D42EB0F
+Виведення результату 2
+Виведеннярезультату2
+1506777319
+Programmer
+1506780879
+Programmer
+Результат 3 =
+UML_VALSPEC
+
+
+98F4AAC3-432E-4257-960C-7E98B8CCEB19
+Результат 3 =
+Результат 3 =
+1506777323
+Programmer
+1506778487
+Programmer
+int
+
+
+
+
+C7D3C6A3-0AA2-493B-8389-27A81DCD2BEF
+Ділення K на L націло
+ДіленняKнаLнаціло
+1506779472
+Programmer
+1506780748
+Programmer
+UNDEF
+
+
+8F4BEC7B-9FBF-4E2A-9869-C04566B22028
+K
+K
+1506779514
+Programmer
+1506779526
+Programmer
+int
+
+
+490418F9-63C9-43E9-986F-5EEBC16D2A50
+L
+L
+1506779514
+Programmer
+1506779526
+Programmer
+int
+
+
+
+
+704DBA8A-C118-4D61-993B-C1361D4628C1
+Рез 4
+Рез4
+1506780742
+Programmer
+1506780748
+Programmer
+int
+
+
+
+
+CEA430D9-0C71-4A72-9F09-1795CA746C4E
+Результат ділення націло 2
+Результатділеннянаціло2
+1506779473
+Programmer
+1506780752
+Programmer
+Рез 4 =
+UML_VALSPEC
+
+
+2459BAAA-7452-4646-8574-8428AC53C410
+Рез 4
+Рез4
+1506780749
+Programmer
+1506780752
+Programmer
+int
+
+
+
+
+1AD71102-A041-4A1C-9939-A54C661992D6
+Рез 4 =
+Рез 4 =
+1506779688
+Programmer
+1506779715
+Programmer
+int
+
+
+
+
+
+
+3E738839-3227-4BAF-B6BB-326511720943
+Змінна = N
+ЗміннаN
+1506772286
+Programmer
+1506777287
+Programmer
+
+
+79D106FF-72F3-4224-89A5-04EC38FBFB10
+Рез = Рез 1, Рез 2?
+РезРез1,Рез2?
+1506771868
+Programmer
+1506781200
+Programmer
+
+
+D577E0FF-DC38-4C78-9D0F-15386FB01736
+Змінна = N?
+ЗміннаN?
+1506779377
+Programmer
+1506780734
+Programmer
+
+
+
+
+49ACCD61-2771-41ED-B38E-825C82F5C66C
+Алгортим для виконання 3 програм
+Алгортимдлявиконання3програм
+1506767878
+Programmer
+1506780689
+Programmer
+[DisplayPreferences]
+
+[DisplayPreferences\ACD]
+
+[DisplayPreferences\General]
+Adjust to text=Yes
+Snap Grid=No
+Constrain Labels=Yes
+Display Grid=No
+Show Page Delimiter=Yes
+Show Links intersections=Yes
+Activate automatic link routing=Yes
+Grid size=0
+Graphic unit=2
+Window color=255, 255, 255
+Background image=
+Background mode=8
+Watermark image=
+Watermark mode=8
+Show watermark on screen=No
+Gradient mode=0
+Gradient end color=255, 255, 255
+Show Swimlane=Yes
+SwimlaneVert=Yes
+TreeVert=No
+CompDark=0
+
+[DisplayPreferences\Object]
+Show Icon=Yes
+Mode=2
+Trunc Length=40
+Word Length=40
+Word Text=!"#$%&')*+,-./:;=>?@\]^_`|}~
+Shortcut IntIcon=Yes
+Shortcut IntLoct=Yes
+Shortcut IntFullPath=No
+Shortcut IntLastPackage=Yes
+Shortcut ExtIcon=Yes
+Shortcut ExtLoct=No
+Shortcut ExtFullPath=No
+Shortcut ExtLastPackage=Yes
+Shortcut ExtIncludeModl=Yes
+EObjShowStrn=Yes
+ExtendedObject.Comment=No
+ExtendedObject.IconPicture=No
+ExtendedObject.TextStyle=No
+ExtendedObject_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Object Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+ELnkShowStrn=Yes
+ELnkShowName=Yes
+ExtendedLink_SymbolLayout=<Form>[CRLF] <Form Name="Center" >[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Caption="" Mandatory="No" />[CRLF] </Form>[CRLF] <Form Name="Source" >[CRLF] </Form>[CRLF] <Form Name="Destination" >[CRLF] </Form>[CRLF]</Form>
+FileObject.Stereotype=No
+FileObject.DisplayName=Yes
+FileObject.LocationOrName=No
+FileObject.IconPicture=No
+FileObject.TextStyle=No
+FileObject.IconMode=Yes
+FileObject_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <ExclusiveChoice Name="Exclusive Choice" Mandatory="Yes" Display="HorizontalRadios" >[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Location" Attribute="LocationOrName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] </ExclusiveChoice>[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Package.Stereotype=Yes
+Package.Comment=No
+Package.IconPicture=No
+Package.TextStyle=No
+Package_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Display Model Version=Yes
+Activity.Stereotype=Yes
+Activity.Comment=No
+Activity.ParametersDisplay=Yes
+Activity.IconPicture=No
+Activity.TextStyle=No
+Activity.SubSymbols=Yes
+Activity_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+ObjectNode.Stereotype=Yes
+ObjectNode.Comment=No
+ObjectNode.IconPicture=No
+ObjectNode.TextStyle=No
+ObjectNode_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="Name" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="State" Attribute="States" Prefix="[" Suffix="]" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Variable.Stereotype=Yes
+Variable.Comment=No
+Variable.IconPicture=No
+Variable.TextStyle=No
+Variable_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+ActivityParameter.DisplayName=Yes
+ActivityParameter.InstanceDisplay=No
+ActivityParameter.IconPicture=No
+ActivityParameter.TextStyle=No
+ActivityParameter_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Start.Stereotype=Yes
+Start.DisplayName=No
+Start.IconPicture=No
+Start.TextStyle=No
+Start_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+End.Stereotype=Yes
+End.DisplayName=No
+End.IconPicture=No
+End.TextStyle=No
+End_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Decision.Stereotype=Yes
+Decision.DisplayedExpression=No
+Decision.DisplayedExpressionOrName=Yes
+Decision.IconPicture=No
+Decision.TextStyle=No
+Decision_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <ExclusiveChoice Name="Exclusive Choice" Mandatory="Yes" Display="HorizontalRadios" >[CRLF] <StandardAttribute Name="Expression" Attribute="DisplayedExpression" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name if no condition" Attribute="DisplayedExpressionOrName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] </ExclusiveChoice>[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Synchronization.IconPicture=No
+Synchronization.TextStyle=No
+Synchronization_SymbolLayout=
+OrganizationUnit.Stereotype=Yes
+OrganizationUnit.IconPicture=No
+OrganizationUnit.TextStyle=No
+OrganizationUnit_SymbolLayout=
+ActivityFlow.Stereotype=Yes
+ActivityFlow_SymbolLayout=<Form>[CRLF] <Form Name="Source" >[CRLF] <StandardAttribute Name="Condition" Attribute="DisplayedCondition" Prefix="[" Suffix="]" Caption="" Mandatory="Yes" />[CRLF] </Form>[CRLF] <Form Name="Destination" >[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Caption="" Mandatory="No" />[CRLF] </Form>[CRLF] <Form Name="Center" >[CRLF] </Form>[CRLF]</Form>
+
+[DisplayPreferences\Symbol]
+
+[DisplayPreferences\Symbol\FRMEOBJ]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=6000
+Height=2000
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=64
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 255 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FRMELNK]
+CENTERFont=Arial Unicode MS,8,N
+CENTERFont color=0, 0, 0
+Line style=1
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FILO]
+OBJSTRNFont=Arial Unicode MS,8,N
+OBJSTRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LCNMFont=Arial Unicode MS,8,N
+LCNMFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=3600
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\CLDPCKG]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=4000
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 178 178 178
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMACTV]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=6000
+Height=2000
+Brush color=192 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\ACDOBST]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+NAMEFont=Arial Unicode MS,8,N
+NAMEFont color=0, 0, 0
+STATFont=Arial Unicode MS,8,N
+STATFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4000
+Height=3000
+Brush color=224 224 224
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMVAR]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4000
+Height=3000
+Brush color=224 224 224
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=2 0 128 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMATPM]
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=Yes
+Width=800
+Height=800
+Brush color=192 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMSTRT]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=Yes
+Width=1200
+Height=1200
+Brush color=0 128 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMEND]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=Yes
+Width=1500
+Height=1500
+Brush color=0 128 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMDCSN]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DEXPFont=Arial Unicode MS,8,N
+DEXPFont color=0, 0, 0
+DEXNFont=Arial Unicode MS,8,N
+DEXNFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=Yes
+Keep size=No
+Width=6600
+Height=4000
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 0
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMSYNC]
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=2400
+Height=1500
+Brush color=0 128 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=0 128 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMORGN]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=No
+Width=3200
+Height=4800
+Brush color=242 242 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=200 216 248
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMFLOW]
+SOURCEFont=Arial Unicode MS,8,N
+SOURCEFont color=0, 0, 0
+DESTINATIONFont=Arial Unicode MS,8,N
+DESTINATIONFont color=0, 0, 0
+Line style=1
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\USRDEPD]
+OBJXSTRFont=Arial Unicode MS,8,N
+OBJXSTRFont color=0, 0, 0
+Line style=1
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=2 0 128 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\Free Symbol]
+Free TextFont=Arial Unicode MS,8,N
+Free TextFont color=0, 0, 0
+Line style=0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=0
+(8268, 11693)
+((315,354), (433,354))
+1
+15
+
+
+1506768141
+1506779179
+((-20576,16925), (213,25524))
+((-187,25124),(-19951,25124),(-19951,17325))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+4
+
+
+
+
+
+
+
+
+
+
+
+1506769181
+1506781439
+((-26239,8599), (-24989,17724))
+((-25734,17324),(-25734,13387),(-25614,13387),(-25614,8999))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+3
+
+
+
+
+
+
+
+
+
+
+
+1506769183
+1506779179
+((-21158,9950), (-15687,17200))
+((-20758,16800),(-20758,13387),(-16312,13387),(-16312,10350))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+4
+
+
+
+
+
+
+
+
+
+
+
+1506771372
+1506780631
+((-27912,3068), (-21018,9999))
+((-27512,9599),(-27512,3693),(-21418,3693))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+2
+
+
+
+
+
+
+
+
+
+
+
+1506771410
+1506780631
+((-21818,3068), (-15622,9075))
+((-16022,8675),(-16022,3693),(-21418,3693))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+3
+
+
+
+
+
+
+
+
+
+
+
+1506774494
+1506780631
+((-21767,-8574), (3057,4093))
+((-21367,3693),(-21367,-7949),(2657,-7949))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506774553
+1506774845
+((-842,16815), (408,25524))
+((-187,25124),(-187,21707),(-217,21707),(-217,17215))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+2
+
+
+
+
+
+
+
+
+
+
+
+1506775573
+1506779802
+((-964,8465), (286,18290))
+((-339,17890),(-339,8865))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506776061
+1506781518
+((-815,3522), (435,8191))
+((-190,7791),(-190,3922))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+3
+
+
+
+
+
+
+
+
+
+
+
+1506776092
+1506776092
+((2028,-8349), (3278,3473))
+((2653,3073),(2657,-7949))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506776289
+1506777172
+((-587,17213), (25262,25524))
+((-187,25124),(24637,25124),(24637,17613))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506776355
+1506781304
+((9807,2886), (24060,9824))
+((10207,9424),(10207,3511),(23660,3511))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+3
+
+
+
+
+
+
+
+
+
+
+
+1506776357
+1506781302
+((27327,2586), (30341,10154))
+((29941,9754),(29941,3211),(27727,3211))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+3
+
+
+
+
+
+
+
+
+
+
+
+1506776377
+1506777172
+((27086,10014), (28336,18013))
+((27711,17613),(27711,10414))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506776379
+1506781307
+((17859,9940), (19109,17938))
+((18484,17538),(18484,10340))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+3
+
+
+
+
+
+
+
+
+
+
+
+1506776563
+1506781302
+((2257,-8574), (24112,3911))
+((23712,3511),(23712,-7949),(2657,-7949))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506767937
+1506774702
+-1
+((-787,24525), (412,25724))
+12615680
+12615680
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+12632256
+1
+1
+1
+
+
+
+
+
+1506768054
+1506779179
+-1
+((-27759,16325), (-15519,18324))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+1506768121
+1506768254
+-1
+((-16340,15926), (-15541,16725))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+
+
+
+
+
+1506768121
+1506779179
+((-24725,18525), (-20726,21524))
+8421504
+2
+14737632
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+1506769145
+1506779179
+-1
+((-33272,8600), (-21856,10599))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+1506778191
+1506778215
+-1
+((-22556,8200), (-21757,8999))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+
+
+
+
+
+1506769160
+1506779179
+-1
+((-21272,8675), (-10306,10674))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+1506779054
+1506779068
+-1
+((-11006,8275), (-10207,9074))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+
+
+
+
+
+1506771367
+1506780613
+-1
+((-25252,2694), (-17586,4693))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+1506779074
+1506780631
+-1
+((-20927,4294), (-20128,5093))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+1506779090
+1506780629
+-1
+((-18677,4294), (-17878,5093))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+1506780589
+1506780613
+-1
+((-18286,2294), (-17487,3093))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+
+
+
+
+
+1506771475
+1506774837
+-1
+((-7058,16891), (5858,18890))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+1506771475
+1506774845
+-1
+((1834,16492), (2633,17291))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+1506774825
+1506774844
+-1
+((3358,16492), (4157,17291))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+
+
+
+
+
+1506774489
+1506774489
+-1
+((1908,-8699), (3407,-7200))
+12615680
+12615680
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+12632256
+1
+1
+1
+
+
+
+
+
+1506774571
+1506774571
+((733,19073), (4732,22072))
+8421504
+2
+14737632
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+1506774571
+1506774576
+((-5042,18998), (-1043,21997))
+8421504
+2
+14737632
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+1506775569
+1506780665
+-1
+((-4210,7866), (3531,9865))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+1506779250
+1506779802
+-1
+((-4162,9466), (-3363,10265))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+1506779250
+1506779802
+-1
+((-3194,9466), (-2395,10265))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+1506780658
+1506780665
+-1
+((2831,7466), (3630,8265))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+
+
+
+
+
+1506776058
+1506780673
+-1
+((-3685,3073), (4656,5072))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+1506779979
+1506780673
+-1
+((3957,2674), (4756,3473))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+1506780669
+1506780673
+-1
+((-3784,4673), (-2985,5472))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+
+
+
+
+
+1506776285
+1506776551
+-1
+((18181,16614), (31093,18613))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+1506776541
+1506776551
+-1
+((30393,16214), (31192,17013))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+1506776541
+1506777172
+-1
+((29643,16215), (30442,17014))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+
+
+
+
+
+1506776348
+1506780460
+-1
+((5666,9216), (20809,11614))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+1506780434
+1506780451
+-1
+((5566,11214), (6365,12013))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+1506780434
+1506780451
+-1
+(0, 900)
+((6466,11214), (7265,12013))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+1506780453
+1506781304
+-1
+((16509,8817), (17308,9616))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+
+
+
+
+
+1506776349
+1506780479
+-1
+((21339,9215), (34084,11613))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+1506780464
+1506780479
+-1
+((33384,8815), (34183,9614))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+1506780464
+1506780479
+-1
+((21239,11213), (22038,12012))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+1506780464
+1506780479
+-1
+(0, 900)
+((22139,11213), (22938,12012))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+
+
+
+
+
+1506776350
+1506780708
+-1
+((19490,2512), (27831,4511))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+1506779991
+1506780010
+-1
+((27131,2112), (27930,2911))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+1506780678
+1506781302
+-1
+((20740,4112), (21539,4911))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+1506780678
+1506781301
+-1
+(0, 900)
+((22315,4112), (23114,4911))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+
+
+
+
+
+1506776483
+1506781312
+((13936,19007), (17935,22006))
+8421504
+2
+14737632
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+1506776484
+1506779837
+((18511,18932), (22510,21931))
+8421504
+2
+14737632
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+1506779121
+1506779179
+((-31922,11251), (-27923,14250))
+8421504
+2
+14737632
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+1506779122
+1506779179
+((-14522,11176), (-10523,14175))
+8421504
+2
+14737632
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+1506779225
+1506779814
+((-6272,12018), (-2273,15017))
+8421504
+2
+14737632
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+1506779225
+1506779815
+((328,11343), (4327,14342))
+8421504
+2
+14737632
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+1506779882
+1506779882
+((7603,11813), (11602,14812))
+8421504
+2
+14737632
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+1506779883
+1506779887
+((21178,11963), (25177,14962))
+8421504
+2
+14737632
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+
+
+FFECDE14-D1E9-430F-AC3A-C69282453D1C
+Ділення з остачею
+Діленнязостачею
+1506769421
+Programmer
+1506780832
+Programmer
+[DisplayPreferences]
+
+[DisplayPreferences\ACD]
+
+[DisplayPreferences\General]
+Adjust to text=Yes
+Snap Grid=No
+Constrain Labels=Yes
+Display Grid=No
+Show Page Delimiter=Yes
+Show Links intersections=Yes
+Activate automatic link routing=Yes
+Grid size=0
+Graphic unit=2
+Window color=255, 255, 255
+Background image=
+Background mode=8
+Watermark image=
+Watermark mode=8
+Show watermark on screen=No
+Gradient mode=0
+Gradient end color=255, 255, 255
+Show Swimlane=Yes
+SwimlaneVert=Yes
+TreeVert=No
+CompDark=0
+
+[DisplayPreferences\Object]
+Show Icon=Yes
+Mode=2
+Trunc Length=40
+Word Length=40
+Word Text=!"#$%&')*+,-./:;=>?@\]^_`|}~
+Shortcut IntIcon=Yes
+Shortcut IntLoct=Yes
+Shortcut IntFullPath=No
+Shortcut IntLastPackage=Yes
+Shortcut ExtIcon=Yes
+Shortcut ExtLoct=No
+Shortcut ExtFullPath=No
+Shortcut ExtLastPackage=Yes
+Shortcut ExtIncludeModl=Yes
+EObjShowStrn=Yes
+ExtendedObject.Comment=No
+ExtendedObject.IconPicture=No
+ExtendedObject.TextStyle=No
+ExtendedObject_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Object Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+ELnkShowStrn=Yes
+ELnkShowName=Yes
+ExtendedLink_SymbolLayout=<Form>[CRLF] <Form Name="Center" >[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Caption="" Mandatory="No" />[CRLF] </Form>[CRLF] <Form Name="Source" >[CRLF] </Form>[CRLF] <Form Name="Destination" >[CRLF] </Form>[CRLF]</Form>
+FileObject.Stereotype=No
+FileObject.DisplayName=Yes
+FileObject.LocationOrName=No
+FileObject.IconPicture=No
+FileObject.TextStyle=No
+FileObject.IconMode=Yes
+FileObject_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <ExclusiveChoice Name="Exclusive Choice" Mandatory="Yes" Display="HorizontalRadios" >[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Location" Attribute="LocationOrName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] </ExclusiveChoice>[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Package.Stereotype=Yes
+Package.Comment=No
+Package.IconPicture=No
+Package.TextStyle=No
+Package_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Display Model Version=Yes
+Activity.Stereotype=Yes
+Activity.Comment=No
+Activity.ParametersDisplay=Yes
+Activity.IconPicture=No
+Activity.TextStyle=No
+Activity.SubSymbols=Yes
+Activity_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+ObjectNode.Stereotype=Yes
+ObjectNode.Comment=No
+ObjectNode.IconPicture=No
+ObjectNode.TextStyle=No
+ObjectNode_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="Name" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="State" Attribute="States" Prefix="[" Suffix="]" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Variable.Stereotype=Yes
+Variable.Comment=No
+Variable.IconPicture=No
+Variable.TextStyle=No
+Variable_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+ActivityParameter.DisplayName=Yes
+ActivityParameter.InstanceDisplay=No
+ActivityParameter.IconPicture=No
+ActivityParameter.TextStyle=No
+ActivityParameter_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Start.Stereotype=Yes
+Start.DisplayName=No
+Start.IconPicture=No
+Start.TextStyle=No
+Start_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+End.Stereotype=Yes
+End.DisplayName=No
+End.IconPicture=No
+End.TextStyle=No
+End_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Decision.Stereotype=Yes
+Decision.DisplayedExpression=No
+Decision.DisplayedExpressionOrName=Yes
+Decision.IconPicture=No
+Decision.TextStyle=No
+Decision_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <ExclusiveChoice Name="Exclusive Choice" Mandatory="Yes" Display="HorizontalRadios" >[CRLF] <StandardAttribute Name="Expression" Attribute="DisplayedExpression" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name if no condition" Attribute="DisplayedExpressionOrName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] </ExclusiveChoice>[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Synchronization.IconPicture=No
+Synchronization.TextStyle=No
+Synchronization_SymbolLayout=
+OrganizationUnit.Stereotype=Yes
+OrganizationUnit.IconPicture=No
+OrganizationUnit.TextStyle=No
+OrganizationUnit_SymbolLayout=
+ActivityFlow.Stereotype=Yes
+ActivityFlow_SymbolLayout=<Form>[CRLF] <Form Name="Source" >[CRLF] <StandardAttribute Name="Condition" Attribute="DisplayedCondition" Prefix="[" Suffix="]" Caption="" Mandatory="Yes" />[CRLF] </Form>[CRLF] <Form Name="Destination" >[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Caption="" Mandatory="No" />[CRLF] </Form>[CRLF] <Form Name="Center" >[CRLF] </Form>[CRLF]</Form>
+
+[DisplayPreferences\Symbol]
+
+[DisplayPreferences\Symbol\FRMEOBJ]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=6000
+Height=2000
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=64
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 255 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FRMELNK]
+CENTERFont=Arial Unicode MS,8,N
+CENTERFont color=0, 0, 0
+Line style=1
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FILO]
+OBJSTRNFont=Arial Unicode MS,8,N
+OBJSTRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LCNMFont=Arial Unicode MS,8,N
+LCNMFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=3600
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\CLDPCKG]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=4000
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 178 178 178
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMACTV]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=6000
+Height=2000
+Brush color=192 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\ACDOBST]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+NAMEFont=Arial Unicode MS,8,N
+NAMEFont color=0, 0, 0
+STATFont=Arial Unicode MS,8,N
+STATFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4000
+Height=3000
+Brush color=224 224 224
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMVAR]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4000
+Height=3000
+Brush color=224 224 224
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=2 0 128 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMATPM]
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=Yes
+Width=800
+Height=800
+Brush color=192 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMSTRT]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=Yes
+Width=1200
+Height=1200
+Brush color=0 128 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMEND]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=Yes
+Width=1500
+Height=1500
+Brush color=0 128 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMDCSN]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DEXPFont=Arial Unicode MS,8,N
+DEXPFont color=0, 0, 0
+DEXNFont=Arial Unicode MS,8,N
+DEXNFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=Yes
+Keep size=No
+Width=6600
+Height=4000
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 0
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMSYNC]
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=2400
+Height=1500
+Brush color=0 128 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=0 128 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMORGN]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=No
+Width=3200
+Height=4800
+Brush color=242 242 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=200 216 248
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMFLOW]
+SOURCEFont=Arial Unicode MS,8,N
+SOURCEFont color=0, 0, 0
+DESTINATIONFont=Arial Unicode MS,8,N
+DESTINATIONFont color=0, 0, 0
+Line style=1
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\USRDEPD]
+OBJXSTRFont=Arial Unicode MS,8,N
+OBJXSTRFont color=0, 0, 0
+Line style=1
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=2 0 128 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\Free Symbol]
+Free TextFont=Arial Unicode MS,8,N
+Free TextFont color=0, 0, 0
+Line style=0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=0
+(8268, 11693)
+((315,354), (433,354))
+1
+15
+
+
+Ми маємо наступні змінні:
+N - кількість хвилин
+K - кількість студентів
+L - кількість яблук
+
+
+1506769999
+1506777278
+((-25011,12884), (-13463,19735))
+4130
+0
+16711680
+16777215
+12632256
+Arial Unicode MS,8,N
+1
+
+
+1506770091
+1506778505
+((-11383,1608), (-10131,9443))
+((-10747,9043),(-10762,2008))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+2
+
+
+
+
+
+
+
+
+
+
+
+1506772476
+1506772476
+((-1187,15458), (63,19043))
+((-487,18643),(-487,16951),(-562,16951),(-562,15858))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506772479
+1506772479
+((-11462,9109), (-3462,14258))
+((-3862,13858),(-10837,13858),(-10837,9509))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+4
+
+
+
+
+
+
+
+
+
+
+
+1506777217
+1506777217
+((2337,8433), (11913,14820))
+((2737,13858),(11287,13858),(11288,8833))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506777321
+1506778064
+((10288,2103), (11538,9233))
+((10913,8833),(10913,2503))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506777360
+1506778064
+((387,-5532), (12663,1829))
+((12263,1429),(12263,-4907),(787,-4907))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+3
+
+
+
+
+
+
+
+
+
+
+
+1506777361
+1506777361
+((-11335,-5532), (1187,3083))
+((-10909,2683),(-10935,-4907),(787,-4907))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506769655
+1506769655
+-1
+((-1087,18044), (112,19243))
+12615680
+12615680
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+12632256
+1
+1
+1
+
+
+
+
+
+1506769657
+1506778005
+-1
+((-17559,8044), (-4119,10043))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+1506769662
+1506780826
+-1
+((-13937,9643), (-13138,10442))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+1506777995
+1506780826
+-1
+((-5944,7644), (-5145,8443))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+
+
+
+
+
+1506770088
+1506771850
+-1
+((-15495,1684), (-6481,3683))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+1506770133
+1506778038
+-1
+((-8688,1284), (-7889,2083))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+
+
+
+
+
+1506772286
+1506772286
+-1
+((-3862,11859), (2737,15858))
+32896
+12648447
+12632256
+STRN 0 Arial Unicode MS,8,N
+DEXP 0 Arial Unicode MS,8,N
+DEXN 0 Arial Unicode MS,8,N
+6
+512
+16777215
+1
+
+
+
+
+
+1506777214
+1506778017
+-1
+((6256,7834), (16322,9833))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+1506777978
+1506777989
+-1
+((6156,9433), (6955,10232))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+1506777978
+1506777989
+-1
+(0, 900)
+((7056,9433), (7855,10232))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+1506778007
+1506778017
+-1
+((15622,7434), (16421,8233))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+
+
+
+
+
+1506777319
+1506778064
+-1
+((6068,1504), (15758,3503))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+1506777323
+1506778061
+-1
+((14838,1105), (15637,1904))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+
+
+
+
+
+1506777357
+1506777357
+-1
+((38,-5657), (1537,-4158))
+12615680
+12615680
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+12632256
+1
+1
+1
+
+
+
+
+
+
+
+BB3BBD6A-6556-4926-8F8A-6D833493A76F
+Ділення націло
+Діленнянаціло
+1506770505
+Programmer
+1506780782
+Programmer
+[DisplayPreferences]
+
+[DisplayPreferences\ACD]
+
+[DisplayPreferences\General]
+Adjust to text=Yes
+Snap Grid=No
+Constrain Labels=Yes
+Display Grid=No
+Show Page Delimiter=Yes
+Show Links intersections=Yes
+Activate automatic link routing=Yes
+Grid size=0
+Graphic unit=2
+Window color=255, 255, 255
+Background image=
+Background mode=8
+Watermark image=
+Watermark mode=8
+Show watermark on screen=No
+Gradient mode=0
+Gradient end color=255, 255, 255
+Show Swimlane=Yes
+SwimlaneVert=Yes
+TreeVert=No
+CompDark=0
+
+[DisplayPreferences\Object]
+Show Icon=Yes
+Mode=2
+Trunc Length=40
+Word Length=40
+Word Text=!"#$%&')*+,-./:;=>?@\]^_`|}~
+Shortcut IntIcon=Yes
+Shortcut IntLoct=Yes
+Shortcut IntFullPath=No
+Shortcut IntLastPackage=Yes
+Shortcut ExtIcon=Yes
+Shortcut ExtLoct=No
+Shortcut ExtFullPath=No
+Shortcut ExtLastPackage=Yes
+Shortcut ExtIncludeModl=Yes
+EObjShowStrn=Yes
+ExtendedObject.Comment=No
+ExtendedObject.IconPicture=No
+ExtendedObject.TextStyle=No
+ExtendedObject_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Object Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+ELnkShowStrn=Yes
+ELnkShowName=Yes
+ExtendedLink_SymbolLayout=<Form>[CRLF] <Form Name="Center" >[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Caption="" Mandatory="No" />[CRLF] </Form>[CRLF] <Form Name="Source" >[CRLF] </Form>[CRLF] <Form Name="Destination" >[CRLF] </Form>[CRLF]</Form>
+FileObject.Stereotype=No
+FileObject.DisplayName=Yes
+FileObject.LocationOrName=No
+FileObject.IconPicture=No
+FileObject.TextStyle=No
+FileObject.IconMode=Yes
+FileObject_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <ExclusiveChoice Name="Exclusive Choice" Mandatory="Yes" Display="HorizontalRadios" >[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Location" Attribute="LocationOrName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] </ExclusiveChoice>[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Package.Stereotype=Yes
+Package.Comment=No
+Package.IconPicture=No
+Package.TextStyle=No
+Package_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Display Model Version=Yes
+Activity.Stereotype=Yes
+Activity.Comment=No
+Activity.ParametersDisplay=Yes
+Activity.IconPicture=No
+Activity.TextStyle=No
+Activity.SubSymbols=Yes
+Activity_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+ObjectNode.Stereotype=Yes
+ObjectNode.Comment=No
+ObjectNode.IconPicture=No
+ObjectNode.TextStyle=No
+ObjectNode_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="Name" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="State" Attribute="States" Prefix="[" Suffix="]" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Variable.Stereotype=Yes
+Variable.Comment=No
+Variable.IconPicture=No
+Variable.TextStyle=No
+Variable_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+ActivityParameter.DisplayName=Yes
+ActivityParameter.InstanceDisplay=No
+ActivityParameter.IconPicture=No
+ActivityParameter.TextStyle=No
+ActivityParameter_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Start.Stereotype=Yes
+Start.DisplayName=No
+Start.IconPicture=No
+Start.TextStyle=No
+Start_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+End.Stereotype=Yes
+End.DisplayName=No
+End.IconPicture=No
+End.TextStyle=No
+End_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Decision.Stereotype=Yes
+Decision.DisplayedExpression=No
+Decision.DisplayedExpressionOrName=Yes
+Decision.IconPicture=No
+Decision.TextStyle=No
+Decision_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <ExclusiveChoice Name="Exclusive Choice" Mandatory="Yes" Display="HorizontalRadios" >[CRLF] <StandardAttribute Name="Expression" Attribute="DisplayedExpression" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name if no condition" Attribute="DisplayedExpressionOrName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] </ExclusiveChoice>[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Synchronization.IconPicture=No
+Synchronization.TextStyle=No
+Synchronization_SymbolLayout=
+OrganizationUnit.Stereotype=Yes
+OrganizationUnit.IconPicture=No
+OrganizationUnit.TextStyle=No
+OrganizationUnit_SymbolLayout=
+ActivityFlow.Stereotype=Yes
+ActivityFlow_SymbolLayout=<Form>[CRLF] <Form Name="Source" >[CRLF] <StandardAttribute Name="Condition" Attribute="DisplayedCondition" Prefix="[" Suffix="]" Caption="" Mandatory="Yes" />[CRLF] </Form>[CRLF] <Form Name="Destination" >[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Caption="" Mandatory="No" />[CRLF] </Form>[CRLF] <Form Name="Center" >[CRLF] </Form>[CRLF]</Form>
+
+[DisplayPreferences\Symbol]
+
+[DisplayPreferences\Symbol\FRMEOBJ]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=6000
+Height=2000
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=64
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 255 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FRMELNK]
+CENTERFont=Arial Unicode MS,8,N
+CENTERFont color=0, 0, 0
+Line style=1
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FILO]
+OBJSTRNFont=Arial Unicode MS,8,N
+OBJSTRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LCNMFont=Arial Unicode MS,8,N
+LCNMFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=3600
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\CLDPCKG]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=4000
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 178 178 178
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMACTV]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=6000
+Height=2000
+Brush color=192 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\ACDOBST]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+NAMEFont=Arial Unicode MS,8,N
+NAMEFont color=0, 0, 0
+STATFont=Arial Unicode MS,8,N
+STATFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4000
+Height=3000
+Brush color=224 224 224
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMVAR]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4000
+Height=3000
+Brush color=224 224 224
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=2 0 128 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMATPM]
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=Yes
+Width=800
+Height=800
+Brush color=192 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMSTRT]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=Yes
+Width=1200
+Height=1200
+Brush color=0 128 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMEND]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=Yes
+Width=1500
+Height=1500
+Brush color=0 128 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMDCSN]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DEXPFont=Arial Unicode MS,8,N
+DEXPFont color=0, 0, 0
+DEXNFont=Arial Unicode MS,8,N
+DEXNFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=Yes
+Keep size=No
+Width=6600
+Height=4000
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 0
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMSYNC]
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=2400
+Height=1500
+Brush color=0 128 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=0 128 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMORGN]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=No
+Width=3200
+Height=4800
+Brush color=242 242 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=200 216 248
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMFLOW]
+SOURCEFont=Arial Unicode MS,8,N
+SOURCEFont color=0, 0, 0
+DESTINATIONFont=Arial Unicode MS,8,N
+DESTINATIONFont color=0, 0, 0
+Line style=1
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\USRDEPD]
+OBJXSTRFont=Arial Unicode MS,8,N
+OBJXSTRFont color=0, 0, 0
+Line style=1
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=2 0 128 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\Free Symbol]
+Free TextFont=Arial Unicode MS,8,N
+Free TextFont color=0, 0, 0
+Line style=0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=0
+(8268, 11693)
+((315,354), (433,354))
+1
+15
+
+
+Список зміннх:
+N - кількість хвилин
+K - кількість студентів
+L - кількість яблук
+
+
+1506770734
+1506779463
+((-23764,14010), (-15089,6312))
+4130
+16711680
+16777215
+12632256
+Arial Unicode MS,8,N
+
+
+1506770767
+1506779303
+((-14246,-8014), (-12992,-1912))
+((-13636,-2312),(-13613,-7614))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506770767
+1506779616
+((-14131,-14238), (-1212,-7845))
+((-13731,-8245),(-13731,-13613),(-1612,-13613))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+4
+
+
+
+
+
+
+
+
+
+
+
+1506779454
+1506779459
+((-14164,-1712), (-4540,7561))
+((-4940,7161),(-13539,7161),(-13539,-1312))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+2
+
+
+
+
+
+
+
+
+
+
+
+1506779511
+1506779514
+((1915,-1862), (11237,8202))
+((2315,7161),(10612,7161),(10612,-1462))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+1
+
+
+
+
+
+
+
+
+
+
+
+1506779572
+1506779572
+((9913,-7787), (11163,-2062))
+((10537,-2462),(10538,-7387))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506779607
+1506779618
+((-2012,-14238), (10939,-7987))
+((10539,-8387),(10539,-13613),(-1612,-13613))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+2
+
+
+
+
+
+
+
+
+
+
+
+1506779667
+1506779682
+((-1937,8761), (-687,13036))
+((-1462,12636),(-1462,10237),(-1312,10237),(-1312,9161))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+3
+
+
+
+
+
+
+
+
+
+
+
+1506770691
+1506779682
+-1
+((-2062,12037), (-863,13236))
+12615680
+12615680
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+12632256
+1
+1
+1
+
+
+
+
+
+1506770694
+1506780772
+-1
+((-19697,-2312), (-7381,-313))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+1506771106
+1506780808
+-1
+((-18297,-714), (-17498,85))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+1506780757
+1506780808
+-1
+((-9206,-2713), (-8407,-1914))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+
+
+
+
+
+1506770694
+1506780782
+-1
+((-18759,-8613), (-8469,-6614))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+1506770801
+1506770814
+-1
+((-9169,-9013), (-8370,-8214))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+1506780778
+1506780782
+-1
+((-18859,-7014), (-18060,-6215))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+
+
+
+
+
+1506770697
+1506779603
+-1
+((-2362,-14363), (-863,-12864))
+12615680
+12615680
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+12632256
+1
+1
+1
+
+
+
+
+
+1506779377
+1506779377
+-1
+((-4940,5162), (2315,9161))
+32896
+12648447
+12632256
+STRN 0 Arial Unicode MS,8,N
+DEXP 0 Arial Unicode MS,8,N
+DEXN 0 Arial Unicode MS,8,N
+6
+512
+16777215
+1
+
+
+
+
+
+1506779472
+1506780748
+-1
+((6142,-2462), (15083,-463))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+1506779514
+1506779526
+-1
+((6042,-863), (6841,-64))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+1506779514
+1506779526
+-1
+(0, 900)
+((6942,-863), (7741,-64))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+1506780742
+1506780748
+-1
+((14383,-2862), (15182,-2063))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+
+
+
+
+
+1506779473
+1506780752
+-1
+((5056,-8387), (16022,-6388))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+1506779688
+1506779699
+-1
+((15322,-8787), (16121,-7988))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+1506780749
+1506780752
+-1
+((4956,-6788), (5755,-5989))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+
+
+
+
+
+
+
+206EA2F1-2400-45C4-B3C3-7BF46D7F689A
+Отримання даних
+Отриманняданих
+1506774868
+Programmer
+1506777161
+Programmer
+[DisplayPreferences]
+
+[DisplayPreferences\ACD]
+
+[DisplayPreferences\General]
+Adjust to text=Yes
+Snap Grid=No
+Constrain Labels=Yes
+Display Grid=No
+Show Page Delimiter=Yes
+Show Links intersections=Yes
+Activate automatic link routing=Yes
+Grid size=0
+Graphic unit=2
+Window color=255, 255, 255
+Background image=
+Background mode=8
+Watermark image=
+Watermark mode=8
+Show watermark on screen=No
+Gradient mode=0
+Gradient end color=255, 255, 255
+Show Swimlane=Yes
+SwimlaneVert=Yes
+TreeVert=No
+CompDark=0
+
+[DisplayPreferences\Object]
+Show Icon=Yes
+Mode=2
+Trunc Length=40
+Word Length=40
+Word Text=!"#$%&')*+,-./:;=>?@\]^_`|}~
+Shortcut IntIcon=Yes
+Shortcut IntLoct=Yes
+Shortcut IntFullPath=No
+Shortcut IntLastPackage=Yes
+Shortcut ExtIcon=Yes
+Shortcut ExtLoct=No
+Shortcut ExtFullPath=No
+Shortcut ExtLastPackage=Yes
+Shortcut ExtIncludeModl=Yes
+EObjShowStrn=Yes
+ExtendedObject.Comment=No
+ExtendedObject.IconPicture=No
+ExtendedObject.TextStyle=No
+ExtendedObject_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Object Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+ELnkShowStrn=Yes
+ELnkShowName=Yes
+ExtendedLink_SymbolLayout=<Form>[CRLF] <Form Name="Center" >[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Caption="" Mandatory="No" />[CRLF] </Form>[CRLF] <Form Name="Source" >[CRLF] </Form>[CRLF] <Form Name="Destination" >[CRLF] </Form>[CRLF]</Form>
+FileObject.Stereotype=No
+FileObject.DisplayName=Yes
+FileObject.LocationOrName=No
+FileObject.IconPicture=No
+FileObject.TextStyle=No
+FileObject.IconMode=Yes
+FileObject_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <ExclusiveChoice Name="Exclusive Choice" Mandatory="Yes" Display="HorizontalRadios" >[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Location" Attribute="LocationOrName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] </ExclusiveChoice>[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Package.Stereotype=Yes
+Package.Comment=No
+Package.IconPicture=No
+Package.TextStyle=No
+Package_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Display Model Version=Yes
+Activity.Stereotype=Yes
+Activity.Comment=No
+Activity.ParametersDisplay=Yes
+Activity.IconPicture=No
+Activity.TextStyle=No
+Activity.SubSymbols=Yes
+Activity_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+ObjectNode.Stereotype=Yes
+ObjectNode.Comment=No
+ObjectNode.IconPicture=No
+ObjectNode.TextStyle=No
+ObjectNode_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="Name" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="State" Attribute="States" Prefix="[" Suffix="]" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Variable.Stereotype=Yes
+Variable.Comment=No
+Variable.IconPicture=No
+Variable.TextStyle=No
+Variable_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+ActivityParameter.DisplayName=Yes
+ActivityParameter.InstanceDisplay=No
+ActivityParameter.IconPicture=No
+ActivityParameter.TextStyle=No
+ActivityParameter_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Start.Stereotype=Yes
+Start.DisplayName=No
+Start.IconPicture=No
+Start.TextStyle=No
+Start_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+End.Stereotype=Yes
+End.DisplayName=No
+End.IconPicture=No
+End.TextStyle=No
+End_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Decision.Stereotype=Yes
+Decision.DisplayedExpression=No
+Decision.DisplayedExpressionOrName=Yes
+Decision.IconPicture=No
+Decision.TextStyle=No
+Decision_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <ExclusiveChoice Name="Exclusive Choice" Mandatory="Yes" Display="HorizontalRadios" >[CRLF] <StandardAttribute Name="Expression" Attribute="DisplayedExpression" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name if no condition" Attribute="DisplayedExpressionOrName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] </ExclusiveChoice>[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Synchronization.IconPicture=No
+Synchronization.TextStyle=No
+Synchronization_SymbolLayout=
+OrganizationUnit.Stereotype=Yes
+OrganizationUnit.IconPicture=No
+OrganizationUnit.TextStyle=No
+OrganizationUnit_SymbolLayout=
+ActivityFlow.Stereotype=Yes
+ActivityFlow_SymbolLayout=<Form>[CRLF] <Form Name="Source" >[CRLF] <StandardAttribute Name="Condition" Attribute="DisplayedCondition" Prefix="[" Suffix="]" Caption="" Mandatory="Yes" />[CRLF] </Form>[CRLF] <Form Name="Destination" >[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Caption="" Mandatory="No" />[CRLF] </Form>[CRLF] <Form Name="Center" >[CRLF] </Form>[CRLF]</Form>
+
+[DisplayPreferences\Symbol]
+
+[DisplayPreferences\Symbol\FRMEOBJ]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=6000
+Height=2000
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=64
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 255 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FRMELNK]
+CENTERFont=Arial Unicode MS,8,N
+CENTERFont color=0, 0, 0
+Line style=1
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FILO]
+OBJSTRNFont=Arial Unicode MS,8,N
+OBJSTRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LCNMFont=Arial Unicode MS,8,N
+LCNMFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=3600
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\CLDPCKG]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=4000
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 178 178 178
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMACTV]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=6000
+Height=2000
+Brush color=192 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\ACDOBST]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+NAMEFont=Arial Unicode MS,8,N
+NAMEFont color=0, 0, 0
+STATFont=Arial Unicode MS,8,N
+STATFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4000
+Height=3000
+Brush color=224 224 224
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMVAR]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4000
+Height=3000
+Brush color=224 224 224
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=2 0 128 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMATPM]
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=Yes
+Width=800
+Height=800
+Brush color=192 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMSTRT]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=Yes
+Width=1200
+Height=1200
+Brush color=0 128 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMEND]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=Yes
+Width=1500
+Height=1500
+Brush color=0 128 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMDCSN]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DEXPFont=Arial Unicode MS,8,N
+DEXPFont color=0, 0, 0
+DEXNFont=Arial Unicode MS,8,N
+DEXNFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=Yes
+Keep size=No
+Width=6600
+Height=4000
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 0
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMSYNC]
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=2400
+Height=1500
+Brush color=0 128 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=0 128 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMORGN]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=No
+Width=3200
+Height=4800
+Brush color=242 242 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=200 216 248
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMFLOW]
+SOURCEFont=Arial Unicode MS,8,N
+SOURCEFont color=0, 0, 0
+DESTINATIONFont=Arial Unicode MS,8,N
+DESTINATIONFont color=0, 0, 0
+Line style=1
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\USRDEPD]
+OBJXSTRFont=Arial Unicode MS,8,N
+OBJXSTRFont color=0, 0, 0
+Line style=1
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=2 0 128 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\Free Symbol]
+Free TextFont=Arial Unicode MS,8,N
+Free TextFont color=0, 0, 0
+Line style=0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=0
+(8268, 11693)
+((315,354), (433,354))
+1
+15
+
+
+1506774887
+1506775135
+((-962,3311), (288,11086))
+((-262,10686),(-262,8287),(-337,8287),(-337,3711))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+3
+
+
+
+
+
+
+
+
+
+
+
+1506774888
+1506774893
+((-8538,-3960), (-3612,5137))
+((-4012,4737),(-7912,4737),(-7913,-3560))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+3
+
+
+
+
+
+
+
+
+
+
+
+1506774888
+1506774906
+((2252,-4486), (8185,4687))
+((2652,4287),(6937,4287),(7691,-4086))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+4
+
+
+
+
+
+
+
+
+
+
+
+1506775078
+1506775299
+((-9645,-10637), (-7363,-3160))
+((-7769,-3560),(-7763,-6437),(-9029,-6437),(-9009,-10237))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+3
+
+
+
+
+
+
+
+
+
+
+
+1506775112
+1506775324
+((-9053,-16961), (363,-9838))
+((-8653,-10238),(-8613,-16336),(-37,-16336))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+2
+
+
+
+
+
+
+
+
+
+
+
+1506775317
+1506775317
+((5864,-10698), (9439,-4236))
+((6264,-4636),(6264,-6967),(8814,-6967),(8814,-10298))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506775318
+1506775318
+((-437,-16961), (9267,-9899))
+((8867,-10299),(8866,-16336),(-37,-16336))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506774876
+1506774876
+-1
+((-862,10087), (337,11286))
+12615680
+12615680
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+12632256
+1
+1
+1
+
+
+
+
+
+1506774877
+1506774885
+-1
+((-4622,3012), (2744,5011))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+1506774881
+1506774881
+-1
+((-13172,-4560), (-2656,-2561))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+1506774882
+1506774906
+-1
+((-81,-4636), (12609,-2637))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+1506775075
+1506777153
+-1
+((-15188,-11437), (-2591,-9039))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+1506777144
+1506777153
+-1
+((-3291,-11837), (-2492,-11038))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+
+
+
+
+
+1506775109
+1506775109
+-1
+((-787,-17086), (712,-15587))
+12615680
+12615680
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+12632256
+1
+1
+1
+
+
+
+
+
+1506775280
+1506777161
+-1
+((1279,-11498), (16349,-9100))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+1506777155
+1506777161
+-1
+((15649,-11898), (16448,-11099))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+
+
+
+
+
+1506777047
+1506777047
+((-22736,5068), (-18737,8067))
+8421504
+2
+14737632
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+1506777047
+1506778156
+((-18011,5068), (-14012,8067))
+8421504
+2
+14737632
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+
+
+5608489F-C9F9-49AC-B101-A4CEE2EFCFAC
+Виведення результату
+Виведеннярезультату
+1506775632
+Programmer
+1506781184
+Programmer
+[DisplayPreferences]
+
+[DisplayPreferences\ACD]
+
+[DisplayPreferences\General]
+Adjust to text=Yes
+Snap Grid=No
+Constrain Labels=Yes
+Display Grid=No
+Show Page Delimiter=Yes
+Show Links intersections=Yes
+Activate automatic link routing=Yes
+Grid size=0
+Graphic unit=2
+Window color=255, 255, 255
+Background image=
+Background mode=8
+Watermark image=
+Watermark mode=8
+Show watermark on screen=No
+Gradient mode=0
+Gradient end color=255, 255, 255
+Show Swimlane=Yes
+SwimlaneVert=Yes
+TreeVert=No
+CompDark=0
+
+[DisplayPreferences\Object]
+Show Icon=Yes
+Mode=2
+Trunc Length=40
+Word Length=40
+Word Text=!"#$%&')*+,-./:;=>?@\]^_`|}~
+Shortcut IntIcon=Yes
+Shortcut IntLoct=Yes
+Shortcut IntFullPath=No
+Shortcut IntLastPackage=Yes
+Shortcut ExtIcon=Yes
+Shortcut ExtLoct=No
+Shortcut ExtFullPath=No
+Shortcut ExtLastPackage=Yes
+Shortcut ExtIncludeModl=Yes
+EObjShowStrn=Yes
+ExtendedObject.Comment=No
+ExtendedObject.IconPicture=No
+ExtendedObject.TextStyle=No
+ExtendedObject_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Object Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+ELnkShowStrn=Yes
+ELnkShowName=Yes
+ExtendedLink_SymbolLayout=<Form>[CRLF] <Form Name="Center" >[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Caption="" Mandatory="No" />[CRLF] </Form>[CRLF] <Form Name="Source" >[CRLF] </Form>[CRLF] <Form Name="Destination" >[CRLF] </Form>[CRLF]</Form>
+FileObject.Stereotype=No
+FileObject.DisplayName=Yes
+FileObject.LocationOrName=No
+FileObject.IconPicture=No
+FileObject.TextStyle=No
+FileObject.IconMode=Yes
+FileObject_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <ExclusiveChoice Name="Exclusive Choice" Mandatory="Yes" Display="HorizontalRadios" >[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Location" Attribute="LocationOrName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] </ExclusiveChoice>[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Package.Stereotype=Yes
+Package.Comment=No
+Package.IconPicture=No
+Package.TextStyle=No
+Package_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Display Model Version=Yes
+Activity.Stereotype=Yes
+Activity.Comment=No
+Activity.ParametersDisplay=Yes
+Activity.IconPicture=No
+Activity.TextStyle=No
+Activity.SubSymbols=Yes
+Activity_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+ObjectNode.Stereotype=Yes
+ObjectNode.Comment=No
+ObjectNode.IconPicture=No
+ObjectNode.TextStyle=No
+ObjectNode_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="Name" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="State" Attribute="States" Prefix="[" Suffix="]" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Variable.Stereotype=Yes
+Variable.Comment=No
+Variable.IconPicture=No
+Variable.TextStyle=No
+Variable_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+ActivityParameter.DisplayName=Yes
+ActivityParameter.InstanceDisplay=No
+ActivityParameter.IconPicture=No
+ActivityParameter.TextStyle=No
+ActivityParameter_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Start.Stereotype=Yes
+Start.DisplayName=No
+Start.IconPicture=No
+Start.TextStyle=No
+Start_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+End.Stereotype=Yes
+End.DisplayName=No
+End.IconPicture=No
+End.TextStyle=No
+End_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Decision.Stereotype=Yes
+Decision.DisplayedExpression=No
+Decision.DisplayedExpressionOrName=Yes
+Decision.IconPicture=No
+Decision.TextStyle=No
+Decision_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <ExclusiveChoice Name="Exclusive Choice" Mandatory="Yes" Display="HorizontalRadios" >[CRLF] <StandardAttribute Name="Expression" Attribute="DisplayedExpression" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name if no condition" Attribute="DisplayedExpressionOrName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] </ExclusiveChoice>[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
+Synchronization.IconPicture=No
+Synchronization.TextStyle=No
+Synchronization_SymbolLayout=
+OrganizationUnit.Stereotype=Yes
+OrganizationUnit.IconPicture=No
+OrganizationUnit.TextStyle=No
+OrganizationUnit_SymbolLayout=
+ActivityFlow.Stereotype=Yes
+ActivityFlow_SymbolLayout=<Form>[CRLF] <Form Name="Source" >[CRLF] <StandardAttribute Name="Condition" Attribute="DisplayedCondition" Prefix="[" Suffix="]" Caption="" Mandatory="Yes" />[CRLF] </Form>[CRLF] <Form Name="Destination" >[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="<<" Suffix=">>" Caption="" Mandatory="No" />[CRLF] </Form>[CRLF] <Form Name="Center" >[CRLF] </Form>[CRLF]</Form>
+
+[DisplayPreferences\Symbol]
+
+[DisplayPreferences\Symbol\FRMEOBJ]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=6000
+Height=2000
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=64
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 255 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FRMELNK]
+CENTERFont=Arial Unicode MS,8,N
+CENTERFont color=0, 0, 0
+Line style=1
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FILO]
+OBJSTRNFont=Arial Unicode MS,8,N
+OBJSTRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LCNMFont=Arial Unicode MS,8,N
+LCNMFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=3600
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\CLDPCKG]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=4000
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 178 178 178
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMACTV]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=6000
+Height=2000
+Brush color=192 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\ACDOBST]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+NAMEFont=Arial Unicode MS,8,N
+NAMEFont color=0, 0, 0
+STATFont=Arial Unicode MS,8,N
+STATFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4000
+Height=3000
+Brush color=224 224 224
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMVAR]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial Unicode MS,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4000
+Height=3000
+Brush color=224 224 224
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=2 0 128 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMATPM]
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=Yes
+Width=800
+Height=800
+Brush color=192 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMSTRT]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=Yes
+Width=1200
+Height=1200
+Brush color=0 128 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMEND]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=Yes
+Width=1500
+Height=1500
+Brush color=0 128 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMDCSN]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DEXPFont=Arial Unicode MS,8,N
+DEXPFont color=0, 0, 0
+DEXNFont=Arial Unicode MS,8,N
+DEXNFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=Yes
+Keep size=No
+Width=6600
+Height=4000
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 0
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMSYNC]
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=2400
+Height=1500
+Brush color=0 128 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=0 128 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMORGN]
+STRNFont=Arial Unicode MS,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial Unicode MS,8,N
+DISPNAMEFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=No
+Width=3200
+Height=4800
+Brush color=242 242 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=512
+Brush gradient color=200 216 248
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\OOMFLOW]
+SOURCEFont=Arial Unicode MS,8,N
+SOURCEFont color=0, 0, 0
+DESTINATIONFont=Arial Unicode MS,8,N
+DESTINATIONFont color=0, 0, 0
+Line style=1
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\USRDEPD]
+OBJXSTRFont=Arial Unicode MS,8,N
+OBJXSTRFont color=0, 0, 0
+Line style=1
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=2 0 128 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\Free Symbol]
+Free TextFont=Arial Unicode MS,8,N
+Free TextFont color=0, 0, 0
+Line style=0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=0
+(8268, 11693)
+((315,354), (433,354))
+1
+15
+
+
+1506775637
+1506781242
+((2662,4412), (3912,9937))
+((3360,9537),(3360,7375),(3287,7375),(3287,4812))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+1
+
+
+
+
+
+
+
+
+
+
+
+1506775637
+1506781213
+((2437,1857), (3687,4213))
+((3062,3813),(3062,2257))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506775637
+1506781088
+(975, 898)
+((-19841,-9082), (-6794,1266))
+((-7769,-137),(-19216,-137),(-19216,-8682))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506775637
+1506781066
+((-13841,-10285), (-7369,263))
+((-7769,-137),(-13216,-137),(-13216,-9885))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+3
+
+
+
+
+
+
+
+
+
+
+
+1506780959
+1506781071
+((2662,-9536), (5817,-2131))
+((3062,-2531),(3062,-8911),(5417,-8911))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+1
+
+
+
+
+
+
+
+
+
+
+
+1506780961
+1506780961
+((13493,-9236), (21837,896))
+((13893,-137),(21212,-137),(21212,-8836))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506781116
+1506781116
+((-19616,-15213), (213,-9282))
+((-19216,-9682),(-19216,-14588),(-187,-14588))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506781117
+1506781117
+((-9041,-14988), (438,-8435))
+((-8641,-8835),(-187,-8835),(-187,-14588))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506781119
+1506781119
+((-587,-15213), (10587,-9511))
+((10187,-9911),(10187,-14588),(-187,-14588))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506781121
+1506781121
+((-587,-15213), (21612,-9436))
+((21212,-9836),(21212,-14588),(-187,-14588))
+1
+1
+16744448
+12632256
+SOURCE 0 Arial Unicode MS,8,N
+DESTINATION 0 Arial Unicode MS,8,N
+
+
+
+
+
+
+
+
+
+
+
+1506775637
+1506781242
+-1
+((2761,8938), (3960,10137))
+12615680
+12615680
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+12632256
+1
+1
+1
+
+
+
+
+
+1506775637
+1506781213
+-1
+((-1596,3813), (8170,5812))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+
+
+
+1506775637
+1506778974
+-1
+((-7769,-2531), (13893,2257))
+0
+32896
+12648447
+12632256
+STRN 0 Arial Unicode MS,8,N
+DEXP 0 Arial Unicode MS,8,N
+DEXN 0 Arial Unicode MS,8,N
+6
+512
+16777215
+1
+1
+
+
+
+
+
+1506775637
+1506781156
+-1
+((-23986,-9682), (-14446,-7683))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+1506781145
+1506781156
+-1
+((-15146,-10082), (-14347,-9283))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+
+
+
+
+
+1506775637
+1506781175
+-1
+((5417,-9911), (14957,-7912))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+1506781166
+1506781175
+-1
+((14257,-10311), (15056,-9512))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+
+
+
+
+
+1506775637
+1506781164
+-1
+((-13412,-9835), (-3870,-7836))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+1506781158
+1506781164
+-1
+((-4570,-10235), (-3771,-9436))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+
+
+
+
+
+1506775637
+1506781184
+-1
+((16442,-9836), (25982,-7837))
+12615680
+16777152
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+LABL 0 Arial Unicode MS,8,N
+6
+65
+16777215
+
+
+1506781176
+1506781184
+-1
+((25282,-10236), (26081,-9437))
+0
+12615680
+16777152
+12632256
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+16777215
+1
+
+
+
+
+
+
+
+
+
+
+1506781113
+1506781113
+-1
+((-937,-15338), (562,-13839))
+12615680
+12615680
+12632256
+STRN 0 Arial Unicode MS,8,N
+DISPNAME 0 Arial Unicode MS,8,N
+6
+65
+12632256
+1
+1
+1
+
+
+
+
+
+
+
+
+
+2DF25C49-A1C3-4397-A0C8-649B59B25586
+Start_1
+Start_1
+1506767937
+Programmer
+1506767937
+Programmer
+
+
+87B59FB1-9AEC-4A76-9D97-3A79C9380DC0
+Start_2
+Start_2
+1506769655
+Programmer
+1506769655
+Programmer
+
+
+9B46BA53-19AF-4079-814B-FC8E5EEC5B58
+Start_3
+Start_3
+1506770691
+Programmer
+1506770691
+Programmer
+
+
+E90DBA84-54EF-41CA-A004-F7CFD5BC22FD
+Start_4
+Start_4
+1506774876
+Programmer
+1506774876
+Programmer
+
+
+2939524F-F134-455C-BF8C-471399B69015
+Start_5
+Start_5
+1506771510
+Programmer
+1506775638
+Programmer
+
+
+
+
+E3D07816-3ADC-41E1-B667-3655DE9D075D
+End_1
+End_1
+1506770697
+Programmer
+1506770697
+Programmer
+
+
+710363DE-B0AE-44FC-9325-B05CE75DA4D6
+End_2
+End_2
+1506774489
+Programmer
+1506774489
+Programmer
+
+
+30A1AB28-3E87-46CD-96AA-2D58FD912CE1
+End_3
+End_3
+1506775109
+Programmer
+1506775109
+Programmer
+
+
+17864F56-C744-426F-8BD2-CE03F2C13C7D
+End_4
+End_4
+1506777357
+Programmer
+1506777357
+Programmer
+
+
+D828BD5B-5FAF-47AA-B108-96FC0FF52331
+End_5
+End_5
+1506781113
+Programmer
+1506781113
+Programmer
+
+
+
+
+44670FE9-405A-47F0-AC92-9BB274924B36
+N
+N
+1506768121
+Programmer
+1506771139
+Programmer
+int
+
+
+67B9902F-D635-4A55-857E-D65B71CBBB33
+Variable_3
+Variable_3
+1506770208
+Programmer
+1506770208
+Programmer
+int
+
+
+EE92A4CC-AD0F-407B-8537-1FD6D7CA964D
+b
+b
+1506774571
+Programmer
+1506775541
+Programmer
+int
+
+
+6E002AA5-98FC-4933-A8F9-614D4EDEE7CF
+a
+a
+1506774571
+Programmer
+1506775529
+Programmer
+int
+
+
+94B9F444-F366-4480-9346-BC69AEA97C52
+K
+K
+1506776483
+Programmer
+1506776519
+Programmer
+int
+
+
+696D1D28-CCE2-482F-B83D-2F9ABEF434BD
+L
+L
+1506776484
+Programmer
+1506776523
+Programmer
+int
+
+
+C6F0CC71-5C97-4200-A2D5-508BAE16A31D
+1 змінна
+1змінна
+1506777047
+Programmer
+1506777153
+Programmer
+int
+
+
+29CAF3ED-78F4-4FF2-A6CC-FD286C639A9A
+2 змінна
+2змінна
+1506777047
+Programmer
+1506777161
+Programmer
+int
+
+
+2FE770F2-9781-4BF2-9756-78EE1A425B64
+Рез 1
+Рез1
+1506779121
+Programmer
+1506781156
+Programmer
+int
+
+
+60EB298C-F4BC-4C63-B7F9-7B1BEA361807
+Рез 2
+Рез2
+1506779122
+Programmer
+1506781164
+Programmer
+int
+
+
+A513F3F6-C2F0-4908-8489-62479BEB7924
+S
+S
+1506775877
+Programmer
+1506779225
+Programmer
+S = 0.5*a*b
+
+int
+
+
+15806052-0ED8-4431-9FE4-E600C4EFA796
+S1
+S1
+1506776008
+Programmer
+1506779225
+Programmer
+int
+
+
+A7DE714C-1FAA-4D05-A6F0-0C503B2A3920
+Рез 4
+Рез4
+1506779882
+Programmer
+1506781184
+Programmer
+int
+
+
+15A55E24-1E14-4B17-B00A-913ABDD59261
+Рез 3
+Рез3
+1506779883
+Programmer
+1506781175
+Programmer
+int
+
+
+
+
+B33D12DA-8F27-472F-B86A-3D1BA257762F
+Java
+Java
+1506767877
+Programmer
+1506767877
+Programmer
+file:///%_OBJLANG%/java5-j2ee14.xol
+0DEDDB90-46E2-45A0-886E-411709DA0DC9
+1811206C-1A4B-11D1-83D9-444553540000
+1302065259
+
+
+
+
+
+BBE16D00-F815-475B-914B-AB68AD0C0AF3
+WSDL for Java
+WSDLJava
+1506767878
+Programmer
+1506767878
+Programmer
+file:///%_XEM%/WSDLJ2EE.xem
+C8F5F7B2-CF9D-4E98-8301-959BB6E86C8A
+186C8AC3-D3DC-11D3-881C-00508B03C75C
+1096028631
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
From e18446119a4357952dac737041737bcd7fc400b1 Mon Sep 17 00:00:00 2001
From: IvanIvchenko <32459492+IvanIvchenko@users.noreply.github.com>
Date: Wed, 1 Nov 2017 09:40:16 +0200
Subject: [PATCH 07/28] =?UTF-8?q?Delete=20=D0=97=D0=B0=D0=B4=D0=B0=D0=BD?=
=?UTF-8?q?=D0=B8=D0=B5=5F1.py?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
...7\320\260\320\264\320\260\320\275\320\270\320\265_1.py" | 7 -------
1 file changed, 7 deletions(-)
delete mode 100644 "km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_1.py"
diff --git "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_1.py" "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_1.py"
deleted file mode 100644
index 513c0367..00000000
--- "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_1.py"
+++ /dev/null
@@ -1,7 +0,0 @@
-a = int(input("Enter first number: "))
-b = int(input("Enter second number: "))
-
-if a <= b:
- print("Answer: ", a)
-else:
- print("Answer: ", b)
From 341686b9f73864bbf9ce4c9be4e4df521dbe3ad4 Mon Sep 17 00:00:00 2001
From: IvanIvchenko <32459492+IvanIvchenko@users.noreply.github.com>
Date: Wed, 1 Nov 2017 09:40:36 +0200
Subject: [PATCH 08/28] =?UTF-8?q?Delete=20=D0=97=D0=B0=D0=B4=D0=B0=D0=BD?=
=?UTF-8?q?=D0=B8=D0=B5=5F10.py?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
...264\320\260\320\275\320\270\320\265_10.py" | 45 -------------------
1 file changed, 45 deletions(-)
delete mode 100644 "km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_10.py"
diff --git "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_10.py" "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_10.py"
deleted file mode 100644
index b4baa027..00000000
--- "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_10.py"
+++ /dev/null
@@ -1,45 +0,0 @@
-while True:
- try:
- a=int(input("Введите номер ряда первой клетки: "))
- if a>8 or a<1:
- print("Значение должнобыть в пределах от 1 до 8")
- else:
- break
- except:
- print("Координата должна быть численным значением")
-while True:
- try:
- b=int(input("Введите номер столбца первой клетки: "))
- if b>8 or b<1:
- print("Значение должнобыть в пределах от 1 до 8")
- else:
- break
- except:
- print("Координата должна быть численным значением")
-while True:
- try:
- c=int(input("Введите номер ряда первой клетки: "))
- if c>8 or c<1:
- print("Значение должнобыть в пределах от 1 до 8")
- else:
- break
- except:
- print("Координата должна быть численным значением")
-while True:
- try:
- d=int(input("Введите номер столбца второй клетки: "))
- if d>8 or d<1:
- print("Значение должнобыть в пределах от 1 до 8")
- else:
- break
- except:
- print("Координата должна быть численным значением")
-
-if (a/b)==(c/d):
- print("YES")
-elif (a+c)==(b+d):
- print("YES")
-elif a==c or b==d:
- print("Yes")
-else:
- print("No")
From 8a8a3163841510d09aa89e1d5be819effc41d40d Mon Sep 17 00:00:00 2001
From: IvanIvchenko <32459492+IvanIvchenko@users.noreply.github.com>
Date: Wed, 1 Nov 2017 09:40:51 +0200
Subject: [PATCH 09/28] =?UTF-8?q?Delete=20=D0=97=D0=B0=D0=B4=D0=B0=D0=BD?=
=?UTF-8?q?=D0=B8=D0=B5=5F11.py?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
...264\320\260\320\275\320\270\320\265_11.py" | 43 -------------------
1 file changed, 43 deletions(-)
delete mode 100644 "km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_11.py"
diff --git "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_11.py" "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_11.py"
deleted file mode 100644
index c08942e7..00000000
--- "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_11.py"
+++ /dev/null
@@ -1,43 +0,0 @@
-while True:
- try:
- a=int(input("Введите номер ряда первой клетки: "))
- if a>8 or a<1:
- print("Значение должнобыть в пределах от 1 до 8")
- else:
- break
- except:
- print("Координата должна быть численным значением")
-while True:
- try:
- b=int(input("Введите номер столбца первой клетки: "))
- if b>8 or b<1:
- print("Значение должнобыть в пределах от 1 до 8")
- else:
- break
- except:
- print("Координата должна быть численным значением")
-while True:
- try:
- c=int(input("Введите номер ряда первой клетки: "))
- if c>8 or c<1:
- print("Значение должнобыть в пределах от 1 до 8")
- else:
- break
- except:
- print("Координата должна быть численным значением")
-while True:
- try:
- d=int(input("Введите номер столбца второй клетки: "))
- if d>8 or d<1:
- print("Значение должнобыть в пределах от 1 до 8")
- else:
- break
- except:
- print("Координата должна быть численным значением")
-
-if abs(a-b)==2 and abs(c-d)==1:
- print("YES")
-elif abs(a-b)==1 and abs(c-d)==2:
- print("YES")
-else:
- print("No")
From 157eee118acd0983ea1525e23de2835d1a52e48a Mon Sep 17 00:00:00 2001
From: IvanIvchenko <32459492+IvanIvchenko@users.noreply.github.com>
Date: Wed, 1 Nov 2017 09:41:10 +0200
Subject: [PATCH 10/28] =?UTF-8?q?Delete=20=D0=97=D0=B0=D0=B4=D0=B0=D0=BD?=
=?UTF-8?q?=D0=B8=D0=B5=5F12.py?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
...20\260\320\264\320\260\320\275\320\270\320\265_12.py" | 9 ---------
1 file changed, 9 deletions(-)
delete mode 100644 "km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_12.py"
diff --git "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_12.py" "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_12.py"
deleted file mode 100644
index 26571f1b..00000000
--- "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_12.py"
+++ /dev/null
@@ -1,9 +0,0 @@
-n = int(input("Введите n: "))
-m = int(input("Введите m: "))
-k = int(input("Введите k: "))
-if k/n-k//n==0 and m>k//n:
- print("YES")
-elif k/m-k//m==0 and n>k//m:
- print("YES")
-else:
- print("NO")
From 5c749c45e5fce3057dfca5084a54f4acd2942796 Mon Sep 17 00:00:00 2001
From: IvanIvchenko <32459492+IvanIvchenko@users.noreply.github.com>
Date: Wed, 1 Nov 2017 09:41:42 +0200
Subject: [PATCH 11/28] =?UTF-8?q?Delete=20=D0=97=D0=B0=D0=B4=D0=B0=D0=BD?=
=?UTF-8?q?=D0=B8=D0=B5=5F2.py?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
...\320\260\320\264\320\260\320\275\320\270\320\265_2.py" | 8 --------
1 file changed, 8 deletions(-)
delete mode 100644 "km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_2.py"
diff --git "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_2.py" "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_2.py"
deleted file mode 100644
index 86650066..00000000
--- "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_2.py"
+++ /dev/null
@@ -1,8 +0,0 @@
-x = float(input("Enter number: "))
-
-if x > 0:
- print("Answer: 1")
-elif x < 0:
- print("Answer: -1")
-else:
- print("Answer: 0")
From 554ba7163c996815848864b1b7211534ce63652a Mon Sep 17 00:00:00 2001
From: IvanIvchenko <32459492+IvanIvchenko@users.noreply.github.com>
Date: Wed, 1 Nov 2017 09:41:52 +0200
Subject: [PATCH 12/28] =?UTF-8?q?Delete=20=D0=97=D0=B0=D0=B4=D0=B0=D0=BD?=
=?UTF-8?q?=D0=B8=D0=B5=5F3.py?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
...27\320\260\320\264\320\260\320\275\320\270\320\265_3.py" | 6 ------
1 file changed, 6 deletions(-)
delete mode 100644 "km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_3.py"
diff --git "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_3.py" "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_3.py"
deleted file mode 100644
index 072a5232..00000000
--- "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_3.py"
+++ /dev/null
@@ -1,6 +0,0 @@
-a = int(input("Enter first number: "))
-b = int(input("Enter second number: "))
-c = int(input("Enter third number: "))
-mas = [a, b, c]
-f = min(mas)
-print("Answer: ", f)
From 258012fce59f0cfe7d3855a09c372f8d16c4eaa0 Mon Sep 17 00:00:00 2001
From: IvanIvchenko <32459492+IvanIvchenko@users.noreply.github.com>
Date: Wed, 1 Nov 2017 09:42:02 +0200
Subject: [PATCH 13/28] =?UTF-8?q?Delete=20=D0=97=D0=B0=D0=B4=D0=B0=D0=BD?=
=?UTF-8?q?=D0=B8=D0=B5=5F4.py?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
...7\320\260\320\264\320\260\320\275\320\270\320\265_4.py" | 7 -------
1 file changed, 7 deletions(-)
delete mode 100644 "km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_4.py"
diff --git "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_4.py" "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_4.py"
deleted file mode 100644
index 8d226aaa..00000000
--- "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_4.py"
+++ /dev/null
@@ -1,7 +0,0 @@
-x = int(input("Введите год: "))
-if x/4-x//4==0 and x/10-x//10!=0 or x/400-x//400==0:
- print("LEAP")
-else:
- print("COMMON")
-
-
From 46b2c8dd8f3270ccc9077d7252ea1c39e8dc2985 Mon Sep 17 00:00:00 2001
From: IvanIvchenko <32459492+IvanIvchenko@users.noreply.github.com>
Date: Wed, 1 Nov 2017 09:42:13 +0200
Subject: [PATCH 14/28] =?UTF-8?q?Delete=20=D0=97=D0=B0=D0=B4=D0=B0=D0=BD?=
=?UTF-8?q?=D0=B8=D0=B5=5F5.py?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
...0\260\320\264\320\260\320\275\320\270\320\265_5.py" | 10 ----------
1 file changed, 10 deletions(-)
delete mode 100644 "km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_5.py"
diff --git "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_5.py" "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_5.py"
deleted file mode 100644
index d540d902..00000000
--- "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_5.py"
+++ /dev/null
@@ -1,10 +0,0 @@
-a = int(input("Enter first number: "))
-b = int(input("Enter second number: "))
-c = int(input("Enter third number: "))
-if a==b==c:
- print("3")
-elif a==b or a==c or b==c:
- print("2")
-else:
- print("0")
-
From db8ff98df5afaecacefe791d1cf5bebea241f929 Mon Sep 17 00:00:00 2001
From: IvanIvchenko <32459492+IvanIvchenko@users.noreply.github.com>
Date: Wed, 1 Nov 2017 09:42:24 +0200
Subject: [PATCH 15/28] =?UTF-8?q?Delete=20=D0=97=D0=B0=D0=B4=D0=B0=D0=BD?=
=?UTF-8?q?=D0=B8=D0=B5=5F6.py?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
...\264\320\260\320\275\320\270\320\265_6.py" | 41 -------------------
1 file changed, 41 deletions(-)
delete mode 100644 "km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_6.py"
diff --git "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_6.py" "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_6.py"
deleted file mode 100644
index 210f1190..00000000
--- "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_6.py"
+++ /dev/null
@@ -1,41 +0,0 @@
-while True:
- try:
- a=int(input("Введите номер ряда первой клетки: "))
- if a>8 or a<1:
- print("Значение должнобыть в пределах от 1 до 8")
- else:
- break
- except:
- print("Координата должна быть численным значением")
-while True:
- try:
- b=int(input("Введите номер столбца первой клетки: "))
- if b>8 or b<1:
- print("Значение должнобыть в пределах от 1 до 8")
- else:
- break
- except:
- print("Координата должна быть численным значением")
-while True:
- try:
- c=int(input("Введите номер ряда первой клетки: "))
- if c>8 or c<1:
- print("Значение должнобыть в пределах от 1 до 8")
- else:
- break
- except:
- print("Координата должна быть численным значением")
-while True:
- try:
- d=int(input("Введите номер столбца второй клетки: "))
- if d>8 or d<1:
- print("Значение должнобыть в пределах от 1 до 8")
- else:
- break
- except:
- print("Координата должна быть численным значением")
-
-if a==c or b==d:
- print("Yes")
-else:
- print("No")
From 805660c5c19367b5df75f7e2d1de23db68030515 Mon Sep 17 00:00:00 2001
From: IvanIvchenko <32459492+IvanIvchenko@users.noreply.github.com>
Date: Wed, 1 Nov 2017 09:42:36 +0200
Subject: [PATCH 16/28] =?UTF-8?q?Delete=20=D0=97=D0=B0=D0=B4=D0=B0=D0=BD?=
=?UTF-8?q?=D0=B8=D0=B5=5F7.py?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
...\264\320\260\320\275\320\270\320\265_7.py" | 45 -------------------
1 file changed, 45 deletions(-)
delete mode 100644 "km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_7.py"
diff --git "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_7.py" "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_7.py"
deleted file mode 100644
index d6723c36..00000000
--- "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_7.py"
+++ /dev/null
@@ -1,45 +0,0 @@
-while True:
- try:
- a=int(input("Введите номер ряда первой клетки: "))
- if a>8 or a<1:
- print("Значение должнобыть в пределах от 1 до 8")
- else:
- break
- except:
- print("Координата должна быть численным значением")
-while True:
- try:
- b=int(input("Введите номер столбца первой клетки: "))
- if b>8 or b<1:
- print("Значение должнобыть в пределах от 1 до 8")
- else:
- break
- except:
- print("Координата должна быть численным значением")
-while True:
- try:
- c=int(input("Введите номер ряда первой клетки: "))
- if c>8 or c<1:
- print("Значение должнобыть в пределах от 1 до 8")
- else:
- break
- except:
- print("Координата должна быть численным значением")
-while True:
- try:
- d=int(input("Введите номер столбца второй клетки: "))
- if d>8 or d<1:
- print("Значение должнобыть в пределах от 1 до 8")
- else:
- break
- except:
- print("Координата должна быть численным значением")
-
-if (a+c)%2==0 and (b+d)%2==0:
- print("YES")
-elif (a+c)%2!=0 and (b+d)%2!=0:
- print("YES")
-else:
- print("NO")
-
-
From ae342e0a12cc212cd66bc1807df387a9cb5d624c Mon Sep 17 00:00:00 2001
From: IvanIvchenko <32459492+IvanIvchenko@users.noreply.github.com>
Date: Wed, 1 Nov 2017 09:42:47 +0200
Subject: [PATCH 17/28] =?UTF-8?q?Delete=20=D0=97=D0=B0=D0=B4=D0=B0=D0=BD?=
=?UTF-8?q?=D0=B8=D0=B5=5F8.py?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
...\264\320\260\320\275\320\270\320\265_8.py" | 43 -------------------
1 file changed, 43 deletions(-)
delete mode 100644 "km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_8.py"
diff --git "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_8.py" "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_8.py"
deleted file mode 100644
index 2fffe80a..00000000
--- "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_8.py"
+++ /dev/null
@@ -1,43 +0,0 @@
-while True:
- try:
- a=int(input("Введите номер ряда первой клетки: "))
- if a>8 or a<1:
- print("Значение должнобыть в пределах от 1 до 8")
- else:
- break
- except:
- print("Координата должна быть численным значением")
-while True:
- try:
- b=int(input("Введите номер столбца первой клетки: "))
- if b>8 or b<1:
- print("Значение должнобыть в пределах от 1 до 8")
- else:
- break
- except:
- print("Координата должна быть численным значением")
-while True:
- try:
- c=int(input("Введите номер ряда первой клетки: "))
- if c>8 or c<1:
- print("Значение должнобыть в пределах от 1 до 8")
- else:
- break
- except:
- print("Координата должна быть численным значением")
-while True:
- try:
- d=int(input("Введите номер столбца второй клетки: "))
- if d>8 or d<1:
- print("Значение должнобыть в пределах от 1 до 8")
- else:
- break
- except:
- print("Координата должна быть численным значением")
-
-if a==c or b==d:
- print("Yes")
-elif c==a+1 or c==a-1 and d==b+1 or d==b+1:
- print("YES")
-else:
- print("No")
From f06b79b65a05ec550bba038afa2faec0e3d3429a Mon Sep 17 00:00:00 2001
From: IvanIvchenko <32459492+IvanIvchenko@users.noreply.github.com>
Date: Wed, 1 Nov 2017 09:42:57 +0200
Subject: [PATCH 18/28] =?UTF-8?q?Delete=20=D0=97=D0=B0=D0=B4=D0=B0=D0=BD?=
=?UTF-8?q?=D0=B8=D0=B5=5F9.py?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
...\264\320\260\320\275\320\270\320\265_9.py" | 43 -------------------
1 file changed, 43 deletions(-)
delete mode 100644 "km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_9.py"
diff --git "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_9.py" "b/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_9.py"
deleted file mode 100644
index 6df6787a..00000000
--- "a/km72/Ivchenko_Ivan/4. \320\232\320\276\320\275\321\201\321\202\321\200\321\203\320\272\321\206\321\226\321\227 \320\272\320\265\321\200\321\203\320\262\320\260\320\275\320\275\321\217/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_9.py"
+++ /dev/null
@@ -1,43 +0,0 @@
-while True:
- try:
- a=int(input("Введите номер ряда первой клетки: "))
- if a>8 or a<1:
- print("Значение должнобыть в пределах от 1 до 8")
- else:
- break
- except:
- print("Координата должна быть численным значением")
-while True:
- try:
- b=int(input("Введите номер столбца первой клетки: "))
- if b>8 or b<1:
- print("Значение должнобыть в пределах от 1 до 8")
- else:
- break
- except:
- print("Координата должна быть численным значением")
-while True:
- try:
- c=int(input("Введите номер ряда первой клетки: "))
- if c>8 or c<1:
- print("Значение должнобыть в пределах от 1 до 8")
- else:
- break
- except:
- print("Координата должна быть численным значением")
-while True:
- try:
- d=int(input("Введите номер столбца второй клетки: "))
- if d>8 or d<1:
- print("Значение должнобыть в пределах от 1 до 8")
- else:
- break
- except:
- print("Координата должна быть численным значением")
-
-if (a/b)==(c/d):
- print("YES")
-elif (a+c)==(b+d):
- print("YES")
-else:
- print("No")
From feb76b612d5e14a144c29aaeaee05f305e0c2c4e Mon Sep 17 00:00:00 2001
From: IvanIvchenko <32459492+IvanIvchenko@users.noreply.github.com>
Date: Wed, 1 Nov 2017 09:43:28 +0200
Subject: [PATCH 19/28] =?UTF-8?q?Delete=20=D0=97=D0=B0=D0=B4=D0=B0=D0=BD?=
=?UTF-8?q?=D0=B8=D0=B5=5F1.py?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
...27\320\260\320\264\320\260\320\275\320\270\320\265_1.py" | 6 ------
1 file changed, 6 deletions(-)
delete mode 100644 "km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_1.py"
diff --git "a/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_1.py" "b/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_1.py"
deleted file mode 100644
index 48a67c94..00000000
--- "a/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_1.py"
+++ /dev/null
@@ -1,6 +0,0 @@
-numb1 = float(input("Введите первое число: "))
-numb2 = float(input("Введите второе число: "))
-numb3 = float(input("Введите третье число: "))
-answer = (numb1 + numb2 + numb3)
-print("Ответ: ", answer)
-input()
From 772537a60af42e20f914c75f3b0980f9ebd784d3 Mon Sep 17 00:00:00 2001
From: IvanIvchenko <32459492+IvanIvchenko@users.noreply.github.com>
Date: Wed, 1 Nov 2017 09:43:44 +0200
Subject: [PATCH 20/28] =?UTF-8?q?Delete=20=D0=97=D0=B0=D0=B4=D0=B0=D0=BD?=
=?UTF-8?q?=D0=B8=D0=B5=5F2.py?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
...227\320\260\320\264\320\260\320\275\320\270\320\265_2.py" | 5 -----
1 file changed, 5 deletions(-)
delete mode 100644 "km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_2.py"
diff --git "a/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_2.py" "b/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_2.py"
deleted file mode 100644
index 4dbdad85..00000000
--- "a/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_2.py"
+++ /dev/null
@@ -1,5 +0,0 @@
-kat1 = float(input("Введите длину первого катета: "))
-kat2 = float(input("Введите длину второго катета: "))
-answer = ((kat1**2 + kat2**2)**(1/2))
-print("Ответ: %.2f"% answer)
-input()
From 368f4e12b29835a2b81ae16557d7745fc427736b Mon Sep 17 00:00:00 2001
From: IvanIvchenko <32459492+IvanIvchenko@users.noreply.github.com>
Date: Wed, 1 Nov 2017 09:43:54 +0200
Subject: [PATCH 21/28] =?UTF-8?q?Delete=20=D0=97=D0=B0=D0=B4=D0=B0=D0=BD?=
=?UTF-8?q?=D0=B8=D0=B5=5F3.py?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
...0\227\320\260\320\264\320\260\320\275\320\270\320\265_3.py" | 3 ---
1 file changed, 3 deletions(-)
delete mode 100644 "km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_3.py"
diff --git "a/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_3.py" "b/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_3.py"
deleted file mode 100644
index 946ac0fd..00000000
--- "a/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_3.py"
+++ /dev/null
@@ -1,3 +0,0 @@
-name = input("Введите имя: ")
-print ('Hi, %s!' % name)
-input()
From e53294965011ae585fdb1e7eaeb48021b8a93abc Mon Sep 17 00:00:00 2001
From: IvanIvchenko <32459492+IvanIvchenko@users.noreply.github.com>
Date: Wed, 1 Nov 2017 09:44:05 +0200
Subject: [PATCH 22/28] =?UTF-8?q?Delete=20=D0=97=D0=B0=D0=B4=D0=B0=D0=BD?=
=?UTF-8?q?=D0=B8=D0=B5=5F4.py?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
...7\320\260\320\264\320\260\320\275\320\270\320\265_4.py" | 7 -------
1 file changed, 7 deletions(-)
delete mode 100644 "km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_4.py"
diff --git "a/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_4.py" "b/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_4.py"
deleted file mode 100644
index 9cede587..00000000
--- "a/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_4.py"
+++ /dev/null
@@ -1,7 +0,0 @@
-n = int(input("Введите колличество студентов: "))
-k = int(input("Введите колличество яблок: "))
-answer1 = (k//n)
-answer2 = (k - answer1*n)
-print("Колличество яблок на студента: %.0f" % answer1)
-print("Колличество оставшихся яблок: %.0f" % answer2)
-input()
From a326d5e73f10df7f9a209dd6dbcc860572aeed20 Mon Sep 17 00:00:00 2001
From: IvanIvchenko <32459492+IvanIvchenko@users.noreply.github.com>
Date: Wed, 1 Nov 2017 09:44:15 +0200
Subject: [PATCH 23/28] =?UTF-8?q?Delete=20=D0=97=D0=B0=D0=B4=D0=B0=D0=BD?=
=?UTF-8?q?=D0=B8=D0=B5=5F5.py?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
...\227\320\260\320\264\320\260\320\275\320\270\320\265_5.py" | 4 ----
1 file changed, 4 deletions(-)
delete mode 100644 "km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_5.py"
diff --git "a/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_5.py" "b/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_5.py"
deleted file mode 100644
index 25b20790..00000000
--- "a/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_5.py"
+++ /dev/null
@@ -1,4 +0,0 @@
-numb = int(input("Введите число: "))
-print("The next number for the number", numb, "is %s."% (numb + 1) )
-print("The previous number for the number", numb, "is %s."% (numb - 1) )
-input()
From be49f1d134ceb69c8c53c1e2e99db7caba2f1912 Mon Sep 17 00:00:00 2001
From: IvanIvchenko <32459492+IvanIvchenko@users.noreply.github.com>
Date: Wed, 1 Nov 2017 09:44:25 +0200
Subject: [PATCH 24/28] =?UTF-8?q?Delete=20=D0=97=D0=B0=D0=B4=D0=B0=D0=BD?=
=?UTF-8?q?=D0=B8=D0=B5=5F6.py?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
...\260\320\264\320\260\320\275\320\270\320\265_6.py" | 11 -----------
1 file changed, 11 deletions(-)
delete mode 100644 "km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_6.py"
diff --git "a/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_6.py" "b/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_6.py"
deleted file mode 100644
index 48900498..00000000
--- "a/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_6.py"
+++ /dev/null
@@ -1,11 +0,0 @@
-ppl1 = int(input("Введите колличество учеников в 1 группе: "))
-ppl2 = int(input("Введите колличество учеников во 2 группе: "))
-ppl3 = int(input("Введите колличество учеников в 3 группе: "))
-answer1 = (ppl1/2+0.5)
-round(answer1)
-answer2 = (ppl2/2+0.5)
-round(answer2)
-answer3 = (ppl3/2+0.5)
-round(answer3)
-print("Ответ: %.0f"% (answer1 + answer2 + answer3))
-input()
From 95cae870a21f68ee3e82ee72b32a1aa6964993ca Mon Sep 17 00:00:00 2001
From: IvanIvchenko <32459492+IvanIvchenko@users.noreply.github.com>
Date: Wed, 1 Nov 2017 09:44:36 +0200
Subject: [PATCH 25/28] =?UTF-8?q?Delete=20=D0=97=D0=B0=D0=B4=D0=B0=D0=BD?=
=?UTF-8?q?=D0=B8=D0=B5=5F7.py?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
...0\320\264\320\260\320\275\320\270\320\265_7.py" | 14 --------------
1 file changed, 14 deletions(-)
delete mode 100644 "km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_7.py"
diff --git "a/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_7.py" "b/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_7.py"
deleted file mode 100644
index f70e414c..00000000
--- "a/km72/Ivchenko_Ivan/\320\227\320\260\320\264\320\260\320\275\320\270\320\265_7.py"
+++ /dev/null
@@ -1,14 +0,0 @@
-n = int(input("Введите колличество минут: "))
-minutes_in_day = 1440
-minutes_in_hour = 60
-
-days = n // minutes_in_day
-n = n - (days * minutes_in_day)
-
-hours = n // minutes_in_hour
-n = n - (hours * minutes_in_hour)
-
-minutes = n
-
-print(hours, ":", minutes)
-input()
From 73e4f4ad3e52f648b19b99e42abdf3a584028bb5 Mon Sep 17 00:00:00 2001
From: IvanIvchenko <32459492+IvanIvchenko@users.noreply.github.com>
Date: Wed, 22 Nov 2017 20:17:34 +0200
Subject: [PATCH 26/28] Add files via upload
---
km72/Ivchenko_Ivan/9/task1.py | 2 ++
km72/Ivchenko_Ivan/9/task2.py | 5 +++++
km72/Ivchenko_Ivan/9/task3.py | 7 +++++++
3 files changed, 14 insertions(+)
create mode 100644 km72/Ivchenko_Ivan/9/task1.py
create mode 100644 km72/Ivchenko_Ivan/9/task2.py
create mode 100644 km72/Ivchenko_Ivan/9/task3.py
diff --git a/km72/Ivchenko_Ivan/9/task1.py b/km72/Ivchenko_Ivan/9/task1.py
new file mode 100644
index 00000000..c18bded3
--- /dev/null
+++ b/km72/Ivchenko_Ivan/9/task1.py
@@ -0,0 +1,2 @@
+def distance(x1, y1, x2, y2):
+ return ((x2-x1)**2 + (y2-y1)**2)**(0.5)
diff --git a/km72/Ivchenko_Ivan/9/task2.py b/km72/Ivchenko_Ivan/9/task2.py
new file mode 100644
index 00000000..583ef72c
--- /dev/null
+++ b/km72/Ivchenko_Ivan/9/task2.py
@@ -0,0 +1,5 @@
+def power(a, n):
+ b = a
+ for i in range(n-1):
+ a = a*b
+ return a
diff --git a/km72/Ivchenko_Ivan/9/task3.py b/km72/Ivchenko_Ivan/9/task3.py
new file mode 100644
index 00000000..4f398f05
--- /dev/null
+++ b/km72/Ivchenko_Ivan/9/task3.py
@@ -0,0 +1,7 @@
+def power(a, n):
+ b = a
+ i = 0
+ if i <= n:
+ a = a*b
+ i = i+1
+ return a
From ef1ed243d2a7a3774d17d93c7e4ba6873e6cadd6 Mon Sep 17 00:00:00 2001
From: IvanIvchenko <32459492+IvanIvchenko@users.noreply.github.com>
Date: Thu, 28 Dec 2017 00:52:21 +0200
Subject: [PATCH 27/28] Add files via upload
---
km72/Ivchenko_Ivan/12/task1.py | 8 ++++++++
km72/Ivchenko_Ivan/12/task2.py | 20 ++++++++++++++++++++
km72/Ivchenko_Ivan/12/task3.py | 13 +++++++++++++
3 files changed, 41 insertions(+)
create mode 100644 km72/Ivchenko_Ivan/12/task1.py
create mode 100644 km72/Ivchenko_Ivan/12/task2.py
create mode 100644 km72/Ivchenko_Ivan/12/task3.py
diff --git a/km72/Ivchenko_Ivan/12/task1.py b/km72/Ivchenko_Ivan/12/task1.py
new file mode 100644
index 00000000..1a86a6e8
--- /dev/null
+++ b/km72/Ivchenko_Ivan/12/task1.py
@@ -0,0 +1,8 @@
+a = input("Введите элементы последовательности через пробел: ").split(" ")
+for el in a:
+ el = int(el)
+def twomax(a):
+ a.remove(max(a))
+ return max(a)
+print("Ответ: ",twomax(a))
+
diff --git a/km72/Ivchenko_Ivan/12/task2.py b/km72/Ivchenko_Ivan/12/task2.py
new file mode 100644
index 00000000..f3375d84
--- /dev/null
+++ b/km72/Ivchenko_Ivan/12/task2.py
@@ -0,0 +1,20 @@
+a = input("Введите элементы последовательности через пробел: ").split(" ")
+while len(a) = 0:
+ a = input("Введите элементы последовательности через пробел: ").split(" ")
+
+b = max(a)
+c = []
+
+def kmax(a):
+ if len(a)>0:
+ if a[0] == b:
+ c.append(a[0])
+ a.pop(0)
+ return kmax(a)
+ else:
+ a.pop(a[0])
+ return kmax(a)
+ else:
+ return len(c)
+
+print("Ответ: ",kmax(a))
diff --git a/km72/Ivchenko_Ivan/12/task3.py b/km72/Ivchenko_Ivan/12/task3.py
new file mode 100644
index 00000000..d776db27
--- /dev/null
+++ b/km72/Ivchenko_Ivan/12/task3.py
@@ -0,0 +1,13 @@
+a = []
+
+def posl(x, cn=0):
+ if cn == len(x):
+ return max(a)
+ y = "".join(x)
+ it = x.count(x[cn])
+ if (it - cn)*str(x[cn]) in y:
+ a.append(it - cn)
+ return posl(x, cn + 1)
+
+x = input("Enter list ").split()
+print(posl(x))
From 6c964e2b7c3c77b1679a1b60c0957f50bf2c6afd Mon Sep 17 00:00:00 2001
From: IvanIvchenko <32459492+IvanIvchenko@users.noreply.github.com>
Date: Thu, 28 Dec 2017 00:54:48 +0200
Subject: [PATCH 28/28] Add files via upload
---
km72/Ivchenko_Ivan/11/task1.py | 19 +++++++++++++++++++
km72/Ivchenko_Ivan/11/task2.py | 29 +++++++++++++++++++++++++++++
km72/Ivchenko_Ivan/11/task3.py | 9 +++++++++
3 files changed, 57 insertions(+)
create mode 100644 km72/Ivchenko_Ivan/11/task1.py
create mode 100644 km72/Ivchenko_Ivan/11/task2.py
create mode 100644 km72/Ivchenko_Ivan/11/task3.py
diff --git a/km72/Ivchenko_Ivan/11/task1.py b/km72/Ivchenko_Ivan/11/task1.py
new file mode 100644
index 00000000..97bdbe8f
--- /dev/null
+++ b/km72/Ivchenko_Ivan/11/task1.py
@@ -0,0 +1,19 @@
+def intZn(c):
+ zn = input(c)
+ if zn.isdigit() == True :
+ if zn == 0:
+ return intZn(c)
+ return int(zn)
+ else:
+ return intZn(c)
+
+n = intZn("Введите n: ")
+k = intZn("Введите k: ")
+
+i = 0
+while n>k:
+ n = n-k
+ i += 1
+
+print("Часное: ", i)
+print("Остаток: ", n)
diff --git a/km72/Ivchenko_Ivan/11/task2.py b/km72/Ivchenko_Ivan/11/task2.py
new file mode 100644
index 00000000..d4509617
--- /dev/null
+++ b/km72/Ivchenko_Ivan/11/task2.py
@@ -0,0 +1,29 @@
+def sp(list):
+ k = input("Введите элемент списка :")
+ print("(Для вывода введите exit)")
+ if k != "exit":
+ k = int(k)
+ list.append(k)
+ return sp(list)
+ return list
+
+list = []
+list = sp(list)
+
+b = list[0]
+def min(a, it):
+ if len(a)>1:
+ if a[0]< a[len(a)-1]:
+ it = a[0]
+ a.pop(0)
+ a.pop(len(a)-1)
+ return min(a, it)
+ else:
+ it = a[len(a)-1]
+ a.pop(0)
+ a.pop(len(a)-1)
+ return min(a, it)
+ else:
+ return a[0]
+
+print(min(list, b))
diff --git a/km72/Ivchenko_Ivan/11/task3.py b/km72/Ivchenko_Ivan/11/task3.py
new file mode 100644
index 00000000..1985a088
--- /dev/null
+++ b/km72/Ivchenko_Ivan/11/task3.py
@@ -0,0 +1,9 @@
+a = input("Введите члены последовательности через пробел: ").split(" ")
+b = []
+def rev(a, b):
+ if len(a) > 0:
+ b.append(a[0])
+ a.pop(0)
+ return reverse(a, b)
+ return b
+print(reverse(a))