From 681ff8147e8eea104cfc67f97431791240145585 Mon Sep 17 00:00:00 2001 From: Kamran Ahmed Date: Mon, 7 Nov 2022 16:22:27 +0400 Subject: [PATCH] Add content to cs/pick-language and cs/datastructures --- components/roadmap/roadmap-page-header.tsx | 2 +- .../101-pick-a-language/100-c-plus-plus.md | 8 +- .../content/101-pick-a-language/101-c.md | 9 +- .../content/101-pick-a-language/102-java.md | 17 +- .../content/101-pick-a-language/103-python.md | 22 +- .../content/101-pick-a-language/104-go.md | 21 +- .../101-pick-a-language/105-c-sharp.md | 10 +- .../content/101-pick-a-language/106-rust.md | 10 +- .../content/101-pick-a-language/readme.md | 20 +- .../content/102-data-structures/100-array.md | 11 +- .../102-data-structures/101-linked-list.md | 15 +- .../content/102-data-structures/102-stack.md | 12 +- .../content/102-data-structures/103-queue.md | 5 +- .../content/102-data-structures/readme.md | 9 +- public/project/javascript.json | 658 +++++++++--------- 15 files changed, 486 insertions(+), 343 deletions(-) diff --git a/components/roadmap/roadmap-page-header.tsx b/components/roadmap/roadmap-page-header.tsx index aef29972b..4ea0d9d23 100644 --- a/components/roadmap/roadmap-page-header.tsx +++ b/components/roadmap/roadmap-page-header.tsx @@ -116,7 +116,7 @@ function RoadmapSubscriber({ roadmapTitle }: { roadmapTitle: string }) { Subscribe - Enter your below to receive updates to this roadmap. + Enter your email below to receive updates to this roadmap.
{ event({ category: 'Subscription', diff --git a/content/roadmaps/103-computer-science/content/101-pick-a-language/100-c-plus-plus.md b/content/roadmaps/103-computer-science/content/101-pick-a-language/100-c-plus-plus.md index 3c757bb0f..55eca784b 100644 --- a/content/roadmaps/103-computer-science/content/101-pick-a-language/100-c-plus-plus.md +++ b/content/roadmaps/103-computer-science/content/101-pick-a-language/100-c-plus-plus.md @@ -1 +1,7 @@ -# C plus plus \ No newline at end of file +# C++ + +C++ is a powerful general-purpose programming language. It can be used to develop operating systems, browsers, games, and so on. C++ supports different ways of programming like procedural, object-oriented, functional, and so on. This makes C++ powerful as well as flexible. + +Free Content +Learn Cpp +C++ Reference diff --git a/content/roadmaps/103-computer-science/content/101-pick-a-language/101-c.md b/content/roadmaps/103-computer-science/content/101-pick-a-language/101-c.md index 325fc6019..805d012ad 100644 --- a/content/roadmaps/103-computer-science/content/101-pick-a-language/101-c.md +++ b/content/roadmaps/103-computer-science/content/101-pick-a-language/101-c.md @@ -1 +1,8 @@ -# C \ No newline at end of file +# C + +C is a general-purpose computer programming language. It was created in the 1970s by Dennis Ritchie, and remains very widely used and influential. By design, C's features cleanly reflect the capabilities of the targeted CPUs. + +Learn C - W3Schools +Learn C - Tutorials Point +C Programming Tutorial for Beginners +Learn C Programming with Dr. Chuck diff --git a/content/roadmaps/103-computer-science/content/101-pick-a-language/102-java.md b/content/roadmaps/103-computer-science/content/101-pick-a-language/102-java.md index 526e9b119..bf4c6750a 100644 --- a/content/roadmaps/103-computer-science/content/101-pick-a-language/102-java.md +++ b/content/roadmaps/103-computer-science/content/101-pick-a-language/102-java.md @@ -1 +1,16 @@ -# Java \ No newline at end of file + + +# Java + +Java is general-purpose language, primarily used for Internet-based applications. +It was created in 1995 by James Gosling at Sun Microsystems and is one of the most popular options for backend developers. + +Free Content +Java Website +Codeacademy - Free Course +W3 Schools Tutorials +Java Crash Course diff --git a/content/roadmaps/103-computer-science/content/101-pick-a-language/103-python.md b/content/roadmaps/103-computer-science/content/101-pick-a-language/103-python.md index 92106a828..47179847a 100644 --- a/content/roadmaps/103-computer-science/content/101-pick-a-language/103-python.md +++ b/content/roadmaps/103-computer-science/content/101-pick-a-language/103-python.md @@ -1 +1,21 @@ -# Python \ No newline at end of file + + +# Python + +Python is a well known programming language which is both a strongly typed and a dynamically typed language. Being an interpreted language, code is executed as soon as it is written and the Python syntax allows for writing code in functional, procedural or object-oriented programmatic ways. + +Free Content +Python Website +Python Getting Started +Automate the Boring Stuff +FreeCodeCamp.org - How to Learn Python ? +Python principles - Python basics +W3Schools - Python Tutorial +Python Crash Course +Codecademy - Learn Python 2 +An Introduction to Python for Non-Programmers +Getting Started with Python and InfluxDB diff --git a/content/roadmaps/103-computer-science/content/101-pick-a-language/104-go.md b/content/roadmaps/103-computer-science/content/101-pick-a-language/104-go.md index 59448b216..f0e136a68 100644 --- a/content/roadmaps/103-computer-science/content/101-pick-a-language/104-go.md +++ b/content/roadmaps/103-computer-science/content/101-pick-a-language/104-go.md @@ -1 +1,20 @@ -# Go \ No newline at end of file + + + +# Go + +Go is an open source programming language supported by Google. Go can be used to write cloud services, CLI tools, used for API development, and much more. + +Free Content +A Tour of Go – Go Basics +Go Reference Documentation +Go by Example - annotated example programs +Learn Go | Boot.dev +Learn Go | Codecademy +W3Schools Go Tutorial +Making a RESTful JSON API in Go +Go, the Programming Language of the Cloud diff --git a/content/roadmaps/103-computer-science/content/101-pick-a-language/105-c-sharp.md b/content/roadmaps/103-computer-science/content/101-pick-a-language/105-c-sharp.md index 9fe2b6ee7..631df31ca 100644 --- a/content/roadmaps/103-computer-science/content/101-pick-a-language/105-c-sharp.md +++ b/content/roadmaps/103-computer-science/content/101-pick-a-language/105-c-sharp.md @@ -1 +1,9 @@ -# C sharp \ No newline at end of file +# C# + +C# (pronounced "C sharp") is a general purpose programming language made by Microsoft. It is used to perform different tasks and can be used to create web apps, games, mobile apps, etc. + +Free Content +C# Learning Path +C# on W3 schools +Introduction to C# +C# tutorials diff --git a/content/roadmaps/103-computer-science/content/101-pick-a-language/106-rust.md b/content/roadmaps/103-computer-science/content/101-pick-a-language/106-rust.md index 8fc1f9db2..0e45b54bc 100644 --- a/content/roadmaps/103-computer-science/content/101-pick-a-language/106-rust.md +++ b/content/roadmaps/103-computer-science/content/101-pick-a-language/106-rust.md @@ -1 +1,9 @@ -# Rust \ No newline at end of file +# Rust + +Rust is a modern systems programming language focusing on safety, speed, and concurrency. It accomplishes these goals by being memory safe without using garbage collection. + +Free Content +The Rust Programming Language - online book +Rust by Example - collection of runnable examples +Rust vs. Go: Why They’re Better Together +Rust by the Numbers: The Rust Programming Language in 2021 diff --git a/content/roadmaps/103-computer-science/content/101-pick-a-language/readme.md b/content/roadmaps/103-computer-science/content/101-pick-a-language/readme.md index 3bc24167b..b935c679f 100644 --- a/content/roadmaps/103-computer-science/content/101-pick-a-language/readme.md +++ b/content/roadmaps/103-computer-science/content/101-pick-a-language/readme.md @@ -1 +1,19 @@ -# Pick a language \ No newline at end of file +# Pick a Language + +You need to pick a programming language to learn the Computer Science concepts. My personal recommendation would be to pick C++ or C and the reason for that is: + +* They allow you to deal with pointers and memory allocation/deallocation, so you feel the data structures and algorithms in your bones. In higher level languages like Python or Java, these are hidden from you. In day to day work, that's terrific, but when you're learning how these low-level data structures are built, it's great to feel close to the metal. +* You will be able to find a lot of resources for the topics listed in this roadmap using C or C++. You can find a lot of resources for Python and Java, but they are not as abundant as C++ and C. + +Given below is the list of resources; pick ones relevant to the language of your choice. + +Free Content +Learn C++ - W3Schools +Learn C++ - Tutorials Point +C++ Programming Course - Beginner to Advanced +C++ Tutorial for Beginners - Full Course + +Learn C - W3Schools +Learn C - Tutorials Point +C Programming Tutorial for Beginners +Learn C Programming with Dr. Chuck diff --git a/content/roadmaps/103-computer-science/content/102-data-structures/100-array.md b/content/roadmaps/103-computer-science/content/102-data-structures/100-array.md index 0a0e30ae6..52bbf1619 100644 --- a/content/roadmaps/103-computer-science/content/102-data-structures/100-array.md +++ b/content/roadmaps/103-computer-science/content/102-data-structures/100-array.md @@ -1 +1,10 @@ -# Array \ No newline at end of file +# Array + +Arrays store elements in contiguous memory locations, resulting in easily calculable addresses for the elements stored and this allows faster access to an element at a specific index. + +Free Content +Array Data Structure | Illustrated Data Structures +Array Data Structure - Coursera +UC Berkeley CS61B - Linear and Multi-Dim Arrays (Start watching from 15m 32s) +Dynamic Arrays - Coursera +Jagged Arrays diff --git a/content/roadmaps/103-computer-science/content/102-data-structures/101-linked-list.md b/content/roadmaps/103-computer-science/content/102-data-structures/101-linked-list.md index f91856f34..9c59d8dab 100644 --- a/content/roadmaps/103-computer-science/content/102-data-structures/101-linked-list.md +++ b/content/roadmaps/103-computer-science/content/102-data-structures/101-linked-list.md @@ -1 +1,14 @@ -# Linked list \ No newline at end of file +# Linked Lists + +Arrays store elements in contiguous memory locations, resulting in easily calculable addresses for the elements stored and this allows faster access to an element at a specific index. Linked lists are less rigid in their storage structure and elements are usually not stored in contiguous locations, hence they need to be stored with additional tags giving a reference to the next element. This difference in the data storage scheme decides which data structure would be more suitable for a given situation. + +Free Content +Linked List Data Structure | Illustrated Data Structures +Linked Lists in 4 minutes +Singly Linked Lists +CS 61B Lecture 7: Linked Lists I +CS 61B Lecture 7: Linked Lists II +Core: Linked Lists vs Arrays +In the Real World: Linked Lists vs Arrays +Why you should avoid Linked Lists? +Doubly Linked Lists diff --git a/content/roadmaps/103-computer-science/content/102-data-structures/102-stack.md b/content/roadmaps/103-computer-science/content/102-data-structures/102-stack.md index 463aa833c..d790ac09e 100644 --- a/content/roadmaps/103-computer-science/content/102-data-structures/102-stack.md +++ b/content/roadmaps/103-computer-science/content/102-data-structures/102-stack.md @@ -1 +1,11 @@ -# Stack \ No newline at end of file +# Stack + +Stack is a linear collection of items where items are inserted and removed in a particular order. Stack is also called a LIFO Data Structure because it follows the "Last In First Out" principle i.e. the item that is inserted in the last is the one that is taken out first. + +Free Content +Stack Data Structure | Illustrated Data Structures +Stack in 3 minutes +Stack Data Structure + + + diff --git a/content/roadmaps/103-computer-science/content/102-data-structures/103-queue.md b/content/roadmaps/103-computer-science/content/102-data-structures/103-queue.md index b3125c93f..788c8b390 100644 --- a/content/roadmaps/103-computer-science/content/102-data-structures/103-queue.md +++ b/content/roadmaps/103-computer-science/content/102-data-structures/103-queue.md @@ -1 +1,4 @@ -# Queue \ No newline at end of file +# Queue + +Queue is a linear collection of items where items are inserted and removed in a particular order. The queue is also called a FIFO Data Structure because it follows the "First In, First Out" principle i.e., the item that is inserted in the first is the one that is taken out first. + diff --git a/content/roadmaps/103-computer-science/content/102-data-structures/readme.md b/content/roadmaps/103-computer-science/content/102-data-structures/readme.md index 3affd1f57..c0cba14ad 100644 --- a/content/roadmaps/103-computer-science/content/102-data-structures/readme.md +++ b/content/roadmaps/103-computer-science/content/102-data-structures/readme.md @@ -1 +1,8 @@ -# Data structures \ No newline at end of file +# Data Structures + +As the name indicates itself, a **Data Structure** is a way of organizing the data in the **memory** so that it can be used efficiently. Some common data structures are array, linked list, stack, hashtable, queue, tree, heap, and graph. + +Free Content +What are Data Structures? + Data Structures and Algorithms +Data Structures Illustrated diff --git a/public/project/javascript.json b/public/project/javascript.json index aa135f2ce..a077cf206 100644 --- a/public/project/javascript.json +++ b/public/project/javascript.json @@ -3,7 +3,100 @@ "controls": { "control": [ { - "ID": "10196", + "ID": "10314", + "typeID": "Arrow", + "zOrder": "0", + "w": "1", + "h": "142", + "measuredW": "150", + "measuredH": "100", + "x": "946", + "y": "2033", + "properties": { + "color": "2848996", + "curvature": "-1", + "direction": "top", + "leftArrow": "false", + "rightArrow": "false", + "stroke": "dotted", + "p0": { + "x": 1, + "y": 142 + }, + "p1": { + "x": 0.43463170073274193, + "y": 0.008098727342846125 + }, + "p2": { + "x": 1, + "y": 0 + } + } + }, + { + "ID": "10315", + "typeID": "Arrow", + "zOrder": "1", + "w": "137", + "h": "66", + "measuredW": "150", + "measuredH": "100", + "x": "357", + "y": "2434", + "properties": { + "color": "2848996", + "curvature": "-1", + "direction": "top", + "leftArrow": "false", + "rightArrow": "false", + "stroke": "dotted", + "p0": { + "x": 137, + "y": 0 + }, + "p1": { + "x": 0.4707150975159109, + "y": -0.06528731437784985 + }, + "p2": { + "x": -0.036745982530419496, + "y": 65.96108274350672 + } + } + }, + { + "ID": "10316", + "typeID": "Arrow", + "zOrder": "2", + "w": "130", + "h": "28", + "measuredW": "150", + "measuredH": "100", + "x": "355", + "y": "2416", + "properties": { + "color": "2848996", + "curvature": "-1", + "direction": "top", + "leftArrow": "false", + "rightArrow": "false", + "stroke": "dotted", + "p0": { + "x": 129.88523924557296, + "y": -0.10193612067541835 + }, + "p1": { + "x": 0.4346317007327419, + "y": 0.008098727342846149 + }, + "p2": { + "x": -0.4733552249705326, + "y": 27.9190701673856 + } + } + }, + { + "ID": "10317", "typeID": "Arrow", "zOrder": "3", "w": "1", @@ -34,7 +127,7 @@ } }, { - "ID": "10197", + "ID": "10318", "typeID": "Arrow", "zOrder": "4", "w": "1", @@ -64,7 +157,7 @@ } }, { - "ID": "10198", + "ID": "10319", "typeID": "Arrow", "zOrder": "5", "w": "133", @@ -95,7 +188,7 @@ } }, { - "ID": "10199", + "ID": "10320", "typeID": "Arrow", "zOrder": "6", "w": "124", @@ -126,7 +219,7 @@ } }, { - "ID": "10200", + "ID": "10321", "typeID": "Arrow", "zOrder": "7", "w": "160", @@ -157,7 +250,7 @@ } }, { - "ID": "10201", + "ID": "10322", "typeID": "Arrow", "zOrder": "8", "w": "112", @@ -188,7 +281,7 @@ } }, { - "ID": "10202", + "ID": "10323", "typeID": "Arrow", "zOrder": "9", "w": "102", @@ -219,7 +312,7 @@ } }, { - "ID": "10203", + "ID": "10324", "typeID": "Arrow", "zOrder": "10", "w": "145", @@ -250,7 +343,7 @@ } }, { - "ID": "10204", + "ID": "10325", "typeID": "Arrow", "zOrder": "11", "w": "143", @@ -281,7 +374,7 @@ } }, { - "ID": "10205", + "ID": "10326", "typeID": "Arrow", "zOrder": "12", "w": "1", @@ -311,7 +404,7 @@ } }, { - "ID": "10206", + "ID": "10327", "typeID": "Arrow", "zOrder": "13", "w": "336", @@ -341,7 +434,7 @@ } }, { - "ID": "10207", + "ID": "10328", "typeID": "Arrow", "zOrder": "14", "w": "328", @@ -371,7 +464,7 @@ } }, { - "ID": "10208", + "ID": "10329", "typeID": "Arrow", "zOrder": "15", "w": "78", @@ -402,7 +495,7 @@ } }, { - "ID": "10209", + "ID": "10330", "typeID": "Arrow", "zOrder": "16", "w": "88", @@ -433,7 +526,7 @@ } }, { - "ID": "10210", + "ID": "10331", "typeID": "Arrow", "zOrder": "17", "w": "112", @@ -464,7 +557,7 @@ } }, { - "ID": "10211", + "ID": "10332", "typeID": "Arrow", "zOrder": "18", "w": "102", @@ -495,7 +588,7 @@ } }, { - "ID": "10212", + "ID": "10333", "typeID": "Arrow", "zOrder": "19", "w": "145", @@ -526,7 +619,7 @@ } }, { - "ID": "10213", + "ID": "10334", "typeID": "Arrow", "zOrder": "20", "w": "143", @@ -557,7 +650,7 @@ } }, { - "ID": "10214", + "ID": "10335", "typeID": "Arrow", "zOrder": "21", "w": "1", @@ -588,7 +681,7 @@ } }, { - "ID": "10215", + "ID": "10336", "typeID": "__group__", "zOrder": "22", "measuredW": "150", @@ -683,7 +776,7 @@ } }, { - "ID": "10216", + "ID": "10337", "typeID": "Arrow", "zOrder": "23", "w": "114", @@ -713,7 +806,7 @@ } }, { - "ID": "10217", + "ID": "10338", "typeID": "__group__", "zOrder": "24", "measuredW": "211", @@ -999,7 +1092,7 @@ } }, { - "ID": "10218", + "ID": "10339", "typeID": "Arrow", "zOrder": "25", "w": "86", @@ -1030,7 +1123,7 @@ } }, { - "ID": "10219", + "ID": "10340", "typeID": "Arrow", "zOrder": "26", "w": "105", @@ -1061,7 +1154,7 @@ } }, { - "ID": "10220", + "ID": "10341", "typeID": "Arrow", "zOrder": "27", "w": "89", @@ -1092,7 +1185,7 @@ } }, { - "ID": "10221", + "ID": "10342", "typeID": "Arrow", "zOrder": "28", "w": "87", @@ -1123,7 +1216,7 @@ } }, { - "ID": "10222", + "ID": "10343", "typeID": "Arrow", "zOrder": "29", "w": "88", @@ -1154,38 +1247,7 @@ } }, { - "ID": "10223", - "typeID": "Arrow", - "zOrder": "0", - "w": "1", - "h": "142", - "measuredW": "150", - "measuredH": "100", - "x": "946", - "y": "2033", - "properties": { - "color": "2848996", - "curvature": "-1", - "direction": "top", - "leftArrow": "false", - "rightArrow": "false", - "stroke": "dotted", - "p0": { - "x": 1, - "y": 142 - }, - "p1": { - "x": 0.43463170073274193, - "y": 0.008098727342846125 - }, - "p2": { - "x": 1, - "y": 0 - } - } - }, - { - "ID": "10224", + "ID": "10344", "typeID": "Arrow", "zOrder": "30", "w": "159", @@ -1215,7 +1277,7 @@ } }, { - "ID": "10225", + "ID": "10345", "typeID": "Arrow", "zOrder": "31", "w": "27", @@ -1245,7 +1307,7 @@ } }, { - "ID": "10226", + "ID": "10346", "typeID": "Arrow", "zOrder": "32", "w": "122", @@ -1276,7 +1338,7 @@ } }, { - "ID": "10227", + "ID": "10347", "typeID": "Arrow", "zOrder": "33", "w": "108", @@ -1307,7 +1369,7 @@ } }, { - "ID": "10228", + "ID": "10348", "typeID": "Arrow", "zOrder": "34", "w": "93", @@ -1338,7 +1400,7 @@ } }, { - "ID": "10229", + "ID": "10349", "typeID": "Arrow", "zOrder": "35", "w": "88", @@ -1369,7 +1431,7 @@ } }, { - "ID": "10230", + "ID": "10350", "typeID": "Arrow", "zOrder": "36", "w": "55", @@ -1400,7 +1462,7 @@ } }, { - "ID": "10231", + "ID": "10351", "typeID": "Arrow", "zOrder": "37", "w": "62", @@ -1431,7 +1493,7 @@ } }, { - "ID": "10232", + "ID": "10352", "typeID": "Arrow", "zOrder": "38", "w": "59", @@ -1462,7 +1524,7 @@ } }, { - "ID": "10233", + "ID": "10353", "typeID": "Arrow", "zOrder": "39", "w": "89", @@ -1493,7 +1555,7 @@ } }, { - "ID": "10234", + "ID": "10354", "typeID": "Arrow", "zOrder": "40", "w": "80", @@ -1524,7 +1586,7 @@ } }, { - "ID": "10235", + "ID": "10355", "typeID": "Arrow", "zOrder": "41", "w": "88", @@ -1555,7 +1617,7 @@ } }, { - "ID": "10236", + "ID": "10356", "typeID": "Arrow", "zOrder": "42", "w": "130", @@ -1586,7 +1648,7 @@ } }, { - "ID": "10237", + "ID": "10357", "typeID": "Arrow", "zOrder": "43", "w": "1", @@ -1617,7 +1679,7 @@ } }, { - "ID": "10238", + "ID": "10358", "typeID": "Arrow", "zOrder": "44", "w": "188", @@ -1647,7 +1709,7 @@ } }, { - "ID": "10239", + "ID": "10359", "typeID": "Arrow", "zOrder": "45", "w": "1", @@ -1678,7 +1740,7 @@ } }, { - "ID": "10240", + "ID": "10360", "typeID": "Arrow", "zOrder": "46", "w": "161", @@ -1708,7 +1770,7 @@ } }, { - "ID": "10241", + "ID": "10361", "typeID": "Arrow", "zOrder": "47", "w": "76", @@ -1739,7 +1801,7 @@ } }, { - "ID": "10242", + "ID": "10362", "typeID": "Arrow", "zOrder": "48", "w": "68", @@ -1770,7 +1832,7 @@ } }, { - "ID": "10243", + "ID": "10363", "typeID": "Arrow", "zOrder": "49", "w": "76", @@ -1801,7 +1863,7 @@ } }, { - "ID": "10244", + "ID": "10364", "typeID": "Arrow", "zOrder": "50", "w": "130", @@ -1832,7 +1894,7 @@ } }, { - "ID": "10245", + "ID": "10365", "typeID": "Arrow", "zOrder": "51", "w": "1", @@ -1863,7 +1925,7 @@ } }, { - "ID": "10246", + "ID": "10366", "typeID": "Arrow", "zOrder": "52", "w": "1", @@ -1894,7 +1956,7 @@ } }, { - "ID": "10247", + "ID": "10367", "typeID": "__group__", "zOrder": "53", "measuredW": "111", @@ -1990,7 +2052,7 @@ } }, { - "ID": "10248", + "ID": "10368", "typeID": "__group__", "zOrder": "54", "measuredW": "115", @@ -2086,7 +2148,7 @@ } }, { - "ID": "10249", + "ID": "10369", "typeID": "Arrow", "zOrder": "55", "w": "130", @@ -2117,7 +2179,7 @@ } }, { - "ID": "10250", + "ID": "10370", "typeID": "Arrow", "zOrder": "56", "w": "3", @@ -2147,7 +2209,7 @@ } }, { - "ID": "10251", + "ID": "10371", "typeID": "Arrow", "zOrder": "57", "w": "128", @@ -2178,7 +2240,7 @@ } }, { - "ID": "10252", + "ID": "10372", "typeID": "Arrow", "zOrder": "58", "w": "115", @@ -2209,7 +2271,7 @@ } }, { - "ID": "10253", + "ID": "10373", "typeID": "Arrow", "zOrder": "59", "w": "105", @@ -2240,7 +2302,7 @@ } }, { - "ID": "10254", + "ID": "10374", "typeID": "Arrow", "zOrder": "60", "w": "115", @@ -2271,7 +2333,7 @@ } }, { - "ID": "10255", + "ID": "10375", "typeID": "Arrow", "zOrder": "61", "w": "110", @@ -2302,7 +2364,7 @@ } }, { - "ID": "10256", + "ID": "10376", "typeID": "Arrow", "zOrder": "62", "w": "116", @@ -2333,7 +2395,7 @@ } }, { - "ID": "10257", + "ID": "10377", "typeID": "Arrow", "zOrder": "63", "w": "102", @@ -2364,7 +2426,7 @@ } }, { - "ID": "10258", + "ID": "10378", "typeID": "Arrow", "zOrder": "64", "w": "120", @@ -2394,7 +2456,7 @@ } }, { - "ID": "10259", + "ID": "10379", "typeID": "Arrow", "zOrder": "65", "w": "97", @@ -2425,7 +2487,7 @@ } }, { - "ID": "10260", + "ID": "10380", "typeID": "Arrow", "zOrder": "66", "w": "101", @@ -2456,7 +2518,7 @@ } }, { - "ID": "10261", + "ID": "10381", "typeID": "Arrow", "zOrder": "67", "w": "92", @@ -2487,7 +2549,7 @@ } }, { - "ID": "10262", + "ID": "10382", "typeID": "Arrow", "zOrder": "68", "w": "101", @@ -2518,7 +2580,7 @@ } }, { - "ID": "10263", + "ID": "10383", "typeID": "Arrow", "zOrder": "69", "w": "1", @@ -2549,7 +2611,7 @@ } }, { - "ID": "10264", + "ID": "10384", "typeID": "Arrow", "zOrder": "70", "w": "118", @@ -2580,7 +2642,7 @@ } }, { - "ID": "10265", + "ID": "10385", "typeID": "Arrow", "zOrder": "71", "w": "134", @@ -2611,7 +2673,7 @@ } }, { - "ID": "10266", + "ID": "10386", "typeID": "Arrow", "zOrder": "72", "w": "197", @@ -2641,7 +2703,7 @@ } }, { - "ID": "10267", + "ID": "10387", "typeID": "Arrow", "zOrder": "73", "w": "110", @@ -2671,7 +2733,7 @@ } }, { - "ID": "10268", + "ID": "10388", "typeID": "Arrow", "zOrder": "74", "w": "1", @@ -2702,7 +2764,7 @@ } }, { - "ID": "10269", + "ID": "10389", "typeID": "Arrow", "zOrder": "75", "w": "164", @@ -2733,7 +2795,7 @@ } }, { - "ID": "10270", + "ID": "10390", "typeID": "Arrow", "zOrder": "76", "w": "93", @@ -2764,7 +2826,7 @@ } }, { - "ID": "10271", + "ID": "10391", "typeID": "Arrow", "zOrder": "77", "w": "98", @@ -2795,7 +2857,7 @@ } }, { - "ID": "10272", + "ID": "10392", "typeID": "__group__", "zOrder": "78", "measuredW": "245", @@ -2891,7 +2953,7 @@ } }, { - "ID": "10273", + "ID": "10393", "typeID": "Arrow", "zOrder": "79", "w": "114", @@ -2922,7 +2984,7 @@ } }, { - "ID": "10274", + "ID": "10394", "typeID": "Arrow", "zOrder": "80", "w": "1", @@ -2953,7 +3015,7 @@ } }, { - "ID": "10275", + "ID": "10395", "typeID": "Arrow", "zOrder": "81", "w": "110", @@ -2984,7 +3046,7 @@ } }, { - "ID": "10276", + "ID": "10396", "typeID": "Arrow", "zOrder": "82", "w": "95", @@ -3015,7 +3077,7 @@ } }, { - "ID": "10277", + "ID": "10397", "typeID": "Arrow", "zOrder": "83", "w": "108", @@ -3046,7 +3108,7 @@ } }, { - "ID": "10278", + "ID": "10398", "typeID": "Arrow", "zOrder": "84", "w": "105", @@ -3077,7 +3139,7 @@ } }, { - "ID": "10279", + "ID": "10399", "typeID": "Arrow", "zOrder": "85", "w": "169", @@ -3108,7 +3170,7 @@ } }, { - "ID": "10280", + "ID": "10400", "typeID": "Arrow", "zOrder": "86", "w": "132", @@ -3139,7 +3201,7 @@ } }, { - "ID": "10281", + "ID": "10401", "typeID": "Arrow", "zOrder": "87", "w": "188", @@ -3169,7 +3231,7 @@ } }, { - "ID": "10282", + "ID": "10402", "typeID": "Arrow", "zOrder": "88", "w": "89", @@ -3200,7 +3262,7 @@ } }, { - "ID": "10283", + "ID": "10403", "typeID": "Arrow", "zOrder": "89", "w": "132", @@ -3231,7 +3293,7 @@ } }, { - "ID": "10284", + "ID": "10404", "typeID": "Arrow", "zOrder": "90", "w": "115", @@ -3262,7 +3324,7 @@ } }, { - "ID": "10285", + "ID": "10405", "typeID": "Arrow", "zOrder": "91", "w": "115", @@ -3293,7 +3355,7 @@ } }, { - "ID": "10286", + "ID": "10406", "typeID": "Arrow", "zOrder": "92", "w": "1", @@ -3324,7 +3386,7 @@ } }, { - "ID": "10287", + "ID": "10407", "typeID": "Arrow", "zOrder": "93", "w": "107", @@ -3355,7 +3417,7 @@ } }, { - "ID": "10288", + "ID": "10408", "typeID": "Arrow", "zOrder": "94", "w": "1", @@ -3386,7 +3448,7 @@ } }, { - "ID": "10289", + "ID": "10409", "typeID": "Arrow", "zOrder": "95", "w": "1", @@ -3417,7 +3479,7 @@ } }, { - "ID": "10290", + "ID": "10410", "typeID": "Arrow", "zOrder": "96", "w": "1", @@ -3448,7 +3510,7 @@ } }, { - "ID": "10291", + "ID": "10411", "typeID": "__group__", "zOrder": "97", "measuredW": "97", @@ -3544,7 +3606,7 @@ } }, { - "ID": "10292", + "ID": "10412", "typeID": "__group__", "zOrder": "98", "measuredW": "108", @@ -3640,7 +3702,7 @@ } }, { - "ID": "10293", + "ID": "10413", "typeID": "__group__", "zOrder": "99", "measuredW": "85", @@ -3736,7 +3798,7 @@ } }, { - "ID": "10294", + "ID": "10414", "typeID": "Arrow", "zOrder": "100", "w": "141", @@ -3767,7 +3829,7 @@ } }, { - "ID": "10295", + "ID": "10415", "typeID": "Arrow", "zOrder": "101", "w": "139", @@ -3797,7 +3859,7 @@ } }, { - "ID": "10296", + "ID": "10416", "typeID": "Arrow", "zOrder": "102", "w": "114", @@ -3828,7 +3890,7 @@ } }, { - "ID": "10297", + "ID": "10417", "typeID": "Arrow", "zOrder": "103", "w": "110", @@ -3859,7 +3921,7 @@ } }, { - "ID": "10298", + "ID": "10418", "typeID": "Arrow", "zOrder": "104", "w": "1", @@ -3890,7 +3952,7 @@ } }, { - "ID": "10299", + "ID": "10419", "typeID": "Arrow", "zOrder": "105", "w": "1", @@ -3921,7 +3983,7 @@ } }, { - "ID": "10300", + "ID": "10420", "typeID": "Arrow", "zOrder": "106", "w": "1", @@ -3952,7 +4014,7 @@ } }, { - "ID": "10301", + "ID": "10421", "typeID": "__group__", "zOrder": "107", "measuredW": "85", @@ -3999,7 +4061,7 @@ } }, { - "ID": "10302", + "ID": "10422", "typeID": "__group__", "zOrder": "108", "measuredW": "82", @@ -4046,7 +4108,7 @@ } }, { - "ID": "10303", + "ID": "10423", "typeID": "__group__", "zOrder": "109", "measuredW": "93", @@ -4093,7 +4155,7 @@ } }, { - "ID": "10304", + "ID": "10424", "typeID": "Arrow", "zOrder": "110", "w": "131", @@ -4124,7 +4186,7 @@ } }, { - "ID": "10305", + "ID": "10425", "typeID": "Arrow", "zOrder": "111", "w": "162", @@ -4155,7 +4217,7 @@ } }, { - "ID": "10306", + "ID": "10426", "typeID": "Arrow", "zOrder": "112", "w": "158", @@ -4186,7 +4248,7 @@ } }, { - "ID": "10307", + "ID": "10427", "typeID": "Arrow", "zOrder": "113", "w": "19", @@ -4216,7 +4278,7 @@ } }, { - "ID": "10308", + "ID": "10428", "typeID": "Label", "zOrder": "114", "measuredW": "133", @@ -4229,7 +4291,7 @@ } }, { - "ID": "10309", + "ID": "10429", "typeID": "Arrow", "zOrder": "115", "w": "33", @@ -4259,7 +4321,7 @@ } }, { - "ID": "10310", + "ID": "10430", "typeID": "Canvas", "zOrder": "116", "w": "350", @@ -4270,7 +4332,7 @@ "y": "174" }, { - "ID": "10311", + "ID": "10431", "typeID": "Label", "zOrder": "117", "measuredW": "314", @@ -4283,7 +4345,7 @@ } }, { - "ID": "10312", + "ID": "10432", "typeID": "Label", "zOrder": "118", "measuredW": "319", @@ -4296,7 +4358,7 @@ } }, { - "ID": "10313", + "ID": "10433", "typeID": "__group__", "zOrder": "119", "measuredW": "320", @@ -4344,14 +4406,14 @@ "ID": "2", "typeID": "Label", "zOrder": "2", - "measuredW": "35", + "measuredW": "45", "measuredH": "28", - "x": "76", + "x": "65", "y": "8", "properties": { "color": "16777215", "size": "20", - "text": "http" + "text": "https" } }, { @@ -4401,7 +4463,7 @@ } }, { - "ID": "10314", + "ID": "10434", "typeID": "Arrow", "zOrder": "120", "w": "154", @@ -4432,7 +4494,7 @@ } }, { - "ID": "10315", + "ID": "10435", "typeID": "__group__", "zOrder": "121", "measuredW": "350", @@ -4528,7 +4590,7 @@ } }, { - "ID": "10316", + "ID": "10436", "typeID": "__group__", "zOrder": "122", "measuredW": "248", @@ -4624,7 +4686,7 @@ } }, { - "ID": "10317", + "ID": "10437", "typeID": "__group__", "zOrder": "123", "measuredW": "491", @@ -4853,7 +4915,7 @@ } }, { - "ID": "10318", + "ID": "10438", "typeID": "__group__", "zOrder": "124", "measuredW": "248", @@ -4949,7 +5011,7 @@ } }, { - "ID": "10319", + "ID": "10439", "typeID": "__group__", "zOrder": "125", "measuredW": "248", @@ -5045,7 +5107,7 @@ } }, { - "ID": "10320", + "ID": "10440", "typeID": "__group__", "zOrder": "126", "measuredW": "351", @@ -5141,7 +5203,7 @@ } }, { - "ID": "10321", + "ID": "10441", "typeID": "__group__", "zOrder": "127", "measuredW": "300", @@ -5237,7 +5299,7 @@ } }, { - "ID": "10322", + "ID": "10442", "typeID": "__group__", "zOrder": "128", "measuredW": "300", @@ -5333,7 +5395,7 @@ } }, { - "ID": "10323", + "ID": "10443", "typeID": "__group__", "zOrder": "129", "measuredW": "299", @@ -5429,7 +5491,7 @@ } }, { - "ID": "10324", + "ID": "10444", "typeID": "__group__", "zOrder": "130", "measuredW": "226", @@ -5525,7 +5587,7 @@ } }, { - "ID": "10325", + "ID": "10445", "typeID": "__group__", "zOrder": "131", "measuredW": "248", @@ -5621,7 +5683,7 @@ } }, { - "ID": "10326", + "ID": "10446", "typeID": "__group__", "zOrder": "132", "measuredW": "300", @@ -5717,7 +5779,7 @@ } }, { - "ID": "10327", + "ID": "10447", "typeID": "__group__", "zOrder": "133", "measuredW": "192", @@ -5813,7 +5875,7 @@ } }, { - "ID": "10328", + "ID": "10448", "typeID": "__group__", "zOrder": "134", "measuredW": "231", @@ -5925,7 +5987,7 @@ } }, { - "ID": "10329", + "ID": "10449", "typeID": "__group__", "zOrder": "135", "measuredW": "231", @@ -6037,7 +6099,7 @@ } }, { - "ID": "10330", + "ID": "10450", "typeID": "__group__", "zOrder": "136", "measuredW": "179", @@ -6133,7 +6195,7 @@ } }, { - "ID": "10331", + "ID": "10451", "typeID": "__group__", "zOrder": "137", "measuredW": "218", @@ -6725,7 +6787,7 @@ } }, { - "ID": "10332", + "ID": "10452", "typeID": "__group__", "zOrder": "138", "measuredW": "192", @@ -6821,7 +6883,7 @@ } }, { - "ID": "10333", + "ID": "10453", "typeID": "__group__", "zOrder": "139", "measuredW": "269", @@ -6917,7 +6979,7 @@ } }, { - "ID": "10334", + "ID": "10454", "typeID": "__group__", "zOrder": "140", "measuredW": "238", @@ -7013,7 +7075,7 @@ } }, { - "ID": "10335", + "ID": "10455", "typeID": "__group__", "zOrder": "141", "measuredW": "91", @@ -7109,7 +7171,7 @@ } }, { - "ID": "10336", + "ID": "10456", "typeID": "__group__", "zOrder": "142", "measuredW": "140", @@ -7204,7 +7266,7 @@ } }, { - "ID": "10337", + "ID": "10457", "typeID": "__group__", "zOrder": "143", "measuredW": "202", @@ -7316,7 +7378,7 @@ } }, { - "ID": "10338", + "ID": "10458", "typeID": "__group__", "zOrder": "144", "measuredW": "171", @@ -7428,7 +7490,7 @@ } }, { - "ID": "10339", + "ID": "10459", "typeID": "__group__", "zOrder": "145", "measuredW": "171", @@ -7540,7 +7602,7 @@ } }, { - "ID": "10340", + "ID": "10460", "typeID": "__group__", "zOrder": "146", "measuredW": "171", @@ -7652,7 +7714,7 @@ } }, { - "ID": "10341", + "ID": "10461", "typeID": "__group__", "zOrder": "147", "measuredW": "171", @@ -7764,7 +7826,7 @@ } }, { - "ID": "10342", + "ID": "10462", "typeID": "__group__", "zOrder": "148", "measuredW": "204", @@ -7860,7 +7922,7 @@ } }, { - "ID": "10343", + "ID": "10463", "typeID": "__group__", "zOrder": "149", "measuredW": "116", @@ -7956,7 +8018,7 @@ } }, { - "ID": "10344", + "ID": "10464", "typeID": "__group__", "zOrder": "150", "measuredW": "268", @@ -8052,7 +8114,7 @@ } }, { - "ID": "10345", + "ID": "10465", "typeID": "__group__", "zOrder": "151", "measuredW": "245", @@ -8148,7 +8210,7 @@ } }, { - "ID": "10346", + "ID": "10466", "typeID": "__group__", "zOrder": "152", "measuredW": "318", @@ -8244,7 +8306,7 @@ } }, { - "ID": "10347", + "ID": "10467", "typeID": "__group__", "zOrder": "153", "measuredW": "238", @@ -8340,7 +8402,7 @@ } }, { - "ID": "10348", + "ID": "10468", "typeID": "__group__", "zOrder": "154", "measuredW": "289", @@ -8514,7 +8576,7 @@ } }, { - "ID": "10349", + "ID": "10469", "typeID": "__group__", "zOrder": "155", "measuredW": "209", @@ -8609,7 +8671,7 @@ } }, { - "ID": "10350", + "ID": "10470", "typeID": "__group__", "zOrder": "156", "measuredW": "171", @@ -8704,7 +8766,7 @@ } }, { - "ID": "10351", + "ID": "10471", "typeID": "__group__", "zOrder": "157", "measuredW": "171", @@ -8799,7 +8861,7 @@ } }, { - "ID": "10352", + "ID": "10472", "typeID": "__group__", "zOrder": "158", "measuredW": "171", @@ -8894,7 +8956,7 @@ } }, { - "ID": "10353", + "ID": "10473", "typeID": "__group__", "zOrder": "159", "measuredW": "171", @@ -8989,7 +9051,7 @@ } }, { - "ID": "10354", + "ID": "10474", "typeID": "__group__", "zOrder": "160", "measuredW": "220", @@ -9085,7 +9147,7 @@ } }, { - "ID": "10355", + "ID": "10475", "typeID": "__group__", "zOrder": "161", "measuredW": "228", @@ -9181,7 +9243,7 @@ } }, { - "ID": "10356", + "ID": "10476", "typeID": "__group__", "zOrder": "162", "measuredW": "228", @@ -9277,7 +9339,7 @@ } }, { - "ID": "10357", + "ID": "10477", "typeID": "__group__", "zOrder": "163", "measuredW": "228", @@ -9373,7 +9435,7 @@ } }, { - "ID": "10358", + "ID": "10478", "typeID": "__group__", "zOrder": "164", "measuredW": "206", @@ -9469,7 +9531,7 @@ } }, { - "ID": "10359", + "ID": "10479", "typeID": "__group__", "zOrder": "165", "measuredW": "227", @@ -9565,7 +9627,7 @@ } }, { - "ID": "10360", + "ID": "10480", "typeID": "__group__", "zOrder": "166", "measuredW": "206", @@ -9661,7 +9723,7 @@ } }, { - "ID": "10361", + "ID": "10481", "typeID": "__group__", "zOrder": "167", "measuredW": "206", @@ -9757,7 +9819,7 @@ } }, { - "ID": "10362", + "ID": "10482", "typeID": "__group__", "zOrder": "168", "measuredW": "220", @@ -9853,7 +9915,7 @@ } }, { - "ID": "10363", + "ID": "10483", "typeID": "__group__", "zOrder": "169", "measuredW": "229", @@ -9949,7 +10011,7 @@ } }, { - "ID": "10364", + "ID": "10484", "typeID": "__group__", "zOrder": "170", "measuredW": "206", @@ -10045,7 +10107,7 @@ } }, { - "ID": "10365", + "ID": "10485", "typeID": "__group__", "zOrder": "171", "measuredW": "227", @@ -10141,7 +10203,7 @@ } }, { - "ID": "10366", + "ID": "10486", "typeID": "__group__", "zOrder": "172", "measuredW": "227", @@ -10237,7 +10299,7 @@ } }, { - "ID": "10367", + "ID": "10487", "typeID": "__group__", "zOrder": "173", "measuredW": "228", @@ -10333,7 +10395,7 @@ } }, { - "ID": "10368", + "ID": "10488", "typeID": "__group__", "zOrder": "174", "measuredW": "280", @@ -10429,7 +10491,7 @@ } }, { - "ID": "10369", + "ID": "10489", "typeID": "__group__", "zOrder": "175", "measuredW": "280", @@ -10525,7 +10587,7 @@ } }, { - "ID": "10370", + "ID": "10490", "typeID": "__group__", "zOrder": "176", "measuredW": "280", @@ -10621,7 +10683,7 @@ } }, { - "ID": "10371", + "ID": "10491", "typeID": "__group__", "zOrder": "177", "measuredW": "280", @@ -10717,7 +10779,7 @@ } }, { - "ID": "10372", + "ID": "10492", "typeID": "__group__", "zOrder": "178", "measuredW": "281", @@ -10829,7 +10891,7 @@ } }, { - "ID": "10373", + "ID": "10493", "typeID": "__group__", "zOrder": "179", "measuredW": "280", @@ -10925,7 +10987,7 @@ } }, { - "ID": "10374", + "ID": "10494", "typeID": "__group__", "zOrder": "180", "measuredW": "281", @@ -11037,7 +11099,7 @@ } }, { - "ID": "10375", + "ID": "10495", "typeID": "__group__", "zOrder": "181", "measuredW": "280", @@ -11133,7 +11195,7 @@ } }, { - "ID": "10376", + "ID": "10496", "typeID": "__group__", "zOrder": "182", "measuredW": "280", @@ -11229,7 +11291,7 @@ } }, { - "ID": "10377", + "ID": "10497", "typeID": "__group__", "zOrder": "183", "measuredW": "280", @@ -11325,7 +11387,7 @@ } }, { - "ID": "10378", + "ID": "10498", "typeID": "__group__", "zOrder": "184", "measuredW": "281", @@ -11421,7 +11483,7 @@ } }, { - "ID": "10379", + "ID": "10499", "typeID": "__group__", "zOrder": "185", "measuredW": "281", @@ -11533,7 +11595,7 @@ } }, { - "ID": "10380", + "ID": "10500", "typeID": "__group__", "zOrder": "186", "measuredW": "197", @@ -11629,7 +11691,7 @@ } }, { - "ID": "10381", + "ID": "10501", "typeID": "__group__", "zOrder": "187", "measuredW": "287", @@ -11725,7 +11787,7 @@ } }, { - "ID": "10382", + "ID": "10502", "typeID": "__group__", "zOrder": "188", "measuredW": "236", @@ -11821,7 +11883,7 @@ } }, { - "ID": "10383", + "ID": "10503", "typeID": "__group__", "zOrder": "189", "measuredW": "171", @@ -11917,7 +11979,7 @@ } }, { - "ID": "10384", + "ID": "10504", "typeID": "__group__", "zOrder": "190", "measuredW": "171", @@ -12013,7 +12075,7 @@ } }, { - "ID": "10385", + "ID": "10505", "typeID": "__group__", "zOrder": "191", "measuredW": "236", @@ -12109,7 +12171,7 @@ } }, { - "ID": "10386", + "ID": "10506", "typeID": "__group__", "zOrder": "192", "measuredW": "236", @@ -12221,7 +12283,7 @@ } }, { - "ID": "10387", + "ID": "10507", "typeID": "__group__", "zOrder": "193", "measuredW": "235", @@ -12333,7 +12395,7 @@ } }, { - "ID": "10388", + "ID": "10508", "typeID": "__group__", "zOrder": "194", "measuredW": "178", @@ -12445,7 +12507,7 @@ } }, { - "ID": "10389", + "ID": "10509", "typeID": "__group__", "zOrder": "195", "measuredW": "178", @@ -12557,7 +12619,7 @@ } }, { - "ID": "10390", + "ID": "10510", "typeID": "__group__", "zOrder": "196", "measuredW": "178", @@ -12669,7 +12731,7 @@ } }, { - "ID": "10391", + "ID": "10511", "typeID": "__group__", "zOrder": "197", "measuredW": "236", @@ -12782,7 +12844,7 @@ } }, { - "ID": "10392", + "ID": "10512", "typeID": "__group__", "zOrder": "198", "measuredW": "235", @@ -12878,7 +12940,7 @@ } }, { - "ID": "10393", + "ID": "10513", "typeID": "__group__", "zOrder": "199", "measuredW": "181", @@ -12990,7 +13052,7 @@ } }, { - "ID": "10394", + "ID": "10514", "typeID": "__group__", "zOrder": "200", "measuredW": "181", @@ -13102,7 +13164,7 @@ } }, { - "ID": "10395", + "ID": "10515", "typeID": "__group__", "zOrder": "201", "measuredW": "188", @@ -13214,7 +13276,7 @@ } }, { - "ID": "10396", + "ID": "10516", "typeID": "__group__", "zOrder": "202", "measuredW": "263", @@ -13326,7 +13388,7 @@ } }, { - "ID": "10397", + "ID": "10517", "typeID": "__group__", "zOrder": "203", "measuredW": "181", @@ -13438,7 +13500,7 @@ } }, { - "ID": "10398", + "ID": "10518", "typeID": "__group__", "zOrder": "204", "measuredW": "182", @@ -13550,7 +13612,7 @@ } }, { - "ID": "10399", + "ID": "10519", "typeID": "__group__", "zOrder": "205", "measuredW": "183", @@ -13662,7 +13724,7 @@ } }, { - "ID": "10400", + "ID": "10520", "typeID": "__group__", "zOrder": "206", "measuredW": "199", @@ -13774,7 +13836,7 @@ } }, { - "ID": "10401", + "ID": "10521", "typeID": "__group__", "zOrder": "207", "measuredW": "282", @@ -13886,7 +13948,7 @@ } }, { - "ID": "10402", + "ID": "10522", "typeID": "__group__", "zOrder": "208", "measuredW": "180", @@ -13982,7 +14044,7 @@ } }, { - "ID": "10403", + "ID": "10523", "typeID": "__group__", "zOrder": "209", "measuredW": "180", @@ -14078,7 +14140,7 @@ } }, { - "ID": "10404", + "ID": "10524", "typeID": "__group__", "zOrder": "210", "measuredW": "133", @@ -14190,7 +14252,7 @@ } }, { - "ID": "10405", + "ID": "10525", "typeID": "__group__", "zOrder": "211", "measuredW": "133", @@ -14302,7 +14364,7 @@ } }, { - "ID": "10406", + "ID": "10526", "typeID": "__group__", "zOrder": "212", "measuredW": "168", @@ -14414,7 +14476,7 @@ } }, { - "ID": "10407", + "ID": "10527", "typeID": "__group__", "zOrder": "213", "measuredW": "168", @@ -14526,7 +14588,7 @@ } }, { - "ID": "10408", + "ID": "10528", "typeID": "__group__", "zOrder": "214", "measuredW": "265", @@ -14638,7 +14700,7 @@ } }, { - "ID": "10409", + "ID": "10529", "typeID": "__group__", "zOrder": "215", "measuredW": "283", @@ -14733,7 +14795,7 @@ } }, { - "ID": "10410", + "ID": "10530", "typeID": "__group__", "zOrder": "216", "measuredW": "283", @@ -14845,7 +14907,7 @@ } }, { - "ID": "10411", + "ID": "10531", "typeID": "__group__", "zOrder": "217", "measuredW": "225", @@ -14957,7 +15019,7 @@ } }, { - "ID": "10412", + "ID": "10532", "typeID": "__group__", "zOrder": "218", "measuredW": "224", @@ -15069,7 +15131,7 @@ } }, { - "ID": "10413", + "ID": "10533", "typeID": "__group__", "zOrder": "219", "measuredW": "283", @@ -15164,7 +15226,7 @@ } }, { - "ID": "10414", + "ID": "10534", "typeID": "__group__", "zOrder": "220", "measuredW": "251", @@ -15259,7 +15321,7 @@ } }, { - "ID": "10415", + "ID": "10535", "typeID": "__group__", "zOrder": "221", "measuredW": "251", @@ -15354,7 +15416,7 @@ } }, { - "ID": "10416", + "ID": "10536", "typeID": "__group__", "zOrder": "222", "measuredW": "282", @@ -15466,7 +15528,7 @@ } }, { - "ID": "10417", + "ID": "10537", "typeID": "__group__", "zOrder": "223", "measuredW": "249", @@ -15578,7 +15640,7 @@ } }, { - "ID": "10418", + "ID": "10538", "typeID": "__group__", "zOrder": "224", "measuredW": "249", @@ -15673,7 +15735,7 @@ } }, { - "ID": "10419", + "ID": "10539", "typeID": "__group__", "zOrder": "225", "measuredW": "249", @@ -15768,7 +15830,7 @@ } }, { - "ID": "10420", + "ID": "10540", "typeID": "TextArea", "zOrder": "226", "w": "552", @@ -15779,7 +15841,7 @@ "y": "2924" }, { - "ID": "10421", + "ID": "10541", "typeID": "Label", "zOrder": "227", "measuredW": "495", @@ -15792,7 +15854,7 @@ } }, { - "ID": "10422", + "ID": "10542", "typeID": "__group__", "zOrder": "228", "measuredW": "229", @@ -15839,7 +15901,7 @@ } }, { - "ID": "10423", + "ID": "10543", "typeID": "__group__", "zOrder": "229", "measuredW": "252", @@ -15886,7 +15948,7 @@ } }, { - "ID": "10424", + "ID": "10544", "typeID": "__group__", "zOrder": "230", "measuredW": "282", @@ -15998,7 +16060,7 @@ } }, { - "ID": "10425", + "ID": "10545", "typeID": "__group__", "zOrder": "231", "measuredW": "195", @@ -16094,7 +16156,7 @@ } }, { - "ID": "10426", + "ID": "10546", "typeID": "__group__", "zOrder": "232", "measuredW": "195", @@ -16188,79 +16250,17 @@ ] } } - }, - { - "ID": "10427", - "typeID": "Arrow", - "zOrder": "2", - "w": "130", - "h": "28", - "measuredW": "150", - "measuredH": "100", - "x": "355", - "y": "2416", - "properties": { - "color": "2848996", - "curvature": "-1", - "direction": "top", - "leftArrow": "false", - "rightArrow": "false", - "stroke": "dotted", - "p0": { - "x": 129.88523924557296, - "y": -0.10193612067541835 - }, - "p1": { - "x": 0.4346317007327419, - "y": 0.008098727342846149 - }, - "p2": { - "x": -0.4733552249705326, - "y": 27.9190701673856 - } - } - }, - { - "ID": "10428", - "typeID": "Arrow", - "zOrder": "1", - "w": "137", - "h": "66", - "measuredW": "150", - "measuredH": "100", - "x": "357", - "y": "2434", - "properties": { - "color": "2848996", - "curvature": "-1", - "direction": "top", - "leftArrow": "false", - "rightArrow": "false", - "stroke": "dotted", - "p0": { - "x": 137, - "y": 0 - }, - "p1": { - "x": 0.4707150975159109, - "y": -0.06528731437784985 - }, - "p2": { - "x": -0.036745982530419496, - "y": 65.96108274350672 - } - } } ] }, "attributes": { - "name": "New Wireframe 1 copy 2", - "order": 1000006.8992828326, + "name": "New Wireframe 1 copy", + "order": 1000022.7455786733, "parentID": null, "notes": "" }, "branchID": "Master", - "resourceID": "4BE92169-157F-4FC5-8E20-403CBCF7A6C6", + "resourceID": "8024860B-B61F-451D-B579-28AA621BB239", "mockupH": "2958", "mockupW": "1168", "measuredW": "1264",