diff --git a/book/03-git-branching/1-git-branching.asc b/book/03-git-branching/1-git-branching.asc index f884bdb27..be9e66fef 100644 --- a/book/03-git-branching/1-git-branching.asc +++ b/book/03-git-branching/1-git-branching.asc @@ -1,24 +1,26 @@ [[_git_branching]] -== Git Branching +== Git Branching(((git, branching))) Nearly every VCS has some form of branching support. Branching means you diverge from the main line of development and continue to do work without messing with that main line. In many VCS tools, this is a somewhat expensive process, often requiring you to create a new copy of your source code directory, which can take a long time for large projects. -Some people refer to the branching model in Git as its ``killer feature,'' and it certainly sets Git apart in the VCS community. +Some people refer to Git's branching model as its ``killer feature,'' and it certainly sets Git apart in the VCS community. Why is it so special? The way Git branches is incredibly lightweight, making branching operations nearly instantaneous, and switching back and forth between branches generally just as fast. -Unlike many other VCSs, Git encourages a workflow that branches and merges often, even multiple times in a day. -Understanding and mastering this feature gives you a powerful and unique tool and can literally change the way that you develop. +Unlike many other VCSs, Git encourages workflows that branch and merge often, even multiple times in a day. +Understanding and mastering this feature gives you a powerful and unique tool and can entirely change the way that you develop. -=== What a Branch Is +=== Branches in a Nutshell To really understand the way Git does branching, we need to take a step back and examine how Git stores its data. -As you may remember from <<_getting_started>>, Git doesn’t store data as a series of changesets or deltas, but instead as a series of snapshots. -When you make a commit, Git stores a commit object that contains a pointer to the snapshot of the content you staged, the author and message metadata, and zero or more pointers to the commit or commits that were the direct parents of this commit: zero parents for the first commit, one parent for a normal commit, and multiple parents for a commit that results from a merge of two or more branches. +As you may remember from <<_getting_started>>, Git doesn't store data as a series of changesets or differences, but instead as a series of snapshots. -To visualize this, let’s assume that you have a directory containing three files, and you stage them all and commit. +When you make a commit, Git stores a commit object that contains a pointer to the snapshot of the content you staged. +This object also contains the author's name and email, the message that you typed, and pointers to the commit or commits that directly came before this commit (its parent or parents): zero parents for the initial commit, one parent for a normal commit, and multiple parents for a commit that results from a merge of two or more branches. + +To visualize this, let's assume that you have a directory containing three files, and you stage them all and commit. Staging the files checksums each one (the SHA-1 hash we mentioned in <<_getting_started>>), stores that version of the file in the Git repository (Git refers to them as blobs), and adds that checksum to the staging area: [source,shell] @@ -31,30 +33,33 @@ When you create the commit by running `git commit`, Git checksums each subdirect Git then creates a commit object that has the metadata and a pointer to the root project tree so it can re-create that snapshot when needed. Your Git repository now contains five objects: one blob for the contents of each of your three files, one tree that lists the contents of the directory and specifies which file names are stored as which blobs, and one commit with the pointer to that root tree and all the commit metadata. -Conceptually, the data in your Git repository looks something like <>. -[[commit_diagram_a]] .A commit and its tree image::images/18333fig0301-tn.png[A commit and its tree.] If you make some changes and commit again, the next commit stores a pointer to the commit that came immediately before it. -After two more commits, your history might look something like <>. -[[commit_diagram_b]] .Commits and their parents image::images/18333fig0302-tn.png[Commits and their parents.] A branch in Git is simply a lightweight movable pointer to one of these commits. The default branch name in Git is `master`. -As you start making commits, you’re given a master branch that points to the last commit you made. +As you start making commits, you're given a master branch that points to the last commit you made. Every time you commit, it moves forward automatically. +[NOTE] +==== +The ``master'' branch in Git is not a special branch. It is exactly like any other branch. The only reason nearly every repository has one is that the `git init` command creates it by default and most people don't bother to change it. +==== + .A branch and its commit history image::images/18333fig0303-tn.png[A branch and its commit history.] +==== Creating a new branch + What happens if you create a new branch? Well, doing so creates a new pointer for you to move around. -Let’s say you create a new branch called testing. +Let's say you create a new branch called testing. You do this with the `git branch` command: [source,shell] @@ -62,23 +67,37 @@ You do this with the `git branch` command: $ git branch testing ---- -This creates a new pointer at the same commit you’re currently on. +This creates a new pointer at the same commit you're currently on. .Two branches pointing into the same series of commits image::images/18333fig0304-tn.png[Two branches pointing into the same series of commits.] -How does Git know what branch you’re currently on? +How does Git know what branch you're currently on? It keeps a special pointer called `HEAD`. Note that this is a lot different than the concept of `HEAD` in other VCSs you may be used to, such as Subversion or CVS. -In Git, this is a pointer to the local branch you’re currently on. -In this case, you’re still on master. -The `git branch` command only _created_ a new branch – it didn’t switch to that branch. +In Git, this is a pointer to the local branch you're currently on. +In this case, you're still on master. +The `git branch` command only _created_ a new branch – it didn't switch to that branch. .HEAD pointing to a branch image::images/18333fig0305-tn.png[HEAD pointing to a branch.] +You can easily see this by running a simple `git log` command that shows you where the branch pointers are pointing. This option is called `--decorate`. + +[source,shell] +---- +$ git log --oneline --decorate +f30ab (HEAD, master, testing) add feature #32 - ability to add new formats to the central library +34ac2 fixed bug #1328 - stack overflow under certain conditions +98ca9 initial commit of my project +---- + +You can see the ``master'' and ``testing'' branches that are right there next to the `f30ab` commit. + +==== Switching branches + To switch to an existing branch, you run the `git checkout` command. -Let’s switch to the new testing branch: +Let's switch to the new testing branch: [source,shell] ---- @@ -91,7 +110,7 @@ This moves `HEAD` to point to the `testing` branch. image::images/18333fig0306-tn.png[HEAD points to the current branch.] What is the significance of that? -Well, let’s do another commit: +Well, let's do another commit: [source,shell] ---- @@ -99,32 +118,32 @@ $ vim test.rb $ git commit -a -m 'made a change' ---- -<> illustrates the result. - -[[history_diagram_d]] .The HEAD branch moves forward when a commit is made image::images/18333fig0307-tn.png[The HEAD branch moves forward when a commit is made.] This is interesting, because now your testing branch has moved forward, but your master branch still points to the commit you were on when you ran `git checkout` to switch branches. -Let’s switch back to the master branch: +Let's switch back to the master branch: [source,shell] ---- $ git checkout master ---- -<> shows the result. - -[[history_diagram_e]] .HEAD moves when you checkout image::images/18333fig0308-tn.png[HEAD moves when you checkout.] That command did two things. It moved the HEAD pointer back to point to the master branch, and it reverted the files in your working directory back to the snapshot that master points to. This also means the changes you make from this point forward will diverge from an older version of the project. -It essentially rewinds the work you’ve done in your testing branch so you can go in a different direction. +It essentially rewinds the work you've done in your testing branch so you can go in a different direction. + +[NOTE] +.Switching branches changes files in your working directory +==== +It's important to note that when you switch branches in Git, files in your working directory will change. If you switch to an older branch, your working directory will be reverted to look like it did the last time you committed on that branch. If Git cannot do it cleanly, it will not let you switch at all. +==== -Let’s make a few changes and commit again: +Let's make a few changes and commit again: [source,shell] ---- @@ -134,47 +153,60 @@ $ git commit -a -m 'made other changes' Now your project history has diverged (see Figure 3-9). You created and switched to a branch, did some work on it, and then switched back to your main branch and did other work. -Both of those changes are isolated in separate branches: you can switch back and forth between the branches and merge them together when you’re ready. +Both of those changes are isolated in separate branches: you can switch back and forth between the branches and merge them together when you're ready. And you did all that with simple `branch`, `checkout`, and `commit` commands. .Divergent history image::images/18333fig0309-tn.png[Divergent history.] +You can also see this easily with the `git log` command. If you run `git log --oneline --decorate --graph --all` it will print out the history of your commits, showing where your branch pointers are and how your history has diverged. + +[source,shell] +---- +$ git log --oneline --decorate --graph --all +* c2b9e (HEAD, master) made other changes +| * 87ab2 (testing) made a change +|/ +* f30ab add feature #32 - ability to add new formats to the central library +* 34ac2 fixed bug #1328 - stack overflow under certain conditions +* 98ca9 initial commit of my project +---- + Because a branch in Git is in actuality a simple file that contains the 40 character SHA-1 checksum of the commit it points to, branches are cheap to create and destroy. Creating a new branch is as quick and simple as writing 41 bytes to a file (40 characters and a newline). -This is in sharp contrast to the way most older VCS tools branch, which involves copying all of the project’s files into a second directory. +This is in sharp contrast to the way most older VCS tools branch, which involves copying all of the project's files into a second directory. This can take several seconds or even minutes, depending on the size of the project, whereas in Git the process is always instantaneous. -Also, because we’re recording the parents when we commit, finding a proper merge base for merging is automatically done for us and is generally very easy to do. +Also, because we're recording the parents when we commit, finding a proper merge base for merging is automatically done for us and is generally very easy to do. These features help encourage developers to create and use branches often. -Let’s see why you should do so. +Let's see why you should do so. === Basic Branching and Merging -Let’s go through a simple example of branching and merging with a workflow that you might use in the real world. -You’ll follow these steps: +Let's go through a simple example of branching and merging with a workflow that you might use in the real world. +You'll follow these steps: -1. Do work on a web site. -2. Create a branch for a new story you’re working on. -3. Do some work in that branch. +. Do work on a web site. +. Create a branch for a new story you're working on. +. Do some work in that branch. -At this stage, you’ll receive a call that another issue is critical and you need a hotfix. -You’ll do the following: +At this stage, you'll receive a call that another issue is critical and you need a hotfix. +You'll do the following: -1. Revert back to your production branch. -2. Create a branch to add the hotfix. -3. After it’s tested, merge the hotfix branch, and push to production. -4. Switch back to your original story and continue working. +. Switch to your production branch. +. Create a branch to add the hotfix. +. After it's tested, merge the hotfix branch, and push to production. +. Switch back to your original story and continue working. ==== Basic Branching -First, let’s say you’re working on your project and have a couple of commits already. +First, let's say you're working on your project and have a couple of commits already. .A simple commit history image::images/18333fig0310-tn.png[A simple commit history.] -You’ve decided that you’re going to work on issue #53 in whatever issue-tracking system your company uses. +You've decided that you're going to work on issue #53 in whatever issue-tracking system your company uses. To create a branch and switch to it at the same time, you can run the `git checkout` command with the `-b` switch: [source,shell] @@ -191,14 +223,11 @@ $ git branch iss53 $ git checkout iss53 ---- -<> illustrates the result. - -[[branch_diagram_b]] .Creating a new branch pointer image::images/18333fig0311-tn.png[Creating a new branch pointer.] You work on your web site and do some commits. -Doing so moves the `iss53` branch forward, because you have it checked out (that is, your `HEAD` is pointing to it; see <>): +Doing so moves the `iss53` branch forward, because you have it checked out (that is, your `HEAD` is pointing to it): [source,shell] ---- @@ -206,18 +235,17 @@ $ vim index.html $ git commit -a -m 'added a new footer [issue 53]' ---- -[[branch_diagram_c]] .The iss53 branch has moved forward with your work image::images/18333fig0312-tn.png[The iss53 branch has moved forward with your work.] Now you get the call that there is an issue with the web site, and you need to fix it immediately. -With Git, you don’t have to deploy your fix along with the `iss53` changes you’ve made, and you don’t have to put a lot of effort into reverting those changes before you can work on applying your fix to what is in production. -All you have to do is switch back to your master branch. +With Git, you don't have to deploy your fix along with the `iss53` changes you've made, and you don't have to put a lot of effort into reverting those changes before you can work on applying your fix to what is in production. +All you have to do is switch back to your `master` branch. -However, before you do that, note that if your working directory or staging area has uncommitted changes that conflict with the branch you’re checking out, Git won’t let you switch branches. -It’s best to have a clean working state when you switch branches. -There are ways to get around this (namely, stashing and commit amending) that we’ll cover later. -For now, let's assume you’ve committed all your changes, so you can switch back to your master branch: +However, before you do that, note that if your working directory or staging area has uncommitted changes that conflict with the branch you're checking out, Git won't let you switch branches. +It's best to have a clean working state when you switch branches. +There are ways to get around this (namely, stashing and commit amending) that we'll cover later on, in <<_git_stashing>>. +For now, let's assume you've committed all your changes, so you can switch back to your master branch: [source,shell] ---- @@ -226,15 +254,15 @@ Switched to branch 'master' ---- At this point, your project working directory is exactly the way it was before you started working on issue #53, and you can concentrate on your hotfix. -This is an important point to remember: Git resets your working directory to look like the snapshot of the commit that the branch you check out points to. +This is an important point to remember: when you switch branches, Git resets your working directory to look like it did the last time you committed on that branch. It adds, removes, and modifies files automatically to make sure your working copy is what the branch looked like on your last commit to it. Next, you have a hotfix to make. -Let’s create a hotfix branch on which to work until it’s completed (see <>): +Let's create a hotfix branch on which to work until it's completed: [source,shell] ---- -$ git checkout -b 'hotfix' +$ git checkout -b hotfix Switched to a new branch 'hotfix' $ vim index.html $ git commit -a -m 'fixed the broken email address' @@ -242,7 +270,6 @@ $ git commit -a -m 'fixed the broken email address' 1 file changed, 2 insertions(+) ---- -[[branch_diagram_d]] .Hotfix branch based on `master` image::images/18333fig0313-tn.png[Hotfix branch based on `master`.] @@ -259,17 +286,17 @@ Fast-forward 1 file changed, 2 insertions(+) ---- -You’ll notice the phrase ``Fast-forward'' in that merge. -Because the commit pointed to by the branch you merged in was directly upstream of the commit you’re on, Git moves the pointer forward. -To phrase that another way, when you try to merge one commit with a commit that can be reached by following the first commit’s history, Git simplifies things by moving the pointer forward because there is no divergent work to merge together – this is called a ``fast-forward''. +You'll notice the phrase ``fast-forward'' in that merge. +Because the commit pointed to by the branch you merged in was directly upstream of the commit you're on, Git simply moves the pointer forward. +To phrase that another way, when you try to merge one commit with a commit that can be reached by following the first commit's history, Git simplifies things by moving the pointer forward because there is no divergent work to merge together – this is called a ``fast-forward.'' -Your change is now in the snapshot of the commit pointed to by the `master` branch, and you can deploy your change. +Your change is now in the snapshot of the commit pointed to by the `master` branch, and you can deploy the fix. .`master` is fast-forwarded to `hotfix` image::images/18333fig0314-tn.png[`master` is fast-forwarded to `hotfix`.] -After your super-important fix is deployed, you’re ready to switch back to the work you were doing before you were interrupted. -However, first you’ll delete the `hotfix` branch, because you no longer need it – the `master` branch points at the same place. +After your super-important fix is deployed, you're ready to switch back to the work you were doing before you were interrupted. +However, first you'll delete the `hotfix` branch, because you no longer need it – the `master` branch points at the same place. You can delete it with the `-d` option to `git branch`: [source,shell] @@ -278,7 +305,7 @@ $ git branch -d hotfix Deleted branch hotfix (3a0874c). ---- -Now you can switch back to your work-in-progress branch on issue #53 and continue working on it (see <>): +Now you can switch back to your work-in-progress branch on issue #53 and continue working on it. [source,shell] ---- @@ -290,17 +317,16 @@ $ git commit -a -m 'finished the new footer [issue 53]' 1 file changed, 1 insertion(+) ---- -[[branch_diagram_f]] .Work continues on `iss53` image::images/18333fig0315-tn.png[Work continues on `iss53`.] -It’s worth noting here that the work you did in your `hotfix` branch is not contained in the files in your `iss53` branch. +It's worth noting here that the work you did in your `hotfix` branch is not contained in the files in your `iss53` branch. If you need to pull it in, you can merge your `master` branch into your `iss53` branch by running `git merge master`, or you can wait to integrate those changes until you decide to pull the `iss53` branch back into `master` later. ==== Basic Merging -Suppose you’ve decided that your issue #53 work is complete and ready to be merged into your `master` branch. -In order to do that, you’ll merge in your `iss53` branch, much like you merged in your `hotfix` branch earlier. +Suppose you've decided that your issue #53 work is complete and ready to be merged into your `master` branch. +In order to do that, you'll merge in your `iss53` branch, much like you merged in your `hotfix` branch earlier. All you have to do is check out the branch you wish to merge into and then run the `git merge` command: [source,shell] @@ -315,24 +341,21 @@ README | 1 + This looks a bit different than the `hotfix` merge you did earlier. In this case, your development history has diverged from some older point. -Because the commit on the branch you’re on isn’t a direct ancestor of the branch you’re merging in, Git has to do some work. +Because the commit on the branch you're on isn't a direct ancestor of the branch you're merging in, Git has to do some work. In this case, Git does a simple three-way merge, using the two snapshots pointed to by the branch tips and the common ancestor of the two. -<> highlights the three snapshots that Git uses to do its merge in this case. -[[merge_diagram_a]] .Three snapshots used in a typical merge image::images/18333fig0316-tn.png[Three snapshots used in a typical merge.] -Instead of just moving the branch pointer forward, Git creates a new snapshot that results from this three-way merge and automatically creates a new commit that points to it (see <>). +Instead of just moving the branch pointer forward, Git creates a new snapshot that results from this three-way merge and automatically creates a new commit that points to it. This is referred to as a merge commit, and is special in that it has more than one parent. -It’s worth pointing out that Git determines the best common ancestor to use for its merge base; this is different than older tools like CVS or Subversion (before version 1.5), where the developer doing the merge had to figure out the best merge base for themselves. -This makes merging a heck of a lot easier in Git than in these other systems. - -[[merge_diagram_b]] .A merge commit image::images/18333fig0317-tn.png[A merge commit.] +It's worth pointing out that Git determines the best common ancestor to use for its merge base; this is different than older tools like CVS or Subversion (before version 1.5), where the developer doing the merge had to figure out the best merge base for themselves. +This makes merging a heck of a lot easier in Git than in these other systems. + Now that your work is merged in, you have no further need for the `iss53` branch. You can close the ticket in your ticket-tracking system, and delete the branch: @@ -343,9 +366,9 @@ $ git branch -d iss53 ==== Basic Merge Conflicts -Occasionally, this process doesn’t go smoothly. -If you changed the same part of the same file differently in the two branches you’re merging together, Git won’t be able to merge them cleanly. -If your fix for issue #53 modified the same part of a file as the `hotfix`, you’ll get a merge conflict that looks something like this: +Occasionally, this process doesn't go smoothly. +If you changed the same part of the same file differently in the two branches you're merging together, Git won't be able to merge them cleanly. +If your fix for issue #53 modified the same part of a file as the `hotfix`, you'll get a merge conflict that looks something like this: [source,shell] ---- @@ -355,13 +378,13 @@ CONFLICT (content): Merge conflict in index.html Automatic merge failed; fix conflicts and then commit the result. ---- -Git hasn’t automatically created a new merge commit. +Git hasn't automatically created a new merge commit. It has paused the process while you resolve the conflict. If you want to see which files are unmerged at any point after a merge conflict, you can run `git status`: [source,shell] ---- -[master*]$ git status +$ git status On branch master You have unmerged paths. (fix conflicts and run "git commit") @@ -374,7 +397,7 @@ Unmerged paths: no changes added to commit (use "git add" and/or "git commit -a") ---- -Anything that has merge conflicts and hasn’t been resolved is listed as unmerged. +Anything that has merge conflicts and hasn't been resolved is listed as unmerged. Git adds standard conflict-resolution markers to the files that have conflicts, so you can open them manually and resolve those conflicts. Your file contains a section that looks something like this: @@ -400,8 +423,8 @@ please contact us at email.support@github.com ---- -This resolution has a little of each section, and I’ve fully removed the `<<<<<<<`, `=======`, and `>>>>>>>` lines. -After you’ve resolved each of these sections in each conflicted file, run `git add` on each file to mark it as resolved. +This resolution has a little of each section, and the `<<<<<<<`, `=======`, and `>>>>>>>` lines have been completely removed. +After you've resolved each of these sections in each conflicted file, run `git add` on each file to mark it as resolved. Staging the file marks it as resolved in Git. If you want to use a graphical tool to resolve these issues, you can run `git mergetool`, which fires up an appropriate visual merge tool and walks you through the conflicts: @@ -422,13 +445,12 @@ Normal merge conflict for 'index.html': Hit return to start merge resolution tool (opendiff): ---- -If you want to use a merge tool other than the default (Git chose `opendiff` for me in this case because I ran the command on a Mac), you can see all the supported tools listed at the top after ``one of the following tools.'' -Just type the name of the tool you’d rather use. -In <<_git_tools>>, we’ll discuss how you can change this default value for your environment (Git gave us a helpful hint). +If you want to use a merge tool other than the default (Git chose `opendiff` in this case because the command was run on a Mac), you can see all the supported tools listed at the top after ``one of the following tools.'' +Just type the name of the tool you'd rather use. +In <<_git_tools>>, we'll discuss how you can change this default value for your environment (Git gave us a helpful hint). After you exit the merge tool, Git asks you if the merge was successful. If you tell the script that it was, it stages the file to mark it as resolved for you. - You can run `git status` again to verify that all conflicts have been resolved: [source,shell] @@ -443,7 +465,7 @@ Changes to be committed: modified: index.html ---- -If you’re happy with that, and you verify that everything that had conflicts has been staged, you can type `git commit` to finalize the merge commit. +If you're happy with that, and you verify that everything that had conflicts has been staged, you can type `git commit` to finalize the merge commit. The commit message by default looks something like this: [source,shell] @@ -469,96 +491,11 @@ Conflicts: # ---- -You can modify that message with details about how you resolved the merge if you think it would be helpful to others looking at this merge in the future – why you did what you did, if it’s not obvious. - -==== Undoing Merges - -Now that you know how to create a merge commit, you'll probably make some by mistake. -One of the great things about working with Git is that it's okay to make mistakes, because it's possible (and in many cases easy) to fix them. - -Merge commits are no different. -Let's say you started work on a topic branch, accidentally merged it into `master`, and now your commit history looks like this: - -.Accidental merge commit -image::images/undomerge-start.png[Accidental merge commit.] - -There are two ways to approach this problem, depending on what your desired outcome is. - -===== Fix the refs - -If the unwanted merge commit only exists on your local repository, the solution is to move the branches so that they point where you want them to. -In most cases, if you follow the errant `git merge` with `git reset --merge ORIG_HEAD`, this will reset the branch pointers so they look like this: - -.History after `git reset --merge` -image::images/undomerge-reset.png[History after `git reset --merge`.] - -We covered `reset` back in <<_reset>>, so it shouldn't be too hard to figure out what's going on here. -Here's a quick refresher: `reset --hard` usually goes through three steps: - -1. Move the ref that `HEAD` points to. - In this case, we want to move `master` to where it was before the merge commit (`C6`). -2. Make the index look like `HEAD`. -3. Make the working directory look like the index. - -In the case of `--merge`, Git is extra careful with steps 2 and 3 to preserve any changes you've made in the working directory or the index, but otherwise works as though this were a `--hard` reset. - -The downside of this approach is that it's rewriting history, which can be prolematic with a shared repository. -Check out <<_rebase_peril>> for more on what can happen, but if other people have the commits you're rewriting, you should probably avoid `reset`. -This approach also won't work if any other commits have been created since the merge; moving the refs would effectively lose those changes. - -===== Reverse the commit - -If moving the branch pointers around isn't going to work for you, Git gives you the option of making a new commit which undoes all the changes from an existing one. -Git calls this operation a ``revert'', and in this particular scenario, you'd invoke it like this: - -[source,shell] ----- -$ git revert -m 1 HEAD -[master b1d8379] Revert "Merge branch 'topic-branch'" ----- - -The `-m 1` flag tells Git which parent to keep. -When you invoke a merge into `HEAD` (`git merge topic-branch`), the new commit has two parents: the first one is `HEAD` (`C6`), and the second is the tip of the branch being merged in (`C4`). -In this case, we want to undo all the changes introduced by merging in parent #2 (`C4`), while keeping all the content from parent #1 (`C6`). - -The history with the revert commit looks like this: - -.History after `git revert -m 1` -image::images/undomerge-revert.png[History after `git revert -m 1`.] - -The new commit `^M` has exactly the same contents as `C6`, so starting from here it's as if the merge never happened, except that the now-unmerged commits are still in `HEAD`'s history. -Git will get confused if you try to merge `topic-branch` into `master` again: - -[source,shell] ----- -$ git merge topic-branch -Already up-to-date. ----- - -There's nothing in `topic-branch` that isn't already reachable from `master`. -What's worse, if you add work to `topic-branch` and merge again, Git will only bring in the changes _since_ the reverted merge: - -.History with a bad merge -image::images/undomerge-revert2.png[History with a bad merge.] - -The best way around this is to un-revert the original merge, since now you want to bring in the changes that were reverted out, *then* create a new merge commit: - -[source,shell] ----- -$ git revert M -[master 09f0126] Revert "Revert "Merge branch 'topic-branch'"" -$ git merge topic-branch ----- - -.History after re-merging a reverted merge -image::images/undomerge-revert3.png[History after re-merging a reverted merge.] - -In this example, `M` and `^M` cancel out. -`^^M` effectively merges in the changes from `C3` and `C4`, and `C8` merges in the changes from `C7`, so now `topic-branch` is fully merged. +You can modify that message with details about how you resolved the merge if you think it would be helpful to others looking at this merge in the future – why you did what you did, if it's not obvious. === Branch Management -Now that you’ve created, merged, and deleted some branches, let’s look at some branch-management tools that will come in handy when you begin using branches all the time. +Now that you've created, merged, and deleted some branches, let's look at some branch-management tools that will come in handy when you begin using branches all the time. The `git branch` command does more than just create and delete branches. If you run it with no arguments, you get a simple listing of your current branches: @@ -571,7 +508,7 @@ $ git branch testing ---- -Notice the `*` character that prefixes the `master` branch: it indicates the branch that you currently have checked out. +Notice the `*` character that prefixes the `master` branch: it indicates the branch that you currently have checked out (i.e., the branch that `HEAD` points to). This means that if you commit at this point, the `master` branch will be moved forward with your new work. To see the last commit on each branch, you can run `git branch -v`: @@ -583,9 +520,8 @@ $ git branch -v testing 782fd34 add scott to the author list in the readmes ---- -Another useful option to figure out what state your branches are in is to filter this list to branches that you have or have not yet merged into the branch you’re currently on. -The useful `--merged` and `--no-merged` options have been available in Git since version 1.5.6 for this purpose. -To see which branches are already merged into the branch you’re on, you can run `git branch --merged`: +The useful `--merged` and `--no-merged` options can filter this list to branches that you have or have not yet merged into the branch you're currently on. +To see which branches are already merged into the branch you're on, you can run `git branch --merged`: [source,shell] ---- @@ -595,9 +531,9 @@ $ git branch --merged ---- Because you already merged in `iss53` earlier, you see it in your list. -Branches on this list without the `*` in front of them are generally fine to delete with `git branch -d`; you’ve already incorporated their work into another branch, so you’re not going to lose anything. +Branches on this list without the `*` in front of them are generally fine to delete with `git branch -d`; you've already incorporated their work into another branch, so you're not going to lose anything. -To see all the branches that contain work you haven’t yet merged in, you can run `git branch --no-merged`: +To see all the branches that contain work you haven't yet merged in, you can run `git branch --no-merged`: [source,shell] ---- @@ -606,7 +542,7 @@ $ git branch --no-merged ---- This shows your other branch. -Because it contains work that isn’t merged in yet, trying to delete it with `git branch -d` will fail: +Because it contains work that isn't merged in yet, trying to delete it with `git branch -d` will fail: [source,shell] ---- @@ -620,7 +556,7 @@ If you really do want to delete the branch and lose that work, you can force it === Branching Workflows Now that you have the basics of branching and merging down, what can or should you do with them? -In this section, we’ll cover some common workflows that this lightweight branching makes possible, so you can decide if you would like to incorporate it into your own development cycle. +In this section, we'll cover some common workflows that this lightweight branching makes possible, so you can decide if you would like to incorporate it into your own development cycle. ==== Long-Running Branches @@ -628,16 +564,16 @@ Because Git uses a simple three-way merge, merging from one branch into another This means you can have several branches that are always open and that you use for different stages of your development cycle; you can merge regularly from some of them into others. Many Git developers have a workflow that embraces this approach, such as having only code that is entirely stable in their `master` branch – possibly only code that has been or will be released. -They have another parallel branch named develop or next that they work from or use to test stability – it isn’t necessarily always stable, but whenever it gets to a stable state, it can be merged into `master`. -It’s used to pull in topic branches (short-lived branches, like your earlier `iss53` branch) when they’re ready, to make sure they pass all the tests and don’t introduce bugs. +They have another parallel branch named `develop` or `next` that they work from or use to test stability – it isn't necessarily always stable, but whenever it gets to a stable state, it can be merged into `master`. +It's used to pull in topic branches (short-lived branches, like your earlier `iss53` branch) when they're ready, to make sure they pass all the tests and don't introduce bugs. -In reality, we’re talking about pointers moving up the line of commits you’re making. +In reality, we're talking about pointers moving up the line of commits you're making. The stable branches are farther down the line in your commit history, and the bleeding-edge branches are farther up the history. .A linear view of progressive-stability branching image::images/18333fig0318-tn.png[A linear view of progressive-stability branching.] -It’s generally easier to think about them as work silos, where sets of commits graduate to a more stable silo when they’re fully tested. +It's generally easier to think about them as work silos, where sets of commits graduate to a more stable silo when they're fully tested. [[lrbranch_b]] .A ``silo'' view of progressive-stability branching @@ -645,77 +581,84 @@ image::images/18333fig0319-tn.png[A ``silo'' view of progressive-stability branc You can keep doing this for several levels of stability. Some larger projects also have a `proposed` or `pu` (proposed updates) branch that has integrated branches that may not be ready to go into the `next` or `master` branch. -The idea is that your branches are at various levels of stability; when they reach a more stable level, they’re merged into the branch above them. -Again, having multiple long-running branches isn’t necessary, but it’s often helpful, especially when you’re dealing with very large or complex projects. +The idea is that your branches are at various levels of stability; when they reach a more stable level, they're merged into the branch above them. +Again, having multiple long-running branches isn't necessary, but it's often helpful, especially when you're dealing with very large or complex projects. ==== Topic Branches Topic branches, however, are useful in projects of any size. A topic branch is a short-lived branch that you create and use for a single particular feature or related work. -This is something you’ve likely never done with a VCS before because it’s generally too expensive to create and merge branches. -But in Git it’s common to create, work on, merge, and delete branches several times a day. +This is something you've likely never done with a VCS before because it's generally too expensive to create and merge branches. +But in Git it's common to create, work on, merge, and delete branches several times a day. You saw this in the last section with the `iss53` and `hotfix` branches you created. You did a few commits on them and deleted them directly after merging them into your main branch. -This technique allows you to context-switch quickly and completely – because your work is separated into silos where all the changes in that branch have to do with that topic, it’s easier to see what has happened during code review and such. -You can keep the changes there for minutes, days, or months, and merge them in when they’re ready, regardless of the order in which they were created or worked on. +This technique allows you to context-switch quickly and completely – because your work is separated into silos where all the changes in that branch have to do with that topic, it's easier to see what has happened during code review and such. +You can keep the changes there for minutes, days, or months, and merge them in when they're ready, regardless of the order in which they were created or worked on. -Consider an example of doing some work (on `master`), branching off for an issue (`iss91`), working on it for a bit, branching off the second branch to try another way of handling the same thing (`iss91v2`), going back to your master branch and working there for a while, and then branching off there to do some work that you’re not sure is a good idea (`dumbidea` branch). +Consider an example of doing some work (on `master`), branching off for an issue (`iss91`), working on it for a bit, branching off the second branch to try another way of handling the same thing (`iss91v2`), going back to your master branch and working there for a while, and then branching off there to do some work that you're not sure is a good idea (`dumbidea` branch). Your commit history will look something like this: -[[lrbranch_c]] .Multiple topic branches image::images/18333fig0320-tn.png[Multiple topic branches.] -Now, let’s say you decide you like the second solution to your issue best (`iss91v2`); and you showed the `dumbidea` branch to your coworkers, and it turns out to be genius. +Now, let's say you decide you like the second solution to your issue best (`iss91v2`); and you showed the `dumbidea` branch to your coworkers, and it turns out to be genius. You can throw away the original `iss91` branch (losing commits `C5` and `C6`) and merge in the other two. Your history then looks like this: .History after merging `dumbidea` and `iss91v2` image::images/18333fig0321-tn.png[History after merging `dumbidea` and `iss91v2`.] -It’s important to remember when you’re doing all this that these branches are completely local. -When you’re branching and merging, everything is being done only in your Git repository – no server communication is happening. +We will go into more detail about the various possible workflows for your Git project in <<_distributed_git>>, so before you decide which branching scheme your next project will use, be sure to read that chapter. + +It's important to remember when you're doing all this that these branches are completely local. +When you're branching and merging, everything is being done only in your Git repository – no server communication is happening. === Remote Branches -Remote branches are references to the state of branches on your remote repositories. -They’re local branches that you can’t move; they’re moved automatically whenever you do any network communication. +Remote branches are references (pointers) to the state of branches in your remote repositories. +They're local branches that you can't move; they're moved automatically for you whenever you do any network communication. Remote branches act as bookmarks to remind you where the branches on your remote repositories were the last time you connected to them. They take the form `(remote)/(branch)`. For instance, if you wanted to see what the `master` branch on your `origin` remote looked like as of the last time you communicated with it, you would check the `origin/master` branch. If you were working on an issue with a partner and they pushed up an `iss53` branch, you might have your own local `iss53` branch; but the branch on the server would point to the commit at `origin/iss53`. -This may be a bit confusing, so let’s look at an example. -Let’s say you have a Git server on your network at `git.ourcompany.com`. -If you clone from this, Git automatically names it `origin` for you, pulls down all its data, creates a pointer to where its `master` branch is, and names it `origin/master` locally; and you can’t move it. -Git also gives you your own `master` branch starting at the same place as origin’s `master` branch, so you have something to work from. +This may be a bit confusing, so let's look at an example. +Let's say you have a Git server on your network at `git.ourcompany.com`. +If you clone from this, Git's `clone` command automatically names it `origin` for you, pulls down all its data, creates a pointer to where its `master` branch is, and names it `origin/master` locally. +Git also gives you your own local `master` branch starting at the same place as origin's `master` branch, so you have something to work from. + +[NOTE] +.``origin'' is not special +==== +Just like the branch name ``master'' does not have any special meaning in Git, neither does ``origin''. While ``master'' is the default name for a starting branch when you run `git init` which is the only reason it's widely used, ``origin'' is the default name for a remote when you run `git clone`. If you run `git clone -o booyah` instead, then you will have `booyah/master` as your default remote branch. +==== .Server and local repositories after cloning image::images/18333fig0322-tn.png[Server and local repositories after cloning.] -If you do some work on your local master branch, and, in the meantime, someone else pushes to `git.ourcompany.com` and updates its master branch, then your histories move forward differently. -Also, as long as you stay out of contact with your origin server, your `origin/master` pointer doesn’t move. +If you do some work on your local master branch, and, in the meantime, someone else pushes to `git.ourcompany.com` and updates its `master` branch, then your histories move forward differently. +Also, as long as you stay out of contact with your origin server, your `origin/master` pointer doesn't move. .Local and remote work can diverge image::images/18333fig0323-tn.png[Local and remote work can diverge.] To synchronize your work, you run a `git fetch origin` command. -This command looks up which server origin is (in this case, it’s `git.ourcompany.com`), fetches any data from it that you don’t yet have, and updates your local database, moving your `origin/master` pointer to its new, more up-to-date position. +This command looks up which server ``origin'' is (in this case, it's `git.ourcompany.com`), fetches any data from it that you don't yet have, and updates your local database, moving your `origin/master` pointer to its new, more up-to-date position. .`git fetch` updates your remote references image::images/18333fig0324-tn.png[`git fetch` updates your remote references.] -To demonstrate having multiple remote servers and what remote branches for those remote projects look like, let’s assume you have another internal Git server that is used only for development by one of your sprint teams. +To demonstrate having multiple remote servers and what remote branches for those remote projects look like, let's assume you have another internal Git server that is used only for development by one of your sprint teams. This server is at `git.team1.ourcompany.com`. -You can add it as a new remote reference to the project you’re currently working on by running the `git remote add` command as we covered in <<_git_basics_chapter>>. +You can add it as a new remote reference to the project you're currently working on by running the `git remote add` command as we covered in <<_git_basics_chapter>>. Name this remote `teamone`, which will be your shortname for that whole URL. .Adding another server as a remote image::images/18333fig0325-tn.png[Adding another server as a remote.] -Now, you can run `git fetch teamone` to fetch everything the remote `teamone` server has that you don’t have yet. +Now, you can run `git fetch teamone` to fetch everything the remote `teamone` server has that you don't have yet. Because that server is a subset of the data your `origin` server has right now, Git fetches no data but sets a remote branch called `teamone/master` to point to the commit that `teamone` has as its `master` branch. .Remote tracking branch for `teamone/master` @@ -724,8 +667,8 @@ image::images/18333fig0326-tn.png[Remote tracking branch for `teamone/master`.] ==== Pushing When you want to share a branch with the world, you need to push it up to a remote that you have write access to. -Your local branches aren’t automatically synchronized to the remotes you write to – you have to explicitly push the branches you want to share. -That way, you can use private branches for work you don’t want to share, and push up only the topic branches you want to collaborate on. +Your local branches aren't automatically synchronized to the remotes you write to – you have to explicitly push the branches you want to share. +That way, you can use private branches for work you don't want to share, and push up only the topic branches you want to collaborate on. If you have a branch named `serverfix` that you want to work on with others, you can push it up the same way you pushed your first branch. Run `git push (remote) (branch)`: @@ -738,18 +681,18 @@ Delta compression using up to 8 threads. Compressing objects: 100% (15/15), done. Writing objects: 100% (24/24), 1.91 KiB | 0 bytes/s, done. Total 24 (delta 2), reused 0 (delta 0) -To git@github.com:schacon/simplegit.git +To https://github.com/schacon/simplegit * [new branch] serverfix -> serverfix ---- This is a bit of a shortcut. -Git automatically expands the `serverfix` branchname out to `refs/heads/serverfix:refs/heads/serverfix`, which means, ``Take my serverfix local branch and push it to update the remote’s serverfix branch.'' -We’ll go over the `refs/heads/` part in detail in <<_git_internals>>, but you can generally leave it off. -You can also do `git push origin serverfix:serverfix`, which does the same thing – it says, ``Take my serverfix and make it the remote’s serverfix.'' +Git automatically expands the `serverfix` branchname out to `refs/heads/serverfix:refs/heads/serverfix`, which means, ``Take my serverfix local branch and push it to update the remote's serverfix branch.'' +We'll go over the `refs/heads/` part in detail in <<_git_internals>>, but you can generally leave it off. +You can also do `git push origin serverfix:serverfix`, which does the same thing – it says, ``Take my serverfix and make it the remote's serverfix.'' You can use this format to push a local branch into a remote branch that is named differently. -If you didn’t want it to be called `serverfix` on the remote, you could instead run `git push origin serverfix:awesomebranch` to push your local `serverfix` branch to the `awesomebranch` branch on the remote project. +If you didn't want it to be called `serverfix` on the remote, you could instead run `git push origin serverfix:awesomebranch` to push your local `serverfix` branch to the `awesomebranch` branch on the remote project. -The next time one of your collaborators fetches from the server, they will get a reference to where the server’s version of `serverfix` is under the remote branch `origin/serverfix`: +The next time one of your collaborators fetches from the server, they will get a reference to where the server's version of `serverfix` is under the remote branch `origin/serverfix`: [source,shell] ---- @@ -758,12 +701,12 @@ remote: Counting objects: 7, done. remote: Compressing objects: 100% (2/2), done. remote: Total 3 (delta 0), reused 3 (delta 0) Unpacking objects: 100% (3/3), done. -From git@github.com:schacon/simplegit +From https://github.com/schacon/simplegit * [new branch] serverfix -> origin/serverfix ---- -It’s important to note that when you do a fetch that brings down new remote branches, you don’t automatically have local, editable copies of them. -In other words, in this case, you don’t have a new `serverfix` branch – you only have an `origin/serverfix` pointer that you can’t modify. +It's important to note that when you do a fetch that brings down new remote branches, you don't automatically have local, editable copies of them. +In other words, in this case, you don't have a new `serverfix` branch – you only have an `origin/serverfix` pointer that you can't modify. To merge this work into your current working branch, you can run `git merge origin/serverfix`. If you want your own `serverfix` branch that you can work on, you can base it off your remote branch: @@ -777,18 +720,18 @@ Switched to a new branch 'serverfix' This gives you a local branch that you can work on that starts where `origin/serverfix` is. -==== Tracking/Upstream Branches +==== Tracking Branches Checking out a local branch from a remote branch automatically creates what is called a ``tracking branch'' (or sometimes an ``upstream branch''). Tracking branches are local branches that have a direct relationship to a remote branch. -If you’re on a tracking branch and type `git push`, Git automatically knows which server and branch to push to. +If you're on a tracking branch and type `git push`, Git automatically knows which server and branch to push to. Also, running `git pull` while on one of these branches fetches all the remote references and then automatically merges in the corresponding remote branch. When you clone a repository, it generally automatically creates a `master` branch that tracks `origin/master`. -That’s why `git push` and `git pull` work out of the box with no other arguments. -However, you can set up other tracking branches if you wish – ones that track branches on other remotes, or don’t track the `master` branch. +That's why `git push` and `git pull` work out of the box with no other arguments. +However, you can set up other tracking branches if you wish – ones that track branches on other remotes, or don't track the `master` branch. The simple case is the example you just saw, running `git checkout -b [branch] [remotename]/[branch]`. -If you have Git version 1.6.2 or later, you can also use the `--track` shorthand: +This is a common enough operation that git provides the `--track` shorthand: [source,shell] ---- @@ -806,31 +749,65 @@ Branch sf set up to track remote branch serverfix from origin. Switched to a new branch 'sf' ---- -Now, your local branch sf will automatically push to and pull from origin/serverfix. +Now, your local branch `sf` will automatically push to and pull from `origin/serverfix`. + +If you already have a local branch and want to set it to a remote branch you just pulled down, or want to change the upstream branch you're tracking, you can use the `-u` or `--set-upstream-to` option to `git branch` to explicitly set it at any time. + +[source,shell] +---- +$ git branch -u origin/serverfix +Branch serverfix set up to track remote branch serverfix from origin. +---- + +[NOTE] +.Upstream shorthand +==== +When you have an tracking branch set up, you can reference it with the `@{upstream}` or `@{u}` shorthand. So if you're on the `master` branch and it's tracking `origin/master`, you can say something like `git merge @{u}` instead of `git merge origin/master` if you wish. +==== + +If you want to see what tracking branches you have set up, you can use the `-vv` option to `git branch`. This will list out your local branches with more information including what each branch is tracking and if your local branch is ahead, behind or both. + +[source,shell] +---- +$ git branch -vv + iss53 7e424c3 [origin/iss53: ahead 2] forgot the brackets + master 1ae2a45 [origin/master] deploying index fix +* serverfix f8674d9 [teamone/server-fix-good: ahead 3, behind 1] this should do it + testing 5ea463a trying something new +---- + +So here we can see that our `iss53` branch is tracking `origin/iss53` and is ``ahead'' by two, meaning that we have two commits locally that are not pushed to the server. We can also see that our `master` branch is tracking `origin/master` and is up to date. Next we can see that our `serverfix` branch is tracking the `server-fix-good` branch on our `teamone` server and is ahead by three and behind by one, meaning that there is one commit on the server we haven't merged in yet and three commits locally that we haven't pushed. Finally we can see that our `testing` branch is not tracking any remote branch. + +It's important to note that these numbers are only since the last time you fetched from each server. This command does not reach out to the servers, it's telling you about what it has cached from these servers locally. If you want totally up to date ahead and behind numbers, you'll need to fetch from all your remotes right before running this. You could do that like this: `$ git fetch --all; git branch -vv` + +==== Pulling + +While the `git fetch` command will fetch down all the changes on the server that you don't have yet, it will not modify your working directory at all. +It will simply get the data for you and let you merge it yourself. +However, there is a command called `git pull` which is essentially a `git fetch` immediately followed by a `git merge` in most cases. +If you have a tracking branch set up as demonstrated in the last section, either by explicitly setting it or by having it created for you by the `clone` or `checkout` commands, `git pull` will look up what server and branch your current branch is tracking, fetch from that server and then try to merge in that remote branch. + +There are other uses of the `pull` command that we'll address in [[_git_tools]], but generally it's better to simply use the `fetch` and `merge` commands explicitly as the magic of `git pull` can often be confusing. ==== Deleting Remote Branches -Suppose you’re done with a remote branch – say, you and your collaborators are finished with a feature and have merged it into your remote’s `master` branch (or whatever branch your stable codeline is in). -You can delete a remote branch using the rather obtuse syntax `git push [remotename] :[branch]`. +Suppose you're done with a remote branch – say you and your collaborators are finished with a feature and have merged it into your remote's `master` branch (or whatever branch your stable codeline is in). +You can delete a remote branch using the `--delete` option to `git push`. If you want to delete your `serverfix` branch from the server, you run the following: [source,shell] ---- -$ git push origin :serverfix -To git@github.com:schacon/simplegit.git +$ git push origin --delete serverfix +To https://github.com/schacon/simplegit - [deleted] serverfix ---- -Boom. -No more branch on your server. -You may want to dog-ear this page, because you’ll need that command, and you’ll likely forget the syntax. -A way to remember this command is by recalling the `git push [remotename] [localbranch]:[remotebranch]` syntax that we went over a bit earlier. -If you leave off the `[localbranch]` portion, then you’re basically saying, ``Take nothing on my side and make it be `[remotebranch]`.'' +Basically all this does is remove the pointer from the server. The Git server will generally keep the data there for a while until a garbage collection runs, so if it was accidentally deleted, it's often easy to recover. === Rebasing In Git, there are two main ways to integrate changes from one branch into another: the `merge` and the `rebase`. -In this section you’ll learn what rebasing is, how to do it, why it’s a pretty amazing tool, and in what cases you won’t want to use it. +In this section you'll learn what rebasing is, how to do it, why it's a pretty amazing tool, and in what cases you won't want to use it. ==== The Basic Rebase @@ -839,10 +816,9 @@ If you go back to an earlier example from <<_basic_merging>>, you can see that y .Simple divergent history image::images/18333fig0327-tn.png[Simple divergent history.] -The easiest way to integrate the branches, as we’ve already covered, is the `merge` command. -It performs a three-way merge between the two latest branch snapshots (`C3` and `C4`) and the most recent common ancestor of the two (`C2`), creating a new snapshot (and commit), as shown in <>. +The easiest way to integrate the branches, as we've already covered, is the `merge` command. +It performs a three-way merge between the two latest branch snapshots (`C3` and `C4`) and the most recent common ancestor of the two (`C2`), creating a new snapshot (and commit). -[[rbdiag_b]] .Merging to integrate diverged work history image::images/18333fig0328-tn.png[Merging to integrate diverged work history.] @@ -850,7 +826,7 @@ However, there is another way: you can take the patch of the change that was int In Git, this is called _rebasing_. With the `rebase` command, you can take all the changes that were committed on one branch and replay them on another one. -In this example, you’d run the following: +In this example, you'd run the following: [source,shell] ---- @@ -860,10 +836,8 @@ First, rewinding head to replay your work on top of it... Applying: added staged command ---- -It works by going to the common ancestor of the two branches (the one you’re on and the one you’re rebasing onto), getting the diff introduced by each commit of the branch you’re on, saving those diffs to temporary files, resetting the current branch to the same commit as the branch you are rebasing onto, and finally applying each change in turn. -<> illustrates this process. +It works by going to the common ancestor of the two branches (the one you're on and the one you're rebasing onto), getting the diff introduced by each commit of the branch you're on, saving those diffs to temporary files, resetting the current branch to the same commit as the branch you are rebasing onto, and finally applying each change in turn. -[[rbdiag_c]] .Rebasing the change introduced in `C3` onto `C4` image::images/18333fig0329-tn.png[Rebasing the change introduced in `C3` onto `C4`.] @@ -876,11 +850,11 @@ Now, the snapshot pointed to by `C3'` is exactly the same as the one that was po There is no difference in the end product of the integration, but rebasing makes for a cleaner history. If you examine the log of a rebased branch, it looks like a linear history: it appears that all the work happened in series, even when it originally happened in parallel. -Often, you’ll do this to make sure your commits apply cleanly on a remote branch – perhaps in a project to which you’re trying to contribute but that you don’t maintain. -In this case, you’d do your work in a branch and then rebase your work onto `origin/master` when you were ready to submit your patches to the main project. -That way, the maintainer doesn’t have to do any integration work – just a fast-forward or a clean apply. +Often, you'll do this to make sure your commits apply cleanly on a remote branch – perhaps in a project to which you're trying to contribute but that you don't maintain. +In this case, you'd do your work in a branch and then rebase your work onto `origin/master` when you were ready to submit your patches to the main project. +That way, the maintainer doesn't have to do any integration work – just a fast-forward or a clean apply. -Note that the snapshot pointed to by the final commit you end up with, whether it’s the last of the rebased commits for a rebase or the final merge commit after a merge, is the same snapshot – it’s only the history that is different. +Note that the snapshot pointed to by the final commit you end up with, whether it's the last of the rebased commits for a rebase or the final merge commit after a merge, is the same snapshot – it's only the history that is different. Rebasing replays changes from one line of work onto another in the order they were introduced, whereas merging takes the endpoints and merges them together. ==== More Interesting Rebases @@ -895,8 +869,8 @@ Finally, you went back to your server branch and did a few more commits. .A history with a topic branch off another topic branch image::images/18333fig0331-tn.png[A history with a topic branch off another topic branch.] -Suppose you decide that you want to merge your client-side changes into your mainline for a release, but you want to hold off on the server-side changes until it’s tested further. -You can take the changes on client that aren’t on server (`C8` and `C9`) and replay them on your master branch by using the `--onto` option of `git rebase`: +Suppose you decide that you want to merge your client-side changes into your mainline for a release, but you want to hold off on the server-side changes until it's tested further. +You can take the changes on client that aren't on server (`C8` and `C9`) and replay them on your master branch by using the `--onto` option of `git rebase`: [source,shell] ---- @@ -904,7 +878,7 @@ $ git rebase --onto master server client ---- This basically says, ``Check out the client branch, figure out the patches from the common ancestor of the `client` and `server` branches, and then replay them onto `master`.'' -It’s a bit complex, but the result is pretty cool. +It's a bit complex, but the result is pretty cool. .Rebasing a topic branch off another topic branch image::images/18333fig0332-tn.png[Rebasing a topic branch off another topic branch.] @@ -921,7 +895,7 @@ $ git merge client .Fast-forwarding your master branch to include the client branch changes image::images/18333fig0333-tn.png[Fast-forwarding your master branch to include the client branch changes.] -Let’s say you decide to pull in your server branch as well. +Let's say you decide to pull in your server branch as well. You can rebase the server branch onto the master branch without having to check it out first by running `git rebase [basebranch] [topicbranch]` – which checks out the topic branch (in this case, `server`) for you and replays it onto the base branch (`master`): [source,shell] @@ -943,7 +917,7 @@ $ git checkout master $ git merge server ---- -You can remove the `client` and `server` branches because all the work is integrated and you don’t need them anymore, leaving your history for this entire process looking like <>: +You can remove the `client` and `server` branches because all the work is integrated and you don't need them anymore, leaving your history for this entire process looking like <>: [source,shell] ---- @@ -958,17 +932,17 @@ image::images/18333fig0335-tn.png[Final commit history.] [[_rebase_peril]] ==== The Perils of Rebasing -Ahh, but the bliss of rebasing isn’t without its drawbacks, which can be summed up in a single line: +Ahh, but the bliss of rebasing isn't without its drawbacks, which can be summed up in a single line: -**Do not rebase commits that you have pushed to a public repository.** +**Do not rebase commits that exist outside your repository.** -If you follow that guideline, you’ll be fine. -If you don’t, people will hate you, and you’ll be scorned by friends and family. +If you follow that guideline, you'll be fine. +If you don't, people will hate you, and you'll be scorned by friends and family. -When you rebase stuff, you’re abandoning existing commits and creating new ones that are similar but different. +When you rebase stuff, you're abandoning existing commits and creating new ones that are similar but different. If you push commits somewhere and others pull them down and base work on them, and then you rewrite those commits with `git rebase` and push them up again, your collaborators will have to re-merge their work and things will get messy when you try to pull their work back into yours. -Let’s look at an example of how rebasing work that you’ve made public can cause problems. +Let's look at an example of how rebasing work that you've made public can cause problems. Suppose you clone from a central server and then do some work off that. Your commit history looks like this: @@ -984,8 +958,8 @@ image::images/18333fig0337-tn.png[Fetch more commits, and merge them into your w Next, the person who pushed the merged work decides to go back and rebase their work instead; they do a `git push --force` to overwrite the history on the server. You then fetch from that server, bringing down the new commits. -.Someone pushes rebased commits, abandoning commits you’ve based your work on -image::images/18333fig0338-tn.png[Someone pushes rebased commits, abandoning commits you’ve based your work on.] +.Someone pushes rebased commits, abandoning commits you've based your work on +image::images/18333fig0338-tn.png[Someone pushes rebased commits, abandoning commits you've based your work on.] Now you're both in a pickle. If you do a `git pull`, you'll create a merge commit which includes both lines of history, and your repository will look like this: @@ -993,20 +967,20 @@ If you do a `git pull`, you'll create a merge commit which includes both lines o .You merge in the same work again into a new merge commit image::images/18333fig0339-tn.png[You merge in the same work again into a new merge commit.] -If you run a `git log` when your history looks like this, you’ll see two commits that have the same author, date, and message, which will be confusing. -Furthermore, if you push this history back up to the server, you’ll reintroduce all those rebased commits to the central server, which can further confuse people. +If you run a `git log` when your history looks like this, you'll see two commits that have the same author, date, and message, which will be confusing. +Furthermore, if you push this history back up to the server, you'll reintroduce all those rebased commits to the central server, which can further confuse people. It's pretty safe to assume that the other developer doesn't want `C4` and `C6` to be in the history; that's why she rebased in the first place. Fortunately, Git has a feature to make this easier. If you use the `--rebase` flag to `git pull`, Git will do a fetch (which updates the remote branch to `C4'`) followed by a _rebase_, rather than a merge. This is exactly what you want; your local commits will follow the new remote commits in a straight line, and the abandoned commits will stay lost. -In fact, this functionality is so useful, that you can make that flag the default; simply do `git config --global pull.rebase true`. +In fact, this functionality is so useful that you can make that flag the default; simply do `git config --global pull.rebase true`. This will do a tiny rebase every time you type `git pull`, effectively making the `--rebase` flag the default. If your workflow includes making local merges, set this configuration value to `preserve` rather than `true`, and `git pull` won't flatten your merge commits. -If you treat rebasing as a way to clean up and work with commits before you push them, and if you only rebase commits that have never been available publicly, then you’ll be fine. -If you rebase commits that have already been pushed publicly, and people may have based work on those commits, then you may be in for some frustrating trouble. +If you treat rebasing as a way to clean up and work with commits before you push them, and if you only rebase commits that have never been available publicly, then you'll be fine. +If you rebase commits that have already been pushed publicly, and people may have based work on those commits, then you may be in for some frustrating trouble, and the scorn of your teammates. So don't do it. But if you do, tell everyone who's working on that branch to `git pull --rebase`. @@ -1016,24 +990,25 @@ But if you do, tell everyone who's working on that branch to `git pull --rebase` Now that you've seen rebasing and merging in action, you may be wondering which one is better. Before we can answer this, let's step back a bit and talk about what history means. -One point of view on this is that your repository's commit history is a record of what actually happened. +One point of view on this is that your repository's commit history is a *record of what actually happened.* It's a historical document, valuable in its own right, and shouldn't be tampered with. From this angle, changing the commit history is almost blasphemous; you're _lying_ about what actually transpired. So what if there was a messy series of merge commits? That's how it happened, and the repository should preserve that for posterity. -The opposing point of view is that the commit history is the story of how your project was made. +The opposing point of view is that the commit history is the *story of how your project was made.* You wouldn't publish the first draft of a book, and the manual for how to maintain your software deserves careful editing. -This is the camp that uses tools like rebase and filter-branch when they are appropriate for telling the story in the way that's best for future readers. -If that requires a force-push every now and then, so be it. +This is the camp that uses tools like rebase and filter-branch to tell the story in the way that's best for future readers. Now, to the question of whether merging or rebasing is better: hopefully you'll see that it's not that simple. Git is a powerful tool, and allows you to do many things to and with your history, but every team and every project is different. Now that you know how both of these things work, it's up to you to decide which one is best for your particular situation. +In general the way to get the best of both worlds is to rebase local changes you've made but haven't shared yet before you push them in order to clean up your story, but never rebase anything you've pushed somewhere. + === Summary -We’ve covered basic branching and merging in Git. +We've covered basic branching and merging in Git. You should feel comfortable creating and switching to new branches, switching between branches and merging local branches together. You should also be able to share your branches by pushing them to a shared server, working with others on shared branches and rebasing your branches before they are shared. Next, we'll cover what you'll need to run your own Git repository-hosting server. diff --git a/book/03-git-branching/images/18333fig0301-tn.png b/book/03-git-branching/images/18333fig0301-tn.png index 6e2df9252..832b34b24 100644 Binary files a/book/03-git-branching/images/18333fig0301-tn.png and b/book/03-git-branching/images/18333fig0301-tn.png differ diff --git a/book/03-git-branching/images/18333fig0302-tn.png b/book/03-git-branching/images/18333fig0302-tn.png index 9ba06abe3..a42301cd1 100644 Binary files a/book/03-git-branching/images/18333fig0302-tn.png and b/book/03-git-branching/images/18333fig0302-tn.png differ diff --git a/book/03-git-branching/images/18333fig0303-tn.png b/book/03-git-branching/images/18333fig0303-tn.png index 624531fe4..6b766a32b 100644 Binary files a/book/03-git-branching/images/18333fig0303-tn.png and b/book/03-git-branching/images/18333fig0303-tn.png differ diff --git a/book/03-git-branching/images/18333fig0304-tn.png b/book/03-git-branching/images/18333fig0304-tn.png index 4e2066094..6bec40507 100644 Binary files a/book/03-git-branching/images/18333fig0304-tn.png and b/book/03-git-branching/images/18333fig0304-tn.png differ diff --git a/book/03-git-branching/images/18333fig0305-tn.png b/book/03-git-branching/images/18333fig0305-tn.png index 4bc1b7b91..8eae46cd8 100644 Binary files a/book/03-git-branching/images/18333fig0305-tn.png and b/book/03-git-branching/images/18333fig0305-tn.png differ diff --git a/book/03-git-branching/images/18333fig0306-tn.png b/book/03-git-branching/images/18333fig0306-tn.png index 908e3fbf4..0057665c0 100644 Binary files a/book/03-git-branching/images/18333fig0306-tn.png and b/book/03-git-branching/images/18333fig0306-tn.png differ diff --git a/book/03-git-branching/images/18333fig0307-tn.png b/book/03-git-branching/images/18333fig0307-tn.png index 1df0edbb3..d1d5714ef 100644 Binary files a/book/03-git-branching/images/18333fig0307-tn.png and b/book/03-git-branching/images/18333fig0307-tn.png differ diff --git a/book/03-git-branching/images/18333fig0308-tn.png b/book/03-git-branching/images/18333fig0308-tn.png index 58e7383c6..7fa16faed 100644 Binary files a/book/03-git-branching/images/18333fig0308-tn.png and b/book/03-git-branching/images/18333fig0308-tn.png differ diff --git a/book/03-git-branching/images/18333fig0309-tn.png b/book/03-git-branching/images/18333fig0309-tn.png index 79f47002c..25bb43f1d 100644 Binary files a/book/03-git-branching/images/18333fig0309-tn.png and b/book/03-git-branching/images/18333fig0309-tn.png differ diff --git a/book/03-git-branching/images/18333fig0310-tn.png b/book/03-git-branching/images/18333fig0310-tn.png index 73795441d..9d4458f7c 100644 Binary files a/book/03-git-branching/images/18333fig0310-tn.png and b/book/03-git-branching/images/18333fig0310-tn.png differ diff --git a/book/03-git-branching/images/18333fig0311-tn.png b/book/03-git-branching/images/18333fig0311-tn.png index 71daf365b..7e5283a45 100644 Binary files a/book/03-git-branching/images/18333fig0311-tn.png and b/book/03-git-branching/images/18333fig0311-tn.png differ diff --git a/book/03-git-branching/images/18333fig0312-tn.png b/book/03-git-branching/images/18333fig0312-tn.png index 62ef40805..86f748133 100644 Binary files a/book/03-git-branching/images/18333fig0312-tn.png and b/book/03-git-branching/images/18333fig0312-tn.png differ diff --git a/book/03-git-branching/images/18333fig0313-tn.png b/book/03-git-branching/images/18333fig0313-tn.png index be1668a54..9f5569425 100644 Binary files a/book/03-git-branching/images/18333fig0313-tn.png and b/book/03-git-branching/images/18333fig0313-tn.png differ diff --git a/book/03-git-branching/images/18333fig0314-tn.png b/book/03-git-branching/images/18333fig0314-tn.png index 006a22fe6..442788dab 100644 Binary files a/book/03-git-branching/images/18333fig0314-tn.png and b/book/03-git-branching/images/18333fig0314-tn.png differ diff --git a/book/03-git-branching/images/18333fig0315-tn.png b/book/03-git-branching/images/18333fig0315-tn.png index 492ebcc74..73695f66b 100644 Binary files a/book/03-git-branching/images/18333fig0315-tn.png and b/book/03-git-branching/images/18333fig0315-tn.png differ diff --git a/book/03-git-branching/images/18333fig0316-tn.png b/book/03-git-branching/images/18333fig0316-tn.png index 024323bd1..97dac52bf 100644 Binary files a/book/03-git-branching/images/18333fig0316-tn.png and b/book/03-git-branching/images/18333fig0316-tn.png differ diff --git a/book/03-git-branching/images/18333fig0317-tn.png b/book/03-git-branching/images/18333fig0317-tn.png index f88e3623b..e914f678d 100644 Binary files a/book/03-git-branching/images/18333fig0317-tn.png and b/book/03-git-branching/images/18333fig0317-tn.png differ diff --git a/book/03-git-branching/images/18333fig0322-tn.png b/book/03-git-branching/images/18333fig0322-tn.png index c5f1016c2..72f2bd5a1 100644 Binary files a/book/03-git-branching/images/18333fig0322-tn.png and b/book/03-git-branching/images/18333fig0322-tn.png differ diff --git a/book/03-git-branching/images/18333fig0323-tn.png b/book/03-git-branching/images/18333fig0323-tn.png index 5520b32e0..39b4c52e8 100644 Binary files a/book/03-git-branching/images/18333fig0323-tn.png and b/book/03-git-branching/images/18333fig0323-tn.png differ diff --git a/book/03-git-branching/images/18333fig0324-tn.png b/book/03-git-branching/images/18333fig0324-tn.png index b6664e146..b08ae6178 100644 Binary files a/book/03-git-branching/images/18333fig0324-tn.png and b/book/03-git-branching/images/18333fig0324-tn.png differ diff --git a/book/03-git-branching/images/18333fig0325-tn.png b/book/03-git-branching/images/18333fig0325-tn.png index 0e373959a..6fd062adf 100644 Binary files a/book/03-git-branching/images/18333fig0325-tn.png and b/book/03-git-branching/images/18333fig0325-tn.png differ diff --git a/book/03-git-branching/images/18333fig0326-tn.png b/book/03-git-branching/images/18333fig0326-tn.png index 1292a64cf..46f771e80 100644 Binary files a/book/03-git-branching/images/18333fig0326-tn.png and b/book/03-git-branching/images/18333fig0326-tn.png differ diff --git a/book/03-git-branching/images/18333fig0331-tn.png b/book/03-git-branching/images/18333fig0331-tn.png index 652361868..31b68abf8 100644 Binary files a/book/03-git-branching/images/18333fig0331-tn.png and b/book/03-git-branching/images/18333fig0331-tn.png differ diff --git a/book/03-git-branching/images/18333fig0332-tn.png b/book/03-git-branching/images/18333fig0332-tn.png index 6659792bc..42f485077 100644 Binary files a/book/03-git-branching/images/18333fig0332-tn.png and b/book/03-git-branching/images/18333fig0332-tn.png differ diff --git a/book/03-git-branching/images/18333fig0333-tn.png b/book/03-git-branching/images/18333fig0333-tn.png index d143079d1..f86dd0ba8 100644 Binary files a/book/03-git-branching/images/18333fig0333-tn.png and b/book/03-git-branching/images/18333fig0333-tn.png differ diff --git a/book/03-git-branching/images/18333fig0334-tn.png b/book/03-git-branching/images/18333fig0334-tn.png index 4f0b816c3..f3a7fb33d 100644 Binary files a/book/03-git-branching/images/18333fig0334-tn.png and b/book/03-git-branching/images/18333fig0334-tn.png differ diff --git a/book/03-git-branching/images/18333fig0335-tn.png b/book/03-git-branching/images/18333fig0335-tn.png index e49ae207f..afe736939 100644 Binary files a/book/03-git-branching/images/18333fig0335-tn.png and b/book/03-git-branching/images/18333fig0335-tn.png differ diff --git a/book/03-git-branching/images/18333fig0336-tn.png b/book/03-git-branching/images/18333fig0336-tn.png index fda38ac82..9d53d76ac 100644 Binary files a/book/03-git-branching/images/18333fig0336-tn.png and b/book/03-git-branching/images/18333fig0336-tn.png differ diff --git a/book/03-git-branching/images/18333fig0337-tn.png b/book/03-git-branching/images/18333fig0337-tn.png index 9c4ba2107..5a621b7fb 100644 Binary files a/book/03-git-branching/images/18333fig0337-tn.png and b/book/03-git-branching/images/18333fig0337-tn.png differ diff --git a/book/03-git-branching/images/18333fig0338-tn.png b/book/03-git-branching/images/18333fig0338-tn.png index 8c504d9e7..24c7ae0f0 100644 Binary files a/book/03-git-branching/images/18333fig0338-tn.png and b/book/03-git-branching/images/18333fig0338-tn.png differ diff --git a/book/03-git-branching/images/18333fig0339-tn.png b/book/03-git-branching/images/18333fig0339-tn.png index 7e1a9be38..25dea81da 100644 Binary files a/book/03-git-branching/images/18333fig0339-tn.png and b/book/03-git-branching/images/18333fig0339-tn.png differ diff --git a/book/03-git-branching/images/undomerge-reset.png b/book/03-git-branching/images/undomerge-reset.png index 1f5aeb632..04edd125f 100644 Binary files a/book/03-git-branching/images/undomerge-reset.png and b/book/03-git-branching/images/undomerge-reset.png differ diff --git a/book/03-git-branching/images/undomerge-revert.png b/book/03-git-branching/images/undomerge-revert.png index 6ee789272..8b3ede3bd 100644 Binary files a/book/03-git-branching/images/undomerge-revert.png and b/book/03-git-branching/images/undomerge-revert.png differ diff --git a/book/03-git-branching/images/undomerge-revert2.png b/book/03-git-branching/images/undomerge-revert2.png index 9e85e27e0..cfdeafd8c 100644 Binary files a/book/03-git-branching/images/undomerge-revert2.png and b/book/03-git-branching/images/undomerge-revert2.png differ diff --git a/book/03-git-branching/images/undomerge-revert3.png b/book/03-git-branching/images/undomerge-revert3.png index 57e232a03..087c82612 100644 Binary files a/book/03-git-branching/images/undomerge-revert3.png and b/book/03-git-branching/images/undomerge-revert3.png differ diff --git a/book/03-git-branching/images/undomerge-start.png b/book/03-git-branching/images/undomerge-start.png index 7fb10d591..6b842da1b 100644 Binary files a/book/03-git-branching/images/undomerge-start.png and b/book/03-git-branching/images/undomerge-start.png differ diff --git a/book/05-distributed-git/1-distributed-git.asc b/book/05-distributed-git/1-distributed-git.asc index 3b40473f3..195729319 100644 --- a/book/05-distributed-git/1-distributed-git.asc +++ b/book/05-distributed-git/1-distributed-git.asc @@ -1,3 +1,4 @@ +[[_distributed_git]] == Distributed Git Now that you have a remote Git repository set up as a point for all the developers to share their code, and you’re familiar with basic Git commands in a local workflow, you’ll look at how to utilize some of the distributed workflows that Git affords you. diff --git a/book/07-git-tools/1-git-tools.asc b/book/07-git-tools/1-git-tools.asc index b300b5f5c..6621988fd 100644 --- a/book/07-git-tools/1-git-tools.asc +++ b/book/07-git-tools/1-git-tools.asc @@ -1798,6 +1798,92 @@ Or, to compare what is in your `rack` subdirectory with what the `master` branch $ git diff-tree -p rack_remote/master ---- +[[_undoing_merges]] +==== Undoing Merges + +Now that you know how to create a merge commit, you'll probably make some by mistake. +One of the great things about working with Git is that it's okay to make mistakes, because it's possible (and in many cases easy) to fix them. + +Merge commits are no different. +Let's say you started work on a topic branch, accidentally merged it into `master`, and now your commit history looks like this: + +.Accidental merge commit +image::images/undomerge-start.png[Accidental merge commit.] + +There are two ways to approach this problem, depending on what your desired outcome is. + +===== Fix the references + +If the unwanted merge commit only exists on your local repository, the easiest and best solution is to move the branches so that they point where you want them to. +In most cases, if you follow the errant `git merge` with `git reset --merge ORIG_HEAD`, this will reset the branch pointers so they look like this: + +.History after `git reset --merge` +image::images/undomerge-reset.png[History after `git reset --merge`.] + +We covered `reset` back in <<_reset>>, so it shouldn't be too hard to figure out what's going on here. +Here's a quick refresher: `reset --hard` usually goes through three steps: + +. Move the branch HEAD points to. + In this case, we want to move `master` to where it was before the merge commit (`C6`). +. Make the index look like HEAD. +. Make the working directory look like the index. + +In the case of `--merge`, Git is extra careful with steps 2 and 3 to preserve any changes you've made in the working directory or the index, but otherwise works as though this were a `--hard` reset. + +The downside of this approach is that it's rewriting history, which can be prolematic with a shared repository. +Check out <<_rebase_peril>> for more on what can happen; the short version is that if other people have the commits you're rewriting, you should probably avoid `reset`. +This approach also won't work if any other commits have been created since the merge; moving the refs would effectively lose those changes. + +===== Reverse the commit + +If moving the branch pointers around isn't going to work for you, Git gives you the option of making a new commit which undoes all the changes from an existing one. +Git calls this operation a ``revert'', and in this particular scenario, you'd invoke it like this: + +[source,shell] +---- +$ git revert -m 1 HEAD +[master b1d8379] Revert "Merge branch 'topic-branch'" +---- + +The `-m 1` flag indicates which parent is the ``mainline'' and should be kept. +When you invoke a merge into `HEAD` (`git merge topic-branch`), the new commit has two parents: the first one is `HEAD` (`C6`), and the second is the tip of the branch being merged in (`C4`). +In this case, we want to undo all the changes introduced by merging in parent #2 (`C4`), while keeping all the content from parent #1 (`C6`). + +The history with the revert commit looks like this: + +.History after `git revert -m 1` +image::images/undomerge-revert.png[History after `git revert -m 1`.] + +The new commit `^M` has exactly the same contents as `C6`, so starting from here it's as if the merge never happened, except that the now-unmerged commits are still in `HEAD`'s history. +Git will get confused if you try to merge `topic-branch` into `master` again: + +[source,shell] +---- +$ git merge topic-branch +Already up-to-date. +---- + +There's nothing in `topic-branch` that isn't already reachable from `master`. +What's worse, if you add work to `topic-branch` and merge again, Git will only bring in the changes _since_ the reverted merge: + +.History with a bad merge +image::images/undomerge-revert2.png[History with a bad merge.] + +The best way around this is to un-revert the original merge, since now you want to bring in the changes that were reverted out, *then* create a new merge commit: + +[source,shell] +---- +$ git revert ^M +[master 09f0126] Revert "Revert "Merge branch 'topic-branch'"" +$ git merge topic-branch +---- + +.History after re-merging a reverted merge +image::images/undomerge-revert3.png[History after re-merging a reverted merge.] + +In this example, `M` and `^M` cancel out. +`^^M` effectively merges in the changes from `C3` and `C4`, and `C8` merges in the changes from `C7`, so now `topic-branch` is fully merged. + === Notes === Bundle diff --git a/diagram-source/progit.graffle b/diagram-source/progit.graffle index cf562aa49..dbabcd5b0 100644 --- a/diagram-source/progit.graffle +++ b/diagram-source/progit.graffle @@ -26,7 +26,7 @@ MasterSheets ModificationDate - 2014-06-02 02:56:54 +0000 + 2014-06-04 03:55:20 +0000 Modifier Ben Straub NotesVisible @@ -412,8 +412,8 @@ 1364 Points - {241.37365263256353, 198.2100304482656} - {207.90033778123629, 172.52998060517993} + {241.37365277077836, 198.21003019988325} + {207.90033814423705, 172.52997995284036} Style @@ -1186,8 +1186,8 @@ 1351 Points - {289.18137361639054, 261.22000000002248} - {289.1812178061229, 237.97999999996753} + {289.18137421065751, 261.22000000002231} + {289.18121912727219, 237.97999999996682} Style @@ -1360,8 +1360,8 @@ 1347 Points - {264.52123140627316, 200.49120618530708} - {229.204957059874, 174.72880418340281} + {264.52123153552304, 200.4912060960396} + {229.20495737422726, 174.72880396629213} Style @@ -1670,8 +1670,8 @@ 1360 Points - {349.15892886507885, 174.72859662870641} - {313.8412479672138, 200.4914118739805} + {349.15892938989487, 174.7285969912156} + {313.84124924365858, 200.49141275566646} Style @@ -2008,8 +2008,8 @@ 1351 Points - {289.18137361639054, 261.22000000002248} - {289.1812178061229, 237.97999999996753} + {289.18137421065751, 261.22000000002231} + {289.18121912727219, 237.97999999996682} Style @@ -2182,8 +2182,8 @@ 1347 Points - {264.52123140627316, 200.49120618530708} - {229.204957059874, 174.72880418340281} + {264.52123153552304, 200.4912060960396} + {229.20495737422726, 174.72880396629213} Style @@ -2492,8 +2492,8 @@ 1360 Points - {349.15892886507885, 174.72859662870641} - {313.8412479672138, 200.4914118739805} + {349.15892938989487, 174.7285969912156} + {313.84124924365858, 200.49141275566646} Style @@ -2830,8 +2830,8 @@ 1351 Points - {373.81938931283889, 208.00000000001725} - {373.81920261899052, 176.24000999997477} + {373.81938966240995, 208.00000000001717} + {373.81920355289702, 176.24000999997438} Style @@ -3004,8 +3004,8 @@ 1347 Points - {264.52123140627316, 200.49120618530708} - {229.204957059874, 174.72880418340281} + {264.52123153552304, 200.4912060960396} + {229.20495737422726, 174.72880396629213} Style @@ -3314,8 +3314,8 @@ 1368 Points - {289.18237604973848, 197.48000000002523} - {289.18222518962239, 176.24000999996369} + {289.18237674194955, 197.48000000002494} + {289.18222665565224, 176.24000999996292} Style @@ -3920,8 +3920,8 @@ 1351 Points - {539.95612000000006, 116} - {539.95612000000006, 137.24000999999998} + {539.95612000000006, 116.00000000000001} + {539.95612000000006, 137.24001000000001} Style @@ -4306,8 +4306,8 @@ 1374 Points - {373.81937571721147, 270.44000000002171} - {373.81921443210587, 245.97999999996921} + {373.81937660450973, 270.44000000002143} + {373.81921646168388, 245.97999999996821} Style @@ -4341,8 +4341,8 @@ 1373 Points - {266.32282869591819, 207.64420983126035} - {227.40435886138158, 175.57580054302753} + {266.32282903222074, 207.64420974401148} + {227.40435977024771, 175.57580030723526} Style @@ -4537,8 +4537,8 @@ 1368 Points - {350.95982644674848, 207.64421041477618} - {312.04135038835301, 175.57580014687665} + {350.95982695139992, 207.64421028385129} + {312.04135175218664, 175.57579979304907} Style @@ -5108,8 +5108,8 @@ 1351 Points - {539.95612000000006, 116} - {539.95612000000006, 137.24000999999998} + {539.95612000000006, 116.00000000000001} + {539.95612000000006, 137.24001000000001} Style @@ -5529,8 +5529,8 @@ 1377 Points - {596.01095155310213, 207.47344298248268} - {560.95625505137036, 175.74656708252729} + {596.01095211433551, 207.47344296725191} + {560.95625654944763, 175.74656704187234} Style @@ -5662,8 +5662,8 @@ 1374 Points - {373.81937571721147, 270.44000000002171} - {373.81921443210587, 245.97999999996921} + {373.81937660450973, 270.44000000002143} + {373.81921646168388, 245.97999999996821} Style @@ -5697,8 +5697,8 @@ 1373 Points - {266.32282869591819, 207.64420983126035} - {227.40435886138158, 175.57580054302753} + {266.32282903222074, 207.64420974401148} + {227.40435977024771, 175.57580030723526} Style @@ -5893,8 +5893,8 @@ 1368 Points - {350.95982644674848, 207.64421041477618} - {312.04135038835301, 175.57580014687665} + {350.95982695139992, 207.64421028385129} + {312.04135175218664, 175.57579979304907} Style @@ -6464,8 +6464,8 @@ 1351 Points - {539.95612000000006, 116} - {539.95612000000006, 137.24000999999998} + {539.95612000000006, 116.00000000000001} + {539.95612000000006, 137.24001000000001} Style @@ -6885,8 +6885,8 @@ 1377 Points - {596.01095155310213, 207.47344298248268} - {560.95625505137036, 175.74656708252729} + {596.01095211433551, 207.47344296725191} + {560.95625654944763, 175.74656704187234} Style @@ -7018,8 +7018,8 @@ 1374 Points - {617.0113621961051, 269.00000000001955} - {617.01121825580708, 245.97999999997216} + {617.01136297322091, 269.00000000001927} + {617.01121997446023, 245.97999999997134} Style @@ -7053,8 +7053,8 @@ 1373 Points - {266.32282869591819, 207.64420983126035} - {227.40435886138158, 175.57580054302753} + {266.32282903222074, 207.64420974401148} + {227.40435977024771, 175.57580030723526} Style @@ -7249,8 +7249,8 @@ 1368 Points - {350.95982644674848, 207.64421041477618} - {312.04135038835301, 175.57580014687665} + {350.95982695139992, 207.64421028385129} + {312.04135175218664, 175.57579979304907} Style @@ -7820,8 +7820,8 @@ 1351 Points - {539.95612000000006, 116} - {539.95612000000006, 137.24000999999998} + {539.95612000000006, 116.00000000000001} + {539.95612000000006, 137.24001000000001} Style @@ -8242,7 +8242,7 @@ Points {373.8191027765904, 275.5} - {373.8191027765904, 245.98000000000002} + {373.8191027765904, 245.97999999999996} Style @@ -8455,8 +8455,8 @@ 1373 Points - {266.32282869591819, 207.64420983126035} - {227.40435886138158, 175.57580054302753} + {266.32282903222074, 207.64420974401148} + {227.40435977024771, 175.57580030723526} Style @@ -9412,8 +9412,8 @@ 1387 Points - {459.43331570062412, 240.22767081153856} - {376.56688328674335, 280.75232916416627} + {459.43331570301348, 240.22767081613384} + {376.56688329617594, 280.75232918230728} Style @@ -9919,8 +9919,8 @@ 1373 Points - {284.96213088786089, 209.51193434311136} - {230.40205822491089, 173.7080755414454} + {284.96213086325969, 209.51193436829536} + {230.40205814839933, 173.70807561976952} Style @@ -10513,8 +10513,8 @@ 1390 Points - {487.54500711785084, 329.0000000000004} - {487.54508191384946, 245.97999999999936} + {487.54500712053976, 329.0000000000004} + {487.54508192828803, 245.97999999999936} Style @@ -10548,8 +10548,8 @@ 1392 Points - {458.45601193073833, 65.999999999999417} - {458.45608853526483, 137.24001000000084} + {458.45601193013431, 65.999999999999417} + {458.45608853239594, 137.24001000000089} Style @@ -10669,8 +10669,8 @@ 1399 Points - {568.2330630097332, 111.99999999999982} - {568.23307829951113, 137.24001000000027} + {568.23306286142099, 111.99999999999982} + {568.2330779541777, 137.24001000000024} Style @@ -10776,8 +10776,8 @@ 1397 Points - {546.27514547273927, 175.71863078876072} - {509.5030419249232, 207.50137911768536} + {546.27514584783614, 175.71863081066112} + {509.50304292818009, 207.50137917626139} Style @@ -11186,8 +11186,8 @@ 1387 Points - {459.43331570062412, 240.22767081153856} - {376.56688328674335, 280.75232916416627} + {459.43331570301348, 240.22767081613384} + {376.56688329617594, 280.75232918230728} Style @@ -11693,8 +11693,8 @@ 1373 Points - {284.96213088786089, 209.51193434311136} - {230.40205822491089, 173.7080755414454} + {284.96213086325969, 209.51193436829536} + {230.40205814839933, 173.70807561976952} Style @@ -12287,8 +12287,8 @@ 1390 Points - {487.54500711785084, 329.0000000000004} - {487.54508191384946, 245.97999999999936} + {487.54500712053976, 329.0000000000004} + {487.54508192828803, 245.97999999999936} Style @@ -12322,8 +12322,8 @@ 1392 Points - {458.45601193073833, 65.999999999999417} - {458.45608853526483, 137.24001000000084} + {458.45601193013431, 65.999999999999417} + {458.45608853239594, 137.24001000000089} Style @@ -12541,8 +12541,8 @@ 1402 Points - {244.99002959467208, 238.21305714191951} - {192.64816927273179, 201.39695296519577} + {244.9900296237204, 238.21305711845338} + {192.64816936234806, 201.39695289280093} Style @@ -12576,8 +12576,8 @@ 1401 Points - {420.00037650256223, 257.51155277489931} - {391.23178978376768, 256.72189274697388} + {420.00037650331461, 257.51155178673446} + {391.23178982308536, 256.72189097041661} Style @@ -12781,8 +12781,8 @@ 1397 Points - {270.09306573566096, 138.99999999999969} - {270.09308464662013, 164.24001000000041} + {270.09306579456023, 138.99999999999972} + {270.09308478376255, 164.24001000000044} Style @@ -13639,8 +13639,8 @@ 1402 Points - {322.24716407513426, 228.05400539600805} - {292.39103575762914, 202.68600449271582} + {322.24716387131576, 228.05400542324276} + {292.39103528090516, 202.686004556417} Style @@ -13674,8 +13674,8 @@ 1401 Points - {494.45237650291443, 248.64155231226718} - {465.68378980217523, 247.85189191523773} + {494.45237650341619, 248.64155165327153} + {465.68378982839567, 247.85189073047241} Style @@ -13879,8 +13879,8 @@ 1397 Points - {270.09306573566096, 138.99999999999969} - {270.09308464662013, 164.24001000000041} + {270.09306579456023, 138.99999999999972} + {270.09308478376255, 164.24001000000044} Style @@ -14746,8 +14746,8 @@ 1406 Points - {333.88804620901061, 215.91359005478662} - {298.02414454898116, 197.82641673459167} + {333.8880457763085, 215.91359084503077} + {298.02414356068277, 197.82641853952188} Style @@ -14942,8 +14942,8 @@ 1402 Points - {345.92203374014099, 275.10575935749824} - {285.99015527574727, 202.89426064201942} + {345.9220337375084, 275.10575935757811} + {285.99015526318982, 202.89426064240067} Style @@ -14977,8 +14977,8 @@ 1401 Points - {511.72638650220995, 295.90156323753143} - {482.95779976536022, 295.11190357871004} + {511.72638650321284, 295.90156192019731} + {482.95779981777508, 295.11190121036083} Style @@ -15182,8 +15182,8 @@ 1397 Points - {270.09306573566096, 138.99999999999969} - {270.09308464662013, 164.24001000000041} + {270.09306579456023, 138.99999999999972} + {270.09308478376255, 164.24001000000044} Style @@ -15988,8 +15988,8 @@ 2008 Points - {411.76626746201185, 161.00638570832649} - {138.93596220876242, 66.673469611419364} + {411.76626746245279, 161.00638570726159} + {138.93596221114777, 66.673469604548856} Style @@ -16030,8 +16030,8 @@ 2007 Points - {292.32979215327521, 154.67143962724342} - {134.94621544111132, 75.291833823810393} + {292.32979215803232, 154.67143962103222} + {134.94621545841963, 75.29183379552542} Style @@ -16072,8 +16072,8 @@ 2006 Points - {185.10561037850673, 148.97739642442454} - {116.47310163560823, 85.022603582393273} + {185.10561048340898, 148.97739642259288} + {116.47310196772095, 85.022603578259378} Style @@ -16303,8 +16303,8 @@ 1998 Points - {121.19298908470478, 156.99857010335174} - {338.66707475508849, 61.074951268133809} + {121.19298908470483, 156.99857010335171} + {340.03949999999998, 60.469600999999997} Style @@ -17628,8 +17628,8 @@ repository} 2007 Points - {387.10964218740952, 220.89031790144099} - {500.41057239800301, 153.33109288981572} + {387.10964219461863, 220.89031790755823} + {500.41057241907606, 153.33109291385043} Style @@ -17717,8 +17717,8 @@ repository} 2003 Points - {232.22312579959322, 147.24757653341203} - {309.5398841767439, 218.01722246699683} + {232.22312580452368, 147.24757653332685} + {309.53988419340385, 218.01722246670897} Style @@ -17791,8 +17791,8 @@ repository} 2000 Points - {382.4190386886126, 277.14810275705588} - {520.12197115427091, 377.35149828179095} + {382.41903871616012, 277.14810275024473} + {520.12197127576178, 377.35149825175245} Style @@ -17861,8 +17861,8 @@ repository} 1998 Points - {234.23871498371381, 277.47823453958893} - {349.8682850420131, 377.02136645998399} + {234.23871497915923, 277.47823453966453} + {349.86828502220027, 377.02136646031289} Style @@ -19060,7 +19060,7 @@ public} RowSpacing 36 SheetTitle - 101 + 01-foo/101 UniqueID 18 VPages @@ -19112,8 +19112,8 @@ public} 21 Points - {307.04161510199344, 286.23830145118717} - {187.15079814884859, 338.47203642119609} + {307.04161510203113, 286.23830147732696} + {187.15079819366872, 338.4720364547523} Style @@ -19528,8 +19528,8 @@ public} 10 Points - {307.02856457787396, 194.34542795901527} - {190.62511813984997, 153.21487946967719} + {307.02856457823174, 194.34542767775002} + {190.62511850432207, 153.21487903584239} Style @@ -20081,8 +20081,8 @@ public} 44 Points - {455.99971080518594, 430.91609799996104} - {455.9998158597013, 445.50000000001296} + {455.99971080285081, 430.9160979999611} + {455.99981583466217, 445.50000000001296} Style @@ -20116,8 +20116,8 @@ public} 43 Points - {119.9999036872718, 430.91609799999759} - {119.9999298145442, 445.5000000000008} + {119.99990368716723, 430.91609799999759} + {119.99992981342297, 445.5000000000008} Style @@ -20151,8 +20151,8 @@ public} 42 Points - {455.99972890648343, 572.63612799999862} - {455.99974018041894, 581.16400000000249} + {455.99971496087045, 572.63612799999964} + {455.99972079582056, 581.16400000000067} Style @@ -20186,8 +20186,8 @@ public} 41 Points - {455.99972891095382, 520.37809799999854} - {455.99974018539001, 528.90503000000251} + {455.99971496410973, 520.37809799999957} + {455.99972079967995, 528.90503000000069} Style @@ -20222,7 +20222,7 @@ public} Points {119.99991924477369, 572.6371079999999} - {119.99991924477369, 581.16498000000001} + {119.99991924477369, 581.16498000000013} Style @@ -20257,7 +20257,7 @@ public} Points {119.99991924474368, 520.37809799999991} - {119.99991924474368, 528.90601000000004} + {119.99991924474368, 528.90601000000015} Style @@ -20328,8 +20328,8 @@ public} 35 Points - {352.07931173877847, 289.07794341962256} - {381.43782415222012, 347.55315650823889} + {352.07930016282404, 289.07794343588535} + {381.43780727096458, 347.55315652861862} Style @@ -21067,8 +21067,8 @@ public} 20 Points - {223.92068280919034, 289.07794342601187} - {194.56217248615653, 347.55315650418055} + {223.92069401108552, 289.0779434417492} + {194.56218882192002, 347.55315652390181} Style @@ -21251,8 +21251,8 @@ public} 12 Points - {287.99973190979512, 213.4910879999984} - {287.99974348680132, 221.42400000000299} + {287.99971718134344, 213.49108799999956} + {287.99972341480617, 221.42400000000089} Style @@ -21286,8 +21286,8 @@ public} 11 Points - {287.99973190990221, 161.82709799999836} - {287.99974348691808, 169.75999000000297} + {287.99971718142416, 161.82709799999952} + {287.99972341490053, 169.75999000000087} Style @@ -21651,7 +21651,7 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {805, 732}} Class SolidGraphic ID @@ -21669,6 +21669,8 @@ public} 0 CanvasOrigin {0, 0} + CanvasSize + {805, 732} ColumnAlign 1 ColumnSpacing @@ -21683,14 +21685,14 @@ public} Head ID - 1343 + 1399 ID - 1355 + 1404 Points - {258.48042915166019, 157.47659765319904} - {236.43008884222161, 157.36500447182689} + {488.41923677457379, 153.13229077828234} + {373.57026422553093, 235.88770922188877} Style @@ -21709,23 +21711,58 @@ public} Tail ID - 1354 + 1402 + + + + Class + LineGraphic + Head + + ID + 1392 + + ID + 1403 + Points + + {510.47476954674062, 156.74000000000001} + {510.47476954674062, 177.67999} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1402 Bounds - {{259.98000999999999, 142.495}, {57.940497999999998, 30.271601}} + {{486.39600000000002, 119.23999999999999}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1354 + 1402 Shape RoundRect Style @@ -21766,11 +21803,11 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 f42c5} +\f0\fs24 \cf0 C9} VerticalPad 0 @@ -21784,11 +21821,11 @@ public} 1354 ID - 1353 + 1401 Points - {288.95069591671711, 122.27160099992079} - {288.95046026622464, 140.99500000010977} + {373.07791094058979, 384.41538918187058} + {405.09358999150379, 409.11461091243291} Style @@ -21807,34 +21844,154 @@ public} Tail ID - 1352 + 1396 + + + + Class + LineGraphic + Head + + ID + 1397 + + ID + 1400 + Points + + {351.51476082972533, 271.27999999999997} + {351.51476082972533, 290.27999999999997} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + + + Tail + + ID + 1399 Bounds - {{254.62100000000001, 91}, {68.659797999999995, 30.271601}} + {{327.43599999999998, 233.78}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color + Font + Helvetica + Size + 12 + + ID + 1399 + Shape + RoundRect + Style + + fill - b - 0.8 - g - 0.8 - r - 0.8 + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 C7'} + VerticalPad + 0 + + + + Class + LineGraphic + Head + + ID + 1396 + + ID + 1398 + Points + + {351.51476082972533, 329.27999999999997} + {351.51476082972533, 348.27999999999997} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + + + Tail + + ID + 1397 + + + + Bounds + {{327.43599999999998, 291.77999999999997}, {48.157501000000003, 36}} + Class + ShapedGraphic + FontInfo + Font - LucidaGrande + Helvetica Size - 10 + 12 ID - 1352 + 1397 Shape - Rectangle + RoundRect Style fill @@ -21842,11 +21999,11 @@ public} Color b - 0.933333 + 0.837205 g - 0.933333 + 0.959184 r - 0.933333 + 0.826135 shadow @@ -21866,7 +22023,7 @@ public} 0.382653 Width - 2 + 3 Text @@ -21874,10 +22031,73 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 master} +\f0\fs24 \cf0 C6'} + VerticalPad + 0 + + + + Bounds + {{327.43599999999998, 349.77999999999997}, {48.157501000000003, 36}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 12 + + ID + 1396 + Shape + RoundRect + Style + + fill + + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 C5'} VerticalPad 0 @@ -21888,14 +22108,14 @@ public} Head ID - 1344 + 1375 ID - 1348 + 1395 Points - {175.49001000000183, 157.21081211921225} - {153.44049799999704, 157.21081211921225} + {170.78399480304725, 389.32997562033279} + {137.32090418550865, 414.15001436214857} Style @@ -21914,23 +22134,93 @@ public} Tail ID - 1343 + 1386 + + + + Class + LineGraphic + Head + + ID + 1382 + + ID + 1394 + Points + + {487.79995957734809, 211.9506097979642} + {449.33154140769972, 237.0093801721309} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1392 + + + + Class + LineGraphic + Head + + ID + 1370 + + ID + 1393 + Points + + {510.44774551944852, 216.67998856160153} + {510.41874630497671, 237.62000143848633} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1392 Bounds - {{94, 142.07499999999999}, {57.940497999999998, 30.271601}} + {{486.39600000000002, 179.17999}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1344 + 1392 Shape RoundRect Style @@ -21971,29 +22261,62 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 0b743} +\f0\fs24 \cf0 C8} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1387 + + ID + 1390 + Points + + {192.63876576386062, 276.62} + {192.63876576386062, 295.62} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + + + Tail + + ID + 1389 + + Bounds - {{176.99001000000001, 142.07499999999999}, {57.940497999999998, 30.271601}} + {{168.56, 239.12}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1343 + 1389 Shape RoundRect Style @@ -22034,37 +22357,77 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 a6b4c} +\f0\fs24 \cf0 C7'} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1386 + + ID + 1388 + Points + + {192.63876576387253, 334.62} + {192.63876576387253, 353.62} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + + + Tail + + ID + 1387 + + Bounds - {{250, 42}, {85.304703000000003, 13.0647}} + {{168.56, 297.12}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - Helvetica-Bold + Helvetica Size 12 ID - 6 + 1387 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -22073,38 +22436,62 @@ public} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\b\fs28 \cf0 git.ourcompany.com} +\f0\fs24 \cf0 C6'} VerticalPad 0 - Wrap - NO Bounds - {{59.426299999999998, 29.378299999999999}, {457.14699999999999, 174.62199000000001}} + {{168.56, 355.12}, {48.157501000000003, 36}} Class ShapedGraphic + FontInfo + + Font + Helvetica + Size + 12 + ID - 5 + 1386 Shape - Rectangle + RoundRect Style + fill + + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + shadow Draws @@ -22112,133 +22499,57 @@ public} stroke + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + Width - 2 + 3 - - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - - Lock - NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 2 - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - 0322-old - UniqueID - 27 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 553}} - Class - SolidGraphic - ID - 2 - Style - - stroke + Text - Draws - NO + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 C5'} + VerticalPad + 0 - - BaseZoom - 0 - CanvasOrigin - {0, 0} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - Class LineGraphic Head ID - 1369 + 1354 ID - 1374 + 1385 Points - {365.5, 439.12593665365188} - {332.60370299999806, 439.12587707776913} + {426.65676321831887, 387.27999999999997} + {426.65676321831887, 406.24999999999994} Style stroke - Color - - b - 0.362245 - g - 0.362245 - r - 0.362245 - HeadArrow FilledArrow Legacy LineType 1 - Pattern - 2 TailArrow 0 @@ -22246,7 +22557,7 @@ public} Tail ID - 1372 + 1379 @@ -22255,36 +22566,23 @@ public} Head ID - 1363 + 1380 ID - 1373 + 1383 Points - {359, 334.13591990654783} - {332.60370299999829, 334.13588054042907} + {426.65676319851576, 271.27999999999997} + {426.65676319851576, 290.27999999999997} Style stroke - Color - - b - 0.362245 - g - 0.362245 - r - 0.362245 - HeadArrow FilledArrow Legacy - LineType - 1 - Pattern - 2 TailArrow 0 @@ -22292,74 +22590,38 @@ public} Tail ID - 1371 + 1382 Bounds - {{365.5, 432.12601000000001}, {81, 14}} + {{402.57799999999997, 233.78}, {48.157501000000003, 36}} Class ShapedGraphic - FitText - YES - Flow - Resize - ID - 1372 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text + FontInfo - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 Local Branch} - VerticalPad - 0 + Font + Helvetica + Size + 12 - Wrap - NO - - - Bounds - {{359, 327.13598999999999}, {94, 14}} - Class - ShapedGraphic - FitText - YES - Flow - Resize ID - 1371 + 1382 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -22368,24 +22630,31 @@ public} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 Remote Branch} +\f0\fs24 \cf0 C7} VerticalPad 0 - Wrap - NO Class @@ -22393,14 +22662,14 @@ public} Head ID - 1365 + 1379 ID - 1370 + 1381 Points - {288.95101711602666, 422.98999000021462} - {288.95060838606116, 403.26660099966921} + {426.65676319851576, 329.27999999999997} + {426.65676319851576, 348.27999999999997} Style @@ -22410,8 +22679,6 @@ public} FilledArrow Legacy - LineType - 1 TailArrow 0 @@ -22419,34 +22686,25 @@ public} Tail ID - 1369 + 1380 Bounds - {{246.29900000000001, 423.98998999999998}, {85.304703000000003, 30.271601}} + {{402.57799999999997, 291.77999999999997}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Helvetica Size - 10 + 12 ID - 1369 + 1380 Shape - Rectangle + RoundRect Style fill @@ -22454,11 +22712,11 @@ public} Color b - 0.933333 + 0.837205 g - 0.933333 + 0.959184 r - 0.933333 + 0.826135 shadow @@ -22478,7 +22736,7 @@ public} 0.382653 Width - 2 + 3 Text @@ -22486,40 +22744,43 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 master} +\f0\fs24 \cf0 C6} VerticalPad 0 Bounds - {{186, 227}, {317, 16}} + {{402.57799999999997, 349.77999999999997}, {48.157501000000003, 36}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font - TheSansMonoCondensed-SemiBold + Helvetica Size - 13 + 12 ID - 1368 + 1379 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -22528,48 +22789,60 @@ public} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\b\fs26 \cf0 git clone schacon@git.ourcompany.com:project.git} +\f0\fs24 \cf0 C5} VerticalPad 0 - Wrap - NO Class LineGraphic - FontInfo + Head - Font - TheSansMonoCondensed-SemiBold - Size - 13 + ID + 1375 ID - 1367 + 1378 Points - {160, 214} - {160, 256} + {115.46612860730792, 392.62} + {115.46612860730792, 410.85998999999998} Style stroke + Color + + b + 0.494898 + g + 0.494898 + r + 0.494898 + HeadArrow FilledArrow Legacy @@ -22578,10 +22851,13 @@ public} 1 TailArrow 0 - Width - 4 + Tail + + ID + 1334 + Class @@ -22589,14 +22865,14 @@ public} Head ID - 1360 + 1302 ID - 1366 + 1376 Points - {258.48042913038222, 386.47660156590109} - {236.43008885992572, 386.36501121633978} + {115.46613486865677, 449.85998999999993} + {115.46613486865677, 471.13} Style @@ -22606,8 +22882,6 @@ public} FilledArrow Legacy - LineType - 1 TailArrow 0 @@ -22615,23 +22889,23 @@ public} Tail ID - 1365 + 1375 Bounds - {{259.98000999999999, 371.495}, {57.940497999999998, 30.271601}} + {{91.387398000000005, 412.35998999999998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1365 + 1375 Shape RoundRect Style @@ -22672,11 +22946,11 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 f42c5} +\f0\fs24 \cf0 C1} VerticalPad 0 @@ -22687,14 +22961,14 @@ public} Head ID - 1365 + 1367 ID - 1364 + 1374 Points - {288.95101711607879, 350.27160099978533} - {288.95060838596987, 369.99500000033083} + {510.39175954673595, 336.55999999999995} + {510.39175954673595, 357.5} Style @@ -22713,79 +22987,7 @@ public} Tail ID - 1363 - - - - Bounds - {{246.29900000000001, 319}, {85.304703000000003, 30.271601}} - Class - ShapedGraphic - FontInfo - - Color - - b - 0.8 - g - 0.8 - r - 0.8 - - Font - LucidaGrande - Size - 10 - - ID - 1363 - Shape - Rectangle - Style - - fill - - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs20 \cf2 origin/master} - VerticalPad - 0 + 1369 @@ -22794,14 +22996,14 @@ public} Head ID - 1361 + 1369 ID - 1362 + 1371 Points - {175.4900100000026, 386.21082407202107} - {153.44049799999604, 386.21082407202107} + {510.39175954673595, 276.61999999999995} + {510.39175954673595, 297.56} Style @@ -22811,8 +23013,6 @@ public} FilledArrow Legacy - LineType - 1 TailArrow 0 @@ -22820,23 +23020,23 @@ public} Tail ID - 1360 + 1370 Bounds - {{94, 371.07501000000002}, {57.940497999999998, 30.271601}} + {{486.31299000000001, 239.12}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1361 + 1370 Shape RoundRect Style @@ -22877,29 +23077,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 0b743} +\f0\fs24 \cf0 C4} VerticalPad 0 Bounds - {{176.99001000000001, 371.07501000000002}, {57.940497999999998, 30.271601}} + {{486.31299000000001, 299.06}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1360 + 1369 Shape RoundRect Style @@ -22940,11 +23140,11 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 a6b4c} +\f0\fs24 \cf0 C3} VerticalPad 0 @@ -22955,14 +23155,14 @@ public} Head ID - 1343 + 1354 ID - 1355 + 1368 Points - {258.48042915166019, 157.47659765319904} - {236.43008884222161, 157.36500447182689} + {487.1528697079624, 390.52952865771579} + {449.89562123103173, 412.22047119477668} Style @@ -22972,8 +23172,6 @@ public} FilledArrow Legacy - LineType - 1 TailArrow 0 @@ -22981,23 +23179,23 @@ public} Tail ID - 1354 + 1367 Bounds - {{259.98000999999999, 142.495}, {57.940497999999998, 30.271601}} + {{486.31299000000001, 359}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1354 + 1367 Shape RoundRect Style @@ -23038,53 +23236,90 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 f42c5} +\f0\fs24 \cf0 C2} VerticalPad 0 + Bounds + {{469.565, 81}, {81.652298000000002, 27}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 1354 + Color + + b + 0.8 + g + 0.8 + r + 0.8 + + Font + LucidaGrande + Size + 10 ID - 1353 - Points - - {288.95069591671711, 122.27160099992079} - {288.95046026622464, 140.99500000010977} - + 1364 + Shape + Rectangle Style + fill + + Color + + b + 0.933333 + g + 0.933333 + r + 0.933333 + + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 2 - Tail + Text - ID - 1352 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs20 \cf2 default} + VerticalPad + 0 Bounds - {{254.62100000000001, 91}, {68.659797999999995, 30.271601}} + {{316.42401000000001, 183.67999}, {81.652298000000002, 27}} Class ShapedGraphic FontInfo @@ -23104,7 +23339,7 @@ public} 10 ID - 1352 + 1357 Shape Rectangle Style @@ -23149,7 +23384,7 @@ public} {\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 master} +\f0\fs20 \cf2 scott/default} VerticalPad 0 @@ -23160,14 +23395,14 @@ public} Head ID - 1344 + 1355 ID - 1348 + 1356 Points - {175.49001000000183, 157.21081211921225} - {153.44049799999704, 157.21081211921225} + {426.65675963998405, 445.25} + {426.65675963998405, 471.13} Style @@ -23177,8 +23412,6 @@ public} FilledArrow Legacy - LineType - 1 TailArrow 0 @@ -23186,23 +23419,23 @@ public} Tail ID - 1343 + 1354 Bounds - {{94, 142.07499999999999}, {57.940497999999998, 30.271601}} + {{402.57799999999997, 472.63}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1344 + 1355 Shape RoundRect Style @@ -23243,29 +23476,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 0b743} +\f0\fs24 \cf0 C0} VerticalPad 0 Bounds - {{176.99001000000001, 142.07499999999999}, {57.940497999999998, 30.271601}} + {{402.57799999999997, 407.75}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1343 + 1354 Shape RoundRect Style @@ -23306,29 +23539,26 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 a6b4c} +\f0\fs24 \cf0 C1} VerticalPad 0 Bounds - {{245.34700000000001, 278.42401000000001}, {85.304703000000003, 13.0647}} + {{408.96600000000001, 31}, {37, 14}} Class ShapedGraphic - FontInfo - - Font - Helvetica-Bold - Size - 12 - + FitText + YES + Flow + Resize ID - 23 + 1353 Shape Rectangle Style @@ -23359,7 +23589,7 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\b\fs28 \cf0 My Computer} +\f0\fs24 \cf0 jessica} VerticalPad 0 @@ -23368,41 +23598,15 @@ public} Bounds - {{59.426299999999998, 268}, {457.14699999999999, 203}} - Class - ShapedGraphic - ID - 22 - Shape - Rectangle - Style - - shadow - - Draws - NO - - stroke - - Width - 2 - - - - - Bounds - {{250, 42}, {85.304703000000003, 13.0647}} + {{159.13999999999999, 31}, {26, 14}} Class ShapedGraphic - FontInfo - - Font - Helvetica-Bold - Size - 12 - + FitText + YES + Flow + Resize ID - 6 + 1352 Shape Rectangle Style @@ -23433,7 +23637,7 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\b\fs28 \cf0 git.ourcompany.com} +\f0\fs24 \cf0 scott} VerticalPad 0 @@ -23442,15 +23646,43 @@ public} Bounds - {{59.426299999999998, 29.378299999999999}, {457.14699999999999, 174.62199000000001}} + {{157.173, 200}, {70.932297000000005, 27}} Class ShapedGraphic + FontInfo + + Color + + b + 0.8 + g + 0.8 + r + 0.8 + + Font + LucidaGrande + Size + 10 + ID - 5 + 1344 Shape Rectangle Style + fill + + Color + + b + 0.933333 + g + 0.933333 + r + 0.933333 + + shadow Draws @@ -23458,111 +23690,46 @@ public} stroke + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + Width 2 - - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - - Lock - NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 2 - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - 0322 - UniqueID - 28 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 553}} - Class - SolidGraphic - ID - 2 - Style - - stroke + Text - Draws - NO + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs20 \cf2 default} + VerticalPad + 0 - - BaseZoom - 0 - CanvasOrigin - {0, 0} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - Class LineGraphic Head ID - 1380 + 1336 ID - 1385 + 1343 Points - {542, 157.21091545683893} - {485.41049799996927, 157.21084128233687} + {115.46612900000001, 276.62} + {115.46612900000001, 295.62} Style @@ -23571,20 +23738,16 @@ public} Color b - 0.489796 + 0.494898 g - 0.489796 + 0.494898 r - 0.489796 + 0.494898 HeadArrow FilledArrow Legacy - LineType - 1 - Pattern - 2 TailArrow 0 @@ -23592,28 +23755,47 @@ public} Tail ID - 1384 + 1342 Bounds - {{542, 150.21100000000001}, {129, 14}} + {{91.387398000000005, 239.12}, {48.157501000000003, 36}} Class ShapedGraphic - FitText - YES - Flow - Resize + FontInfo + + Color + + b + 0.5 + g + 0.5 + r + 0.5 + + Font + Helvetica + Size + 12 + ID - 1384 + 1342 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -23622,59 +23804,31 @@ public} stroke - Draws - NO + Color + + b + 0.494898 + g + 0.494898 + r + 0.494898 + + Width + 3 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red128\green128\blue128;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 Someone else pushes} +\f0\fs24 \cf2 C7} VerticalPad 0 - Wrap - NO - - - Class - LineGraphic - Head - - ID - 1354 - - ID - 1382 - Points - - {341.47041918636739, 157.36501249864833} - {319.42008894279093, 157.47661225219198} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1379 - Class @@ -23682,25 +23836,32 @@ public} Head ID - 1379 + 1334 ID - 1381 + 1337 Points - {424.47000000000185, 157.21081211258436} - {402.41049799999712, 157.21081211258436} + {115.46612900000001, 334.62} + {115.46612900000001, 353.62} Style stroke + Color + + b + 0.494898 + g + 0.494898 + r + 0.494898 + HeadArrow FilledArrow Legacy - LineType - 1 TailArrow 0 @@ -23708,23 +23869,32 @@ public} Tail ID - 1380 + 1336 Bounds - {{425.97000000000003, 142.07499999999999}, {57.940497999999998, 30.271601}} + {{91.387398000000005, 297.12}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo + Color + + b + 0.5 + g + 0.5 + r + 0.5 + Font - Courier + Helvetica Size 12 ID - 1380 + 1336 Shape RoundRect Style @@ -23751,11 +23921,11 @@ public} Color b - 0.382653 + 0.494898 g - 0.382653 + 0.494898 r - 0.382653 + 0.494898 Width 3 @@ -23765,29 +23935,38 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red128\green128\blue128;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 190a3} +\f0\fs24 \cf2 C6} VerticalPad 0 Bounds - {{342.97000000000003, 142.07499999999999}, {57.940497999999998, 30.271601}} + {{91.387398000000005, 355.12}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo + Color + + b + 0.5 + g + 0.5 + r + 0.5 + Font - Courier + Helvetica Size 12 ID - 1379 + 1334 Shape RoundRect Style @@ -23814,11 +23993,11 @@ public} Color b - 0.382653 + 0.494898 g - 0.382653 + 0.494898 r - 0.382653 + 0.494898 Width 3 @@ -23828,99 +24007,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red128\green128\blue128;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 31b8e} +\f0\fs24 \cf2 C5} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 1375 - - ID - 1378 - Points - - {424.47000000000264, 386.21082406427922} - {402.41049799999615, 386.21082406427922} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1376 - - - - Class - LineGraphic - Head - - ID - 1365 - - ID - 1377 - Points - - {341.47041916151443, 386.36501792873037} - {319.4200889543331, 386.47661437485192} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1375 - - Bounds - {{425.97000000000003, 371.07501000000002}, {57.940497999999998, 30.271601}} + {{91.387398000000005, 472.63}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1376 + 1302 Shape RoundRect Style @@ -23961,31 +24070,40 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 893cf} +\f0\fs24 \cf0 C0} VerticalPad 0 Bounds - {{342.97000000000003, 371.07501000000002}, {57.940497999999998, 30.271601}} + {{48.279998999999997, 51}, {247.72, 494}} Class ShapedGraphic FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Courier + LucidaGrande Size - 12 + 10 ID - 1375 + 1350 Shape - RoundRect + Rectangle Style fill @@ -23993,11 +24111,11 @@ public} Color b - 0.837205 + 0.933333 g - 0.959184 + 0.933333 r - 0.826135 + 0.933333 shadow @@ -24017,60 +24135,18 @@ public} 0.382653 Width - 3 + 2 Text - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 a38de} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 1376 - - ID - 1370 - Points - - {454.94031224088269, 422.98001000000164} - {454.94027573290271, 402.84661099999818} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1369 - - Bounds - {{412.28798999999998, 423.98000999999999}, {85.304703000000003, 30.271601}} + {{308.56, 51}, {247.72, 494}} Class ShapedGraphic FontInfo @@ -24090,7 +24166,7 @@ public} 10 ID - 1369 + 1351 Shape Rectangle Style @@ -24129,31 +24205,113 @@ public} Text - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs20 \cf2 master} VerticalPad 0 + + GridInfo + + HPages + 2 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + OutlineStyle + Basic + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + git log filtering 4 + UniqueID + 38 + VPages + 2 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 553}} + Class + SolidGraphic + ID + 2 + Style + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + Class LineGraphic Head ID - 1360 + 1343 ID - 1366 + 1369 Points - {258.48042913038222, 386.47660156590109} - {236.43008885992572, 386.36501121633978} + {275.923927827912, 370.02868310353347} + {239, 328} + {225.81204731149296, 229.72668317055502} Style @@ -24172,70 +24330,7 @@ public} Tail ID - 1365 - - - - Bounds - {{259.98000999999999, 371.495}, {57.940497999999998, 30.271601}} - Class - ShapedGraphic - FontInfo - - Font - Courier - Size - 12 - - ID - 1365 - Shape - RoundRect - Style - - fill - - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 f42c5} - VerticalPad - 0 + 1368 @@ -24244,14 +24339,14 @@ public} Head ID - 1365 + 1366 ID - 1364 + 1367 Points - {288.95101711607879, 350.27160099978533} - {288.95060838596987, 369.99500000033083} + {361.19706691527824, 426.28000000000162} + {361.19703501915444, 408.49999999999767} Style @@ -24270,12 +24365,12 @@ public} Tail ID - 1363 + 1365 Bounds - {{246.29900000000001, 319}, {85.304703000000003, 30.271601}} + {{326.18599999999998, 427.27999999999997}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -24295,7 +24390,7 @@ public} 10 ID - 1363 + 1365 Shape Rectangle Style @@ -24340,7 +24435,7 @@ public} {\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 origin/master} +\f0\fs20 \cf2 php_client} VerticalPad 0 @@ -24351,14 +24446,14 @@ public} Head ID - 1361 + 1368 ID - 1362 + 1370 Points - {175.4900100000026, 386.21082407202107} - {153.44049799999604, 386.21082407202107} + {338.5, 389} + {315.28801099999998, 389} Style @@ -24377,12 +24472,12 @@ public} Tail ID - 1360 + 1366 Bounds - {{94, 371.07501000000002}, {57.940497999999998, 30.271601}} + {{340, 371}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -24393,7 +24488,7 @@ public} 12 ID - 1361 + 1366 Shape RoundRect Style @@ -24438,14 +24533,14 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 0b743} +\f0\fs24 \cf0 C6} VerticalPad 0 Bounds - {{176.99001000000001, 371.07501000000002}, {57.940497999999998, 30.271601}} + {{271.39400999999998, 371}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -24456,7 +24551,7 @@ public} 12 ID - 1360 + 1368 Shape RoundRect Style @@ -24501,7 +24596,7 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 a6b4c} +\f0\fs24 \cf0 C5} VerticalPad 0 @@ -24518,8 +24613,8 @@ public} 1355 Points - {258.48042915166019, 157.47659765319904} - {236.43008884222161, 157.36500447182689} + {269.89400999999998, 210.24001000000001} + {245.894001, 210.24001000000001} Style @@ -24543,7 +24638,7 @@ public} Bounds - {{259.98000999999999, 142.495}, {57.940497999999998, 30.271601}} + {{271.39400999999998, 192.24001000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -24599,7 +24694,7 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 f42c5} +\f0\fs24 \cf0 C7} VerticalPad 0 @@ -24610,14 +24705,14 @@ public} Head ID - 1380 + 1354 ID 1353 Points - {454.94000026546479, 121.27160099997624} - {454.94013337331171, 140.57500000003623} + {292.59103748146384, 167.9999999999998} + {292.59102309716741, 190.74001000000032} Style @@ -24641,7 +24736,7 @@ public} Bounds - {{420.60998999999998, 90}, {68.659797999999995, 30.271601}} + {{264.48700000000002, 131}, {56.208098999999997, 36}} Class ShapedGraphic FontInfo @@ -24717,14 +24812,14 @@ public} Head ID - 1344 + 1345 ID - 1348 + 1351 Points - {175.49001000000183, 157.21081211921225} - {153.44049799999704, 157.21081211921225} + {361.71998347990677, 308.96008733761391} + {361.46909404328488, 290.97985399369736} Style @@ -24743,25 +24838,34 @@ public} Tail ID - 1343 + 1350 Bounds - {{94, 142.07499999999999}, {57.940497999999998, 30.271601}} + {{326.97399999999999, 309.95999}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Courier + LucidaGrande Size - 12 + 10 ID - 1344 + 1350 Shape - RoundRect + Rectangle Style fill @@ -24769,11 +24873,11 @@ public} Color b - 0.837205 + 0.933333 g - 0.959184 + 0.933333 r - 0.826135 + 0.933333 shadow @@ -24793,25 +24897,157 @@ public} 0.382653 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 0b743} +\f0\fs20 \cf2 ruby_client} VerticalPad 0 + + Class + LineGraphic + ID + 1349 + Points + + {131.10599999999999, 209.74001000000001} + {97, 209.74001000000001} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + Pattern + 1 + TailArrow + 0 + + + + + Class + LineGraphic + Head + + ID + 1344 + + ID + 1348 + Points + + {200.50026344792028, 210.07647543604486} + {176.49973754483892, 209.90354681069894} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1343 + + + + Class + LineGraphic + Head + + ID + 1343 + + ID + 1347 + Points + + {273.57430586236745, 254.69781941763634} + {242.21370525371057, 227.02219040542775} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1342 + + + + Class + LineGraphic + Head + + ID + 1342 + + ID + 1346 + Points + + {338.50000000000119, 271.47999011218053} + {315.28801099999941, 271.47999011218053} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1345 + + Bounds - {{176.99001000000001, 142.07499999999999}, {57.940497999999998, 30.271601}} + {{340, 253.47999999999999}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -24822,7 +25058,7 @@ public} 12 ID - 1343 + 1345 Shape RoundRect Style @@ -24867,33 +25103,40 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 a6b4c} +\f0\fs24 \cf0 C4} VerticalPad 0 Bounds - {{245.34700000000001, 278.42401000000001}, {85.304703000000003, 13.0647}} + {{132.60599999999999, 191.74001000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo Font - Helvetica-Bold + Courier Size 12 ID - 23 + 1344 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -24902,38 +25145,62 @@ public} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\b\fs28 \cf0 My Computer} +\f0\fs24 \cf0 C1} VerticalPad 0 - Wrap - NO Bounds - {{59.426299999999998, 268}, {457.14699999999999, 203}} + {{202, 192.24001000000001}, {42.394001000000003, 36}} Class ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + ID - 22 + 1343 Shape - Rectangle + RoundRect Style + fill + + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + shadow Draws @@ -24941,33 +25208,61 @@ public} stroke + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + Width - 2 + 3 + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 C2} + VerticalPad + 0 + Bounds - {{250, 42}, {85.304703000000003, 13.0647}} + {{271.39400999999998, 253.47999999999999}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo Font - Helvetica-Bold + Courier Size 12 ID - 6 + 1342 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -24976,49 +25271,31 @@ public} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\b\fs28 \cf0 git.ourcompany.com} +\f0\fs24 \cf0 C3} VerticalPad 0 - Wrap - NO - - - Bounds - {{59.426299999999998, 29.378299999999999}, {457.14699999999999, 174.62199000000001}} - Class - ShapedGraphic - ID - 5 - Shape - Rectangle - Style - - shadow - - Draws - NO - - stroke - - Width - 2 - - GridInfo @@ -25066,9 +25343,9 @@ public} RowSpacing 36 SheetTitle - 0323 + 0519 UniqueID - 29 + 1 VPages 1 @@ -25106,150 +25383,31 @@ public} 1 in = 1.00000 in GraphicsList - - Class - LineGraphic - ID - 1389 - Points - - {339.97042036186906, 386.36523849282418} - {317.92099000000002, 386.47699} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1386 - - - - Class - LineGraphic - Head - - ID - 1386 - - ID - 1388 - Points - - {422.97000000000264, 386.21082406427922} - {400.91049799999615, 386.21082406427922} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1387 - - Bounds - {{424.47000000000003, 371.07501000000002}, {57.940497999999998, 30.271601}} + {{252.989, 310.77999999999997}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo - Font - Courier - Size - 12 - - ID - 1387 - Shape - RoundRect - Style - - fill - - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - - - shadow - - Draws - NO - - stroke + Color - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + b + 0.8 + g + 0.8 + r + 0.8 - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 190a3} - VerticalPad - 0 - - - - Bounds - {{341.47000000000003, 371.07501000000002}, {57.940497999999998, 30.271601}} - Class - ShapedGraphic - FontInfo - Font - Courier + LucidaGrande Size - 12 + 10 ID - 1386 + 1350 Shape - RoundRect + Rectangle Style fill @@ -25257,11 +25415,11 @@ public} Color b - 0.837205 + 0.933333 g - 0.959184 + 0.933333 r - 0.826135 + 0.933333 shadow @@ -25281,86 +25439,37 @@ public} 0.382653 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 31b8e} +\f0\fs20 \cf2 ruby_client} VerticalPad 0 - Bounds - {{207, 228}, {91, 16}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo - - Font - TheSansMonoCondensed-SemiBold - Size - 13 - - ID - 1368 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text + LineGraphic + Head - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\b\fs26 \cf0 git fetch origin} - VerticalPad - 0 + ID + 1360 - Wrap - NO - - - Class - LineGraphic ID - 1367 + 1370 Points - {160, 214} - {160, 256} + {427.30382555213083, 231.67547194881854} + {389, 358} + {310.54277898667459, 378.62554058079513} Style @@ -25374,10 +25483,13 @@ public} 1 TailArrow 0 - Width - 4 + Tail + + ID + 1367 + Class @@ -25388,11 +25500,11 @@ public} 1354 ID - 1382 + 1369 Points - {341.47041918636739, 157.36501249864833} - {319.42008894279093, 157.47661225219198} + {303.69710119302385, 211.8462658719628} + {242.28788980699255, 212.13375413584407} Style @@ -25411,7 +25523,7 @@ public} Tail ID - 1379 + 1365 @@ -25420,14 +25532,14 @@ public} Head ID - 1379 + 1365 ID - 1381 + 1368 Points - {424.47000000000185, 157.21081211258436} - {402.41049799999712, 157.21081211258436} + {410.50011119926461, 212.13375414694335} + {349.09087980076185, 211.84626584044707} Style @@ -25446,12 +25558,12 @@ public} Tail ID - 1380 + 1367 Bounds - {{425.97000000000003, 142.07499999999999}, {57.940497999999998, 30.271601}} + {{412, 194.24001000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -25462,7 +25574,7 @@ public} 12 ID - 1380 + 1367 Shape RoundRect Style @@ -25472,11 +25584,11 @@ public} Color b - 0.837205 + 0.717203 g - 0.959184 + 0.806122 r - 0.826135 + 0.695816 shadow @@ -25507,14 +25619,49 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 190a3} +\f0\fs24 \cf0 C9} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1345 + + ID + 1366 + Points + + {314.42869921818357, 231.01441491871691} + {300.16229173185235, 253.99559507977503} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1365 + + Bounds - {{342.97000000000003, 142.07499999999999}, {57.940497999999998, 30.271601}} + {{305.19699000000003, 193.74001000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -25525,7 +25672,7 @@ public} 12 ID - 1379 + 1365 Shape RoundRect Style @@ -25535,11 +25682,11 @@ public} Color b - 0.837205 + 0.717203 g - 0.959184 + 0.806122 r - 0.826135 + 0.695816 shadow @@ -25570,7 +25717,7 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 31b8e} +\f0\fs24 \cf0 C8} VerticalPad 0 @@ -25581,14 +25728,15 @@ public} Head ID - 1375 + 1343 ID - 1378 + 1364 Points - {422.97000000000185, 441.62580211258444} - {400.91049799999712, 441.62580211258444} + {199.87889944196874, 368.92637581647114} + {162, 339} + {152.01210190938781, 231.73354946028613} Style @@ -25607,7 +25755,7 @@ public} Tail ID - 1376 + 1359 @@ -25616,14 +25764,14 @@ public} Head ID - 1365 + 1360 ID - 1377 + 1363 Points - {347.20507204940111, 425.94511146689439} - {312.18543813954398, 402.31147870546306} + {288.1970665527229, 421.22000000000168} + {288.19703533261179, 403.99999999999756} Style @@ -25642,25 +25790,34 @@ public} Tail ID - 1375 + 1362 Bounds - {{424.47000000000003, 426.48998999999998}, {57.940497999999998, 30.271601}} + {{253.18600000000001, 422.22000000000003}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Courier + LucidaGrande Size - 12 + 10 ID - 1376 + 1362 Shape - RoundRect + Rectangle Style fill @@ -25668,11 +25825,11 @@ public} Color b - 0.837205 + 0.933333 g - 0.959184 + 0.933333 r - 0.826135 + 0.933333 shadow @@ -25692,25 +25849,60 @@ public} 0.382653 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 893cf} +\f0\fs20 \cf2 php_client} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1359 + + ID + 1361 + Points + + {265.5, 384.5} + {242.28800100000001, 384.5} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1360 + + Bounds - {{341.47000000000003, 426.48998999999998}, {57.940497999999998, 30.271601}} + {{267, 366.5}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -25721,7 +25913,7 @@ public} 12 ID - 1375 + 1360 Shape RoundRect Style @@ -25766,71 +25958,27 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 a38de} +\f0\fs24 \cf0 C6} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 1376 - - ID - 1370 - Points - - {454.50355359495404, 480.90536619405395} - {453.89056934748953, 458.26104170319798} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1369 - - Bounds - {{412.28798999999998, 481.90499999999997}, {85.304703000000003, 30.271601}} + {{198.39400000000001, 366.5}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Courier Size - 10 + 12 ID - 1369 + 1359 Shape - Rectangle + RoundRect Style fill @@ -25838,11 +25986,11 @@ public} Color b - 0.933333 + 0.837205 g - 0.933333 + 0.959184 r - 0.933333 + 0.826135 shadow @@ -25862,18 +26010,18 @@ public} 0.382653 Width - 2 + 3 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 master} +\f0\fs24 \cf0 C5} VerticalPad 0 @@ -25884,14 +26032,14 @@ public} Head ID - 1360 + 1343 ID - 1366 + 1355 Points - {258.48042913038222, 386.47660156590109} - {236.43008885992572, 386.36501121633978} + {196.89400000000001, 212.24001000000001} + {172.894001, 212.24001000000001} Style @@ -25910,12 +26058,12 @@ public} Tail ID - 1365 + 1354 Bounds - {{259.98000999999999, 371.495}, {57.940497999999998, 30.271601}} + {{198.39400000000001, 194.24001000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -25926,7 +26074,7 @@ public} 12 ID - 1365 + 1354 Shape RoundRect Style @@ -25971,7 +26119,7 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 f42c5} +\f0\fs24 \cf0 C7} VerticalPad 0 @@ -25982,14 +26130,14 @@ public} Head ID - 1387 + 1367 ID - 1364 + 1353 Points - {453.44031421984067, 346.93160099999864} - {453.44027593752531, 369.57501000000201} + {433.19702645776249, 174.47999999999976} + {433.19701392347906, 192.74001000000038} Style @@ -26008,12 +26156,12 @@ public} Tail ID - 1363 + 1352 Bounds - {{410.78798999999998, 315.66000000000003}, {85.304703000000003, 30.271601}} + {{405.09298999999999, 137.47999999999999}, {56.208098999999997, 36}} Class ShapedGraphic FontInfo @@ -26033,7 +26181,7 @@ public} 10 ID - 1363 + 1352 Shape Rectangle Style @@ -26078,7 +26226,7 @@ public} {\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 origin/master} +\f0\fs20 \cf2 master} VerticalPad 0 @@ -26089,14 +26237,14 @@ public} Head ID - 1361 + 1345 ID - 1362 + 1351 Points - {175.4900100000026, 386.21082407202107} - {153.44049799999604, 386.21082407202107} + {288.06749631811738, 309.78000629098204} + {288.12783293920614, 292.76999056388371} Style @@ -26115,12 +26263,144 @@ public} Tail ID - 1360 + 1350 + + + + Class + LineGraphic + ID + 1349 + Points + + {58.105998999999997, 211.74001000000001} + {24, 211.74001000000001} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + Pattern + 1 + TailArrow + 0 + + + + + Class + LineGraphic + Head + + ID + 1344 + + ID + 1348 + Points + + {127.50026344791279, 212.07647543837027} + {103.49973654484671, 211.90354680827829} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1343 + + + + Class + LineGraphic + Head + + ID + 1343 + + ID + 1347 + Points + + {200.55042445205009, 256.52437117593598} + {169.23757656568691, 228.98563879678238} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1342 + + + + Class + LineGraphic + Head + + ID + 1342 + + ID + 1346 + Points + + {265.50000000000057, 273.27000988782379} + {242.28800099999881, 273.27000988782379} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1345 Bounds - {{94, 371.07501000000002}, {57.940497999999998, 30.271601}} + {{267, 255.27000000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -26131,7 +26411,7 @@ public} 12 ID - 1361 + 1345 Shape RoundRect Style @@ -26176,14 +26456,14 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 0b743} +\f0\fs24 \cf0 C4} VerticalPad 0 Bounds - {{176.99001000000001, 371.07501000000002}, {57.940497999999998, 30.271601}} + {{59.605998999999997, 193.74001000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -26194,7 +26474,7 @@ public} 12 ID - 1360 + 1344 Shape RoundRect Style @@ -26239,49 +26519,77 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 a6b4c} +\f0\fs24 \cf0 C1} VerticalPad 0 + Bounds + {{129, 194.24001000000001}, {42.394001000000003, 36}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 1343 + Font + Courier + Size + 12 ID - 1355 - Points - - {258.48042915166019, 157.47659765319904} - {236.43008884222161, 157.36500447182689} - + 1343 + Shape + RoundRect Style + fill + + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 - Tail + Text - ID - 1354 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 C2} + VerticalPad + 0 Bounds - {{259.98000999999999, 142.495}, {57.940497999999998, 30.271601}} + {{198.39400000000001, 255.27000000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -26292,7 +26600,7 @@ public} 12 ID - 1354 + 1342 Shape RoundRect Style @@ -26337,25 +26645,111 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 f42c5} +\f0\fs24 \cf0 C3} VerticalPad 0 + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + 0520 + UniqueID + 3 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 553}} + Class + SolidGraphic + ID + 2 + Style + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + Class LineGraphic Head ID - 1380 + 1343 ID - 1353 + 1372 Points - {454.94000026546479, 121.27160099997624} - {454.94013337331171, 140.57500000003623} + {223.19703431398381, 167.99999999999969} + {223.1970161387122, 190.74001000000052} Style @@ -26374,12 +26768,12 @@ public} Tail ID - 1352 + 1371 Bounds - {{420.60998999999998, 90}, {68.659797999999995, 30.271601}} + {{195.09299999999999, 131}, {56.208098999999997, 36}} Class ShapedGraphic FontInfo @@ -26399,7 +26793,7 @@ public} 10 ID - 1352 + 1371 Shape Rectangle Style @@ -26455,14 +26849,14 @@ public} Head ID - 1344 + 1343 ID - 1348 + 1355 Points - {175.49001000000183, 157.21081211921225} - {153.44049799999704, 157.21081211921225} + {269.89400999999998, 210.24001000000001} + {245.894001, 210.24001000000001} Style @@ -26481,12 +26875,12 @@ public} Tail ID - 1343 + 1354 Bounds - {{94, 142.07499999999999}, {57.940497999999998, 30.271601}} + {{271.39400999999998, 192.24001000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -26497,7 +26891,7 @@ public} 12 ID - 1344 + 1354 Shape RoundRect Style @@ -26542,27 +26936,71 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 0b743} +\f0\fs24 \cf0 C5} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1354 + + ID + 1353 + Points + + {292.59103748146384, 167.9999999999998} + {292.59102309716741, 190.74001000000032} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1352 + + Bounds - {{176.99001000000001, 142.07499999999999}, {57.940497999999998, 30.271601}} + {{264.48700000000002, 131}, {56.208098999999997, 36}} Class ShapedGraphic FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Courier + LucidaGrande Size - 12 + 10 ID - 1343 + 1352 Shape - RoundRect + Rectangle Style fill @@ -26570,11 +27008,11 @@ public} Color b - 0.837205 + 0.933333 g - 0.959184 + 0.933333 r - 0.826135 + 0.933333 shadow @@ -26594,44 +27032,95 @@ public} 0.382653 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 a6b4c} +\f0\fs20 \cf2 develop} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1345 + + ID + 1351 + Points + + {361.71998347990677, 308.96008733761391} + {361.46909404328488, 290.97985399369736} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1350 + + Bounds - {{245.34700000000001, 278.42401000000001}, {85.304703000000003, 13.0647}} + {{326.97399999999999, 309.95999}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Helvetica-Bold + LucidaGrande Size - 12 + 10 ID - 23 + 1350 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.933333 + g + 0.933333 + r + 0.933333 + shadow @@ -26640,236 +27129,193 @@ public} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 2 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\b\fs28 \cf0 My Computer} +\f0\fs20 \cf2 ruby_client} VerticalPad 0 - Wrap - NO - Bounds - {{59.426299999999998, 268}, {457.14699999999999, 256}} Class - ShapedGraphic + LineGraphic ID - 22 - Shape - Rectangle + 1349 + Points + + {131.10599999999999, 209.74001000000001} + {97, 209.74001000000001} + Style - shadow - - Draws - NO - stroke - Width - 2 + HeadArrow + FilledArrow + Legacy + + LineType + 1 + Pattern + 1 + TailArrow + 0 - Bounds - {{250, 42}, {85.304703000000003, 13.0647}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Font - Helvetica-Bold - Size - 12 + ID + 1344 ID - 6 - Shape - Rectangle + 1348 + Points + + {200.50026344792028, 210.07647543604486} + {176.49973754483892, 209.90354681069894} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\b\fs28 \cf0 git.ourcompany.com} - VerticalPad - 0 + ID + 1343 - Wrap - NO - Bounds - {{59.426299999999998, 29.378299999999999}, {457.14699999999999, 174.62199000000001}} Class - ShapedGraphic + LineGraphic + Head + + ID + 1343 + ID - 5 - Shape - Rectangle + 1347 + Points + + {273.57430586236745, 254.69781941763634} + {242.21370525371057, 227.02219040542775} + Style - shadow - - Draws - NO - stroke - Width - 2 + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Tail + + ID + 1342 + - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - - Lock - NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 2 - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - 0324 - UniqueID - 30 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 553}} - Class - SolidGraphic - ID - 2 - Style - stroke + Class + LineGraphic + Head - Draws - NO + ID + 1342 + + ID + 1346 + Points + + {338.50000000000119, 271.47999011218053} + {315.28801099999941, 271.47999011218053} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1345 - - BaseZoom - 0 - CanvasOrigin - {0, 0} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - Bounds - {{191.5, 251.58700999999999}, {346, 16}} + {{340, 253.47999999999999}, {42.394001000000003, 36}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font - Helvetica + Courier Size 12 ID - 1408 + 1345 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -26878,53 +27324,61 @@ public} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\b\fs26 \cf0 git remote add teamone git://git.team1.ourcompany.com} +\f0\fs24 \cf0 C4} VerticalPad 0 - Wrap - NO Bounds - {{494.06400000000002, 209.173}, {50, 14}} + {{132.60599999999999, 191.74001000000001}, {42.394001000000003, 36}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font - Helvetica + Courier Size 12 ID - 1407 + 1344 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -26933,65 +27387,35 @@ public} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\b\fs24 \cf0 teamone} +\f0\fs24 \cf0 C1} VerticalPad 0 - Wrap - NO - - - Class - LineGraphic - Head - - ID - 1401 - - ID - 1406 - Points - - {529.47038918669057, 155.36501255807809} - {507.42008894252234, 155.47661220279971} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1403 - Bounds - {{530.96996999999999, 140.07499999999999}, {57.940497999999998, 30.271601}} + {{202, 192.24001000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -27002,7 +27426,7 @@ public} 12 ID - 1403 + 1343 Shape RoundRect Style @@ -27047,48 +27471,14 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 31b8e} +\f0\fs24 \cf0 C2} VerticalPad 0 - - AllowToConnect - - Class - LineGraphic - ID - 1402 - Points - - {446.48001000303049, 155.63038673702872} - {418, 155.63} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - Pattern - 1 - TailArrow - 0 - - - Tail - - ID - 1401 - - Bounds - {{447.98000999999999, 140.495}, {57.940497999999998, 30.271601}} + {{271.39400999999998, 253.47999999999999}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -27099,7 +27489,7 @@ public} 12 ID - 1401 + 1342 Shape RoundRect Style @@ -27144,25 +27534,111 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 f42c5} +\f0\fs24 \cf0 C3} VerticalPad 0 + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + 0521 + UniqueID + 5 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 553}} + Class + SolidGraphic + ID + 2 + Style + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + Class LineGraphic Head ID - 1403 + 1365 ID - 1400 + 1372 Points - {559.94070063277161, 119.27130299990841} - {559.94043939411711, 138.57500000013164} + {326.39403818379105, 169.21000999999936} + {326.39401234630202, 192.24001000000098} Style @@ -27181,12 +27657,12 @@ public} Tail ID - 1399 + 1371 Bounds - {{525.61102000000005, 87.999701999999999}, {68.659797999999995, 30.271601}} + {{298.29001, 132.21001000000001}, {56.208098999999997, 36}} Class ShapedGraphic FontInfo @@ -27206,7 +27682,7 @@ public} 10 ID - 1399 + 1371 Shape Rectangle Style @@ -27251,33 +27727,49 @@ public} {\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 master} +\f0\fs20 \cf2 develop} VerticalPad 0 Bounds - {{477.06099999999998, 41.999699}, {85.304703000000003, 13.0647}} + {{252.989, 310.77999999999997}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Helvetica-Bold + LucidaGrande Size - 12 + 10 ID - 1398 + 1350 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.933333 + g + 0.933333 + r + 0.933333 + shadow @@ -27286,149 +27778,46 @@ public} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 2 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\b\fs28 \cf0 git.team1.ourcompany.com} +\f0\fs20 \cf2 ruby_client} VerticalPad 0 - Wrap - NO - - - Bounds - {{378, 27.378}, {284, 174.62199000000001}} - Class - ShapedGraphic - ID - 1397 - Shape - Rectangle - Style - - shadow - - Draws - NO - - stroke - - Width - 2 - - - - - Bounds - {{395, 48.377997999999998}, {249.494, 182.62199000000001}} - Class - ShapedGraphic - ID - 1396 - Shape - Rectangle - Style - - fill - - Color - - b - 0.882653 - g - 0.882653 - r - 0.882653 - - - shadow - - Draws - NO - - stroke - - Width - 2 - - - Bounds - {{183.49001000000001, 209.173}, {34, 14}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo - - Font - Helvetica - Size - 12 - - ID - 1394 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text + LineGraphic + Head - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\b\fs24 \cf0 origin} - VerticalPad - 0 + ID + 1354 - Wrap - NO - - - Class - LineGraphic ID - 1389 + 1369 Points - {392.54443036186905, 394.36523849282418} - {370.495, 394.47699} + {303.69710119302385, 211.8462658719628} + {242.28788980699255, 212.13375413584407} Style @@ -27447,7 +27836,7 @@ public} Tail ID - 1386 + 1365 @@ -27456,14 +27845,14 @@ public} Head ID - 1386 + 1345 ID - 1388 + 1366 Points - {475.54401000000263, 394.21082406427922} - {453.48450799999614, 394.21082406427922} + {314.42869921818357, 231.01441491871691} + {300.16229173185235, 253.99559507977503} Style @@ -27482,12 +27871,12 @@ public} Tail ID - 1387 + 1365 Bounds - {{477.04401000000001, 379.07501000000002}, {57.940497999999998, 30.271601}} + {{305.19699000000003, 193.74001000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -27498,7 +27887,7 @@ public} 12 ID - 1387 + 1365 Shape RoundRect Style @@ -27508,11 +27897,11 @@ public} Color b - 0.837205 + 0.717203 g - 0.959184 + 0.806122 r - 0.826135 + 0.695816 shadow @@ -27543,14 +27932,49 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 190a3} +\f0\fs24 \cf0 C8} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1343 + + ID + 1355 + Points + + {196.89400000000001, 212.24001000000001} + {172.894001, 212.24001000000001} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1354 + + Bounds - {{394.04401000000001, 379.07501000000002}, {57.940497999999998, 30.271601}} + {{198.39400000000001, 194.24001000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -27561,7 +27985,7 @@ public} 12 ID - 1386 + 1354 Shape RoundRect Style @@ -27606,7 +28030,7 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 31b8e} +\f0\fs24 \cf0 C5} VerticalPad 0 @@ -27617,49 +28041,14 @@ public} Head ID - 1354 - - ID - 1382 - Points - - {179.32341918203147, 155.36501170137547} - {157.27268194651879, 155.4766129377663} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1379 - - - - Class - LineGraphic - Head - - ID - 1379 + 1343 ID - 1381 + 1353 Points - {262.3230000000018, 155.21081211258436} - {240.26349799999704, 155.21081211258436} + {150.19703450631781, 169.2100099999997} + {150.19701593782611, 192.7400100000005} Style @@ -27678,25 +28067,34 @@ public} Tail ID - 1380 + 1352 Bounds - {{263.82299999999998, 140.07499999999999}, {57.940497999999998, 30.271601}} + {{122.093, 132.21001000000001}, {56.208098999999997, 36}} Class ShapedGraphic FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Courier + LucidaGrande Size - 12 + 10 ID - 1380 + 1352 Shape - RoundRect + Rectangle Style fill @@ -27704,11 +28102,11 @@ public} Color b - 0.837205 + 0.933333 g - 0.959184 + 0.933333 r - 0.826135 + 0.933333 shadow @@ -27728,83 +28126,117 @@ public} 0.382653 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 190a3} +\f0\fs20 \cf2 master} VerticalPad 0 - Bounds - {{180.82300000000001, 140.07499999999999}, {57.940497999999998, 30.271601}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Font - Courier - Size - 12 + ID + 1345 ID - 1379 - Shape - RoundRect + 1351 + Points + + {288.06749631811738, 309.78000629098204} + {288.12783293920614, 292.76999056388371} + Style - fill + stroke - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - shadow + + Tail + + ID + 1350 + + + + Class + LineGraphic + ID + 1349 + Points + + {58.105998999999997, 211.74001000000001} + {24, 211.74001000000001} + + Style + + stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + Pattern + 1 + TailArrow + 0 + + + + Class + LineGraphic + Head + + ID + 1344 + + ID + 1348 + Points + + {127.50026344791279, 212.07647543837027} + {103.49973654484671, 211.90354680827829} + + Style + stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 31b8e} - VerticalPad - 0 + ID + 1343 @@ -27813,14 +28245,14 @@ public} Head ID - 1375 + 1343 ID - 1378 + 1347 Points - {475.54401000000183, 449.62580211258444} - {453.48450799999711, 449.62580211258444} + {200.55042445205009, 256.52437117593598} + {169.23757656568691, 228.98563879678238} Style @@ -27839,7 +28271,7 @@ public} Tail ID - 1376 + 1342 @@ -27848,14 +28280,14 @@ public} Head ID - 1365 + 1342 ID - 1377 + 1346 Points - {399.77907626001542, 433.94511365586982} - {364.75942285206389, 410.3114769236505} + {265.50000000000057, 273.27000988782379} + {242.28800099999881, 273.27000988782379} Style @@ -27874,12 +28306,12 @@ public} Tail ID - 1375 + 1345 Bounds - {{477.04401000000001, 434.48998999999998}, {57.940497999999998, 30.271601}} + {{267, 255.27000000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -27890,7 +28322,7 @@ public} 12 ID - 1376 + 1345 Shape RoundRect Style @@ -27935,14 +28367,14 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 893cf} +\f0\fs24 \cf0 C4} VerticalPad 0 Bounds - {{394.04401000000001, 434.48998999999998}, {57.940497999999998, 30.271601}} + {{59.605998999999997, 193.74001000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -27953,7 +28385,7 @@ public} 12 ID - 1375 + 1344 Shape RoundRect Style @@ -27998,71 +28430,90 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 a38de} +\f0\fs24 \cf0 C1} VerticalPad 0 + Bounds + {{129, 194.24001000000001}, {42.394001000000003, 36}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 1376 + Font + Courier + Size + 12 ID - 1370 - Points - - {506.01432409061943, 488.90500000000134} - {506.01428562696736, 466.26159099999813} - + 1343 + Shape + RoundRect Style + fill + + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 - Tail + Text - ID - 1369 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 C2} + VerticalPad + 0 Bounds - {{463.36200000000002, 489.90499999999997}, {85.304703000000003, 30.271601}} + {{198.39400000000001, 255.27000000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Courier Size - 10 + 12 ID - 1369 + 1342 Shape - Rectangle + RoundRect Style fill @@ -28070,11 +28521,11 @@ public} Color b - 0.933333 + 0.837205 g - 0.933333 + 0.959184 r - 0.933333 + 0.826135 shadow @@ -28094,36 +28545,122 @@ public} 0.382653 Width - 2 + 3 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 master} +\f0\fs24 \cf0 C3} VerticalPad 0 + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + 0522 + UniqueID + 4 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 553}} + Class + SolidGraphic + ID + 2 + Style + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + Class LineGraphic Head ID - 1360 + 1365 ID - 1366 + 1372 Points - {311.05440913047181, 394.47660154942645} - {289.00407885980496, 394.36501123854856} + {349.76575972822144, 173.85110119067073} + {338.28479095860177, 192.46335820938774} Style @@ -28142,25 +28679,34 @@ public} Tail ID - 1365 + 1371 Bounds - {{312.55399, 379.495}, {57.940497999999998, 30.271601}} + {{333.29001, 137}, {56.208098999999997, 36}} Class ShapedGraphic FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Courier + LucidaGrande Size - 12 + 10 ID - 1365 + 1371 Shape - RoundRect + Rectangle Style fill @@ -28168,11 +28714,11 @@ public} Color b - 0.837205 + 0.933333 g - 0.959184 + 0.933333 r - 0.826135 + 0.933333 shadow @@ -28192,60 +28738,25 @@ public} 0.382653 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 f42c5} +\f0\fs20 \cf2 develop} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 1387 - - ID - 1364 - Points - - {506.01432409061869, 354.93160099999864} - {506.01428562696566, 377.57501000000195} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1363 - - Bounds - {{463.36200000000002, 323.66000000000003}, {85.304703000000003, 30.271601}} + {{252.989, 310.77999999999997}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -28265,7 +28776,7 @@ public} 10 ID - 1363 + 1350 Shape Rectangle Style @@ -28310,7 +28821,7 @@ public} {\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 origin/master} +\f0\fs20 \cf2 ruby_client} VerticalPad 0 @@ -28321,14 +28832,14 @@ public} Head ID - 1361 + 1354 ID - 1362 + 1369 Points - {228.06400000000258, 394.21082407203659} - {206.01450799999603, 394.21082407203659} + {303.69710119302385, 211.8462658719628} + {242.28788980699255, 212.13375413584407} Style @@ -28347,75 +28858,47 @@ public} Tail ID - 1360 + 1365 - Bounds - {{146.57400999999999, 379.07501000000002}, {57.940497999999998, 30.271601}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Font - Courier - Size - 12 + ID + 1345 ID - 1361 - Shape - RoundRect + 1366 + Points + + {314.42869921818357, 231.01441491871691} + {300.16229173185235, 253.99559507977503} + Style - fill - - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - - - shadow - - Draws - NO - stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 0b743} - VerticalPad - 0 + ID + 1365 Bounds - {{229.56399999999999, 379.07501000000002}, {57.940497999999998, 30.271601}} + {{305.19699000000003, 193.74001000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -28426,7 +28909,7 @@ public} 12 ID - 1360 + 1365 Shape RoundRect Style @@ -28436,11 +28919,11 @@ public} Color b - 0.837205 + 0.717203 g - 0.959184 + 0.806122 r - 0.826135 + 0.695816 shadow @@ -28471,22 +28954,25 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 a6b4c} +\f0\fs24 \cf0 C8} VerticalPad 0 - AllowToConnect - Class LineGraphic + Head + + ID + 1343 + ID - 1391 + 1355 Points - {96.332603003030499, 155.63038673697957} - {67.852599999999995, 155.63} + {196.89400000000001, 212.24001000000001} + {172.894001, 212.24001000000001} Style @@ -28498,8 +28984,6 @@ public} LineType 1 - Pattern - 1 TailArrow 0 @@ -28512,7 +28996,7 @@ public} Bounds - {{97.832603000000006, 140.495}, {57.940497999999998, 30.271601}} + {{198.39400000000001, 194.24001000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -28568,7 +29052,7 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 f42c5} +\f0\fs24 \cf0 C5} VerticalPad 0 @@ -28579,14 +29063,14 @@ public} Head ID - 1380 + 1365 ID 1353 Points - {292.79301393851091, 119.27130299997886} - {292.79313947930564, 138.5750000000325} + {303.02231367783151, 173.85110212206104} + {314.5032354451933, 192.46335684079048} Style @@ -28610,7 +29094,7 @@ public} Bounds - {{258.46301, 87.999701999999999}, {68.659797999999995, 30.271601}} + {{263.29001, 137}, {56.208098999999997, 36}} Class ShapedGraphic FontInfo @@ -28680,28 +29164,202 @@ public} 0 + + Class + LineGraphic + Head + + ID + 1345 + + ID + 1351 + Points + + {288.06749631811738, 309.78000629098204} + {288.12783293920614, 292.76999056388371} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1350 + + + + Class + LineGraphic + ID + 1349 + Points + + {58.105998999999997, 211.74001000000001} + {24, 211.74001000000001} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + Pattern + 1 + TailArrow + 0 + + + + + Class + LineGraphic + Head + + ID + 1344 + + ID + 1348 + Points + + {127.50026344791279, 212.07647543837027} + {103.49973654484671, 211.90354680827829} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1343 + + + + Class + LineGraphic + Head + + ID + 1343 + + ID + 1347 + Points + + {200.55042445205009, 256.52437117593598} + {169.23757656568691, 228.98563879678238} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1342 + + + + Class + LineGraphic + Head + + ID + 1342 + + ID + 1346 + Points + + {265.50000000000057, 273.27000988782379} + {242.28800099999881, 273.27000988782379} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1345 + + Bounds - {{254.69399999999999, 296}, {85.304703000000003, 12.605399999999999}} + {{267, 255.27000000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo Font - Helvetica-Bold + Courier Size 12 ID - 23 + 1345 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -28710,38 +29368,62 @@ public} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\b\fs28 \cf0 My Computer} +\f0\fs24 \cf0 C4} VerticalPad 0 - Wrap - NO Bounds - {{112, 285}, {513.84398999999996, 247}} + {{59.605998999999997, 193.74001000000001}, {42.394001000000003, 36}} Class ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + ID - 22 + 1344 Shape - Rectangle + RoundRect Style + fill + + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + shadow Draws @@ -28749,33 +29431,61 @@ public} stroke + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + Width - 2 + 3 + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 C1} + VerticalPad + 0 + Bounds - {{158.48699999999999, 41.999699}, {85.304703000000003, 13.0647}} + {{129, 194.24001000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo Font - Helvetica-Bold + Courier Size 12 ID - 6 + 1343 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -28784,59 +29494,48 @@ public} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\b\fs28 \cf0 git.ourcompany.com} +\f0\fs24 \cf0 C2} VerticalPad 0 - Wrap - NO Bounds - {{59.426299999999998, 27.378}, {284, 174.62199000000001}} + {{198.39400000000001, 255.27000000000001}, {42.394001000000003, 36}} Class ShapedGraphic - ID - 5 - Shape - Rectangle - Style + FontInfo - shadow - - Draws - NO - - stroke - - Width - 2 - + Font + Courier + Size + 12 - - - Bounds - {{76.426299999999998, 48.377997999999998}, {249.494, 182.62199000000001}} - Class - ShapedGraphic ID - 1395 + 1342 Shape - Rectangle + RoundRect Style fill @@ -28844,11 +29543,11 @@ public} Color b - 0.882653 + 0.837205 g - 0.882653 + 0.959184 r - 0.882653 + 0.826135 shadow @@ -28858,10 +29557,31 @@ public} stroke + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + Width - 2 + 3 + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 C3} + VerticalPad + 0 + GridInfo @@ -28909,9 +29629,9 @@ public} RowSpacing 36 SheetTitle - 0325 + 0523 UniqueID - 31 + 6 VPages 1 @@ -28955,14 +29675,14 @@ public} Head ID - 1386 + 1390 ID - 1410 + 1399 Points - {423.01443423711873, 356.27160099998906} - {423.01433421061893, 377.57501000001537} + {224.88903899210436, 325.68719439675499} + {206.57503630118612, 325.54773506361124} Style @@ -28981,90 +29701,58 @@ public} Tail ID - 1409 + 1382 - Bounds - {{374.60500999999999, 325}, {96.819000000000003, 30.271601}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Color - - b - 0.8 - g - 0.8 - r - 0.8 - - Font - LucidaGrande - Size - 10 + ID + 1388 ID - 1409 - Shape - Rectangle + 1398 + Points + + {259.51001034515531, 278.28254191888271} + {238.49958428379969, 278.29999842100227} + Style - fill - - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - - - shadow - - Draws - NO - stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs20 \cf2 teamone/master} - VerticalPad - 0 + ID + 1379 Class LineGraphic + Head + + ID + 1389 + ID - 1367 + 1397 Points - {513, 234.5} - {513, 276.5} + {160.93300000000198, 325.37396147316269} + {141.14260099999703, 325.37396147316269} Style @@ -29078,120 +29766,116 @@ public} 1 TailArrow 0 - Width - 4 + Tail + + ID + 1390 + - Bounds - {{367.51400999999998, 250.5}, {108, 16}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo + LineGraphic + Head - Font - Helvetica - Size - 12 + ID + 1387 ID - 1408 - Shape - Rectangle + 1396 + Points + + {192.85699000000145, 278.31896999999998} + {164.50329099999811, 278.31896999999998} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\b\fs26 \cf0 git fetch teamone} - VerticalPad - 0 + ID + 1388 - Wrap - NO - Bounds - {{494.06400000000002, 209.173}, {50, 14}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo + LineGraphic + Head - Font - Helvetica - Size - 12 + ID + 1343 ID - 1407 - Shape - Rectangle + 1395 + Points + + {112.44646811922426, 311.3931288308674} + {69, 208} + {134.02000147355167, 106.55168375134612} + Style - fill - - Draws - NO - - shadow + stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + + Tail + + ID + 1389 + + + + Class + LineGraphic + Head + + ID + 1343 + + ID + 1394 + Points + + {138.15943415487277, 264.3982639914646} + {108, 208} + {138.65572596279043, 106.72447263259417} + + Style + stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 - Text + Tail - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\b\fs24 \cf0 teamone} - VerticalPad - 0 + ID + 1387 - Wrap - NO Class @@ -29199,14 +29883,14 @@ public} Head ID - 1401 + 1384 ID - 1406 + 1393 Points - {529.47038918669057, 155.36501255807809} - {507.42008894252234, 155.47661220279971} + {291.91103298436826, 230.97776602155307} + {268.45204204962204, 231.13682130450846} Style @@ -29225,83 +29909,59 @@ public} Tail ID - 1403 + 1380 - Bounds - {{530.96996999999999, 140.07499999999999}, {57.940497999999998, 30.271601}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Font - Courier - Size - 12 + ID + 1383 ID - 1403 - Shape - RoundRect + 1392 + Points + + {230.6530000000019, 231.26495} + {202.29930099999885, 231.26495} + Style - fill - - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - - - shadow - - Draws - NO - stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 31b8e} - VerticalPad - 0 + ID + 1384 - AllowToConnect - Class LineGraphic + Head + + ID + 1343 + ID - 1402 + 1391 Points - {446.48001000303049, 155.63038673702872} - {418, 155.63} + {169.27356797027039, 217.80277019903482} + {148, 197.52901} + {143.58888826198682, 106.787033819919} Style @@ -29311,10 +29971,6 @@ public} FilledArrow Legacy - LineType - 1 - Pattern - 1 TailArrow 0 @@ -29322,12 +29978,12 @@ public} Tail ID - 1401 + 1383 Bounds - {{447.98000999999999, 140.495}, {57.940497999999998, 30.271601}} + {{162.43299999999999, 312.77600000000001}, {42.642600999999999, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -29338,7 +29994,7 @@ public} 12 ID - 1401 + 1390 Shape RoundRect Style @@ -29383,71 +30039,27 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 f42c5} +\f0\fs24 \cf0 C12} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 1403 - - ID - 1400 - Points - - {559.94070063277161, 119.27130299990841} - {559.94043939411711, 138.57500000013164} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1399 - - Bounds - {{525.61102000000005, 87.999701999999999}, {68.659797999999995, 30.271601}} + {{97, 312.77600000000001}, {42.642600999999999, 25.195900000000002}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Courier Size - 10 + 12 ID - 1399 + 1389 Shape - Rectangle + RoundRect Style fill @@ -29455,11 +30067,11 @@ public} Color b - 0.933333 + 0.837205 g - 0.933333 + 0.959184 r - 0.933333 + 0.826135 shadow @@ -29479,44 +30091,51 @@ public} 0.382653 Width - 2 + 3 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 master} +\f0\fs24 \cf0 C11} VerticalPad 0 Bounds - {{477.06099999999998, 41.999699}, {85.304703000000003, 13.0647}} + {{194.35699, 265.72100999999998}, {42.642600999999999, 25.195900000000002}} Class ShapedGraphic FontInfo Font - Helvetica-Bold + Courier Size 12 ID - 1398 + 1388 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -29525,59 +30144,48 @@ public} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\b\fs28 \cf0 git.team1.ourcompany.com} +\f0\fs24 \cf0 C10} VerticalPad 0 - Wrap - NO Bounds - {{378, 27.378}, {284, 174.62199000000001}} + {{128.20399, 265.72100999999998}, {34.799301, 25.195900000000002}} Class ShapedGraphic - ID - 1397 - Shape - Rectangle - Style + FontInfo - shadow - - Draws - NO - - stroke - - Width - 2 - + Font + Courier + Size + 12 - - - Bounds - {{395, 48.377997999999998}, {249.494, 182.62199000000001}} - Class - ShapedGraphic ID - 1396 + 1387 Shape - Rectangle + RoundRect Style fill @@ -29585,11 +30193,11 @@ public} Color b - 0.882653 + 0.837205 g - 0.882653 + 0.959184 r - 0.882653 + 0.826135 shadow @@ -29599,37 +30207,61 @@ public} stroke + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + Width - 2 + 3 + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 C9} + VerticalPad + 0 + Bounds - {{183.49001000000001, 209.173}, {34, 14}} + {{232.15299999999999, 218.66701}, {34.799301, 25.195900000000002}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font - Helvetica + Courier Size 12 ID - 1394 + 1384 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -29638,95 +30270,35 @@ public} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\b\fs24 \cf0 origin} +\f0\fs24 \cf0 C8} VerticalPad 0 - Wrap - NO - - - Class - LineGraphic - ID - 1389 - Points - - {392.54443036186905, 394.36523849282418} - {370.495, 394.47699} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1386 - - - - Class - LineGraphic - Head - - ID - 1386 - - ID - 1388 - Points - - {490.71629949577579, 394.50044625100338} - {453.48420851356718, 394.34116271632314} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1387 - Bounds - {{492.21600000000001, 379.495}, {57.940497999999998, 30.271601}} + {{166, 218.66701}, {34.799301, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -29737,7 +30309,7 @@ public} 12 ID - 1387 + 1383 Shape RoundRect Style @@ -29782,27 +30354,36 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 190a3} +\f0\fs24 \cf0 C7} VerticalPad 0 Bounds - {{394.04401000000001, 379.07501000000002}, {57.940497999999998, 30.271601}} + {{225.88901000000001, 312.77600000000001}, {85.697997999999998, 26.490200000000002}} Class ShapedGraphic FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Courier + LucidaGrande Size - 12 + 10 ID - 1386 + 1382 Shape - RoundRect + Rectangle Style fill @@ -29810,11 +30391,11 @@ public} Color b - 0.837205 + 0.933333 g - 0.959184 + 0.933333 r - 0.826135 + 0.933333 shadow @@ -29834,108 +30415,119 @@ public} 0.382653 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 31b8e} +\f0\fs20 \cf2 ps/blame} VerticalPad 0 - Class - LineGraphic - Head - - ID - 1354 - - ID - 1382 - Points - - {179.32341918203147, 155.36501170137547} - {157.27268194651879, 155.4766129377663} - - Style + Bounds + {{292.91100999999998, 217.37299999999999}, {104.09399999999999, 26.490200000000002}} + Class + ShapedGraphic + FontInfo - stroke + Color - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + b + 0.8 + g + 0.8 + r + 0.8 - - Tail - - ID - 1379 - - - - Class - LineGraphic - Head - - ID - 1379 + Font + LucidaGrande + Size + 10 ID - 1381 - Points - - {262.3230000000018, 155.21081211258436} - {240.26349799999704, 155.21081211258436} - + 1380 + Shape + Rectangle Style + fill + + Color + + b + 0.933333 + g + 0.933333 + r + 0.933333 + + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 2 - Tail + Text - ID - 1380 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs20 \cf2 db/push-cleanup} + VerticalPad + 0 Bounds - {{263.82299999999998, 140.07499999999999}, {57.940497999999998, 30.271601}} + {{260.51001000000002, 265.00101000000001}, {85.697997999999998, 26.490200000000002}} Class ShapedGraphic FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Courier + LucidaGrande Size - 12 + 10 ID - 1380 + 1379 Shape - RoundRect + Rectangle Style fill @@ -29943,11 +30535,11 @@ public} Color b - 0.837205 + 0.933333 g - 0.959184 + 0.933333 r - 0.826135 + 0.933333 shadow @@ -29967,38 +30559,81 @@ public} 0.382653 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 190a3} +\f0\fs20 \cf2 js/notes} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1343 + + ID + 1378 + Points + + {193.49194673559552, 178.78953767571369} + {176, 172.90700000000001} + {148.67353646545871, 106.67541709153137} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + + + Tail + + ID + 1373 + + Bounds - {{180.82300000000001, 140.07499999999999}, {57.940497999999998, 30.271601}} + {{321.26801, 172.334}, {141, 26.490200000000002}} Class ShapedGraphic FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Courier + LucidaGrande Size - 12 + 10 ID - 1379 + 1377 Shape - RoundRect + Rectangle Style fill @@ -30006,11 +30641,11 @@ public} Color b - 0.837205 + 0.933333 g - 0.959184 + 0.933333 r - 0.826135 + 0.933333 shadow @@ -30030,18 +30665,18 @@ public} 0.382653 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 31b8e} +\f0\fs20 \cf2 jk/clone-post-checkout} VerticalPad 0 @@ -30052,14 +30687,14 @@ public} Head ID - 1375 + 1374 ID - 1378 + 1376 Points - {490.7160000000024, 449.62580377694417} - {453.48450799999625, 449.62580377694417} + {320.2680261527704, 185.17270373070954} + {296.80912904224095, 185.03936652202208} Style @@ -30078,7 +30713,7 @@ public} Tail ID - 1376 + 1377 @@ -30087,14 +30722,14 @@ public} Head ID - 1365 + 1373 ID - 1377 + 1375 Points - {399.77907626001542, 433.94511365586982} - {364.75942285206389, 410.3114769236505} + {259.01001000000002, 184.93195} + {230.65629100000001, 184.93195} Style @@ -30113,12 +30748,12 @@ public} Tail ID - 1375 + 1374 Bounds - {{492.21600000000001, 434.48998999999998}, {57.940497999999998, 30.271601}} + {{260.51001000000002, 172.334}, {34.799301, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -30129,7 +30764,7 @@ public} 12 ID - 1376 + 1374 Shape RoundRect Style @@ -30174,14 +30809,14 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 893cf} +\f0\fs24 \cf0 C6} VerticalPad 0 Bounds - {{394.04401000000001, 434.48998999999998}, {57.940497999999998, 30.271601}} + {{194.35699, 172.334}, {34.799301, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -30192,7 +30827,7 @@ public} 12 ID - 1375 + 1373 Shape RoundRect Style @@ -30237,49 +30872,14 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 a38de} +\f0\fs24 \cf0 C5} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 1376 - - ID - 1370 - Points - - {521.18632165690326, 488.90500000000162} - {521.18627977801123, 466.26159099999751} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1369 - - Bounds - {{478.53399999999999, 489.90499999999997}, {85.304703000000003, 30.271601}} + {{346.21399000000002, 126}, {98, 26.490200000000002}} Class ShapedGraphic FontInfo @@ -30299,7 +30899,7 @@ public} 10 ID - 1369 + 1350 Shape Rectangle Style @@ -30344,7 +30944,7 @@ public} {\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 master} +\f0\fs20 \cf2 tv/rebase-stat} VerticalPad 0 @@ -30355,14 +30955,14 @@ public} Head ID - 1360 + 1343 ID - 1366 + 1353 Points - {311.05440913047181, 394.47660154942645} - {289.00407885980496, 394.36501123854856} + {142.90324167991304, 62.490199999909009} + {142.90345892065281, 78.592903000138506} Style @@ -30381,25 +30981,34 @@ public} Tail ID - 1365 + 1352 Bounds - {{312.55399, 379.495}, {57.940497999999998, 30.271601}} + {{114.79900000000001, 35}, {56.208098999999997, 26.490200000000002}} Class ShapedGraphic FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Courier + LucidaGrande Size - 12 + 10 ID - 1365 + 1352 Shape - RoundRect + Rectangle Style fill @@ -30407,11 +31016,11 @@ public} Color b - 0.837205 + 0.933333 g - 0.959184 + 0.933333 r - 0.826135 + 0.933333 shadow @@ -30431,18 +31040,18 @@ public} 0.382653 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 f42c5} +\f0\fs20 \cf2 master} VerticalPad 0 @@ -30453,14 +31062,14 @@ public} Head ID - 1387 + 1345 ID - 1364 + 1351 Points - {521.18632114583841, 356.27160099999827} - {521.18628028046169, 377.99500000000268} + {345.2140149233885, 138.89208232727682} + {322.4530101992284, 138.73138150884137} Style @@ -30479,79 +31088,108 @@ public} Tail ID - 1363 + 1350 - Bounds - {{478.53399999999999, 325}, {85.304703000000003, 30.271601}} Class - ShapedGraphic - FontInfo + LineGraphic + ID + 1349 + Points + + {59.105999000003244, 93.337963694817063} + {19, 93.337997000000001} + + Style - Color + stroke - b - 0.8 - g - 0.8 - r - 0.8 + HeadArrow + FilledArrow + Legacy + + LineType + 1 + Pattern + 1 + TailArrow + 0 - Font - LucidaGrande - Size - 10 + + Tail + + ID + 1344 + + + + Class + LineGraphic + Head + + ID + 1344 ID - 1363 - Shape - Rectangle + 1348 + Points + + {124.00456019829178, 92.879294978700315} + {96.904739801986224, 93.14950606803734} + Style - fill - - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - - - shadow + stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + Tail + + ID + 1343 + + + + Class + LineGraphic + Head + + ID + 1343 + + ID + 1347 + Points + + {218.51726951670096, 137.55418637798789} + {190.40100000000001, 136} + {157.4340882464727, 105.94003155334926} + + Style + stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs20 \cf2 origin/master} - VerticalPad - 0 + ID + 1342 @@ -30560,14 +31198,14 @@ public} Head ID - 1361 + 1342 ID - 1362 + 1346 Points - {228.06400000000258, 394.21082407203659} - {206.01450799999603, 394.21082407203659} + {284.65399000000002, 138.59795} + {256.29930100000001, 138.59795} Style @@ -30586,12 +31224,12 @@ public} Tail ID - 1360 + 1345 Bounds - {{146.57400999999999, 379.07501000000002}, {57.940497999999998, 30.271601}} + {{286.15399000000002, 126}, {34.799301, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -30602,7 +31240,7 @@ public} 12 ID - 1361 + 1345 Shape RoundRect Style @@ -30647,14 +31285,14 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 0b743} +\f0\fs24 \cf0 C4} VerticalPad 0 Bounds - {{229.56399999999999, 379.07501000000002}, {57.940497999999998, 30.271601}} + {{60.605998999999997, 80.739998}, {34.799301, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -30665,7 +31303,7 @@ public} 12 ID - 1360 + 1344 Shape RoundRect Style @@ -30710,64 +31348,30 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 a6b4c} +\f0\fs24 \cf0 C1} VerticalPad 0 - AllowToConnect - + Bounds + {{125.504, 80.092903000000007}, {34.799301, 25.195900000000002}} Class - LineGraphic + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + ID - 1391 - Points - - {96.332603003030499, 155.63038673697957} - {67.852599999999995, 155.63} - + 1343 + Shape + RoundRect Style - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - Pattern - 1 - TailArrow - 0 - - - Tail - - ID - 1354 - - - - Bounds - {{97.832603000000006, 140.495}, {57.940497999999998, 30.271601}} - Class - ShapedGraphic - FontInfo - - Font - Courier - Size - 12 - - ID - 1354 - Shape - RoundRect - Style - - fill + fill Color @@ -30807,71 +31411,27 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 f42c5} +\f0\fs24 \cf0 C2} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 1380 - - ID - 1353 - Points - - {292.79301393851091, 119.27130299997886} - {292.79313947930564, 138.5750000000325} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1352 - - Bounds - {{258.46301, 87.999701999999999}, {68.659797999999995, 30.271601}} + {{220, 126}, {34.799301, 25.195900000000002}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Courier Size - 10 + 12 ID - 1352 + 1342 Shape - Rectangle + RoundRect Style fill @@ -30879,11 +31439,11 @@ public} Color b - 0.933333 + 0.837205 g - 0.933333 + 0.959184 r - 0.933333 + 0.826135 shadow @@ -30903,204 +31463,21 @@ public} 0.382653 Width - 2 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs20 \cf2 master} - VerticalPad - 0 - - - - Bounds - {{254.69399999999999, 296}, {85.304703000000003, 12.605399999999999}} - Class - ShapedGraphic - FontInfo - - Font - Helvetica-Bold - Size - 12 - - ID - 23 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\b\fs28 \cf0 My Computer} - VerticalPad - 0 - - Wrap - NO - - - Bounds - {{112, 285}, {513.84398999999996, 247}} - Class - ShapedGraphic - ID - 22 - Shape - Rectangle - Style - - shadow - - Draws - NO - - stroke - - Width - 2 - - - - - Bounds - {{158.48699999999999, 41.999699}, {85.304703000000003, 13.0647}} - Class - ShapedGraphic - FontInfo - - Font - Helvetica-Bold - Size - 12 - - ID - 6 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\b\fs28 \cf0 git.ourcompany.com} +\f0\fs24 \cf0 C3} VerticalPad 0 - Wrap - NO - - - Bounds - {{59.426299999999998, 27.378}, {284, 174.62199000000001}} - Class - ShapedGraphic - ID - 5 - Shape - Rectangle - Style - - shadow - - Draws - NO - - stroke - - Width - 2 - - - - - Bounds - {{76.426299999999998, 48.377997999999998}, {249.494, 182.62199000000001}} - Class - ShapedGraphic - ID - 1395 - Shape - Rectangle - Style - - fill - - Color - - b - 0.882653 - g - 0.882653 - r - 0.882653 - - - shadow - - Draws - NO - - stroke - - Width - 2 - - GridInfo @@ -31148,9 +31525,9 @@ public} RowSpacing 36 SheetTitle - 0326 + 0524 UniqueID - 32 + 7 VPages 1 @@ -31180,8 +31557,6 @@ public} 0 CanvasOrigin {0, 0} - CanvasSize - {756, 553} ColumnAlign 1 ColumnSpacing @@ -31196,14 +31571,14 @@ public} Head ID - 1420 + 1410 ID - 1428 + 1418 Points - {166.57918584071692, 287.51586167195109} - {132.37740563504161, 264.47514931247957} + {575.00003695150428, 187.87630498860622} + {551.28560770442095, 188.08017613832081} Style @@ -31222,70 +31597,7 @@ public} Tail ID - 1369 - - - - Bounds - {{85.817100999999994, 231.33000000000001}, {48.157501000000003, 36}} - Class - ShapedGraphic - FontInfo - - Font - Helvetica - Size - 12 - - ID - 1420 - Shape - RoundRect - Style - - fill - - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 C1} - VerticalPad - 0 + 1416 @@ -31294,36 +31606,25 @@ public} Head ID - 1375 + 1403 ID - 1405 + 1417 Points - {163.98199, 106.607} - {135.474602, 106.607} + {575.00003698593173, 233.70977847538589} + {551.22312266931328, 233.5052749403672} Style stroke - Color - - b - 0.505102 - g - 0.505102 - r - 0.505102 - HeadArrow FilledArrow Legacy LineType 1 - Pattern - 2 TailArrow 0 @@ -31331,126 +31632,12 @@ public} Tail ID - 1344 - - - - Bounds - {{85.817100999999994, 88.607001999999994}, {48.157501000000003, 36}} - Class - ShapedGraphic - FontInfo - - Font - Helvetica - Size - 12 - - ID - 1375 - Shape - RoundRect - Style - - fill - - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 C1} - VerticalPad - 0 - - - - Bounds - {{130, 47}, {36.333599, 2.5095698999999998}} - Class - ShapedGraphic - FontInfo - - Font - Helvetica - Size - 12 - - ID - 1352 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\b\fs24 \cf0 git.team1.ourcompany.com} - VerticalPad - 0 + 1415 - Wrap - NO Bounds - {{164.98199, 93.107001999999994}, {70.932297000000005, 27}} + {{576, 174.381}, {56.208098999999997, 26.490200000000002}} Class ShapedGraphic FontInfo @@ -31470,7 +31657,7 @@ public} 10 ID - 1344 + 1416 Shape Rectangle Style @@ -31515,14 +31702,14 @@ public} {\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 master} +\f0\fs20 \cf2 pu} VerticalPad 0 Bounds - {{71, 56.959201999999998}, {382, 104.041}} + {{576, 220.715}, {56.208098999999997, 26.490200000000002}} Class ShapedGraphic FontInfo @@ -31542,7 +31729,7 @@ public} 10 ID - 1350 + 1415 Shape Rectangle Style @@ -31581,6 +31768,13 @@ public} Text + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs20 \cf2 next} VerticalPad 0 @@ -31591,36 +31785,25 @@ public} Head ID - 1370 + 1409 ID - 1408 + 1414 Points - {322.31200999999999, 302.66100999999998} - {293.80450100000002, 302.66100999999998} + {506.43799000000143, 188.27296000000001} + {488.34830099999772, 188.27296000000001} Style stroke - Color - - b - 0.505102 - g - 0.505102 - r - 0.505102 - HeadArrow FilledArrow Legacy LineType 1 - Pattern - 2 TailArrow 0 @@ -31628,7 +31811,7 @@ public} Tail ID - 1364 + 1410 @@ -31637,67 +31820,26 @@ public} Head ID - 1420 + 1343 ID - 1407 + 1413 Points - {163.98199, 249.33000000000001} - {135.47460199999998, 249.33000000000001} + {443.50001292434291, 188.24642732444889} + {235.15299999999999, 188} + {161.30900536794388, 209.87554713440119} Style stroke - Color - - b - 0.505102 - g - 0.505102 - r - 0.505102 - HeadArrow FilledArrow - Legacy + HopLines - LineType + HopType 1 - Pattern - 2 - TailArrow - 0 - - - Tail - - ID - 1357 - - - - Class - LineGraphic - Head - - ID - 1369 - - ID - 1371 - Points - - {242.64700000000002, 302.66100999999998} - {214.63949099999999, 302.66100999999998} - - Style - - stroke - - HeadArrow - FilledArrow Legacy TailArrow @@ -31707,23 +31849,23 @@ public} Tail ID - 1370 + 1409 Bounds - {{244.14699999999999, 284.66100999999998}, {48.157501000000003, 36}} + {{507.93799000000001, 175.67500000000001}, {41.848300999999999, 25.195900000000002}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1370 + 1410 Shape RoundRect Style @@ -31733,11 +31875,11 @@ public} Color b - 0.837205 + 0.699046 g - 0.959184 + 0.785714 r - 0.826135 + 0.6782 shadow @@ -31764,29 +31906,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C3} +\f0\fs24 \cf0 C17} VerticalPad 0 Bounds - {{164.98199, 284.66100999999998}, {48.157501000000003, 36}} + {{445, 175.67500000000001}, {41.848300999999999, 25.195900000000002}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1369 + 1409 Shape RoundRect Style @@ -31796,11 +31938,11 @@ public} Color b - 0.837205 + 0.699046 g - 0.959184 + 0.785714 r - 0.826135 + 0.6782 shadow @@ -31827,112 +31969,135 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C2} +\f0\fs24 \cf0 C16} VerticalPad 0 - Bounds - {{323.31200999999999, 289.16100999999998}, {81.652298000000002, 27}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Color - - b - 0.8 - g - 0.8 - r - 0.8 - - Font - LucidaGrande - Size - 10 + ID + 1343 ID - 1364 - Shape - Rectangle + 1406 + Points + + {380.5005619669999, 233.13788881159931} + {235.15299999999999, 232} + {161.61832695545547, 218.71021798660706} + Style - fill + stroke - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 - shadow + + Tail + + ID + 1400 + + + + Class + LineGraphic + Head + + ID + 1402 + + ID + 1405 + Points + + {506.50000000000148, 233.31296} + {488.22380099999771, 233.31296} + + Style + + stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + Tail + + ID + 1403 + + + + Class + LineGraphic + Head + + ID + 1400 + + ID + 1404 + Points + + {443.50000000000142, 233.31296} + {425.22380099999771, 233.31296} + + Style + stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs20 \cf2 master} - VerticalPad - 0 + ID + 1402 Bounds - {{164.98199, 235.83000000000001}, {101, 27}} + {{508, 220.715}, {41.723801000000002, 25.195900000000002}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Courier Size - 10 + 12 ID - 1357 + 1403 Shape - Rectangle + RoundRect Style fill @@ -31940,11 +32105,11 @@ public} Color b - 0.933333 + 0.699046 g - 0.933333 + 0.785714 r - 0.933333 + 0.6782 shadow @@ -31964,44 +32129,51 @@ public} 0.382653 Width - 2 + 3 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 teamone/master} +\f0\fs24 \cf0 C15} VerticalPad 0 Bounds - {{93.974602000000004, 191}, {37, 7.7526598}} + {{445, 220.715}, {41.723801000000002, 25.195900000000002}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1353 + 1402 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.699046 + g + 0.785714 + r + 0.6782 + shadow @@ -32010,52 +32182,48 @@ public} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\b\fs24 \cf0 My Computer} +\f0\fs24 \cf0 C14} VerticalPad 0 - Wrap - NO Bounds - {{71, 203.43899999999999}, {382, 137.56100000000001}} + {{382, 220.715}, {41.723801000000002, 25.195900000000002}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Courier Size - 10 + 12 ID - 1351 + 1400 Shape - Rectangle + RoundRect Style fill @@ -32063,11 +32231,11 @@ public} Color b - 0.933333 + 0.699046 g - 0.933333 + 0.785714 r - 0.933333 + 0.6782 shadow @@ -32087,119 +32255,36 @@ public} 0.382653 Width - 2 + 3 Text + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 C13} VerticalPad 0 - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - - Lock - NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 2 - OutlineStyle - Basic - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - 336 - UniqueID - 39 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 553}} - Class - SolidGraphic - ID - 2 - Style - - stroke - - Draws - NO - - - - BaseZoom - 0 - CanvasOrigin - {0, 0} - CanvasSize - {756, 553} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - Class LineGraphic Head ID - 1424 + 1390 ID - 1431 + 1399 Points - {324.90919796026998, 347.51587647002356} - {290.70731279417049, 324.47512399109394} + {334.74399000000005, 71.089975525544588} + {310.52560099999687, 71.089963112602078} Style @@ -32218,7 +32303,7 @@ public} Tail ID - 1429 + 1382 @@ -32227,14 +32312,14 @@ public} Head ID - 1370 + 1388 ID - 1430 + 1398 Points - {321.81200999999999, 362.66100999999998} - {293.80450100000002, 362.66100999999998} + {362.87102292644778, 121.7430274218445} + {334.01715452768008, 121.93841407670082} Style @@ -32253,70 +32338,42 @@ public} Tail ID - 1429 + 1379 - Bounds - {{323.31200999999999, 344.66100999999998}, {48.157501000000003, 36}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Font - Helvetica - Size - 12 + ID + 1389 ID - 1429 - Shape - RoundRect + 1397 + Points + + {264.88300000000362, 71.089966000000004} + {245.09260099999506, 71.089966000000004} + Style - fill - - Color - - b - 0.689968 - g - 0.77551 - r - 0.669392 - - - shadow - - Draws - NO - stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 C7} - VerticalPad - 0 + ID + 1390 @@ -32325,14 +32382,14 @@ public} Head ID - 1420 + 1387 ID - 1428 + 1396 Points - {166.57918701566962, 347.51585946560294} - {132.37740467820024, 324.47514110925385} + {288.37500000000142, 122.09296000000001} + {260.02080099999773, 122.09296000000001} Style @@ -32351,7 +32408,7 @@ public} Tail ID - 1369 + 1388 @@ -32360,14 +32417,15 @@ public} Head ID - 1421 + 1343 ID - 1427 + 1395 Points - {246.70574832014313, 292.63510247001381} - {210.58074277486779, 264.60987739996176} + {200.55211983415774, 78.404713482921878} + {178, 86} + {146.71527042470825, 201.28235841955174} Style @@ -32377,8 +32435,6 @@ public} FilledArrow Legacy - LineType - 1 TailArrow 0 @@ -32386,7 +32442,7 @@ public} Tail ID - 1424 + 1389 @@ -32395,14 +32451,15 @@ public} Head ID - 1420 + 1343 ID - 1426 + 1394 Points - {167.54074923998937, 264.60989449779032} - {131.41584272099519, 292.63508544881643} + {215.84496210552052, 127.41270837254197} + {186, 134.69099} + {150.34364460964159, 201.40708397817136} Style @@ -32412,8 +32469,6 @@ public} FilledArrow Legacy - LineType - 1 TailArrow 0 @@ -32421,7 +32476,7 @@ public} Tail ID - 1421 + 1387 @@ -32430,14 +32485,14 @@ public} Head ID - 1422 + 1384 ID - 1425 + 1393 Points - {242.64700000000002, 309.32999000000001} - {214.63949099999999, 309.32999000000001} + {294.91103298370496, 381.09576083131924} + {271.45204205978774, 381.25481381891956} Style @@ -32447,6 +32502,8 @@ public} FilledArrow Legacy + LineType + 1 TailArrow 0 @@ -32454,70 +32511,42 @@ public} Tail ID - 1424 + 1380 - Bounds - {{244.14699999999999, 291.32999000000001}, {48.157501000000003, 36}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Font - Helvetica - Size - 12 + ID + 1383 ID - 1424 - Shape - RoundRect + 1392 + Points + + {233.65300000000553, 381.38297} + {205.29930099999302, 381.38297} + Style - fill - - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - - - shadow - - Draws - NO - stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 C6} - VerticalPad - 0 + ID + 1384 @@ -32526,14 +32555,15 @@ public} Head ID - 1420 + 1343 ID - 1423 + 1391 Points - {163.48199000000002, 309.32999000000001} - {135.47460199999998, 309.32999000000001} + {177.70024339154733, 367.5143014563925} + {148, 320.16599000000002} + {143.58888902652544, 229.42413081597715} Style @@ -32550,23 +32580,23 @@ public} Tail ID - 1422 + 1383 Bounds - {{164.98199, 291.32999000000001}, {48.157501000000003, 36}} + {{266.38299999999998, 58.492001000000002}, {42.642600999999999, 25.195900000000002}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1422 + 1390 Shape RoundRect Style @@ -32607,29 +32637,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C4} +\f0\fs24 \cf0 C12} VerticalPad 0 Bounds - {{164.98199, 229.91498999999999}, {48.157501000000003, 36}} + {{200.94999999999999, 58.492001000000002}, {42.642600999999999, 25.195900000000002}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1421 + 1389 Shape RoundRect Style @@ -32670,29 +32700,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C5} +\f0\fs24 \cf0 C11} VerticalPad 0 Bounds - {{85.817100999999994, 291.32999000000001}, {48.157501000000003, 36}} + {{289.875, 109.495}, {42.642600999999999, 25.195900000000002}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1420 + 1388 Shape RoundRect Style @@ -32733,132 +32763,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C1} +\f0\fs24 \cf0 C10} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 1379 - - ID - 1419 - Points - - {246.04058243548153, 90.931239958573101} - {211.24590901303861, 66.345759276472393} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1382 - - - - Class - LineGraphic - Head - - ID - 1375 - - ID - 1409 - Points - - {166.87558131444794, 66.345777334153667} - {132.08101055238546, 90.931222438730401} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1379 - - - - Class - LineGraphic - Head - - ID - 1380 - - ID - 1383 - Points - - {242.64700000000011, 106.607} - {214.63949100000002, 106.607} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 - - - Tail - - ID - 1382 - - Bounds - {{244.14699999999999, 88.607001999999994}, {48.157501000000003, 36}} + {{216.797, 109.495}, {41.723801000000002, 25.195900000000002}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1382 + 1387 Shape RoundRect Style @@ -32899,62 +32826,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C6} +\f0\fs24 \cf0 C9} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 1375 - - ID - 1381 - Points - - {163.48199000000011, 106.607} - {135.474602, 106.607} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 - - - Tail - - ID - 1380 - - Bounds - {{164.98199, 88.607001999999994}, {48.157501000000003, 36}} + {{235.15299999999999, 368.78500000000003}, {34.799301, 25.195900000000002}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1380 + 1384 Shape RoundRect Style @@ -32995,29 +32889,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C4} +\f0\fs24 \cf0 C8} VerticalPad 0 Bounds - {{164.98199, 32.669998}, {48.157501000000003, 36}} + {{169, 368.78500000000003}, {34.799301, 25.195900000000002}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1379 + 1383 Shape RoundRect Style @@ -33058,77 +32952,40 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C5} +\f0\fs24 \cf0 C7} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 1382 - - ID - 1405 - Points - - {322.31200999999999, 106.607} - {293.80450100000002, 106.607} - - Style - - stroke - - Color - - b - 0.505102 - g - 0.505102 - r - 0.505102 - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - Pattern - 2 - TailArrow - 0 - - - Tail - - ID - 1344 - - Bounds - {{85.817100999999994, 88.607001999999994}, {48.157501000000003, 36}} + {{335.74399, 57.844898000000001}, {85.697997999999998, 26.490200000000002}} Class ShapedGraphic FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Helvetica + LucidaGrande Size - 12 + 10 ID - 1375 + 1382 Shape - RoundRect + Rectangle Style fill @@ -33136,11 +32993,11 @@ public} Color b - 0.837205 + 0.933333 g - 0.959184 + 0.933333 r - 0.826135 + 0.933333 shadow @@ -33160,7 +33017,7 @@ public} 0.382653 Width - 3 + 2 Text @@ -33168,36 +33025,52 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C1} +\f0\fs20 \cf2 ps/blame} VerticalPad 0 Bounds - {{130, 15}, {36.333599, 3.21401}} + {{295.91100999999998, 367.49099999999999}, {104.09399999999999, 26.490200000000002}} Class ShapedGraphic FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Helvetica + LucidaGrande Size - 12 + 10 ID - 1352 + 1380 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.933333 + g + 0.933333 + r + 0.933333 + shadow @@ -33206,30 +33079,35 @@ public} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 2 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\b\fs24 \cf0 git.team1.ourcompany.com} +\f0\fs20 \cf2 db/push-cleanup} VerticalPad 0 - Wrap - NO Bounds - {{323.31200999999999, 93.107001999999994}, {70.932297000000005, 27}} + {{363.87099999999998, 108.20099999999999}, {85.697997999999998, 26.490200000000002}} Class ShapedGraphic FontInfo @@ -33249,7 +33127,7 @@ public} 10 ID - 1344 + 1379 Shape Rectangle Style @@ -33294,14 +33172,48 @@ public} {\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 master} +\f0\fs20 \cf2 js/notes} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1343 + + ID + 1378 + Points + + {201.35381618193065, 321.38800287276672} + {176, 295.54401000000001} + {148.6735426330483, 229.31251387276578} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + + + Tail + + ID + 1373 + + Bounds - {{71, 27.754801}, {516, 133.245}} + {{324.26801, 322.452}, {98, 26.490200000000002}} Class ShapedGraphic FontInfo @@ -33321,7 +33233,7 @@ public} 10 ID - 1350 + 1377 Shape Rectangle Style @@ -33360,6 +33272,13 @@ public} Text + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs20 \cf2 jk/post-checkout} VerticalPad 0 @@ -33370,36 +33289,25 @@ public} Head ID - 1429 + 1374 ID - 1408 + 1376 Points - {394, 362.66100999999998} - {372.96951100000001, 362.66100999999998} + {323.26803454808396, 335.34675043312166} + {299.80903442780647, 335.18237334178804} Style stroke - Color - - b - 0.505102 - g - 0.505102 - r - 0.505102 - HeadArrow FilledArrow Legacy LineType 1 - Pattern - 2 TailArrow 0 @@ -33407,7 +33315,7 @@ public} Tail ID - 1364 + 1377 @@ -33416,69 +33324,25 @@ public} Head ID - 1424 + 1373 ID - 1407 + 1375 Points - {322.31200999999999, 309.32999000000001} - {293.80450100000002, 309.32999000000001} + {262.01001000000122, 335.04996} + {233.65629099999811, 335.04996} Style stroke - Color - - b - 0.505102 - g - 0.505102 - r - 0.505102 - HeadArrow FilledArrow Legacy LineType 1 - Pattern - 2 - TailArrow - 0 - - - Tail - - ID - 1357 - - - - Class - LineGraphic - Head - - ID - 1369 - - ID - 1371 - Points - - {242.64700000000002, 362.66100999999998} - {214.63949099999999, 362.66100999999998} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - TailArrow 0 @@ -33486,23 +33350,23 @@ public} Tail ID - 1370 + 1374 Bounds - {{244.14699999999999, 344.66100999999998}, {48.157501000000003, 36}} + {{263.51001000000002, 322.452}, {34.799301, 25.195900000000002}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1370 + 1374 Shape RoundRect Style @@ -33543,29 +33407,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C3} +\f0\fs24 \cf0 C6} VerticalPad 0 Bounds - {{164.98199, 344.66100999999998}, {48.157501000000003, 36}} + {{197.35699, 322.452}, {34.799301, 25.195900000000002}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1369 + 1373 Shape RoundRect Style @@ -33606,18 +33470,18 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C2} +\f0\fs24 \cf0 C5} VerticalPad 0 Bounds - {{395, 349.16100999999998}, {81.652298000000002, 27}} + {{349.21399000000002, 276.11801000000003}, {85.697997999999998, 26.490200000000002}} Class ShapedGraphic FontInfo @@ -33637,7 +33501,7 @@ public} 10 ID - 1364 + 1350 Shape Rectangle Style @@ -33682,14 +33546,49 @@ public} {\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 master} +\f0\fs20 \cf2 tv/rebase-stat} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1343 + + ID + 1353 + Points + + {119.11177692965786, 181.90290104938526} + {133.06661591512807, 201.50796340171138} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1352 + + Bounds - {{323.31200999999999, 295.82999000000001}, {101, 27}} + {{81, 154.59800999999999}, {56.208098999999997, 26.490200000000002}} Class ShapedGraphic FontInfo @@ -33709,7 +33608,7 @@ public} 10 ID - 1357 + 1352 Shape Rectangle Style @@ -33754,231 +33653,161 @@ public} {\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 teamone/master} +\f0\fs20 \cf2 master} VerticalPad 0 - Bounds - {{93.974602000000004, 195}, {37, 10.5953}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Font - Helvetica - Size - 12 + ID + 1345 ID - 1353 - Shape - Rectangle + 1351 + Points + + {348.21401863738225, 289.0312534572256} + {325.45296831454021, 288.85899391709074} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\b\fs24 \cf0 My Computer} - VerticalPad - 0 + ID + 1350 - Wrap - NO - Bounds - {{71, 212}, {516, 188}} Class - ShapedGraphic - FontInfo + LineGraphic + ID + 1349 + Points + + {59.105999000005021, 215.97496921814334} + {19, 215.97501} + + Style - Color + stroke - b - 0.8 - g - 0.8 - r - 0.8 + HeadArrow + FilledArrow + Legacy + + LineType + 1 + Pattern + 1 + TailArrow + 0 - Font - LucidaGrande - Size - 10 + + Tail + + ID + 1344 + + + + Class + LineGraphic + Head + + ID + 1344 ID - 1351 - Shape - Rectangle + 1348 + Points + + {124.00456003454227, 215.51636444824689} + {96.904739968453342, 215.78653605542951} + Style - fill - - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - - - shadow - - Draws - NO - stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - VerticalPad - 0 + ID + 1343 - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - - Lock - NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 2 - OutlineStyle - Basic - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - 337 - UniqueID - 42 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 553}} - Class - SolidGraphic - ID - 2 - Style - stroke + Class + LineGraphic + Head - Draws - NO + ID + 1343 + + ID + 1347 + Points + + {223.4666806066096, 278.52915918956234} + {190.40100000000001, 258.63699000000003} + {157.43410962432461, 228.5771153125558} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + + + Tail + + ID + 1342 - - BaseZoom - 0 - CanvasOrigin - {0, 0} - CanvasSize - {756, 553} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - Class LineGraphic Head ID - 1421 + 1342 ID - 1437 + 1346 Points - {242.64700000000002, 247.91498999999999} - {214.63949099999999, 247.91498999999999} + {287.65399000000122, 288.71597000000003} + {259.29930099999814, 288.71597000000003} Style @@ -33997,23 +33826,23 @@ public} Tail ID - 1436 + 1345 Bounds - {{244.14699999999999, 229.91498999999999}, {48.157501000000003, 36}} + {{289.15399000000002, 276.11801000000003}, {34.799301, 25.195900000000002}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1436 + 1345 Shape RoundRect Style @@ -34054,64 +33883,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C4'} +\f0\fs24 \cf0 C4} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 1375 - - ID - 1435 - Points - - {166.87558099766375, 78.345776793877363} - {132.08101056792199, 102.93122046522802} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1434 - - Bounds - {{164.98199, 44.669998}, {48.157501000000003, 36}} + {{60.605998999999997, 203.37700000000001}, {34.799301, 25.195900000000002}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1434 + 1344 Shape RoundRect Style @@ -34152,64 +33946,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C5} +\f0\fs24 \cf0 C1} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 1379 - - ID - 1433 - Points - - {246.50000000000003, 62.669998} - {214.63949099999999, 62.669998} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1432 - - Bounds - {{248, 44.669998}, {48.157501000000003, 36}} + {{125.504, 202.72999999999999}, {34.799301, 25.195900000000002}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1432 + 1343 Shape RoundRect Style @@ -34250,48 +34009,76 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C4'} +\f0\fs24 \cf0 C2} VerticalPad 0 + Bounds + {{223, 276.11801000000003}, {34.799301, 25.195900000000002}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 1424 - - ID - 1431 - Points - - {324.90919796026998, 347.51587647002356} - {290.70731279417049, 324.47512399109394} - + Font + Courier + Size + 12 + + ID + 1342 + Shape + RoundRect Style + fill + + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 - Tail + Text - ID - 1429 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 C3} + VerticalPad + 0 @@ -34300,14 +34087,15 @@ public} Head ID - 1370 + 1403 ID - 1430 + 1408 Points - {321.81200999999999, 362.66100999999998} - {293.80450100000002, 362.66100999999998} + {271.45229019621632, 381.3567691846124} + {529, 381} + {528.87508323846941, 247.41089934421669} Style @@ -34315,10 +34103,12 @@ public} HeadArrow FilledArrow - Legacy + HopLines - LineType + HopType 1 + Legacy + TailArrow 0 @@ -34326,70 +34116,45 @@ public} Tail ID - 1429 + 1384 - Bounds - {{323.31200999999999, 344.66100999999998}, {48.157501000000003, 36}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Font - Helvetica - Size - 12 + ID + 1402 ID - 1429 - Shape - RoundRect + 1407 + Points + + {299.80931059018405, 335.04484958511853} + {466, 335} + {465.88104669073903, 247.41089861670889} + Style - fill - - Color - - b - 0.689968 - g - 0.77551 - r - 0.669392 - - - shadow - - Draws - NO - stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + HeadArrow + FilledArrow + HopLines + + HopType + 1 + Legacy + + TailArrow + 0 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 C7} - VerticalPad - 0 + ID + 1374 @@ -34398,14 +34163,15 @@ public} Head ID - 1420 + 1400 ID - 1428 + 1401 Points - {166.57918701566962, 347.51585946560294} - {132.37740467820024, 324.47514110925385} + {325.45222687229528, 288.97563028168793} + {400.005, 290} + {402.15149118263014, 247.40899867030225} Style @@ -34413,10 +34179,12 @@ public} HeadArrow FilledArrow - Legacy + HopLines - LineType + HopType 1 + Legacy + TailArrow 0 @@ -34424,7 +34192,7 @@ public} Tail ID - 1369 + 1345 @@ -34433,14 +34201,15 @@ public} Head ID - 1421 + 1410 ID - 1427 + 1412 Points - {246.70574832014313, 292.63510247001381} - {210.58074277486779, 264.60987739996176} + {310.52559964835092, 71.081443601468038} + {529, 71} + {528.87871325778553, 174.17500103642652} Style @@ -34450,8 +34219,6 @@ public} FilledArrow Legacy - LineType - 1 TailArrow 0 @@ -34459,7 +34226,7 @@ public} Tail ID - 1424 + 1390 @@ -34468,14 +34235,15 @@ public} Head ID - 1420 + 1409 ID - 1426 + 1411 Points - {167.54074923998937, 264.60989449779032} - {131.41584272099519, 292.63508544881643} + {334.01759749284878, 122.0792472295731} + {466, 122} + {465.94028562577921, 174.17500098241206} Style @@ -34485,8 +34253,6 @@ public} FilledArrow Legacy - LineType - 1 TailArrow 0 @@ -34494,23 +34260,109 @@ public} Tail ID - 1421 + 1388 + + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + 0525 + UniqueID + 8 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 553}} + Class + SolidGraphic + ID + 2 + Style + + stroke + + Draws + NO + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + Class LineGraphic Head ID - 1422 + 1343 ID - 1425 + 1355 Points - {242.64700000000002, 309.32999000000001} - {214.63949099999999, 309.32999000000001} + {260.38043492138041, 156.05660784647509} + {237.8327641207635, 155.92340327048967} Style @@ -34520,6 +34372,8 @@ public} FilledArrow Legacy + LineType + 1 TailArrow 0 @@ -34527,23 +34381,23 @@ public} Tail ID - 1424 + 1354 Bounds - {{244.14699999999999, 291.32999000000001}, {48.157501000000003, 36}} + {{261.88, 138.24001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1424 + 1354 Shape RoundRect Style @@ -34584,11 +34438,11 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C6} +\f0\fs24 \cf0 f42c5} VerticalPad 0 @@ -34599,14 +34453,14 @@ public} Head ID - 1420 + 1354 ID - 1423 + 1353 Points - {163.48199000000002, 309.32999000000001} - {135.47460199999998, 309.32999000000001} + {291.42509144082641, 114} + {291.42509144082641, 136.74001000000001} Style @@ -34616,6 +34470,8 @@ public} FilledArrow Legacy + LineType + 1 TailArrow 0 @@ -34623,25 +34479,34 @@ public} Tail ID - 1422 + 1352 Bounds - {{164.98199, 291.32999000000001}, {48.157501000000003, 36}} + {{256.41399999999999, 77}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Helvetica + LucidaGrande Size - 12 + 10 ID - 1422 + 1352 Shape - RoundRect + Rectangle Style fill @@ -34649,11 +34514,11 @@ public} Color b - 0.837205 + 0.933333 g - 0.959184 + 0.933333 r - 0.826135 + 0.933333 shadow @@ -34673,7 +34538,7 @@ public} 0.382653 Width - 3 + 2 Text @@ -34681,93 +34546,74 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C4} +\f0\fs20 \cf2 master} VerticalPad 0 - Bounds - {{164.98199, 229.91498999999999}, {48.157501000000003, 36}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Font - Helvetica - Size - 12 + ID + 1345 ID - 1421 - Shape - RoundRect + 1351 + Points + + {376.06309132493197, 259.22000000000003} + {376.06309132493197, 236.97999999999999} + Style - fill - - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - - - shadow - - Draws - NO - stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 C5} - VerticalPad - 0 + ID + 1350 Bounds - {{85.817100999999994, 291.32999000000001}, {48.157501000000003, 36}} + {{341.05200000000002, 260.22000000000003}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Helvetica + LucidaGrande Size - 12 + 10 ID - 1420 + 1350 Shape - RoundRect + Rectangle Style fill @@ -34775,11 +34621,11 @@ public} Color b - 0.837205 + 0.933333 g - 0.959184 + 0.933333 r - 0.826135 + 0.933333 shadow @@ -34799,7 +34645,7 @@ public} 0.382653 Width - 3 + 2 Text @@ -34807,10 +34653,10 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C1} +\f0\fs20 \cf2 ruby_client} VerticalPad 0 @@ -34818,46 +34664,29 @@ public} Class LineGraphic - Head - - ID - 1379 - ID - 1419 + 1349 Points - {249.59828497484281, 103.45980683722632} - {211.54120582318194, 77.817191541912379} + {91.106003000000001, 155.74001000000001} + {57, 155.74001000000001} Style stroke - Color - - b - 0.658163 - g - 0.658163 - r - 0.658163 - HeadArrow FilledArrow Legacy LineType 1 + Pattern + 1 TailArrow 0 - Tail - - ID - 1382 - Class @@ -34865,28 +34694,19 @@ public} Head ID - 1375 + 1344 ID - 1409 + 1348 Points - {166.87558099766375, 78.345776793877363} - {132.08101056792199, 102.93122046522802} + {175.74300000000002, 155.74001000000001} + {153.19620199999997, 155.74001000000001} Style stroke - Color - - b - 0.505102 - g - 0.505102 - r - 0.505102 - HeadArrow FilledArrow Legacy @@ -34900,7 +34720,7 @@ public} Tail ID - 1379 + 1343 @@ -34909,32 +34729,25 @@ public} Head ID - 1380 + 1343 ID - 1383 + 1347 Points - {246.50000000000003, 118.607} - {214.63949099999999, 118.607} + {266.76509031192779, 199.4913105428169} + {231.44810837158244, 173.72869967578168} Style stroke - Color - - b - 0.658163 - g - 0.658163 - r - 0.658163 - HeadArrow FilledArrow Legacy + LineType + 1 TailArrow 0 @@ -34942,32 +34755,58 @@ public} Tail ID - 1382 + 1342 - Bounds - {{248, 100.607}, {48.157501000000003, 36}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Color - - b - 0.596939 - g - 0.596939 - r - 0.596939 + ID + 1342 + + ID + 1346 + Points + + {345.01801, 217.47999999999999} + {322.47019899999998, 217.47999999999999} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + Tail + + ID + 1345 + + + + Bounds + {{346.51801, 199.47999999999999}, {59.090198999999998, 36}} + Class + ShapedGraphic + FontInfo + Font - Helvetica + Courier Size 12 ID - 1382 + 1345 Shape RoundRect Style @@ -34977,11 +34816,11 @@ public} Color b - 0.900487 + 0.837205 g 0.959184 r - 0.908507 + 0.826135 shadow @@ -34994,11 +34833,11 @@ public} Color b - 0.658163 + 0.382653 g - 0.658163 + 0.382653 r - 0.658163 + 0.382653 Width 3 @@ -35008,80 +34847,92 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red152\green152\blue152;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf2 C6} +\f0\fs24 \cf0 5ddae} VerticalPad 0 + Bounds + {{92.606003000000001, 137.74001000000001}, {59.090198999999998, 36}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 1375 + Font + Courier + Size + 12 ID - 1381 - Points - - {163.48199000000002, 118.607} - {135.47460199999998, 118.607} - + 1344 + Shape + RoundRect Style + fill + + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + + shadow + + Draws + NO + stroke Color b - 0.658163 + 0.382653 g - 0.658163 + 0.382653 r - 0.658163 + 0.382653 - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 + Width + 3 - Tail + Text - ID - 1380 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0b743} + VerticalPad + 0 Bounds - {{164.98199, 100.607}, {48.157501000000003, 36}} + {{177.24299999999999, 137.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo - Color - - b - 0.596939 - g - 0.596939 - r - 0.596939 - Font - Helvetica + Courier Size 12 ID - 1380 + 1343 Shape RoundRect Style @@ -35091,11 +34942,11 @@ public} Color b - 0.900487 + 0.837205 g 0.959184 r - 0.908507 + 0.826135 shadow @@ -35108,11 +34959,11 @@ public} Color b - 0.658163 + 0.382653 g - 0.658163 + 0.382653 r - 0.658163 + 0.382653 Width 3 @@ -35122,38 +34973,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red152\green152\blue152;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf2 C4} +\f0\fs24 \cf0 a6b4c} VerticalPad 0 Bounds - {{164.98199, 44.669998}, {48.157501000000003, 36}} + {{261.88, 199.47999999999999}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo - Color - - b - 0.505102 - g - 0.505102 - r - 0.505102 - Font - Helvetica + Courier Size 12 ID - 1379 + 1342 Shape RoundRect Style @@ -35163,11 +35005,11 @@ public} Color b - 0.91294 + 0.837205 g 0.959184 r - 0.897525 + 0.826135 shadow @@ -35180,11 +35022,11 @@ public} Color b - 0.663265 + 0.382653 g - 0.663265 + 0.382653 r - 0.663265 + 0.382653 Width 3 @@ -35194,29 +35036,115 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red129\green129\blue129;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf2 C5} +\f0\fs24 \cf0 e43a6} VerticalPad 0 + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + 0526 + UniqueID + 9 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 553}} + Class + SolidGraphic + ID + 2 + Style + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + Class LineGraphic Head ID - 1432 + 1356 ID - 1405 + 1358 Points - {330.01801, 62.669998} - {297.65750100000002, 62.669998} + {316.08510993112293, 199.49130962301015} + {351.40208935385039, 173.72870057382028} Style @@ -35225,11 +35153,11 @@ public} Color b - 0.505102 + 0.734694 g - 0.505102 + 0.734694 r - 0.505102 + 0.734694 HeadArrow FilledArrow @@ -35238,31 +35166,68 @@ public} LineType 1 Pattern - 2 + 11 TailArrow 0 + Width + 2 Tail ID - 1344 + 1342 + + + + Class + LineGraphic + Head + + ID + 1354 + + ID + 1357 + Points + + {345.01743490498234, 155.92341193863066} + {322.46976413438017, 156.05661635829114} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1356 Bounds - {{85.817100999999994, 100.607}, {48.157501000000003, 36}} + {{346.517, 137.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1375 + 1356 Shape RoundRect Style @@ -35303,91 +35268,66 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C1} +\f0\fs24 \cf0 a0a41} VerticalPad 0 - Bounds - {{130, 20}, {36.333599, 3.3681098999999999}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Font - Helvetica - Size - 12 + ID + 1343 ID - 1352 - Shape - Rectangle + 1355 + Points + + {260.38043492138041, 156.05660784647509} + {237.8327641207635, 155.92340327048967} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\b\fs24 \cf0 git.team1.ourcompany.com} - VerticalPad - 0 + ID + 1354 - Wrap - NO Bounds - {{331.01801, 49.169998}, {70.932297000000005, 27}} + {{261.88, 138.24001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Courier Size - 10 + 12 ID - 1344 + 1354 Shape - Rectangle + RoundRect Style fill @@ -35395,11 +35335,11 @@ public} Color b - 0.933333 + 0.837205 g - 0.933333 + 0.959184 r - 0.933333 + 0.826135 shadow @@ -35419,25 +35359,60 @@ public} 0.382653 Width - 2 + 3 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 master} +\f0\fs24 \cf0 f42c5} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1356 + + ID + 1353 + Points + + {376.06279254041073, 112.99999999986822} + {376.06241524546664, 136.24001000019669} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1352 + + Bounds - {{71, 33.366298999999998}, {516, 139.63300000000001}} + {{341.05200000000002, 76}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -35457,7 +35432,7 @@ public} 10 ID - 1350 + 1352 Shape Rectangle Style @@ -35496,6 +35471,13 @@ public} Text + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs20 \cf2 master} VerticalPad 0 @@ -35506,14 +35488,14 @@ public} Head ID - 1429 + 1345 ID - 1408 + 1351 Points - {394, 362.66100999999998} - {372.96951100000001, 362.66100999999998} + {376.06309132493197, 259.22000000000003} + {376.06309132493197, 236.97999999999999} Style @@ -35522,11 +35504,11 @@ public} Color b - 0.505102 + 0.653061 g - 0.505102 + 0.653061 r - 0.505102 + 0.653061 HeadArrow FilledArrow @@ -35534,8 +35516,6 @@ public} LineType 1 - Pattern - 2 TailArrow 0 @@ -35543,37 +35523,95 @@ public} Tail ID - 1364 + 1350 + Bounds + {{341.05200000000002, 260.22000000000003}, {70.022201999999993, 36}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 1436 + Color + + b + 0.668367 + g + 0.668367 + r + 0.668367 + + Font + LucidaGrande + Size + 10 ID - 1407 - Points - - {322.31200999999999, 247.91498999999999} - {293.80450100000002, 247.91498999999999} - + 1350 + Shape + Rectangle Style - stroke + fill Color b - 0.505102 + 0.933333 g - 0.505102 + 0.933333 r - 0.505102 + 0.933333 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.653061 + g + 0.653061 + r + 0.653061 + Width + 2 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red170\green170\blue170;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs20 \cf2 ruby_client} + VerticalPad + 0 + + + + Class + LineGraphic + ID + 1349 + Points + + {91.106003000000001, 155.74001000000001} + {57, 155.74001000000001} + + Style + + stroke + HeadArrow FilledArrow Legacy @@ -35581,16 +35619,11 @@ public} LineType 1 Pattern - 2 + 1 TailArrow 0 - Tail - - ID - 1357 - Class @@ -35598,14 +35631,14 @@ public} Head ID - 1369 + 1344 ID - 1371 + 1348 Points - {242.64700000000002, 362.66100999999998} - {214.63949099999999, 362.66100999999998} + {175.74300000000002, 155.74001000000001} + {153.19620199999997, 155.74001000000001} Style @@ -35615,6 +35648,8 @@ public} FilledArrow Legacy + LineType + 1 TailArrow 0 @@ -35622,86 +35657,120 @@ public} Tail ID - 1370 + 1343 - Bounds - {{244.14699999999999, 344.66100999999998}, {48.157501000000003, 36}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Font - Helvetica - Size - 12 + ID + 1343 ID - 1370 - Shape - RoundRect + 1347 + Points + + {266.76509031192779, 199.4913105428169} + {231.44810837158244, 173.72869967578168} + Style - fill + stroke Color b - 0.837205 + 0.714286 g - 0.959184 + 0.714286 r - 0.826135 + 0.714286 + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - shadow - - Draws - NO - + + Tail + + ID + 1342 + + + + Class + LineGraphic + Head + + ID + 1342 + + ID + 1346 + Points + + {345.01801, 217.47999999999999} + {322.47019899999998, 217.47999999999999} + + Style + stroke Color b - 0.382653 + 0.653061 g - 0.382653 + 0.653061 r - 0.382653 + 0.653061 - Width - 3 + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 C3} - VerticalPad - 0 + ID + 1345 Bounds - {{164.98199, 344.66100999999998}, {48.157501000000003, 36}} + {{346.51801, 199.47999999999999}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo + Color + + b + 0.668367 + g + 0.668367 + r + 0.668367 + Font - Helvetica + Courier Size 12 ID - 1369 + 1345 Shape RoundRect Style @@ -35728,11 +35797,11 @@ public} Color b - 0.382653 + 0.653061 g - 0.382653 + 0.653061 r - 0.382653 + 0.653061 Width 3 @@ -35742,40 +35811,31 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;\red170\green170\blue170;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C2} +\f0\fs24 \cf2 5ddae} VerticalPad 0 Bounds - {{395, 349.16100999999998}, {81.652298000000002, 27}} + {{92.606003000000001, 137.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Courier Size - 10 + 12 ID - 1364 + 1344 Shape - Rectangle + RoundRect Style fill @@ -35783,11 +35843,11 @@ public} Color b - 0.933333 + 0.837205 g - 0.933333 + 0.959184 r - 0.933333 + 0.826135 shadow @@ -35807,47 +35867,38 @@ public} 0.382653 Width - 2 + 3 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 master} +\f0\fs24 \cf0 0b743} VerticalPad 0 Bounds - {{323.31200999999999, 234.41498999999999}, {101, 27}} + {{177.24299999999999, 137.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Courier Size - 10 + 12 ID - 1357 + 1343 Shape - Rectangle + RoundRect Style fill @@ -35855,11 +35906,11 @@ public} Color b - 0.933333 + 0.837205 g - 0.933333 + 0.959184 r - 0.933333 + 0.826135 shadow @@ -35879,76 +35930,25 @@ public} 0.382653 Width - 2 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs20 \cf2 teamone/master} - VerticalPad - 0 - - - - Bounds - {{93.974602000000004, 195}, {37, 10.5953}} - Class - ShapedGraphic - FontInfo - - Font - Helvetica - Size - 12 - - ID - 1353 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\b\fs24 \cf0 My Computer} +\f0\fs24 \cf0 a6b4c} VerticalPad 0 - Wrap - NO Bounds - {{71, 212}, {516, 188}} + {{261.88, 199.47999999999999}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -35956,21 +35956,21 @@ public} Color b - 0.8 + 0.668367 g - 0.8 + 0.668367 r - 0.8 + 0.668367 Font - LucidaGrande + Courier Size - 10 + 12 ID - 1351 + 1342 Shape - Rectangle + RoundRect Style fill @@ -35978,11 +35978,11 @@ public} Color b - 0.933333 + 0.837205 g - 0.933333 + 0.959184 r - 0.933333 + 0.826135 shadow @@ -35995,18 +35995,25 @@ public} Color b - 0.382653 + 0.653061 g - 0.382653 + 0.653061 r - 0.382653 + 0.653061 Width - 2 + 3 Text + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;\red170\green170\blue170;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 e43a6} VerticalPad 0 @@ -36050,8 +36057,6 @@ public} Orientation 2 - OutlineStyle - Basic PrintOnePage RowAlign @@ -36059,9 +36064,9 @@ public} RowSpacing 36 SheetTitle - 338 + 0527 UniqueID - 43 + 10 VPages 1 @@ -36091,8 +36096,6 @@ public} 0 CanvasOrigin {0, 0} - CanvasSize - {756, 553} ColumnAlign 1 ColumnSpacing @@ -36107,49 +36110,14 @@ public} Head ID - 1436 - - ID - 1440 - Points - - {404.5393604798507, 346.70514477394886} - {290.242130511651, 263.87085523976941} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1438 - - - - Class - LineGraphic - Head - - ID - 1429 + 1343 ID - 1439 + 1355 Points - {400.97699, 362.66100999999998} - {372.96951100000001, 362.66100999999998} + {227.07736886382284, 156.05444569013918} + {209.55543309820891, 155.92558385688594} Style @@ -36168,23 +36136,23 @@ public} Tail ID - 1438 + 1354 Bounds - {{402.47699, 344.66100999999998}, {48.157501000000003, 36}} + {{228.577, 138.24001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1438 + 1354 Shape RoundRect Style @@ -36194,11 +36162,11 @@ public} Color b - 0.689968 + 0.837205 g - 0.77551 + 0.959184 r - 0.669392 + 0.826135 shadow @@ -36225,11 +36193,11 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C8} +\f0\fs24 \cf0 C3} VerticalPad 0 @@ -36240,14 +36208,14 @@ public} Head ID - 1421 + 1354 ID - 1437 + 1353 Points - {242.64700000000002, 247.91498999999999} - {214.63949099999999, 247.91498999999999} + {252.09012545302505, 114.99998586462756} + {252.20571902265516, 136.74003120265854} Style @@ -36266,25 +36234,34 @@ public} Tail ID - 1436 + 1352 Bounds - {{244.14699999999999, 229.91498999999999}, {48.157501000000003, 36}} + {{216.97800000000001, 78}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Helvetica + LucidaGrande Size - 12 + 10 ID - 1436 + 1352 Shape - RoundRect + Rectangle Style fill @@ -36292,11 +36269,11 @@ public} Color b - 0.837205 + 0.933333 g - 0.959184 + 0.933333 r - 0.826135 + 0.933333 shadow @@ -36316,7 +36293,7 @@ public} 0.382653 Width - 3 + 2 Text @@ -36324,28 +36301,55 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C4'} +\f0\fs20 \cf2 master} VerticalPad 0 + + Class + LineGraphic + ID + 1349 + Points + + {91.106003000000001, 155.74001000000001} + {57, 155.74001000000001} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + Pattern + 1 + TailArrow + 0 + + + Class LineGraphic Head ID - 1375 + 1344 ID - 1435 + 1348 Points - {166.87558099766375, 78.345776793877363} - {132.08101056792199, 102.93122046522802} + {159.09100000000004, 155.74001000000001} + {141.57070599999997, 155.74001000000001} Style @@ -36364,23 +36368,23 @@ public} Tail ID - 1434 + 1343 Bounds - {{164.98199, 44.669998}, {48.157501000000003, 36}} + {{92.605903999999995, 137.74001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1434 + 1344 Shape RoundRect Style @@ -36421,64 +36425,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C5} +\f0\fs24 \cf0 C1} VerticalPad 0 + Bounds + {{160.59100000000001, 137.74001000000001}, {47.464801999999999, 36}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 1379 + Font + Courier + Size + 12 ID - 1433 - Points - - {246.50000000000003, 62.669998} - {214.63949099999999, 62.669998} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1432 - - - - Bounds - {{248, 44.669998}, {48.157501000000003, 36}} - Class - ShapedGraphic - FontInfo - - Font - Helvetica - Size - 12 - - ID - 1432 + 1343 Shape RoundRect Style @@ -36519,64 +36488,115 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C4'} +\f0\fs24 \cf0 C2} VerticalPad 0 + + GridInfo + + HPages + 1 + KeepToScale + + Layers + - Class - LineGraphic - Head - - ID - 1424 - - ID - 1431 - Points - - {324.90919796026998, 347.51587647002356} - {290.70731279417049, 324.47512399109394} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + Canvas 11 + UniqueID + 12 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 553}} + Class + SolidGraphic + ID + 2 + Style + + stroke - ID - 1429 + Draws + NO + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + Class LineGraphic Head ID - 1370 + 1359 ID - 1430 + 1363 Points - {321.81200999999999, 362.66100999999998} - {293.80450100000002, 362.66100999999998} + {447.70371404749972, 278.00000000002524} + {447.70355068394679, 254.99999999996152} Style @@ -36595,25 +36615,34 @@ public} Tail ID - 1429 + 1362 Bounds - {{323.31200999999999, 344.66100999999998}, {48.157501000000003, 36}} + {{408.33199999999999, 279}, {78.743697999999995, 36}} Class ShapedGraphic FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Helvetica + LucidaGrande Size - 12 + 10 ID - 1429 + 1362 Shape - RoundRect + Rectangle Style fill @@ -36621,11 +36650,11 @@ public} Color b - 0.689968 + 0.933333 g - 0.77551 + 0.933333 r - 0.669392 + 0.933333 shadow @@ -36645,7 +36674,7 @@ public} 0.382653 Width - 3 + 2 Text @@ -36653,10 +36682,10 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C7} +\f0\fs20 \cf2 topic-branch} VerticalPad 0 @@ -36667,49 +36696,14 @@ public} Head ID - 1420 - - ID - 1428 - Points - - {166.57918701566962, 347.51585946560294} - {132.37740467820024, 324.47514110925385} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1369 - - - - Class - LineGraphic - Head - - ID - 1421 + 1354 ID - 1427 + 1361 Points - {246.70574832014313, 292.63510247001381} - {210.58074277486779, 264.60987739996176} + {297.24829270753611, 215.80258103208072} + {266.79350944811586, 175.43742896314336} Style @@ -36728,7 +36722,7 @@ public} Tail ID - 1424 + 1357 @@ -36737,14 +36731,14 @@ public} Head ID - 1420 + 1356 ID - 1426 + 1360 Points - {167.54074923998937, 264.60989449779032} - {131.41584272099519, 292.63508544881643} + {422.47137887272532, 235.31443345158095} + {404.95042308463093, 235.18557727090558} Style @@ -36763,56 +36757,23 @@ public} Tail ID - 1421 - - - - Class - LineGraphic - Head - - ID - 1422 - - ID - 1425 - Points - - {242.64700000000002, 309.32999000000001} - {214.63949099999999, 309.32999000000001} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 - - - Tail - - ID - 1424 + 1359 Bounds - {{244.14699999999999, 291.32999000000001}, {48.157501000000003, 36}} + {{423.97100999999998, 217.5}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1424 + 1359 Shape RoundRect Style @@ -36853,7 +36814,7 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -36868,14 +36829,14 @@ public} Head ID - 1420 + 1357 ID - 1423 + 1358 Points - {163.48199000000002, 309.32999000000001} - {135.47460199999998, 309.32999000000001} + {354.48599000000002, 235} + {336.96480199999996, 235} Style @@ -36885,6 +36846,8 @@ public} FilledArrow Legacy + LineType + 1 TailArrow 0 @@ -36892,23 +36855,23 @@ public} Tail ID - 1422 + 1356 Bounds - {{164.98199, 291.32999000000001}, {48.157501000000003, 36}} + {{288, 217}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1422 + 1357 Shape RoundRect Style @@ -36949,7 +36912,7 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -36960,18 +36923,18 @@ public} Bounds - {{164.98199, 229.91498999999999}, {48.157501000000003, 36}} + {{355.98599000000002, 217}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1421 + 1356 Shape RoundRect Style @@ -37012,7 +36975,7 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -37021,20 +36984,55 @@ public} 0 + + Class + LineGraphic + Head + + ID + 1343 + + ID + 1355 + Points + + {227.07736886382284, 156.05444569013918} + {209.55543309820891, 155.92558385688594} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1354 + + Bounds - {{85.817100999999994, 291.32999000000001}, {48.157501000000003, 36}} + {{228.577, 138.24001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1420 + 1354 Shape RoundRect Style @@ -37075,11 +37073,11 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C1} +\f0\fs24 \cf0 C3} VerticalPad 0 @@ -37090,28 +37088,19 @@ public} Head ID - 1379 + 1354 ID - 1419 + 1353 Points - {249.59828497484281, 103.45980683722632} - {211.54120582318194, 77.817191541912379} + {252.09012545302505, 114.99998586462756} + {252.20571902265516, 136.74003120265854} Style stroke - Color - - b - 0.658163 - g - 0.658163 - r - 0.658163 - HeadArrow FilledArrow Legacy @@ -37125,52 +37114,107 @@ public} Tail ID - 1382 + 1352 + Bounds + {{216.97800000000001, 78}, {70.022201999999993, 36}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 1375 + Color + + b + 0.8 + g + 0.8 + r + 0.8 + + Font + LucidaGrande + Size + 10 ID - 1409 - Points - - {166.87558099766375, 78.345776793877363} - {132.08101056792199, 102.93122046522802} - + 1352 + Shape + Rectangle Style + fill + + Color + + b + 0.933333 + g + 0.933333 + r + 0.933333 + + + shadow + + Draws + NO + stroke Color b - 0.505102 + 0.382653 g - 0.505102 + 0.382653 r - 0.505102 + 0.382653 + Width + 2 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs20 \cf2 master} + VerticalPad + 0 + + + + Class + LineGraphic + ID + 1349 + Points + + {91.106003000000001, 155.74001000000001} + {57, 155.74001000000001} + + Style + + stroke + HeadArrow FilledArrow Legacy LineType 1 + Pattern + 1 TailArrow 0 - Tail - - ID - 1379 - Class @@ -37178,32 +37222,25 @@ public} Head ID - 1380 + 1344 ID - 1383 + 1348 Points - {246.50000000000003, 118.607} - {214.63949099999999, 118.607} + {159.09100000000004, 155.74001000000001} + {141.57070599999997, 155.74001000000001} Style stroke - Color - - b - 0.658163 - g - 0.658163 - r - 0.658163 - HeadArrow FilledArrow Legacy + LineType + 1 TailArrow 0 @@ -37211,32 +37248,23 @@ public} Tail ID - 1382 + 1343 Bounds - {{248, 100.607}, {48.157501000000003, 36}} + {{92.605903999999995, 137.74001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo - Color - - b - 0.596939 - g - 0.596939 - r - 0.596939 - Font - Helvetica + Courier Size 12 ID - 1382 + 1344 Shape RoundRect Style @@ -37246,11 +37274,11 @@ public} Color b - 0.900487 + 0.837205 g 0.959184 r - 0.908507 + 0.826135 shadow @@ -37263,11 +37291,11 @@ public} Color b - 0.658163 + 0.382653 g - 0.658163 + 0.382653 r - 0.658163 + 0.382653 Width 3 @@ -37277,80 +37305,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red152\green152\blue152;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf2 C6} +\f0\fs24 \cf0 C1} VerticalPad 0 + Bounds + {{160.59100000000001, 137.74001000000001}, {47.464801999999999, 36}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 1375 + Font + Courier + Size + 12 ID - 1381 - Points - - {163.48199000000002, 118.607} - {135.47460199999998, 118.607} - - Style - - stroke - - Color - - b - 0.658163 - g - 0.658163 - r - 0.658163 - - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 - - - Tail - - ID - 1380 - - - - Bounds - {{164.98199, 100.607}, {48.157501000000003, 36}} - Class - ShapedGraphic - FontInfo - - Color - - b - 0.596939 - g - 0.596939 - r - 0.596939 - - Font - Helvetica - Size - 12 - - ID - 1380 + 1343 Shape RoundRect Style @@ -37360,11 +37337,11 @@ public} Color b - 0.900487 + 0.837205 g 0.959184 r - 0.908507 + 0.826135 shadow @@ -37377,11 +37354,11 @@ public} Color b - 0.658163 + 0.382653 g - 0.658163 + 0.382653 r - 0.658163 + 0.382653 Width 3 @@ -37391,38 +37368,185 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red152\green152\blue152;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf2 C4} +\f0\fs24 \cf0 C2} VerticalPad 0 + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + Canvas 12 + UniqueID + 13 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 553}} + Class + SolidGraphic + ID + 2 + Style + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + + + Class + LineGraphic + Head + + ID + 1354 + + ID + 1361 + Points + + {301.58400999999998, 156.24001000000001} + {277.54180200000002, 156.24001000000001} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1357 + + + + Class + LineGraphic + Head + + ID + 1356 + + ID + 1360 + Points + + {437.55535887316302, 156.55444334153725} + {420.03444308420251, 156.42558737861594} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1359 + + Bounds - {{164.98199, 44.669998}, {48.157501000000003, 36}} + {{439.05498999999998, 138.74001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo - Color - - b - 0.505102 - g - 0.505102 - r - 0.505102 - Font - Helvetica + Courier Size 12 ID - 1379 + 1359 Shape RoundRect Style @@ -37432,11 +37556,11 @@ public} Color b - 0.91294 + 0.837205 g 0.959184 r - 0.897525 + 0.826135 shadow @@ -37449,11 +37573,11 @@ public} Color b - 0.663265 + 0.382653 g - 0.663265 + 0.382653 r - 0.663265 + 0.382653 Width 3 @@ -37463,11 +37587,11 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red129\green129\blue129;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf2 C5} +\f0\fs24 \cf0 C9} VerticalPad 0 @@ -37478,36 +37602,25 @@ public} Head ID - 1432 + 1357 ID - 1405 + 1358 Points - {330.01801, 62.669998} - {297.65750100000002, 62.669998} + {369.57001000000002, 156.24001000000001} + {352.04881199999994, 156.24001000000001} Style stroke - Color - - b - 0.505102 - g - 0.505102 - r - 0.505102 - HeadArrow FilledArrow Legacy LineType 1 - Pattern - 2 TailArrow 0 @@ -37515,23 +37628,23 @@ public} Tail ID - 1344 + 1356 Bounds - {{85.817100999999994, 100.607}, {48.157501000000003, 36}} + {{303.08400999999998, 138.24001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1375 + 1357 Shape RoundRect Style @@ -37572,37 +37685,44 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C1} +\f0\fs24 \cf0 C7} VerticalPad 0 Bounds - {{130, 20}, {36.333599, 3.3681098999999999}} + {{371.07001000000002, 138.24001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1352 + 1356 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -37611,52 +37731,83 @@ public} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\b\fs24 \cf0 git.team1.ourcompany.com} +\f0\fs24 \cf0 C8} VerticalPad 0 - Wrap - NO + + + Class + LineGraphic + Head + + ID + 1343 + + ID + 1355 + Points + + {227.07736886382284, 156.05444569013918} + {209.55543309820891, 155.92558385688594} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1354 + Bounds - {{331.01801, 49.169998}, {70.932297000000005, 27}} + {{228.577, 138.24001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Courier Size - 10 + 12 ID - 1344 + 1354 Shape - Rectangle + RoundRect Style fill @@ -37664,11 +37815,11 @@ public} Color b - 0.933333 + 0.837205 g - 0.933333 + 0.959184 r - 0.933333 + 0.826135 shadow @@ -37688,25 +37839,60 @@ public} 0.382653 Width - 2 + 3 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 master} +\f0\fs24 \cf0 C3} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1359 + + ID + 1353 + Points + + {462.78719140258522, 114.99999999998867} + {462.78729722123779, 137.24001000001732} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1352 + + Bounds - {{71, 33.366298999999998}, {516, 139.63300000000001}} + {{427.77600000000001, 78}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -37726,7 +37912,7 @@ public} 10 ID - 1350 + 1352 Shape Rectangle Style @@ -37765,6 +37951,13 @@ public} Text + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs20 \cf2 master} VerticalPad 0 @@ -37772,31 +37965,17 @@ public} Class LineGraphic - Head - - ID - 1438 - ID - 1408 + 1349 Points - {480.642, 362.66100999999998} - {452.13449100000003, 362.66100999999998} + {91.106003000000001, 155.74001000000001} + {57, 155.74001000000001} Style stroke - Color - - b - 0.505102 - g - 0.505102 - r - 0.505102 - HeadArrow FilledArrow Legacy @@ -37804,16 +37983,11 @@ public} LineType 1 Pattern - 2 + 1 TailArrow 0 - Tail - - ID - 1364 - Class @@ -37821,36 +37995,25 @@ public} Head ID - 1436 + 1344 ID - 1407 + 1348 Points - {322.31200999999999, 247.91498999999999} - {293.80450100000002, 247.91498999999999} + {159.09100000000004, 155.74001000000001} + {141.57070599999997, 155.74001000000001} Style stroke - Color - - b - 0.505102 - g - 0.505102 - r - 0.505102 - HeadArrow FilledArrow Legacy LineType 1 - Pattern - 2 TailArrow 0 @@ -37858,61 +38021,28 @@ public} Tail ID - 1357 + 1343 + Bounds + {{92.605903999999995, 137.74001000000001}, {47.464801999999999, 36}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 1369 + Font + Courier + Size + 12 ID - 1371 - Points - - {242.64700000000002, 362.66100999999998} - {214.63949099999999, 362.66100999999998} - + 1344 + Shape + RoundRect Style - stroke - - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 - - - Tail - - ID - 1370 - - - - Bounds - {{244.14699999999999, 344.66100999999998}, {48.157501000000003, 36}} - Class - ShapedGraphic - FontInfo - - Font - Helvetica - Size - 12 - - ID - 1370 - Shape - RoundRect - Style - - fill + fill Color @@ -37948,29 +38078,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C3} +\f0\fs24 \cf0 C1} VerticalPad 0 Bounds - {{164.98199, 344.66100999999998}, {48.157501000000003, 36}} + {{160.59100000000001, 137.74001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1369 + 1343 Shape RoundRect Style @@ -38011,7 +38141,7 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -38020,266 +38150,6 @@ public} 0 - - Bounds - {{481.642, 349.16100999999998}, {81.652298000000002, 27}} - Class - ShapedGraphic - FontInfo - - Color - - b - 0.8 - g - 0.8 - r - 0.8 - - Font - LucidaGrande - Size - 10 - - ID - 1364 - Shape - Rectangle - Style - - fill - - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs20 \cf2 master} - VerticalPad - 0 - - - - Bounds - {{323.31200999999999, 234.41498999999999}, {101, 27}} - Class - ShapedGraphic - FontInfo - - Color - - b - 0.8 - g - 0.8 - r - 0.8 - - Font - LucidaGrande - Size - 10 - - ID - 1357 - Shape - Rectangle - Style - - fill - - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs20 \cf2 teamone/master} - VerticalPad - 0 - - - - Bounds - {{93.974602000000004, 195}, {37, 10.5953}} - Class - ShapedGraphic - FontInfo - - Font - Helvetica - Size - 12 - - ID - 1353 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\b\fs24 \cf0 My Computer} - VerticalPad - 0 - - Wrap - NO - - - Bounds - {{71, 212}, {516, 188}} - Class - ShapedGraphic - FontInfo - - Color - - b - 0.8 - g - 0.8 - r - 0.8 - - Font - LucidaGrande - Size - 10 - - ID - 1351 - Shape - Rectangle - Style - - fill - - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 - - - Text - - VerticalPad - 0 - - GridInfo @@ -38319,8 +38189,6 @@ public} Orientation 2 - OutlineStyle - Basic PrintOnePage RowAlign @@ -38328,9 +38196,9 @@ public} RowSpacing 36 SheetTitle - 339 + Canvas 13 UniqueID - 44 + 14 VPages 1 @@ -38342,7 +38210,7 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 576}} + {{0, 0}, {756, 553}} Class SolidGraphic ID @@ -38360,8 +38228,6 @@ public} 0 CanvasOrigin {0, 0} - CanvasSize - {756, 576} ColumnAlign 1 ColumnSpacing @@ -38373,17 +38239,29 @@ public} Class LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + Head ID - 1399 + 1354 ID - 1404 + 1369 Points - {488.4192367751188, 153.13229077917333} - {373.57026422891363, 235.88770922741963} + {308.39114766354146, 213.98748375578148} + {270.73466431315967, 175.21253625115511} Style @@ -38402,23 +38280,35 @@ public} Tail ID - 1402 + 1363 Class LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + Head ID - 1392 + 1365 ID - 1403 + 1368 Points - {510.47476954674062, 156.74000000000001} - {510.47476954674062, 177.67999} + {462.78701681009909, 278.4800100000345} + {462.78722877397962, 252.96000999994811} Style @@ -38437,25 +38327,34 @@ public} Tail ID - 1402 + 1367 Bounds - {{486.39600000000002, 119.23999999999999}, {48.157501000000003, 36}} + {{423.41501, 279.48000999999999}, {78.743697999999995, 36}} Class ShapedGraphic FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Helvetica + LucidaGrande Size - 12 + 10 ID - 1402 + 1367 Shape - RoundRect + Rectangle Style fill @@ -38463,11 +38362,11 @@ public} Color b - 0.837205 + 0.933333 g - 0.959184 + 0.933333 r - 0.826135 + 0.933333 shadow @@ -38487,7 +38386,7 @@ public} 0.382653 Width - 3 + 2 Text @@ -38495,10 +38394,10 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C9} +\f0\fs20 \cf2 topic-branch} VerticalPad 0 @@ -38506,52 +38405,29 @@ public} Class LineGraphic - Head - - ID - 1354 - - ID - 1401 - Points - - {373.07791083976645, 384.41538932188695} - {405.09358974098393, 409.11461126033697} - - Style + FontInfo - stroke + Color - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow + w 0 + Font + Helvetica + Size + 12 - Tail - - ID - 1396 - - - - Class - LineGraphic Head ID - 1397 + 1362 ID - 1400 + 1366 Points - {351.51476082972533, 271.27999999999997} - {351.51476082972533, 290.27999999999997} + {437.55535887316302, 233.27444334153725} + {420.03444308420251, 233.14558737861594} Style @@ -38561,6 +38437,8 @@ public} FilledArrow Legacy + LineType + 1 TailArrow 0 @@ -38568,23 +38446,23 @@ public} Tail ID - 1399 + 1365 Bounds - {{327.43599999999998, 233.78}, {48.157501000000003, 36}} + {{439.05498999999998, 215.46001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1399 + 1365 Shape RoundRect Style @@ -38625,11 +38503,11 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C7'} +\f0\fs24 \cf0 C6} VerticalPad 0 @@ -38637,17 +38515,29 @@ public} Class LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + Head ID - 1396 + 1363 ID - 1398 + 1364 Points - {351.51476082972533, 329.27999999999997} - {351.51476082972533, 348.27999999999997} + {369.57001000000002, 232.96001000000001} + {352.04881199999994, 232.96001000000001} Style @@ -38657,6 +38547,8 @@ public} FilledArrow Legacy + LineType + 1 TailArrow 0 @@ -38664,23 +38556,23 @@ public} Tail ID - 1397 + 1362 Bounds - {{327.43599999999998, 291.77999999999997}, {48.157501000000003, 36}} + {{303.08400999999998, 214.96001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1397 + 1363 Shape RoundRect Style @@ -38721,29 +38613,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C6'} +\f0\fs24 \cf0 C4} VerticalPad 0 Bounds - {{327.43599999999998, 349.77999999999997}, {48.157501000000003, 36}} + {{371.07001000000002, 214.96001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1396 + 1362 Shape RoundRect Style @@ -38784,11 +38676,11 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C5'} +\f0\fs24 \cf0 C5} VerticalPad 0 @@ -38796,17 +38688,29 @@ public} Class LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + Head ID - 1375 + 1354 ID - 1395 + 1361 Points - {170.78399478552453, 389.32997559350889} - {137.32090414115586, 414.15001429425314} + {301.58400999999998, 156.24001000000001} + {277.54180200000002, 156.24001000000001} Style @@ -38825,58 +38729,35 @@ public} Tail ID - 1386 + 1357 Class LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + Head ID - 1382 - - ID - 1394 - Points - - {487.7999595519812, 211.95060974722975} - {449.33154133929719, 237.00938003532397} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1392 - - - - Class - LineGraphic - Head - - ID - 1370 + 1356 ID - 1393 + 1360 Points - {510.44774640475498, 216.67998856169584} - {510.41874814096673, 237.6200014386819} + {437.55535887316302, 156.55444334153725} + {420.03444308420251, 156.42558737861594} Style @@ -38895,23 +38776,23 @@ public} Tail ID - 1392 + 1359 Bounds - {{486.39600000000002, 179.17999}, {48.157501000000003, 36}} + {{439.05498999999998, 138.74001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1392 + 1359 Shape RoundRect Style @@ -38952,11 +38833,11 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C8} +\f0\fs24 \cf0 C9} VerticalPad 0 @@ -38964,17 +38845,29 @@ public} Class LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + Head ID - 1387 + 1357 ID - 1390 + 1358 Points - {192.63876576386062, 276.62} - {192.63876576386062, 295.62} + {369.57001000000002, 156.24001000000001} + {352.04881199999994, 156.24001000000001} Style @@ -38984,6 +38877,8 @@ public} FilledArrow Legacy + LineType + 1 TailArrow 0 @@ -38991,23 +38886,23 @@ public} Tail ID - 1389 + 1356 Bounds - {{168.56, 239.12}, {48.157501000000003, 36}} + {{303.08400999999998, 138.24001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1389 + 1357 Shape RoundRect Style @@ -39048,62 +38943,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C7'} +\f0\fs24 \cf0 C7} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 1386 - - ID - 1388 - Points - - {192.63876576387253, 334.62} - {192.63876576387253, 353.62} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 - - - Tail - - ID - 1387 - - Bounds - {{168.56, 297.12}, {48.157501000000003, 36}} + {{371.07001000000002, 138.24001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1387 + 1356 Shape RoundRect Style @@ -39144,29 +39006,76 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C6'} +\f0\fs24 \cf0 C8} VerticalPad 0 + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1343 + + ID + 1355 + Points + + {227.07736886382284, 156.05444569013918} + {209.55543309820891, 155.92558385688594} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1354 + + Bounds - {{168.56, 355.12}, {48.157501000000003, 36}} + {{228.577, 138.24001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1386 + 1354 Shape RoundRect Style @@ -39207,11 +39116,11 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C5'} +\f0\fs24 \cf0 C3} VerticalPad 0 @@ -39219,52 +39128,29 @@ public} Class LineGraphic - Head - - ID - 1354 - - ID - 1385 - Points - - {426.65676321831887, 387.27999999999997} - {426.65676321831887, 406.24999999999994} - - Style + FontInfo - stroke + Color - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow + w 0 + Font + Helvetica + Size + 12 - Tail - - ID - 1379 - - - - Class - LineGraphic Head ID - 1380 + 1359 ID - 1383 + 1353 Points - {426.65676319851576, 271.27999999999997} - {426.65676319851576, 290.27999999999997} + {462.78719140258522, 114.99999999998867} + {462.78729722123779, 137.24001000001732} Style @@ -39274,6 +39160,8 @@ public} FilledArrow Legacy + LineType + 1 TailArrow 0 @@ -39281,25 +39169,34 @@ public} Tail ID - 1382 + 1352 Bounds - {{402.57799999999997, 233.78}, {48.157501000000003, 36}} + {{427.77600000000001, 78}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Helvetica + LucidaGrande Size - 12 + 10 ID - 1382 + 1352 Shape - RoundRect + Rectangle Style fill @@ -39307,11 +39204,11 @@ public} Color b - 0.837205 + 0.933333 g - 0.959184 + 0.933333 r - 0.826135 + 0.933333 shadow @@ -39331,7 +39228,7 @@ public} 0.382653 Width - 3 + 2 Text @@ -39339,10 +39236,10 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C7} +\f0\fs20 \cf2 master} VerticalPad 0 @@ -39350,17 +39247,68 @@ public} Class LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 1349 + Points + + {91.106003000000001, 155.74001000000001} + {57, 155.74001000000001} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + Pattern + 1 + TailArrow + 0 + + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + Head ID - 1379 + 1344 ID - 1381 + 1348 Points - {426.65676319851576, 329.27999999999997} - {426.65676319851576, 348.27999999999997} + {159.09100000000004, 155.74001000000001} + {141.57070599999997, 155.74001000000001} Style @@ -39370,6 +39318,8 @@ public} FilledArrow Legacy + LineType + 1 TailArrow 0 @@ -39377,23 +39327,23 @@ public} Tail ID - 1380 + 1343 Bounds - {{402.57799999999997, 291.77999999999997}, {48.157501000000003, 36}} + {{92.605903999999995, 137.74001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1380 + 1344 Shape RoundRect Style @@ -39434,29 +39384,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C6} +\f0\fs24 \cf0 C1} VerticalPad 0 Bounds - {{402.57799999999997, 349.77999999999997}, {48.157501000000003, 36}} + {{160.59100000000001, 137.74001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1379 + 1343 Shape RoundRect Style @@ -39497,43 +39447,132 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C5} +\f0\fs24 \cf0 C2} VerticalPad 0 + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + Canvas 14 + UniqueID + 15 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 553}} + Class + SolidGraphic + ID + 2 + Style + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + Class LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + Head ID - 1375 + 1359 ID - 1378 + 1372 Points - {115.46612860730792, 392.62} - {115.46612860730792, 410.85998999999998} + {479.82698309934909, 223.33736758522807} + {445.73281882337852, 184.86265241708341} Style stroke - Color - - b - 0.494898 - g - 0.494898 - r - 0.494898 - HeadArrow FilledArrow Legacy @@ -39547,23 +39586,35 @@ public} Tail ID - 1334 + 1370 Class LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + Head ID - 1302 + 1365 ID - 1376 + 1371 Points - {115.46613486865677, 449.85998999999993} - {115.46613486865677, 471.13} + {471.54001, 242.46001000000001} + {454.01979199999994, 242.46001000000001} Style @@ -39573,6 +39624,8 @@ public} FilledArrow Legacy + LineType + 1 TailArrow 0 @@ -39580,23 +39633,23 @@ public} Tail ID - 1375 + 1370 Bounds - {{91.387398000000005, 412.35998999999998}, {48.157501000000003, 36}} + {{473.04001, 224.46001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1375 + 1370 Shape RoundRect Style @@ -39606,11 +39659,11 @@ public} Color b - 0.837205 + 0.680889 g - 0.959184 + 0.765306 r - 0.826135 + 0.660584 shadow @@ -39637,11 +39690,11 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C1} +\f0\fs24 \cf0 C10} VerticalPad 0 @@ -39649,17 +39702,29 @@ public} Class LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + Head ID - 1367 + 1354 ID - 1374 + 1369 Points - {510.39175954673595, 336.55999999999995} - {510.39175954673595, 357.5} + {274.39114767297201, 222.98748375297382} + {236.73466434186372, 184.2125362426093} Style @@ -39678,23 +39743,35 @@ public} Tail ID - 1369 + 1363 Class LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + Head ID - 1369 + 1370 ID - 1371 + 1368 Points - {510.39175954673595, 276.61999999999995} - {510.39175954673595, 297.56} + {496.77271926705612, 287.4800100000233} + {496.77254501522827, 261.9600099999646} Style @@ -39704,6 +39781,8 @@ public} FilledArrow Legacy + LineType + 1 TailArrow 0 @@ -39711,25 +39790,34 @@ public} Tail ID - 1370 + 1367 Bounds - {{486.31299000000001, 239.12}, {48.157501000000003, 36}} + {{457.40100000000001, 288.48000999999999}, {78.743697999999995, 36}} Class ShapedGraphic FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Helvetica + LucidaGrande Size - 12 + 10 ID - 1370 + 1367 Shape - RoundRect + Rectangle Style fill @@ -39737,11 +39825,11 @@ public} Color b - 0.837205 + 0.933333 g - 0.959184 + 0.933333 r - 0.826135 + 0.933333 shadow @@ -39761,7 +39849,7 @@ public} 0.382653 Width - 3 + 2 Text @@ -39769,28 +39857,75 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C4} +\f0\fs20 \cf2 topic-branch} VerticalPad 0 + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1362 + + ID + 1366 + Points + + {403.55535887316302, 242.27444334153725} + {386.03444308420251, 242.14558737861594} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1365 + + Bounds - {{486.31299000000001, 299.06}, {48.157501000000003, 36}} + {{405.05498999999998, 224.46001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1369 + 1365 Shape RoundRect Style @@ -39831,11 +39966,11 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C3} +\f0\fs24 \cf0 C6} VerticalPad 0 @@ -39843,17 +39978,29 @@ public} Class LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + Head ID - 1354 + 1363 ID - 1368 + 1364 Points - {487.15286961015596, 390.52952842122733} - {449.89562097641902, 412.2204705791429} + {335.57001000000002, 241.96001000000001} + {318.04881199999994, 241.96001000000001} Style @@ -39863,6 +40010,8 @@ public} FilledArrow Legacy + LineType + 1 TailArrow 0 @@ -39870,23 +40019,23 @@ public} Tail ID - 1367 + 1362 Bounds - {{486.31299000000001, 359}, {48.157501000000003, 36}} + {{269.08400999999998, 223.96001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1367 + 1363 Shape RoundRect Style @@ -39927,40 +40076,31 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C2} +\f0\fs24 \cf0 C4} VerticalPad 0 Bounds - {{469.565, 81}, {81.652298000000002, 27}} + {{337.07001000000002, 223.96001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Courier Size - 10 + 12 ID - 1364 + 1362 Shape - Rectangle + RoundRect Style fill @@ -39968,11 +40108,11 @@ public} Color b - 0.933333 + 0.837205 g - 0.933333 + 0.959184 r - 0.933333 + 0.826135 shadow @@ -39992,47 +40132,132 @@ public} 0.382653 Width - 2 + 3 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 default} +\f0\fs24 \cf0 C5} VerticalPad 0 - Bounds - {{316.42401000000001, 183.67999}, {81.652298000000002, 27}} Class - ShapedGraphic + LineGraphic FontInfo Color - b - 0.8 - g - 0.8 - r - 0.8 + w + 0 Font - LucidaGrande + Helvetica Size - 10 + 12 + + Head + + ID + 1354 ID - 1357 + 1361 + Points + + {267.58400999999998, 165.24001000000001} + {243.54180199999999, 165.24001000000001} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1357 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1356 + + ID + 1360 + Points + + {403.55535887316302, 165.55444334153725} + {386.03444308420251, 165.42558737861594} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1359 + + + + Bounds + {{405.05498999999998, 147.74001000000001}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1359 Shape - Rectangle + RoundRect Style fill @@ -40040,11 +40265,11 @@ public} Color b - 0.933333 + 0.837205 g - 0.933333 + 0.959184 r - 0.933333 + 0.826135 shadow @@ -40064,18 +40289,18 @@ public} 0.382653 Width - 2 + 3 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 scott/default} +\f0\fs24 \cf0 C9} VerticalPad 0 @@ -40083,17 +40308,29 @@ public} Class LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + Head ID - 1355 + 1357 ID - 1356 + 1358 Points - {426.65675963998405, 445.25} - {426.65675963998405, 471.13} + {335.57001000000002, 165.24001000000001} + {318.04881199999994, 165.24001000000001} Style @@ -40103,6 +40340,8 @@ public} FilledArrow Legacy + LineType + 1 TailArrow 0 @@ -40110,23 +40349,23 @@ public} Tail ID - 1354 + 1356 Bounds - {{402.57799999999997, 472.63}, {48.157501000000003, 36}} + {{269.08400999999998, 147.24001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1355 + 1357 Shape RoundRect Style @@ -40167,29 +40406,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C0} +\f0\fs24 \cf0 C7} VerticalPad 0 Bounds - {{402.57799999999997, 407.75}, {48.157501000000003, 36}} + {{337.07001000000002, 147.24001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1354 + 1356 Shape RoundRect Style @@ -40230,82 +40469,91 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C1} +\f0\fs24 \cf0 C8} VerticalPad 0 - Bounds - {{408.96600000000001, 31}, {37, 14}} Class - ShapedGraphic - FitText - YES - Flow - Resize - ID - 1353 - Shape - Rectangle - Style + LineGraphic + FontInfo - fill - - Draws - NO - - shadow + Color - Draws - NO + w + 0 + Font + Helvetica + Size + 12 + + Head + + ID + 1343 + + ID + 1355 + Points + + {193.07736886382284, 165.05444569013918} + {175.55543309820888, 164.92558385688594} + + Style + stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 jessica} - VerticalPad - 0 + ID + 1354 - Wrap - NO Bounds - {{159.13999999999999, 31}, {26, 14}} + {{194.577, 147.24001000000001}, {47.464801999999999, 36}} Class ShapedGraphic - FitText - YES - Flow - Resize + FontInfo + + Font + Courier + Size + 12 + ID - 1352 + 1354 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -40314,30 +40562,82 @@ public} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 scott} +\f0\fs24 \cf0 C3} VerticalPad 0 - Wrap - NO + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1359 + + ID + 1353 + Points + + {428.78711686827256, 124.99999999997753} + {428.78725925266122, 146.24001000003423} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1352 + Bounds - {{157.173, 200}, {70.932297000000005, 27}} + {{386.67498999999998, 88}, {84.223999000000006, 36}} Class ShapedGraphic FontInfo @@ -40357,7 +40657,7 @@ public} 10 ID - 1344 + 1352 Shape Rectangle Style @@ -40402,7 +40702,7 @@ public} {\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 default} +\f0\fs20 \cf2 origin/master} VerticalPad 0 @@ -40410,149 +40710,79 @@ public} Class LineGraphic - Head + FontInfo - ID - 1336 + Color + + w + 0 + + Font + Helvetica + Size + 12 ID - 1343 + 1349 Points - {115.46612900000001, 276.62} - {115.46612900000001, 295.62} + {57.105998999999997, 164.74001000000001} + {23, 164.74001000000001} Style stroke - Color - - b - 0.494898 - g - 0.494898 - r - 0.494898 - HeadArrow FilledArrow Legacy + LineType + 1 + Pattern + 1 TailArrow 0 - Tail - - ID - 1342 - - Bounds - {{91.387398000000005, 239.12}, {48.157501000000003, 36}} Class - ShapedGraphic + LineGraphic FontInfo Color - b - 0.5 - g - 0.5 - r - 0.5 + w + 0 Font Helvetica Size 12 - ID - 1342 - Shape - RoundRect - Style - - fill - - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.494898 - g - 0.494898 - r - 0.494898 - - Width - 3 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red128\green128\blue128;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf2 C7} - VerticalPad - 0 - - - - Class - LineGraphic Head ID - 1334 + 1344 ID - 1337 + 1348 Points - {115.46612900000001, 334.62} - {115.46612900000001, 353.62} + {125.09100000000001, 164.74001000000001} + {107.57070199999998, 164.74001000000001} Style stroke - Color - - b - 0.494898 - g - 0.494898 - r - 0.494898 - HeadArrow FilledArrow Legacy + LineType + 1 TailArrow 0 @@ -40560,104 +40790,23 @@ public} Tail ID - 1336 - - - - Bounds - {{91.387398000000005, 297.12}, {48.157501000000003, 36}} - Class - ShapedGraphic - FontInfo - - Color - - b - 0.5 - g - 0.5 - r - 0.5 - - Font - Helvetica - Size - 12 - - ID - 1336 - Shape - RoundRect - Style - - fill - - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.494898 - g - 0.494898 - r - 0.494898 - - Width - 3 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red128\green128\blue128;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf2 C6} - VerticalPad - 0 + 1343 Bounds - {{91.387398000000005, 355.12}, {48.157501000000003, 36}} + {{58.605899999999998, 146.74001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo - Color - - b - 0.5 - g - 0.5 - r - 0.5 - Font - Helvetica + Courier Size 12 ID - 1334 + 1344 Shape RoundRect Style @@ -40684,11 +40833,11 @@ public} Color b - 0.494898 + 0.382653 g - 0.494898 + 0.382653 r - 0.494898 + 0.382653 Width 3 @@ -40698,29 +40847,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red128\green128\blue128;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf2 C5} +\f0\fs24 \cf0 C1} VerticalPad 0 Bounds - {{91.387398000000005, 472.63}, {48.157501000000003, 36}} + {{126.59099999999999, 146.74001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo Font - Helvetica + Courier Size 12 ID - 1302 + 1343 Shape RoundRect Style @@ -40761,141 +40910,11 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C0} - VerticalPad - 0 - - - - Bounds - {{48.279998999999997, 51}, {247.72, 494}} - Class - ShapedGraphic - FontInfo - - Color - - b - 0.8 - g - 0.8 - r - 0.8 - - Font - LucidaGrande - Size - 10 - - ID - 1350 - Shape - Rectangle - Style - - fill - - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 - - - Text - - VerticalPad - 0 - - - - Bounds - {{308.56, 51}, {247.72, 494}} - Class - ShapedGraphic - FontInfo - - Color - - b - 0.8 - g - 0.8 - r - 0.8 - - Font - LucidaGrande - Size - 10 - - ID - 1351 - Shape - Rectangle - Style - - fill - - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 - - - Text - +\f0\fs24 \cf0 C2} VerticalPad 0 @@ -40939,8 +40958,6 @@ public} Orientation 2 - OutlineStyle - Basic PrintOnePage RowAlign @@ -40948,11 +40965,11 @@ public} RowSpacing 36 SheetTitle - git log filtering 4 + Canvas 15 UniqueID - 38 + 16 VPages - 2 + 1 ActiveLayerIndex @@ -40994,20 +41011,72 @@ public} Head ID - 1343 + 1373 ID - 1369 + 1378 Points - {275.923927827912, 370.02868310353347} - {239, 328} - {225.81204731149296, 229.72668317055502} + {271.04836887296244, 236.73443339197595} + {253.52743308444764, 236.60557731699507} + + Style + + stroke + + Color + + b + 0.765306 + g + 0.765306 + r + 0.765306 + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1375 + + + + Class + LineGraphic + Head + + ID + 1374 + + ID + 1377 + Points + + {203.06300000000002, 236.41999999999999} + {185.54180199999999, 236.41999999999999} Style stroke + Color + + b + 0.765306 + g + 0.765306 + r + 0.765306 + HeadArrow FilledArrow Legacy @@ -41021,7 +41090,7 @@ public} Tail ID - 1368 + 1373 @@ -41030,19 +41099,28 @@ public} Head ID - 1366 + 1354 ID - 1367 + 1376 Points - {361.19706649354242, 426.28000000000162} - {361.19703420276261, 408.49999999999778} + {140.7796087634643, 217.98887954477445} + {104.41619224993605, 183.67113044601277} Style stroke + Color + + b + 0.765306 + g + 0.765306 + r + 0.765306 + HeadArrow FilledArrow Legacy @@ -41056,12 +41134,12 @@ public} Tail ID - 1365 + 1374 Bounds - {{326.18599999999998, 427.27999999999997}, {70.022201999999993, 36}} + {{272.548, 218.91999999999999}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -41069,21 +41147,21 @@ public} Color b - 0.8 + 0.77551 g - 0.8 + 0.77551 r - 0.8 + 0.77551 Font - LucidaGrande + Courier Size - 10 + 12 ID - 1365 + 1375 Shape - Rectangle + RoundRect Style fill @@ -41091,11 +41169,11 @@ public} Color b - 0.933333 + 0.871538 g - 0.933333 + 0.979592 r - 0.933333 + 0.845548 shadow @@ -41108,78 +41186,52 @@ public} Color b - 0.382653 + 0.765306 g - 0.382653 + 0.765306 r - 0.382653 + 0.765306 Width - 2 + 3 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;\red198\green198\blue198;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 php_client} +\f0\fs24 \cf2 C6} VerticalPad 0 + Bounds + {{136.577, 218.41999999999999}, {47.464801999999999, 36}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 1368 + Color + + b + 0.77551 + g + 0.77551 + r + 0.77551 + + Font + Courier + Size + 12 ID - 1370 - Points - - {338.5, 389} - {315.28801099999998, 389} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1366 - - - - Bounds - {{340, 371}, {42.394001000000003, 36}} - Class - ShapedGraphic - FontInfo - - Font - Courier - Size - 12 - - ID - 1366 + 1374 Shape RoundRect Style @@ -41189,11 +41241,11 @@ public} Color b - 0.837205 + 0.871538 g - 0.959184 + 0.979592 r - 0.826135 + 0.845548 shadow @@ -41206,11 +41258,11 @@ public} Color b - 0.382653 + 0.765306 g - 0.382653 + 0.765306 r - 0.382653 + 0.765306 Width 3 @@ -41221,28 +41273,37 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\colortbl;\red255\green255\blue255;\red198\green198\blue198;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C6} +\f0\fs24 \cf2 C4} VerticalPad 0 Bounds - {{271.39400999999998, 371}, {42.394001000000003, 36}} + {{204.56299999999999, 218.41999999999999}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo + Color + + b + 0.77551 + g + 0.77551 + r + 0.77551 + Font Courier Size 12 ID - 1368 + 1373 Shape RoundRect Style @@ -41252,11 +41313,11 @@ public} Color b - 0.837205 + 0.871538 g - 0.959184 + 0.979592 r - 0.826135 + 0.845548 shadow @@ -41269,11 +41330,11 @@ public} Color b - 0.382653 + 0.765306 g - 0.382653 + 0.765306 r - 0.382653 + 0.765306 Width 3 @@ -41284,10 +41345,10 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\colortbl;\red255\green255\blue255;\red198\green198\blue198;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C5} +\f0\fs24 \cf2 C5} VerticalPad 0 @@ -41298,14 +41359,14 @@ public} Head ID - 1343 + 1359 ID - 1355 + 1369 Points - {269.89400999999998, 210.24001000000001} - {245.894001, 210.24001000000001} + {360.07474582566005, 219.50878784455014} + {316.93805617970992, 183.1512221493704} Style @@ -41324,25 +41385,69 @@ public} Tail ID - 1354 + 1363 + + + + Class + LineGraphic + Head + + ID + 1365 + + ID + 1368 + Points + + {516.70300504534066, 283.88000000003819} + {516.7032406549398, 256.91999999994277} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1367 Bounds - {{271.39400999999998, 192.24001000000001}, {42.394001000000003, 36}} + {{477.33098999999999, 284.88}, {78.743697999999995, 36}} Class ShapedGraphic FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Courier + LucidaGrande Size - 12 + 10 ID - 1354 + 1367 Shape - RoundRect + Rectangle Style fill @@ -41350,11 +41455,11 @@ public} Color b - 0.837205 + 0.933333 g - 0.959184 + 0.933333 r - 0.826135 + 0.933333 shadow @@ -41374,18 +41479,18 @@ public} 0.382653 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C7} +\f0\fs20 \cf2 topic-branch} VerticalPad 0 @@ -41396,14 +41501,14 @@ public} Head ID - 1354 + 1362 ID - 1353 + 1366 Points - {292.59103778740905, 167.9999999999998} - {292.59102376928092, 190.74001000000038} + {491.47137887272532, 237.23443345158094} + {473.95042308463093, 237.10557727090557} Style @@ -41422,34 +41527,25 @@ public} Tail ID - 1352 + 1365 Bounds - {{264.48700000000002, 131}, {56.208098999999997, 36}} + {{492.97100999999998, 219.41999999999999}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Courier Size - 10 + 12 ID - 1352 + 1365 Shape - Rectangle + RoundRect Style fill @@ -41457,11 +41553,11 @@ public} Color b - 0.933333 + 0.837205 g - 0.933333 + 0.959184 r - 0.933333 + 0.826135 shadow @@ -41481,18 +41577,18 @@ public} 0.382653 Width - 2 + 3 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 master} +\f0\fs24 \cf0 C6'} VerticalPad 0 @@ -41503,14 +41599,14 @@ public} Head ID - 1345 + 1363 ID - 1351 + 1364 Points - {361.71998337821208, 308.96008733768866} - {361.46909384535411, 290.97985399390979} + {423.48599000000002, 236.91999999999999} + {405.96480199999996, 236.91999999999999} Style @@ -41529,34 +41625,25 @@ public} Tail ID - 1350 + 1362 Bounds - {{326.97399999999999, 309.95999}, {70.022201999999993, 36}} + {{357, 218.91999999999999}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Courier Size - 10 + 12 ID - 1350 + 1363 Shape - Rectangle + RoundRect Style fill @@ -41564,11 +41651,11 @@ public} Color b - 0.933333 + 0.837205 g - 0.933333 + 0.959184 r - 0.933333 + 0.826135 shadow @@ -41588,82 +41675,83 @@ public} 0.382653 Width - 2 + 3 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 ruby_client} +\f0\fs24 \cf0 C4'} VerticalPad 0 + Bounds + {{424.98599000000002, 218.91999999999999}, {47.464801999999999, 36}} Class - LineGraphic - ID - 1349 - Points - - {131.10599999999999, 209.74001000000001} - {97, 209.74001000000001} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - Pattern - 1 - TailArrow - 0 - - - - - Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 1344 + Font + Courier + Size + 12 ID - 1348 - Points - - {200.50026344026361, 210.07647781185037} - {176.49973752908522, 209.90355169878544} - + 1362 + Shape + RoundRect Style + fill + + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 - Tail + Text - ID - 1343 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 C5'} + VerticalPad + 0 @@ -41672,14 +41760,14 @@ public} Head ID - 1343 + 1354 ID - 1347 + 1361 Points - {273.57430605379278, 254.69781912584989} - {242.21370576081685, 227.0221896324538} + {135.07700000000003, 165.24001000000001} + {110.11880099999998, 165.24001000000001} Style @@ -41698,7 +41786,7 @@ public} Tail ID - 1342 + 1357 @@ -41707,14 +41795,14 @@ public} Head ID - 1342 + 1356 ID - 1346 + 1360 Points - {338.50000000000119, 271.47999011218053} - {315.28801099999941, 271.47999011218053} + {271.04836887296244, 165.55444339197598} + {253.52743308444764, 165.42558731699509} Style @@ -41733,12 +41821,12 @@ public} Tail ID - 1345 + 1359 Bounds - {{340, 253.47999999999999}, {42.394001000000003, 36}} + {{272.548, 147.74001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -41749,7 +41837,7 @@ public} 12 ID - 1345 + 1359 Shape RoundRect Style @@ -41794,14 +41882,49 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C4} +\f0\fs24 \cf0 C9} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1357 + + ID + 1358 + Points + + {203.06300000000002, 165.24001000000001} + {185.54180199999999, 165.24001000000001} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1356 + + Bounds - {{132.60599999999999, 191.74001000000001}, {42.394001000000003, 36}} + {{136.577, 147.24001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -41812,7 +41935,7 @@ public} 12 ID - 1344 + 1357 Shape RoundRect Style @@ -41857,14 +41980,14 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C1} +\f0\fs24 \cf0 C7} VerticalPad 0 Bounds - {{202, 192.24001000000001}, {42.394001000000003, 36}} + {{204.56299999999999, 147.24001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -41875,7 +41998,7 @@ public} 12 ID - 1343 + 1356 Shape RoundRect Style @@ -41920,14 +42043,14 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C2} +\f0\fs24 \cf0 C8} VerticalPad 0 Bounds - {{271.39400999999998, 253.47999999999999}, {42.394001000000003, 36}} + {{61.153998999999999, 147.24001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -41938,7 +42061,7 @@ public} 12 ID - 1342 + 1354 Shape RoundRect Style @@ -41988,6 +42111,145 @@ public} 0 + + Class + LineGraphic + Head + + ID + 1359 + + ID + 1353 + Points + + {296.28012686827259, 124.99999999997756} + {296.28026925266124, 146.24001000003423} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1352 + + + + Bounds + {{254.16800000000001, 88}, {84.223999000000006, 36}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.8 + g + 0.8 + r + 0.8 + + Font + LucidaGrande + Size + 10 + + ID + 1352 + Shape + Rectangle + Style + + fill + + Color + + b + 0.933333 + g + 0.933333 + r + 0.933333 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 2 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs20 \cf2 origin/master} + VerticalPad + 0 + + + + Class + LineGraphic + ID + 1349 + Points + + {59.654474444282087, 165.02934509481523} + {25, 164.74001000000001} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + Pattern + 1 + TailArrow + 0 + + + Tail + + ID + 1354 + + GridInfo @@ -42034,9 +42296,9 @@ public} RowSpacing 36 SheetTitle - 0519 + Canvas 16 UniqueID - 1 + 17 VPages 1 @@ -42048,7 +42310,7 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {805, 732}} Class SolidGraphic ID @@ -42066,6 +42328,8 @@ public} 0 CanvasOrigin {0, 0} + CanvasSize + {805, 732} ColumnAlign 1 ColumnSpacing @@ -42074,9 +42338,44 @@ public} 1 in = 1.00000 in GraphicsList + + Class + LineGraphic + Head + + ID + 1304 + + ID + 1334 + Points + + {291.4489977392393, 232.99999999998795} + {291.44884621504548, 263.87000000001808} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1316 + + Bounds - {{252.989, 310.77999999999997}, {70.022201999999993, 36}} + {{256.43799000000001, 196}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -42096,7 +42395,7 @@ public} 10 ID - 1350 + 1316 Shape Rectangle Style @@ -42141,7 +42440,7 @@ public} {\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 ruby_client} +\f0\fs20 \cf2 master} VerticalPad 0 @@ -42152,15 +42451,14 @@ public} Head ID - 1360 + 1299 ID - 1370 + 1306 Points - {427.30382555213083, 231.67547194881854} - {389, 358} - {310.54277898667459, 378.62554058079513} + {265.87, 283.37} + {239.712491, 283.37} Style @@ -42170,8 +42468,6 @@ public} FilledArrow Legacy - LineType - 1 TailArrow 0 @@ -42179,42 +42475,78 @@ public} Tail ID - 1367 + 1304 + Bounds + {{267.37, 265.37}, {48.157501000000003, 36}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 1354 + Color + + w + 0 + + Font + LucidaGrande + NSKern + 0 + Size + 12 ID - 1369 - Points - - {303.69710119306808, 211.84626589308508} - {242.2878898071564, 212.1337542141153} - + 1304 + Shape + RoundRect Style + fill + + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 - Tail + Text - ID - 1365 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \expnd0\expndtw0\kerning0 +C2} + VerticalPad + 0 @@ -42223,14 +42555,14 @@ public} Head ID - 1365 + 1302 ID - 1368 + 1303 Points - {410.500111199336, 212.13375411282658} - {349.09087980102652, 211.84626571402319} + {188.55499000000003, 283.37} + {162.39750099999998, 283.37} Style @@ -42240,8 +42572,6 @@ public} FilledArrow Legacy - LineType - 1 TailArrow 0 @@ -42249,23 +42579,23 @@ public} Tail ID - 1367 + 1299 Bounds - {{412, 194.24001000000001}, {42.394001000000003, 36}} + {{112.73999999999999, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1367 + 1302 Shape RoundRect Style @@ -42275,11 +42605,11 @@ public} Color b - 0.717203 + 0.837205 g - 0.806122 + 0.959184 r - 0.695816 + 0.826135 shadow @@ -42306,64 +42636,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C9} +\f0\fs24 \cf0 C0} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 1345 - - ID - 1366 - Points - - {314.42869915861064, 231.01441491691881} - {300.16229160124965, 253.99559507583302} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1365 - - Bounds - {{305.19699000000003, 193.74001000000001}, {42.394001000000003, 36}} + {{190.05499, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1365 + 1299 Shape RoundRect Style @@ -42373,11 +42668,11 @@ public} Color b - 0.717203 + 0.837205 g - 0.806122 + 0.959184 r - 0.695816 + 0.826135 shadow @@ -42404,65 +42699,131 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C8} +\f0\fs24 \cf0 C1} VerticalPad 0 + + GridInfo + + HPages + 2 + KeepToScale + + Layers + - Class - LineGraphic - Head + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + OutlineStyle + Basic + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + branch-simple 1 + UniqueID + 103 + VPages + 2 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {805, 732}} + Class + SolidGraphic + ID + 2 + Style + + stroke - ID - 1343 + Draws + NO - ID - 1364 - Points - - {199.87889944196874, 368.92637581647114} - {162, 339} - {152.01210190938781, 231.73354946028613} - - Style + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + CanvasSize + {805, 732} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + + + Class + LineGraphic + FontInfo - stroke + Color - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow + w 0 + Font + Helvetica + Size + 12 - Tail - - ID - 1359 - - - - Class - LineGraphic Head ID - 1360 + 1304 ID - 1363 + 1336 Points - {288.19706609248743, 421.22000000000173} - {288.19703445525766, 403.99999999999773} + {291.44876449400402, 333.74000000000001} + {291.44876449400402, 302.87} Style @@ -42481,12 +42842,12 @@ public} Tail ID - 1362 + 1335 Bounds - {{253.18600000000001, 422.22000000000003}, {70.022201999999993, 36}} + {{256.43764950000002, 334.74000000000001}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -42506,7 +42867,7 @@ public} 10 ID - 1362 + 1335 Shape Rectangle Style @@ -42551,7 +42912,7 @@ public} {\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 php_client} +\f0\fs20 \cf2 iss53} VerticalPad 0 @@ -42562,14 +42923,14 @@ public} Head ID - 1359 + 1304 ID - 1361 + 1334 Points - {265.5, 384.5} - {242.28800100000001, 384.5} + {291.44899773922668, 232.99999999998795} + {291.44884621501222, 263.87000000001808} Style @@ -42588,25 +42949,34 @@ public} Tail ID - 1360 + 1316 Bounds - {{267, 366.5}, {42.394001000000003, 36}} + {{256.43799000000001, 196}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Courier + LucidaGrande Size - 12 + 10 ID - 1360 + 1316 Shape - RoundRect + Rectangle Style fill @@ -42614,11 +42984,11 @@ public} Color b - 0.837205 + 0.933333 g - 0.959184 + 0.933333 r - 0.826135 + 0.933333 shadow @@ -42638,36 +43008,76 @@ public} 0.382653 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C6} +\f0\fs20 \cf2 master} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1299 + + ID + 1306 + Points + + {265.87, 283.37} + {239.712491, 283.37} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + + + Tail + + ID + 1304 + + Bounds - {{198.39400000000001, 366.5}, {42.394001000000003, 36}} + {{267.37, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo + Color + + w + 0 + Font - Courier + LucidaGrande + NSKern + 0 Size 12 ID - 1359 + 1304 Shape RoundRect Style @@ -42708,11 +43118,12 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C5} +\f0\fs24 \cf0 \expnd0\expndtw0\kerning0 +C2} VerticalPad 0 @@ -42723,14 +43134,14 @@ public} Head ID - 1343 + 1302 ID - 1355 + 1303 Points - {196.89400000000001, 212.24001000000001} - {172.894001, 212.24001000000001} + {188.55499000000003, 283.37} + {162.39750099999998, 283.37} Style @@ -42740,8 +43151,6 @@ public} FilledArrow Legacy - LineType - 1 TailArrow 0 @@ -42749,23 +43158,23 @@ public} Tail ID - 1354 + 1299 Bounds - {{198.39400000000001, 194.24001000000001}, {42.394001000000003, 36}} + {{112.73999999999999, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1354 + 1302 Shape RoundRect Style @@ -42806,75 +43215,31 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C7} +\f0\fs24 \cf0 C0} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 1367 - - ID - 1353 - Points - - {433.19702649336944, 174.47999999999976} - {433.19701399330609, 192.74001000000038} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1352 - - Bounds - {{405.09298999999999, 137.47999999999999}, {56.208098999999997, 36}} + {{190.05499, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Helvetica Size - 10 + 12 ID - 1352 + 1299 Shape - Rectangle + RoundRect Style fill @@ -42882,11 +43247,11 @@ public} Color b - 0.933333 + 0.837205 g - 0.933333 + 0.959184 r - 0.933333 + 0.826135 shadow @@ -42906,7 +43271,7 @@ public} 0.382653 Width - 2 + 3 Text @@ -42914,90 +43279,130 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 master} +\f0\fs24 \cf0 C1} VerticalPad 0 + + GridInfo + + HPages + 2 + KeepToScale + + Layers + - Class - LineGraphic - Head - - ID - 1345 - - ID - 1351 - Points - - {288.06749745888538, 309.78000629119498} - {288.12783510126229, 292.76999056447363} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + OutlineStyle + Basic + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + branch-simple 2 + UniqueID + 104 + VPages + 2 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {805, 732}} + Class + SolidGraphic + ID + 2 + Style + + stroke - ID - 1350 + Draws + NO + + BaseZoom + 0 + CanvasOrigin + {0, 0} + CanvasSize + {805, 732} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + Class LineGraphic - ID - 1349 - Points - - {58.105998999999997, 211.74001000000001} - {24, 211.74001000000001} - - Style + FontInfo - stroke + Color - HeadArrow - FilledArrow - Legacy - - LineType - 1 - Pattern - 1 - TailArrow + w 0 + Font + Helvetica + Size + 12 - - - Class - LineGraphic Head ID - 1344 + 1304 ID - 1348 + 1338 Points - {127.50026344025645, 212.07647781407516} - {103.4997365290937, 211.90355169615788} + {343.18501000000083, 283.37001073174952} + {317.02750099999849, 283.37001073174952} Style @@ -43016,42 +43421,70 @@ public} Tail ID - 1343 + 1337 + Bounds + {{344.68501000000003, 265.37}, {48.157501000000003, 36}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 1343 + Font + Helvetica + Size + 12 ID - 1347 - Points - - {200.55042448121918, 256.5243711310705} - {169.23757664282556, 228.98563867813414} - + 1337 + Shape + RoundRect Style + fill + + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 - Tail + Text - ID - 1342 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 C3} + VerticalPad + 0 @@ -43060,14 +43493,14 @@ public} Head ID - 1342 + 1337 ID - 1346 + 1336 Points - {265.50000000000057, 273.27000988782379} - {242.28800099999881, 273.27000988782379} + {368.69896810409153, 333.79999833106973} + {368.59349268223127, 302.86994282121873} Style @@ -43086,25 +43519,34 @@ public} Tail ID - 1345 + 1335 Bounds - {{267, 255.27000000000001}, {42.394001000000003, 36}} + {{333.75265950000005, 334.79999251663685}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Courier + LucidaGrande Size - 12 + 10 ID - 1345 + 1335 Shape - RoundRect + Rectangle Style fill @@ -43112,11 +43554,11 @@ public} Color b - 0.837205 + 0.933333 g - 0.959184 + 0.933333 r - 0.826135 + 0.933333 shadow @@ -43136,38 +43578,82 @@ public} 0.382653 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C4} +\f0\fs20 \cf2 iss53} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1304 + + ID + 1334 + Points + + {291.44899773932514, 232.99999999998795} + {291.44884621527069, 263.87000000001808} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1316 + + Bounds - {{59.605998999999997, 193.74001000000001}, {42.394001000000003, 36}} + {{256.43799000000001, 196}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Courier + LucidaGrande Size - 12 + 10 ID - 1344 + 1316 Shape - RoundRect + Rectangle Style fill @@ -43175,11 +43661,11 @@ public} Color b - 0.837205 + 0.933333 g - 0.959184 + 0.933333 r - 0.826135 + 0.933333 shadow @@ -43199,36 +43685,76 @@ public} 0.382653 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C1} +\f0\fs20 \cf2 master} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1299 + + ID + 1306 + Points + + {265.87, 283.37} + {239.712491, 283.37} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + + + Tail + + ID + 1304 + + Bounds - {{129, 194.24001000000001}, {42.394001000000003, 36}} + {{267.37, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo + Color + + w + 0 + Font - Courier + LucidaGrande + NSKern + 0 Size 12 ID - 1343 + 1304 Shape RoundRect Style @@ -43269,29 +43795,63 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C2} +\f0\fs24 \cf0 \expnd0\expndtw0\kerning0 +C2} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1302 + + ID + 1303 + Points + + {188.55499000000003, 283.37} + {162.39750099999998, 283.37} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + + + Tail + + ID + 1299 + + Bounds - {{198.39400000000001, 255.27000000000001}, {42.394001000000003, 36}} + {{112.73999999999999, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1342 + 1302 Shape RoundRect Style @@ -43332,11 +43892,74 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C3} +\f0\fs24 \cf0 C0} + VerticalPad + 0 + + + + Bounds + {{190.05499, 265.37}, {48.157501000000003, 36}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 12 + + ID + 1299 + Shape + RoundRect + Style + + fill + + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 C1} VerticalPad 0 @@ -43345,7 +43968,7 @@ public} GridInfo HPages - 1 + 2 KeepToScale Layers @@ -43380,6 +44003,8 @@ public} Orientation 2 + OutlineStyle + Basic PrintOnePage RowAlign @@ -43387,11 +44012,11 @@ public} RowSpacing 36 SheetTitle - 0520 + branch-simple 3 UniqueID - 3 + 20 VPages - 1 + 2 ActiveLayerIndex @@ -43401,7 +44026,7 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {805, 732}} Class SolidGraphic ID @@ -43419,6 +44044,8 @@ public} 0 CanvasOrigin {0, 0} + CanvasSize + {805, 732} ColumnAlign 1 ColumnSpacing @@ -43433,14 +44060,14 @@ public} Head ID - 1343 + 1339 ID - 1372 + 1342 Points - {223.19703437586455, 167.99999999999969} - {223.19701627465446, 190.74001000000052} + {369.31077109576978, 232.99994103510446} + {368.97552041004923, 263.87008844760362} Style @@ -43459,12 +44086,12 @@ public} Tail ID - 1371 + 1341 Bounds - {{195.09299999999999, 131}, {56.208098999999997, 36}} + {{334.50601, 196}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -43484,7 +44111,7 @@ public} 10 ID - 1371 + 1341 Shape Rectangle Style @@ -43529,7 +44156,7 @@ public} {\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 master} +\f0\fs20 \cf2 hotfix} VerticalPad 0 @@ -43540,14 +44167,14 @@ public} Head ID - 1343 + 1304 ID - 1355 + 1340 Points - {269.89400999999998, 210.24001000000001} - {245.894001, 210.24001000000001} + {343.185, 283.37} + {317.02750100000003, 283.37} Style @@ -43566,23 +44193,23 @@ public} Tail ID - 1354 + 1339 Bounds - {{271.39400999999998, 192.24001000000001}, {42.394001000000003, 36}} + {{344.685, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1354 + 1339 Shape RoundRect Style @@ -43623,11 +44250,11 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C5} +\f0\fs24 \cf0 C4} VerticalPad 0 @@ -43638,14 +44265,14 @@ public} Head ID - 1354 + 1304 ID - 1353 + 1338 Points - {292.59103778740905, 167.9999999999998} - {292.59102376928092, 190.74001000000038} + {347.46211953068348, 323.73625190268405} + {313.50337131125798, 299.26374835566662} Style @@ -43664,12 +44291,110 @@ public} Tail ID - 1352 + 1337 Bounds - {{264.48700000000002, 131}, {56.208098999999997, 36}} + {{345.43799000000001, 321.63}, {48.157501000000003, 36}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 12 + + ID + 1337 + Shape + RoundRect + Style + + fill + + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 C3} + VerticalPad + 0 + + + + Class + LineGraphic + Head + + ID + 1337 + + ID + 1336 + Points + + {369.51701060059867, 390.73999000001396} + {369.51684356775263, 359.12999999997908} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1335 + + + + Bounds + {{334.50601, 391.73998999999998}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -43689,7 +44414,7 @@ public} 10 ID - 1352 + 1335 Shape Rectangle Style @@ -43734,7 +44459,7 @@ public} {\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 develop} +\f0\fs20 \cf2 iss53} VerticalPad 0 @@ -43745,14 +44470,14 @@ public} Head ID - 1345 + 1304 ID - 1351 + 1334 Points - {361.71998337821208, 308.96008733768866} - {361.46909384535411, 290.97985399390979} + {291.44899774385158, 232.99999999998795} + {291.44884622715148, 263.87000000001808} Style @@ -43771,12 +44496,12 @@ public} Tail ID - 1350 + 1316 Bounds - {{326.97399999999999, 309.95999}, {70.022201999999993, 36}} + {{256.43799000000001, 196}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -43796,7 +44521,7 @@ public} 10 ID - 1350 + 1316 Shape Rectangle Style @@ -43841,122 +44566,25 @@ public} {\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 ruby_client} +\f0\fs20 \cf2 master} VerticalPad 0 - - Class - LineGraphic - ID - 1349 - Points - - {131.10599999999999, 209.74001000000001} - {97, 209.74001000000001} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - Pattern - 1 - TailArrow - 0 - - - Class LineGraphic Head ID - 1344 - - ID - 1348 - Points - - {200.50026344026361, 210.07647781185037} - {176.49973752908522, 209.90355169878544} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1343 - - - - Class - LineGraphic - Head - - ID - 1343 - - ID - 1347 - Points - - {273.57430605379278, 254.69781912584989} - {242.21370576081685, 227.0221896324538} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1342 - - - - Class - LineGraphic - Head - - ID - 1342 + 1299 ID - 1346 + 1306 Points - {338.50000000000119, 271.47999011218053} - {315.28801099999941, 271.47999011218053} + {265.87, 283.37} + {239.712491, 283.37} Style @@ -43966,8 +44594,6 @@ public} FilledArrow Legacy - LineType - 1 TailArrow 0 @@ -43975,23 +44601,23 @@ public} Tail ID - 1345 + 1304 Bounds - {{340, 253.47999999999999}, {42.394001000000003, 36}} + {{267.37, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1345 + 1304 Shape RoundRect Style @@ -44032,92 +44658,62 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C4} +\f0\fs24 \cf0 C2} VerticalPad 0 - Bounds - {{132.60599999999999, 191.74001000000001}, {42.394001000000003, 36}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Font - Courier - Size - 12 + ID + 1302 ID - 1344 - Shape - RoundRect + 1303 + Points + + {188.55499000000003, 283.37} + {162.39750099999998, 283.37} + Style - fill - - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - - - shadow - - Draws - NO - stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 C1} - VerticalPad - 0 + ID + 1299 Bounds - {{202, 192.24001000000001}, {42.394001000000003, 36}} + {{112.73999999999999, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1343 + 1302 Shape RoundRect Style @@ -44158,29 +44754,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C2} +\f0\fs24 \cf0 C0} VerticalPad 0 Bounds - {{271.39400999999998, 253.47999999999999}, {42.394001000000003, 36}} + {{190.05499, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1342 + 1299 Shape RoundRect Style @@ -44221,11 +44817,11 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C3} +\f0\fs24 \cf0 C1} VerticalPad 0 @@ -44234,7 +44830,7 @@ public} GridInfo HPages - 1 + 2 KeepToScale Layers @@ -44269,6 +44865,8 @@ public} Orientation 2 + OutlineStyle + Basic PrintOnePage RowAlign @@ -44276,11 +44874,11 @@ public} RowSpacing 36 SheetTitle - 0521 + branch-simple 4 UniqueID - 5 + 21 VPages - 1 + 2 ActiveLayerIndex @@ -44290,7 +44888,7 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {805, 732}} Class SolidGraphic ID @@ -44308,6 +44906,8 @@ public} 0 CanvasOrigin {0, 0} + CanvasSize + {805, 732} ColumnAlign 1 ColumnSpacing @@ -44322,14 +44922,14 @@ public} Head ID - 1365 + 1339 ID - 1372 + 1342 Points - {326.39403814734476, 169.21000999999936} - {326.39401226567895, 192.24001000000098} + {369.31077109576978, 232.99994103510446} + {368.97552041004923, 263.87008844760362} Style @@ -44348,12 +44948,12 @@ public} Tail ID - 1371 + 1341 Bounds - {{298.29001, 132.21001000000001}, {56.208098999999997, 36}} + {{334.50601, 196}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -44373,7 +44973,7 @@ public} 10 ID - 1371 + 1341 Shape Rectangle Style @@ -44418,36 +45018,62 @@ public} {\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 develop} +\f0\fs20 \cf2 hotfix} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1304 + + ID + 1340 + Points + + {343.185, 283.37} + {317.02750100000003, 283.37} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1339 + + Bounds - {{252.989, 310.77999999999997}, {70.022201999999993, 36}} + {{344.685, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Helvetica Size - 10 + 12 ID - 1350 + 1339 Shape - Rectangle + RoundRect Style fill @@ -44455,11 +45081,11 @@ public} Color b - 0.933333 + 0.837205 g - 0.933333 + 0.959184 r - 0.933333 + 0.826135 shadow @@ -44479,7 +45105,7 @@ public} 0.382653 Width - 2 + 3 Text @@ -44487,10 +45113,10 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 ruby_client} +\f0\fs24 \cf0 C4} VerticalPad 0 @@ -44501,49 +45127,14 @@ public} Head ID - 1354 - - ID - 1369 - Points - - {303.69710119306808, 211.84626589308508} - {242.2878898071564, 212.1337542141153} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1365 - - - - Class - LineGraphic - Head - - ID - 1345 + 1304 ID - 1366 + 1338 Points - {314.42869915861064, 231.01441491691881} - {300.16229160124965, 253.99559507583302} + {347.46211953068348, 323.73625190268405} + {313.50337131125798, 299.26374835566662} Style @@ -44562,23 +45153,23 @@ public} Tail ID - 1365 + 1337 Bounds - {{305.19699000000003, 193.74001000000001}, {42.394001000000003, 36}} + {{345.43799000000001, 321.63}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1365 + 1337 Shape RoundRect Style @@ -44588,11 +45179,11 @@ public} Color b - 0.717203 + 0.837205 g - 0.806122 + 0.959184 r - 0.695816 + 0.826135 shadow @@ -44619,11 +45210,11 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C8} +\f0\fs24 \cf0 C3} VerticalPad 0 @@ -44634,14 +45225,14 @@ public} Head ID - 1343 + 1337 ID - 1355 + 1336 Points - {196.89400000000001, 212.24001000000001} - {172.894001, 212.24001000000001} + {369.51701060059867, 390.73999000001396} + {369.51684356775263, 359.12999999997908} Style @@ -44660,25 +45251,34 @@ public} Tail ID - 1354 + 1335 Bounds - {{198.39400000000001, 194.24001000000001}, {42.394001000000003, 36}} + {{334.50601, 391.73998999999998}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Courier + LucidaGrande Size - 12 + 10 ID - 1354 + 1335 Shape - RoundRect + Rectangle Style fill @@ -44686,11 +45286,11 @@ public} Color b - 0.837205 + 0.933333 g - 0.959184 + 0.933333 r - 0.826135 + 0.933333 shadow @@ -44710,18 +45310,18 @@ public} 0.382653 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C5} +\f0\fs20 \cf2 iss53} VerticalPad 0 @@ -44732,14 +45332,14 @@ public} Head ID - 1343 + 1339 ID - 1353 + 1334 Points - {150.1970345661363, 169.2100099999997} - {150.19701607172507, 192.74001000000047} + {369.40384174215808, 175.99998223046148} + {368.88000047758766, 263.87002665430771} Style @@ -44758,12 +45358,12 @@ public} Tail ID - 1352 + 1316 Bounds - {{122.093, 132.21001000000001}, {56.208098999999997, 36}} + {{334.50601, 139}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -44783,7 +45383,7 @@ public} 10 ID - 1352 + 1316 Shape Rectangle Style @@ -44839,146 +45439,14 @@ public} Head ID - 1345 - - ID - 1351 - Points - - {288.06749745888538, 309.78000629119498} - {288.12783510126229, 292.76999056447363} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1350 - - - - Class - LineGraphic - ID - 1349 - Points - - {58.105998999999997, 211.74001000000001} - {24, 211.74001000000001} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - Pattern - 1 - TailArrow - 0 - - - - - Class - LineGraphic - Head - - ID - 1344 - - ID - 1348 - Points - - {127.50026344025645, 212.07647781407516} - {103.4997365290937, 211.90355169615788} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1343 - - - - Class - LineGraphic - Head - - ID - 1343 - - ID - 1347 - Points - - {200.55042448121918, 256.5243711310705} - {169.23757664282556, 228.98563867813414} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1342 - - - - Class - LineGraphic - Head - - ID - 1342 + 1299 ID - 1346 + 1306 Points - {265.50000000000057, 273.27000988782379} - {242.28800099999881, 273.27000988782379} + {265.87, 283.37} + {239.712491, 283.37} Style @@ -44988,8 +45456,6 @@ public} FilledArrow Legacy - LineType - 1 TailArrow 0 @@ -44997,23 +45463,23 @@ public} Tail ID - 1345 + 1304 Bounds - {{267, 255.27000000000001}, {42.394001000000003, 36}} + {{267.37, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1345 + 1304 Shape RoundRect Style @@ -45054,92 +45520,62 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C4} +\f0\fs24 \cf0 C2} VerticalPad 0 - Bounds - {{59.605998999999997, 193.74001000000001}, {42.394001000000003, 36}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Font - Courier - Size - 12 + ID + 1302 ID - 1344 - Shape - RoundRect + 1303 + Points + + {188.55499000000003, 283.37} + {162.39750099999998, 283.37} + Style - fill - - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - - - shadow - - Draws - NO - stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 C1} - VerticalPad - 0 + ID + 1299 Bounds - {{129, 194.24001000000001}, {42.394001000000003, 36}} + {{112.73999999999999, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1343 + 1302 Shape RoundRect Style @@ -45180,29 +45616,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C2} +\f0\fs24 \cf0 C0} VerticalPad 0 Bounds - {{198.39400000000001, 255.27000000000001}, {42.394001000000003, 36}} + {{190.05499, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1342 + 1299 Shape RoundRect Style @@ -45243,11 +45679,11 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C3} +\f0\fs24 \cf0 C1} VerticalPad 0 @@ -45256,7 +45692,7 @@ public} GridInfo HPages - 1 + 2 KeepToScale Layers @@ -45291,6 +45727,8 @@ public} Orientation 2 + OutlineStyle + Basic PrintOnePage RowAlign @@ -45298,11 +45736,11 @@ public} RowSpacing 36 SheetTitle - 0522 + branch-simple 5 UniqueID - 4 + 22 VPages - 1 + 2 ActiveLayerIndex @@ -45312,7 +45750,7 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {805, 732}} Class SolidGraphic ID @@ -45330,6 +45768,8 @@ public} 0 CanvasOrigin {0, 0} + CanvasSize + {805, 732} ColumnAlign 1 ColumnSpacing @@ -45344,14 +45784,14 @@ public} Head ID - 1365 + 1337 ID - 1372 + 1344 Points - {349.76575957980214, 173.85110118763882} - {338.28479066537903, 192.46335820054918} + {418.5, 339.63} + {395.09549100000004, 339.63} Style @@ -45370,34 +45810,25 @@ public} Tail ID - 1371 + 1343 Bounds - {{333.29001, 137}, {56.208098999999997, 36}} + {{420, 321.63}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Helvetica Size - 10 + 12 ID - 1371 + 1343 Shape - Rectangle + RoundRect Style fill @@ -45405,11 +45836,11 @@ public} Color b - 0.933333 + 0.837205 g - 0.933333 + 0.959184 r - 0.933333 + 0.826135 shadow @@ -45429,7 +45860,7 @@ public} 0.382653 Width - 2 + 3 Text @@ -45437,39 +45868,65 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 develop} +\f0\fs24 \cf0 C5} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1304 + + ID + 1340 + Points + + {343.185, 283.37} + {317.02750100000003, 283.37} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1339 + + Bounds - {{252.989, 310.77999999999997}, {70.022201999999993, 36}} + {{344.685, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Helvetica Size - 10 + 12 ID - 1350 + 1339 Shape - Rectangle + RoundRect Style fill @@ -45477,11 +45934,11 @@ public} Color b - 0.933333 + 0.837205 g - 0.933333 + 0.959184 r - 0.933333 + 0.826135 shadow @@ -45501,7 +45958,7 @@ public} 0.382653 Width - 2 + 3 Text @@ -45509,10 +45966,10 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 ruby_client} +\f0\fs24 \cf0 C4} VerticalPad 0 @@ -45523,49 +45980,14 @@ public} Head ID - 1354 - - ID - 1369 - Points - - {303.69710119306808, 211.84626589308508} - {242.2878898071564, 212.1337542141153} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1365 - - - - Class - LineGraphic - Head - - ID - 1345 + 1304 ID - 1366 + 1338 Points - {314.42869915861064, 231.01441491691881} - {300.16229160124965, 253.99559507583302} + {347.46211953068348, 323.73625190268405} + {313.50337131125798, 299.26374835566662} Style @@ -45584,23 +46006,23 @@ public} Tail ID - 1365 + 1337 Bounds - {{305.19699000000003, 193.74001000000001}, {42.394001000000003, 36}} + {{345.43799000000001, 321.63}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1365 + 1337 Shape RoundRect Style @@ -45610,11 +46032,11 @@ public} Color b - 0.717203 + 0.837205 g - 0.806122 + 0.959184 r - 0.695816 + 0.826135 shadow @@ -45641,11 +46063,11 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C8} +\f0\fs24 \cf0 C3} VerticalPad 0 @@ -45659,11 +46081,11 @@ public} 1343 ID - 1355 + 1336 Points - {196.89400000000001, 212.24001000000001} - {172.894001, 212.24001000000001} + {444.07899839662917, 390.48001000001187} + {444.07884560101854, 359.12999999998215} Style @@ -45682,25 +46104,34 @@ public} Tail ID - 1354 + 1335 Bounds - {{198.39400000000001, 194.24001000000001}, {42.394001000000003, 36}} + {{409.06799000000001, 391.48000999999999}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Courier + LucidaGrande Size - 12 + 10 ID - 1354 + 1335 Shape - RoundRect + Rectangle Style fill @@ -45708,11 +46139,11 @@ public} Color b - 0.837205 + 0.933333 g - 0.959184 + 0.933333 r - 0.826135 + 0.933333 shadow @@ -45732,18 +46163,18 @@ public} 0.382653 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C5} +\f0\fs20 \cf2 iss53} VerticalPad 0 @@ -45754,14 +46185,14 @@ public} Head ID - 1365 + 1339 ID - 1353 + 1334 Points - {303.02231290831452, 173.85110213778066} - {314.50323392490645, 192.4633568866162} + {368.76399906999313, 231.99999999998829} + {368.76384486950263, 263.87000000001757} Style @@ -45780,12 +46211,12 @@ public} Tail ID - 1352 + 1316 Bounds - {{263.29001, 137}, {56.208098999999997, 36}} + {{333.75299000000001, 195}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -45805,7 +46236,7 @@ public} 10 ID - 1352 + 1316 Shape Rectangle Style @@ -45861,14 +46292,14 @@ public} Head ID - 1345 + 1299 ID - 1351 + 1306 Points - {288.06749745888538, 309.78000629119498} - {288.12783510126229, 292.76999056447363} + {265.87, 283.37} + {239.712491, 283.37} Style @@ -45878,8 +46309,6 @@ public} FilledArrow Legacy - LineType - 1 TailArrow 0 @@ -45887,170 +46316,38 @@ public} Tail ID - 1350 + 1304 + Bounds + {{267.37, 265.37}, {48.157501000000003, 36}} Class - LineGraphic + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 12 + ID - 1349 - Points - - {58.105998999999997, 211.74001000000001} - {24, 211.74001000000001} - + 1304 + Shape + RoundRect Style - stroke + fill - HeadArrow - FilledArrow - Legacy - - LineType - 1 - Pattern - 1 - TailArrow - 0 - - - - - Class - LineGraphic - Head - - ID - 1344 - - ID - 1348 - Points - - {127.50026344025645, 212.07647781407516} - {103.4997365290937, 211.90355169615788} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1343 - - - - Class - LineGraphic - Head - - ID - 1343 - - ID - 1347 - Points - - {200.55042448121918, 256.5243711310705} - {169.23757664282556, 228.98563867813414} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1342 - - - - Class - LineGraphic - Head - - ID - 1342 - - ID - 1346 - Points - - {265.50000000000057, 273.27000988782379} - {242.28800099999881, 273.27000988782379} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1345 - - - - Bounds - {{267, 255.27000000000001}, {42.394001000000003, 36}} - Class - ShapedGraphic - FontInfo - - Font - Courier - Size - 12 - - ID - 1345 - Shape - RoundRect - Style - - fill - - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -46076,92 +46373,62 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C4} +\f0\fs24 \cf0 C2} VerticalPad 0 - Bounds - {{59.605998999999997, 193.74001000000001}, {42.394001000000003, 36}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Font - Courier - Size - 12 + ID + 1302 ID - 1344 - Shape - RoundRect + 1303 + Points + + {188.55499000000003, 283.37} + {162.39750099999998, 283.37} + Style - fill - - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - - - shadow - - Draws - NO - stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 C1} - VerticalPad - 0 + ID + 1299 Bounds - {{129, 194.24001000000001}, {42.394001000000003, 36}} + {{112.73999999999999, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1343 + 1302 Shape RoundRect Style @@ -46202,29 +46469,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C2} +\f0\fs24 \cf0 C0} VerticalPad 0 Bounds - {{198.39400000000001, 255.27000000000001}, {42.394001000000003, 36}} + {{190.05499, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1342 + 1299 Shape RoundRect Style @@ -46265,11 +46532,11 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C3} +\f0\fs24 \cf0 C1} VerticalPad 0 @@ -46278,7 +46545,7 @@ public} GridInfo HPages - 1 + 2 KeepToScale Layers @@ -46313,6 +46580,8 @@ public} Orientation 2 + OutlineStyle + Basic PrintOnePage RowAlign @@ -46320,11 +46589,11 @@ public} RowSpacing 36 SheetTitle - 0523 + branch-simple 6 UniqueID - 6 + 23 VPages - 1 + 2 ActiveLayerIndex @@ -46334,7 +46603,7 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {805, 732}} Class SolidGraphic ID @@ -46352,6 +46621,8 @@ public} 0 CanvasOrigin {0, 0} + CanvasSize + {805, 732} ColumnAlign 1 ColumnSpacing @@ -46366,14 +46637,14 @@ public} Head ID - 1390 + 1343 ID - 1399 + 1347 Points - {224.88903899107314, 325.68720033546595} - {206.57503624644849, 325.54774348228426} + {477.75421646373553, 302.48133912763745} + {461.40328507785188, 320.51866088845594} Style @@ -46392,7 +46663,7 @@ public} Tail ID - 1382 + 1345 @@ -46401,14 +46672,14 @@ public} Head ID - 1388 + 1339 ID - 1398 + 1346 Points - {259.51001034514627, 278.28254144168665} - {238.49958428329955, 278.29999771515617} + {469.5, 283.37} + {394.34250100000003, 283.37} Style @@ -46427,42 +46698,70 @@ public} Tail ID - 1379 + 1345 + Bounds + {{471, 265.37}, {48.157501000000003, 36}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 1389 + Font + Helvetica + Size + 12 ID - 1397 - Points - - {160.93300000000198, 325.37396147316269} - {141.14260099999703, 325.37396147316269} - + 1345 + Shape + RoundRect Style + fill + + Color + + b + 0.762596 + g + 0.857143 + r + 0.739855 + + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 - Tail + Text - ID - 1390 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 C6} + VerticalPad + 0 @@ -46471,14 +46770,14 @@ public} Head ID - 1387 + 1337 ID - 1396 + 1344 Points - {192.85699000000145, 278.31896999999998} - {164.50329099999811, 278.31896999999998} + {418.5, 339.63} + {395.09549100000004, 339.63} Style @@ -46497,110 +46796,70 @@ public} Tail ID - 1388 + 1343 + Bounds + {{420, 321.63}, {48.157501000000003, 36}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 1343 + Font + Helvetica + Size + 12 ID - 1395 - Points - - {112.44646811922426, 311.3931288308674} - {69, 208} - {134.02000147355167, 106.55168375134612} - + 1343 + Shape + RoundRect Style - stroke + fill - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + - - Tail - - ID - 1389 - - - - Class - LineGraphic - Head - - ID - 1343 - - ID - 1394 - Points - - {138.15943415487277, 264.3982639914646} - {108, 208} - {138.65572596279043, 106.72447263259417} - - Style - - stroke + shadow - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 + Draws + NO - - Tail - - ID - 1387 - - - - Class - LineGraphic - Head - - ID - 1384 - - ID - 1393 - Points - - {291.91103298466294, 230.97776832716411} - {268.45204206306539, 231.13682462964275} - - Style - stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 - Tail + Text - ID - 1380 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 C5} + VerticalPad + 0 @@ -46609,14 +46868,14 @@ public} Head ID - 1383 + 1304 ID - 1392 + 1340 Points - {230.6530000000019, 231.26495} - {202.29930099999885, 231.26495} + {343.185, 283.37} + {317.02750100000003, 283.37} Style @@ -46635,57 +46894,23 @@ public} Tail ID - 1384 - - - - Class - LineGraphic - Head - - ID - 1343 - - ID - 1391 - Points - - {169.27356797027039, 217.80277019903482} - {148, 197.52901} - {143.58888826198682, 106.787033819919} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 - - - Tail - - ID - 1383 + 1339 Bounds - {{162.43299999999999, 312.77600000000001}, {42.642600999999999, 25.195900000000002}} + {{344.685, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1390 + 1339 Shape RoundRect Style @@ -46726,218 +46951,64 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C12} - VerticalPad - 0 - - - - Bounds - {{97, 312.77600000000001}, {42.642600999999999, 25.195900000000002}} - Class - ShapedGraphic - FontInfo - - Font - Courier - Size - 12 - - ID - 1389 - Shape - RoundRect - Style - - fill - - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 C11} - VerticalPad - 0 - - - - Bounds - {{194.35699, 265.72100999999998}, {42.642600999999999, 25.195900000000002}} - Class - ShapedGraphic - FontInfo - - Font - Courier - Size - 12 - - ID - 1388 - Shape - RoundRect - Style - - fill - - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 C10} +\f0\fs24 \cf0 C4} VerticalPad 0 - Bounds - {{128.20399, 265.72100999999998}, {34.799301, 25.195900000000002}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Font - Courier - Size - 12 + ID + 1304 ID - 1387 - Shape - RoundRect + 1338 + Points + + {347.46211953068348, 323.73625190268405} + {313.50337131125798, 299.26374835566662} + Style - fill - - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - - - shadow - - Draws - NO - stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 C9} - VerticalPad - 0 + ID + 1337 Bounds - {{232.15299999999999, 218.66701}, {34.799301, 25.195900000000002}} + {{345.43799000000001, 321.63}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1384 + 1337 Shape RoundRect Style @@ -46978,81 +47049,53 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C8} +\f0\fs24 \cf0 C3} VerticalPad 0 - Bounds - {{166, 218.66701}, {34.799301, 25.195900000000002}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Font - Courier - Size - 12 + ID + 1343 ID - 1383 - Shape - RoundRect + 1336 + Points + + {444.07899198929869, 385.95999000001359} + {444.07885217581833, 359.12999999997959} + Style - fill - - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - - - shadow - - Draws - NO - stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 C7} - VerticalPad - 0 + ID + 1335 Bounds - {{225.88901000000001, 312.77600000000001}, {85.697997999999998, 26.490200000000002}} + {{409.06799000000001, 386.95999}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -47072,7 +47115,7 @@ public} 10 ID - 1382 + 1335 Shape Rectangle Style @@ -47117,86 +47160,49 @@ public} {\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 ps/blame} +\f0\fs20 \cf2 iss53} VerticalPad 0 - Bounds - {{292.91100999999998, 217.37299999999999}, {104.09399999999999, 26.490200000000002}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Color - - b - 0.8 - g - 0.8 - r - 0.8 - - Font - LucidaGrande - Size - 10 + ID + 1345 ID - 1380 - Shape - Rectangle + 1334 + Points + + {495.07898892320958, 238.99999999998556} + {495.07885531006337, 263.87000000002166} + Style - fill - - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - - - shadow - - Draws - NO - stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs20 \cf2 db/push-cleanup} - VerticalPad - 0 + ID + 1316 Bounds - {{260.51001000000002, 265.00101000000001}, {85.697997999999998, 26.490200000000002}} + {{460.06799000000001, 202}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -47216,7 +47222,7 @@ public} 10 ID - 1379 + 1316 Shape Rectangle Style @@ -47261,7 +47267,7 @@ public} {\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 js/notes} +\f0\fs20 \cf2 master} VerticalPad 0 @@ -47272,15 +47278,14 @@ public} Head ID - 1343 + 1299 ID - 1378 + 1306 Points - {193.49194673559552, 178.78953767571369} - {176, 172.90700000000001} - {148.67353646545871, 106.67541709153137} + {265.87, 283.37} + {239.712491, 283.37} Style @@ -47297,34 +47302,25 @@ public} Tail ID - 1373 + 1304 Bounds - {{321.26801, 172.334}, {141, 26.490200000000002}} + {{267.37, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Helvetica Size - 10 + 12 ID - 1377 + 1304 Shape - Rectangle + RoundRect Style fill @@ -47332,11 +47328,11 @@ public} Color b - 0.933333 + 0.837205 g - 0.933333 + 0.959184 r - 0.933333 + 0.826135 shadow @@ -47356,7 +47352,7 @@ public} 0.382653 Width - 2 + 3 Text @@ -47364,10 +47360,10 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 jk/clone-post-checkout} +\f0\fs24 \cf0 C2} VerticalPad 0 @@ -47378,49 +47374,14 @@ public} Head ID - 1374 - - ID - 1376 - Points - - {320.268026153314, 185.17269689226575} - {296.80912907301598, 185.03935744007936} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1377 - - - - Class - LineGraphic - Head - - ID - 1373 + 1302 ID - 1375 + 1303 Points - {259.01001000000002, 184.93195} - {230.65629100000001, 184.93195} + {188.55499000000003, 283.37} + {162.39750099999998, 283.37} Style @@ -47430,8 +47391,6 @@ public} FilledArrow Legacy - LineType - 1 TailArrow 0 @@ -47439,23 +47398,23 @@ public} Tail ID - 1374 + 1299 Bounds - {{260.51001000000002, 172.334}, {34.799301, 25.195900000000002}} + {{112.73999999999999, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1374 + 1302 Shape RoundRect Style @@ -47496,29 +47455,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C6} +\f0\fs24 \cf0 C0} VerticalPad 0 Bounds - {{194.35699, 172.334}, {34.799301, 25.195900000000002}} + {{190.05499, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1373 + 1299 Shape RoundRect Style @@ -47559,54 +47518,141 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C5} +\f0\fs24 \cf0 C1} VerticalPad 0 + + GridInfo + + HPages + 2 + KeepToScale + + Layers + - Bounds - {{346.21399000000002, 126}, {98, 26.490200000000002}} - Class - ShapedGraphic - FontInfo - - Color - - b - 0.8 - g - 0.8 - r - 0.8 - - Font - LucidaGrande - Size - 10 - - ID - 1350 - Shape - Rectangle - Style - - fill - - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + OutlineStyle + Basic + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + branch-simple 8 + UniqueID + 25 + VPages + 2 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {805, 732}} + Class + SolidGraphic + ID + 2 + Style + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + CanvasSize + {805, 732} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + + + Bounds + {{301.53899999999999, 295.81400000000002}, {133, 27}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Color + + w + 0 + Font + Helvetica + Size + 14 + + ID + 2015 + Line + + ID + 2014 + Position + 0.49618315696716309 + RotationType + 0 + + Shape + Rectangle + Style + shadow Draws @@ -47614,46 +47660,32 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 + Draws + NO Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 tv/rebase-stat} - VerticalPad - 0 +\f0\fs28 \cf0 Checkins over Time} + Wrap + NO Class LineGraphic - Head - - ID - 1343 - ID - 1353 + 2014 Points - {142.9032400983894, 62.490199999910487} - {142.9034555513702, 78.592903000143423} + {108.039, 309.31400000000002} + {632.03899999999999, 309.31400000000002} Style @@ -47667,53 +47699,47 @@ public} 1 TailArrow 0 + Width + 2 - Tail - - ID - 1352 - Bounds - {{114.79900000000001, 35}, {56.208098999999997, 26.490200000000002}} + {{303.53899999999999, 9.4784001999999994}, {133, 27}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Color - b - 0.8 - g - 0.8 - r - 0.8 + w + 0 Font - LucidaGrande + Helvetica Size - 10 + 14 ID - 1352 + 2013 + Line + + ID + 2012 + Position + 0.49618315696716309 + RotationType + 0 + Shape Rectangle Style - fill - - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - - shadow Draws @@ -47721,76 +47747,32 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 + Draws + NO Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 master} - VerticalPad - 0 - - - - Class - LineGraphic - Head - - ID - 1345 - - ID - 1351 - Points - - {345.21401492420267, 138.89207656119135} - {322.45301023455409, 138.73137311815762} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1350 +\f0\fs28 \cf0 Checkins over Time} + Wrap + NO Class LineGraphic ID - 1349 + 2012 Points - {59.105999000003244, 93.337963694817063} - {19, 93.337997000000001} + {110.039, 22.978399} + {634.03899999999999, 22.978399} Style @@ -47802,136 +47784,153 @@ public} LineType 1 - Pattern - 1 TailArrow 0 + Width + 2 - Tail - - ID - 1344 - + Bounds + {{551.41301999999996, 497.37099999999998}, {89.252196999999995, 36}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 1344 + Font + Helvetica + Size + 12 ID - 1348 - Points - - {124.00456019869044, 92.879295045718479} - {96.904739802956499, 93.149506231154291} - + 2006 + Shape + RoundRect Style - stroke + fill - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + + shadow + + Draws + NO - - Tail - - ID - 1343 - - - - Class - LineGraphic - Head - - ID - 1343 - - ID - 1347 - Points - - {218.51726951670096, 137.55418637798789} - {190.40100000000001, 136} - {157.4340882464727, 105.94003155334926} - - Style - stroke - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 - Tail + Text - ID - 1342 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 C3} + VerticalPad + 0 + Bounds + {{551.41301999999996, 445.11899}, {89.252196999999995, 36}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 1342 + Font + Helvetica + Size + 12 ID - 1346 - Points - - {284.65399000000002, 138.59795} - {256.29930100000001, 138.59795} - + 2005 + Shape + RoundRect Style + fill + + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 - Tail + Text - ID - 1345 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 B2} + VerticalPad + 0 Bounds - {{286.15399000000002, 126}, {34.799301, 25.195900000000002}} + {{551.41301999999996, 392.86599999999999}, {89.252296000000001, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1345 + 2004 Shape RoundRect Style @@ -47941,11 +47940,11 @@ public} Color b - 0.837205 + 0.885418 g 0.959184 r - 0.826135 + 0.880584 shadow @@ -47964,37 +47963,39 @@ public} r 0.382653 + Pattern + 2 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C4} +\f0\fs24 \cf0 A2} VerticalPad 0 Bounds - {{60.605998999999997, 80.739998}, {34.799301, 25.195900000000002}} + {{439.41298999999998, 497.37099999999998}, {89.252196999999995, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1344 + 2003 Shape RoundRect Style @@ -48004,11 +48005,11 @@ public} Color b - 0.837205 + 0.885418 g 0.959184 r - 0.826135 + 0.880584 shadow @@ -48027,37 +48028,39 @@ public} r 0.382653 + Pattern + 2 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C1} +\f0\fs24 \cf0 C2} VerticalPad 0 Bounds - {{125.504, 80.092903000000007}, {34.799301, 25.195900000000002}} + {{439.41298999999998, 445.11899}, {89.252196999999995, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1343 + 2002 Shape RoundRect Style @@ -48098,29 +48101,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C2} +\f0\fs24 \cf0 B1} VerticalPad 0 Bounds - {{220, 126}, {34.799301, 25.195900000000002}} + {{439.41298999999998, 392.86599999999999}, {89.252296000000001, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1342 + 2001 Shape RoundRect Style @@ -48161,196 +48164,94 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C3} +\f0\fs24 \cf0 A2} VerticalPad 0 - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - - Lock - NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 2 - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - 0524 - UniqueID - 7 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 553}} - Class - SolidGraphic - ID - 2 - Style - - stroke - - Draws - NO - - - - BaseZoom - 0 - CanvasOrigin - {0, 0} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - + Bounds + {{327.41298999999998, 497.37099999999998}, {89.252196999999995, 36}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 1410 + Font + Helvetica + Size + 12 ID - 1418 - Points - - {575.00003695118733, 187.87630391545082} - {551.285607690608, 188.08017419085451} - + 2000 + Shape + RoundRect Style - stroke + fill - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + + shadow + + Draws + NO - - Tail - - ID - 1416 - - - - Class - LineGraphic - Head - - ID - 1403 - - ID - 1417 - Points - - {575.00003698666319, 233.70977599999512} - {551.22312270105374, 233.50527044293423} - - Style - stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 - Tail + Text - ID - 1415 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 C2} + VerticalPad + 0 Bounds - {{576, 174.381}, {56.208098999999997, 26.490200000000002}} + {{327.41298999999998, 445.11899}, {89.252196999999995, 36}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Helvetica Size - 10 + 12 ID - 1416 + 1999 Shape - Rectangle + RoundRect Style fill @@ -48358,11 +48259,11 @@ public} Color b - 0.933333 + 0.885418 g - 0.933333 + 0.959184 r - 0.933333 + 0.880584 shadow @@ -48381,6 +48282,8 @@ public} r 0.382653 + Pattern + 2 Width 2 @@ -48390,39 +48293,30 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 pu} +\f0\fs24 \cf0 B} VerticalPad 0 Bounds - {{576, 220.715}, {56.208098999999997, 26.490200000000002}} + {{327.41298999999998, 392.86599999999999}, {89.252296000000001, 36}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Helvetica Size - 10 + 12 ID - 1415 + 1998 Shape - Rectangle + RoundRect Style fill @@ -48430,11 +48324,11 @@ public} Color b - 0.933333 + 0.885418 g - 0.933333 + 0.959184 r - 0.933333 + 0.880584 shadow @@ -48453,6 +48347,8 @@ public} r 0.382653 + Pattern + 2 Width 2 @@ -48462,101 +48358,28 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 next} +\f0\fs24 \cf0 A1} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 1409 - - ID - 1414 - Points - - {506.43799000000143, 188.27296000000001} - {488.34830099999772, 188.27296000000001} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1410 - - - - Class - LineGraphic - Head - - ID - 1343 - - ID - 1413 - Points - - {443.50001292434291, 188.24642732444889} - {235.15299999999999, 188} - {161.30900536794388, 209.87554713440119} - - Style - - stroke - - HeadArrow - FilledArrow - HopLines - - HopType - 1 - Legacy - - TailArrow - 0 - - - Tail - - ID - 1409 - - Bounds - {{507.93799000000001, 175.67500000000001}, {41.848300999999999, 25.195900000000002}} + {{215.41299000000001, 497.37099999999998}, {89.252196999999995, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1410 + 1997 Shape RoundRect Style @@ -48566,11 +48389,11 @@ public} Color b - 0.699046 + 0.837205 g - 0.785714 + 0.959184 r - 0.6782 + 0.826135 shadow @@ -48597,29 +48420,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C17} +\f0\fs24 \cf0 C1} VerticalPad 0 Bounds - {{445, 175.67500000000001}, {41.848300999999999, 25.195900000000002}} + {{215.41299000000001, 445.11899}, {89.252196999999995, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1409 + 1996 Shape RoundRect Style @@ -48629,11 +48452,11 @@ public} Color b - 0.699046 + 0.885418 g - 0.785714 + 0.959184 r - 0.6782 + 0.880584 shadow @@ -48652,141 +48475,102 @@ public} r 0.382653 + Pattern + 2 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C16} +\f0\fs24 \cf0 B} VerticalPad 0 + Bounds + {{215.41299000000001, 392.86599999999999}, {89.252296000000001, 36}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 1343 + Font + Helvetica + Size + 12 ID - 1406 - Points - - {380.5005619669999, 233.13788881159931} - {235.15299999999999, 232} - {161.61832695545547, 218.71021798660706} - + 1995 + Shape + RoundRect Style - stroke + fill - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + - - Tail - - ID - 1400 - - - - Class - LineGraphic - Head - - ID - 1402 - - ID - 1405 - Points - - {506.50000000000148, 233.31296} - {488.22380099999771, 233.31296} - - Style - - stroke + shadow - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - - Tail - - ID - 1403 - - - - Class - LineGraphic - Head - - ID - 1400 - - ID - 1404 - Points - - {443.50000000000142, 233.31296} - {425.22380099999771, 233.31296} - - Style - stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 - Tail + Text - ID - 1402 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 A1} + VerticalPad + 0 Bounds - {{508, 220.715}, {41.723801000000002, 25.195900000000002}} + {{551.22400000000005, 333.58999999999997}, {89.252296000000001, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1403 + 1982 Shape RoundRect Style @@ -48796,11 +48580,11 @@ public} Color b - 0.699046 + 0.646082 g - 0.785714 + 0.678687 r - 0.6782 + 1 shadow @@ -48827,29 +48611,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C15} +\f0\fs24 \cf0 Version 5} VerticalPad 0 Bounds - {{445, 220.715}, {41.723801000000002, 25.195900000000002}} + {{439.28699, 333.58999999999997}, {89.252296000000001, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1402 + 1981 Shape RoundRect Style @@ -48859,11 +48643,11 @@ public} Color b - 0.699046 + 0.646082 g - 0.785714 + 0.678687 r - 0.6782 + 1 shadow @@ -48890,29 +48674,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C14} +\f0\fs24 \cf0 Version 4} VerticalPad 0 Bounds - {{382, 220.715}, {41.723801000000002, 25.195900000000002}} + {{327.35001, 333.58999999999997}, {89.252296000000001, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1400 + 1980 Shape RoundRect Style @@ -48922,11 +48706,11 @@ public} Color b - 0.699046 + 0.646082 g - 0.785714 + 0.678687 r - 0.6782 + 1 shadow @@ -48953,341 +48737,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C13} +\f0\fs24 \cf0 Version 3} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 1390 - - ID - 1399 - Points - - {334.74399000000005, 71.089975966720914} - {310.52560099999653, 71.089963797445989} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1382 - - - - Class - LineGraphic - Head - - ID - 1388 - - ID - 1398 - Points - - {362.87102292598172, 121.74302440424266} - {334.0171544987586, 121.93840907362211} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1379 - - - - Class - LineGraphic - Head - - ID - 1389 - - ID - 1397 - Points - - {264.88300000000362, 71.089966000000004} - {245.09260099999506, 71.089966000000004} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1390 - - - - Class - LineGraphic - Head - - ID - 1387 - - ID - 1396 - Points - - {288.37500000000142, 122.09296000000001} - {260.02080099999773, 122.09296000000001} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1388 - - - - Class - LineGraphic - Head - - ID - 1343 - - ID - 1395 - Points - - {200.55211983415774, 78.404713482921878} - {178, 86} - {146.71527042470825, 201.28235841955174} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 - - - Tail - - ID - 1389 - - - - Class - LineGraphic - Head - - ID - 1343 - - ID - 1394 - Points - - {215.84496210552052, 127.41270837254197} - {186, 134.69099} - {150.34364460964159, 201.40708397817136} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 - - - Tail - - ID - 1387 - - - - Class - LineGraphic - Head - - ID - 1384 - - ID - 1393 - Points - - {294.91103298410519, 381.09576396276231} - {271.45204207804585, 381.25481833506234} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1380 - - - - Class - LineGraphic - Head - - ID - 1383 - - ID - 1392 - Points - - {233.65300000000553, 381.38297} - {205.29930099999302, 381.38297} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1384 - - - - Class - LineGraphic - Head - - ID - 1343 - - ID - 1391 - Points - - {177.70024339154733, 367.5143014563925} - {148, 320.16599000000002} - {143.58888902652544, 229.42413081597715} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 - - - Tail - - ID - 1383 - - Bounds - {{266.38299999999998, 58.492001000000002}, {42.642600999999999, 25.195900000000002}} + {{215.41299000000001, 333.58999999999997}, {89.252296000000001, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1390 + 1979 Shape RoundRect Style @@ -49297,11 +48769,11 @@ public} Color b - 0.837205 + 0.646082 g - 0.959184 + 0.678687 r - 0.826135 + 1 shadow @@ -49328,29 +48800,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C12} +\f0\fs24 \cf0 Version 2} VerticalPad 0 Bounds - {{200.94999999999999, 58.492001000000002}, {42.642600999999999, 25.195900000000002}} + {{103.476, 333.58999999999997}, {89.252296000000001, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1389 + 1978 Shape RoundRect Style @@ -49360,11 +48832,11 @@ public} Color b - 0.837205 + 0.646082 g - 0.959184 + 0.678687 r - 0.826135 + 1 shadow @@ -49391,29 +48863,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C11} +\f0\fs24 \cf0 Version 1} VerticalPad 0 Bounds - {{289.875, 109.495}, {42.642600999999999, 25.195900000000002}} + {{103.476, 497.37099999999998}, {89.252196999999995, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1388 + 1977 Shape RoundRect Style @@ -49454,29 +48926,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C10} +\f0\fs24 \cf0 C} VerticalPad 0 Bounds - {{216.797, 109.495}, {41.723801000000002, 25.195900000000002}} + {{103.476, 445.11899}, {89.252196999999995, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1387 + 1976 Shape RoundRect Style @@ -49517,29 +48989,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C9} +\f0\fs24 \cf0 B} VerticalPad 0 Bounds - {{235.15299999999999, 368.78500000000003}, {34.799301, 25.195900000000002}} + {{103.476, 392.86599999999999}, {89.252296000000001, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1384 + 1974 Shape RoundRect Style @@ -49580,29 +49052,95 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C8} +\f0\fs24 \cf0 A} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1962 + + ID + 1972 + Points + + {194.22819699999997, 178.78399999999999} + {455.50799999999998, 178.78399999999999} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + + + Tail + + ID + 1947 + + + + Class + LineGraphic + Head + + ID + 1970 + + ID + 1971 + Points + + {400.57099999999997, 231.036} + {567.50800000000004, 231.036} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + + + Tail + + ID + 1968 + + Bounds - {{169, 368.78500000000003}, {34.799301, 25.195900000000002}} + {{569.00800000000004, 213.036}, {54.062900999999997, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1383 + 1970 Shape RoundRect Style @@ -49612,11 +49150,11 @@ public} Color b - 0.837205 - g 0.959184 + g + 0.91505 r - 0.826135 + 0.880584 shadow @@ -49643,40 +49181,65 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C7} +\f0\fs24 \cf0 \uc0\u916 +\f1 3} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1968 + + ID + 1969 + Points + + {288.57100000000003, 231.036} + {343.50799999999998, 231.036} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + + + Tail + + ID + 1967 + + Bounds - {{335.74399, 57.844898000000001}, {85.697997999999998, 26.490200000000002}} + {{345.00799999999998, 213.036}, {54.063000000000002, 36}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Helvetica Size - 10 + 12 ID - 1382 + 1968 Shape - Rectangle + RoundRect Style fill @@ -49684,11 +49247,11 @@ public} Color b - 0.933333 + 0.959184 g - 0.933333 + 0.91505 r - 0.933333 + 0.880584 shadow @@ -49708,47 +49271,39 @@ public} 0.382653 Width - 2 + 3 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 ps/blame} +\f0\fs24 \cf0 \uc0\u916 +\f1 2} VerticalPad 0 Bounds - {{295.91100999999998, 367.49099999999999}, {104.09399999999999, 26.490200000000002}} + {{233.00800000000001, 213.036}, {54.063000000000002, 36}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Helvetica Size - 10 + 12 ID - 1380 + 1967 Shape - Rectangle + RoundRect Style fill @@ -49756,11 +49311,11 @@ public} Color b - 0.933333 + 0.959184 g - 0.933333 + 0.91505 r - 0.933333 + 0.880584 shadow @@ -49780,47 +49335,100 @@ public} 0.382653 Width - 2 + 3 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 db/push-cleanup} +\f0\fs24 \cf0 \uc0\u916 +\f1 1} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1967 + + ID + 1966 + Points + + {194.22800000000001, 231.036} + {231.50800000000007, 231.036} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + + + + + Class + LineGraphic + Head + + ID + 1964 + + ID + 1965 + Points + + {512.57090100000005, 178.78399999999999} + {567.50800000000004, 178.78399999999999} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + + + Tail + + ID + 1962 + + Bounds - {{363.87099999999998, 108.20099999999999}, {85.697997999999998, 26.490200000000002}} + {{569.00800000000004, 160.78399999999999}, {54.062900999999997, 36}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Helvetica Size - 10 + 12 ID - 1379 + 1964 Shape - Rectangle + RoundRect Style fill @@ -49828,11 +49436,11 @@ public} Color b - 0.933333 + 0.959184 g - 0.933333 + 0.91505 r - 0.933333 + 0.880584 shadow @@ -49852,81 +49460,39 @@ public} 0.382653 Width - 2 + 3 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 js/notes} +\f0\fs24 \cf0 \uc0\u916 +\f1 2} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 1343 - - ID - 1378 - Points - - {201.35381618193065, 321.38800287276672} - {176, 295.54401000000001} - {148.6735426330483, 229.31251387276578} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 - - - Tail - - ID - 1373 - - Bounds - {{324.26801, 322.452}, {98, 26.490200000000002}} + {{457.00799999999998, 160.78399999999999}, {54.062900999999997, 36}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Helvetica Size - 10 + 12 ID - 1377 + 1962 Shape - Rectangle + RoundRect Style fill @@ -49934,11 +49500,11 @@ public} Color b - 0.933333 + 0.959184 g - 0.933333 + 0.91505 r - 0.933333 + 0.880584 shadow @@ -49958,18 +49524,19 @@ public} 0.382653 Width - 2 + 3 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 jk/post-checkout} +\f0\fs24 \cf0 \uc0\u916 +\f1 1} VerticalPad 0 @@ -49980,14 +49547,14 @@ public} Head ID - 1374 + 1956 ID - 1376 + 1957 Points - {323.26803454886192, 335.34674488144327} - {299.80903446188518, 335.18236518560269} + {288.57100000000003, 126.53100000000001} + {455.50799999999998, 126.53100000000001} Style @@ -49997,8 +49564,6 @@ public} FilledArrow Legacy - LineType - 1 TailArrow 0 @@ -50006,58 +49571,87 @@ public} Tail ID - 1377 + 1301 + Bounds + {{457.00799999999998, 108.53100000000001}, {54.062900999999997, 36}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 1373 + Font + Helvetica + Size + 12 ID - 1375 - Points - - {262.01001000000122, 335.04996} - {233.65629099999811, 335.04996} - + 1956 + Shape + RoundRect Style + fill + + Color + + b + 0.959184 + g + 0.91505 + r + 0.880584 + + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 - Tail + Text - ID - 1374 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \uc0\u916 +\f1 2} + VerticalPad + 0 Bounds - {{263.51001000000002, 322.452}, {34.799301, 25.195900000000002}} + {{551.22400000000005, 49.2547}, {89.252296000000001, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1374 + 1955 Shape RoundRect Style @@ -50067,11 +49661,11 @@ public} Color b - 0.837205 + 0.646082 g - 0.959184 + 0.678687 r - 0.826135 + 1 shadow @@ -50098,29 +49692,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C6} +\f0\fs24 \cf0 Version 5} VerticalPad 0 Bounds - {{197.35699, 322.452}, {34.799301, 25.195900000000002}} + {{439.28699, 49.2547}, {89.252296000000001, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1373 + 1954 Shape RoundRect Style @@ -50130,11 +49724,11 @@ public} Color b - 0.837205 + 0.646082 g - 0.959184 + 0.678687 r - 0.826135 + 1 shadow @@ -50161,40 +49755,31 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C5} +\f0\fs24 \cf0 Version 4} VerticalPad 0 Bounds - {{349.21399000000002, 276.11801000000003}, {85.697997999999998, 26.490200000000002}} + {{327.35001, 49.2547}, {89.252296000000001, 36}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Helvetica Size - 10 + 12 ID - 1350 + 1953 Shape - Rectangle + RoundRect Style fill @@ -50202,11 +49787,11 @@ public} Color b - 0.933333 + 0.646082 g - 0.933333 + 0.678687 r - 0.933333 + 1 shadow @@ -50226,7 +49811,7 @@ public} 0.382653 Width - 2 + 3 Text @@ -50234,74 +49819,93 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 tv/rebase-stat} +\f0\fs24 \cf0 Version 3} VerticalPad 0 + Bounds + {{215.41299000000001, 49.2547}, {89.252296000000001, 36}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 1343 + Font + Helvetica + Size + 12 ID - 1353 - Points - - {119.11177773578561, 181.90290102687885} - {133.06661782514786, 201.50796331947444} - + 1952 + Shape + RoundRect Style + fill + + Color + + b + 0.646082 + g + 0.678687 + r + 1 + + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 - Tail + Text - ID - 1352 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Version 2} + VerticalPad + 0 Bounds - {{81, 154.59800999999999}, {56.208098999999997, 26.490200000000002}} + {{103.476, 49.2547}, {89.252296000000001, 36}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Helvetica Size - 10 + 12 ID - 1352 + 1951 Shape - Rectangle + RoundRect Style fill @@ -50309,11 +49913,11 @@ public} Color b - 0.933333 + 0.646082 g - 0.933333 + 0.678687 r - 0.933333 + 1 shadow @@ -50333,7 +49937,7 @@ public} 0.382653 Width - 2 + 3 Text @@ -50341,199 +49945,91 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 master} +\f0\fs24 \cf0 Version 1} VerticalPad 0 + Bounds + {{103.476, 213.036}, {89.252196999999995, 36}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 1345 + Font + Helvetica + Size + 12 ID - 1351 - Points - - {348.21401863726663, 289.03125412743816} - {325.45296830994505, 288.85899493516268} - + 1948 + Shape + RoundRect Style + fill + + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 - Tail + Text - ID - 1350 - - - - Class - LineGraphic - ID - 1349 - Points - - {59.105999000005021, 215.97496921814334} - {19, 215.97501} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - Pattern - 1 - TailArrow - 0 - - - Tail - - ID - 1344 - - - - Class - LineGraphic - Head - - ID - 1344 - - ID - 1348 - Points - - {124.00456003883777, 215.51636517047956} - {96.90473997890814, 215.78653781328745} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1343 - - - - Class - LineGraphic - Head - - ID - 1343 - - ID - 1347 - Points - - {223.4666806066096, 278.52915918956234} - {190.40100000000001, 258.63699000000003} - {157.43410962432461, 228.5771153125558} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 - - - Tail - - ID - 1342 - - - - Class - LineGraphic - Head - - ID - 1342 - - ID - 1346 - Points - - {287.65399000000122, 288.71597000000003} - {259.29930099999814, 288.71597000000003} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1345 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 File C} + VerticalPad + 0 Bounds - {{289.15399000000002, 276.11801000000003}, {34.799301, 25.195900000000002}} + {{103.476, 160.78399999999999}, {89.252196999999995, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1345 + 1947 Shape RoundRect Style @@ -50574,29 +50070,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C4} +\f0\fs24 \cf0 File B} VerticalPad 0 Bounds - {{60.605998999999997, 203.37700000000001}, {34.799301, 25.195900000000002}} + {{233.00800000000001, 108.53100000000001}, {54.063000000000002, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1344 + 1301 Shape RoundRect Style @@ -50606,11 +50102,11 @@ public} Color b - 0.837205 - g 0.959184 + g + 0.91505 r - 0.826135 + 0.880584 shadow @@ -50637,29 +50133,30 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C1} +\f0\fs24 \cf0 \uc0\u916 +\f1 1} VerticalPad 0 Bounds - {{125.504, 202.72999999999999}, {34.799301, 25.195900000000002}} + {{103.476, 108.53100000000001}, {89.252296000000001, 36}} Class ShapedGraphic FontInfo Font - Courier + Helvetica Size 12 ID - 1343 + 1303 Shape RoundRect Style @@ -50700,76 +50197,46 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C2} +\f0\fs24 \cf0 File A} VerticalPad 0 - Bounds - {{223, 276.11801000000003}, {34.799301, 25.195900000000002}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Font - Courier - Size - 12 + ID + 1301 ID - 1342 - Shape - RoundRect + 1304 + Points + + {194.22829599999997, 126.53100000000001} + {231.50800000000007, 126.53100000000001} + Style - fill - - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - - - shadow - - Draws - NO - stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 C3} - VerticalPad - 0 + ID + 1303 @@ -50778,26 +50245,21 @@ public} Head ID - 1403 + 2006 ID - 1408 + 2011 Points - {271.45229019621632, 381.3567691846124} - {529, 381} - {528.87508323846941, 247.41089934421669} + {595.87264709676219, 371.08999900156033} + {596.01661940351892, 495.87100099843963} Style stroke HeadArrow - FilledArrow - HopLines - - HopType - 1 + 0 Legacy TailArrow @@ -50807,7 +50269,7 @@ public} Tail ID - 1384 + 1982 @@ -50816,26 +50278,21 @@ public} Head ID - 1402 + 2003 ID - 1407 + 2010 Points - {299.80931059018405, 335.04484958511853} - {466, 335} - {465.88104669073903, 247.41089861670889} + {483.92813384627141, 371.08999955645891} + {484.02447716270979, 496.37100029569393} Style stroke HeadArrow - FilledArrow - HopLines - - HopType - 1 + 0 Legacy TailArrow @@ -50845,7 +50302,7 @@ public} Tail ID - 1374 + 1981 @@ -50854,26 +50311,21 @@ public} Head ID - 1400 + 2000 ID - 1401 + 2009 Points - {325.45222687229528, 288.97563028168793} - {400.005, 290} - {402.15149118263014, 247.40899867030225} + {371.98365059527225, 371.08999988927224} + {372.03159590489452, 495.87100011072772} Style stroke HeadArrow - FilledArrow - HopLines - - HopType - 1 + 0 Legacy TailArrow @@ -50883,7 +50335,7 @@ public} Tail ID - 1345 + 1980 @@ -50892,22 +50344,21 @@ public} Head ID - 1410 + 1997 ID - 1412 + 2008 Points - {310.52559964835092, 71.081443601468038} - {529, 71} - {528.87871325778553, 174.17500103642652} + {260.03913210645561, 371.08999999999992} + {260.03909439351401, 495.87099999999998} Style stroke HeadArrow - FilledArrow + 0 Legacy TailArrow @@ -50917,7 +50368,7 @@ public} Tail ID - 1390 + 1979 @@ -50926,22 +50377,21 @@ public} Head ID - 1409 + 1977 ID - 1411 + 2007 Points - {334.01759749284878, 122.0792472295731} - {466, 122} - {465.94028562577921, 174.17500098241206} + {148.1021421064556, 371.08999999999992} + {148.102104393514, 495.87099999999998} Style stroke HeadArrow - FilledArrow + 0 Legacy TailArrow @@ -50951,14 +50401,14 @@ public} Tail ID - 1388 + 1978 GridInfo HPages - 1 + 2 KeepToScale Layers @@ -50967,7 +50417,7 @@ public} Lock NO Name - Layer 1 + Tree Objects 1 Print YES View @@ -50992,7 +50442,9 @@ public} 0.0 Orientation - 2 + 1 + OutlineStyle + Basic PrintOnePage RowAlign @@ -51000,11 +50452,11 @@ public} RowSpacing 36 SheetTitle - 0525 + 104-5 UniqueID - 8 + 61 VPages - 1 + 2 ActiveLayerIndex @@ -51014,7 +50466,7 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {805, 732}} Class SolidGraphic ID @@ -51032,6 +50484,8 @@ public} 0 CanvasOrigin {0, 0} + CanvasSize + {805, 732} ColumnAlign 1 ColumnSpacing @@ -51040,70 +50494,32 @@ public} 1 in = 1.00000 in GraphicsList - - Class - LineGraphic - Head - - ID - 1343 - - ID - 1355 - Points - - {260.38043495199076, 156.05660139474634} - {237.83276417360094, 155.92339213288466} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1354 - - Bounds - {{261.88, 138.24001000000001}, {59.090198999999998, 36}} + {{136.33299, 269.33301}, {66, 17}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Courier + Helvetica Size 12 ID - 1354 + 1955 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -51112,105 +50528,53 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 f42c5} +\f0\fs28 \cf0 Stage files} VerticalPad 0 - - - Class - LineGraphic - Head - - ID - 1354 - - ID - 1353 - Points - - {291.42509144082641, 114} - {291.42509144082641, 136.74001000000001} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1352 - + Wrap + NO Bounds - {{256.41399999999999, 77}, {70.022201999999993, 36}} + {{309.83301, 357.33301}, {49, 17}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Helvetica Size - 10 + 12 ID - 1352 + 1941 Shape Rectangle Style fill - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - + Draws + NO shadow @@ -51219,92 +50583,143 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 master} +\f0\fs28 \cf0 Commit} VerticalPad 0 + Wrap + NO + Bounds + {{266.37, 328.25418757619212}, {158, 75.491698999999997}} Class - LineGraphic + ShapedGraphic Head ID - 1345 + 1934 + Position + 0.81825059652328491 ID - 1351 - Points - - {376.06309132493197, 259.22000000000008} - {376.06309132493197, 236.97999999999996} - - Style + 1929 + Shape + AdjustableArrow + ShapeData + ratio + 0.47493430972099304 + width + 45.920928955078125 + + Style + + fill + + Color + + b + 0.497307 + g + 0.504555 + r + 1 + + FillType + 2 + GradientAngle + 90 + GradientColor + + b + 0.304265 + g + 0.307897 + r + 0.788251 + + MiddleFraction + 0.4523809552192688 + + shadow + + Color + + a + 0.4 + b + 0 + g + 0 + r + 0 + + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0 + g + 0.0271458 + r + 0.689052 + Tail ID - 1350 + 1933 + Position + 0.81825059652328491 + TextRelativeArea + {{0.125, 0.25}, {0.75, 0.5}} + isConnectedShape + Bounds - {{341.05200000000002, 260.22000000000003}, {70.022201999999993, 36}} + {{109.36844274253311, 240.26193757557681}, {157.00155764700102, 75.491698999999997}} Class ShapedGraphic - FontInfo + Head - Color - - b - 0.8 - g - 0.8 - r - 0.8 - - Font - LucidaGrande - Size - 10 + ID + 1933 + Position + 0.50464338064193726 ID - 1350 + 30 + Rotation + 359.99429213883559 Shape - Rectangle + AdjustableArrow + ShapeData + + ratio + 0.47493430972099304 + width + 45.920928955078125 + Style fill @@ -51312,192 +50727,395 @@ public} Color b - 0.933333 + 0.497307 g - 0.933333 + 0.504555 r - 0.933333 + 1 + + FillType + 2 + GradientAngle + 90 + GradientColor + + b + 0.304265 + g + 0.307897 + r + 0.788251 + MiddleFraction + 0.4523809552192688 shadow - Draws - NO + Color + + a + 0.4 + b + 0 + g + 0 + r + 0 + stroke Color b - 0.382653 + 0 g - 0.382653 + 0.0271458 r - 0.382653 + 0.689052 - Width - 2 + + + Tail + + ID + 1932 + Position + 0.5015568733215332 + + TextRelativeArea + {{0.125, 0.25}, {0.75, 0.5}} + isConnectedShape + + + + Bounds + {{201.87, 171.69399999999999}, {129, 17}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 12 + + ID + 1950 + Line + + ID + 1933 + Position + 0.15609143674373627 + RotationType + 0 + + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 ruby_client} +\f0\fs28 \cf0 Checkout the project} VerticalPad 0 + Wrap + NO + Bounds + {{109.71720610765337, 143.25585460739526}, {314.65314317037104, 75.491698999999997}} Class - LineGraphic + ShapedGraphic + Head + + ID + 1932 + Position + 0.15244461596012115 + ID - 1349 - Points - - {91.106003000000001, 155.74001000000001} - {57, 155.74001000000001} - + 1949 + Rotation + 180.1207319741778 + Shape + AdjustableArrow + ShapeData + + ratio + 0.47493430972099304 + width + 45.920928955078125 + Style + fill + + Color + + b + 0.497307 + g + 0.504555 + r + 1 + + FillType + 2 + GradientAngle + 271 + GradientColor + + b + 0.304265 + g + 0.307897 + r + 0.788251 + + MiddleFraction + 0.4523809552192688 + + shadow + + Color + + a + 0.4 + b + 0 + g + 0 + r + 0 + + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - Pattern - 1 - TailArrow - 0 + Color + + b + 0 + g + 0.0271458 + r + 0.689052 + + Tail + + ID + 1934 + Position + 0.16015058755874634 + + TextRelativeArea + {{0.125, 0.25}, {0.75, 0.5}} + isConnectedShape + + Bounds + {{144.53399999999999, 163.93401}, {64, 17}} Class - LineGraphic - Head + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo - ID - 1344 + Font + Helvetica + Size + 12 ID - 1348 + 1940 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 stage files} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + ID + 1934 Points - {175.74300000000002, 155.74001000000001} - {153.19620199999997, 155.74001000000001} + {424.37, 136.39400000000001} + {424.37, 417} Style stroke + Color + + b + 0.52381 + g + 0.52381 + r + 0.52381 + HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 + Width + 3 - Tail - - ID - 1343 - Class LineGraphic - Head - - ID - 1343 - ID - 1347 + 1933 Points - {266.76508985866514, 199.49131085588417} - {231.44810726917677, 173.72870043721005} + {266.37, 136.39400000000001} + {266.37, 417} Style stroke + Color + + b + 0.52381 + g + 0.52381 + r + 0.52381 + HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 + Width + 3 - Tail - - ID - 1342 - Class LineGraphic - Head - - ID - 1342 - ID - 1346 + 1932 Points - {345.01801, 217.47999999999999} - {322.47019899999998, 217.47999999999999} + {109.87, 138.16299000000001} + {108.87, 417} Style stroke + Color + + b + 0.52381 + g + 0.52381 + r + 0.52381 + HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 + Width + 3 - Tail - - ID - 1345 - Bounds - {{346.51801, 199.47999999999999}, {59.090198999999998, 36}} + {{52.766998000000001, 61.967201000000003}, {112.206, 61.427101}} Class ShapedGraphic FontInfo Font - Courier + BryantPro-Bold Size - 12 + 16 ID - 1345 + 1927 Shape RoundRect Style @@ -51507,11 +51125,11 @@ public} Color b - 0.837205 + 0.742554 g - 0.959184 + 0.878307 r - 0.826135 + 0.771735 shadow @@ -51538,29 +51156,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 5ddae} +\f0\fs32 \cf0 Working Directory} VerticalPad 0 Bounds - {{92.606003000000001, 137.74001000000001}, {59.090198999999998, 36}} + {{210.767, 61.967201000000003}, {112.206, 61.427101}} Class ShapedGraphic FontInfo Font - Courier + BryantPro-Bold Size - 12 + 16 ID - 1344 + 1926 Shape RoundRect Style @@ -51570,11 +51188,11 @@ public} Color b - 0.837205 + 0.694025 g - 0.959184 + 1 r - 0.826135 + 0.958191 shadow @@ -51601,29 +51219,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 0b743} +\f0\fs32 \cf0 Staging Area} VerticalPad 0 Bounds - {{177.24299999999999, 137.74001000000001}, {59.090198999999998, 36}} + {{359.25299000000001, 61.967201000000003}, {131.233, 61.427101}} Class ShapedGraphic FontInfo Font - Courier + BryantPro-Bold Size - 12 + 16 ID - 1343 + 1924 Shape RoundRect Style @@ -51633,11 +51251,11 @@ public} Color b - 0.837205 + 0.918367 g - 0.959184 + 0.707088 r - 0.826135 + 0.542092 shadow @@ -51664,74 +51282,12 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 a6b4c} - VerticalPad - 0 - - - - Bounds - {{261.88, 199.47999999999999}, {59.090198999999998, 36}} - Class - ShapedGraphic - FontInfo - - Font - Courier - Size - 12 - - ID - 1342 - Shape - RoundRect - Style - - fill - - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 e43a6} +\f0\fs32 \cf0 Git Directory\ +(Repository)} VerticalPad 0 @@ -51740,7 +51296,7 @@ public} GridInfo HPages - 1 + 2 KeepToScale Layers @@ -51774,7 +51330,9 @@ public} 0.0 Orientation - 2 + 1 + OutlineStyle + Basic PrintOnePage RowAlign @@ -51782,11 +51340,11 @@ public} RowSpacing 36 SheetTitle - 0526 + 106 UniqueID - 9 + 62 VPages - 1 + 2 ActiveLayerIndex @@ -51796,7 +51354,7 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {805, 732}} Class SolidGraphic ID @@ -51814,6 +51372,8 @@ public} 0 CanvasOrigin {0, 0} + CanvasSize + {805, 732} ColumnAlign 1 ColumnSpacing @@ -51823,117 +51383,86 @@ public} GraphicsList + Bounds + {{317, 268}, {66, 17}} Class - LineGraphic - Head + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo - ID - 1356 + Font + Helvetica + Size + 12 ID - 1358 - Points - - {316.0851103392493, 199.49130990490198} - {351.40209034647745, 173.72870125942498} - + 1955 + Shape + Rectangle Style - stroke + fill - Color - - b - 0.734694 - g - 0.734694 - r - 0.734694 - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - Pattern - 11 - TailArrow - 0 - Width - 2 + Draws + NO + + shadow + + Draws + NO - - Tail - - ID - 1342 - - - - Class - LineGraphic - Head - - ID - 1354 - - ID - 1357 - Points - - {345.01743493357236, 155.92341796466647} - {322.46976418373072, 156.05662676102341} - - Style - stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - Tail + Text - ID - 1356 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 Stage files} + VerticalPad + 0 + Wrap + NO Bounds - {{346.517, 137.74001000000001}, {59.090198999999998, 36}} + {{173, 355.66599000000002}, {49, 17}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Courier + Helvetica Size 12 ID - 1356 + 1941 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -51942,83 +51471,145 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 a0a41} +\f0\fs28 \cf0 Commit} VerticalPad 0 + Wrap + NO + Bounds + {{109.05291478368096, 328.25244403779601}, {157.31708523490823, 75.491698999999997}} Class - LineGraphic + ShapedGraphic Head ID - 1343 + 1932 + Position + 0.81708520650863647 ID - 1355 - Points - - {260.38043495199076, 156.05660139474634} - {237.83276417360094, 155.92339213288466} - + 1929 + Rotation + 180.00124564727639 + Shape + AdjustableArrow + ShapeData + + ratio + 0.47493430972099304 + width + 45.920928955078125 + Style + fill + + Color + + b + 0.497307 + g + 0.504555 + r + 1 + + FillType + 2 + GradientAngle + 90 + GradientColor + + b + 0.304265 + g + 0.307897 + r + 0.788251 + + MiddleFraction + 0.4523809552192688 + + shadow + + Color + + a + 0.4 + b + 0 + g + 0 + r + 0 + + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0 + g + 0.0271458 + r + 0.689052 + Tail ID - 1354 + 1933 + Position + 0.81825047731399536 + TextRelativeArea + {{0.125, 0.25}, {0.75, 0.5}} + isConnectedShape + Bounds - {{261.88, 138.24001000000001}, {59.090198999999998, 36}} + {{266.36999999999824, 240.25413397723489}, {158.00000000000355, 75.491698999999997}} Class ShapedGraphic - FontInfo + Head - Font - Courier - Size - 12 + ID + 1933 + Position + 0.50464338064193726 ID - 1354 + 30 + Rotation + 180.00001213033002 Shape - RoundRect + AdjustableArrow + ShapeData + + ratio + 0.47493430972099304 + width + 45.920928955078125 + Style fill @@ -52026,119 +51617,102 @@ public} Color b - 0.837205 + 0.497307 g - 0.959184 + 0.504555 r - 0.826135 + 1 + + FillType + 2 + GradientAngle + 90 + GradientColor + + b + 0.304265 + g + 0.307897 + r + 0.788251 + MiddleFraction + 0.4523809552192688 shadow - - Draws - NO - - stroke Color + a + 0.4 b - 0.382653 + 0 g - 0.382653 + 0 r - 0.382653 + 0 - Width - 3 - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 f42c5} - VerticalPad - 0 - - - - Class - LineGraphic - Head - - ID - 1356 - - ID - 1353 - Points - - {376.06279154945651, 112.99999999986737} - {376.06241304241837, 136.24001000019393} - - Style - stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0 + g + 0.0271458 + r + 0.689052 + Tail ID - 1352 + 1934 + Position + 0.50464349985122681 + TextRelativeArea + {{0.125, 0.25}, {0.75, 0.5}} + isConnectedShape + Bounds - {{341.05200000000002, 76}, {70.022201999999993, 36}} + {{201.87, 173.69399999999999}, {129, 17}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Helvetica Size - 10 + 12 ID - 1352 + 1950 + Line + + ID + 1933 + Position + 0.16321820020675659 + RotationType + 0 + Shape Rectangle Style fill - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - + Draws + NO shadow @@ -52147,114 +51721,139 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 master} +\f0\fs28 \cf0 Checkout the project} VerticalPad 0 + Wrap + NO + Bounds + {{109.99698007712476, 144.25404206023151}, {314.37620015885648, 75.491698999999997}} Class - LineGraphic + ShapedGraphic Head ID - 1345 + 1934 + Position + 0.15896309912204742 ID - 1351 - Points - - {376.06309132493197, 259.22000000000008} - {376.06309132493197, 236.97999999999996} - - Style - + 1949 + Rotation + 359.63553300711015 + Shape + AdjustableArrow + ShapeData + + ratio + 0.47493430972099304 + width + 45.920928955078125 + + Style + + fill + + Color + + b + 0.497307 + g + 0.504555 + r + 1 + + FillType + 2 + GradientAngle + 271 + GradientColor + + b + 0.304265 + g + 0.307897 + r + 0.788251 + + MiddleFraction + 0.4523809552192688 + + shadow + + Color + + a + 0.4 + b + 0 + g + 0 + r + 0 + + stroke Color b - 0.653061 + 0 g - 0.653061 + 0.0271458 r - 0.653061 + 0.689052 - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - Tail - - ID - 1350 - + TextRelativeArea + {{0.125, 0.25}, {0.75, 0.5}} + isConnectedShape + Bounds - {{341.05200000000002, 260.22000000000003}, {70.022201999999993, 36}} + {{144.53399999999999, 163.93401}, {64, 17}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo - Color - - b - 0.668367 - g - 0.668367 - r - 0.668367 - Font - LucidaGrande + Helvetica Size - 10 + 12 ID - 1350 + 1940 Shape Rectangle Style fill - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - + Draws + NO shadow @@ -52263,108 +51862,70 @@ public} stroke - Color - - b - 0.653061 - g - 0.653061 - r - 0.653061 - - Width - 2 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red170\green170\blue170;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 ruby_client} +\f0\fs28 \cf0 stage files} VerticalPad 0 + Wrap + NO Class LineGraphic ID - 1349 + 1934 Points - {91.106003000000001, 155.74001000000001} - {57, 155.74001000000001} + {424.37, 136.39400000000001} + {424.37, 417} Style stroke + Color + + b + 0.52381 + g + 0.52381 + r + 0.52381 + HeadArrow - FilledArrow - Legacy - - LineType - 1 - Pattern - 1 - TailArrow 0 - - - - - Class - LineGraphic - Head - - ID - 1344 - - ID - 1348 - Points - - {175.74300000000002, 155.74001000000001} - {153.19620199999997, 155.74001000000001} - - Style - - stroke - - HeadArrow - FilledArrow Legacy - LineType - 1 TailArrow 0 + Width + 3 - Tail - - ID - 1343 - Class LineGraphic - Head - - ID - 1343 - ID - 1347 + 1933 Points - {266.76508985866514, 199.49131085588417} - {231.44810726917677, 173.72870043721005} + {266.37, 136.39400000000001} + {266.37, 417} Style @@ -52373,42 +51934,32 @@ public} Color b - 0.714286 + 0.52381 g - 0.714286 + 0.52381 r - 0.714286 + 0.52381 HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 + Width + 3 - Tail - - ID - 1342 - Class LineGraphic - Head - - ID - 1342 - ID - 1346 + 1932 Points - {345.01801, 217.47999999999999} - {322.47019899999998, 217.47999999999999} + {109.87, 138.16299000000001} + {108.87, 417} Style @@ -52417,114 +51968,37 @@ public} Color b - 0.653061 + 0.52381 g - 0.653061 + 0.52381 r - 0.653061 + 0.52381 HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 - - - Tail - - ID - 1345 - - - - Bounds - {{346.51801, 199.47999999999999}, {59.090198999999998, 36}} - Class - ShapedGraphic - FontInfo - - Color - - b - 0.668367 - g - 0.668367 - r - 0.668367 - - Font - Courier - Size - 12 - - ID - 1345 - Shape - RoundRect - Style - - fill - - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.653061 - g - 0.653061 - r - 0.653061 - Width 3 - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;\red170\green170\blue170;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf2 5ddae} - VerticalPad - 0 - Bounds - {{92.606003000000001, 137.74001000000001}, {59.090198999999998, 36}} + {{52.766998000000001, 61.967201000000003}, {112.206, 61.427101}} Class ShapedGraphic FontInfo Font - Courier + BryantPro-Bold Size - 12 + 16 ID - 1344 + 1927 Shape RoundRect Style @@ -52534,11 +52008,11 @@ public} Color b - 0.837205 + 0.742554 g - 0.959184 + 0.878307 r - 0.826135 + 0.771735 shadow @@ -52565,29 +52039,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 0b743} +\f0\fs32 \cf0 HEAD} VerticalPad 0 Bounds - {{177.24299999999999, 137.74001000000001}, {59.090198999999998, 36}} + {{210.767, 61.967201000000003}, {112.206, 61.427101}} Class ShapedGraphic FontInfo Font - Courier + BryantPro-Bold Size - 12 + 16 ID - 1343 + 1926 Shape RoundRect Style @@ -52597,11 +52071,11 @@ public} Color b - 0.837205 + 0.694025 g - 0.959184 + 1 r - 0.826135 + 0.958191 shadow @@ -52628,38 +52102,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 a6b4c} +\f0\fs32 \cf0 Index} VerticalPad 0 Bounds - {{261.88, 199.47999999999999}, {59.090198999999998, 36}} + {{359.25299000000001, 61.967201000000003}, {131.233, 61.427101}} Class ShapedGraphic FontInfo - Color - - b - 0.668367 - g - 0.668367 - r - 0.668367 - Font - Courier + BryantPro-Bold Size - 12 + 16 ID - 1342 + 1924 Shape RoundRect Style @@ -52669,11 +52134,11 @@ public} Color b - 0.837205 + 0.918367 g - 0.959184 + 0.707088 r - 0.826135 + 0.542092 shadow @@ -52686,11 +52151,11 @@ public} Color b - 0.653061 + 0.382653 g - 0.653061 + 0.382653 r - 0.653061 + 0.382653 Width 3 @@ -52700,11 +52165,12 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;\red170\green170\blue170;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf2 e43a6} +\f0\fs32 \cf0 Working\ +Directory} VerticalPad 0 @@ -52713,7 +52179,7 @@ public} GridInfo HPages - 1 + 2 KeepToScale Layers @@ -52747,7 +52213,9 @@ public} 0.0 Orientation - 2 + 1 + OutlineStyle + Basic PrintOnePage RowAlign @@ -52755,11 +52223,11 @@ public} RowSpacing 36 SheetTitle - 0527 + 106 UniqueID - 10 + 94 VPages - 1 + 2 ActiveLayerIndex @@ -52769,7 +52237,7 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {805, 732}} Class SolidGraphic ID @@ -52787,6 +52255,8 @@ public} 0 CanvasOrigin {0, 0} + CanvasSize + {805, 732} ColumnAlign 1 ColumnSpacing @@ -52796,69 +52266,86 @@ public} GraphicsList + Bounds + {{328.5, 268}, {43, 17}} Class - LineGraphic - Head + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo - ID - 1343 + Font + Helvetica + Size + 12 ID - 1355 - Points - - {227.07736883745761, 156.05445231990086} - {209.55543305353032, 155.92559509056764} - + 1955 + Shape + Rectangle Style + fill + + Draws + NO + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - Tail + Text - ID - 1354 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 git add} + VerticalPad + 0 + Wrap + NO Bounds - {{228.577, 138.24001000000001}, {47.464801999999999, 36}} + {{165.5, 355.66599000000002}, {64, 17}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Courier + Helvetica Size 12 ID - 1354 + 1941 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -52867,215 +52354,534 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C3} +\f0\fs28 \cf0 git commit} VerticalPad 0 + Wrap + NO + Bounds + {{109.05291478368096, 328.25244403779601}, {157.31708523490823, 75.491698999999997}} Class - LineGraphic + ShapedGraphic Head ID - 1354 + 1932 + Position + 0.81708520650863647 ID - 1353 - Points - - {252.09012654372626, 114.99998586432234} - {252.20572136135016, 136.74003120170207} - + 1929 + Rotation + 180.00124564727639 + Shape + AdjustableArrow + ShapeData + + ratio + 0.47493430972099304 + width + 45.920928955078125 + Style + fill + + Color + + b + 0.497307 + g + 0.504555 + r + 1 + + FillType + 2 + GradientAngle + 90 + GradientColor + + b + 0.304265 + g + 0.307897 + r + 0.788251 + + MiddleFraction + 0.4523809552192688 + + shadow + + Color + + a + 0.4 + b + 0 + g + 0 + r + 0 + + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0 + g + 0.0271458 + r + 0.689052 + Tail ID - 1352 + 1933 + Position + 0.81825047731399536 + TextRelativeArea + {{0.125, 0.25}, {0.75, 0.5}} + isConnectedShape + Bounds - {{216.97800000000001, 78}, {70.022201999999993, 36}} + {{266.36999999999824, 240.25413397723489}, {158.00000000000355, 75.491698999999997}} Class ShapedGraphic - FontInfo + Head - Color + ID + 1933 + Position + 0.50464338064193726 + + ID + 30 + Rotation + 180.00001213033002 + Shape + AdjustableArrow + ShapeData + + ratio + 0.47493430972099304 + width + 45.920928955078125 + + Style + + fill - b - 0.8 - g - 0.8 - r - 0.8 + Color + + b + 0.497307 + g + 0.504555 + r + 1 + + FillType + 2 + GradientAngle + 90 + GradientColor + + b + 0.304265 + g + 0.307897 + r + 0.788251 + + MiddleFraction + 0.4523809552192688 + + shadow + + Color + + a + 0.4 + b + 0 + g + 0 + r + 0 + + + stroke + + Color + + b + 0 + g + 0.0271458 + r + 0.689052 + + + Tail + + ID + 1934 + Position + 0.50464349985122681 + + TextRelativeArea + {{0.125, 0.25}, {0.75, 0.5}} + isConnectedShape + + + + Bounds + {{228.87, 173.69399999999999}, {75, 17}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + Font - LucidaGrande + Helvetica Size - 10 + 12 ID - 1352 + 1950 + Line + + ID + 1933 + Position + 0.16321820020675659 + RotationType + 0 + Shape Rectangle Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 git checkout} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{109.99696004552138, 144.25404710794047}, {314.37622022236661, 75.491698999999997}} + Class + ShapedGraphic + Head + + ID + 1934 + Position + 0.15896309912204742 + + ID + 1949 + Rotation + 359.63553119042075 + Shape + AdjustableArrow + ShapeData + + ratio + 0.47493430972099304 + width + 45.920928955078125 + + Style fill Color b - 0.933333 + 0.497307 g - 0.933333 + 0.504555 r - 0.933333 + 1 + + FillType + 2 + GradientAngle + 271 + GradientColor + + b + 0.304265 + g + 0.307897 + r + 0.788251 + MiddleFraction + 0.4523809552192688 shadow - Draws - NO + Color + + a + 0.4 + b + 0 + g + 0 + r + 0 + stroke Color b - 0.382653 + 0 g - 0.382653 + 0.0271458 r - 0.382653 + 0.689052 - Width - 2 + + + TextRelativeArea + {{0.125, 0.25}, {0.75, 0.5}} + isConnectedShape + + + + Bounds + {{144.53399999999999, 163.93401}, {64, 17}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 12 + + ID + 1940 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 master} +\f0\fs28 \cf0 stage files} VerticalPad 0 + Wrap + NO Class LineGraphic ID - 1349 + 1934 Points - {91.106003000000001, 155.74001000000001} - {57, 155.74001000000001} + {424.37, 136.39400000000001} + {424.37, 417} Style stroke + Color + + b + 0.52381 + g + 0.52381 + r + 0.52381 + HeadArrow - FilledArrow + 0 Legacy - LineType - 1 - Pattern - 1 TailArrow 0 + Width + 3 Class LineGraphic - Head - - ID - 1344 - ID - 1348 + 1933 Points - {159.09100000000004, 155.74001000000001} - {141.57070599999997, 155.74001000000001} + {266.37, 136.39400000000001} + {266.37, 417} Style stroke + Color + + b + 0.52381 + g + 0.52381 + r + 0.52381 + HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 + Width + 3 - Tail + + + Class + LineGraphic + ID + 1932 + Points + + {109.87, 138.16299000000001} + {108.87, 417} + + Style - ID - 1343 + stroke + + Color + + b + 0.52381 + g + 0.52381 + r + 0.52381 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + Bounds - {{92.605903999999995, 137.74001000000001}, {47.464801999999999, 36}} + {{52.766998000000001, 61.967201000000003}, {112.206, 61.427101}} Class ShapedGraphic FontInfo Font - Courier + BryantPro-Bold Size - 12 + 16 ID - 1344 + 1927 Shape RoundRect Style @@ -53085,11 +52891,11 @@ public} Color b - 0.837205 + 0.742554 g - 0.959184 + 0.878307 r - 0.826135 + 0.771735 shadow @@ -53116,29 +52922,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C1} +\f0\fs32 \cf0 HEAD} VerticalPad 0 Bounds - {{160.59100000000001, 137.74001000000001}, {47.464801999999999, 36}} + {{210.767, 61.967201000000003}, {112.206, 61.427101}} Class ShapedGraphic FontInfo Font - Courier + BryantPro-Bold Size - 12 + 16 ID - 1343 + 1926 Shape RoundRect Style @@ -53148,11 +52954,11 @@ public} Color b - 0.837205 + 0.694025 g - 0.959184 + 1 r - 0.826135 + 0.958191 shadow @@ -53179,54 +52985,119 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C2} +\f0\fs32 \cf0 \'cdndice} VerticalPad 0 - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - Lock - NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 + Bounds + {{359.25299000000001, 61.967201000000003}, {131.233, 61.427101}} + Class + ShapedGraphic + FontInfo + + Font + BryantPro-Bold + Size + 16 + + ID + 1924 + Shape + RoundRect + Style + + fill + + Color + + b + 0.918367 + g + 0.707088 + r + 0.542092 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs32 \cf0 Directorio de Trabajo} + VerticalPad + 0 + + + + GridInfo + + HPages + 2 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 Orientation - 2 + 1 + OutlineStyle + Basic PrintOnePage RowAlign @@ -53234,11 +53105,11 @@ public} RowSpacing 36 SheetTitle - Canvas 11 + 107 UniqueID - 12 + 96 VPages - 1 + 2 ActiveLayerIndex @@ -53248,7 +53119,7 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {805, 732}} Class SolidGraphic ID @@ -53266,6 +53137,8 @@ public} 0 CanvasOrigin {0, 0} + CanvasSize + {805, 732} ColumnAlign 1 ColumnSpacing @@ -53280,14 +53153,14 @@ public} Head ID - 1359 + 1942 ID - 1363 + 1962 Points - {447.70371543937119, 278.00000000002473} - {447.70355376071529, 254.99999999995978} + {304.14400999999998, 143.5} + {221.78550000000001, 143.5} Style @@ -53306,79 +53179,7 @@ public} Tail ID - 1362 - - - - Bounds - {{408.33199999999999, 279}, {78.743697999999995, 36}} - Class - ShapedGraphic - FontInfo - - Color - - b - 0.8 - g - 0.8 - r - 0.8 - - Font - LucidaGrande - Size - 10 - - ID - 1362 - Shape - Rectangle - Style - - fill - - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs20 \cf2 topic-branch} - VerticalPad - 0 + 1949 @@ -53387,14 +53188,14 @@ public} Head ID - 1354 + 1949 ID - 1361 + 1961 Points - {297.24829303481516, 215.80258102203874} - {266.79351046354321, 175.43742893198677} + {521.17602999999997, 143.5} + {439.71501000000001, 143.5} Style @@ -53413,7 +53214,7 @@ public} Tail ID - 1357 + 1954 @@ -53422,14 +53223,14 @@ public} Head ID - 1356 + 1955 ID - 1360 + 1960 Points - {422.4713788431153, 235.31444089720452} - {404.95042303445422, 235.18558988672072} + {588.96114441444365, 66.999999999953729} + {588.96136088069284, 89.500000000023348} Style @@ -53448,23 +53249,23 @@ public} Tail ID - 1359 + 1959 Bounds - {{423.97100999999998, 217.5}, {47.464801999999999, 36}} + {{550.42200000000003, 28}, {77.077904000000004, 38}} Class ShapedGraphic FontInfo Font - Courier + AvenirLTStd-Roman Size - 12 + 14 ID - 1359 + 1959 Shape RoundRect Style @@ -53474,11 +53275,11 @@ public} Color b - 0.837205 + 0.742554 g - 0.959184 + 0.878307 r - 0.826135 + 0.771735 shadow @@ -53498,60 +53299,80 @@ public} 0.382653 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C6} +\f0\fs28 \cf0 HEAD} VerticalPad 0 + Bounds + {{591.56299000000001, 152}, {48, 22}} Class - LineGraphic - Head + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo - ID - 1357 + Font + AvenirLTStd-Roman + Size + 18 ID - 1358 - Points - - {354.48599000000002, 235} - {336.96480199999996, 235} - + 1958 + Shape + Rectangle Style + fill + + Draws + NO + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - Tail + Text - ID - 1356 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 file.txt} + VerticalPad + 0 + Wrap + NO Bounds - {{288, 217}, {47.464801999999999, 36}} + {{535.06299000000001, 142}, {45, 38}} Class ShapedGraphic FontInfo @@ -53562,7 +53383,7 @@ public} 12 ID - 1357 + 1957 Shape RoundRect Style @@ -53572,11 +53393,11 @@ public} Color b - 0.837205 + 0.857488 g - 0.959184 + 0.857488 r - 0.826135 + 0.978261 shadow @@ -53589,14 +53410,14 @@ public} Color b - 0.382653 + 0.443182 g - 0.382653 + 0.443182 r - 0.382653 + 0.5 Width - 3 + 2 Text @@ -53607,40 +53428,37 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C4} +\f0\fs24 \cf0 v3} VerticalPad 0 Bounds - {{355.98599000000002, 217}, {47.464801999999999, 36}} + {{563.46100000000001, 100}, {51, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Courier + Courier-Bold Size 12 ID - 1356 + 1956 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -53649,83 +53467,54 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fmodern\fcharset0 Courier-Bold;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C5} +\f0\b\fs24 \cf0 38eb946} VerticalPad 0 + Wrap + NO + Bounds + {{521.67602999999997, 90}, {134.571, 34}} Class - LineGraphic - Head - - ID - 1343 - + ShapedGraphic ID - 1355 - Points - - {227.07736883745761, 156.05445231990086} - {209.55543305353032, 155.92559509056764} - + 1955 + Shape + Rectangle Style - stroke + shadow - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - Tail - - ID - 1354 - Bounds - {{228.577, 138.24001000000001}, {47.464801999999999, 36}} + {{521.67602999999997, 90}, {134.571, 107}} Class ShapedGraphic - FontInfo - - Font - Courier - Size - 12 - ID - 1354 + 1954 Shape - RoundRect + Rectangle Style fill @@ -53733,11 +53522,11 @@ public} Color b - 0.837205 + 0.887755 g - 0.959184 + 0.887755 r - 0.826135 + 0.887755 shadow @@ -53750,89 +53539,86 @@ public} Color b - 0.382653 + 0.484694 g - 0.382653 + 0.484694 r - 0.382653 + 0.484694 - Width - 3 - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 C3} - VerticalPad - 0 - + Bounds + {{374.53100999999998, 152}, {48, 22}} Class - LineGraphic - Head + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo - ID - 1354 + Font + AvenirLTStd-Roman + Size + 18 ID - 1353 - Points - - {252.09012654372626, 114.99998586432234} - {252.20572136135016, 136.74003120170207} - + 1953 + Shape + Rectangle Style + fill + + Draws + NO + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - Tail + Text - ID - 1352 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 file.txt} + VerticalPad + 0 + Wrap + NO Bounds - {{216.97800000000001, 78}, {70.022201999999993, 36}} + {{318.03100999999998, 142}, {45, 38}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Courier Size - 10 + 12 ID - 1352 + 1952 Shape - Rectangle + RoundRect Style fill @@ -53840,11 +53626,11 @@ public} Color b - 0.933333 + 0.760005 g - 0.933333 + 0.972826 r - 0.933333 + 0.808281 shadow @@ -53857,11 +53643,11 @@ public} Color b - 0.382653 + 0.396197 g - 0.382653 + 0.505102 r - 0.382653 + 0.417189 Width 2 @@ -53871,93 +53657,97 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 master} +\f0\fs24 \cf0 v2} VerticalPad 0 + Bounds + {{346.42899, 100}, {51, 14}} Class - LineGraphic + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Courier-Bold + Size + 12 + ID - 1349 - Points - - {91.106003000000001, 155.74001000000001} - {57, 155.74001000000001} - + 1951 + Shape + Rectangle Style + fill + + Draws + NO + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - Pattern - 1 - TailArrow - 0 + Draws + NO + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier-Bold;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\b\fs24 \cf0 9e5e6a4} + VerticalPad + 0 + + Wrap + NO + Bounds + {{304.64400999999998, 90}, {134.571, 34}} Class - LineGraphic - Head - - ID - 1344 - + ShapedGraphic ID - 1348 - Points - - {159.09100000000004, 155.74001000000001} - {141.57070599999997, 155.74001000000001} - + 1950 + Shape + Rectangle Style - stroke + shadow - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - Tail - - ID - 1343 - Bounds - {{92.605903999999995, 137.74001000000001}, {47.464801999999999, 36}} + {{304.64400999999998, 90}, {134.571, 107}} Class ShapedGraphic - FontInfo - - Font - Courier - Size - 12 - ID - 1344 + 1949 Shape - RoundRect + Rectangle Style fill @@ -53965,11 +53755,11 @@ public} Color b - 0.837205 + 0.887755 g - 0.959184 + 0.887755 r - 0.826135 + 0.887755 shadow @@ -53982,58 +53772,41 @@ public} Color b - 0.382653 + 0.484694 g - 0.382653 + 0.484694 r - 0.382653 + 0.484694 - Width - 3 - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 C1} - VerticalPad - 0 - Bounds - {{160.59100000000001, 137.74001000000001}, {47.464801999999999, 36}} + {{79.000197999999997, 220}, {97, 17}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Courier + AvenirLTStd-Heavy Size - 12 + 14 ID - 1343 + 1948 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -54042,191 +53815,85 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C2} +\f0\b\fs28 \cf0 Git Repository} VerticalPad 0 - - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - - Lock + Wrap NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 2 - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - Canvas 12 - UniqueID - 13 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 553}} - Class - SolidGraphic - ID - 2 - Style - - stroke - - Draws - NO - - - BaseZoom - 0 - CanvasOrigin - {0, 0} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - + Bounds + {{156.60201000000001, 152}, {48, 22}} Class - LineGraphic - Head + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo - ID - 1354 + Font + AvenirLTStd-Roman + Size + 18 ID - 1361 - Points - - {301.58400999999998, 156.24001000000001} - {277.54180200000002, 156.24001000000001} - + 1946 + Shape + Rectangle Style - stroke + fill - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO + + shadow + + Draws + NO - - Tail - - ID - 1357 - - - - Class - LineGraphic - Head - - ID - 1356 - - ID - 1360 - Points - - {437.55535884355942, 156.55445078552356} - {420.03444303403688, 156.42559999164516} - - Style - stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - Tail + Text - ID - 1359 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 file.txt} + VerticalPad + 0 + Wrap + NO Bounds - {{439.05498999999998, 138.74001000000001}, {47.464801999999999, 36}} + {{100.102, 142}, {45, 38}} Class ShapedGraphic FontInfo @@ -54237,7 +53904,7 @@ public} 12 ID - 1359 + 1945 Shape RoundRect Style @@ -54247,11 +53914,11 @@ public} Color b - 0.837205 + 0.978261 g - 0.959184 + 0.91928 r - 0.826135 + 0.810044 shadow @@ -54264,14 +53931,14 @@ public} Color b - 0.382653 + 0.489796 g - 0.382653 + 0.457123 r - 0.382653 + 0.399877 Width - 3 + 2 Text @@ -54282,75 +53949,37 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C9} +\f0\fs24 \cf0 v1} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 1357 - - ID - 1358 - Points - - {369.57001000000002, 156.24001000000001} - {352.04881199999994, 156.24001000000001} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1356 - - Bounds - {{303.08400999999998, 138.24001000000001}, {47.464801999999999, 36}} + {{128.5, 100}, {51, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Courier + Courier-Bold Size 12 ID - 1357 + 1944 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -54359,48 +53988,54 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fmodern\fcharset0 Courier-Bold;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C7} +\f0\b\fs24 \cf0 eb43bf8} VerticalPad 0 + Wrap + NO Bounds - {{371.07001000000002, 138.24001000000001}, {47.464801999999999, 36}} + {{86.714500000000001, 90}, {134.571, 34}} Class ShapedGraphic - FontInfo + ID + 1943 + Shape + Rectangle + Style - Font - Courier - Size - 12 + shadow + + Draws + NO + + + + Bounds + {{86.714500000000001, 90}, {134.571, 107}} + Class + ShapedGraphic ID - 1356 + 1942 Shape - RoundRect + Rectangle Style fill @@ -54408,11 +54043,11 @@ public} Color b - 0.837205 + 0.887755 g - 0.959184 + 0.887755 r - 0.826135 + 0.887755 shadow @@ -54425,67 +54060,73 @@ public} Color b - 0.382653 + 0.484694 g - 0.382653 + 0.484694 r - 0.382653 + 0.484694 - Width - 3 - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 C8} - VerticalPad - 0 - + Bounds + {{593.5, 396}, {48, 22}} Class - LineGraphic - Head + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo - ID - 1343 + Font + AvenirLTStd-Roman + Size + 18 ID - 1355 - Points - - {227.07736883745761, 156.05445231990086} - {209.55543305353032, 155.92559509056764} - + 1937 + Shape + Rectangle Style + fill + + Draws + NO + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - Tail + Text - ID - 1354 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 file.txt} + VerticalPad + 0 + Wrap + NO Bounds - {{228.577, 138.24001000000001}, {47.464801999999999, 36}} + {{537, 386}, {45, 38}} Class ShapedGraphic FontInfo @@ -54496,7 +54137,7 @@ public} 12 ID - 1354 + 1936 Shape RoundRect Style @@ -54506,11 +54147,11 @@ public} Color b - 0.837205 + 0.978261 g - 0.959184 + 0.91928 r - 0.826135 + 0.810044 shadow @@ -54523,14 +54164,14 @@ public} Color b - 0.382653 + 0.489796 g - 0.382653 + 0.457123 r - 0.382653 + 0.399877 Width - 3 + 2 Text @@ -54541,71 +54182,82 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C3} +\f0\fs24 \cf0 v1} VerticalPad 0 + Bounds + {{375.5, 395}, {48, 22}} Class - LineGraphic - Head + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo - ID - 1359 + Font + AvenirLTStd-Roman + Size + 18 ID - 1353 - Points - - {462.78719026530922, 114.99999999998897} - {462.78729475274969, 137.24001000001826} - + 1935 + Shape + Rectangle Style + fill + + Draws + NO + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - Tail + Text - ID - 1352 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 file.txt} + VerticalPad + 0 + Wrap + NO Bounds - {{427.77600000000001, 78}, {70.022201999999993, 36}} + {{319, 385}, {45, 38}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Courier Size - 10 + 12 ID - 1352 + 1934 Shape - Rectangle + RoundRect Style fill @@ -54613,11 +54265,11 @@ public} Color b - 0.933333 + 0.978261 g - 0.933333 + 0.91928 r - 0.933333 + 0.810044 shadow @@ -54630,11 +54282,11 @@ public} Color b - 0.382653 + 0.489796 g - 0.382653 + 0.457123 r - 0.382653 + 0.399877 Width 2 @@ -54644,106 +54296,41 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 master} +\f0\fs24 \cf0 v1} VerticalPad 0 - - Class - LineGraphic - ID - 1349 - Points - - {91.106003000000001, 155.74001000000001} - {57, 155.74001000000001} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - Pattern - 1 - TailArrow - 0 - - - - - Class - LineGraphic - Head - - ID - 1344 - - ID - 1348 - Points - - {159.09100000000004, 155.74001000000001} - {141.57070599999997, 155.74001000000001} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1343 - - Bounds - {{92.605903999999995, 137.74001000000001}, {47.464801999999999, 36}} + {{157.5, 396}, {48, 22}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Courier + AvenirLTStd-Roman Size - 12 + 18 ID - 1344 + 1933 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -54752,35 +54339,30 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C1} +\f0\fs36 \cf0 file.txt} VerticalPad 0 + Wrap + NO Bounds - {{160.59100000000001, 137.74001000000001}, {47.464801999999999, 36}} + {{101, 386}, {45, 38}} Class ShapedGraphic FontInfo @@ -54791,7 +54373,7 @@ public} 12 ID - 1343 + 1301 Shape RoundRect Style @@ -54801,11 +54383,11 @@ public} Color b - 0.837205 + 0.978261 g - 0.959184 + 0.91928 r - 0.826135 + 0.810044 shadow @@ -54818,14 +54400,14 @@ public} Color b - 0.382653 + 0.489796 g - 0.382653 + 0.457123 r - 0.382653 + 0.399877 Width - 3 + 2 Text @@ -54836,192 +54418,82 @@ public} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C2} +\f0\fs24 \cf0 v1} VerticalPad 0 - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - - Lock - NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 2 - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - Canvas 13 - UniqueID - 14 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 553}} - Class - SolidGraphic - ID - 2 - Style - - stroke - - Draws - NO - - - - BaseZoom - 0 - CanvasOrigin - {0, 0} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - + Bounds + {{128.5, 351}, {51, 14}} Class - LineGraphic - Head + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo - ID - 1354 + Font + Courier-Bold + Size + 12 ID - 1369 - Points - - {308.39114761592452, 213.98748376995806} - {270.73466416822606, 175.21253629430498} - + 1932 + Shape + Rectangle Style - stroke + fill - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO + + shadow + + Draws + NO - - Tail - - ID - 1363 - - - - Class - LineGraphic - Head - - ID - 1365 - - ID - 1368 - Points - - {462.78701646587513, 278.48001000003433} - {462.78722796740846, 252.96000999994757} - - Style - stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - Tail + Text - ID - 1367 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier-Bold;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\b\fs24 \cf0 38eb946} + VerticalPad + 0 + Wrap + NO Bounds - {{423.41501, 279.48000999999999}, {78.743697999999995, 36}} + {{78.000197999999997, 283}, {154.078, 61.427101}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + AvenirLTStd-Roman Size - 10 + 16 ID - 1367 + 1927 Shape - Rectangle + RoundRect Style fill @@ -55029,11 +54501,11 @@ public} Color b - 0.933333 + 0.742554 g - 0.933333 + 0.878307 r - 0.933333 + 0.771735 shadow @@ -55053,71 +54525,36 @@ public} 0.382653 Width - 2 + 3 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 topic-branch} +\f0\fs32 \cf0 HEAD} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 1362 - - ID - 1366 - Points - - {437.55535884355942, 233.27445078552356} - {420.03444303403688, 233.14559999164516} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1365 - - Bounds - {{439.05498999999998, 215.46001000000001}, {47.464801999999999, 36}} + {{294.96100000000001, 283}, {154.078, 61.427101}} Class ShapedGraphic FontInfo Font - Courier + AvenirLTStd-Roman Size - 12 + 16 ID - 1365 + 1926 Shape RoundRect Style @@ -55127,11 +54564,11 @@ public} Color b - 0.837205 + 0.694025 g - 0.959184 + 1 r - 0.826135 + 0.958191 shadow @@ -55158,64 +54595,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C6} +\f0\fs32 \cf0 Index} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 1363 - - ID - 1364 - Points - - {369.57001000000002, 232.96001000000001} - {352.04881199999994, 232.96001000000001} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1362 - - Bounds - {{303.08400999999998, 214.96001000000001}, {47.464801999999999, 36}} + {{511.92200000000003, 283}, {154.078, 61.427101}} Class ShapedGraphic FontInfo Font - Courier + AvenirLTStd-Roman Size - 12 + 16 ID - 1363 + 1924 Shape RoundRect Style @@ -55225,11 +54627,11 @@ public} Color b - 0.837205 + 0.918367 g - 0.959184 + 0.707088 r - 0.826135 + 0.542092 shadow @@ -55256,31 +54658,43 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C4} +\f0\fs32 \cf0 Working\ +Directory} VerticalPad 0 Bounds - {{371.07001000000002, 214.96001000000001}, {47.464801999999999, 36}} + {{87.612198000000006, 334}, {134.571, 34}} Class ShapedGraphic - FontInfo + ID + 1931 + Shape + Rectangle + Style - Font - Courier - Size - 12 + shadow + + Draws + NO + + + + Bounds + {{521.67602999999997, 334}, {134.571, 107}} + Class + ShapedGraphic ID - 1362 + 1930 Shape - RoundRect + Rectangle Style fill @@ -55288,11 +54702,11 @@ public} Color b - 0.837205 + 0.887755 g - 0.959184 + 0.887755 r - 0.826135 + 0.887755 shadow @@ -55305,115 +54719,66 @@ public} Color b - 0.382653 + 0.484694 g - 0.382653 + 0.484694 r - 0.382653 + 0.484694 - Width - 3 - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 C5} - VerticalPad - 0 - + Bounds + {{304.64400999999998, 334}, {134.571, 107}} Class - LineGraphic - Head - - ID - 1354 - + ShapedGraphic ID - 1361 - Points - - {301.58400999999998, 156.24001000000001} - {277.54180200000002, 156.24001000000001} - + 1929 + Shape + Rectangle Style - stroke + fill - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.887755 + g + 0.887755 + r + 0.887755 + + + shadow + + Draws + NO - - Tail - - ID - 1357 - - - - Class - LineGraphic - Head - - ID - 1356 - - ID - 1360 - Points - - {437.55535884355942, 156.55445078552356} - {420.03444303403688, 156.42559999164516} - - Style - stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.484694 + g + 0.484694 + r + 0.484694 + - Tail - - ID - 1359 - Bounds - {{439.05498999999998, 138.74001000000001}, {47.464801999999999, 36}} + {{87.612198000000006, 334}, {134.571, 107}} Class ShapedGraphic - FontInfo - - Font - Courier - Size - 12 - ID - 1359 + 1928 Shape - RoundRect + Rectangle Style fill @@ -55421,11 +54786,11 @@ public} Color b - 0.837205 + 0.887755 g - 0.959184 + 0.887755 r - 0.826135 + 0.887755 shadow @@ -55438,93 +54803,149 @@ public} Color b - 0.382653 + 0.484694 g - 0.382653 + 0.484694 r - 0.382653 + 0.484694 - Width - 3 - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 C9} - VerticalPad - 0 - + Bounds + {{72.000099000000006, 53}, {600, 191}} Class - LineGraphic - Head - - ID - 1357 - + ShapedGraphic ID - 1358 - Points - - {369.57001000000002, 156.24001000000001} - {352.04881199999994, 156.24001000000001} - + 1947 + Shape + Rectangle Style - stroke + shadow - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - Tail + + + GridInfo + + HPages + 2 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 1 + OutlineStyle + Basic + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + trees + UniqueID + 95 + VPages + 2 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {805, 732}} + Class + SolidGraphic + ID + 2 + Style + + stroke - ID - 1356 + Draws + NO + + BaseZoom + 0 + CanvasOrigin + {0, 0} + CanvasSize + {805, 732} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + Bounds - {{303.08400999999998, 138.24001000000001}, {47.464801999999999, 36}} + {{127, 288}, {98, 17}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Courier + Helvetica Size 12 ID - 1357 + 1962 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -55533,61 +54954,53 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C7} +\f0\fs28 \cf0 Remove the file} VerticalPad 0 + Wrap + NO Bounds - {{371.07001000000002, 138.24001000000001}, {47.464801999999999, 36}} + {{119, 218}, {71, 17}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Courier + Helvetica Size 12 ID - 1356 + 1960 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -55596,83 +55009,143 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C8} +\f0\fs28 \cf0 Add the file} VerticalPad 0 + Wrap + NO + Bounds + {{84.602997000000016, 259.25415538394424}, {159.50000299999999, 75.491698999999997}} Class - LineGraphic + ShapedGraphic Head ID - 1343 + 1958 + Position + 0.62158960103988647 ID - 1355 - Points - - {227.07736883745761, 156.05445231990086} - {209.55543305353032, 155.92559509056764} - - Style + 1961 + Rotation + 180 + Shape + AdjustableArrow + ShapeData + + ratio + 0.47493430972099304 + width + 45.920928955078125 + + Style + fill + + Color + + b + 0.519712 + g + 0.547436 + r + 0.55102 + + FillType + 2 + GradientAngle + 271 + GradientColor + + b + 0.788251 + g + 0.770734 + r + 0.779493 + + MiddleFraction + 0.4523809552192688 + + shadow + + Color + + a + 0.4 + b + 0 + g + 0 + r + 0 + + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.211905 + g + 0.214286 + r + 0.213095 + Tail ID - 1354 + 1932 + Position + 0.62158960103988647 + TextRelativeArea + {{0.125, 0.25}, {0.75, 0.5}} + isConnectedShape + Bounds - {{228.577, 138.24001000000001}, {47.464801999999999, 36}} + {{84.602997000000016, 188.25414994975114}, {159.50000299999999, 75.491698999999997}} Class ShapedGraphic - FontInfo + Head - Font - Courier - Size - 12 + ID + 1932 + Position + 0.32306581735610962 ID - 1354 + 1959 Shape - RoundRect + AdjustableArrow + ShapeData + + ratio + 0.47493430972099304 + width + 45.920928955078125 + Style fill @@ -55680,106 +55153,117 @@ public} Color b - 0.837205 + 0.519712 g - 0.959184 + 0.547436 r - 0.826135 + 0.55102 + + FillType + 2 + GradientAngle + 90 + GradientColor + + b + 0.788251 + g + 0.770734 + r + 0.779493 + MiddleFraction + 0.4523809552192688 shadow - Draws - NO + Color + + a + 0.4 + b + 0 + g + 0 + r + 0 + stroke Color b - 0.382653 + 0.211905 g - 0.382653 + 0.214286 r - 0.382653 + 0.213095 - Width - 3 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 C3} - VerticalPad - 0 + ID + 1958 + Position + 0.32306581735610962 + TextRelativeArea + {{0.125, 0.25}, {0.75, 0.5}} + isConnectedShape + Class LineGraphic - Head - - ID - 1359 - ID - 1353 + 1958 Points - {462.78719026530922, 114.99999999998897} - {462.78729475274969, 137.24001000001826} + {84.602997000000002, 149.16299000000001} + {84.602997000000002, 387} Style stroke + Color + + b + 0.52381 + g + 0.52381 + r + 0.52381 + HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 + Width + 3 - Tail - - ID - 1352 - Bounds - {{427.77600000000001, 78}, {70.022201999999993, 36}} + {{29, 72.967201000000003}, {112.206, 61.427101}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + BryantPro-Bold Size - 10 + 16 ID - 1352 + 1957 Shape - Rectangle + RoundRect Style fill @@ -55787,11 +55271,11 @@ public} Color b - 0.933333 + 0.608088 g - 0.933333 + 0.627167 r - 0.933333 + 0.878307 shadow @@ -55811,100 +55295,157 @@ public} 0.382653 Width - 2 + 3 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 master} +\f0\fs32 \cf0 Untracked} VerticalPad 0 + Bounds + {{431.233, 245}, {82, 17}} Class - LineGraphic + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 12 + ID - 1349 - Points - - {91.106003000000001, 155.74001000000001} - {57, 155.74001000000001} - + 1956 + Shape + Rectangle Style + fill + + Draws + NO + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - Pattern - 1 - TailArrow - 0 + Draws + NO + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 Stage the file} + VerticalPad + 0 + + Wrap + NO + Bounds + {{277.767, 186.16299000000001}, {70, 17}} Class - LineGraphic - Head + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo - ID - 1344 + Font + Helvetica + Size + 12 ID - 1348 - Points - - {159.09100000000004, 155.74001000000001} - {141.57070599999997, 155.74001000000001} - + 1955 + Shape + Rectangle Style + fill + + Draws + NO + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - Tail + Text - ID - 1343 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 Edit the file} + VerticalPad + 0 + Wrap + NO Bounds - {{92.605903999999995, 137.74001000000001}, {47.464801999999999, 36}} + {{400.60299999999984, 215.25414603028642}, {158.00003000000038, 75.491698999999997}} Class ShapedGraphic - FontInfo + Head - Font - Courier - Size - 12 + ID + 1934 + Position + 0.44402676820755005 ID - 1344 + 1929 + Rotation + 359.99999589599383 Shape - RoundRect + AdjustableArrow + ShapeData + + ratio + 0.47493430972099304 + width + 45.920928955078125 + Style fill @@ -55912,62 +55453,92 @@ public} Color b - 0.837205 + 0.497307 g - 0.959184 + 0.504555 r - 0.826135 + 1 + + FillType + 2 + GradientAngle + 90 + GradientColor + + b + 0.304265 + g + 0.307897 + r + 0.788251 + MiddleFraction + 0.4523809552192688 shadow - Draws - NO + Color + + a + 0.4 + b + 0 + g + 0 + r + 0 + stroke Color b - 0.382653 + 0 g - 0.382653 + 0.0271458 r - 0.382653 + 0.689052 - Width - 3 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 C1} - VerticalPad - 0 + ID + 1933 + Position + 0.44074857234954834 + TextRelativeArea + {{0.125, 0.25}, {0.75, 0.5}} + isConnectedShape + Bounds - {{160.59100000000001, 137.74001000000001}, {47.464801999999999, 36}} + {{244.10300000000001, 157.25415006283467}, {156.50000000000003, 75.491698999999997}} Class ShapedGraphic - FontInfo + Head - Font - Courier - Size - 12 + ID + 1933 + Position + 0.19868451356887817 ID - 1343 + 30 + Rotation + 1.0525728271204571e-06 Shape - RoundRect + AdjustableArrow + ShapeData + + ratio + 0.47493430972099304 + width + 45.920928955078125 + Style fill @@ -55975,231 +55546,305 @@ public} Color b - 0.837205 + 0.497307 g - 0.959184 + 0.504555 r - 0.826135 + 1 + + FillType + 2 + GradientAngle + 90 + GradientColor + + b + 0.304265 + g + 0.307897 + r + 0.788251 + MiddleFraction + 0.4523809552192688 shadow - Draws - NO + Color + + a + 0.4 + b + 0 + g + 0 + r + 0 + stroke Color b - 0.382653 + 0 g - 0.382653 + 0.0271458 r - 0.382653 + 0.689052 - Width - 3 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 C2} - VerticalPad - 0 + ID + 1932 + Position + 0.19272445142269135 + TextRelativeArea + {{0.125, 0.25}, {0.75, 0.5}} + isConnectedShape + - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - Lock - NO - Name - Layer 1 - Print - YES - View + Bounds + {{195.267, 19}, {231, 29}} + Class + ShapedGraphic + FitText YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 2 - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - Canvas 14 - UniqueID - 15 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 553}} - Class - SolidGraphic - ID - 2 - Style - - stroke + Flow + Resize + FontInfo - Draws - NO + Font + Helvetica-Bold + Size + 24 + + ID + 1953 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\b\fs48 \cf0 File Status Lifecycle} + VerticalPad + 0 + Wrap + NO - - BaseZoom - 0 - CanvasOrigin - {0, 0} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - + Bounds + {{376.10300000000001, 343.29401000000001}, {49, 17}} Class - LineGraphic - Head + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo - ID - 1359 + Font + Helvetica + Size + 12 ID - 1372 - Points - - {479.82698294387723, 223.33736758987871} - {445.73281835509778, 184.86265243109111} - + 1950 + Line + + ID + 1933 + Position + 0.85306888818740845 + RotationType + 0 + + Shape + Rectangle Style + fill + + Draws + NO + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - Tail + Text - ID - 1370 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 Commit} + VerticalPad + 0 + Wrap + NO + Bounds + {{244.10299999999907, 312.25413769115715}, {314.50003000000191, 75.491698999999997}} Class - LineGraphic + ShapedGraphic Head ID - 1365 + 1932 + Position + 0.84443128108978271 ID - 1371 - Points - - {471.54001, 242.46001000000001} - {454.01979199999994, 242.46001000000001} - + 1949 + Rotation + 179.99999360315383 + Shape + AdjustableArrow + ShapeData + + ratio + 0.47493430972099304 + width + 45.920928955078125 + Style + fill + + Color + + b + 0.497307 + g + 0.504555 + r + 1 + + FillType + 2 + GradientAngle + 271 + GradientColor + + b + 0.304265 + g + 0.307897 + r + 0.788251 + + MiddleFraction + 0.4523809552192688 + + shadow + + Color + + a + 0.4 + b + 0 + g + 0 + r + 0 + + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0 + g + 0.0271458 + r + 0.689052 + Tail ID - 1370 + 1934 + Position + 0.85186904668807983 + TextRelativeArea + {{0.125, 0.25}, {0.75, 0.5}} + isConnectedShape + Bounds - {{473.04001, 224.46001000000001}, {47.464801999999999, 36}} + {{278.767, 174.93401}, {64, 17}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Courier + Helvetica Size 12 ID - 1370 + 1940 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.680889 - g - 0.765306 - r - 0.660584 - + Draws + NO shadow @@ -56208,127 +55853,145 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C10} +\f0\fs28 \cf0 stage files} VerticalPad 0 + Wrap + NO Class LineGraphic - Head - - ID - 1354 - ID - 1369 + 1934 Points - {274.39114770329229, 222.9874837439468} - {236.73466443415097, 184.21253621513338} + {558.60302999999999, 147.39400000000001} + {558.60302999999999, 385.23099000000002} Style stroke + Color + + b + 0.52381 + g + 0.52381 + r + 0.52381 + HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 + Width + 3 - Tail - - ID - 1363 - Class LineGraphic - Head - - ID - 1370 - ID - 1368 + 1933 Points - {496.772720403363, 287.4800100000229} - {496.77254767777475, 261.96000999996318} + {400.60300000000001, 147.39400000000001} + {400.60300000000001, 387} Style stroke + Color + + b + 0.52381 + g + 0.52381 + r + 0.52381 + HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 + Width + 3 - Tail + + + Class + LineGraphic + ID + 1932 + Points + + {244.10300000000001, 149.16299000000001} + {244.10300000000001, 387} + + Style - ID - 1367 + stroke + + Color + + b + 0.52381 + g + 0.52381 + r + 0.52381 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + Bounds - {{457.40100000000001, 288.48000999999999}, {78.743697999999995, 36}} + {{185.10300000000001, 72.967201000000003}, {119, 61.427101}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + BryantPro-Bold Size - 10 + 16 ID - 1367 + 1927 Shape - Rectangle + RoundRect Style fill @@ -56336,11 +55999,11 @@ public} Color b - 0.933333 + 0.742554 g - 0.933333 + 0.878307 r - 0.933333 + 0.771735 shadow @@ -56360,71 +56023,36 @@ public} 0.382653 Width - 2 + 3 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 topic-branch} +\f0\fs32 \cf0 Unmodified} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 1362 - - ID - 1366 - Points - - {403.55535884355942, 242.27445078552356} - {386.03444303403688, 242.14559999164516} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1365 - - Bounds - {{405.05498999999998, 224.46001000000001}, {47.464801999999999, 36}} + {{345, 72.967201000000003}, {112.206, 61.427101}} Class ShapedGraphic FontInfo Font - Courier + BryantPro-Bold Size - 12 + 16 ID - 1365 + 1926 Shape RoundRect Style @@ -56434,11 +56062,11 @@ public} Color b - 0.837205 + 0.694025 g - 0.959184 + 1 r - 0.826135 + 0.958191 shadow @@ -56465,64 +56093,29 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C6} +\f0\fs32 \cf0 Modified} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 1363 - - ID - 1364 - Points - - {335.57001000000002, 241.96001000000001} - {318.04881199999994, 241.96001000000001} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1362 - - Bounds - {{269.08400999999998, 223.96001000000001}, {47.464801999999999, 36}} + {{493.48599000000002, 72.967201000000003}, {131.233, 61.427101}} Class ShapedGraphic FontInfo Font - Courier + BryantPro-Bold Size - 12 + 16 ID - 1363 + 1924 Shape RoundRect Style @@ -56532,11 +56125,11 @@ public} Color b - 0.837205 + 0.918367 g - 0.959184 + 0.707088 r - 0.826135 + 0.542092 shadow @@ -56563,20 +56156,112 @@ public} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C4} +\f0\fs32 \cf0 Staged} VerticalPad 0 + + GridInfo + + HPages + 2 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 1 + OutlineStyle + Basic + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + 201 + UniqueID + 63 + VPages + 2 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 1106}} + Class + SolidGraphic + ID + 2 + Style + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + Bounds - {{337.07001000000002, 223.96001000000001}, {47.464801999999999, 36}} + {{611.99297999999999, 476}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font @@ -56585,22 +56270,15 @@ public} 12 ID - 1362 + 154 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -56609,107 +56287,91 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C5} +\f0\fs24 \cf0 Scott} VerticalPad 0 + Wrap + NO + Bounds + {{611.99297999999999, 455}, {37, 14}} Class - LineGraphic - Head + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo - ID - 1354 + Font + Courier + Size + 12 ID - 1361 - Points - - {267.58400999999998, 165.24001000000001} - {243.54180199999999, 165.24001000000001} - + 153 + Shape + Rectangle Style - stroke + fill - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO + + shadow + + Draws + NO - - Tail - - ID - 1357 - - - - Class - LineGraphic - Head - - ID - 1356 - - ID - 1360 - Points - - {403.55535884355942, 165.55445078552356} - {386.03444303403688, 165.42559999164516} - - Style - stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - Tail + Text - ID - 1359 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Scott} + VerticalPad + 0 + Wrap + NO Bounds - {{405.05498999999998, 147.74001000000001}, {47.464801999999999, 36}} + {{611.99297999999999, 435}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font @@ -56718,22 +56380,15 @@ public} 12 ID - 1359 + 152 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -56742,72 +56397,36 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C9} +\f0\fs24 \cf0 90ecd} VerticalPad 0 - - - Class - LineGraphic - Head - - ID - 1357 - - ID - 1358 - Points - - {335.57001000000002, 165.24001000000001} - {318.04881199999994, 165.24001000000001} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1356 - + Wrap + NO Bounds - {{269.08400999999998, 147.24001000000001}, {47.464801999999999, 36}} + {{611.99297999999999, 412}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font @@ -56816,22 +56435,15 @@ public} 12 ID - 1357 + 151 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -56840,61 +56452,53 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C7} +\f0\fs24 \cf0 2fe65} VerticalPad 0 + Wrap + NO Bounds - {{337.07001000000002, 147.24001000000001}, {47.464801999999999, 36}} + {{539.00702000000001, 495.17700000000002}, {145, 22}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Courier + Monaco Size - 12 + 8 ID - 1356 + 150 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -56903,96 +56507,85 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Align + 0 + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural -\f0\fs24 \cf0 C8} +\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 +this is the commit before that\ +and I'm not sure why} VerticalPad 0 + Wrap + NO Class LineGraphic - Head - - ID - 1343 - ID - 1355 + 149 Points - {193.07736883745761, 165.05445231990086} - {175.55543305353029, 164.92559509056764} + {603.5, 492.82299999999998} + {603.5, 406.67700000000002} Style stroke + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 - Tail - - ID - 1354 - Bounds - {{194.577, 147.24001000000001}, {47.464801999999999, 36}} + {{539.00702000000001, 468.35399999999998}, {56, 26.1462}} Class ShapedGraphic FontInfo Font - Courier + GillSans Size - 12 + 14 ID - 1354 + 148 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -57001,105 +56594,49 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C3} +\f0\fs28 \cf0 committer} VerticalPad 0 - - - Class - LineGraphic - Head - - ID - 1359 - - ID - 1353 - Points - - {428.78711574933851, 124.99999999997794} - {428.78725688287608, 146.24001000003545} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1352 - + Wrap + NO Bounds - {{386.67498999999998, 88}, {84.223999000000006, 36}} + {{535.00702000000001, 446.85399999999998}, {56, 26.1462}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + GillSans Size - 10 + 14 ID - 1352 + 147 Shape Rectangle Style fill - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - + Draws + NO shadow @@ -57108,123 +56645,49 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 origin/master} +\f0\fs28 \cf0 author} VerticalPad 0 - - - Class - LineGraphic - ID - 1349 - Points - - {57.105998999999997, 164.74001000000001} - {23, 164.74001000000001} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - Pattern - 1 - TailArrow - 0 - - - - - Class - LineGraphic - Head - - ID - 1344 - - ID - 1348 - Points - - {125.09100000000001, 164.74001000000001} - {107.57070199999998, 164.74001000000001} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1343 - + Wrap + NO Bounds - {{58.605899999999998, 146.74001000000001}, {47.464801999999999, 36}} + {{535.00702000000001, 425.85399999999998}, {56, 26.1462}} Class ShapedGraphic FontInfo Font - Courier + GillSans Size - 12 + 14 ID - 1344 + 146 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -57233,61 +56696,49 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C1} +\f0\fs28 \cf0 parent} VerticalPad 0 + Wrap + NO Bounds - {{126.59099999999999, 146.74001000000001}, {47.464801999999999, 36}} + {{535.00702000000001, 404.85399999999998}, {56, 26.1462}} Class ShapedGraphic FontInfo Font - Courier + GillSans Size - 12 + 14 ID - 1343 + 145 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -57296,132 +56747,36 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C2} +\f0\fs28 \cf0 tree} VerticalPad 0 - - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - - Lock + Wrap NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 2 - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - Canvas 15 - UniqueID - 16 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 553}} - Class - SolidGraphic - ID - 2 - Style - - stroke - - Draws - NO - - - BaseZoom - 0 - CanvasOrigin - {0, 0} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - Class LineGraphic - Head - - ID - 1373 - ID - 1378 + 144 Points - {271.04836884338971, 236.73444082820595} - {253.52743303433425, 236.60558991688791} + {683.02197000000001, 493} + {533.49199999999996, 493} Style @@ -57430,42 +56785,32 @@ public} Color b - 0.765306 + 0.382653 g - 0.765306 + 0.382653 r - 0.765306 + 0.382653 HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 + Width + 2 - Tail - - ID - 1375 - Class LineGraphic - Head - - ID - 1374 - ID - 1377 + 143 Points - {203.06300000000002, 236.41999999999999} - {185.54180199999999, 236.41999999999999} + {683.50702000000001, 472} + {533.97802999999999, 472} Style @@ -57474,42 +56819,32 @@ public} Color b - 0.765306 + 0.382653 g - 0.765306 + 0.382653 r - 0.765306 + 0.382653 HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 + Width + 2 - Tail - - ID - 1373 - Class LineGraphic - Head - - ID - 1354 - ID - 1376 + 142 Points - {140.77960878841503, 217.98887952762087} - {104.41619232134369, 183.67113039692009} + {683.53601000000003, 451} + {534.00702000000001, 451} Style @@ -57518,210 +56853,340 @@ public} Color b - 0.765306 + 0.382653 g - 0.765306 + 0.382653 r - 0.765306 + 0.382653 HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 + Width + 2 - Tail - - ID - 1374 - - Bounds - {{272.548, 218.91999999999999}, {47.464801999999999, 36}} Class - ShapedGraphic - FontInfo - - Color - - b - 0.77551 - g - 0.77551 - r - 0.77551 - - Font - Courier - Size - 12 - + LineGraphic ID - 1375 - Shape - RoundRect + 141 + Points + + {683.02197000000001, 430} + {533.49199999999996, 430} + Style - fill - - Color - - b - 0.871538 - g - 0.979592 - r - 0.845548 - - - shadow - - Draws - NO - stroke Color b - 0.765306 + 0.382653 g - 0.765306 + 0.382653 r - 0.765306 + 0.382653 + HeadArrow + 0 + Legacy + + TailArrow + 0 Width - 3 + 2 - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;\red198\green198\blue198;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf2 C6} - VerticalPad - 0 - - Bounds - {{136.577, 218.41999999999999}, {47.464801999999999, 36}} Class - ShapedGraphic - FontInfo - - Color - - b - 0.77551 - g - 0.77551 - r - 0.77551 - - Font - Courier - Size - 12 - - ID - 1374 - Shape - RoundRect - Style - - fill + Group + Graphics + - Color + Bounds + {{644, 373.63101}, {27, 26.1462}} + Class + ShapedGraphic + FontInfo - b - 0.871538 - g - 0.979592 - r - 0.845548 - - - shadow - - Draws + Color + + b + 0.489796 + g + 0.489796 + r + 0.489796 + + Font + GillSans + Size + 18 + + ID + 135 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf2 size} + VerticalPad + 0 + + Wrap NO - stroke - Color + Bounds + {{547, 373.63101}, {56, 26.1462}} + Class + ShapedGraphic + FontInfo - b - 0.765306 - g - 0.765306 - r - 0.765306 + Font + GillSans-Bold + Size + 18 - Width - 3 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;\red198\green198\blue198;} + ID + 136 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf2 C4} - VerticalPad - 0 - +\f0\b\fs36 \cf0 commit} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + ID + 137 + Points + + {630, 368.87700999999998} + {630, 406.90798999999998} + + Style + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Class + LineGraphic + ID + 138 + Points + + {685, 406.90798999999998} + {531, 406.90798999999998} + + Style + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Bounds + {{531, 366.5}, {154, 154.5}} + Class + ShapedGraphic + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 139 + Shape + Rectangle + Style + + fill + + Color + + b + 0.757488 + g + 1 + r + 0.738389 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + CornerRadius + 5 + Width + 3 + + + Text + + VerticalPad + 0 + + + + ID + 134 Bounds - {{204.56299999999999, 218.41999999999999}, {47.464801999999999, 36}} + {{212.73500000000001, 286.05498999999998}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo - Color - - b - 0.77551 - g - 0.77551 - r - 0.77551 - Font Courier Size 12 ID - 1373 + 133 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.871538 - g - 0.979592 - r - 0.845548 - + Draws + NO shadow @@ -57730,140 +57195,53 @@ public} stroke - Color - - b - 0.765306 - g - 0.765306 - r - 0.765306 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;\red198\green198\blue198;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf2 C5} +\f0\fs24 \cf0 xdiff} VerticalPad 0 - - - Class - LineGraphic - Head - - ID - 1359 - - ID - 1369 - Points - - {360.07474583687366, 219.5087878318553} - {316.93805621433927, 183.1512221101664} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1363 - - - - Class - LineGraphic - Head - - ID - 1365 - - ID - 1368 - Points - - {516.70300514197447, 283.88000000003825} - {516.70324088869188, 256.91999999994289} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1367 - + Wrap + NO Bounds - {{477.33098999999999, 284.88}, {78.743697999999995, 36}} + {{211.33799999999999, 266.12799000000001}, {51, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Courier Size - 10 + 12 ID - 1367 + 132 Shape Rectangle Style fill - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - + Draws + NO shadow @@ -57872,72 +57250,36 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 topic-branch} +\f0\fs24 \cf0 test.rb} VerticalPad 0 - - - Class - LineGraphic - Head - - ID - 1362 - - ID - 1366 - Points - - {491.4713788431153, 237.23444089720451} - {473.95042303445422, 237.10558988672071} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1365 - + Wrap + NO Bounds - {{492.97100999999998, 219.41999999999999}, {47.464801999999999, 36}} + {{212.10300000000001, 245.05499}, {29, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font @@ -57946,22 +57288,15 @@ public} 12 ID - 1365 + 131 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -57970,72 +57305,36 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C6'} +\f0\fs24 \cf0 test} VerticalPad 0 + Wrap + NO - Class - LineGraphic - Head - - ID - 1363 - - ID - 1364 - Points - - {423.48599000000002, 236.91999999999999} - {405.96480199999996, 236.91999999999999} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1362 - - - - Bounds - {{357, 218.91999999999999}, {47.464801999999999, 36}} + Bounds + {{212.47, 224.05499}, {22, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font @@ -58044,22 +57343,15 @@ public} 12 ID - 1363 + 130 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -58068,37 +57360,36 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C4'} +\f0\fs24 \cf0 lib} VerticalPad 0 + Wrap + NO Bounds - {{424.98599000000002, 218.91999999999999}, {47.464801999999999, 36}} + {{211.23500000000001, 204.98199}, {44, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font @@ -58107,22 +57398,15 @@ public} 12 ID - 1362 + 129 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -58131,107 +57415,91 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C5'} +\f0\fs24 \cf0 README} VerticalPad 0 + Wrap + NO + Bounds + {{198, 442.07299999999998}, {37, 14}} Class - LineGraphic - Head + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo - ID - 1354 + Font + Courier + Size + 12 ID - 1361 - Points - - {135.07700000000003, 165.24001000000001} - {110.11880099999998, 165.24001000000001} - + 128 + Shape + Rectangle Style - stroke + fill - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO + + shadow + + Draws + NO - - Tail - - ID - 1357 - - - - Class - LineGraphic - Head - - ID - 1356 - - ID - 1360 - Points - - {271.04836884338971, 165.55445082820597} - {253.52743303433425, 165.42559991688793} - - Style - stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - Tail + Text - ID - 1359 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Scott} + VerticalPad + 0 + Wrap + NO Bounds - {{272.548, 147.74001000000001}, {47.464801999999999, 36}} + {{197.5, 419.07299999999998}, {44, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font @@ -58240,22 +57508,15 @@ public} 12 ID - 1359 + 127 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -58264,72 +57525,36 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C9} +\f0\fs24 \cf0 commit} VerticalPad 0 - - - Class - LineGraphic - Head - - ID - 1357 - - ID - 1358 - Points - - {203.06300000000002, 165.24001000000001} - {185.54180199999999, 165.24001000000001} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1356 - + Wrap + NO Bounds - {{136.577, 147.24001000000001}, {47.464801999999999, 36}} + {{198, 398.07299999999998}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font @@ -58338,22 +57563,15 @@ public} 12 ID - 1357 + 126 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -58362,37 +57580,36 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C7} +\f0\fs24 \cf0 ae668} VerticalPad 0 + Wrap + NO Bounds - {{204.56299999999999, 147.24001000000001}, {47.464801999999999, 36}} + {{414.99301000000003, 476}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font @@ -58401,22 +57618,15 @@ public} 12 ID - 1356 + 125 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -58425,37 +57635,36 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C8} +\f0\fs24 \cf0 Scott} VerticalPad 0 + Wrap + NO Bounds - {{61.153998999999999, 147.24001000000001}, {47.464801999999999, 36}} + {{414.99301000000003, 455}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font @@ -58464,22 +57673,15 @@ public} 12 ID - 1354 + 124 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -58488,105 +57690,108 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C3} +\f0\fs24 \cf0 Scott} VerticalPad 0 + Wrap + NO + Bounds + {{414.99301000000003, 435}, {37, 14}} Class - LineGraphic - Head + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo - ID - 1359 + Font + Courier + Size + 12 ID - 1353 - Points - - {296.28012574933854, 124.99999999997794} - {296.28026688287611, 146.24001000003548} - + 123 + Shape + Rectangle Style + fill + + Draws + NO + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - Tail + Text - ID - 1352 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 a149e} + VerticalPad + 0 + Wrap + NO Bounds - {{254.16800000000001, 88}, {84.223999000000006, 36}} + {{414.99301000000003, 412}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Courier Size - 10 + 12 ID - 1352 + 122 Shape Rectangle Style fill - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - + Draws + NO shadow @@ -58595,260 +57800,108 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 origin/master} +\f0\fs24 \cf0 c4ec5} VerticalPad 0 - - - Class - LineGraphic - ID - 1349 - Points - - {59.654474444282087, 165.02934509481523} - {25, 164.74001000000001} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - Pattern - 1 - TailArrow - 0 - - - Tail - - ID - 1354 - - - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - - Lock + Wrap NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 2 - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - Canvas 16 - UniqueID - 17 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 553}} - Class - SolidGraphic - ID - 2 - Style - - stroke - - Draws - NO - - - BaseZoom - 0 - CanvasOrigin - {0, 0} - CanvasSize - {756, 553} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - + Bounds + {{164.76499999999999, 286}, {37, 14}} Class - LineGraphic - Head + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo - ID - 1341 + Font + Courier + Size + 12 ID - 1353 - Points - - {283.02399270788328, 85.479999999983747} - {283.02387079375825, 106.87000000002399} - + 121 + Shape + Rectangle Style - stroke + fill - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO + + shadow + + Draws + NO - - Tail - - ID - 1330 - - - - Class - LineGraphic - Head - - ID - 1349 - - ID - 1352 - Points - - {360.02398946818363, 344.87000000001723} - {360.02387729071546, 325.76000999997319} - - Style - stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - Tail + Text - ID - 1351 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 911e7} + VerticalPad + 0 + Wrap + NO Bounds - {{325.01299999999998, 345.87}, {70.022201999999993, 36}} + {{165.36799999999999, 266.07299999999998}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Courier Size - 10 + 12 ID - 1351 + 120 Shape Rectangle Style fill - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - + Draws + NO shadow @@ -58857,96 +57910,53 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 client} +\f0\fs24 \cf0 cba0a} VerticalPad 0 - - - Class - LineGraphic - Head - - ID - 1345 - - ID - 1350 - Points - - {334.44501000000002, 306.26001000000002} - {308.60251100000005, 306.26001000000002} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1349 - + Wrap + NO Bounds - {{335.94501000000002, 288.26001000000002}, {48.157501000000003, 36}} + {{165.13300000000001, 246}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Courier Size 12 ID - 1349 + 119 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -58955,96 +57965,53 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C9} +\f0\fs24 \cf0 cdc8b} VerticalPad 0 - - - Class - LineGraphic - Head - - ID - 1332 - - ID - 1348 - Points - - {334.44501000000002, 194} - {308.60251100000005, 194} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1347 - + Wrap + NO Bounds - {{335.94501000000002, 176}, {48.157501000000003, 36}} + {{165, 225}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Courier Size 12 ID - 1347 + 118 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -59053,96 +58020,85 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C10} +\f0\fs24 \cf0 03e78} VerticalPad 0 + Wrap + NO Class LineGraphic - Head - - ID - 1324 - ID - 1346 + 117 Points - {269.82896753110163, 287.02302829366562} - {219.21855350714898, 213.23698170516298} + {205.52901, 303.07299999999998} + {205.52901, 203.92699999999999} Style stroke + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 - Tail - - ID - 1345 - Bounds - {{258.94501000000002, 288.26001000000002}, {48.157501000000003, 36}} + {{164.76499999999999, 204.92699999999999}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Courier Size 12 ID - 1345 + 116 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -59151,96 +58107,53 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C8} +\f0\fs24 \cf0 5b1d3} VerticalPad 0 + Wrap + NO + Bounds + {{122, 466.14600000000002}, {135, 22}} Class - LineGraphic - Head + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo - ID - 1307 + Font + Monaco + Size + 8 ID - 1343 - Points - - {257.44501000000002, 126.37} - {231.60251099999999, 126.37} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1341 - - - - Bounds - {{258.94501000000002, 108.37}, {48.157501000000003, 36}} - Class - ShapedGraphic - FontInfo - - Font - Helvetica - Size - 12 - - ID - 1341 + 115 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -59249,57 +58162,58 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Align + 0 + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural -\f0\fs24 \cf0 C6} +\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 +my tag message that explains\ +this tag } VerticalPad 0 + Wrap + NO Class LineGraphic - Head - - ID - 1324 - ID - 1333 + 114 Points - {257.44501000000002, 194} - {231.60251099999999, 194} + {185.9999974096292, 459.10998999999998} + {185.964, 393.82299999999998} Style stroke + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 @@ -59307,38 +58221,33 @@ public} Tail ID - 1332 + 109 + Position + 0.53157222270965576 Bounds - {{258.94501000000002, 176}, {48.157501000000003, 36}} + {{117.471, 433}, {56, 26.1462}} Class ShapedGraphic FontInfo Font - Helvetica + GillSans Size - 12 + 14 ID - 1332 + 112 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -59347,70 +58256,49 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C4} +\f0\fs28 \cf0 tagger} VerticalPad 0 + Wrap + NO Bounds - {{248.01300000000001, 48.479999999999997}, {70.022201999999993, 36}} + {{117.471, 412}, {56, 26.1462}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + GillSans Size - 10 + 14 ID - 1330 + 111 Shape Rectangle Style fill - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - + Draws + NO shadow @@ -59419,94 +58307,49 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 master} +\f0\fs28 \cf0 type} VerticalPad 0 - - - Class - LineGraphic - Head - - ID - 1304 - - ID - 1325 - Points - - {185.52111524679643, 176.13843005108876} - {148.89639454747424, 144.23157107989996} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 - - - Tail - - ID - 1324 - + Wrap + NO Bounds - {{181.94501, 176}, {48.157501000000003, 36}} + {{117.471, 391}, {56, 26.1462}} Class ShapedGraphic FontInfo Font - Helvetica + GillSans Size - 12 + 14 ID - 1324 + 110 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -59515,109 +58358,73 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C3} +\f0\fs28 \cf0 object} VerticalPad 0 + Wrap + NO Class LineGraphic - Head - - ID - 1347 - ID - 1317 + 109 Points - {360.02398655710704, 231.13000000001813} - {360.02388036614906, 213.49999999997166} + {265.48599000000002, 459.10998999999998} + {115.956, 459.10998999999998} Style stroke + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + HeadArrow - FilledArrow + 0 Legacy TailArrow 0 + Width + 2 - Tail - - ID - 1316 - - Bounds - {{325.01299999999998, 232.13}, {70.022201999999993, 36}} Class - ShapedGraphic - FontInfo - - Color - - b - 0.8 - g - 0.8 - r - 0.8 - - Font - LucidaGrande - Size - 10 - + LineGraphic ID - 1316 - Shape - Rectangle + 107 + Points + + {266, 437.14600000000002} + {116.471, 437.14600000000002} + Style - fill - - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - - - shadow - - Draws - NO - stroke Color @@ -59629,85 +58436,77 @@ public} r 0.382653 + HeadArrow + 0 + Legacy + + TailArrow + 0 Width 2 - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs20 \cf2 server} - VerticalPad - 0 - Class LineGraphic - Head - - ID - 1304 - ID - 1308 + 106 Points - {180.44501000000002, 126.37} - {153.97250099999999, 126.37} + {265.48599000000002, 416.14600000000002} + {115.956, 416.14600000000002} Style stroke + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + HeadArrow - FilledArrow + 0 Legacy TailArrow 0 + Width + 2 - Tail - - ID - 1307 - Bounds - {{181.94501, 108.37}, {48.157501000000003, 36}} + {{342.00698999999997, 495.17700000000002}, {140, 22}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Monaco Size - 12 + 8 ID - 1307 + 95 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -59716,94 +58515,117 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Align + 0 + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural -\f0\fs24 \cf0 C5} +\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 +my commit message goes here\ +and it is really, really cool} VerticalPad 0 + Wrap + NO Class LineGraphic - Head - - ID - 1299 - ID - 1306 + 94 Points - {102.81500000000003, 126.37} - {76.657500999999982, 126.37} + {160, 303.07299999999998} + {160, 203.92699999999999} Style stroke + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + HeadArrow - FilledArrow + 0 Legacy TailArrow 0 - Tail + + + Class + LineGraphic + ID + 93 + Points + + {406.5, 492.82299999999998} + {406.5, 406.67700000000002} + + Style - ID - 1304 + stroke + + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Bounds - {{104.315, 108.37}, {48.157501000000003, 36}} + {{342.00698999999997, 468.35399999999998}, {56, 26.1462}} Class ShapedGraphic FontInfo Font - Helvetica + GillSans Size - 12 + 14 ID - 1304 + 92 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -59812,61 +58634,49 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C2} +\f0\fs28 \cf0 committer} VerticalPad 0 + Wrap + NO Bounds - {{27, 108.37}, {48.157501000000003, 36}} + {{109, 280.92700000000002}, {56, 26.1462}} Class ShapedGraphic FontInfo Font - Helvetica + GillSans Size - 12 + 14 ID - 1299 + 91 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -59875,195 +58685,100 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C1} +\f0\fs28 \cf0 blob} VerticalPad 0 - - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - - Lock + Wrap NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 2 - OutlineStyle - Basic - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - 331 - UniqueID - 33 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 553}} - Class - SolidGraphic - ID - 2 - Style - - stroke - - Draws - NO - - - BaseZoom - 0 - CanvasOrigin - {0, 0} - CanvasSize - {756, 553} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - + Bounds + {{109, 259.92700000000002}, {56, 26.1462}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 1356 + Font + GillSans + Size + 14 ID - 1359 - Points - - {437.3214094004457, 84.999877593913581} - {437.66363401030151, 106.87018360322313} - + 90 + Shape + Rectangle Style + fill + + Draws + NO + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - Tail + Text - ID - 1358 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 blob} + VerticalPad + 0 + Wrap + NO Bounds - {{402.01299999999998, 48}, {70.022201999999993, 36}} + {{109, 239.92699999999999}, {56, 26.1462}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + GillSans Size - 10 + 14 ID - 1358 + 89 Shape Rectangle Style fill - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - + Draws + NO shadow @@ -60072,96 +58787,100 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 client} +\f0\fs28 \cf0 tree} VerticalPad 0 + Wrap + NO + Bounds + {{109, 217.92699999999999}, {56, 26.1462}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 1354 + Font + GillSans + Size + 14 ID - 1357 - Points - - {412.39001000000002, 126.37} - {386.54751100000004, 126.37} - + 88 + Shape + Rectangle Style + fill + + Draws + NO + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - Tail + Text - ID - 1356 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 tree} + VerticalPad + 0 + Wrap + NO Bounds - {{413.89001000000002, 108.37}, {48.157501000000003, 36}} + {{109, 198.92699999999999}, {56, 26.1462}} Class ShapedGraphic FontInfo Font - Helvetica + GillSans Size - 12 + 14 ID - 1356 + 87 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -60170,96 +58889,100 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C9'} +\f0\fs28 \cf0 blob} VerticalPad 0 + Wrap + NO + Bounds + {{338.00698999999997, 446.85399999999998}, {56, 26.1462}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 1341 + Font + GillSans + Size + 14 ID - 1355 - Points - - {335.39001000000002, 126.37} - {308.60251100000005, 126.37} - + 86 + Shape + Rectangle Style + fill + + Draws + NO + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - Tail + Text - ID - 1354 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 author} + VerticalPad + 0 + Wrap + NO Bounds - {{336.89001000000002, 108.37}, {48.157501000000003, 36}} + {{338.00698999999997, 425.85399999999998}, {56, 26.1462}} Class ShapedGraphic FontInfo Font - Helvetica + GillSans Size - 12 + 14 ID - 1354 + 85 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -60268,81 +58991,87 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C8'} +\f0\fs28 \cf0 parent} VerticalPad 0 + Wrap + NO + Bounds + {{338.00698999999997, 404.85399999999998}, {56, 26.1462}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 1341 + Font + GillSans + Size + 14 ID - 1353 - Points - - {283.02399360180942, 84.999999999984041} - {283.02386998083961, 106.87000000002365} - + 84 + Shape + Rectangle Style + fill + + Draws + NO + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - Tail + Text - ID - 1330 - - + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 tree} + VerticalPad + 0 + + Wrap + NO + Class LineGraphic - Head - - ID - 1345 - ID - 1350 + 83 Points - {334.44501000000002, 309} - {308.60251100000005, 309} + {486.02199999999999, 493} + {336.49200000000002, 493} Style @@ -60351,170 +59080,205 @@ public} Color b - 0.709184 + 0.382653 g - 0.709184 + 0.382653 r - 0.709184 + 0.382653 HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 + Width + 2 - Tail - - ID - 1349 - - Bounds - {{335.94501000000002, 291}, {48.157501000000003, 36}} Class - ShapedGraphic - FontInfo + LineGraphic + ID + 82 + Points + + {486.50698999999997, 472} + {336.97800000000001, 472} + + Style - Color + stroke - b - 0.617347 - g - 0.617347 - r - 0.617347 + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 2 - Font - Helvetica - Size - 12 + + + Class + LineGraphic ID - 1349 - Shape - RoundRect + 81 + Points + + {486.53600999999998, 451} + {337.00698999999997, 451} + Style - fill + stroke Color b - 0.896649 + 0.382653 g - 0.959184 + 0.382653 r - 0.895628 + 0.382653 + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 2 - shadow - - Draws - NO - + + + + Class + LineGraphic + ID + 80 + Points + + {486.02199999999999, 430} + {336.49200000000002, 430} + + Style + stroke Color b - 0.709184 + 0.382653 g - 0.709184 + 0.382653 r - 0.709184 + 0.382653 + HeadArrow + 0 + Legacy + + TailArrow + 0 Width - 3 + 2 - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red157\green157\blue157;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf2 C9} - VerticalPad - 0 - Class LineGraphic - Head - - ID - 1332 - ID - 1348 + 79 Points - {334.44501000000002, 194} - {308.60251100000005, 194} + {266.51501000000002, 284} + {116.985, 284} Style stroke + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 + Width + 2 - Tail - - ID - 1347 - - Bounds - {{335.94501000000002, 176}, {48.157501000000003, 36}} Class - ShapedGraphic - FontInfo - - Font - Helvetica - Size - 12 - + LineGraphic ID - 1347 - Shape - RoundRect + 78 + Points + + {266, 263} + {116.471, 263} + Style - fill + stroke Color b - 0.837205 + 0.382653 g - 0.959184 + 0.382653 r - 0.826135 + 0.382653 + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 2 - shadow - - Draws - NO - + + + + Class + LineGraphic + ID + 77 + Points + + {266.02899000000002, 242} + {116.5, 242} + + Style + stroke Color @@ -60526,37 +59290,26 @@ public} r 0.382653 + HeadArrow + 0 + Legacy + + TailArrow + 0 Width - 3 + 2 - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 C10} - VerticalPad - 0 - Class LineGraphic - Head - - ID - 1324 - ID - 1346 + 76 Points - {270.13703680863296, 289.7535944969639} - {218.91048415198668, 213.24640550423922} + {266.51501000000002, 221} + {116.985, 221} Style @@ -60565,66 +59318,49 @@ public} Color b - 0.709184 + 0.382653 g - 0.709184 + 0.382653 r - 0.709184 + 0.382653 HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 + Width + 2 - Tail - - ID - 1345 - Bounds - {{258.94501000000002, 291}, {48.157501000000003, 36}} + {{334, 205}, {146, 99}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo - Color - - b - 0.617347 - g - 0.617347 - r - 0.617347 - Font - Helvetica + Monaco Size - 12 + 8 ID - 1345 + 75 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.896649 - g - 0.959184 - r - 0.895628 - + Draws + NO shadow @@ -60633,96 +59369,119 @@ public} stroke - Color - - b - 0.709184 - g - 0.709184 - r - 0.709184 - - Width - 3 + Draws + NO Text + Align + 0 + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red157\green157\blue157;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural -\f0\fs24 \cf2 C8} +\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 +#ifndef REVISION_H\ +#define REVISION_H\ +\ +#include "parse-options.h"\ +\ +#define SEEN (1u<<0)\ +#define UNINTERESTING (1u\ +#define TREESAME (1u<<2)\ +} VerticalPad 0 + Wrap + NO + Bounds + {{205, 534}, {59, 17}} Class - LineGraphic - Head + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo - ID - 1307 + Font + Courier + Size + 14 ID - 1343 - Points - - {257.44501000000002, 126.37} - {231.60251099999999, 126.37} - + 74 + Shape + Rectangle Style + fill + + Draws + NO + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - Tail + Text - ID - 1341 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 c36d4..} + VerticalPad + 0 + Wrap + NO Bounds - {{258.94501000000002, 108.37}, {48.157501000000003, 36}} + {{122, 533}, {57, 19}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + GillSans Size - 12 + 16 ID - 1341 + 70 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -60731,83 +59490,88 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C6} +\f0\fs32 \cf0 tags/v1.3} VerticalPad 0 + Wrap + NO Class LineGraphic - Head - - ID - 1324 - ID - 1333 + 71 Points - {257.44501000000002, 194} - {231.60251099999999, 194} + {198, 527} + {198, 559} Style stroke + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 + Width + 3 - Tail - - ID - 1332 - Bounds - {{258.94501000000002, 176}, {48.157501000000003, 36}} + {{114, 525}, {154, 34}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Helvetica + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 1332 + 73 Shape - RoundRect + Rectangle Style fill @@ -60815,11 +59579,11 @@ public} Color b - 0.837205 + 0.831633 g - 0.959184 + 0.831633 r - 0.826135 + 0.831633 shadow @@ -60832,67 +59596,50 @@ public} Color b - 0.382653 + 0.31599 g - 0.382653 + 0.295367 r - 0.382653 + 0.316327 + CornerRadius + 5 Width 3 Text - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 C4} VerticalPad 0 Bounds - {{248.01300000000001, 48}, {70.022201999999993, 36}} + {{373, 340}, {76, 22}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Courier Size - 10 + 18 ID - 1330 + 67 Shape Rectangle Style fill - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - + Draws + NO shadow @@ -60901,94 +59648,53 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 master} +\f0\fs36 \cf0 ae668..} VerticalPad 0 - - - Class - LineGraphic - Head - - ID - 1304 - - ID - 1325 - Points - - {185.52111524679643, 176.13843005108876} - {148.89639454747424, 144.23157107989996} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 - - - Tail - - ID - 1324 - + Wrap + NO Bounds - {{181.94501, 176}, {48.157501000000003, 36}} + {{153, 331.03699}, {76, 22}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Courier Size - 12 + 18 ID - 1324 + 66 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -60997,391 +59703,1180 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C3} +\f0\fs36 \cf0 49e11..} VerticalPad 0 + Wrap + NO Class - LineGraphic - Head - - ID - 1347 - - ID - 1317 - Points + Group + Graphics - {360.0239892574001, 232.50000000001728} - {360.02387751480018, 213.499999999973} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 - - - Tail - - ID - 1316 - - - - Bounds - {{325.01299999999998, 233.5}, {70.022201999999993, 36}} - Class - ShapedGraphic - FontInfo - - Color - - b - 0.8 - g - 0.8 - r - 0.8 - - Font - LucidaGrande - Size - 10 - - ID - 1316 - Shape - Rectangle - Style - - fill - Color + Bounds + {{226, 361.96201000000002}, {27, 23.692301}} + Class + ShapedGraphic + FontInfo - b - 0.933333 - g - 0.933333 - r - 0.933333 + Color + + b + 0.489796 + g + 0.489796 + r + 0.489796 + + Font + GillSans + Size + 18 - - shadow - - Draws - NO - - stroke - - Color + ID + 61 + Shape + Rectangle + Style - b - 0.382653 - g - 0.382653 - r - 0.382653 + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + - Width - 2 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 server} - VerticalPad - 0 - - - - Class - LineGraphic - Head - - ID - 1304 - - ID - 1308 - Points - - {180.44501000000002, 126.37} - {153.97250099999999, 126.37} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 - - - Tail - - ID - 1307 - - - - Bounds - {{181.94501, 108.37}, {48.157501000000003, 36}} - Class - ShapedGraphic - FontInfo - - Font - Helvetica - Size - 12 - - ID - 1307 - Shape - RoundRect - Style - - fill - - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 +\f0\fs36 \cf2 size} + VerticalPad + 0 - - shadow - - Draws + Wrap NO - stroke - Color + Bounds + {{127, 361.96201000000002}, {22, 23.692301}} + Class + ShapedGraphic + FontInfo - b - 0.382653 - g - 0.382653 - r - 0.382653 + Font + GillSans-Bold + Size + 18 - Width - 3 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} + ID + 62 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C5} - VerticalPad - 0 - - - - Class - LineGraphic - Head - - ID - 1299 - - ID - 1306 - Points - - {102.81500000000003, 126.37} - {76.657500999999982, 126.37} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 - - - Tail - - ID - 1304 - - - - Bounds - {{104.315, 108.37}, {48.157501000000003, 36}} - Class - ShapedGraphic - FontInfo - - Font - Helvetica - Size - 12 - - ID - 1304 - Shape - RoundRect - Style - - fill - - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 +\f0\b\fs36 \cf0 tag} + VerticalPad + 0 - - shadow - - Draws + Wrap NO - stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Class + LineGraphic + ID + 63 + Points + + {212, 357.65399000000002} + {212, 392.11498999999998} + + Style + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Class + LineGraphic + ID + 64 + Points + + {267, 392.11498999999998} + {113, 392.11498999999998} + + Style + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Bounds + {{113, 355.5}, {154, 140}} + Class + ShapedGraphic + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 65 + Shape + Rectangle + Style + + fill + + Color + + b + 0.760284 + g + 0.885853 + r + 1 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + CornerRadius + 5 + Width + 3 + + + Text + + VerticalPad + 0 + + + + ID + 60 + + + Class + Group + Graphics + + + Bounds + {{447, 373.63101}, {27, 26.1462}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.489796 + g + 0.489796 + r + 0.489796 + + Font + GillSans + Size + 18 + + ID + 40 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf2 size} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{350, 373.63101}, {56, 26.1462}} + Class + ShapedGraphic + FontInfo + + Font + GillSans-Bold + Size + 18 + + ID + 41 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\b\fs36 \cf0 commit} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + ID + 42 + Points + + {433, 368.87700999999998} + {433, 406.90798999999998} + + Style + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Class + LineGraphic + ID + 43 + Points + + {488, 406.90798999999998} + {334, 406.90798999999998} + + Style + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Bounds + {{334, 366.5}, {154, 154.5}} + Class + ShapedGraphic + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 44 + Shape + Rectangle + Style + + fill + + Color + + b + 0.757488 + g + 1 + r + 0.738389 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + CornerRadius + 5 + Width + 3 + + + Text + + VerticalPad + 0 + + + + ID + 39 + + + Bounds + {{369, 139}, {76, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Courier + Size + 18 + + ID + 19 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C2} +\f0\fs36 \cf0 5b1d3..} VerticalPad 0 + Wrap + NO + + + Class + Group + Graphics + + + Bounds + {{443, 170}, {27, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Color + + b + 0.489796 + g + 0.489796 + r + 0.489796 + + Font + GillSans + Size + 18 + + ID + 21 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf2 size} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{339, 170}, {40, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + GillSans + Size + 18 + + ID + 22 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\b\fs36 \cf0 blob} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + ID + 23 + Points + + {429, 166} + {429, 198} + + Style + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Class + LineGraphic + ID + 24 + Points + + {484, 198} + {330, 198} + + Style + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Bounds + {{330, 164}, {154, 130}} + Class + ShapedGraphic + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 25 + Shape + Rectangle + Style + + fill + + Color + + b + 0.749742 + g + 0.760597 + r + 1 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + CornerRadius + 5 + Width + 3 + + + Text + + VerticalPad + 0 + + + + ID + 20 Bounds - {{27, 108.37}, {48.157501000000003, 36}} + {{153, 139}, {76, 22}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Courier Size - 12 + 18 ID - 1299 + 12 Shape - RoundRect + Rectangle Style fill - Color + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 c36d4..} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{227, 170}, {27, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Color + + b + 0.489796 + g + 0.489796 + r + 0.489796 + + Font + GillSans + Size + 18 + + ID + 27 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf2 size} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{123.5, 170}, {39, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + GillSans-Bold + Size + 18 + + ID + 28 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\b\fs36 \cf0 tree} + VerticalPad + 0 + + Wrap + NO + + + Class + Group + Graphics + + + Class + LineGraphic + ID + 30 + Points + + {213, 166.15401} + {213, 200.61501000000001} + + Style - b - 0.837205 - g - 0.959184 - r - 0.826135 + stroke + + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Class + LineGraphic + ID + 31 + Points + + {268, 200.61501000000001} + {114, 200.61501000000001} + + Style + + stroke + + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Bounds + {{114, 164}, {154, 140}} + Class + ShapedGraphic + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 32 + Shape + Rectangle + Style + + fill + + Color + + b + 1 + g + 0.806818 + r + 0.813024 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + CornerRadius + 5 + Width + 3 + - - shadow - - Draws - NO - - stroke - - Color + Text - b - 0.382653 - g - 0.382653 - r - 0.382653 + VerticalPad + 0 - Width - 3 - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 C1} - VerticalPad - 0 - + + ID + 29 GridInfo @@ -61422,8 +60917,6 @@ public} Orientation 2 - OutlineStyle - Basic PrintOnePage RowAlign @@ -61431,11 +60924,11 @@ public} RowSpacing 36 SheetTitle - 332 + Canvas 10 UniqueID - 34 + 65 VPages - 1 + 2 ActiveLayerIndex @@ -61463,8 +60956,6 @@ public} 0 CanvasOrigin {0, 0} - CanvasSize - {756, 553} ColumnAlign 1 ColumnSpacing @@ -61473,20 +60964,174 @@ public} 1 in = 1.00000 in GraphicsList + + Class + LineGraphic + ID + 245 + Points + + {410, 446.25} + {455, 391.38299999999998} + {496.41100999999998, 391} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 + + + + + Class + LineGraphic + ID + 244 + Points + + {403.58899000000002, 290} + {452, 227} + {490, 220.964} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 + + + + + Class + LineGraphic + ID + 242 + Points + + {394.32299999999998, 154} + {442, 62} + {490, 51.604301} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 + + + Class LineGraphic Head ID - 1356 + 196 ID - 1363 + 241 + Points + + {301.7372881721866, 320.85399999999998} + {308.06112430096988, 366.38300000000004} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 + + + Tail + + ID + 153 + + + + Class + LineGraphic + Head + + ID + 140 + + ID + 240 + Points + + {299.72167684444855, 185.66498999999999} + {306.21196209847346, 216.85400000000004} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 + + + Tail + + ID + 219 + + + + Class + LineGraphic + ID + 239 Points - {441.02400044393187, 234.74001000001402} - {441.02386352885367, 208.86999999997906} + {181, 106.664} + {224, 79} + {262, 88} Style @@ -61500,87 +61145,413 @@ public} 1 TailArrow 0 + Width + 3 + + + + + Bounds + {{469.18599999999998, 446.25}, {140, 77}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Monaco + Size + 8 + + ID + 237 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural + +\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 +require 'grit/git-ruby/reposi\ +require 'grit/git-ruby/file_i\ +\ +module Grit\ + module Tricks\ + \ +} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{504.18599999999998, 381.25}, {76, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Courier + Size + 18 + + ID + 236 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 0ad1a..} + VerticalPad + 0 + + Wrap + NO + + + Class + Group + Graphics + + + Bounds + {{578.18597, 413.81900000000002}, {27, 16.753799000000001}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.489796 + g + 0.489796 + r + 0.489796 + + Font + GillSans + Size + 18 + + ID + 231 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf2 size} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{474.18599999999998, 414.81900000000002}, {40, 16.753799000000001}} + Class + ShapedGraphic + FontInfo + + Font + GillSans + Size + 18 + + ID + 232 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\b\fs36 \cf0 blob} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + ID + 233 + Points + + {564.18597, 407.77301} + {564.18597, 438.142} + + Style + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Class + LineGraphic + ID + 234 + Points + + {619.18597, 440.142} + {465.18599999999998, 440.142} + + Style + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + - - Tail - - ID - 1330 - - - - Class - LineGraphic - Head - - ID - 1356 - - ID - 1362 - Points - - {441.02400044391601, 143.99999999998599} - {441.02386352886907, 169.87000000002095} - - Style - - stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Bounds + {{465.18599999999998, 406.25}, {154, 99}} + Class + ShapedGraphic + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 235 + Shape + Rectangle + Style + + fill + + Color + + b + 0.749742 + g + 0.760597 + r + 1 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + CornerRadius + 5 + Width + 3 + + + Text + + VerticalPad + 0 + - - Tail - - ID - 1361 - + + ID + 230 Bounds - {{406.01299999999998, 107}, {70.022201999999993, 36}} + {{467.68599999999998, 275.60399999999998}, {116, 88}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Monaco Size - 10 + 8 ID - 1361 + 229 Shape Rectangle Style fill - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - + Draws + NO shadow @@ -61589,96 +61560,63 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 + Draws + NO Text + Align + 0 + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural -\f0\fs20 \cf2 client} +\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 +require 'grit/index'\ +require 'grit/status'\ +\ +\ +module Grit\ + class << self\ + attr_accessor :debug\ +} VerticalPad 0 - - - Class - LineGraphic - Head - - ID - 1354 - - ID - 1357 - Points - - {415.44501000000002, 189.37} - {389.60251100000005, 189.37} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1356 - + Wrap + NO Bounds - {{416.94501000000002, 171.37}, {48.157501000000003, 36}} + {{502.68599999999998, 210.60400000000001}, {76, 22}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Courier Size - 12 + 18 ID - 1356 + 228 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -61687,96 +61625,310 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C9'} +\f0\fs36 \cf0 bc52a..} VerticalPad 0 + Wrap + NO Class - LineGraphic - Head - - ID - 1341 - - ID - 1355 - Points + Group + Graphics - {338.44501000000002, 189.37} - {312.60251100000005, 189.37} - - Style - - stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Bounds + {{576.68597, 241.26499999999999}, {27, 20.755400000000002}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.489796 + g + 0.489796 + r + 0.489796 + + Font + GillSans + Size + 18 + + ID + 223 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf2 size} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{472.68599999999998, 241.26499999999999}, {40, 20.755400000000002}} + Class + ShapedGraphic + FontInfo + + Font + GillSans + Size + 18 + + ID + 224 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\b\fs36 \cf0 blob} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + ID + 225 + Points + + {562.68597, 237.49100000000001} + {562.68597, 267.68099999999998} + + Style + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Class + LineGraphic + ID + 226 + Points + + {617.68597, 267.68099999999998} + {463.68599999999998, 267.68099999999998} + + Style + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Bounds + {{463.68599999999998, 235.60400000000001}, {154, 122.646}} + Class + ShapedGraphic + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 227 + Shape + Rectangle + Style + + fill + + Color + + b + 0.749742 + g + 0.760597 + r + 1 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + CornerRadius + 5 + Width + 3 + + + Text + + VerticalPad + 0 + - - Tail - - ID - 1354 - + + ID + 222 Bounds - {{339.94501000000002, 171.37}, {48.157501000000003, 36}} + {{327.47000000000003, 170.71898999999999}, {22, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Courier Size 12 ID - 1354 + 221 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -61785,96 +61937,53 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C8'} +\f0\fs24 \cf0 lib} VerticalPad 0 - - - Class - LineGraphic - Head - - ID - 1332 - - ID - 1348 - Points - - {338.44501000000002, 257} - {312.60251100000005, 257} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1347 - + Wrap + NO Bounds - {{339.94501000000002, 239}, {48.157501000000003, 36}} + {{326.23498999999998, 147.64599999999999}, {44, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Courier Size 12 ID - 1347 + 220 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -61883,96 +61992,53 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C10} +\f0\fs24 \cf0 README} VerticalPad 0 - - - Class - LineGraphic - Head - - ID - 1307 - - ID - 1343 - Points - - {261.44501000000002, 189.37} - {235.60251099999999, 189.37} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1341 - + Wrap + NO Bounds - {{262.94501000000002, 171.37}, {48.157501000000003, 36}} + {{279.76501000000002, 171.66498999999999}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Courier Size 12 ID - 1341 + 219 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -61981,96 +62047,85 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C6} +\f0\fs24 \cf0 10af9} VerticalPad 0 + Wrap + NO Class LineGraphic - Head - - ID - 1324 - ID - 1333 + 218 Points - {261.44501000000002, 257} - {235.60251099999999, 257} + {320.52899000000002, 190.81} + {320.52899000000002, 144.59100000000001} Style stroke + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 - Tail - - ID - 1332 - Bounds - {{262.94501000000002, 239}, {48.157501000000003, 36}} + {{279.76598999999999, 147.59100000000001}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Courier Size 12 ID - 1332 + 217 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -62079,76 +62134,39 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C4} +\f0\fs24 \cf0 e8455} VerticalPad 0 + Wrap + NO - Bounds - {{406.01299999999998, 235.74001000000001}, {70.022201999999993, 36}} Class - ShapedGraphic - FontInfo - - Color - - b - 0.8 - g - 0.8 - r - 0.8 - - Font - LucidaGrande - Size - 10 - + LineGraphic ID - 1330 - Shape - Rectangle + 216 + Points + + {275, 190.81} + {275, 144.59100000000001} + Style - fill - - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - - - shadow - - Draws - NO - stroke Color @@ -62160,85 +62178,37 @@ public} r 0.382653 - Width - 2 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs20 \cf2 master} - VerticalPad - 0 - - - - Class - LineGraphic - Head - - ID - 1304 - - ID - 1325 - Points - - {189.5211152797076, 239.13843002021775} - {152.89639463917598, 207.23157099388266} - - Style - - stroke - HeadArrow - FilledArrow + 0 Legacy TailArrow 0 - Tail - - ID - 1324 - Bounds - {{185.94501, 239}, {48.157501000000003, 36}} + {{224, 164.59100000000001}, {56, 26.1462}} Class ShapedGraphic FontInfo Font - Helvetica + GillSans Size - 12 + 14 ID - 1324 + 215 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -62247,103 +62217,49 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C3} +\f0\fs28 \cf0 tree} VerticalPad 0 - - - Class - LineGraphic - Head - - ID - 1347 - - ID - 1317 - Points - - {364.02399150743275, 297.26001000001662} - {364.02387187233859, 276.49999999997556} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 - - - Tail - - ID - 1316 - + Wrap + NO Bounds - {{329.01299999999998, 298.26001000000002}, {70.022201999999993, 36}} + {{224, 141.59100000000001}, {56, 26.1462}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + GillSans Size - 10 + 14 ID - 1316 - Shape - Rectangle - Style - - fill - - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - + 214 + Shape + Rectangle + Style + + fill + + Draws + NO shadow @@ -62352,94 +62268,87 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 server} +\f0\fs28 \cf0 blob} VerticalPad 0 + Wrap + NO Class LineGraphic - Head - - ID - 1304 - ID - 1308 + 213 Points - {184.44501000000002, 189.37} - {157.97250099999999, 189.37} + {387.51598999999999, 168.66399999999999} + {231.98500000000001, 168.66399999999999} Style stroke + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + HeadArrow - FilledArrow + 0 Legacy TailArrow 0 + Width + 2 - Tail - - ID - 1307 - Bounds - {{185.94501, 171.37}, {48.157501000000003, 36}} + {{268, 81.664398000000006}, {76, 22}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Courier Size - 12 + 18 ID - 1307 + 212 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -62448,94 +62357,62 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C5} +\f0\fs36 \cf0 0de24..} VerticalPad 0 - - - Class - LineGraphic - Head - - ID - 1299 - - ID - 1306 - Points - - {106.81500000000003, 189.37} - {80.657500999999982, 189.37} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 - - - Tail - - ID - 1304 - + Wrap + NO Bounds - {{108.315, 171.37}, {48.157501000000003, 36}} + {{344, 112.664}, {27, 22}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo + Color + + b + 0.489796 + g + 0.489796 + r + 0.489796 + Font - Helvetica + GillSans Size - 12 + 18 ID - 1304 + 211 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -62544,61 +62421,53 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C2} +\f0\fs36 \cf2 size} VerticalPad 0 + Wrap + NO Bounds - {{31, 171.37}, {48.157501000000003, 36}} + {{238.5, 112.664}, {39, 22}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + GillSans-Bold Size - 12 + 18 ID - 1299 + 210 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -62607,221 +62476,286 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C1} +\f0\b\fs36 \cf0 tree} VerticalPad 0 - - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - - Lock + Wrap NO - Name - Layer 1 - Print - YES - View - YES - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 2 - OutlineStyle - Basic - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - 333 - UniqueID - 35 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 553}} - Class - SolidGraphic - ID - 2 - Style - stroke - - Draws - NO - + Class + Group + Graphics + + + Class + LineGraphic + ID + 207 + Points + + {332.00900000000001, 107.98999999999999} + {332.00900000000001, 141.19501} + + Style + + stroke + + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Class + LineGraphic + ID + 208 + Points + + {389.23599000000002, 142.19501} + {229.00101000000001, 142.19501} + + Style + + stroke + + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Bounds + {{229.00101000000001, 106.664}, {160.23500000000001, 86.146004000000005}} + Class + ShapedGraphic + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 209 + Shape + Rectangle + Style + + fill + + Color + + b + 1 + g + 0.806818 + r + 0.813024 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + CornerRadius + 5 + Width + 3 + + + Text + + VerticalPad + 0 + + + + ID + 206 - - BaseZoom - 0 - CanvasOrigin - {0, 0} - CanvasSize - {756, 553} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - + Bounds + {{329.32299999999998, 436.36498999999998}, {65, 14}} Class - LineGraphic - Head + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo - ID - 1356 + Font + Courier + Size + 12 ID - 1367 - Points - - {488.44500999999997, 126.37} - {462.60251100000005, 126.37} - + 204 + Shape + Rectangle Style - stroke + fill - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO - Tail + Text - ID - 1362 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 tricks.rb} + VerticalPad + 0 + Wrap + NO Class LineGraphic - Head - - ID - 1363 - ID - 1366 + 202 Points - {642.44501000000002, 126.37} - {616.60251099999994, 126.37} + {324.11801000000003, 460.96301} + {324.11801000000003, 427.31} Style stroke + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 - Tail - - ID - 1365 - Bounds - {{643.94501000000002, 108.37}, {48.157501000000003, 36}} + {{283.35399999999998, 436.31}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Courier Size 12 ID - 1365 + 201 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -62830,96 +62764,81 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C10'} +\f0\fs24 \cf0 0ad1a} VerticalPad 0 + Wrap + NO Class LineGraphic - Head - - ID - 1362 - ID - 1364 + 200 Points - {565.44501000000002, 126.37} - {539.60251099999994, 126.37} + {278.58899000000002, 460.42000999999999} + {278.58899000000002, 426.76598999999999} Style stroke + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 - Tail - - ID - 1363 - Bounds - {{566.94501000000002, 108.37}, {48.157501000000003, 36}} + {{227.589, 430.31}, {56, 26.1462}} Class ShapedGraphic FontInfo Font - Helvetica + GillSans Size - 12 + 14 ID - 1363 + 198 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -62928,61 +62847,53 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C4'} +\f0\fs28 \cf0 blob} VerticalPad 0 + Wrap + NO Bounds - {{489.94501000000002, 108.37}, {48.157501000000003, 36}} + {{271.58899000000002, 366.38299999999998}, {76, 22}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Courier Size - 12 + 18 ID - 1362 + 196 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -62991,103 +62902,62 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C3'} +\f0\fs36 \cf0 b70f8..} VerticalPad 0 - - - Class - LineGraphic - Head - - ID - 1365 - - ID - 1361 - Points - - {668.02398975558265, 86.999999999982862} - {668.02387341734209, 106.87000000002516} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 - - - Tail - - ID - 1360 - + Wrap + NO Bounds - {{633.01300000000003, 50}, {70.022201999999993, 36}} + {{352.58899000000002, 397.38299999999998}, {27, 22}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Color b - 0.8 + 0.489796 g - 0.8 + 0.489796 r - 0.8 + 0.489796 Font - LucidaGrande + GillSans Size - 10 + 18 ID - 1360 + 195 Shape Rectangle Style fill - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - + Draws + NO shadow @@ -63096,105 +62966,53 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 server} +\f0\fs36 \cf2 size} VerticalPad 0 - - - Class - LineGraphic - Head - - ID - 1356 - - ID - 1359 - Points - - {437.02399090166443, 86.999999999983217} - {437.02387576198402, 106.87000000002621} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1358 - + Wrap + NO Bounds - {{402.01299999999998, 50}, {70.022201999999993, 36}} + {{242.089, 397.38299999999998}, {39, 22}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + GillSans-Bold Size - 10 + 18 ID - 1358 + 194 Shape Rectangle Style fill - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - + Draws + NO shadow @@ -63203,96 +63021,199 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 client} +\f0\b\fs36 \cf0 tree} VerticalPad 0 + Wrap + NO Class - LineGraphic - Head - - ID - 1354 - - ID - 1357 - Points + Group + Graphics - {411.44501000000002, 126.37} - {385.60251100000005, 126.37} - - Style - - stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Class + LineGraphic + ID + 191 + Points + + {342.517, 392.44601} + {342.517, 424.05599999999998} + + Style + + stroke + + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Class + LineGraphic + ID + 192 + Points + + {403.58801, 425.85699} + {232.589, 425.85699} + + Style + + stroke + + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Bounds + {{232.589, 391.38299999999998}, {170.99898999999999, 69.0364}} + Class + ShapedGraphic + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 193 + Shape + Rectangle + Style + + fill + + Color + + b + 1 + g + 0.806818 + r + 0.813024 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + CornerRadius + 5 + Width + 3 + + + Text + + VerticalPad + 0 + - - Tail - - ID - 1356 - + + ID + 190 Bounds - {{412.94501000000002, 108.37}, {48.157501000000003, 36}} + {{325.97100999999998, 305.90899999999999}, {22, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Courier Size 12 ID - 1356 + 158 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -63301,96 +63222,53 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C9'} +\f0\fs24 \cf0 inc} VerticalPad 0 - - - Class - LineGraphic - Head - - ID - 1341 - - ID - 1355 - Points - - {334.44501000000002, 126.37} - {308.60251100000005, 126.37} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1354 - + Wrap + NO Bounds - {{335.94501000000002, 108.37}, {48.157501000000003, 36}} + {{326.73599000000002, 282.83600000000001}, {58, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Courier Size 12 ID - 1354 + 157 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -63399,149 +63277,53 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C8'} +\f0\fs24 \cf0 mylib.rb} VerticalPad 0 - - - Class - LineGraphic - Head - - ID - 1356 - - ID - 1353 - Points - - {437.02400535287103, 175.00000000001268} - {437.02385871072028, 145.86999999998099} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1330 - - - - Class - LineGraphic - Head - - ID - 1332 - - ID - 1348 - Points - - {334.44501000000002, 194} - {308.60251100000005, 194} - - Style - - stroke - - Color - - b - 0.734694 - g - 0.734694 - r - 0.734694 - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1347 - + Wrap + NO Bounds - {{335.94501000000002, 176}, {48.157501000000003, 36}} + {{282.26501000000002, 306.85399999999998}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo - Color - - b - 0.69898 - g - 0.69898 - r - 0.69898 - Font - Helvetica + Courier Size 12 ID - 1347 + 153 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.885418 - g - 0.959184 - r - 0.880584 - + Draws + NO shadow @@ -63550,96 +63332,85 @@ public} stroke - Color - - b - 0.734694 - g - 0.734694 - r - 0.734694 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red178\green178\blue178;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf2 C10} +\f0\fs24 \cf0 b70f8} VerticalPad 0 + Wrap + NO Class LineGraphic - Head - - ID - 1307 - ID - 1343 + 152 Points - {257.44501000000002, 126.37} - {231.60251099999999, 126.37} + {323.02999999999997, 326} + {323.02999999999997, 279.78100999999998} Style stroke + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 - Tail - - ID - 1341 - Bounds - {{258.94501000000002, 108.37}, {48.157501000000003, 36}} + {{282.26598999999999, 282.78100999999998}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Courier Size 12 ID - 1341 + 151 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -63648,46 +63419,36 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C6} +\f0\fs24 \cf0 bc52a} VerticalPad 0 + Wrap + NO Class LineGraphic - Head - - ID - 1324 - ID - 1333 + 150 Points - {257.44501000000002, 194} - {231.60251099999999, 194} + {277.50101000000001, 326} + {277.50101000000001, 279.78100999999998} Style @@ -63696,66 +63457,43 @@ public} Color b - 0.734694 + 0.382653 g - 0.734694 + 0.382653 r - 0.734694 + 0.382653 HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 - Tail - - ID - 1332 - Bounds - {{258.94501000000002, 176}, {48.157501000000003, 36}} + {{226.50101000000001, 299.78100999999998}, {56, 26.1462}} Class ShapedGraphic FontInfo - Color - - b - 0.69898 - g - 0.69898 - r - 0.69898 - Font - Helvetica + GillSans Size - 12 + 14 ID - 1332 + 146 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.885418 - g - 0.959184 - r - 0.880584 - + Draws + NO shadow @@ -63764,70 +63502,49 @@ public} stroke - Color - - b - 0.734694 - g - 0.734694 - r - 0.734694 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red178\green178\blue178;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf2 C4} +\f0\fs28 \cf0 tree} VerticalPad 0 + Wrap + NO Bounds - {{402.01299999999998, 176}, {70.022201999999993, 36}} + {{226.50101000000001, 276.78100999999998}, {56, 26.1462}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + GillSans Size - 10 + 14 ID - 1330 + 145 Shape Rectangle Style fill - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - + Draws + NO shadow @@ -63836,46 +63553,36 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 master} +\f0\fs28 \cf0 blob} VerticalPad 0 + Wrap + NO Class LineGraphic - Head - - ID - 1304 - ID - 1325 + 141 Points - {185.52111524679643, 176.13843005108876} - {148.89639454747424, 144.23157107989996} + {390.01598999999999, 303.85399999999998} + {234.48598999999999, 303.85399999999998} Style @@ -63884,64 +63591,49 @@ public} Color b - 0.734694 + 0.382653 g - 0.734694 + 0.382653 r - 0.734694 + 0.382653 HeadArrow - FilledArrow + 0 Legacy TailArrow 0 + Width + 2 - Tail - - ID - 1324 - Bounds - {{181.94501, 176}, {48.157501000000003, 36}} + {{270.50101000000001, 216.85400000000001}, {76, 22}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo - Color - - b - 0.69898 - g - 0.69898 - r - 0.69898 - Font - Helvetica + Courier Size - 12 + 18 ID - 1324 + 140 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.885418 - g - 0.959184 - r - 0.880584 - + Draws + NO shadow @@ -63950,94 +63642,117 @@ public} stroke - Color - - b - 0.734694 - g - 0.734694 - r - 0.734694 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red178\green178\blue178;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf2 C3} +\f0\fs36 \cf0 10af9..} VerticalPad 0 + Wrap + NO + Bounds + {{346.50101000000001, 247.85400000000001}, {27, 22}} Class - LineGraphic - Head + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo - ID - 1304 + Color + + b + 0.489796 + g + 0.489796 + r + 0.489796 + + Font + GillSans + Size + 18 ID - 1308 - Points - - {180.44501000000002, 126.37} - {153.97250099999999, 126.37} - + 139 + Shape + Rectangle Style + fill + + Draws + NO + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 + Draws + NO - Tail + Text - ID - 1307 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf2 size} + VerticalPad + 0 + Wrap + NO Bounds - {{181.94501, 108.37}, {48.157501000000003, 36}} + {{241.00101000000001, 247.85400000000001}, {39, 22}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + GillSans-Bold Size - 12 + 18 ID - 1307 + 138 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -64046,94 +63761,199 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C5} +\f0\b\fs36 \cf0 tree} VerticalPad 0 + Wrap + NO Class - LineGraphic - Head - - ID - 1299 - - ID - 1306 - Points + Group + Graphics - {102.81500000000003, 126.37} - {76.657500999999982, 126.37} - - Style - - stroke - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 + Class + LineGraphic + ID + 135 + Points + + {334.50900000000001, 243.179} + {334.50900000000001, 276.38400000000001} + + Style + + stroke + + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + - - Tail - - ID - 1304 - + + Class + LineGraphic + ID + 136 + Points + + {391.73599000000002, 277.38400000000001} + {231.50101000000001, 277.38400000000001} + + Style + + stroke + + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Bounds + {{231.50101000000001, 241.85400000000001}, {160.23500000000001, 86.146004000000005}} + Class + ShapedGraphic + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 137 + Shape + Rectangle + Style + + fill + + Color + + b + 1 + g + 0.806818 + r + 0.813024 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + CornerRadius + 5 + Width + 3 + + + Text + + VerticalPad + 0 + + + + ID + 134 Bounds - {{104.315, 108.37}, {48.157501000000003, 36}} + {{102.86499999999999, 165.60400000000001}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Courier Size 12 ID - 1304 + 125 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -64142,61 +63962,53 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C2} +\f0\fs24 \cf0 Scott} VerticalPad 0 + Wrap + NO Bounds - {{27, 108.37}, {48.157501000000003, 36}} + {{102.86499999999999, 144.60400000000001}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Courier Size 12 ID - 1299 + 124 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -64205,221 +64017,163 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C1} +\f0\fs24 \cf0 Scott} VerticalPad 0 + Wrap + NO - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - - Lock - NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 2 - OutlineStyle - Basic - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - 334 - UniqueID - 36 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 553}} - Class - SolidGraphic - ID - 2 - Style - - stroke - - Draws - NO - - - - BaseZoom - 0 - CanvasOrigin - {0, 0} - CanvasSize - {756, 553} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - + Bounds + {{110.36499999999999, 123.604}, {22, 14}} Class - LineGraphic - Head + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo - ID - 1356 + Font + Courier + Size + 12 ID - 1367 - Points - - {488.44500999999997, 126.37} - {462.60251100000005, 126.37} - + 123 + Shape + Rectangle Style + fill + + Draws + NO + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - Tail + Text - ID - 1362 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 nil} + VerticalPad + 0 + Wrap + NO + Bounds + {{103.86499999999999, 101.604}, {37, 14}} Class - LineGraphic - Head + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo - ID - 1363 + Font + Courier + Size + 12 ID - 1366 - Points - - {642.44501000000002, 126.37} - {616.60251099999994, 126.37} - + 122 + Shape + Rectangle Style + fill + + Draws + NO + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - Tail + Text - ID - 1365 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0de24} + VerticalPad + 0 + Wrap + NO Bounds - {{643.94501000000002, 108.37}, {48.157501000000003, 36}} + {{29.879000000000001, 184.78101000000001}, {140, 22}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Monaco Size - 12 + 8 ID - 1365 + 95 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -64428,96 +64182,85 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Align + 0 + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural -\f0\fs24 \cf0 C10'} +\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 +my commit message goes here\ +and it is really, really cool} VerticalPad 0 + Wrap + NO Class LineGraphic - Head - - ID - 1362 - ID - 1364 + 93 Points - {565.44501000000002, 126.37} - {539.60251099999994, 126.37} + {94.372001999999995, 182.42699999999999} + {94.372001999999995, 96.281302999999994} Style stroke + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 - Tail - - ID - 1363 - Bounds - {{566.94501000000002, 108.37}, {48.157501000000003, 36}} + {{29.879000000000001, 157.95799}, {56, 26.1462}} Class ShapedGraphic FontInfo Font - Helvetica + GillSans Size - 12 + 14 ID - 1363 + 92 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -64526,61 +64269,49 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C4'} +\f0\fs28 \cf0 committer} VerticalPad 0 + Wrap + NO Bounds - {{489.94501000000002, 108.37}, {48.157501000000003, 36}} + {{25.879000000000001, 136.45799}, {56, 26.1462}} Class ShapedGraphic FontInfo Font - Helvetica + GillSans Size - 12 + 14 ID - 1362 + 86 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -64589,96 +64320,100 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C3'} +\f0\fs28 \cf0 author} VerticalPad 0 + Wrap + NO + Bounds + {{25.879000000000001, 115.458}, {56, 26.1462}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 1354 + Font + GillSans + Size + 14 ID - 1357 - Points - - {411.44501000000002, 126.37} - {385.60251100000005, 126.37} - + 85 + Shape + Rectangle Style + fill + + Draws + NO + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - Tail + Text - ID - 1356 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 parent} + VerticalPad + 0 + Wrap + NO Bounds - {{412.94501000000002, 108.37}, {48.157501000000003, 36}} + {{25.879000000000001, 94.458297999999999}, {56, 26.1462}} Class ShapedGraphic FontInfo Font - Helvetica + GillSans Size - 12 + 14 ID - 1356 + 84 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -64687,102 +64422,73 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C9'} +\f0\fs28 \cf0 tree} VerticalPad 0 + Wrap + NO Class LineGraphic - Head - - ID - 1341 - ID - 1355 + 83 Points - {334.44501000000002, 126.37} - {308.60251100000005, 126.37} + {173.89400000000001, 182.60400000000001} + {24.364000000000001, 182.60400000000001} Style stroke + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 + Width + 2 - Tail - - ID - 1354 - - Bounds - {{335.94501000000002, 108.37}, {48.157501000000003, 36}} Class - ShapedGraphic - FontInfo - - Font - Helvetica - Size - 12 - + LineGraphic ID - 1354 - Shape - RoundRect + 82 + Points + + {174.37899999999999, 161.60400000000001} + {24.850000000000001, 161.60400000000001} + Style - fill - - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - - - shadow - - Draws - NO - stroke Color @@ -64794,122 +64500,111 @@ public} r 0.382653 + HeadArrow + 0 + Legacy + + TailArrow + 0 Width - 3 + 2 - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 C8'} - VerticalPad - 0 - Class LineGraphic - Head - - ID - 1365 - ID - 1353 + 81 Points - {668.02399759159061, 170.00000000001481} - {668.02386626291059, 145.86999999997795} + {174.40799999999999, 140.60400000000001} + {24.879000000000001, 140.60400000000001} Style stroke + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 + Width + 2 - Tail - - ID - 1330 - Class LineGraphic - Head - - ID - 1307 - ID - 1343 + 80 Points - {257.44501000000002, 126.37} - {231.60251099999999, 126.37} + {173.89400000000001, 119.604} + {24.364000000000001, 119.604} Style stroke + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 + Width + 2 - Tail - - ID - 1341 - Bounds - {{258.94501000000002, 108.37}, {48.157501000000003, 36}} + {{466.18599999999998, 111.604}, {149, 99}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Monaco Size - 12 + 8 ID - 1341 + 75 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -64918,70 +64613,64 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Align + 0 + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural -\f0\fs24 \cf0 C6} +\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 +== LICENSE:\ +\ +(The MIT License)\ +\ +Copyright (c) 2007 Tom Preston-\ +\ +Permission is hereby granted, f\ +ree of charge, to any person ob\ +} VerticalPad 0 + Wrap + NO Bounds - {{633.01300000000003, 171}, {70.022201999999993, 36}} + {{60.872002000000002, 29.604299999999999}, {76, 22}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Courier Size - 10 + 18 ID - 1330 + 67 Shape Rectangle Style fill - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - + Draws + NO shadow @@ -64990,190 +64679,310 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 master} +\f0\fs36 \cf0 98ca9..} VerticalPad 0 + Wrap + NO Class - LineGraphic - Head - - ID - 1304 - - ID - 1308 - Points + Group + Graphics - {180.44501000000002, 126.37} - {153.97250099999999, 126.37} - - Style - - stroke - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 + Bounds + {{134.87199000000001, 63.235298}, {27, 26.1462}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.489796 + g + 0.489796 + r + 0.489796 + + Font + GillSans + Size + 18 + + ID + 40 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf2 size} + VerticalPad + 0 + + Wrap + NO - - Tail - - ID - 1307 - - - - Bounds - {{181.94501, 108.37}, {48.157501000000003, 36}} - Class - ShapedGraphic - FontInfo - - Font - Helvetica - Size - 12 - - ID - 1307 - Shape - RoundRect - Style - - fill - Color + Bounds + {{37.872002000000002, 63.235298}, {56, 26.1462}} + Class + ShapedGraphic + FontInfo - b - 0.837205 - g - 0.959184 - r - 0.826135 + Font + GillSans-Bold + Size + 18 + + ID + 41 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\b\fs36 \cf0 commit} + VerticalPad + 0 + + Wrap + NO - shadow - Draws - NO + Class + LineGraphic + ID + 42 + Points + + {120.872, 58.481299999999997} + {120.872, 96.512298999999999} + + Style + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + - stroke - Color + Class + LineGraphic + ID + 43 + Points + + {175.87199000000001, 96.512298999999999} + {21.872, 96.512298999999999} + + Style - b - 0.382653 - g - 0.382653 - r - 0.382653 + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + - Width - 3 - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 C5} - VerticalPad - 0 - - - - Class - LineGraphic - Head - - ID - 1299 - - ID - 1306 - Points - - {102.81500000000003, 126.37} - {76.657500999999982, 126.37} - - Style - - stroke - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 + Bounds + {{21.872, 56.104301}, {154, 154.5}} + Class + ShapedGraphic + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 44 + Shape + Rectangle + Style + + fill + + Color + + b + 0.757488 + g + 1 + r + 0.738389 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + CornerRadius + 5 + Width + 3 + + + Text + + VerticalPad + 0 + - - Tail - - ID - 1304 - + + ID + 39 Bounds - {{104.315, 108.37}, {48.157501000000003, 36}} + {{501.18599999999998, 46.604301}, {76, 22}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Courier Size - 12 + 18 ID - 1304 + 19 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -65182,94 +64991,291 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C2} +\f0\fs36 \cf0 e8455..} VerticalPad 0 + Wrap + NO - Bounds - {{27, 108.37}, {48.157501000000003, 36}} Class - ShapedGraphic - FontInfo - - Font - Helvetica - Size - 12 - - ID - 1299 - Shape - RoundRect - Style - - fill + Group + Graphics + - Color + Bounds + {{575.18597, 77.604301000000007}, {27, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo - b - 0.837205 - g - 0.959184 - r - 0.826135 + Color + + b + 0.489796 + g + 0.489796 + r + 0.489796 + + Font + GillSans + Size + 18 - - shadow - - Draws + ID + 21 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf2 size} + VerticalPad + 0 + + Wrap NO - stroke - Color + Bounds + {{471.18599999999998, 77.604301000000007}, {40, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo - b - 0.382653 - g - 0.382653 - r - 0.382653 + Font + GillSans + Size + 18 - Width - 3 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} + ID + 22 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C1} - VerticalPad - 0 - +\f0\b\fs36 \cf0 blob} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + ID + 23 + Points + + {561.18597, 73.604301000000007} + {561.18597, 105.604} + + Style + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Class + LineGraphic + ID + 24 + Points + + {616.18597, 105.604} + {462.18599999999998, 105.604} + + Style + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Bounds + {{462.18599999999998, 71.604301000000007}, {154, 130}} + Class + ShapedGraphic + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 25 + Shape + Rectangle + Style + + fill + + Color + + b + 0.749742 + g + 0.760597 + r + 1 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + CornerRadius + 5 + Width + 3 + + + Text + + VerticalPad + 0 + + + + ID + 20 GridInfo @@ -65309,9 +65315,7 @@ public} 0.0 Orientation - 2 - OutlineStyle - Basic + 1 PrintOnePage RowAlign @@ -65319,9 +65323,9 @@ public} RowSpacing 36 SheetTitle - 335 + example one UniqueID - 37 + 66 VPages 1 @@ -65351,8 +65355,6 @@ public} 0 CanvasOrigin {0, 0} - CanvasSize - {756, 553} ColumnAlign 1 ColumnSpacing @@ -65361,20 +65363,176 @@ public} 1 in = 1.00000 in GraphicsList + + Bounds + {{325.14301, 173.97900000000001}, {58, 14}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Courier + Size + 12 + + ID + 250 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Rakefile} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{279.67401000000001, 173.92400000000001}, {37, 14}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Courier + Size + 12 + + ID + 249 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 bc52a} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{223.90799999999999, 167.92400000000001}, {56, 26.1462}} + Class + ShapedGraphic + FontInfo + + Font + GillSans + Size + 14 + + ID + 248 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 blob} + VerticalPad + 0 + + Wrap + NO + Class LineGraphic - Head - - ID - 1304 - ID - 1342 + 247 Points - {344.93799000000001, 283.37} - {317.02750100000003, 283.37} + {389.23599000000002, 193.73699999999999} + {233.70500000000001, 193.73699999999999} Style @@ -65383,12 +65541,38 @@ public} Color b - 0 + 0.382653 g - 0.0431373 + 0.382653 r - 0.85098 + 0.382653 + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 2 + + + + + Class + LineGraphic + ID + 245 + Points + + {400.73401000000001, 379.33301} + {455, 391.38299999999998} + {496.41100999999998, 391} + + Style + + stroke + HeadArrow FilledArrow Legacy @@ -65398,13 +65582,64 @@ public} TailArrow 0 Width - 4 + 3 - Tail + + + Class + LineGraphic + ID + 244 + Points + + {394.32299999999998, 183.33299} + {452.66699, 214.81100000000001} + {490, 220.964} + + Style - ID - 1339 + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 + + + + + Class + LineGraphic + ID + 242 + Points + + {394.32299999999998, 154} + {442, 62} + {490, 51.604301} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 + @@ -65413,14 +65648,14 @@ public} Head ID - 1339 + 140 ID - 1341 + 240 Points - {370.5170095667749, 232.99999999998579} - {370.51684476447707, 263.87000000002143} + {298.77330805032722, 214.81100000000004} + {305.20124592090497, 303.33301} Style @@ -65434,52 +65669,70 @@ public} 1 TailArrow 0 + Width + 3 Tail ID - 1340 + 219 + + + + Class + LineGraphic + ID + 239 + Points + + {181, 106.664} + {224, 79} + {262, 88} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 + Bounds - {{335.50601, 196}, {70.022201999999993, 36}} + {{469.18599999999998, 446.25}, {140, 77}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Monaco Size - 10 + 8 ID - 1340 + 237 Shape Rectangle Style fill - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - + Draws + NO shadow @@ -65488,70 +65741,62 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 + Draws + NO Text + Align + 0 + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural -\f0\fs20 \cf2 hotfix} +\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 +require 'grit/git-ruby/reposi\ +require 'grit/git-ruby/file_i\ +\ +module Grit\ + module Tricks\ + \ +} VerticalPad 0 + Wrap + NO Bounds - {{346.43799000000001, 265.37}, {48.157501000000003, 36}} + {{504.18599999999998, 381.25}, {76, 22}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo - Color - - b - 0 - g - 0 - r - 0.501961 - Font - Helvetica + Courier Size - 12 + 18 ID - 1339 + 236 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -65560,96 +65805,310 @@ public} stroke - Color - - b - 0 - g - 0.0431373 - r - 0.85098 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red128\green0\blue0;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf2 C4} +\f0\fs36 \cf0 0ad1a..} VerticalPad 0 + Wrap + NO Class - LineGraphic - Head - - ID - 1304 - - ID - 1338 - Points + Group + Graphics - {349.26844597163137, 329.76514174269204} - {312.69704447311381, 300.41985894889717} - - Style - - stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Bounds + {{578.18597, 413.81900000000002}, {27, 16.753799000000001}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.489796 + g + 0.489796 + r + 0.489796 + + Font + GillSans + Size + 18 + + ID + 231 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf2 size} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{474.18599999999998, 414.81900000000002}, {40, 16.753799000000001}} + Class + ShapedGraphic + FontInfo + + Font + GillSans + Size + 18 + + ID + 232 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\b\fs36 \cf0 blob} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + ID + 233 + Points + + {564.18597, 407.77301} + {564.18597, 438.142} + + Style + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Class + LineGraphic + ID + 234 + Points + + {619.18597, 440.142} + {465.18599999999998, 440.142} + + Style + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Bounds + {{465.18599999999998, 406.25}, {154, 99}} + Class + ShapedGraphic + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 235 + Shape + Rectangle + Style + + fill + + Color + + b + 0.749742 + g + 0.760597 + r + 1 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + CornerRadius + 5 + Width + 3 + + + Text + + VerticalPad + 0 + - - Tail - - ID - 1337 - + + ID + 230 Bounds - {{346.43799000000001, 328.815}, {48.157501000000003, 36}} + {{467.68599999999998, 275.60399999999998}, {116, 88}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Monaco Size - 12 + 8 ID - 1337 + 229 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -65658,105 +66117,63 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Align + 0 + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural -\f0\fs24 \cf0 C3} +\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 +require 'grit/index'\ +require 'grit/status'\ +\ +\ +module Grit\ + class << self\ + attr_accessor :debug\ +} VerticalPad 0 - - - Class - LineGraphic - Head - - ID - 1337 - - ID - 1336 - Points - - {370.5170106431695, 397.92499000001391} - {370.51684368114803, 366.31499999997902} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1335 - + Wrap + NO Bounds - {{335.50601, 398.92498999999998}, {70.022201999999993, 36}} + {{502.68599999999998, 210.60400000000001}, {76, 22}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Courier Size - 10 + 18 ID - 1335 + 228 Shape Rectangle Style fill - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - + Draws + NO shadow @@ -65765,306 +66182,310 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 iss53} +\f0\fs36 \cf0 bc52a..} VerticalPad 0 + Wrap + NO Class - LineGraphic - Head - - ID - 1304 - - ID - 1334 - Points + Group + Graphics - {291.44899777059578, 232.99999999998795} - {291.44884629734804, 263.87000000001808} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1316 - - - - Bounds - {{256.43799000000001, 196}, {70.022201999999993, 36}} - Class - ShapedGraphic - FontInfo - - Color - - b - 0.8 - g - 0.8 - r - 0.8 - - Font - LucidaGrande - Size - 10 - - ID - 1316 - Shape - Rectangle - Style - - fill - Color + Bounds + {{576.68597, 241.26499999999999}, {27, 20.755400000000002}} + Class + ShapedGraphic + FontInfo - b - 0.933333 - g - 0.933333 - r - 0.933333 + Color + + b + 0.489796 + g + 0.489796 + r + 0.489796 + + Font + GillSans + Size + 18 - - shadow - - Draws + ID + 223 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf2 size} + VerticalPad + 0 + + Wrap NO - stroke - Color + Bounds + {{472.68599999999998, 241.26499999999999}, {40, 20.755400000000002}} + Class + ShapedGraphic + FontInfo - b - 0.382653 - g - 0.382653 - r - 0.382653 + Font + GillSans + Size + 18 - Width - 2 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} + ID + 224 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 master} - VerticalPad - 0 - - - - Class - LineGraphic - Head - - ID - 1299 - - ID - 1306 - Points - - {265.87, 283.37} - {239.712491, 283.37} - - Style - - stroke +\f0\b\fs36 \cf0 blob} + VerticalPad + 0 + + Wrap + NO + - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 + Class + LineGraphic + ID + 225 + Points + + {562.68597, 237.49100000000001} + {562.68597, 267.68099999999998} + + Style + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + - - Tail - - ID - 1304 - - - - Bounds - {{267.37, 265.37}, {48.157501000000003, 36}} - Class - ShapedGraphic - FontInfo - - Color - b - 0 - g - 0 - r - 0.501961 + Class + LineGraphic + ID + 226 + Points + + {617.68597, 267.68099999999998} + {463.68599999999998, 267.68099999999998} + + Style + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + - Font - Helvetica - Size - 12 - - ID - 1304 - Shape - RoundRect - Style - - fill - Color + Bounds + {{463.68599999999998, 235.60400000000001}, {154, 122.646}} + Class + ShapedGraphic + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 227 + Shape + Rectangle + Style - b - 0.837205 - g - 0.959184 - r - 0.826135 + fill + + Color + + b + 0.749742 + g + 0.760597 + r + 1 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + CornerRadius + 5 + Width + 3 + - - shadow - - Draws - NO - - stroke - - Color + Text - b - 0 - g - 0.0431373 - r - 0.85098 + VerticalPad + 0 - Width - 3 - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red128\green0\blue0;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf2 C2} - VerticalPad - 0 - - - - Class - LineGraphic - Head - - ID - 1302 - - ID - 1303 - Points - - {188.55499000000003, 283.37} - {162.39750099999998, 283.37} - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 - - - Tail - - ID - 1299 - + ID + 222 Bounds - {{112.73999999999999, 265.37}, {48.157501000000003, 36}} + {{327.47000000000003, 199.86501000000001}, {22, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Courier Size 12 ID - 1302 + 221 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -66073,61 +66494,53 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C0} +\f0\fs24 \cf0 lib} VerticalPad 0 + Wrap + NO Bounds - {{190.05499, 265.37}, {48.157501000000003, 36}} + {{326.23498999999998, 147.64599999999999}, {44, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Courier Size 12 ID - 1299 + 220 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -66136,195 +66549,53 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C1} +\f0\fs24 \cf0 README} VerticalPad 0 - - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - - Lock + Wrap NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 2 - OutlineStyle - Basic - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - branch-simple 3 - UniqueID - 20 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 553}} - Class - SolidGraphic - ID - 2 - Style - - stroke - - Draws - NO - - - - BaseZoom - 0 - CanvasOrigin - {0, 0} - CanvasSize - {756, 553} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - - - Class - LineGraphic - Head - - ID - 1339 - - ID - 1342 - Points - - {369.31077158916986, 232.9999410353864} - {368.97552170509726, 263.87008844868535} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1341 - Bounds - {{334.50601, 196}, {70.022201999999993, 36}} + {{279.76501000000002, 200.81100000000001}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Courier Size - 10 + 12 ID - 1341 + 219 Shape Rectangle Style fill - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - + Draws + NO shadow @@ -66333,102 +66604,39 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 hotfix} +\f0\fs24 \cf0 10af9} VerticalPad 0 + Wrap + NO Class LineGraphic - Head - - ID - 1304 - ID - 1340 + 218 Points - {343.185, 283.37} - {317.02750100000003, 283.37} + {319.52899000000002, 222} + {320.52899000000002, 144.59100000000001} Style - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1339 - - - - Bounds - {{344.685, 265.37}, {48.157501000000003, 36}} - Class - ShapedGraphic - FontInfo - - Font - Helvetica - Size - 12 - - ID - 1339 - Shape - RoundRect - Style - - fill - - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - - - shadow - - Draws - NO - stroke Color @@ -66440,87 +66648,41 @@ public} r 0.382653 - Width - 3 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 C4} - VerticalPad - 0 - - - - Class - LineGraphic - Head - - ID - 1304 - - ID - 1338 - Points - - {347.46211928731168, 323.73625230048128} - {313.50337069315265, 299.26374936597466} - - Style - - stroke - HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 - Tail - - ID - 1337 - Bounds - {{345.43799000000001, 321.63}, {48.157501000000003, 36}} + {{279.76598999999999, 147.59100000000001}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Courier Size 12 ID - 1337 + 217 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -66529,105 +66691,81 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C3} +\f0\fs24 \cf0 e8455} VerticalPad 0 + Wrap + NO Class LineGraphic - Head - - ID - 1337 - ID - 1336 + 216 Points - {369.5170106431695, 390.7399900000139} - {369.51684368114803, 359.12999999997908} + {274, 222} + {275, 144.59100000000001} Style stroke + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 - Tail - - ID - 1335 - Bounds - {{334.50601, 391.73998999999998}, {70.022201999999993, 36}} + {{224, 193.73699999999999}, {56, 26.1462}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + GillSans Size - 10 + 14 ID - 1335 + 215 Shape Rectangle Style fill - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - + Draws + NO shadow @@ -66636,105 +66774,49 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 iss53} +\f0\fs28 \cf0 tree} VerticalPad 0 - - - Class - LineGraphic - Head - - ID - 1304 - - ID - 1334 - Points - - {291.44899777059578, 232.99999999998795} - {291.44884629734804, 263.87000000001808} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1316 - + Wrap + NO Bounds - {{256.43799000000001, 196}, {70.022201999999993, 36}} + {{224, 141.59100000000001}, {56, 26.1462}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + GillSans Size - 10 + 14 ID - 1316 + 214 Shape Rectangle Style fill - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - + Draws + NO shadow @@ -66743,94 +66825,87 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 master} +\f0\fs28 \cf0 blob} VerticalPad 0 + Wrap + NO Class LineGraphic - Head - - ID - 1299 - ID - 1306 + 213 Points - {265.87, 283.37} - {239.712491, 283.37} + {387.51598999999999, 168.66399999999999} + {231.98500000000001, 168.66399999999999} Style stroke + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + HeadArrow - FilledArrow + 0 Legacy TailArrow 0 + Width + 2 - Tail - - ID - 1304 - Bounds - {{267.37, 265.37}, {48.157501000000003, 36}} + {{268, 81.664398000000006}, {76, 22}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Courier Size - 12 + 18 ID - 1304 + 212 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -66839,94 +66914,117 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C2} +\f0\fs36 \cf0 0de24..} VerticalPad 0 + Wrap + NO + Bounds + {{344, 112.664}, {27, 22}} Class - LineGraphic - Head + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo - ID - 1302 + Color + + b + 0.489796 + g + 0.489796 + r + 0.489796 + + Font + GillSans + Size + 18 ID - 1303 - Points - - {188.55499000000003, 283.37} - {162.39750099999998, 283.37} - + 211 + Shape + Rectangle Style + fill + + Draws + NO + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 + Draws + NO - Tail + Text - ID - 1299 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf2 size} + VerticalPad + 0 + Wrap + NO Bounds - {{112.73999999999999, 265.37}, {48.157501000000003, 36}} + {{238.5, 112.664}, {39, 22}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + GillSans-Bold Size - 12 + 18 ID - 1302 + 210 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -66935,61 +67033,199 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C0} +\f0\b\fs36 \cf0 tree} VerticalPad 0 + Wrap + NO + + + Class + Group + Graphics + + + Class + LineGraphic + ID + 207 + Points + + {332.00900000000001, 108.45} + {332.00900000000001, 139.33099000000001} + + Style + + stroke + + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Class + LineGraphic + ID + 208 + Points + + {389.23599000000002, 141.59100000000001} + {229.00101000000001, 141.59100000000001} + + Style + + stroke + + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Bounds + {{229.00101000000001, 106.664}, {160.23500000000001, 116.003}} + Class + ShapedGraphic + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 209 + Shape + Rectangle + Style + + fill + + Color + + b + 1 + g + 0.806818 + r + 0.813024 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + CornerRadius + 5 + Width + 3 + + + Text + + VerticalPad + 0 + + + + ID + 206 Bounds - {{190.05499, 265.37}, {48.157501000000003, 36}} + {{331.23498999999998, 369.315}, {44, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Courier Size 12 ID - 1299 + 157 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -66998,195 +67234,85 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C1} +\f0\fs24 \cf0 git.rb} VerticalPad 0 - - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - - Lock + Wrap NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 2 - OutlineStyle - Basic - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - branch-simple 4 - UniqueID - 21 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 553}} - Class - SolidGraphic - ID - 2 - Style - - stroke - - Draws - NO - - - BaseZoom - 0 - CanvasOrigin - {0, 0} - CanvasSize - {756, 553} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - Class LineGraphic - Head - - ID - 1339 - ID - 1342 + 152 Points - {369.31077158916986, 232.9999410353864} - {368.97552170509726, 263.87008844868535} + {320.52899000000002, 389.74700999999999} + {320.52899000000002, 362.08301} Style stroke + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 - Tail - - ID - 1341 - Bounds - {{334.50601, 196}, {70.022201999999993, 36}} + {{279.76501000000002, 369.26001000000002}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + Courier Size - 10 + 12 ID - 1341 + 151 Shape Rectangle Style fill - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - + Draws + NO shadow @@ -67195,96 +67321,81 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 hotfix} +\f0\fs24 \cf0 0ad1a} VerticalPad 0 + Wrap + NO Class LineGraphic - Head - - ID - 1304 - ID - 1340 + 150 Points - {343.185, 283.37} - {317.02750100000003, 283.37} + {275.00101000000001, 390.64301} + {275.00101000000001, 362.97899999999998} Style stroke + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 - Tail - - ID - 1339 - Bounds - {{344.685, 265.37}, {48.157501000000003, 36}} + {{224, 363.26001000000002}, {56, 26.1462}} Class ShapedGraphic FontInfo Font - Helvetica + GillSans Size - 12 + 14 ID - 1339 + 145 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -67293,96 +67404,53 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C4} +\f0\fs28 \cf0 blob} VerticalPad 0 - - - Class - LineGraphic - Head - - ID - 1304 - - ID - 1338 - Points - - {347.46211928731168, 323.73625230048128} - {313.50337069315265, 299.26374936597466} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1337 - + Wrap + NO Bounds - {{345.43799000000001, 321.63}, {48.157501000000003, 36}} + {{268, 303.33301}, {76, 22}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Courier Size - 12 + 18 ID - 1337 + 140 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -67391,105 +67459,62 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C3} +\f0\fs36 \cf0 10af9..} VerticalPad 0 - - - Class - LineGraphic - Head - - ID - 1337 - - ID - 1336 - Points - - {369.5170106431695, 390.7399900000139} - {369.51684368114803, 359.12999999997908} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1335 - + Wrap + NO Bounds - {{334.50601, 391.73998999999998}, {70.022201999999993, 36}} + {{344, 334.33301}, {27, 22}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Color b - 0.8 + 0.489796 g - 0.8 + 0.489796 r - 0.8 + 0.489796 Font - LucidaGrande + GillSans Size - 10 + 18 ID - 1335 + 139 Shape Rectangle Style fill - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - + Draws + NO shadow @@ -67498,105 +67523,53 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 iss53} +\f0\fs36 \cf2 size} VerticalPad 0 - - - Class - LineGraphic - Head - - ID - 1339 - - ID - 1334 - Points - - {369.403841742076, 175.99998223046148} - {368.88000047712592, 263.87002665430754} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1316 - + Wrap + NO Bounds - {{334.50601, 139}, {70.022201999999993, 36}} + {{238.5, 335}, {39, 22}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + GillSans-Bold Size - 10 + 18 ID - 1316 + 138 Shape - Rectangle - Style - - fill - - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - + Rectangle + Style + + fill + + Draws + NO shadow @@ -67605,94 +67578,216 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 master} +\f0\b\fs36 \cf0 tree} VerticalPad 0 + Wrap + NO Class - LineGraphic - Head - - ID - 1299 - - ID - 1306 - Points + Group + Graphics - {265.87, 283.37} - {239.712491, 283.37} - - Style - - stroke - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 + Class + LineGraphic + FontInfo + + Font + Helvetica + Size + 13 + + ID + 135 + Points + + {332.49200000000002, 335.19900999999999} + {332.49200000000002, 360.04401000000001} + {332.49200000000002, 356.90399000000002} + + Style + + stroke + + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + - - Tail - - ID - 1304 - + + Class + LineGraphic + FontInfo + + Font + Helvetica + Size + 13 + + ID + 246 + Points + + {389.49898999999999, 361.06601000000001} + {229.26401000000001, 361.06601000000001} + + Rotation + 352.34844970703125 + Style + + stroke + + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Bounds + {{229.48399000000001, 334.33301}, {160.23500000000001, 56.310001}} + Class + ShapedGraphic + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 16 + + ID + 137 + Shape + Rectangle + Style + + fill + + Color + + b + 1 + g + 0.806818 + r + 0.813024 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + CornerRadius + 5 + Width + 3 + + + Text + + VerticalPad + 0 + + + + ID + 134 Bounds - {{267.37, 265.37}, {48.157501000000003, 36}} + {{102.86499999999999, 165.60400000000001}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Courier Size 12 ID - 1304 + 125 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -67701,94 +67796,53 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C2} +\f0\fs24 \cf0 Scott} VerticalPad 0 - - - Class - LineGraphic - Head - - ID - 1302 - - ID - 1303 - Points - - {188.55499000000003, 283.37} - {162.39750099999998, 283.37} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 - - - Tail - - ID - 1299 - + Wrap + NO Bounds - {{112.73999999999999, 265.37}, {48.157501000000003, 36}} + {{102.86499999999999, 144.60400000000001}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Courier Size 12 ID - 1302 + 124 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -67797,61 +67851,53 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C0} +\f0\fs24 \cf0 Scott} VerticalPad 0 + Wrap + NO Bounds - {{190.05499, 265.37}, {48.157501000000003, 36}} + {{110.36499999999999, 123.604}, {22, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Courier Size 12 ID - 1299 + 123 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -67860,186 +67906,108 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C1} +\f0\fs24 \cf0 nil} VerticalPad 0 - - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - - Lock + Wrap NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 2 - OutlineStyle - Basic - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - branch-simple 5 - UniqueID - 22 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 553}} - Class - SolidGraphic - ID - 2 - Style - - stroke - - Draws - NO - - - BaseZoom - 0 - CanvasOrigin - {0, 0} - CanvasSize - {756, 553} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - + Bounds + {{103.86499999999999, 101.604}, {37, 14}} Class - LineGraphic - Head + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo - ID - 1337 + Font + Courier + Size + 12 ID - 1344 - Points - - {418.5, 339.63} - {395.09549100000004, 339.63} - + 122 + Shape + Rectangle Style + fill + + Draws + NO + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - Tail + Text - ID - 1343 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0de24} + VerticalPad + 0 + Wrap + NO Bounds - {{420, 321.63}, {48.157501000000003, 36}} + {{29.879000000000001, 184.78101000000001}, {140, 22}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Monaco Size - 12 + 8 ID - 1343 + 95 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -68048,96 +68016,85 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Align + 0 + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural -\f0\fs24 \cf0 C5} +\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 +my commit message goes here\ +and it is really, really cool} VerticalPad 0 + Wrap + NO Class LineGraphic - Head - - ID - 1304 - ID - 1340 + 93 Points - {343.185, 283.37} - {317.02750100000003, 283.37} + {94.372001999999995, 182.42699999999999} + {94.372001999999995, 96.281302999999994} Style stroke + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 - Tail - - ID - 1339 - Bounds - {{344.685, 265.37}, {48.157501000000003, 36}} + {{29.879000000000001, 157.95799}, {56, 26.1462}} Class ShapedGraphic FontInfo Font - Helvetica + GillSans Size - 12 + 14 ID - 1339 + 92 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -68146,96 +68103,49 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C4} +\f0\fs28 \cf0 committer} VerticalPad 0 - - - Class - LineGraphic - Head - - ID - 1304 - - ID - 1338 - Points - - {347.46211928731168, 323.73625230048128} - {313.50337069315265, 299.26374936597466} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1337 - + Wrap + NO Bounds - {{345.43799000000001, 321.63}, {48.157501000000003, 36}} + {{25.879000000000001, 136.45799}, {56, 26.1462}} Class ShapedGraphic FontInfo Font - Helvetica + GillSans Size - 12 + 14 ID - 1337 + 86 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -68244,105 +68154,100 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C3} +\f0\fs28 \cf0 author} VerticalPad 0 + Wrap + NO + Bounds + {{25.879000000000001, 115.458}, {56, 26.1462}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 1343 + Font + GillSans + Size + 14 ID - 1336 - Points - - {444.07899849424331, 390.48001000001187} - {444.078845859696, 359.12999999998209} - + 85 + Shape + Rectangle Style + fill + + Draws + NO + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - Tail + Text - ID - 1335 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 parent} + VerticalPad + 0 + Wrap + NO Bounds - {{409.06799000000001, 391.48000999999999}, {70.022201999999993, 36}} + {{25.879000000000001, 94.458297999999999}, {56, 26.1462}} Class ShapedGraphic FontInfo - Color - - b - 0.8 - g - 0.8 - r - 0.8 - Font - LucidaGrande + GillSans Size - 10 + 14 ID - 1335 + 84 Shape Rectangle Style fill - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - + Draws + NO shadow @@ -68351,111 +68256,107 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 iss53} +\f0\fs28 \cf0 tree} VerticalPad 0 + Wrap + NO Class LineGraphic - Head - - ID - 1339 - ID - 1334 + 83 Points - {368.76399910314615, 231.99999999998829} - {368.76384495826545, 263.87000000001763} + {173.89400000000001, 182.60400000000001} + {24.364000000000001, 182.60400000000001} Style stroke + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 + Width + 2 - Tail - - ID - 1316 - - Bounds - {{333.75299000000001, 195}, {70.022201999999993, 36}} Class - ShapedGraphic - FontInfo - - Color - - b - 0.8 - g - 0.8 - r - 0.8 - - Font - LucidaGrande - Size - 10 - + LineGraphic ID - 1316 - Shape - Rectangle + 82 + Points + + {174.37899999999999, 161.60400000000001} + {24.850000000000001, 161.60400000000001} + Style - fill + stroke Color b - 0.933333 + 0.382653 g - 0.933333 + 0.382653 r - 0.933333 + 0.382653 + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 2 - shadow - - Draws - NO - + + + + Class + LineGraphic + ID + 81 + Points + + {174.40799999999999, 140.60400000000001} + {24.879000000000001, 140.60400000000001} + + Style + stroke Color @@ -68467,85 +68368,143 @@ public} r 0.382653 + HeadArrow + 0 + Legacy + + TailArrow + 0 Width 2 - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs20 \cf2 master} - VerticalPad - 0 - Class LineGraphic - Head - - ID - 1299 - ID - 1306 + 80 Points - {265.87, 283.37} - {239.712491, 283.37} + {173.89400000000001, 119.604} + {24.364000000000001, 119.604} Style stroke + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + HeadArrow - FilledArrow + 0 Legacy TailArrow 0 + Width + 2 - Tail + + + Bounds + {{466.18599999999998, 111.604}, {149, 99}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo - ID - 1304 + Font + Monaco + Size + 8 + + ID + 75 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural + +\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 +== LICENSE:\ +\ +(The MIT License)\ +\ +Copyright (c) 2007 Tom Preston-\ +\ +Permission is hereby granted, f\ +ree of charge, to any person ob\ +} + VerticalPad + 0 + Wrap + NO Bounds - {{267.37, 265.37}, {48.157501000000003, 36}} + {{60.872002000000002, 29.604299999999999}, {76, 22}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Courier Size - 12 + 18 ID - 1304 + 67 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -68554,94 +68513,310 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C2} +\f0\fs36 \cf0 98ca9..} VerticalPad 0 + Wrap + NO Class - LineGraphic - Head - - ID - 1302 - - ID - 1303 - Points + Group + Graphics - {188.55499000000003, 283.37} - {162.39750099999998, 283.37} - - Style - - stroke - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 + Bounds + {{134.87199000000001, 63.235298}, {27, 26.1462}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.489796 + g + 0.489796 + r + 0.489796 + + Font + GillSans + Size + 18 + + ID + 40 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf2 size} + VerticalPad + 0 + + Wrap + NO - - Tail - - ID - 1299 - + + Bounds + {{37.872002000000002, 63.235298}, {56, 26.1462}} + Class + ShapedGraphic + FontInfo + + Font + GillSans-Bold + Size + 18 + + ID + 41 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\b\fs36 \cf0 commit} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + ID + 42 + Points + + {120.872, 58.481299999999997} + {120.872, 96.512298999999999} + + Style + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Class + LineGraphic + ID + 43 + Points + + {175.87199000000001, 96.512298999999999} + {21.872, 96.512298999999999} + + Style + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Bounds + {{21.872, 56.104301}, {154, 154.5}} + Class + ShapedGraphic + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 44 + Shape + Rectangle + Style + + fill + + Color + + b + 0.757488 + g + 1 + r + 0.738389 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + CornerRadius + 5 + Width + 3 + + + Text + + VerticalPad + 0 + + + + ID + 39 Bounds - {{112.73999999999999, 265.37}, {48.157501000000003, 36}} + {{501.18599999999998, 46.604301}, {76, 22}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Courier Size - 12 + 18 ID - 1302 + 19 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -68650,94 +68825,291 @@ public} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C0} +\f0\fs36 \cf0 e8455..} VerticalPad 0 + Wrap + NO - Bounds - {{190.05499, 265.37}, {48.157501000000003, 36}} Class - ShapedGraphic - FontInfo - - Font - Helvetica - Size - 12 - - ID - 1299 - Shape - RoundRect - Style - - fill + Group + Graphics + + + Bounds + {{575.18597, 77.604301000000007}, {27, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Color + + b + 0.489796 + g + 0.489796 + r + 0.489796 + + Font + GillSans + Size + 18 + + ID + 21 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf2 size} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{471.18599999999998, 77.604301000000007}, {40, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + GillSans + Size + 18 + + ID + 22 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\b\fs36 \cf0 blob} + VerticalPad + 0 + + Wrap + NO + - Color + Class + LineGraphic + ID + 23 + Points + + {561.18597, 73.604301000000007} + {561.18597, 105.604} + + Style - b - 0.837205 - g - 0.959184 - r - 0.826135 + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + - shadow - Draws - NO + Class + LineGraphic + ID + 24 + Points + + {616.18597, 105.604} + {462.18599999999998, 105.604} + + Style + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + - stroke - Color + Bounds + {{462.18599999999998, 71.604301000000007}, {154, 130}} + Class + ShapedGraphic + FontInfo - b - 0.382653 - g - 0.382653 - r - 0.382653 + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 25 + Shape + Rectangle + Style + + fill + + Color + + b + 0.749742 + g + 0.760597 + r + 1 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + CornerRadius + 5 + Width + 3 + + + Text + + VerticalPad + 0 - Width - 3 - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 C1} - VerticalPad - 0 - + + ID + 20 GridInfo @@ -68777,9 +69149,7 @@ public} 0.0 Orientation - 2 - OutlineStyle - Basic + 1 PrintOnePage RowAlign @@ -68787,9 +69157,9 @@ public} RowSpacing 36 SheetTitle - branch-simple 6 + example one 2 UniqueID - 23 + 92 VPages 1 @@ -68807,356 +69177,35 @@ public} ID 2 Style - - stroke - - Draws - NO - - - - BaseZoom - 0 - CanvasOrigin - {0, 0} - CanvasSize - {756, 553} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - - - Bounds - {{409.06799000000001, 391.48000999999999}, {70.022201999999993, 36}} - Class - ShapedGraphic - FontInfo - - Color - - b - 0.8 - g - 0.8 - r - 0.8 - - Font - LucidaGrande - Size - 10 - - ID - 1335 - Shape - Rectangle - Style - - fill - - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs20 \cf2 iss53} - VerticalPad - 0 - - - - AllowToConnect - - Class - LineGraphic - ID - 1350 - Points - - {434, 439} - {434, 362} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - - - Bounds - {{333.75299000000001, 195}, {70.022201999999993, 36}} - Class - ShapedGraphic - FontInfo - - Color - - b - 0.8 - g - 0.8 - r - 0.8 - - Font - LucidaGrande - Size - 10 - - ID - 1316 - Shape - Rectangle - Style - - fill - - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs20 \cf2 master} - VerticalPad - 0 - - - - AllowToConnect - - Class - LineGraphic - ID - 1349 - Points - - {378, 183} - {378, 260} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - - - Bounds - {{397.82900999999998, 442}, {92.5, 34}} - Class - ShapedGraphic - FitText - YES - Flow - Resize - ID - 1348 - Shape - RoundRect - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Color - - b - 0.316327 - g - 0.316327 - r - 0.316327 - - Width - 2 - - - Text - - Pad - 3 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 Snapshot to \ -Merge In} - VerticalPad - 3 - - Wrap - NO - - - Bounds - {{322.50299000000001, 149}, {92.5, 34}} - Class - ShapedGraphic - FitText - YES - Flow - Resize - ID - 1347 - Shape - RoundRect - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Color - - b - 0.316327 - g - 0.316327 - r - 0.316327 - - Width - 2 - - - Text - - Pad - 3 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 Snapshot to \ -Merge Into} - VerticalPad - 3 + + stroke + + Draws + NO - Wrap - NO + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + Class LineGraphic - Head - - ID - 1304 - ID - 1346 + 317 Points - {291.44894357835364, 230.99999999999318} - {291.44882597513873, 262.87000000001694} + {356.5, 122} + {356.5, 149} Style @@ -69175,28 +69224,49 @@ Merge Into} Tail ID - 1345 + 316 Bounds - {{254.57400999999999, 196}, {73.75, 34}} + {{295, 65.5}, {123, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + ID - 1345 + 316 Shape - RoundRect + Rectangle Style fill - Draws - NO + Color + + b + 0.674017 + g + 1 + r + 0.668696 + shadow @@ -69208,247 +69278,250 @@ Merge Into} Color b - 0.316327 + 0.163488 g 0.316327 r - 0.316327 + 0.161591 + CornerRadius + 5 Width - 2 + 3 Text - Pad - 3 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 Common \ -Ancestor} +\f0\fs28 \cf0 commit} VerticalPad - 3 + 0 - Wrap - NO + Bounds + {{489, 341.03699}, {61, 29}} Class - LineGraphic - Head + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo - ID - 1337 + Color + + w + 0 + + Font + Monaco + Size + 14 ID - 1344 - Points - - {417.5, 339.63} - {395.09549100000004, 339.63} - + 304 + Line + + ID + 300 + Position + 0.40243896842002869 + RotationType + 0 + + Shape + Rectangle Style - stroke + shadow - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - Tail + Text - ID - 1343 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 git.rb} + Wrap + NO Bounds - {{420, 321.63}, {48.157501000000003, 36}} + {{422.54354098433112, 227.7395791626119}, {36, 29}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Color - b - 0 - g + w 0 - r - 0.501961 Font - Helvetica + Monaco Size - 12 + 14 ID - 1343 + 303 + Line + + ID + 299 + Position + 0.52816039323806763 + RotationType + 0 + Shape - RoundRect + Rectangle Style - fill - - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - - shadow Draws NO - stroke - - Color - - b - 0 - g - 0.0431373 - r - 0.85098 - - Width - 5 - Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red128\green0\blue0;} +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf2 C5} - VerticalPad - 0 +\f0\fs28 \cf0 lib} + Wrap + NO + Bounds + {{317.5, 226.37100000000001}, {78, 29}} Class - LineGraphic - Head + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo - ID - 1304 + Color + + w + 0 + + Font + Monaco + Size + 14 ID - 1340 - Points - - {342.185, 283.37} - {318.02750100000003, 283.37} - + 302 + Line + + ID + 297 + Position + 0.50892859697341919 + RotationType + 0 + + Shape + Rectangle Style - stroke + shadow - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - Tail + Text - ID - 1339 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 Rakefile} + Wrap + NO Bounds - {{344.685, 265.37}, {48.157501000000003, 36}} + {{243.24374198539067, 226.7326553797422}, {61, 29}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Color - b - 0 - g + w 0 - r - 0.501961 Font - Helvetica + Monaco Size - 12 + 14 ID - 1339 + 301 + Line + + ID + 298 + Position + 0.51390844583511353 + RotationType + 0 + Shape - RoundRect + Rectangle Style - fill - - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - - shadow Draws NO - stroke - - Color - - b - 0 - g - 0.0431373 - r - 0.85098 - - Width - 5 - Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red128\green0\blue0;} +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf2 C4} - VerticalPad - 0 +\f0\fs28 \cf0 README} + Wrap + NO Class @@ -69456,14 +69529,14 @@ Ancestor} Head ID - 1304 + 296 ID - 1338 + 300 Points - {347.46211995273671, 323.73625121282771} - {314.31465509343866, 299.84840067029467} + {519.5, 333} + {519.5, 389} Style @@ -69482,70 +69555,7 @@ Ancestor} Tail ID - 1337 - - - - Bounds - {{345.43799000000001, 321.63}, {48.157501000000003, 36}} - Class - ShapedGraphic - FontInfo - - Font - Helvetica - Size - 12 - - ID - 1337 - Shape - RoundRect - Style - - fill - - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 C3} - VerticalPad - 0 + 293 @@ -69554,14 +69564,14 @@ Ancestor} Head ID - 1343 + 293 ID - 1336 + 299 Points - {444.07899874711597, 390.4800100000117} - {444.07885138522369, 360.12999999996975} + {392.8383498825404, 204.92416919567114} + {483.16165119054523, 275.57583078704874} Style @@ -69580,7 +69590,7 @@ Ancestor} Tail ID - 1335 + 292 @@ -69589,14 +69599,14 @@ Ancestor} Head ID - 1339 + 294 ID - 1334 + 298 Points - {368.76399941949774, 231.9999999999884} - {368.76385062528169, 262.87000000002985} + {320.16165012059452, 204.92416919572165} + {229.83834882038181, 275.57583078722473} Style @@ -69615,7 +69625,7 @@ Ancestor} Tail ID - 1316 + 292 @@ -69624,14 +69634,14 @@ Ancestor} Head ID - 1299 + 295 ID - 1306 + 297 Points - {264.87, 283.37} - {239.712491, 283.37} + {356.5, 205.5} + {356.5, 275} Style @@ -69641,6 +69651,8 @@ Ancestor} FilledArrow Legacy + LineType + 1 TailArrow 0 @@ -69648,12 +69660,88 @@ Ancestor} Tail ID - 1304 + 292 + + + + Bounds + {{472, 390.5}, {95, 55}} + Class + ShapedGraphic + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 296 + Shape + Rectangle + Style + + fill + + Color + + b + 0.738389 + g + 0.749244 + r + 1 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.0465446 + g + 0.0431119 + r + 0.316327 + + CornerRadius + 5 + Width + 3 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 blob} + VerticalPad + 0 Bounds - {{267.37, 265.37}, {48.157501000000003, 36}} + {{309, 276.5}, {95, 55}} Class ShapedGraphic FontInfo @@ -69661,21 +69749,23 @@ Ancestor} Color b - 0 + 1 g - 0 + 1 r - 0.501961 + 1 Font - Helvetica + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 1304 + 295 Shape - RoundRect + Rectangle Style fill @@ -69683,11 +69773,11 @@ Ancestor} Color b - 0.837205 + 0.738389 g - 0.959184 + 0.749244 r - 0.826135 + 1 shadow @@ -69700,78 +69790,134 @@ Ancestor} Color b - 0 + 0.0465446 g - 0.0431373 + 0.0431119 r - 0.85098 + 0.316327 - Width + CornerRadius 5 + Width + 3 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red128\green0\blue0;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf2 C2} +\f0\fs28 \cf0 blob} VerticalPad 0 + Bounds + {{146, 276.5}, {95, 55}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 1302 + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 ID - 1303 - Points - - {188.55499000000003, 283.37} - {162.39750099999998, 283.37} - + 294 + Shape + Rectangle Style + fill + + Color + + b + 0.738389 + g + 0.749244 + r + 1 + + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 + Color + + b + 0.0465446 + g + 0.0431119 + r + 0.316327 + + CornerRadius + 5 + Width + 3 - Tail + Text - ID - 1299 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 blob} + VerticalPad + 0 Bounds - {{112.73999999999999, 265.37}, {48.157501000000003, 36}} + {{472, 276.5}, {95, 55}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Helvetica + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 1302 + 293 Shape - RoundRect + Rectangle Style fill @@ -69779,11 +69925,11 @@ Ancestor} Color b - 0.837205 + 1 g - 0.959184 + 0.806818 r - 0.826135 + 0.813024 shadow @@ -69796,12 +69942,14 @@ Ancestor} Color b - 0.382653 + 0.316327 g - 0.382653 + 0.139073 r - 0.382653 + 0.109175 + CornerRadius + 5 Width 3 @@ -69810,31 +69958,42 @@ Ancestor} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C0} +\f0\fs28 \cf0 tree} VerticalPad 0 Bounds - {{190.05499, 265.37}, {48.157501000000003, 36}} + {{309, 149}, {95, 55}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Helvetica + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 1299 + 292 Shape - RoundRect + Rectangle Style fill @@ -69842,11 +70001,11 @@ Ancestor} Color b - 0.837205 + 1 g - 0.959184 + 0.806818 r - 0.826135 + 0.813024 shadow @@ -69859,12 +70018,14 @@ Ancestor} Color b - 0.382653 + 0.316327 g - 0.382653 + 0.139073 r - 0.382653 + 0.109175 + CornerRadius + 5 Width 3 @@ -69873,11 +70034,11 @@ Ancestor} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C1} +\f0\fs28 \cf0 tree} VerticalPad 0 @@ -69920,9 +70081,7 @@ Ancestor} 0.0 Orientation - 2 - OutlineStyle - Basic + 1 PrintOnePage RowAlign @@ -69930,9 +70089,9 @@ Ancestor} RowSpacing 36 SheetTitle - 0316 + example one 4 UniqueID - 24 + 67 VPages 1 @@ -69962,8 +70121,6 @@ Ancestor} 0 CanvasOrigin {0, 0} - CanvasSize - {756, 553} ColumnAlign 1 ColumnSpacing @@ -69972,20 +70129,200 @@ Ancestor} 1 in = 1.00000 in GraphicsList + + Bounds + {{411.96068141107116, 218.87445079008552}, {95, 29}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Color + + w + 0 + + Font + Monaco + Size + 14 + + ID + 303 + Line + + ID + 299 + Position + 0.52831131219863892 + RotationType + 0 + + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 lib/git.rb} + + Wrap + NO + + + Bounds + {{318.14089047226281, 217.70755713547064}, {78, 29}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Color + + w + 0 + + Font + Monaco + Size + 14 + + ID + 302 + Line + + ID + 297 + Position + 0.50892859697341919 + RotationType + 0 + + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 Rakefile} + + Wrap + NO + + + Bounds + {{243.36088093601026, 219.79668443835598}, {61, 29}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Color + + w + 0 + + Font + Monaco + Size + 14 + + ID + 301 + Line + + ID + 298 + Position + 0.51390844583511353 + RotationType + 0 + + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 README} + + Wrap + NO + Class LineGraphic Head ID - 1343 + 296 ID - 1347 + 299 Points - {477.75421697488679, 302.48133914282653} - {461.40328607142885, 320.51866091798036} + {404.21204292261325, 202.85565538326779} + {508.78795709304467, 260.62234459706764} Style @@ -70004,7 +70341,7 @@ Ancestor} Tail ID - 1345 + 292 @@ -70013,14 +70350,14 @@ Ancestor} Head ID - 1339 + 294 ID - 1346 + 298 Points - {469.5, 283.37} - {394.34250100000003, 283.37} + {315.95062246268606, 204.85968732775532} + {234.04937737048007, 262.1403126698201} Style @@ -70039,25 +70376,71 @@ Ancestor} Tail ID - 1345 + 292 + + + + Class + LineGraphic + Head + + ID + 295 + + ID + 297 + Points + + {356.83363085798368, 205.49990074381995} + {357.43736900694523, 257.97809925626041} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 292 Bounds - {{471, 265.37}, {48.157501000000003, 36}} + {{509, 259.47800000000001}, {95, 55}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Helvetica + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 1345 + 296 Shape - RoundRect + Rectangle Style fill @@ -70065,11 +70448,11 @@ Ancestor} Color b - 0.762596 + 0.738389 g - 0.857143 + 0.749244 r - 0.739855 + 1 shadow @@ -70082,12 +70465,14 @@ Ancestor} Color b - 0.382653 + 0.0465446 g - 0.382653 + 0.0431119 r - 0.382653 + 0.316327 + CornerRadius + 5 Width 3 @@ -70096,66 +70481,42 @@ Ancestor} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C6} +\f0\fs28 \cf0 blob} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 1337 - - ID - 1344 - Points - - {418.5, 339.63} - {395.09549100000004, 339.63} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1343 - - Bounds - {{420, 321.63}, {48.157501000000003, 36}} + {{310.27100000000002, 259.47800000000001}, {95, 55}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Helvetica + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 1343 + 295 Shape - RoundRect + Rectangle Style fill @@ -70163,11 +70524,11 @@ Ancestor} Color b - 0.837205 + 0.738389 g - 0.959184 + 0.749244 r - 0.826135 + 1 shadow @@ -70180,12 +70541,14 @@ Ancestor} Color b - 0.382653 + 0.0465446 g - 0.382653 + 0.0431119 r - 0.382653 + 0.316327 + CornerRadius + 5 Width 3 @@ -70194,66 +70557,42 @@ Ancestor} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C5} +\f0\fs28 \cf0 blob} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 1304 - - ID - 1340 - Points - - {343.185, 283.37} - {317.02750100000003, 283.37} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1339 - - Bounds - {{344.685, 265.37}, {48.157501000000003, 36}} + {{146, 263}, {95, 55}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Helvetica + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 1339 + 294 Shape - RoundRect + Rectangle Style fill @@ -70261,11 +70600,11 @@ Ancestor} Color b - 0.837205 + 0.738389 g - 0.959184 + 0.749244 r - 0.826135 + 1 shadow @@ -70278,12 +70617,14 @@ Ancestor} Color b - 0.382653 + 0.0465446 g - 0.382653 + 0.0431119 r - 0.382653 + 0.316327 + CornerRadius + 5 Width 3 @@ -70292,66 +70633,42 @@ Ancestor} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C4} +\f0\fs28 \cf0 blob} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 1304 - - ID - 1338 - Points - - {347.46211928731168, 323.73625230048128} - {313.50337069315265, 299.26374936597466} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1337 - - Bounds - {{345.43799000000001, 321.63}, {48.157501000000003, 36}} + {{309, 149}, {95, 55}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Helvetica + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 1337 + 292 Shape - RoundRect + Rectangle Style fill @@ -70359,11 +70676,11 @@ Ancestor} Color b - 0.837205 + 1 g - 0.959184 + 0.806818 r - 0.826135 + 0.813024 shadow @@ -70376,12 +70693,14 @@ Ancestor} Color b - 0.382653 + 0.316327 g - 0.382653 + 0.139073 r - 0.382653 + 0.109175 + CornerRadius + 5 Width 3 @@ -70390,89 +70709,144 @@ Ancestor} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C3} +\f0\fs28 \cf0 tree} VerticalPad 0 + + GridInfo + + HPages + 1 + KeepToScale + + Layers + - Class - LineGraphic - Head - - ID - 1343 - - ID - 1336 - Points - - {444.07899207126394, 385.95999000001353} - {444.07885237352718, 359.12999999997953} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 1 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + example one 7 + UniqueID + 84 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 553}} + Class + SolidGraphic + FontInfo + + Font + Helvetica + Size + 12 + + ID + 2 + Style + + stroke - ID - 1335 + Draws + NO + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + Bounds - {{409.06799000000001, 386.95999}, {70.022201999999993, 36}} + {{498.56482887344919, 124.70016786078986}, {78, 29}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Color - b - 0.8 - g - 0.8 - r - 0.8 + w + 0 Font - LucidaGrande + Monaco Size - 10 + 14 ID - 1335 + 330 + Line + + ID + 325 + Position + 0.43483179807662964 + RotationType + 0 + Shape Rectangle Style - fill - - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - - shadow Draws @@ -70480,106 +70854,119 @@ Ancestor} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 + Draws + NO Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf2 iss53} - VerticalPad - 0 +\f0\fs28 \cf0 test.txt} + Wrap + NO + Bounds + {{502.75775719133185, 83.579398999999995}, {69, 29}} Class - LineGraphic - Head + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo - ID - 1345 + Color + + w + 0 + + Font + Monaco + Size + 14 ID - 1334 - Points - - {495.07898898320565, 238.99999999998559} - {495.07885544859118, 263.87000000002172} - + 329 + Line + + ID + 326 + Position + 0.12560455501079559 + RotationType + 0 + + Shape + Rectangle Style + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - Tail + Text - ID - 1316 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 new.txt} + Wrap + NO Bounds - {{460.06799000000001, 202}, {70.022201999999993, 36}} + {{500.94871435301138, 38.5}, {36, 29}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Color - b - 0.8 - g - 0.8 - r - 0.8 + w + 0 Font - LucidaGrande + Monaco Size - 10 + 14 ID - 1316 + 328 + Line + + ID + 327 + Position + 0.06745930016040802 + RotationType + 0 + Shape Rectangle Style - fill - - Color - - b - 0.933333 - g - 0.933333 - r - 0.933333 - - shadow Draws @@ -70587,30 +70974,62 @@ Ancestor} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 2 + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 bak} + + Wrap + NO + + + Class + LineGraphic + Head + + ID + 293 + + ID + 327 + Points + + {460.86203630895039, 69.518746133859921} + {477.38101, 53} + {743.80102999999997, 53} + {743.80102999999997, 431} + {487.80099000000001, 431} + {460.57219728118042, 403.48713983483583} + + Style + + stroke + + HeadArrow + FilledArrow + HopLines + + HopType + 1 + Legacy + + TailArrow + 0 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs20 \cf2 master} - VerticalPad - 0 + ID + 322 @@ -70619,14 +71038,16 @@ Ancestor} Head ID - 1299 + 294 ID - 1306 + 326 Points - {265.87, 283.37} - {239.712491, 283.37} + {481.30099000000007, 98.079398999999995} + {726.80102999999997, 98.079398999999995} + {726.80102999999997, 280} + {708.7238586223034, 280.24821098385797} Style @@ -70643,70 +71064,42 @@ Ancestor} Tail ID - 1304 + 322 - Bounds - {{267.37, 265.37}, {48.157501000000003, 36}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Font - Helvetica - Size - 12 + ID + 295 ID - 1304 - Shape - RoundRect + 325 + Points + + {481.19816665924026, 117.18082567100645} + {610.82682334055073, 167.81958335050956} + Style - fill - - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - - - shadow - - Draws - NO - stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 C2} - VerticalPad - 0 + ID + 322 @@ -70715,14 +71108,14 @@ Ancestor} Head ID - 1302 + 322 ID - 1303 + 324 Points - {188.55499000000003, 283.37} - {162.39750099999998, 283.37} + {322.49999999999994, 98.079398999999995} + {383.30099000000001, 98.079398999999995} Style @@ -70732,6 +71125,8 @@ Ancestor} FilledArrow Legacy + LineType + 1 TailArrow 0 @@ -70739,38 +71134,35 @@ Ancestor} Tail ID - 1299 + 316 Bounds - {{112.73999999999999, 265.37}, {48.157501000000003, 36}} + {{390.30099000000001, 72.579398999999995}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Monaco Size - 12 + 10 ID - 1302 + 323 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -70779,48 +71171,56 @@ Ancestor} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Align + 0 + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural -\f0\fs24 \cf0 C0} +\f0\fs20 \cf0 3c4e9c} VerticalPad 0 + Wrap + NO Bounds - {{190.05499, 265.37}, {48.157501000000003, 36}} + {{384.80099000000001, 70.579398999999995}, {95, 55}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Helvetica + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 1299 + 322 Shape - RoundRect + Rectangle Style fill @@ -70828,11 +71228,11 @@ Ancestor} Color b - 0.837205 + 1 g - 0.959184 + 0.806818 r - 0.826135 + 0.813024 shadow @@ -70845,12 +71245,14 @@ Ancestor} Color b - 0.382653 + 0.316327 g - 0.382653 + 0.139073 r - 0.382653 + 0.109175 + CornerRadius + 5 Width 3 @@ -70859,174 +71261,138 @@ Ancestor} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C1} +\f0\fs28 \cf0 tree} VerticalPad 0 - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - - Lock - NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 2 - OutlineStyle - Basic - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - branch-simple 8 - UniqueID - 25 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {805, 732}} - Class - SolidGraphic - ID - 2 - Style - stroke + Class + LineGraphic + Head - Draws - NO + ID + 314 + + ID + 321 + Points + + {259.5, 127.079399} + {259.5, 207.5} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 316 - - BaseZoom - 0 - CanvasOrigin - {0, 0} - CanvasSize - {805, 732} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - - Bounds - {{301.53899999999999, 295.81400000000002}, {133, 27}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo + LineGraphic + Head - Color + ID + 311 + + ID + 320 + Points + + {259.5, 265.5} + {259.5, 345.92098999999996} + + Style + + stroke - w + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow 0 - Font - Helvetica - Size - 14 - ID - 2015 - Line + Tail ID - 2014 - Position - 0.49618315696716309 - RotationType - 0 + 314 - Shape - Rectangle + + + Class + LineGraphic + Head + + ID + 292 + + ID + 319 + Points + + {322.49983296941934, 235.55975066642276} + {383.30115703002639, 234.65231326962279} + Style - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + HopLines + + HopType + 1 + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 Checkins over Time} + ID + 314 - Wrap - NO Class LineGraphic + Head + + ID + 293 + ID - 2014 + 318 Points - {108.039, 309.31400000000002} - {632.03899999999999, 309.31400000000002} + {322.49999999999994, 374.92099000000002} + {383.30099000000001, 374.92099000000002} Style @@ -71040,47 +71406,37 @@ Ancestor} 1 TailArrow 0 - Width - 2 + Tail + + ID + 311 + Bounds - {{303.53899999999999, 9.4784001999999994}, {133, 27}} + {{204.47399999999999, 73.579398999999995}, {47.905299999999997, 14}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo - Color - - w - 0 - Font - Helvetica + Monaco Size - 14 + 10 ID - 2013 - Line - - ID - 2012 - Position - 0.49618315696716309 - RotationType - 0 - + 317 Shape Rectangle Style + fill + + Draws + NO + shadow Draws @@ -71094,60 +71450,50 @@ Ancestor} Text + Align + 0 + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural -\f0\fs28 \cf0 Checkins over Time} - - Wrap - NO - - - Class - LineGraphic - ID - 2012 - Points - - {110.039, 22.978399} - {634.03899999999999, 22.978399} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - Width - 2 - +\f0\fs20 \cf0 1a410e} + VerticalPad + 0 + Wrap + NO Bounds - {{551.41301999999996, 497.37099999999998}, {89.252196999999995, 36}} + {{198, 70.579398999999995}, {123, 55}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Helvetica + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 2006 + 316 Shape - RoundRect + Rectangle Style fill @@ -71155,11 +71501,11 @@ Ancestor} Color b - 0.837205 + 0.674017 g - 0.959184 + 1 r - 0.826135 + 0.668696 shadow @@ -71172,12 +71518,14 @@ Ancestor} Color b - 0.382653 + 0.163488 g - 0.382653 + 0.316327 r - 0.382653 + 0.161591 + CornerRadius + 5 Width 3 @@ -71186,44 +71534,37 @@ Ancestor} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C3} +\f0\fs28 \cf0 third commit} VerticalPad 0 Bounds - {{551.41301999999996, 445.11899}, {89.252196999999995, 36}} + {{204.47399999999999, 212}, {47.905299999999997, 14}} Class ShapedGraphic FontInfo Font - Helvetica + Monaco Size - 12 + 10 ID - 2005 + 315 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -71232,48 +71573,57 @@ Ancestor} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Align + 0 + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc +\deftab720 +\pard\pardeftab720\ri0\sa120 -\f0\fs24 \cf0 B2} +\f0\fs20 \cf0 cac0ca} VerticalPad 0 + Wrap + NO Bounds - {{551.41301999999996, 392.86599999999999}, {89.252296000000001, 36}} + {{198, 209}, {123, 55}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Helvetica + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 2004 + 314 Shape - RoundRect + Rectangle Style fill @@ -71281,11 +71631,11 @@ Ancestor} Color b - 0.885418 + 0.674017 g - 0.959184 + 1 r - 0.880584 + 0.668696 shadow @@ -71298,60 +71648,53 @@ Ancestor} Color b - 0.382653 + 0.163488 g - 0.382653 + 0.316327 r - 0.382653 + 0.161591 - Pattern - 2 + CornerRadius + 5 Width - 2 + 3 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 A2} +\f0\fs28 \cf0 second commit} VerticalPad 0 Bounds - {{439.41298999999998, 497.37099999999998}, {89.252196999999995, 36}} + {{204.47399999999999, 350.42099000000002}, {47.905299999999997, 14}} Class ShapedGraphic FontInfo Font - Helvetica + Monaco Size - 12 + 10 ID - 2003 + 313 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.885418 - g - 0.959184 - r - 0.880584 - + Draws + NO shadow @@ -71360,50 +71703,56 @@ Ancestor} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Pattern - 2 - Width - 2 + Draws + NO Text + Align + 0 + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural -\f0\fs24 \cf0 C2} +\f0\fs20 \cf0 fdf4fc} VerticalPad 0 + Wrap + NO Bounds - {{439.41298999999998, 445.11899}, {89.252196999999995, 36}} + {{198, 347.42099000000002}, {123, 55}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Helvetica + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 2002 + 311 Shape - RoundRect + Rectangle Style fill @@ -71411,11 +71760,11 @@ Ancestor} Color b - 0.837205 + 0.674017 g - 0.959184 + 1 r - 0.826135 + 0.668696 shadow @@ -71428,12 +71777,14 @@ Ancestor} Color b - 0.382653 + 0.163488 g - 0.382653 + 0.316327 r - 0.382653 + 0.161591 + CornerRadius + 5 Width 3 @@ -71442,44 +71793,41 @@ Ancestor} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 B1} +\f0\fs28 \cf0 first commit} VerticalPad 0 Bounds - {{439.41298999999998, 392.86599999999999}, {89.252296000000001, 36}} + {{617.22400000000005, 350.42099000000002}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Monaco Size - 12 + 10 ID - 2001 + 310 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -71488,61 +71836,55 @@ Ancestor} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Align + 0 + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural -\f0\fs24 \cf0 A2} +\f0\fs20 \cf0 83baae} VerticalPad 0 + Wrap + NO Bounds - {{327.41298999999998, 497.37099999999998}, {89.252196999999995, 36}} + {{390.80099000000001, 350.42099000000002}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Monaco Size - 12 + 10 ID - 2000 + 309 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -71551,61 +71893,55 @@ Ancestor} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Align + 0 + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural -\f0\fs24 \cf0 C2} +\f0\fs20 \cf0 d8329f} VerticalPad 0 + Wrap + NO Bounds - {{327.41298999999998, 445.11899}, {89.252196999999995, 36}} + {{617.72400000000005, 161.42101}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Monaco Size - 12 + 10 ID - 1999 + 308 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.885418 - g - 0.959184 - r - 0.880584 - + Draws + NO shadow @@ -71614,63 +71950,55 @@ Ancestor} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Pattern - 2 - Width - 2 + Draws + NO Text + Align + 0 + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural -\f0\fs24 \cf0 B} +\f0\fs20 \cf0 1f7a7a} VerticalPad 0 + Wrap + NO Bounds - {{327.41298999999998, 392.86599999999999}, {89.252296000000001, 36}} + {{617.22400000000005, 256.42099000000002}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Monaco Size - 12 + 10 ID - 1998 + 307 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.885418 - g - 0.959184 - r - 0.880584 - + Draws + NO shadow @@ -71679,64 +72007,122 @@ Ancestor} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Pattern - 2 - Width - 2 + Draws + NO Text + Align + 0 + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural -\f0\fs24 \cf0 A1} +\f0\fs20 \cf0 fa49b0} VerticalPad 0 + Wrap + NO Bounds - {{215.41299000000001, 497.37099999999998}, {89.252196999999995, 36}} + {{390.30099000000001, 208.42101}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Monaco Size - 12 + 10 ID - 1997 + 305 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural + +\f0\fs20 \cf0 0155eb} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{502.77437879344052, 360.42099000000002}, {78, 29}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Color + + w + 0 + Font + Monaco + Size + 14 + + ID + 304 + Line + + ID + 300 + Position + 0.46725374460220337 + RotationType + 0 + + Shape + Rectangle + Style + shadow Draws @@ -71744,62 +72130,59 @@ Ancestor} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 C1} - VerticalPad - 0 +\f0\fs28 \cf0 test.txt} + Wrap + NO Bounds - {{215.41299000000001, 445.11899}, {89.252196999999995, 36}} + {{500.55997132637748, 197.25451012600831}, {78, 29}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo + Color + + w + 0 + Font - Helvetica + Monaco Size - 12 + 14 ID - 1996 + 302 + Line + + ID + 297 + Position + 0.45016780495643616 + RotationType + 0 + Shape - RoundRect + Rectangle Style - fill - - Color - - b - 0.885418 - g - 0.959184 - r - 0.880584 - - shadow Draws @@ -71807,64 +72190,59 @@ Ancestor} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Pattern - 2 - Width - 2 + Draws + NO Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 B} - VerticalPad - 0 +\f0\fs28 \cf0 test.txt} + Wrap + NO Bounds - {{215.41299000000001, 392.86599999999999}, {89.252296000000001, 36}} + {{502.78570293413202, 241.11750195283739}, {69, 29}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo + Color + + w + 0 + Font - Helvetica + Monaco Size - 12 + 14 ID - 1995 + 301 + Line + + ID + 298 + Position + 0.4326038658618927 + RotationType + 0 + Shape - RoundRect + Rectangle Style - fill - - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - - shadow Draws @@ -71872,111 +72250,155 @@ Ancestor} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 A1} - VerticalPad - 0 +\f0\fs28 \cf0 new.txt} + Wrap + NO - Bounds - {{551.22400000000005, 333.58999999999997}, {89.252296000000001, 36}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Font - Helvetica - Size - 12 + ID + 296 ID - 1982 - Shape - RoundRect + 300 + Points + + {481.30099000000007, 374.92099000000002} + {610.72400000000005, 374.92099000000002} + Style - fill + stroke - Color - - b - 0.646082 - g - 0.678687 - r - 1 - + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - shadow + + Tail + + ID + 293 + + + + Class + LineGraphic + Head + + ID + 294 + + ID + 298 + Points + + {481.26994855985413, 244.04109877901388} + {610.75504144023364, 270.80092120624835} + + Style + + stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + Tail + + ID + 292 + + + + Class + LineGraphic + Head + + ID + 295 + + ID + 297 + Points + + {481.26994855983327, 223.80092121747577} + {610.75504144015758, 197.0410987809592} + + Style + stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 Version 5} - VerticalPad - 0 + ID + 292 Bounds - {{439.28699, 333.58999999999997}, {89.252296000000001, 36}} + {{612.22400000000005, 347.42099000000002}, {95, 55}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Helvetica + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 1981 + 296 Shape - RoundRect + Rectangle Style fill @@ -71984,9 +72406,9 @@ Ancestor} Color b - 0.646082 + 0.738389 g - 0.678687 + 0.749244 r 1 @@ -72001,12 +72423,14 @@ Ancestor} Color b - 0.382653 + 0.0465446 g - 0.382653 + 0.0431119 r - 0.382653 + 0.316327 + CornerRadius + 5 Width 3 @@ -72015,31 +72439,42 @@ Ancestor} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 Version 4} +\f0\fs28 \cf0 "version 1"} VerticalPad 0 Bounds - {{327.35001, 333.58999999999997}, {89.252296000000001, 36}} + {{612.22400000000005, 159.42101}, {95, 55}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Helvetica + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 1980 + 295 Shape - RoundRect + Rectangle Style fill @@ -72047,9 +72482,9 @@ Ancestor} Color b - 0.646082 + 0.738389 g - 0.678687 + 0.749244 r 1 @@ -72064,12 +72499,14 @@ Ancestor} Color b - 0.382653 + 0.0465446 g - 0.382653 + 0.0431119 r - 0.382653 + 0.316327 + CornerRadius + 5 Width 3 @@ -72078,31 +72515,42 @@ Ancestor} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 Version 3} +\f0\fs28 \cf0 "version 2"} VerticalPad 0 Bounds - {{215.41299000000001, 333.58999999999997}, {89.252296000000001, 36}} + {{612.22400000000005, 253.42101}, {95, 55}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Helvetica + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 1979 + 294 Shape - RoundRect + Rectangle Style fill @@ -72110,9 +72558,9 @@ Ancestor} Color b - 0.646082 + 0.738389 g - 0.678687 + 0.749244 r 1 @@ -72127,12 +72575,14 @@ Ancestor} Color b - 0.382653 + 0.0465446 g - 0.382653 + 0.0431119 r - 0.382653 + 0.316327 + CornerRadius + 5 Width 3 @@ -72141,31 +72591,42 @@ Ancestor} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 Version 2} +\f0\fs28 \cf0 "new file"} VerticalPad 0 Bounds - {{103.476, 333.58999999999997}, {89.252296000000001, 36}} + {{384.80099000000001, 347.42099000000002}, {95, 55}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Helvetica + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 1978 + 293 Shape - RoundRect + Rectangle Style fill @@ -72173,11 +72634,11 @@ Ancestor} Color b - 0.646082 + 1 g - 0.678687 + 0.806818 r - 1 + 0.813024 shadow @@ -72190,12 +72651,14 @@ Ancestor} Color b - 0.382653 + 0.316327 g - 0.382653 + 0.139073 r - 0.382653 + 0.109175 + CornerRadius + 5 Width 3 @@ -72204,31 +72667,42 @@ Ancestor} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 Version 1} +\f0\fs28 \cf0 tree} VerticalPad 0 Bounds - {{103.476, 497.37099999999998}, {89.252196999999995, 36}} + {{384.80099000000001, 206.42101}, {95, 55}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Helvetica + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 1977 + 292 Shape - RoundRect + Rectangle Style fill @@ -72236,11 +72710,11 @@ Ancestor} Color b - 0.837205 + 1 g - 0.959184 + 0.806818 r - 0.826135 + 0.813024 shadow @@ -72253,58 +72727,146 @@ Ancestor} Color b - 0.382653 + 0.316327 g - 0.382653 + 0.139073 r - 0.382653 + 0.109175 + CornerRadius + 5 Width 3 Text - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 C} - VerticalPad - 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 tree} + VerticalPad + 0 + + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 1 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + example one 5 + UniqueID + 68 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 553}} + Class + SolidGraphic + FontInfo + + Font + Helvetica + Size + 12 + + ID + 2 + Style + + stroke + + Draws + NO + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + Bounds - {{103.476, 445.11899}, {89.252196999999995, 36}} + {{204.47399999999999, 73.579398999999995}, {47.905299999999997, 14}} Class ShapedGraphic FontInfo Font - Helvetica + Monaco Size - 12 + 10 ID - 1976 + 317 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -72313,61 +72875,51 @@ Ancestor} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Align + 0 + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural -\f0\fs24 \cf0 B} +\f0\fs20 \cf0 1a410e} VerticalPad 0 + Wrap + NO Bounds - {{103.476, 392.86599999999999}, {89.252296000000001, 36}} + {{204.47399999999999, 212}, {47.905299999999997, 14}} Class ShapedGraphic FontInfo Font - Helvetica + Monaco Size - 12 + 10 ID - 1974 + 315 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -72376,31 +72928,29 @@ Ancestor} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Align + 0 + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc +\deftab720 +\pard\pardeftab720\ri0\sa120 -\f0\fs24 \cf0 A} +\f0\fs20 \cf0 cac0ca} VerticalPad 0 + Wrap + NO Class @@ -72408,14 +72958,14 @@ Ancestor} Head ID - 1962 + 314 ID - 1972 + 335 Points - {194.22819699999997, 178.78399999999999} - {455.50799999999998, 178.78399999999999} + {158.49983335264756, 234.99434738932442} + {196.50016664479907, 235.56083729117577} Style @@ -72425,6 +72975,8 @@ Ancestor} FilledArrow Legacy + LineType + 1 TailArrow 0 @@ -72432,7 +72984,7 @@ Ancestor} Tail ID - 1947 + 333 @@ -72441,14 +72993,14 @@ Ancestor} Head ID - 1970 + 316 ID - 1971 + 334 Points - {400.57099999999997, 231.036} - {567.50800000000004, 231.036} + {158.5, 98.079398999999995} + {196.5, 98.079398999999995} Style @@ -72458,6 +73010,8 @@ Ancestor} FilledArrow Legacy + LineType + 1 TailArrow 0 @@ -72465,25 +73019,36 @@ Ancestor} Tail ID - 1968 + 332 Bounds - {{569.00800000000004, 213.036}, {54.062900999999997, 36}} + {{16, 206.42101}, {141, 55}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Helvetica + Geneva + NSKern + 0.0 Size 12 ID - 1970 + 333 Shape - RoundRect + Rectangle Style fill @@ -72491,11 +73056,11 @@ Ancestor} Color b - 0.959184 + 0.831572 g - 0.91505 + 0.872449 r - 0.880584 + 0.861573 shadow @@ -72508,12 +73073,14 @@ Ancestor} Color b - 0.382653 + 0.297998 g - 0.382653 + 0.316327 r - 0.382653 + 0.310617 + CornerRadius + 5 Width 3 @@ -72522,65 +73089,42 @@ Ancestor} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 \uc0\u916 -\f1 3} +\f0\fs24 \cf0 refs/heads/test} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 1968 - - ID - 1969 - Points - - {288.57100000000003, 231.036} - {343.50799999999998, 231.036} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 - - - Tail - - ID - 1967 - - Bounds - {{345.00799999999998, 213.036}, {54.063000000000002, 36}} + {{16, 70.579398999999995}, {141, 55}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Helvetica + Geneva + NSKern + 0.0 Size 12 ID - 1968 + 332 Shape - RoundRect + Rectangle Style fill @@ -72588,11 +73132,11 @@ Ancestor} Color b - 0.959184 + 0.831572 g - 0.91505 + 0.872449 r - 0.880584 + 0.861573 shadow @@ -72605,12 +73149,14 @@ Ancestor} Color b - 0.382653 + 0.297998 g - 0.382653 + 0.316327 r - 0.382653 + 0.310617 + CornerRadius + 5 Width 3 @@ -72619,46 +73165,171 @@ Ancestor} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 \uc0\u916 -\f1 2} +\f0\fs24 \cf0 refs/heads/master} VerticalPad 0 Bounds - {{233.00800000000001, 213.036}, {54.063000000000002, 36}} + {{498.56482887344919, 124.70016786078986}, {78, 29}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo + Color + + w + 0 + Font - Helvetica + Monaco Size - 12 + 14 ID - 1967 + 330 + Line + + ID + 325 + Position + 0.43483179807662964 + RotationType + 0 + Shape - RoundRect + Rectangle Style - fill + shadow - Color - - b - 0.959184 - g - 0.91505 - r - 0.880584 - + Draws + NO + + stroke + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 test.txt} + + Wrap + NO + + + Bounds + {{502.75775719133185, 83.579398999999995}, {69, 29}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Color + + w + 0 + + Font + Monaco + Size + 14 + + ID + 329 + Line + + ID + 326 + Position + 0.12560455501079559 + RotationType + 0 + + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 new.txt} + + Wrap + NO + + + Bounds + {{500.94871435301138, 38.5}, {36, 29}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Color + + w + 0 + Font + Monaco + Size + 14 + + ID + 328 + Line + + ID + 327 + Position + 0.06745930016040802 + RotationType + 0 + + Shape + Rectangle + Style + shadow Draws @@ -72666,31 +73337,97 @@ Ancestor} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 bak} + + Wrap + NO + + + Class + LineGraphic + Head + + ID + 293 + + ID + 327 + Points + + {460.86203630895039, 69.518746133859921} + {477.38101, 53} + {743.80102999999997, 53} + {743.80102999999997, 431} + {487.80099000000001, 431} + {460.57219728118042, 403.48713983483583} + + Style + + stroke + + HeadArrow + FilledArrow + HopLines + + HopType + 1 + Legacy + + TailArrow + 0 + + + Tail + + ID + 322 + + + + Class + LineGraphic + Head + + ID + 294 + + ID + 326 + Points + + {481.30099000000007, 98.079398999999995} + {726.80102999999997, 98.079398999999995} + {726.80102999999997, 280} + {708.7238586223034, 280.24821098385797} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 \uc0\u916 -\f1 1} - VerticalPad - 0 + ID + 322 @@ -72699,14 +73436,14 @@ Ancestor} Head ID - 1967 + 295 ID - 1966 + 325 Points - {194.22800000000001, 231.036} - {231.50800000000007, 231.036} + {481.19816665924026, 117.18082567100645} + {610.82682334055073, 167.81958335050956} Style @@ -72716,10 +73453,17 @@ Ancestor} FilledArrow Legacy + LineType + 1 TailArrow 0 + Tail + + ID + 322 + Class @@ -72727,14 +73471,14 @@ Ancestor} Head ID - 1964 + 322 ID - 1965 + 324 Points - {512.57090100000005, 178.78399999999999} - {567.50800000000004, 178.78399999999999} + {322.49999999999994, 98.079398999999995} + {383.30099000000001, 98.079398999999995} Style @@ -72744,6 +73488,8 @@ Ancestor} FilledArrow Legacy + LineType + 1 TailArrow 0 @@ -72751,38 +73497,35 @@ Ancestor} Tail ID - 1962 + 316 Bounds - {{569.00800000000004, 160.78399999999999}, {54.062900999999997, 36}} + {{390.30099000000001, 72.579398999999995}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Monaco Size - 12 + 10 ID - 1964 + 323 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.959184 - g - 0.91505 - r - 0.880584 - + Draws + NO shadow @@ -72791,49 +73534,56 @@ Ancestor} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Align + 0 + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural -\f0\fs24 \cf0 \uc0\u916 -\f1 2} +\f0\fs20 \cf0 3c4e9c} VerticalPad 0 + Wrap + NO Bounds - {{457.00799999999998, 160.78399999999999}, {54.062900999999997, 36}} + {{384.80099000000001, 70.579398999999995}, {95, 55}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Helvetica + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 1962 + 322 Shape - RoundRect + Rectangle Style fill @@ -72841,11 +73591,11 @@ Ancestor} Color b - 0.959184 + 1 g - 0.91505 + 0.806818 r - 0.880584 + 0.813024 shadow @@ -72858,12 +73608,14 @@ Ancestor} Color b - 0.382653 + 0.316327 g - 0.382653 + 0.139073 r - 0.382653 + 0.109175 + CornerRadius + 5 Width 3 @@ -72872,12 +73624,11 @@ Ancestor} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 \uc0\u916 -\f1 1} +\f0\fs28 \cf0 tree} VerticalPad 0 @@ -72888,14 +73639,14 @@ Ancestor} Head ID - 1956 + 314 ID - 1957 + 321 Points - {288.57100000000003, 126.53100000000001} - {455.50799999999998, 126.53100000000001} + {259.5, 127.079399} + {259.5, 207.5} Style @@ -72905,6 +73656,8 @@ Ancestor} FilledArrow Legacy + LineType + 1 TailArrow 0 @@ -72912,341 +73665,145 @@ Ancestor} Tail ID - 1301 - - - - Bounds - {{457.00799999999998, 108.53100000000001}, {54.062900999999997, 36}} - Class - ShapedGraphic - FontInfo - - Font - Helvetica - Size - 12 - - ID - 1956 - Shape - RoundRect - Style - - fill - - Color - - b - 0.959184 - g - 0.91505 - r - 0.880584 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 \uc0\u916 -\f1 2} - VerticalPad - 0 + 316 - Bounds - {{551.22400000000005, 49.2547}, {89.252296000000001, 36}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Font - Helvetica - Size - 12 + ID + 311 ID - 1955 - Shape - RoundRect + 320 + Points + + {259.5, 265.5} + {259.5, 345.92098999999996} + Style - fill - - Color - - b - 0.646082 - g - 0.678687 - r - 1 - - - shadow - - Draws - NO - stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 Version 5} - VerticalPad - 0 + ID + 314 - Bounds - {{439.28699, 49.2547}, {89.252296000000001, 36}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Font - Helvetica - Size - 12 + ID + 292 ID - 1954 - Shape - RoundRect + 319 + Points + + {322.49983296941934, 235.55975066642276} + {383.30115703002639, 234.65231326962279} + Style - fill - - Color - - b - 0.646082 - g - 0.678687 - r - 1 - - - shadow - - Draws - NO - stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + HeadArrow + FilledArrow + HopLines + + HopType + 1 + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 Version 4} - VerticalPad - 0 + ID + 314 - Bounds - {{327.35001, 49.2547}, {89.252296000000001, 36}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Font - Helvetica - Size - 12 + ID + 293 ID - 1953 - Shape - RoundRect + 318 + Points + + {322.49999999999994, 374.92099000000002} + {383.30099000000001, 374.92099000000002} + Style - fill - - Color - - b - 0.646082 - g - 0.678687 - r - 1 - - - shadow - - Draws - NO - stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 Version 3} - VerticalPad - 0 + ID + 311 Bounds - {{215.41299000000001, 49.2547}, {89.252296000000001, 36}} + {{198, 70.579398999999995}, {123, 55}} Class ShapedGraphic FontInfo - Font - Helvetica - Size - 12 - - ID - 1952 - Shape - RoundRect - Style - - fill - - Color - - b - 0.646082 - g - 0.678687 - r - 1 - - - shadow - - Draws - NO - - stroke + Color - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + b + 1 + g + 1 + r + 1 - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 Version 2} - VerticalPad - 0 - - - - Bounds - {{103.476, 49.2547}, {89.252296000000001, 36}} - Class - ShapedGraphic - FontInfo - Font - Helvetica + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 1951 + 316 Shape - RoundRect + Rectangle Style fill @@ -73254,11 +73811,11 @@ Ancestor} Color b - 0.646082 + 0.674017 g - 0.678687 - r 1 + r + 0.668696 shadow @@ -73271,12 +73828,14 @@ Ancestor} Color b - 0.382653 + 0.163488 g - 0.382653 + 0.316327 r - 0.382653 + 0.161591 + CornerRadius + 5 Width 3 @@ -73285,31 +73844,42 @@ Ancestor} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 Version 1} +\f0\fs28 \cf0 third commit} VerticalPad 0 Bounds - {{103.476, 213.036}, {89.252196999999995, 36}} + {{198, 209}, {123, 55}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Helvetica + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 1948 + 314 Shape - RoundRect + Rectangle Style fill @@ -73317,11 +73887,11 @@ Ancestor} Color b - 0.837205 + 0.674017 g - 0.959184 + 1 r - 0.826135 + 0.668696 shadow @@ -73334,12 +73904,14 @@ Ancestor} Color b - 0.382653 + 0.163488 g - 0.382653 + 0.316327 r - 0.382653 + 0.161591 + CornerRadius + 5 Width 3 @@ -73348,44 +73920,37 @@ Ancestor} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 File C} +\f0\fs28 \cf0 second commit} VerticalPad 0 Bounds - {{103.476, 160.78399999999999}, {89.252196999999995, 36}} + {{204.47399999999999, 350.42099000000002}, {47.905299999999997, 14}} Class ShapedGraphic FontInfo Font - Helvetica + Monaco Size - 12 + 10 ID - 1947 + 313 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -73394,48 +73959,56 @@ Ancestor} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Align + 0 + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural -\f0\fs24 \cf0 File B} +\f0\fs20 \cf0 fdf4fc} VerticalPad 0 + Wrap + NO Bounds - {{233.00800000000001, 108.53100000000001}, {54.063000000000002, 36}} + {{198, 347.42099000000002}, {123, 55}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Helvetica + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 1301 + 311 Shape - RoundRect + Rectangle Style fill @@ -73443,11 +74016,11 @@ Ancestor} Color b - 0.959184 + 0.674017 g - 0.91505 + 1 r - 0.880584 + 0.668696 shadow @@ -73460,12 +74033,14 @@ Ancestor} Color b - 0.382653 + 0.163488 g - 0.382653 + 0.316327 r - 0.382653 + 0.161591 + CornerRadius + 5 Width 3 @@ -73474,45 +74049,41 @@ Ancestor} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 \uc0\u916 -\f1 1} +\f0\fs28 \cf0 first commit} VerticalPad 0 Bounds - {{103.476, 108.53100000000001}, {89.252296000000001, 36}} + {{617.22400000000005, 350.42099000000002}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Helvetica + Monaco Size - 12 + 10 ID - 1303 + 310 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.837205 - g - 0.959184 - r - 0.826135 - + Draws + NO shadow @@ -73521,323 +74092,146 @@ Ancestor} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Align + 0 + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural -\f0\fs24 \cf0 File A} +\f0\fs20 \cf0 83baae} VerticalPad 0 + Wrap + NO + Bounds + {{390.80099000000001, 350.42099000000002}, {37, 14}} Class - LineGraphic - Head + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo - ID - 1301 + Font + Monaco + Size + 10 ID - 1304 - Points - - {194.22829599999997, 126.53100000000001} - {231.50800000000007, 126.53100000000001} - + 309 + Shape + Rectangle Style - stroke + fill - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 + Draws + NO - - Tail - - ID - 1303 - - - - Class - LineGraphic - Head - - ID - 2006 - - ID - 2011 - Points - - {595.87264709856095, 371.0899990015601} - {596.01661941682869, 495.87100099843843} - - Style - - stroke + shadow - HeadArrow - 0 - Legacy - - TailArrow - 0 + Draws + NO - - Tail - - ID - 1982 - - - - Class - LineGraphic - Head - - ID - 2003 - - ID - 2010 - Points - - {483.92813384763906, 371.08999955645885} - {484.0244771728639, 496.37100029569353} - - Style - stroke - HeadArrow - 0 - Legacy - - TailArrow - 0 + Draws + NO - Tail + Text - ID - 1981 + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural + +\f0\fs20 \cf0 d8329f} + VerticalPad + 0 + Wrap + NO + Bounds + {{617.72400000000005, 161.42101}, {37, 14}} Class - LineGraphic - Head + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo - ID - 2000 + Font + Monaco + Size + 10 ID - 2009 - Points - - {371.98365059633943, 371.08999988927218} - {372.03159591279103, 495.87100011072749} - + 308 + Shape + Rectangle Style - stroke + fill - HeadArrow - 0 - Legacy - - TailArrow - 0 + Draws + NO - - Tail - - ID - 1980 - - - - Class - LineGraphic - Head - - ID - 1997 - - ID - 2008 - Points - - {260.03913210626109, 371.08999999999992} - {260.03909439207479, 495.87099999999998} - - Style - - stroke + shadow - HeadArrow - 0 - Legacy - - TailArrow - 0 + Draws + NO - - Tail - - ID - 1979 - - - - Class - LineGraphic - Head - - ID - 1977 - - ID - 2007 - Points - - {148.10214210626111, 371.08999999999992} - {148.10210439207484, 495.87099999999998} - - Style - stroke - HeadArrow - 0 - Legacy - - TailArrow - 0 + Draws + NO - Tail - - ID - 1978 - - - - GridInfo - - HPages - 2 - KeepToScale - - Layers - - - Lock - NO - Name - Tree Objects 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 1 - OutlineStyle - Basic - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - 104-5 - UniqueID - 61 - VPages - 2 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {805, 732}} - Class - SolidGraphic - ID - 2 - Style - - stroke + Text - Draws - NO - - - - BaseZoom - 0 - CanvasOrigin - {0, 0} - CanvasSize - {805, 732} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural + +\f0\fs20 \cf0 1f7a7a} + VerticalPad + 0 + + Wrap + NO + Bounds - {{136.33299, 269.33301}, {66, 17}} + {{617.22400000000005, 256.42099000000002}, {37, 14}} Class ShapedGraphic FitText @@ -73847,12 +74241,12 @@ Ancestor} FontInfo Font - Helvetica + Monaco Size - 12 + 10 ID - 1955 + 307 Shape Rectangle Style @@ -73875,15 +74269,17 @@ Ancestor} Text + Align + 0 Pad 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural -\f0\fs28 \cf0 Stage files} +\f0\fs20 \cf0 fa49b0} VerticalPad 0 @@ -73892,7 +74288,7 @@ Ancestor} Bounds - {{309.83301, 357.33301}, {49, 17}} + {{390.30099000000001, 208.42101}, {37, 14}} Class ShapedGraphic FitText @@ -73902,12 +74298,12 @@ Ancestor} FontInfo Font - Helvetica + Monaco Size - 12 + 10 ID - 1941 + 305 Shape Rectangle Style @@ -73930,15 +74326,17 @@ Ancestor} Text + Align + 0 Pad 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural -\f0\fs28 \cf0 Commit} +\f0\fs20 \cf0 0155eb} VerticalPad 0 @@ -73947,191 +74345,127 @@ Ancestor} Bounds - {{266.37, 328.25418757619212}, {158, 75.491698999999997}} + {{502.77437879344052, 360.42099000000002}, {78, 29}} Class ShapedGraphic - Head + FitText + YES + Flow + Resize + FontInfo - ID - 1934 - Position - 0.81825059652328491 + Color + + w + 0 + + Font + Monaco + Size + 14 ID - 1929 - Shape - AdjustableArrow - ShapeData + 304 + Line - ratio - 0.47493430972099304 - width - 45.920928955078125 + ID + 300 + Position + 0.46725374460220337 + RotationType + 0 + Shape + Rectangle Style - fill - - Color - - b - 0.497307 - g - 0.504555 - r - 1 - - FillType - 2 - GradientAngle - 90 - GradientColor - - b - 0.304265 - g - 0.307897 - r - 0.788251 - - MiddleFraction - 0.4523809552192688 - shadow - Color - - a - 0.4 - b - 0 - g - 0 - r - 0 - + Draws + NO stroke - Color - - b - 0 - g - 0.0271458 - r - 0.689052 - + Draws + NO - Tail + Text - ID - 1933 - Position - 0.81825059652328491 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 test.txt} - TextRelativeArea - {{0.125, 0.25}, {0.75, 0.5}} - isConnectedShape - + Wrap + NO Bounds - {{109.36844274253311, 240.26193757557681}, {157.00155764700102, 75.491698999999997}} + {{500.55997132637748, 197.25451012600831}, {78, 29}} Class ShapedGraphic - Head + FitText + YES + Flow + Resize + FontInfo - ID - 1933 - Position - 0.50464338064193726 + Color + + w + 0 + + Font + Monaco + Size + 14 ID - 30 - Rotation - 359.99429213883559 - Shape - AdjustableArrow - ShapeData + 302 + Line - ratio - 0.47493430972099304 - width - 45.920928955078125 + ID + 297 + Position + 0.45016780495643616 + RotationType + 0 + Shape + Rectangle Style - fill - - Color - - b - 0.497307 - g - 0.504555 - r - 1 - - FillType - 2 - GradientAngle - 90 - GradientColor - - b - 0.304265 - g - 0.307897 - r - 0.788251 - - MiddleFraction - 0.4523809552192688 - shadow - Color - - a - 0.4 - b - 0 - g - 0 - r - 0 - + Draws + NO stroke - Color - - b - 0 - g - 0.0271458 - r - 0.689052 - + Draws + NO - Tail + Text - ID - 1932 - Position - 0.5015568733215332 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 test.txt} - TextRelativeArea - {{0.125, 0.25}, {0.75, 0.5}} - isConnectedShape - + Wrap + NO Bounds - {{201.87, 171.69399999999999}, {129, 17}} + {{502.78570293413202, 241.11750195283739}, {69, 29}} Class ShapedGraphic FitText @@ -74140,19 +74474,24 @@ Ancestor} Resize FontInfo + Color + + w + 0 + Font - Helvetica + Monaco Size - 12 + 14 ID - 1950 + 301 Line ID - 1933 + 298 Position - 0.15609143674373627 + 0.4326038658618927 RotationType 0 @@ -74160,11 +74499,6 @@ Ancestor} Rectangle Style - fill - - Draws - NO - shadow Draws @@ -74178,287 +74512,301 @@ Ancestor} Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 Checkout the project} - VerticalPad - 0 +\f0\fs28 \cf0 new.txt} Wrap NO - Bounds - {{109.71720610765337, 143.25585460739526}, {314.65314317037104, 75.491698999999997}} Class - ShapedGraphic + LineGraphic Head ID - 1932 - Position - 0.15244461596012115 + 296 ID - 1949 - Rotation - 180.1207319741778 - Shape - AdjustableArrow - ShapeData - - ratio - 0.47493430972099304 - width - 45.920928955078125 - + 300 + Points + + {481.30099000000007, 374.92099000000002} + {610.72400000000005, 374.92099000000002} + Style - fill + stroke - Color - - b - 0.497307 - g - 0.504555 - r - 1 - - FillType - 2 - GradientAngle - 271 - GradientColor - - b - 0.304265 - g - 0.307897 - r - 0.788251 - - MiddleFraction - 0.4523809552192688 + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - shadow + + Tail + + ID + 293 + + + + Class + LineGraphic + Head + + ID + 294 + + ID + 298 + Points + + {481.26994855985413, 244.04109877901388} + {610.75504144023364, 270.80092120624835} + + Style + + stroke - Color - - a - 0.4 - b - 0 - g - 0 - r - 0 - + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + Tail + + ID + 292 + + + + Class + LineGraphic + Head + + ID + 295 + + ID + 297 + Points + + {481.26994855983327, 223.80092121747577} + {610.75504144015758, 197.0410987809592} + + Style + stroke - Color - - b - 0 - g - 0.0271458 - r - 0.689052 - + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 Tail ID - 1934 - Position - 0.16015058755874634 + 292 - TextRelativeArea - {{0.125, 0.25}, {0.75, 0.5}} - isConnectedShape - Bounds - {{144.53399999999999, 163.93401}, {64, 17}} + {{612.22400000000005, 347.42099000000002}, {95, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Helvetica + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 1940 + 296 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.738389 + g + 0.749244 + r + 1 + shadow Draws NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 stage files} - VerticalPad - 0 - - Wrap - NO - - - Class - LineGraphic - ID - 1934 - Points - - {424.37, 136.39400000000001} - {424.37, 417} - - Style - + stroke Color b - 0.52381 + 0.0465446 g - 0.52381 + 0.0431119 r - 0.52381 + 0.316327 - HeadArrow - 0 - Legacy - - TailArrow - 0 + CornerRadius + 5 Width 3 + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 "version 1"} + VerticalPad + 0 + + Bounds + {{612.22400000000005, 159.42101}, {95, 55}} Class - LineGraphic + ShapedGraphic + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + ID - 1933 - Points - - {266.37, 136.39400000000001} - {266.37, 417} - + 295 + Shape + Rectangle Style - stroke + fill Color b - 0.52381 + 0.738389 g - 0.52381 + 0.749244 r - 0.52381 + 1 - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - Class - LineGraphic - ID - 1932 - Points - - {109.87, 138.16299000000001} - {108.87, 417} - - Style - + shadow + + Draws + NO + stroke Color b - 0.52381 + 0.0465446 g - 0.52381 + 0.0431119 r - 0.52381 + 0.316327 - HeadArrow - 0 - Legacy - - TailArrow - 0 + CornerRadius + 5 Width 3 + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 "version 2"} + VerticalPad + 0 + Bounds - {{52.766998000000001, 61.967201000000003}, {112.206, 61.427101}} + {{612.22400000000005, 253.42101}, {95, 55}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - BryantPro-Bold + Geneva + NSKern + 0.0 Size - 16 + 14 ID - 1927 + 294 Shape - RoundRect + Rectangle Style fill @@ -74466,11 +74814,11 @@ Ancestor} Color b - 0.742554 + 0.738389 g - 0.878307 + 0.749244 r - 0.771735 + 1 shadow @@ -74483,12 +74831,14 @@ Ancestor} Color b - 0.382653 + 0.0465446 g - 0.382653 + 0.0431119 r - 0.382653 + 0.316327 + CornerRadius + 5 Width 3 @@ -74497,31 +74847,42 @@ Ancestor} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs32 \cf0 Working Directory} +\f0\fs28 \cf0 "new file"} VerticalPad 0 Bounds - {{210.767, 61.967201000000003}, {112.206, 61.427101}} + {{384.80099000000001, 347.42099000000002}, {95, 55}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - BryantPro-Bold + Geneva + NSKern + 0.0 Size - 16 + 14 ID - 1926 + 293 Shape - RoundRect + Rectangle Style fill @@ -74529,11 +74890,11 @@ Ancestor} Color b - 0.694025 - g 1 + g + 0.806818 r - 0.958191 + 0.813024 shadow @@ -74546,12 +74907,14 @@ Ancestor} Color b - 0.382653 + 0.316327 g - 0.382653 + 0.139073 r - 0.382653 + 0.109175 + CornerRadius + 5 Width 3 @@ -74560,31 +74923,42 @@ Ancestor} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs32 \cf0 Staging Area} +\f0\fs28 \cf0 tree} VerticalPad 0 Bounds - {{359.25299000000001, 61.967201000000003}, {131.233, 61.427101}} + {{384.80099000000001, 206.42101}, {95, 55}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - BryantPro-Bold + Geneva + NSKern + 0.0 Size - 16 + 14 ID - 1924 + 292 Shape - RoundRect + Rectangle Style fill @@ -74592,11 +74966,11 @@ Ancestor} Color b - 0.918367 + 1 g - 0.707088 + 0.806818 r - 0.542092 + 0.813024 shadow @@ -74609,12 +74983,14 @@ Ancestor} Color b - 0.382653 + 0.316327 g - 0.382653 + 0.139073 r - 0.382653 + 0.109175 + CornerRadius + 5 Width 3 @@ -74623,12 +74999,11 @@ Ancestor} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs32 \cf0 Git Directory\ -(Repository)} +\f0\fs28 \cf0 tree} VerticalPad 0 @@ -74637,7 +75012,7 @@ Ancestor} GridInfo HPages - 2 + 1 KeepToScale Layers @@ -74672,8 +75047,6 @@ Ancestor} Orientation 1 - OutlineStyle - Basic PrintOnePage RowAlign @@ -74681,11 +75054,11 @@ Ancestor} RowSpacing 36 SheetTitle - 106 + example one 6 UniqueID - 62 + 69 VPages - 2 + 1 ActiveLayerIndex @@ -74695,7 +75068,7 @@ Ancestor} BackgroundGraphic Bounds - {{0, 0}, {805, 732}} + {{0, 0}, {756, 553}} Class SolidGraphic ID @@ -74713,8 +75086,6 @@ Ancestor} 0 CanvasOrigin {0, 0} - CanvasSize - {805, 732} ColumnAlign 1 ColumnSpacing @@ -74725,7 +75096,7 @@ Ancestor} Bounds - {{317, 268}, {66, 17}} + {{81.011002000000005, 135.90199000000001}, {76, 22}} Class ShapedGraphic FitText @@ -74735,12 +75106,94 @@ Ancestor} FontInfo Font - Helvetica + Courier + Size + 18 + + ID + 67 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 98ca9..} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + ID + 321 + Points + + {204.75200000000001, 216.95099999999999} + {264.75200999999998, 217.05499} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 4 + + + + + Bounds + {{124.497, 273}, {37, 14}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Courier Size 12 ID - 1955 + 287 Shape Rectangle Style @@ -74767,11 +75220,11 @@ Ancestor} 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 Stage files} +\f0\fs24 \cf0 Scott} VerticalPad 0 @@ -74780,7 +75233,7 @@ Ancestor} Bounds - {{173, 355.66599000000002}, {49, 17}} + {{124.497, 243}, {37, 14}} Class ShapedGraphic FitText @@ -74790,12 +75243,12 @@ Ancestor} FontInfo Font - Helvetica + Courier Size 12 ID - 1941 + 286 Shape Rectangle Style @@ -74822,11 +75275,11 @@ Ancestor} 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 Commit} +\f0\fs24 \cf0 Scott} VerticalPad 0 @@ -74835,217 +75288,214 @@ Ancestor} Bounds - {{109.05291478368096, 328.25244403779601}, {157.31708523490823, 75.491698999999997}} + {{125.497, 215}, {37, 14}} Class ShapedGraphic - Head + FitText + YES + Flow + Resize + FontInfo - ID - 1932 - Position - 0.81708520650863647 + Font + Courier + Size + 12 ID - 1929 - Rotation - 180.00124564727639 + 284 Shape - AdjustableArrow - ShapeData + Rectangle + Style - ratio - 0.47493430972099304 - width - 45.920928955078125 + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 92ec2} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{51.511001999999998, 296.17700000000002}, {135, 11}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Monaco + Size + 8 + ID + 283 + Shape + Rectangle Style fill - Color - - b - 0.497307 - g - 0.504555 - r - 1 - - FillType - 2 - GradientAngle - 90 - GradientColor - - b - 0.304265 - g - 0.307897 - r - 0.788251 - - MiddleFraction - 0.4523809552192688 + Draws + NO shadow - Color - - a - 0.4 - b - 0 - g - 0 - r - 0 - + Draws + NO + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural + +\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 +initial commit of my project} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + ID + 282 + Points + + {116.004, 293.82299999999998} + {116.004, 207.67699999999999} + + Style + stroke Color b - 0 + 0.382653 g - 0.0271458 + 0.382653 r - 0.689052 + 0.382653 + HeadArrow + 0 + Legacy + + TailArrow + 0 - Tail - - ID - 1933 - Position - 0.81825047731399536 - - TextRelativeArea - {{0.125, 0.25}, {0.75, 0.5}} - isConnectedShape - Bounds - {{266.36999999999824, 240.25413397723489}, {158.00000000000355, 75.491698999999997}} + {{52.511001999999998, 264.31}, {56, 26.1462}} Class ShapedGraphic - Head + FontInfo - ID - 1933 - Position - 0.50464338064193726 + Font + GillSans + Size + 14 ID - 30 - Rotation - 180.00001213033002 + 281 Shape - AdjustableArrow - ShapeData - - ratio - 0.47493430972099304 - width - 45.920928955078125 - + Rectangle Style fill - Color - - b - 0.497307 - g - 0.504555 - r - 1 - - FillType - 2 - GradientAngle - 90 - GradientColor - - b - 0.304265 - g - 0.307897 - r - 0.788251 - - MiddleFraction - 0.4523809552192688 + Draws + NO shadow - Color - - a - 0.4 - b - 0 - g - 0 - r - 0 - + Draws + NO stroke - Color - - b - 0 - g - 0.0271458 - r - 0.689052 - + Draws + NO - Tail + Text - ID - 1934 - Position - 0.50464349985122681 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 committer} + VerticalPad + 0 - TextRelativeArea - {{0.125, 0.25}, {0.75, 0.5}} - isConnectedShape - + Wrap + NO Bounds - {{201.87, 173.69399999999999}, {129, 17}} + {{46.511001999999998, 236}, {56, 26.1462}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font - Helvetica + GillSans Size - 12 + 14 ID - 1950 - Line - - ID - 1933 - Position - 0.16321820020675659 - RotationType - 0 - + 280 Shape Rectangle Style @@ -75072,11 +75522,11 @@ Ancestor} 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 Checkout the project} +\f0\fs28 \cf0 author} VerticalPad 0 @@ -75085,93 +75535,417 @@ Ancestor} Bounds - {{109.99698007712476, 144.25404206023154}, {314.37620015885648, 75.491698999999997}} + {{41.511001999999998, 207.85400000000001}, {56, 26.1462}} Class ShapedGraphic - Head + FontInfo - ID - 1934 - Position - 0.15896309912204742 + Font + GillSans + Size + 14 ID - 1949 - Rotation - 359.63553300711015 + 278 Shape - AdjustableArrow - ShapeData + Rectangle + Style - ratio - 0.47493430972099304 - width - 45.920928955078125 + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 tree} + VerticalPad + 0 + Wrap + NO + + + Class + LineGraphic + ID + 277 + Points + + {195.52600000000001, 294} + {45.995998, 294} + Style - fill + stroke Color b - 0.497307 + 0.382653 g - 0.504555 + 0.382653 r - 1 + 0.382653 - FillType - 2 - GradientAngle - 271 - GradientColor + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 2 + + + + + Class + LineGraphic + ID + 276 + Points + + {197.50399999999999, 264.31} + {47.975101000000002, 264.31} + + Style + + stroke + + Color b - 0.304265 + 0.382653 g - 0.307897 + 0.382653 r - 0.788251 + 0.382653 - MiddleFraction - 0.4523809552192688 + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 2 - shadow + + + + Class + LineGraphic + ID + 274 + Points + + {195.52600000000001, 235} + {45.995998, 235} + + Style + + stroke Color - a - 0.4 b - 0 + 0.382653 g - 0 + 0.382653 r - 0 + 0.382653 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 2 + + + + + Class + Group + Graphics + + + Bounds + {{156.50399999999999, 174.631}, {27, 26.1462}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.489796 + g + 0.489796 + r + 0.489796 + + Font + GillSans + Size + 18 + + ID + 268 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf2 size} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{59.504002, 174.631}, {56, 26.1462}} + Class + ShapedGraphic + FontInfo + + Font + GillSans-Bold + Size + 18 + + ID + 269 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\b\fs36 \cf0 commit} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + ID + 270 + Points + + {142.50399999999999, 169.87700000000001} + {142.50399999999999, 207.90799999999999} + + Style + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Class + LineGraphic + ID + 271 + Points + + {197.50399999999999, 207.90799999999999} + {43.504002, 207.90799999999999} + + Style + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Bounds + {{43.504002, 167.5}, {154, 154.5}} + Class + ShapedGraphic + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 272 + Shape + Rectangle + Style + + fill + + Color + + b + 0.757488 + g + 1 + r + 0.738389 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + CornerRadius + 5 + Width + 3 + - - stroke - - Color + Text - b - 0 - g - 0.0271458 - r - 0.689052 + VerticalPad + 0 - - TextRelativeArea - {{0.125, 0.25}, {0.75, 0.5}} - isConnectedShape - + + ID + 267 Bounds - {{144.53399999999999, 163.93401}, {64, 17}} + {{531.50402999999994, 235.13999999999999}, {154, 66}} Class ShapedGraphic FitText @@ -75181,12 +75955,12 @@ Ancestor} FontInfo Font - Helvetica + Monaco Size - 12 + 8 ID - 1940 + 320 Shape Rectangle Style @@ -75209,152 +75983,55 @@ Ancestor} Text + Align + 0 Pad 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural -\f0\fs28 \cf0 stage files} +\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 +The MIT License\ +\ +Copyright (c) <year> <copyright \ +\ +Permission is hereby granted, \ +} VerticalPad 0 Wrap NO - - Class - LineGraphic - ID - 1934 - Points - - {424.37, 136.39400000000001} - {424.37, 417} - - Style - - stroke - - Color - - b - 0.52381 - g - 0.52381 - r - 0.52381 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Class - LineGraphic - ID - 1933 - Points - - {266.37, 136.39400000000001} - {266.37, 417} - - Style - - stroke - - Color - - b - 0.52381 - g - 0.52381 - r - 0.52381 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Class - LineGraphic - ID - 1932 - Points - - {109.87, 138.16299000000001} - {108.87, 417} - - Style - - stroke - - Color - - b - 0.52381 - g - 0.52381 - r - 0.52381 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - Bounds - {{52.766998000000001, 61.967201000000003}, {112.206, 61.427101}} + {{566.50402999999994, 170.13999999999999}, {76, 22}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - BryantPro-Bold + Courier Size - 16 + 18 ID - 1927 + 319 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.742554 - g - 0.878307 - r - 0.771735 - + Draws + NO shadow @@ -75363,252 +76040,287 @@ Ancestor} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs32 \cf0 HEAD} +\f0\fs36 \cf0 911e7..} VerticalPad 0 + Wrap + NO - Bounds - {{210.767, 61.967201000000003}, {112.206, 61.427101}} Class - ShapedGraphic - FontInfo - - Font - BryantPro-Bold - Size - 16 - - ID - 1926 - Shape - RoundRect - Style - - fill + Group + Graphics + - Color + Bounds + {{640.50402999999994, 202.709}, {27, 16.753799000000001}} + Class + ShapedGraphic + FontInfo - b - 0.694025 - g - 1 - r - 0.958191 + Color + + b + 0.489796 + g + 0.489796 + r + 0.489796 + + Font + GillSans + Size + 18 - - shadow - - Draws + ID + 314 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf2 size} + VerticalPad + 0 + + Wrap NO - stroke - Color + Bounds + {{536.50402999999994, 203.709}, {40, 16.753799000000001}} + Class + ShapedGraphic + FontInfo - b - 0.382653 - g - 0.382653 - r - 0.382653 + Font + GillSans + Size + 18 - Width - 3 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} + ID + 315 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs32 \cf0 Index} - VerticalPad - 0 - - - - Bounds - {{359.25299000000001, 61.967201000000003}, {131.233, 61.427101}} - Class - ShapedGraphic - FontInfo - - Font - BryantPro-Bold - Size - 16 - - ID - 1924 - Shape - RoundRect - Style - - fill +\f0\b\fs36 \cf0 blob} + VerticalPad + 0 + + Wrap + NO + - Color + Class + LineGraphic + ID + 316 + Points + + {626.50402999999994, 196.66299000000001} + {626.50402999999994, 227.03200000000001} + + Style - b - 0.918367 - g - 0.707088 - r - 0.542092 + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Class + LineGraphic + ID + 317 + Points + + {681.50402999999994, 229.03200000000001} + {527.50402999999994, 229.03200000000001} + + Style + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Bounds + {{527.50402999999994, 195.13999999999999}, {154, 99}} + Class + ShapedGraphic + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 318 + Shape + Rectangle + Style + + fill + + Color + + b + 0.749742 + g + 0.760597 + r + 1 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + CornerRadius + 5 + Width + 3 + - - shadow - - Draws - NO - - stroke - - Color + Text - b - 0.382653 - g - 0.382653 - r - 0.382653 + VerticalPad + 0 - Width - 3 - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs32 \cf0 Working\ -Directory} - VerticalPad - 0 - - - - GridInfo - - HPages - 2 - KeepToScale - - Layers - - - Lock - NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 1 - OutlineStyle - Basic - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - 106 - UniqueID - 94 - VPages - 2 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 553}} - Class - SolidGraphic - ID - 2 - Style - - stroke - - Draws - NO - + + ID + 313 - - BaseZoom - 0 - CanvasOrigin - {0, 0} - CanvasSize - {756, 553} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - Bounds - {{328.5, 268}, {43, 17}} + {{531.50402999999994, 386}, {87, 77}} Class ShapedGraphic FitText @@ -75618,12 +76330,12 @@ Directory} FontInfo Font - Helvetica + Monaco Size - 12 + 8 ID - 1955 + 312 Shape Rectangle Style @@ -75646,15 +76358,24 @@ Directory} Text + Align + 0 Pad 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural -\f0\fs28 \cf0 git add} +\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 +require 'rubygems'\ +require 'pp'\ +\ +module Test\ + module Tester\ + \ +} VerticalPad 0 @@ -75663,7 +76384,7 @@ Directory} Bounds - {{165.5, 355.66599000000002}, {64, 17}} + {{566.50402999999994, 321}, {76, 22}} Class ShapedGraphic FitText @@ -75673,12 +76394,12 @@ Directory} FontInfo Font - Helvetica + Courier Size - 12 + 18 ID - 1941 + 311 Shape Rectangle Style @@ -75705,11 +76426,11 @@ Directory} 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 git commit} +\f0\fs36 \cf0 cba0a..} VerticalPad 0 @@ -75717,194 +76438,416 @@ Directory} NO - Bounds - {{109.05291478368096, 328.25244403779601}, {157.31708523490823, 75.491698999999997}} Class - ShapedGraphic - Head - - ID - 1932 - Position - 0.81708520650863647 - - ID - 1929 - Rotation - 180.00124564727639 - Shape - AdjustableArrow - ShapeData - - ratio - 0.47493430972099304 - width - 45.920928955078125 - - Style - - fill + Group + Graphics + - Color + Bounds + {{640.50402999999994, 353.56900000000002}, {27, 16.753799000000001}} + Class + ShapedGraphic + FontInfo - b - 0.497307 - g - 0.504555 - r - 1 + Color + + b + 0.489796 + g + 0.489796 + r + 0.489796 + + Font + GillSans + Size + 18 - FillType - 2 - GradientAngle - 90 - GradientColor + ID + 306 + Shape + Rectangle + Style - b - 0.304265 - g - 0.307897 - r - 0.788251 + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + - MiddleFraction - 0.4523809552192688 + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf2 size} + VerticalPad + 0 + + Wrap + NO - shadow - Color + Bounds + {{536.50402999999994, 354.56900000000002}, {40, 16.753799000000001}} + Class + ShapedGraphic + FontInfo - a - 0.4 - b - 0 - g - 0 - r - 0 + Font + GillSans + Size + 18 + + ID + 307 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\b\fs36 \cf0 blob} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + ID + 308 + Points + + {626.50402999999994, 347.52301} + {626.50402999999994, 377.892} + + Style + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Class + LineGraphic + ID + 309 + Points + + {681.50402999999994, 379.892} + {527.50402999999994, 379.892} + + Style + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Bounds + {{527.50402999999994, 346}, {154, 99}} + Class + ShapedGraphic + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 310 + Shape + Rectangle + Style + + fill + + Color + + b + 0.749742 + g + 0.760597 + r + 1 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + CornerRadius + 5 + Width + 3 + + + Text + + VerticalPad + 0 + + ID + 305 + + + Class + LineGraphic + ID + 304 + Points + + {454.50400000000002, 247.20099999999999} + {514.50402999999994, 247.30499} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 4 + + + + + Class + LineGraphic + FontInfo + + Font + Helvetica + Size + 12 + + ID + 303 + Points + + {454.50400000000002, 292.95598999999999} + {514.50402999999994, 366} + + Style + stroke - Color - - b - 0 - g - 0.0271458 - r - 0.689052 - + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 4 - Tail + + + Class + LineGraphic + ID + 302 + Points + + {454.50400000000002, 208.98199} + {514.50402999999994, 150.90199000000001} + + Style - ID - 1933 - Position - 0.81825047731399536 + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 4 + - TextRelativeArea - {{0.125, 0.25}, {0.75, 0.5}} - isConnectedShape - Bounds - {{266.36999999999824, 240.25413397723489}, {158.00000000000355, 75.491698999999997}} + {{527.50402999999994, 91.902396999999993}, {135, 66}} Class ShapedGraphic - Head + FitText + YES + Flow + Resize + FontInfo - ID - 1933 - Position - 0.50464338064193726 + Font + Monaco + Size + 8 ID - 30 - Rotation - 180.00001213033002 + 301 Shape - AdjustableArrow - ShapeData - - ratio - 0.47493430972099304 - width - 45.920928955078125 - + Rectangle Style fill - Color - - b - 0.497307 - g - 0.504555 - r - 1 - - FillType - 2 - GradientAngle - 90 - GradientColor - - b - 0.304265 - g - 0.307897 - r - 0.788251 - - MiddleFraction - 0.4523809552192688 + Draws + NO shadow - Color - - a - 0.4 - b - 0 - g - 0 - r - 0 - + Draws + NO stroke - Color - - b - 0 - g - 0.0271458 - r - 0.689052 - + Draws + NO - Tail + Text - ID - 1934 - Position - 0.50464349985122681 + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural + +\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 +== Testing Library\ +\ +This library is used to test\ +Ruby projects\ + \ +} + VerticalPad + 0 - TextRelativeArea - {{0.125, 0.25}, {0.75, 0.5}} - isConnectedShape - + Wrap + NO Bounds - {{228.87, 173.69399999999999}, {75, 17}} + {{562.50402999999994, 26.902398999999999}, {76, 22}} Class ShapedGraphic FitText @@ -75914,21 +76857,12 @@ Directory} FontInfo Font - Helvetica + Courier Size - 12 + 18 ID - 1950 - Line - - ID - 1933 - Position - 0.16321820020675659 - RotationType - 0 - + 236 Shape Rectangle Style @@ -75955,11 +76889,11 @@ Directory} 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 git checkout} +\f0\fs36 \cf0 5b1d3..} VerticalPad 0 @@ -75967,94 +76901,265 @@ Directory} NO - Bounds - {{109.99696004552138, 144.25404710794047}, {314.37622022236661, 75.491698999999997}} Class - ShapedGraphic - Head - - ID - 1934 - Position - 0.15896309912204742 - - ID - 1949 - Rotation - 359.63553119042075 - Shape - AdjustableArrow - ShapeData - - ratio - 0.47493430972099304 - width - 45.920928955078125 - - Style - - fill + Group + Graphics + - Color + Bounds + {{636.50402999999994, 59.471401}, {27, 16.753799000000001}} + Class + ShapedGraphic + FontInfo - b - 0.497307 - g - 0.504555 - r - 1 + Color + + b + 0.489796 + g + 0.489796 + r + 0.489796 + + Font + GillSans + Size + 18 - FillType - 2 - GradientAngle - 271 - GradientColor + ID + 231 + Shape + Rectangle + Style - b - 0.304265 - g - 0.307897 - r - 0.788251 + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + - MiddleFraction - 0.4523809552192688 + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf2 size} + VerticalPad + 0 + + Wrap + NO - shadow - Color + Bounds + {{532.50402999999994, 60.471401}, {40, 16.753799000000001}} + Class + ShapedGraphic + FontInfo - a - 0.4 - b - 0 - g - 0 - r - 0 + Font + GillSans + Size + 18 + + ID + 232 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\b\fs36 \cf0 blob} + VerticalPad + 0 + Wrap + NO - stroke - Color + Class + LineGraphic + ID + 233 + Points + + {622.50402999999994, 53.425400000000003} + {622.50402999999994, 83.794403000000003} + + Style - b - 0 - g - 0.0271458 - r - 0.689052 + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + - - TextRelativeArea - {{0.125, 0.25}, {0.75, 0.5}} - isConnectedShape - + + Class + LineGraphic + ID + 234 + Points + + {677.50402999999994, 85.794403000000003} + {523.50402999999994, 85.794403000000003} + + Style + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Bounds + {{523.50402999999994, 51.902400999999998}, {154, 99}} + Class + ShapedGraphic + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 235 + Shape + Rectangle + Style + + fill + + Color + + b + 0.749742 + g + 0.760597 + r + 1 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + CornerRadius + 5 + Width + 3 + + + Text + + VerticalPad + 0 + + + + ID + 230 Bounds - {{144.53399999999999, 163.93401}, {64, 17}} + {{367.73498999999998, 256.05498999999998}, {51, 14}} Class ShapedGraphic FitText @@ -76064,12 +77169,12 @@ Directory} FontInfo Font - Helvetica + Courier Size 12 ID - 1940 + 133 Shape Rectangle Style @@ -76096,148 +77201,43 @@ Directory} 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 stage files} +\f0\fs24 \cf0 LICENSE} VerticalPad 0 Wrap NO - - Class - LineGraphic - ID - 1934 - Points - - {424.37, 136.39400000000001} - {424.37, 417} - - Style - - stroke - - Color - - b - 0.52381 - g - 0.52381 - r - 0.52381 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Class - LineGraphic - ID - 1933 - Points - - {266.37, 136.39400000000001} - {266.37, 417} - - Style - - stroke - - Color - - b - 0.52381 - g - 0.52381 - r - 0.52381 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Class - LineGraphic - ID - 1932 - Points - - {109.87, 138.16299000000001} - {108.87, 417} - - Style - - stroke - - Color - - b - 0.52381 - g - 0.52381 - r - 0.52381 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - Bounds - {{52.766998000000001, 61.967201000000003}, {112.206, 61.427101}} + {{367.73498999999998, 281.19501000000002}, {51, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - BryantPro-Bold + Courier Size - 16 + 12 ID - 1927 + 132 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.742554 - g - 0.878307 - r - 0.771735 - + Draws + NO shadow @@ -76246,61 +77246,53 @@ Directory} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs32 \cf0 HEAD} +\f0\fs24 \cf0 test.rb} VerticalPad 0 + Wrap + NO Bounds - {{210.767, 61.967201000000003}, {112.206, 61.427101}} + {{369.23498999999998, 232.82899}, {44, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - BryantPro-Bold + Courier Size - 16 + 12 ID - 1926 + 129 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.694025 - g - 1 - r - 0.958191 - + Draws + NO shadow @@ -76309,61 +77301,53 @@ Directory} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs32 \cf0 \'cdndice} +\f0\fs24 \cf0 README} VerticalPad 0 + Wrap + NO Bounds - {{359.25299000000001, 61.967201000000003}, {131.233, 61.427101}} + {{322.76501000000002, 256}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - BryantPro-Bold + Courier Size - 16 + 12 ID - 1924 + 121 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.918367 - g - 0.707088 - r - 0.542092 - + Draws + NO shadow @@ -76372,262 +77356,94 @@ Directory} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs32 \cf0 Directorio de Trabajo} +\f0\fs24 \cf0 911e7} VerticalPad 0 - - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - - Lock + Wrap NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 1 - OutlineStyle - Basic - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - 107 - UniqueID - 96 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 553}} - Class - SolidGraphic - ID - 2 - Style - - stroke - - Draws - NO - - - BaseZoom - 0 - CanvasOrigin - {0, 0} - CanvasSize - {756, 553} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - + Bounds + {{321.76501000000002, 281.14001000000002}, {37, 14}} Class - LineGraphic - Head + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo - ID - 1942 + Font + Courier + Size + 12 ID - 1962 - Points - - {304.14400999999998, 143.5} - {221.78550000000001, 143.5} - + 120 + Shape + Rectangle Style - stroke + fill - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO + + shadow + + Draws + NO - - Tail - - ID - 1949 - - - - Class - LineGraphic - Head - - ID - 1949 - - ID - 1961 - Points - - {521.17602999999997, 143.5} - {439.71501000000001, 143.5} - - Style - stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - Tail + Text - ID - 1954 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 cba0a} + VerticalPad + 0 + Wrap + NO Class LineGraphic - Head - - ID - 1955 - ID - 1960 + 117 Points - {588.96114344158354, 66.999999999954184} - {588.961358813365, 89.500000000023917} + {364, 304.84697999999997} + {364, 224.84700000000001} Style - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 1959 - - - - Bounds - {{550.42200000000003, 28}, {77.077904000000004, 38}} - Class - ShapedGraphic - FontInfo - - Font - AvenirLTStd-Roman - Size - 14 - - ID - 1959 - Shape - RoundRect - Style - - fill - - Color - - b - 0.742554 - g - 0.878307 - r - 0.771735 - - - shadow - - Draws - NO - stroke Color @@ -76639,26 +77455,18 @@ Directory} r 0.382653 - Width - 2 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 HEAD} - VerticalPad - 0 + HeadArrow + 0 + Legacy + + TailArrow + 0 + Bounds - {{591.56299000000001, 152}, {48, 22}} + {{322.76501000000002, 232.774}, {37, 14}} Class ShapedGraphic FitText @@ -76668,12 +77476,12 @@ Directory} FontInfo Font - AvenirLTStd-Roman + Courier Size - 18 + 12 ID - 1958 + 116 Shape Rectangle Style @@ -76700,46 +77508,71 @@ Directory} 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 file.txt} +\f0\fs24 \cf0 5b1d3} VerticalPad 0 Wrap NO + + Class + LineGraphic + ID + 94 + Points + + {318, 304.84697999999997} + {318, 224.774} + + Style + + stroke + + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + + + Bounds - {{535.06299000000001, 142}, {45, 38}} + {{267, 249.92699999999999}, {56, 26.1462}} Class ShapedGraphic FontInfo Font - Courier + GillSans Size - 12 + 14 ID - 1957 + 91 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.857488 - g - 0.857488 - r - 0.978261 - + Draws + NO shadow @@ -76748,50 +77581,41 @@ Directory} stroke - Color - - b - 0.443182 - g - 0.443182 - r - 0.5 - - Width - 2 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 v3} +\f0\fs28 \cf0 blob} VerticalPad 0 + Wrap + NO Bounds - {{563.46100000000001, 100}, {51, 14}} + {{265.39699999999999, 274.99399}, {56, 26.1462}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font - Courier-Bold + GillSans Size - 12 + 14 ID - 1956 + 90 Shape Rectangle Style @@ -76818,11 +77642,11 @@ Directory} 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier-Bold;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\b\fs24 \cf0 38eb946} +\f0\fs28 \cf0 blob} VerticalPad 0 @@ -76831,67 +77655,126 @@ Directory} Bounds - {{521.67602999999997, 90}, {134.571, 34}} + {{267, 226.774}, {56, 26.1462}} Class ShapedGraphic + FontInfo + + Font + GillSans + Size + 14 + ID - 1955 + 300 Shape Rectangle Style + fill + + Draws + NO + shadow Draws NO + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 blob} + VerticalPad + 0 + Wrap + NO - Bounds - {{521.67602999999997, 90}, {134.571, 107}} Class - ShapedGraphic + LineGraphic ID - 1954 - Shape - Rectangle + 79 + Points + + {424.51501000000002, 274.99399} + {274.98498999999998, 274.99399} + Style - fill + stroke Color b - 0.887755 + 0.382653 g - 0.887755 + 0.382653 r - 0.887755 + 0.382653 + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 2 - shadow - - Draws - NO - + + + + Class + LineGraphic + ID + 78 + Points + + {424, 251.994} + {274.47100999999998, 251.994} + + Style + stroke Color b - 0.484694 + 0.382653 g - 0.484694 + 0.382653 r - 0.484694 + 0.382653 + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 2 Bounds - {{374.53100999999998, 152}, {48, 22}} + {{311, 168.84700000000001}, {76, 22}} Class ShapedGraphic FitText @@ -76901,12 +77784,12 @@ Directory} FontInfo Font - AvenirLTStd-Roman + Courier Size 18 ID - 1953 + 12 Shape Rectangle Style @@ -76933,11 +77816,11 @@ Directory} 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 file.txt} +\f0\fs36 \cf0 92ec2..} VerticalPad 0 @@ -76946,33 +77829,39 @@ Directory} Bounds - {{318.03100999999998, 142}, {45, 38}} + {{379.73498999999998, 195.95099999999999}, {27, 22}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo + Color + + b + 0.489796 + g + 0.489796 + r + 0.489796 + Font - Courier + GillSans Size - 12 + 18 ID - 1952 + 27 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.760005 - g - 0.972826 - r - 0.808281 - + Draws + NO shadow @@ -76981,35 +77870,30 @@ Directory} stroke - Color - - b - 0.396197 - g - 0.505102 - r - 0.417189 - - Width - 2 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 v2} +\f0\fs36 \cf2 size} VerticalPad 0 + Wrap + NO Bounds - {{346.42899, 100}, {51, 14}} + {{283.5, 196.84700000000001}, {39, 22}} Class ShapedGraphic FitText @@ -77019,12 +77903,12 @@ Directory} FontInfo Font - Courier-Bold + GillSans-Bold Size - 12 + 18 ID - 1951 + 28 Shape Rectangle Style @@ -77051,11 +77935,11 @@ Directory} 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier-Bold;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\b\fs24 \cf0 9e5e6a4} +\f0\b\fs36 \cf0 tree} VerticalPad 0 @@ -77063,68 +77947,247 @@ Directory} NO - Bounds - {{304.64400999999998, 90}, {134.571, 34}} - Class - ShapedGraphic - ID - 1950 - Shape - Rectangle - Style - - shadow - - Draws - NO - - - - - Bounds - {{304.64400999999998, 90}, {134.571, 107}} Class - ShapedGraphic - ID - 1949 - Shape - Rectangle - Style - - fill + Group + Graphics + - Color + Class + LineGraphic + ID + 30 + Points + + {371, 195.55499} + {371, 222.87800999999999} + + Style - b - 0.887755 - g - 0.887755 - r - 0.887755 + stroke + + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + - shadow - Draws - NO + Class + LineGraphic + ID + 31 + Points + + {426, 222.87800999999999} + {272, 222.87800999999999} + + Style + + stroke + + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + - stroke - Color + Bounds + {{272, 193.84700000000001}, {154, 111}} + Class + ShapedGraphic + FontInfo - b - 0.484694 - g - 0.484694 - r - 0.484694 + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 32 + Shape + Rectangle + Style + + fill + + Color + + b + 1 + g + 0.806818 + r + 0.813024 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + CornerRadius + 5 + Width + 3 + + + Text + + VerticalPad + 0 + + ID + 29 + Magnets + + {1, 1} + {1, -1} + {-1, -1} + {-1, 1} + + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 1 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + 0301 + UniqueID + 78 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 553}} + Class + SolidGraphic + ID + 2 + Style + + stroke + + Draws + NO + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + Bounds - {{79.000197999999997, 220}, {97, 17}} + {{113.486, 167.5}, {37, 14}} Class ShapedGraphic FitText @@ -77134,12 +78197,12 @@ Directory} FontInfo Font - AvenirLTStd-Heavy + Courier Size - 14 + 12 ID - 1948 + 300 Shape Rectangle Style @@ -77166,11 +78229,11 @@ Directory} 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\b\fs28 \cf0 Git Repository} +\f0\fs24 \cf0 92ec2} VerticalPad 0 @@ -77178,76 +78241,64 @@ Directory} NO - Bounds - {{156.60201000000001, 152}, {48, 22}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo + LineGraphic + Head - Font - AvenirLTStd-Roman - Size - 18 + ID + 296 ID - 1946 - Shape - Rectangle + 297 + Points + + {591.65301999999997, 278} + {591.88204694128603, 323.50001900216131} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 4 - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs36 \cf0 file.txt} - VerticalPad - 0 - - Wrap - NO Bounds - {{100.102, 142}, {45, 38}} + {{515.02801999999997, 325}, {154, 55}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Courier + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 1945 + 296 Shape - RoundRect + Rectangle Style fill @@ -77255,11 +78306,11 @@ Directory} Color b - 0.978261 + 1 g - 0.91928 + 0.806818 r - 0.810044 + 0.813024 shadow @@ -77272,109 +78323,88 @@ Directory} Color b - 0.489796 + 0.316327 g - 0.457123 + 0.139073 r - 0.399877 + 0.109175 + CornerRadius + 5 Width - 2 + 3 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 v1} +\f0\fs28 \cf0 Snapshot C} VerticalPad 0 - Bounds - {{128.5, 100}, {51, 14}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo + LineGraphic + Head - Font - Courier-Bold - Size - 12 + ID + 294 ID - 1944 - Shape - Rectangle + 295 + Points + + {346.88198999999997, 278} + {347.11101694128604, 323.50001900216131} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 4 - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier-Bold;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\b\fs24 \cf0 eb43bf8} - VerticalPad - 0 - - Wrap - NO Bounds - {{86.714500000000001, 90}, {134.571, 34}} + {{270.25698999999997, 325}, {154, 55}} Class ShapedGraphic - ID - 1943 - Shape - Rectangle - Style + FontInfo - shadow + Color - Draws - NO + b + 1 + g + 1 + r + 1 + Font + Geneva + NSKern + 0.0 + Size + 14 - - - Bounds - {{86.714500000000001, 90}, {134.571, 107}} - Class - ShapedGraphic ID - 1942 + 294 Shape Rectangle Style @@ -77384,11 +78414,11 @@ Directory} Color b - 0.887755 + 1 g - 0.887755 + 0.806818 r - 0.887755 + 0.813024 shadow @@ -77401,86 +78431,95 @@ Directory} Color b - 0.484694 + 0.316327 g - 0.484694 + 0.139073 r - 0.484694 + 0.109175 + CornerRadius + 5 + Width + 3 + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 Snapshot B} + VerticalPad + 0 + - Bounds - {{593.5, 396}, {48, 22}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo + LineGraphic + Head - Font - AvenirLTStd-Roman - Size - 18 + ID + 292 ID - 1937 - Shape - Rectangle + 293 + Points + + {109.88944649633919, 277.99998099266361} + {110.11850471866613, 323.50001900794734} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 4 - Text + Tail - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs36 \cf0 file.txt} - VerticalPad - 0 + ID + 44 - Wrap - NO Bounds - {{537, 386}, {45, 38}} + {{33.264499999999998, 325}, {154, 55}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Courier + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 1936 + 292 Shape - RoundRect + Rectangle Style fill @@ -77488,11 +78527,11 @@ Directory} Color b - 0.978261 + 1 g - 0.91928 + 0.806818 r - 0.810044 + 0.813024 shadow @@ -77505,32 +78544,108 @@ Directory} Color b - 0.489796 + 0.316327 g - 0.457123 + 0.139073 r - 0.399877 + 0.109175 + CornerRadius + 5 Width - 2 + 3 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 v1} +\f0\fs28 \cf0 Snapshot A} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 251 + + ID + 289 + Points + + {514.52099999999996, 199.25} + {429.75698999999997, 199.25} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 4 + + + Tail + + ID + 272 + + + + Class + LineGraphic + Head + + ID + 44 + + ID + 288 + Points + + {272.75698999999997, 199.25} + {187.99299999999999, 199.25} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 4 + + + Tail + + ID + 251 + + Bounds - {{375.5, 395}, {48, 22}} + {{597.01397999999995, 231.5}, {37, 14}} Class ShapedGraphic FitText @@ -77540,12 +78655,12 @@ Directory} FontInfo Font - AvenirLTStd-Roman + Courier Size - 18 + 12 ID - 1935 + 287 Shape Rectangle Style @@ -77572,11 +78687,11 @@ Directory} 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 file.txt} +\f0\fs24 \cf0 Scott} VerticalPad 0 @@ -77585,9 +78700,13 @@ Directory} Bounds - {{319, 385}, {45, 38}} + {{597.01397999999995, 210.5}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font @@ -77596,22 +78715,15 @@ Directory} 12 ID - 1934 + 286 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.978261 - g - 0.91928 - r - 0.810044 - + Draws + NO shadow @@ -77620,35 +78732,30 @@ Directory} stroke - Color - - b - 0.489796 - g - 0.457123 - r - 0.399877 - - Width - 2 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 v1} +\f0\fs24 \cf0 Scott} VerticalPad 0 + Wrap + NO Bounds - {{157.5, 396}, {48, 22}} + {{597.01397999999995, 189.5}, {37, 14}} Class ShapedGraphic FitText @@ -77658,12 +78765,12 @@ Directory} FontInfo Font - AvenirLTStd-Roman + Courier Size - 18 + 12 ID - 1933 + 285 Shape Rectangle Style @@ -77690,11 +78797,11 @@ Directory} 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 file.txt} +\f0\fs24 \cf0 34ac2} VerticalPad 0 @@ -77703,33 +78810,30 @@ Directory} Bounds - {{101, 386}, {45, 38}} + {{524.02801999999997, 250.67699999999999}, {145, 22}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - Courier + Monaco Size - 12 + 8 ID - 1301 + 283 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.978261 - g - 0.91928 - r - 0.810044 - + Draws + NO shadow @@ -77738,50 +78842,77 @@ Directory} stroke - Color - - b - 0.489796 - g - 0.457123 - r - 0.399877 - - Width - 2 + Draws + NO Text + Align + 0 + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural -\f0\fs24 \cf0 v1} +\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 +add feature #32 - ability to\ +add new formats to the central} VerticalPad 0 + Wrap + NO + + + Class + LineGraphic + ID + 282 + Points + + {588.52099999999996, 248.32300000000001} + {588.52099999999996, 162.17699999999999} + + Style + + stroke + + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + + Bounds - {{128.5, 351}, {51, 14}} + {{524.02801999999997, 223.85400000000001}, {56, 26.1462}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font - Courier-Bold + GillSans Size - 12 + 14 ID - 1932 + 281 Shape Rectangle Style @@ -77808,11 +78939,11 @@ Directory} 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier-Bold;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\b\fs24 \cf0 38eb946} +\f0\fs28 \cf0 committer} VerticalPad 0 @@ -77821,33 +78952,26 @@ Directory} Bounds - {{78.000197999999997, 283}, {154.078, 61.427101}} + {{520.02801999999997, 202.35400000000001}, {56, 26.1462}} Class ShapedGraphic FontInfo Font - AvenirLTStd-Roman + GillSans Size - 16 + 14 ID - 1927 + 280 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.742554 - g - 0.878307 - r - 0.771735 - + Draws + NO shadow @@ -77856,61 +78980,49 @@ Directory} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs32 \cf0 HEAD} +\f0\fs28 \cf0 author} VerticalPad 0 + Wrap + NO Bounds - {{294.96100000000001, 283}, {154.078, 61.427101}} + {{520.02801999999997, 181.35400000000001}, {56, 26.1462}} Class ShapedGraphic FontInfo Font - AvenirLTStd-Roman + GillSans Size - 16 + 14 ID - 1926 + 279 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.694025 - g - 1 - r - 0.958191 - + Draws + NO shadow @@ -77919,61 +79031,49 @@ Directory} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs32 \cf0 Index} +\f0\fs28 \cf0 parent} VerticalPad 0 + Wrap + NO Bounds - {{511.92200000000003, 283}, {154.078, 61.427101}} + {{520.02801999999997, 160.35400000000001}, {56, 26.1462}} Class ShapedGraphic FontInfo Font - AvenirLTStd-Roman + GillSans Size - 16 + 14 ID - 1924 + 278 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.918367 - g - 0.707088 - r - 0.542092 - + Draws + NO shadow @@ -77982,288 +79082,166 @@ Directory} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs32 \cf0 Working\ -Directory} +\f0\fs28 \cf0 tree} VerticalPad 0 + Wrap + NO - Bounds - {{87.612198000000006, 334}, {134.571, 34}} - Class - ShapedGraphic - ID - 1931 - Shape - Rectangle - Style - - shadow - - Draws - NO - - - - - Bounds - {{521.67602999999997, 334}, {134.571, 107}} Class - ShapedGraphic + LineGraphic ID - 1930 - Shape - Rectangle + 277 + Points + + {668.04303000000004, 248.5} + {518.51300000000003, 248.5} + Style - fill - - Color - - b - 0.887755 - g - 0.887755 - r - 0.887755 - - - shadow - - Draws - NO - stroke Color b - 0.484694 + 0.382653 g - 0.484694 + 0.382653 r - 0.484694 + 0.382653 + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 2 - Bounds - {{304.64400999999998, 334}, {134.571, 107}} Class - ShapedGraphic + LineGraphic ID - 1929 - Shape - Rectangle + 276 + Points + + {668.52801999999997, 227.5} + {518.99901999999997, 227.5} + Style - fill - - Color - - b - 0.887755 - g - 0.887755 - r - 0.887755 - - - shadow - - Draws - NO - stroke Color b - 0.484694 + 0.382653 g - 0.484694 + 0.382653 r - 0.484694 + 0.382653 + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 2 - Bounds - {{87.612198000000006, 334}, {134.571, 107}} Class - ShapedGraphic + LineGraphic ID - 1928 - Shape - Rectangle + 275 + Points + + {668.55700999999999, 206.5} + {519.02801999999997, 206.5} + Style - fill - - Color - - b - 0.887755 - g - 0.887755 - r - 0.887755 - - - shadow - - Draws - NO - stroke Color b - 0.484694 + 0.382653 g - 0.484694 + 0.382653 r - 0.484694 + 0.382653 + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 2 - Bounds - {{72.000099000000006, 53}, {600, 191}} Class - ShapedGraphic + LineGraphic ID - 1947 - Shape - Rectangle + 274 + Points + + {668.04303000000004, 185.5} + {518.51300000000003, 185.5} + Style - shadow + stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 2 - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - - Lock - NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 1 - OutlineStyle - Basic - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - trees - UniqueID - 95 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 553}} - Class - SolidGraphic - ID - 2 - Style - - stroke - - Draws - NO - - - - BaseZoom - 0 - CanvasOrigin - {0, 0} - CanvasSize - {756, 553} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - Bounds - {{127, 288}, {98, 17}} + {{555.02099999999996, 95.5}, {76, 22}} Class ShapedGraphic FitText @@ -78273,12 +79251,12 @@ Directory} FontInfo Font - Helvetica + Courier Size - 12 + 18 ID - 1962 + 273 Shape Rectangle Style @@ -78305,11 +79283,11 @@ Directory} 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 Remove the file} +\f0\fs36 \cf0 f30ab..} VerticalPad 0 @@ -78318,7 +79296,7 @@ Directory} Bounds - {{119, 218}, {71, 17}} + {{355.25, 231.5}, {37, 14}} Class ShapedGraphic FitText @@ -78328,12 +79306,12 @@ Directory} FontInfo Font - Helvetica + Courier Size 12 ID - 1960 + 266 Shape Rectangle Style @@ -78360,11 +79338,11 @@ Directory} 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 Add the file} +\f0\fs24 \cf0 Scott} VerticalPad 0 @@ -78373,251 +79351,30 @@ Directory} Bounds - {{84.602997000000016, 259.25415538394424}, {159.50000299999999, 75.491698999999997}} - Class - ShapedGraphic - Head - - ID - 1958 - Position - 0.62158960103988647 - - ID - 1961 - Rotation - 180 - Shape - AdjustableArrow - ShapeData - - ratio - 0.47493430972099304 - width - 45.920928955078125 - - Style - - fill - - Color - - b - 0.519712 - g - 0.547436 - r - 0.55102 - - FillType - 2 - GradientAngle - 271 - GradientColor - - b - 0.788251 - g - 0.770734 - r - 0.779493 - - MiddleFraction - 0.4523809552192688 - - shadow - - Color - - a - 0.4 - b - 0 - g - 0 - r - 0 - - - stroke - - Color - - b - 0.211905 - g - 0.214286 - r - 0.213095 - - - - Tail - - ID - 1932 - Position - 0.62158960103988647 - - TextRelativeArea - {{0.125, 0.25}, {0.75, 0.5}} - isConnectedShape - - - - Bounds - {{84.602997000000016, 188.25414994975114}, {159.50000299999999, 75.491698999999997}} - Class - ShapedGraphic - Head - - ID - 1932 - Position - 0.32306581735610962 - - ID - 1959 - Shape - AdjustableArrow - ShapeData - - ratio - 0.47493430972099304 - width - 45.920928955078125 - - Style - - fill - - Color - - b - 0.519712 - g - 0.547436 - r - 0.55102 - - FillType - 2 - GradientAngle - 90 - GradientColor - - b - 0.788251 - g - 0.770734 - r - 0.779493 - - MiddleFraction - 0.4523809552192688 - - shadow - - Color - - a - 0.4 - b - 0 - g - 0 - r - 0 - - - stroke - - Color - - b - 0.211905 - g - 0.214286 - r - 0.213095 - - - - Tail - - ID - 1958 - Position - 0.32306581735610962 - - TextRelativeArea - {{0.125, 0.25}, {0.75, 0.5}} - isConnectedShape - - - - Class - LineGraphic - ID - 1958 - Points - - {84.602997000000002, 149.16299000000001} - {84.602997000000002, 387} - - Style - - stroke - - Color - - b - 0.52381 - g - 0.52381 - r - 0.52381 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Bounds - {{29, 72.967201000000003}, {112.206, 61.427101}} + {{355.25, 210.5}, {37, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - BryantPro-Bold + Courier Size - 16 + 12 ID - 1957 + 265 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.608088 - g - 0.627167 - r - 0.878307 - + Draws + NO shadow @@ -78626,35 +79383,30 @@ Directory} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs32 \cf0 Untracked} +\f0\fs24 \cf0 Scott} VerticalPad 0 + Wrap + NO Bounds - {{431.233, 245}, {82, 17}} + {{355.25, 189.5}, {37, 14}} Class ShapedGraphic FitText @@ -78664,12 +79416,12 @@ Directory} FontInfo Font - Helvetica + Courier Size 12 ID - 1956 + 264 Shape Rectangle Style @@ -78696,11 +79448,11 @@ Directory} 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 Stage the file} +\f0\fs24 \cf0 98ca9} VerticalPad 0 @@ -78709,7 +79461,7 @@ Directory} Bounds - {{277.767, 186.16299000000001}, {70, 17}} + {{356.25, 167.5}, {37, 14}} Class ShapedGraphic FitText @@ -78719,12 +79471,12 @@ Directory} FontInfo Font - Helvetica + Courier Size 12 ID - 1955 + 263 Shape Rectangle Style @@ -78751,11 +79503,11 @@ Directory} 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 Edit the file} +\f0\fs24 \cf0 184ca} VerticalPad 0 @@ -78764,208 +79516,109 @@ Directory} Bounds - {{400.60299999999984, 215.25414603028642}, {158.00003000000038, 75.491698999999997}} + {{282.26400999999998, 250.67699999999999}, {116, 22}} Class ShapedGraphic - Head + FitText + YES + Flow + Resize + FontInfo - ID - 1934 - Position - 0.44402676820755005 + Font + Monaco + Size + 8 ID - 1929 - Rotation - 359.99999589599383 + 262 Shape - AdjustableArrow - ShapeData - - ratio - 0.47493430972099304 - width - 45.920928955078125 - + Rectangle Style fill - Color - - b - 0.497307 - g - 0.504555 - r - 1 - - FillType - 2 - GradientAngle - 90 - GradientColor - - b - 0.304265 - g - 0.307897 - r - 0.788251 - - MiddleFraction - 0.4523809552192688 + Draws + NO shadow - Color - - a - 0.4 - b - 0 - g - 0 - r - 0 - + Draws + NO stroke - Color - - b - 0 - g - 0.0271458 - r - 0.689052 - + Draws + NO - Tail + Text - ID - 1933 - Position - 0.44074857234954834 + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural + +\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 +fixed bug #1328 - stack \ +overflow under certain} + VerticalPad + 0 - TextRelativeArea - {{0.125, 0.25}, {0.75, 0.5}} - isConnectedShape - + Wrap + NO - Bounds - {{244.10300000000001, 157.25415006283467}, {156.50000000000003, 75.491698999999997}} Class - ShapedGraphic - Head - - ID - 1933 - Position - 0.19868451356887817 - + LineGraphic ID - 30 - Rotation - 1.0525728271204571e-06 - Shape - AdjustableArrow - ShapeData - - ratio - 0.47493430972099304 - width - 45.920928955078125 - + 261 + Points + + {346.75698999999997, 248.32300000000001} + {346.75698999999997, 162.17699999999999} + Style - fill - - Color - - b - 0.497307 - g - 0.504555 - r - 1 - - FillType - 2 - GradientAngle - 90 - GradientColor - - b - 0.304265 - g - 0.307897 - r - 0.788251 - - MiddleFraction - 0.4523809552192688 - - shadow - - Color - - a - 0.4 - b - 0 - g - 0 - r - 0 - - stroke Color b - 0 + 0.382653 g - 0.0271458 + 0.382653 r - 0.689052 + 0.382653 + HeadArrow + 0 + Legacy + + TailArrow + 0 - Tail - - ID - 1932 - Position - 0.19272445142269135 - - TextRelativeArea - {{0.125, 0.25}, {0.75, 0.5}} - isConnectedShape - Bounds - {{195.267, 19}, {231, 29}} + {{282.26400999999998, 223.85400000000001}, {56, 26.1462}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font - Helvetica-Bold + GillSans Size - 24 + 14 ID - 1953 + 260 Shape Rectangle Style @@ -78992,11 +79645,11 @@ Directory} 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\b\fs48 \cf0 File Status Lifecycle} +\f0\fs28 \cf0 committer} VerticalPad 0 @@ -79005,31 +79658,18 @@ Directory} Bounds - {{376.10300000000001, 343.29401000000001}, {49, 17}} + {{278.26400999999998, 202.35400000000001}, {56, 26.1462}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font - Helvetica + GillSans Size - 12 + 14 ID - 1950 - Line - - ID - 1933 - Position - 0.85306888818740845 - RotationType - 0 - + 259 Shape Rectangle Style @@ -79056,11 +79696,11 @@ Directory} 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 Commit} +\f0\fs28 \cf0 author} VerticalPad 0 @@ -79069,115 +79709,69 @@ Directory} Bounds - {{244.10299999999907, 312.25413769115715}, {314.50003000000191, 75.491698999999997}} + {{278.26400999999998, 181.35400000000001}, {56, 26.1462}} Class ShapedGraphic - Head + FontInfo - ID - 1932 - Position - 0.84443128108978271 + Font + GillSans + Size + 14 ID - 1949 - Rotation - 179.99999360315383 + 258 Shape - AdjustableArrow - ShapeData - - ratio - 0.47493430972099304 - width - 45.920928955078125 - + Rectangle Style fill - Color - - b - 0.497307 - g - 0.504555 - r - 1 - - FillType - 2 - GradientAngle - 271 - GradientColor - - b - 0.304265 - g - 0.307897 - r - 0.788251 - - MiddleFraction - 0.4523809552192688 + Draws + NO shadow - Color - - a - 0.4 - b - 0 - g - 0 - r - 0 - + Draws + NO stroke - Color - - b - 0 - g - 0.0271458 - r - 0.689052 - + Draws + NO - Tail + Text - ID - 1934 - Position - 0.85186904668807983 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 parent} + VerticalPad + 0 - TextRelativeArea - {{0.125, 0.25}, {0.75, 0.5}} - isConnectedShape - + Wrap + NO Bounds - {{278.767, 174.93401}, {64, 17}} + {{278.26400999999998, 160.35400000000001}, {56, 26.1462}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font - Helvetica + GillSans Size - 12 + 14 ID - 1940 + 257 Shape Rectangle Style @@ -79204,11 +79798,11 @@ Directory} 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 stage files} +\f0\fs28 \cf0 tree} VerticalPad 0 @@ -79219,11 +79813,11 @@ Directory} Class LineGraphic ID - 1934 + 256 Points - {558.60302999999999, 147.39400000000001} - {558.60302999999999, 385.23099000000002} + {426.27899000000002, 248.5} + {276.74898999999999, 248.5} Style @@ -79232,11 +79826,11 @@ Directory} Color b - 0.52381 + 0.382653 g - 0.52381 + 0.382653 r - 0.52381 + 0.382653 HeadArrow 0 @@ -79245,7 +79839,7 @@ Directory} TailArrow 0 Width - 3 + 2 @@ -79253,11 +79847,11 @@ Directory} Class LineGraphic ID - 1933 + 255 Points - {400.60300000000001, 147.39400000000001} - {400.60300000000001, 387} + {426.76400999999998, 227.5} + {277.23498999999998, 227.5} Style @@ -79266,11 +79860,11 @@ Directory} Color b - 0.52381 + 0.382653 g - 0.52381 + 0.382653 r - 0.52381 + 0.382653 HeadArrow 0 @@ -79279,7 +79873,7 @@ Directory} TailArrow 0 Width - 3 + 2 @@ -79287,11 +79881,11 @@ Directory} Class LineGraphic ID - 1932 + 254 Points - {244.10300000000001, 149.16299000000001} - {244.10300000000001, 387} + {426.79300000000001, 206.5} + {277.26400999999998, 206.5} Style @@ -79300,11 +79894,11 @@ Directory} Color b - 0.52381 + 0.382653 g - 0.52381 + 0.382653 r - 0.52381 + 0.382653 HeadArrow 0 @@ -79313,45 +79907,22 @@ Directory} TailArrow 0 Width - 3 + 2 - Bounds - {{185.10300000000001, 72.967201000000003}, {119, 61.427101}} Class - ShapedGraphic - FontInfo - - Font - BryantPro-Bold - Size - 16 - + LineGraphic ID - 1927 - Shape - RoundRect + 253 + Points + + {426.27899000000002, 185.5} + {276.74898999999999, 185.5} + Style - fill - - Color - - b - 0.742554 - g - 0.878307 - r - 0.771735 - - - shadow - - Draws - NO - stroke Color @@ -79363,52 +79934,43 @@ Directory} r 0.382653 + HeadArrow + 0 + Legacy + + TailArrow + 0 Width - 3 + 2 - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs32 \cf0 Unmodified} - VerticalPad - 0 - Bounds - {{345, 72.967201000000003}, {112.206, 61.427101}} + {{313.25698999999997, 95.5}, {76, 22}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - BryantPro-Bold + Courier Size - 16 + 18 ID - 1926 + 252 Shape - RoundRect + Rectangle Style fill - Color - - b - 0.694025 - g - 1 - r - 0.958191 - + Draws + NO shadow @@ -79417,241 +79979,287 @@ Directory} stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs32 \cf0 Modified} +\f0\fs36 \cf0 34ac2..} VerticalPad 0 + Wrap + NO - Bounds - {{493.48599000000002, 72.967201000000003}, {131.233, 61.427101}} Class - ShapedGraphic - FontInfo - - Font - BryantPro-Bold - Size - 16 - - ID - 1924 - Shape - RoundRect - Style - - fill + Group + Graphics + - Color + Bounds + {{387.25698999999997, 129.131}, {27, 26.1462}} + Class + ShapedGraphic + FontInfo - b - 0.918367 - g - 0.707088 - r - 0.542092 + Color + + b + 0.489796 + g + 0.489796 + r + 0.489796 + + Font + GillSans + Size + 18 - - shadow - - Draws - NO - - stroke - - Color + ID + 247 + Shape + Rectangle + Style - b - 0.382653 - g - 0.382653 - r - 0.382653 + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + - Width - 3 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} -{\colortbl;\red255\green255\blue255;} + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs32 \cf0 Staged} - VerticalPad - 0 - - - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - - Lock - NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 1 - OutlineStyle - Basic - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - 201 - UniqueID - 63 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 1106}} - Class - SolidGraphic - ID - 2 - Style - - stroke - - Draws - NO - - - - BaseZoom - 0 - CanvasOrigin - {0, 0} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - - - Bounds - {{611.99297999999999, 476}, {37, 14}} - Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo - - Font - Courier - Size - 12 - - ID - 154 - Shape - Rectangle - Style - - fill - - Draws +\f0\fs36 \cf2 size} + VerticalPad + 0 + + Wrap NO - shadow - Draws + Bounds + {{290.25698999999997, 129.131}, {56, 26.1462}} + Class + ShapedGraphic + FontInfo + + Font + GillSans-Bold + Size + 18 + + ID + 248 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\b\fs36 \cf0 commit} + VerticalPad + 0 + + Wrap NO - stroke - Draws - NO + Class + LineGraphic + ID + 249 + Points + + {373.25698999999997, 124.377} + {373.25698999999997, 162.40799999999999} + + Style + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 Scott} - VerticalPad - 0 - - Wrap - NO + + Class + LineGraphic + ID + 250 + Points + + {428.25698999999997, 162.40799999999999} + {274.25698999999997, 162.40799999999999} + + Style + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + + + + + Bounds + {{274.25698999999997, 122}, {154, 154.5}} + Class + ShapedGraphic + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 251 + Shape + Rectangle + Style + + fill + + Color + + b + 0.757488 + g + 1 + r + 0.738389 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + CornerRadius + 5 + Width + 3 + + + Text + + VerticalPad + 0 + + + + ID + 246 Bounds - {{611.99297999999999, 455}, {37, 14}} + {{113.486, 209.5}, {37, 14}} Class ShapedGraphic FitText @@ -79666,7 +80274,7 @@ Directory} 12 ID - 153 + 125 Shape Rectangle Style @@ -79706,7 +80314,7 @@ Directory} Bounds - {{611.99297999999999, 435}, {37, 14}} + {{113.486, 188.5}, {37, 14}} Class ShapedGraphic FitText @@ -79721,7 +80329,7 @@ Directory} 12 ID - 152 + 124 Shape Rectangle Style @@ -79752,7 +80360,7 @@ Directory} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 90ecd} +\f0\fs24 \cf0 Scott} VerticalPad 0 @@ -79761,7 +80369,7 @@ Directory} Bounds - {{611.99297999999999, 412}, {37, 14}} + {{597.01397999999995, 167.42699999999999}, {37, 14}} Class ShapedGraphic FitText @@ -79776,7 +80384,7 @@ Directory} 12 ID - 151 + 299 Shape Rectangle Style @@ -79807,7 +80415,7 @@ Directory} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 2fe65} +\f0\fs24 \cf0 0de24} VerticalPad 0 @@ -79816,7 +80424,7 @@ Directory} Bounds - {{539.00702000000001, 495.17700000000002}, {145, 22}} + {{40.5, 231.5}, {135, 11}} Class ShapedGraphic FitText @@ -79831,7 +80439,7 @@ Directory} 8 ID - 150 + 95 Shape Rectangle Style @@ -79865,8 +80473,7 @@ Directory} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural \f0\fs16 \cf2 \expnd0\expndtw0\kerning0 -this is the commit before that\ -and I'm not sure why} +initial commit of my project} VerticalPad 0 @@ -79877,11 +80484,11 @@ and I'm not sure why} Class LineGraphic ID - 149 + 93 Points - {603.5, 492.82299999999998} - {603.5, 406.67700000000002} + {105.00000408366566, 227.32300000000001} + {104.99299999999999, 162.17699999999999} Style @@ -79904,10 +80511,17 @@ and I'm not sure why} 0 + Tail + + ID + 83 + Position + 0.53176617622375488 + Bounds - {{539.00702000000001, 468.35399999999998}, {56, 26.1462}} + {{40.5, 201.85400000000001}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -79918,7 +80532,7 @@ and I'm not sure why} 14 ID - 148 + 92 Shape Rectangle Style @@ -79958,7 +80572,7 @@ and I'm not sure why} Bounds - {{535.00702000000001, 446.85399999999998}, {56, 26.1462}} + {{36.5, 180.35400000000001}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -79969,7 +80583,7 @@ and I'm not sure why} 14 ID - 147 + 86 Shape Rectangle Style @@ -80009,7 +80623,7 @@ and I'm not sure why} Bounds - {{535.00702000000001, 425.85399999999998}, {56, 26.1462}} + {{36.5, 181.35400000000001}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -80020,7 +80634,7 @@ and I'm not sure why} 14 ID - 146 + 85 Shape Rectangle Style @@ -80045,13 +80659,6 @@ and I'm not sure why} Pad 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 parent} VerticalPad 0 @@ -80060,7 +80667,7 @@ and I'm not sure why} Bounds - {{535.00702000000001, 404.85399999999998}, {56, 26.1462}} + {{36.5, 160.35400000000001}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -80071,7 +80678,7 @@ and I'm not sure why} 14 ID - 145 + 84 Shape Rectangle Style @@ -80113,11 +80720,79 @@ and I'm not sure why} Class LineGraphic ID - 144 + 83 Points - {683.02197000000001, 493} - {533.49199999999996, 493} + {184.51499999999999, 227.32300000000001} + {34.985000999999997, 227.32300000000001} + + Style + + stroke + + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 2 + + + + + Class + LineGraphic + ID + 82 + Points + + {185, 205.5} + {35.471001000000001, 205.5} + + Style + + stroke + + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 2 + + + + + Class + LineGraphic + ID + 80 + Points + + {184.51499999999999, 185.5} + {34.985000999999997, 185.5} Style @@ -80132,118 +80807,328 @@ and I'm not sure why} r 0.382653 - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 2 + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 2 + + + + + Bounds + {{71.492996000000005, 95.5}, {76, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Courier + Size + 18 + + ID + 67 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 98ca9..} + VerticalPad + 0 + + Wrap + NO + + + Class + Group + Graphics + + + Bounds + {{145.49299999999999, 129.131}, {27, 26.1462}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.489796 + g + 0.489796 + r + 0.489796 + + Font + GillSans + Size + 18 + + ID + 40 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf2 size} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{48.493000000000002, 129.131}, {56, 26.1462}} + Class + ShapedGraphic + FontInfo + + Font + GillSans-Bold + Size + 18 + + ID + 41 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\b\fs36 \cf0 commit} + VerticalPad + 0 + + Wrap + NO - - - - Class - LineGraphic - ID - 143 - Points - - {683.50702000000001, 472} - {533.97802999999999, 472} - - Style - - stroke - Color + Class + LineGraphic + ID + 42 + Points + + {131.49299999999999, 124.377} + {131.49299999999999, 162.40799999999999} + + Style - b - 0.382653 - g - 0.382653 - r - 0.382653 + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 2 - - - - Class - LineGraphic - ID - 142 - Points - - {683.53601000000003, 451} - {534.00702000000001, 451} - - Style - - stroke - Color + Class + LineGraphic + ID + 43 + Points + + {186.49299999999999, 162.40799999999999} + {32.493000000000002, 162.40799999999999} + + Style - b - 0.382653 - g - 0.382653 - r - 0.382653 + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 3 + - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 2 - - - - Class - LineGraphic - ID - 141 - Points - - {683.02197000000001, 430} - {533.49199999999996, 430} - - Style - - stroke - Color + Bounds + {{32.493000000000002, 122}, {154, 154.5}} + Class + ShapedGraphic + FontInfo - b - 0.382653 - g - 0.382653 - r - 0.382653 + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 44 + Shape + Rectangle + Style + + fill + + Color + + b + 0.757488 + g + 1 + r + 0.738389 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.31599 + g + 0.295367 + r + 0.316327 + + CornerRadius + 5 + Width + 3 + + + Text + + VerticalPad + 0 - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 2 - + + ID + 39 Class @@ -80252,7 +81137,7 @@ and I'm not sure why} Bounds - {{644, 373.63101}, {27, 26.1462}} + {{629.02099999999996, 129.131}, {27, 26.1462}} Class ShapedGraphic FontInfo @@ -80272,7 +81157,7 @@ and I'm not sure why} 18 ID - 135 + 268 Shape Rectangle Style @@ -80312,7 +81197,7 @@ and I'm not sure why} Bounds - {{547, 373.63101}, {56, 26.1462}} + {{532.02099999999996, 129.131}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -80323,7 +81208,7 @@ and I'm not sure why} 18 ID - 136 + 269 Shape Rectangle Style @@ -80365,11 +81250,11 @@ and I'm not sure why} Class LineGraphic ID - 137 + 270 Points - {630, 368.87700999999998} - {630, 406.90798999999998} + {615.02099999999996, 124.377} + {615.02099999999996, 162.40799999999999} Style @@ -80399,11 +81284,11 @@ and I'm not sure why} Class LineGraphic ID - 138 + 271 Points - {685, 406.90798999999998} - {531, 406.90798999999998} + {670.02099999999996, 162.40799999999999} + {516.02099999999996, 162.40799999999999} Style @@ -80431,7 +81316,7 @@ and I'm not sure why} Bounds - {{531, 366.5}, {154, 154.5}} + {{516.02099999999996, 122}, {154, 154.5}} Class ShapedGraphic FontInfo @@ -80453,7 +81338,7 @@ and I'm not sure why} 14 ID - 139 + 272 Shape Rectangle Style @@ -80500,34 +81385,284 @@ and I'm not sure why} ID - 134 + 267 + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 1 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + 0302 + UniqueID + 70 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 553}} + Class + SolidGraphic + ID + 2 + Style + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + + + Class + LineGraphic + Head + + ID + 300 + + ID + 312 + Points + + {530.03455781395883, 218.36130117368404} + {551.21890380435252, 264.13869882417117} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 2 + + + Tail + + ID + 309 + Bounds - {{212.73500000000001, 286.05498999999998}, {37, 14}} + {{469, 162}, {95.356903000000003, 55}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0 + g + 0 + r + 0 + + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 309 + Shape + Rectangle + Style + + fill + + Color + + b + 0.832366 + g + 0.841837 + r + 0.820446 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.301453 + g + 0.297998 + r + 0.316327 + + CornerRadius + 5 + Width + 3 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 v1.0} + VerticalPad + 0 + + + + Class + LineGraphic + Head + + ID + 303 + + ID + 307 + Points + + {639.678434057971, 120.5} + {639.678434057971, 160.5} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 2 + + + Tail + + ID + 306 + + + + Bounds + {{592, 64}, {95.356903000000003, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0.336735 + g + 0.336735 + r + 0.336735 + Font - Courier + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 133 + 306 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.902991 + g + 0.913265 + r + 0.890059 + shadow @@ -80536,53 +81671,111 @@ and I'm not sure why} stroke - Draws - NO + Color + + b + 0.301453 + g + 0.297998 + r + 0.316327 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;\red86\green86\blue86;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 xdiff} +\f0\fs28 \cf2 HEAD} VerticalPad 0 - Wrap - NO + + + Class + LineGraphic + Head + + ID + 300 + + ID + 305 + Points + + {618.84247255652372, 218.21404798595506} + {585.41098902898284, 264.28595201578884} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 2 + + + Tail + + ID + 303 + Bounds - {{211.33799999999999, 266.12799000000001}, {51, 14}} + {{592, 162}, {95.356903000000003, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font - Courier + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 132 + 303 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.832366 + g + 0.841837 + r + 0.820446 + shadow @@ -80591,53 +81784,148 @@ and I'm not sure why} stroke - Draws - NO + Color + + b + 0.301453 + g + 0.297998 + r + 0.316327 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 test.rb} +\f0\fs28 \cf0 master} VerticalPad 0 - Wrap - NO + + + Class + LineGraphic + Head + + ID + 299 + + ID + 302 + Points + + {499.14301, 293} + {426.77599000000004, 293} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 + + + Tail + + ID + 300 + + + + Class + LineGraphic + Head + + ID + 298 + + ID + 301 + Points + + {295.91199, 293} + {229.36400000000003, 293} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 + + + Tail + + ID + 299 + Bounds - {{212.10300000000001, 245.05499}, {29, 14}} + {{500.64301, 265.5}, {127.864, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font - Courier + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 131 + 300 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.699991 + g + 1 + r + 0.726874 + shadow @@ -80646,53 +81934,74 @@ and I'm not sure why} stroke - Draws - NO + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 test} +\f0\fs36 \cf0 f30ab} VerticalPad 0 - Wrap - NO Bounds - {{212.47, 224.05499}, {22, 14}} + {{297.41199, 265.5}, {127.864, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font - Courier + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 130 + 299 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.699991 + g + 1 + r + 0.726874 + shadow @@ -80701,53 +82010,74 @@ and I'm not sure why} stroke - Draws - NO + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 lib} +\f0\fs36 \cf0 34ac2} VerticalPad 0 - Wrap - NO Bounds - {{211.23500000000001, 204.98199}, {44, 14}} + {{100, 265.5}, {127.864, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font - Courier + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 129 + 298 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.699991 + g + 1 + r + 0.726874 + shadow @@ -80756,53 +82086,106 @@ and I'm not sure why} stroke - Draws - NO + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 README} +\f0\fs36 \cf0 98ca9} VerticalPad 0 - Wrap - NO + + + Class + LineGraphic + Head + + ID + 296 + + ID + 297 + Points + + {564.26397999999995, 322} + {564.45393797403801, 367.50001307216741} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 + + Bounds - {{198, 442.07299999999998}, {37, 14}} + {{500.64301, 369}, {127.864, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Courier + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 128 + 296 Shape Rectangle Style fill - Draws - NO + Color + + b + 1 + g + 0.806818 + r + 0.813024 + shadow @@ -80811,53 +82194,106 @@ and I'm not sure why} stroke - Draws - NO + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 Scott} +\f0\fs28 \cf0 Snapshot C} VerticalPad 0 - Wrap - NO + + + Class + LineGraphic + Head + + ID + 294 + + ID + 295 + Points + + {361.03298999999998, 322} + {361.22292965187461, 367.50001306964583} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 + + Bounds - {{197.5, 419.07299999999998}, {44, 14}} + {{297.41199, 369}, {127.864, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Courier + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 127 + 294 Shape Rectangle Style fill - Draws - NO + Color + + b + 1 + g + 0.806818 + r + 0.813024 + shadow @@ -80866,108 +82302,111 @@ and I'm not sure why} stroke - Draws - NO + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 commit} +\f0\fs28 \cf0 Snapshot B} VerticalPad 0 - Wrap - NO - Bounds - {{198, 398.07299999999998}, {37, 14}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo + LineGraphic + Head - Font - Courier - Size - 12 + ID + 292 ID - 126 - Shape - Rectangle + 293 + Points + + {164.1116036105586, 321.99997123371611} + {164.39339611813145, 367.5000287663708} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 - Text + Tail - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 ae668} - VerticalPad - 0 + ID + 298 - Wrap - NO Bounds - {{414.99301000000003, 476}, {37, 14}} + {{100.64100000000001, 369}, {127.864, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Courier + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 125 + 292 Shape Rectangle Style fill - Draws - NO + Color + + b + 1 + g + 0.806818 + r + 0.813024 + shadow @@ -80976,108 +82415,197 @@ and I'm not sure why} stroke - Draws - NO + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 Scott} +\f0\fs28 \cf0 Snapshot A} VerticalPad 0 - Wrap + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 1 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + 0303 + UniqueID + 71 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {1512, 553}} + Class + SolidGraphic + ID + 2 + Style + + stroke + + Draws + NO + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + - Bounds - {{414.99301000000003, 455}, {37, 14}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo + LineGraphic + Head - Font - Courier - Size - 12 + ID + 300 ID - 124 - Shape - Rectangle + 316 + Points + + {702.37401999999997, 293} + {630.00701000000004, 293} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 - Text + Tail - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 Scott} - VerticalPad - 0 + ID + 315 - Wrap - NO Bounds - {{414.99301000000003, 435}, {37, 14}} + {{703.87401999999997, 265.5}, {127.864, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font - Courier + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 123 + 315 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.699991 + g + 1 + r + 0.726874 + shadow @@ -81086,53 +82614,106 @@ and I'm not sure why} stroke - Draws - NO + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 a149e} +\f0\fs36 \cf0 a38d3} VerticalPad 0 - Wrap - NO + + + Class + LineGraphic + Head + + ID + 313 + + ID + 314 + Points + + {767.495, 322} + {767.68495186665018, 367.50001307132686} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 + + Bounds - {{414.99301000000003, 412}, {37, 14}} + {{703.87401999999997, 369}, {127.864, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Courier + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 122 + 313 Shape Rectangle Style fill - Draws - NO + Color + + b + 1 + g + 0.806818 + r + 0.813024 + shadow @@ -81141,108 +82722,111 @@ and I'm not sure why} stroke - Draws - NO + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 c4ec5} +\f0\fs28 \cf0 Snapshot D} VerticalPad 0 - Wrap - NO - Bounds - {{164.76499999999999, 286}, {37, 14}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo + LineGraphic + Head - Font - Courier - Size - 12 + ID + 300 ID - 121 - Shape - Rectangle + 312 + Points + + {564.57530612559492, 218.49999999998812} + {564.57512510713173, 264.00000000001182} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 2 - Text + Tail - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 911e7} - VerticalPad - 0 + ID + 309 - Wrap - NO Bounds - {{165.36799999999999, 266.07299999999998}, {37, 14}} + {{516.89697000000001, 162}, {95.356903000000003, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font - Courier + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 120 + 309 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.832366 + g + 0.841837 + r + 0.820446 + shadow @@ -81251,108 +82835,111 @@ and I'm not sure why} stroke - Draws - NO + Color + + b + 0.301453 + g + 0.297998 + r + 0.316327 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 cba0a} +\f0\fs28 \cf0 v1.0} VerticalPad 0 - Wrap - NO - Bounds - {{165.13300000000001, 246}, {37, 14}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo + LineGraphic + Head - Font - Courier - Size - 12 + ID + 303 ID - 119 - Shape - Rectangle + 307 + Points + + {767.80642405797096, 120.5} + {767.80642405797096, 160.5} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 2 - Text + Tail - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 cdc8b} - VerticalPad - 0 + ID + 306 - Wrap - NO Bounds - {{165, 225}, {37, 14}} + {{720.12798999999995, 64}, {95.356903000000003, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0.336735 + g + 0.336735 + r + 0.336735 + Font - Courier + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 118 + 306 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.902991 + g + 0.913265 + r + 0.890059 + shadow @@ -81361,85 +82948,111 @@ and I'm not sure why} stroke - Draws - NO + Color + + b + 0.301453 + g + 0.297998 + r + 0.316327 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;\red86\green86\blue86;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 03e78} +\f0\fs28 \cf2 HEAD} VerticalPad 0 - Wrap - NO Class LineGraphic + Head + + ID + 315 + ID - 117 + 305 Points - {205.52901, 303.07299999999998} - {205.52901, 203.92699999999999} + {767.80632333341032, 218.49999999998758} + {767.80613793410589, 264.00000000001239} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 + Width + 2 + Tail + + ID + 303 + Bounds - {{164.76499999999999, 204.92699999999999}, {37, 14}} + {{720.12798999999995, 162}, {95.356903000000003, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font - Courier + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 116 + 303 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.832366 + g + 0.841837 + r + 0.820446 + shadow @@ -81448,147 +83061,148 @@ and I'm not sure why} stroke - Draws - NO + Color + + b + 0.301453 + g + 0.297998 + r + 0.316327 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 5b1d3} +\f0\fs28 \cf0 master} VerticalPad 0 - Wrap - NO - Bounds - {{122, 466.14600000000002}, {135, 22}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo + LineGraphic + Head - Font - Monaco - Size - 8 + ID + 299 ID - 115 - Shape - Rectangle + 302 + Points + + {499.14301, 293} + {426.77599000000004, 293} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 - Text + Tail - Align - 0 - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural - -\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 -my tag message that explains\ -this tag } - VerticalPad - 0 + ID + 300 - Wrap - NO Class LineGraphic + Head + + ID + 298 + ID - 114 + 301 Points - {185.9999974096292, 459.10998999999998} - {185.964, 393.82299999999998} + {295.91199, 293} + {229.36400000000003, 293} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 + Width + 3 Tail ID - 109 - Position - 0.53157222270965576 + 299 Bounds - {{117.471, 433}, {56, 26.1462}} + {{500.64301, 265.5}, {127.864, 55}} Class ShapedGraphic FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font - GillSans + Geneva + NSKern + 0.0 Size 14 ID - 112 + 300 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.699991 + g + 1 + r + 0.726874 + shadow @@ -81597,50 +83211,151 @@ this tag } stroke - Draws - NO + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 tagger} +\f0\fs36 \cf0 f30ab} VerticalPad 0 - Wrap - NO Bounds - {{117.471, 412}, {56, 26.1462}} + {{297.41199, 265.5}, {127.864, 55}} Class ShapedGraphic FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font - GillSans + Geneva + NSKern + 0.0 Size 14 ID - 111 + 299 Shape Rectangle Style fill + + Color + + b + 0.699991 + g + 1 + r + 0.726874 + + + shadow Draws NO + stroke + + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 34ac2} + VerticalPad + 0 + + + + Bounds + {{100, 265.5}, {127.864, 55}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0 + g + 0 + r + 0 + + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 298 + Shape + Rectangle + Style + + fill + + Color + + b + 0.699991 + g + 1 + r + 0.726874 + + shadow Draws @@ -81648,49 +83363,106 @@ this tag } stroke - Draws - NO + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 type} +\f0\fs36 \cf0 98ca9} VerticalPad 0 - Wrap - NO + + + Class + LineGraphic + Head + + ID + 296 + + ID + 297 + Points + + {564.26397999999995, 322} + {564.45393797403801, 367.50001307216741} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 + + Bounds - {{117.471, 391}, {56, 26.1462}} + {{500.64301, 369}, {127.864, 55}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - GillSans + Geneva + NSKern + 0.0 Size 14 ID - 110 + 296 Shape Rectangle Style fill - Draws - NO + Color + + b + 1 + g + 0.806818 + r + 0.813024 + shadow @@ -81699,155 +83471,219 @@ this tag } stroke - Draws - NO + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 object} +\f0\fs28 \cf0 Snapshot C} VerticalPad 0 - Wrap - NO Class LineGraphic + Head + + ID + 294 + ID - 109 + 295 Points - {265.48599000000002, 459.10998999999998} - {115.956, 459.10998999999998} + {361.03298999999998, 322} + {361.22292965187461, 367.50001306964583} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 Width - 2 + 3 + Bounds + {{297.41199, 369}, {127.864, 55}} Class - LineGraphic + ShapedGraphic + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + ID - 107 - Points - - {266, 437.14600000000002} - {116.471, 437.14600000000002} - + 294 + Shape + Rectangle Style + fill + + Color + + b + 1 + g + 0.806818 + r + 0.813024 + + + shadow + + Draws + NO + stroke Color b - 0.382653 + 0.316327 g - 0.382653 + 0.139073 r - 0.382653 + 0.109175 - HeadArrow - 0 - Legacy - - TailArrow - 0 + CornerRadius + 5 Width - 2 + 3 + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 Snapshot B} + VerticalPad + 0 + Class LineGraphic + Head + + ID + 292 + ID - 106 + 293 Points - {265.48599000000002, 416.14600000000002} - {115.956, 416.14600000000002} + {164.1116036105586, 321.99997123371611} + {164.39339611813145, 367.5000287663708} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 Width - 2 + 3 + Tail + + ID + 298 + Bounds - {{342.00698999999997, 495.17700000000002}, {140, 22}} + {{100.64100000000001, 369}, {127.864, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Monaco + Geneva + NSKern + 0.0 Size - 8 + 14 ID - 95 + 292 Shape Rectangle Style fill - Draws - NO + Color + + b + 1 + g + 0.806818 + r + 0.813024 + shadow @@ -81856,168 +83692,234 @@ this tag } stroke - Draws - NO + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + CornerRadius + 5 + Width + 3 Text - Align - 0 - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 -my commit message goes here\ -and it is really, really cool} +\f0\fs28 \cf0 Snapshot A} VerticalPad 0 - Wrap + + + GridInfo + + HPages + 2 + KeepToScale + + Layers + + + Lock NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 1 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + 307 + UniqueID + 89 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {1512, 553}} + Class + SolidGraphic + ID + 2 + Style + + stroke + + Draws + NO + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + Class LineGraphic + Head + + ID + 299 + ID - 94 + 320 Points - {160, 303.07299999999998} - {160, 203.92699999999999} + {361.34399000000002, 218.5} + {361.34399000000002, 264} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 + Width + 2 + Tail + + ID + 317 + Class LineGraphic + Head + + ID + 317 + ID - 93 + 319 Points - {406.5, 492.82299999999998} - {406.5, 406.67700000000002} + {361.34430781500441, 120.49999999998403} + {361.34412342190706, 160.50000000001589} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 + Width + 2 - - - Bounds - {{342.00698999999997, 468.35399999999998}, {56, 26.1462}} - Class - ShapedGraphic - FontInfo - - Font - GillSans - Size - 14 - - ID - 92 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text + Tail - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 committer} - VerticalPad - 0 + ID + 318 - Wrap - NO Bounds - {{109, 280.92700000000002}, {56, 26.1462}} + {{313.66599000000002, 64}, {95.356903000000003, 55}} Class ShapedGraphic FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font - GillSans + Geneva + NSKern + 0.0 Size 14 ID - 91 + 318 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.832366 + g + 0.841837 + r + 0.820446 + shadow @@ -82026,49 +83928,74 @@ and it is really, really cool} stroke - Draws - NO + Color + + b + 0.301453 + g + 0.297998 + r + 0.316327 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 blob} +\f0\fs28 \cf0 v1.1} VerticalPad 0 - Wrap - NO Bounds - {{109, 259.92700000000002}, {56, 26.1462}} + {{297.41199, 162}, {127.864, 55}} Class ShapedGraphic FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font - GillSans + Geneva + NSKern + 0.0 Size 14 ID - 90 + 317 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.369753 + g + 0.639089 + r + 1 + shadow @@ -82077,100 +84004,111 @@ and it is really, really cool} stroke - Draws - NO + Color + + b + 0.0976745 + g + 0.197553 + r + 0.316327 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 blob} +\f0\fs36 \cf0 tag data} VerticalPad 0 - Wrap - NO - Bounds - {{109, 239.92699999999999}, {56, 26.1462}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Font - GillSans - Size - 14 + ID + 300 ID - 89 - Shape - Rectangle + 316 + Points + + {702.37401999999997, 293} + {630.00701000000004, 293} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 - Text + Tail - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 tree} - VerticalPad - 0 + ID + 315 - Wrap - NO Bounds - {{109, 217.92699999999999}, {56, 26.1462}} + {{703.87401999999997, 265.5}, {127.864, 55}} Class ShapedGraphic FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font - GillSans + Geneva + NSKern + 0.0 Size 14 ID - 88 + 315 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.699991 + g + 1 + r + 0.726874 + shadow @@ -82179,100 +84117,106 @@ and it is really, really cool} stroke - Draws - NO + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 tree} +\f0\fs36 \cf0 a38d3} VerticalPad 0 - Wrap - NO - Bounds - {{109, 198.92699999999999}, {56, 26.1462}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Font - GillSans - Size - 14 + ID + 313 ID - 87 - Shape - Rectangle + 314 + Points + + {767.495, 322} + {767.68495186665018, 367.50001307132686} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 blob} - VerticalPad - 0 - - Wrap - NO Bounds - {{338.00698999999997, 446.85399999999998}, {56, 26.1462}} + {{703.87401999999997, 369}, {127.864, 55}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - GillSans + Geneva + NSKern + 0.0 Size 14 ID - 86 + 313 Shape Rectangle Style fill - Draws - NO + Color + + b + 1 + g + 0.806818 + r + 0.813024 + shadow @@ -82281,100 +84225,111 @@ and it is really, really cool} stroke - Draws - NO + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 author} +\f0\fs28 \cf0 Snapshot D} VerticalPad 0 - Wrap - NO - Bounds - {{338.00698999999997, 425.85399999999998}, {56, 26.1462}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Font - GillSans - Size - 14 + ID + 300 ID - 85 - Shape - Rectangle + 312 + Points + + {564.57530612559492, 218.49999999998812} + {564.57512510713173, 264.00000000001182} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 2 - Text + Tail - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 parent} - VerticalPad - 0 + ID + 309 - Wrap - NO Bounds - {{338.00698999999997, 404.85399999999998}, {56, 26.1462}} + {{516.89697000000001, 162}, {95.356903000000003, 55}} Class ShapedGraphic FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font - GillSans + Geneva + NSKern + 0.0 Size 14 ID - 84 + 309 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.832366 + g + 0.841837 + r + 0.820446 + shadow @@ -82383,325 +84338,374 @@ and it is really, really cool} stroke - Draws - NO + Color + + b + 0.301453 + g + 0.297998 + r + 0.316327 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 tree} +\f0\fs28 \cf0 v1.0} VerticalPad 0 - Wrap - NO Class LineGraphic + Head + + ID + 303 + ID - 83 + 307 Points - {486.02199999999999, 493} - {336.49200000000002, 493} + {767.80642405797096, 120.5} + {767.80642405797096, 160.5} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 Width 2 + Tail + + ID + 306 + + Bounds + {{720.12798999999995, 64}, {95.356903000000003, 55}} Class - LineGraphic - ID - 82 - Points - - {486.50698999999997, 472} - {336.97800000000001, 472} - - Style + ShapedGraphic + FontInfo - stroke + Color - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 2 + b + 0.336735 + g + 0.336735 + r + 0.336735 + Font + Geneva + NSKern + 0.0 + Size + 14 - - - Class - LineGraphic ID - 81 - Points - - {486.53600999999998, 451} - {337.00698999999997, 451} - + 306 + Shape + Rectangle Style + fill + + Color + + b + 0.902991 + g + 0.913265 + r + 0.890059 + + + shadow + + Draws + NO + stroke Color b - 0.382653 + 0.301453 g - 0.382653 + 0.297998 r - 0.382653 + 0.316327 - HeadArrow - 0 - Legacy - - TailArrow - 0 + CornerRadius + 5 Width - 2 + 3 + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;\red86\green86\blue86;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf2 HEAD} + VerticalPad + 0 + Class LineGraphic + Head + + ID + 315 + ID - 80 + 305 Points - {486.02199999999999, 430} - {336.49200000000002, 430} + {767.80632333341032, 218.49999999998758} + {767.80613793410589, 264.00000000001239} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 Width 2 + Tail + + ID + 303 + + Bounds + {{720.12798999999995, 162}, {95.356903000000003, 55}} Class - LineGraphic + ShapedGraphic + FontInfo + + Color + + b + 0 + g + 0 + r + 0 + + Font + Geneva + NSKern + 0.0 + Size + 14 + ID - 79 - Points - - {266.51501000000002, 284} - {116.985, 284} - + 303 + Shape + Rectangle Style - stroke + fill Color b - 0.382653 + 0.832366 g - 0.382653 + 0.841837 r - 0.382653 + 0.820446 - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 2 - - - - Class - LineGraphic - ID - 78 - Points - - {266, 263} - {116.471, 263} - - Style - + shadow + + Draws + NO + stroke Color b - 0.382653 + 0.301453 g - 0.382653 + 0.297998 r - 0.382653 + 0.316327 - HeadArrow - 0 - Legacy - - TailArrow - 0 + CornerRadius + 5 Width - 2 + 3 + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 master} + VerticalPad + 0 + Class LineGraphic + Head + + ID + 299 + ID - 77 + 302 Points - {266.02899000000002, 242} - {116.5, 242} + {499.14301, 293} + {426.77599000000004, 293} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 Width - 2 + 3 + Tail + + ID + 300 + Class LineGraphic + Head + + ID + 298 + ID - 76 + 301 Points - {266.51501000000002, 221} - {116.985, 221} + {295.91199, 293} + {229.36400000000003, 293} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 Width - 2 + 3 + Tail + + ID + 299 + Bounds - {{334, 205}, {146, 99}} + {{500.64301, 265.5}, {127.864, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font - Monaco + Geneva + NSKern + 0.0 Size - 8 + 14 ID - 75 + 300 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.699991 + g + 1 + r + 0.726874 + shadow @@ -82710,64 +84714,74 @@ and it is really, really cool} stroke - Draws - NO + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 Text - Align - 0 - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 -#ifndef REVISION_H\ -#define REVISION_H\ -\ -#include "parse-options.h"\ -\ -#define SEEN (1u<<0)\ -#define UNINTERESTING (1u\ -#define TREESAME (1u<<2)\ -} +\f0\fs36 \cf0 f30ab} VerticalPad 0 - Wrap - NO Bounds - {{205, 534}, {59, 17}} + {{297.41199, 265.5}, {127.864, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font - Courier + Geneva + NSKern + 0.0 Size 14 ID - 74 + 299 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.699991 + g + 1 + r + 0.726874 + shadow @@ -82776,53 +84790,74 @@ and it is really, really cool} stroke - Draws - NO + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 c36d4..} +\f0\fs36 \cf0 34ac2} VerticalPad 0 - Wrap - NO Bounds - {{122, 533}, {57, 19}} + {{100, 265.5}, {127.864, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font - GillSans + Geneva + NSKern + 0.0 Size - 16 + 14 ID - 70 + 298 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.699991 + g + 1 + r + 0.726874 + shadow @@ -82831,54 +84866,59 @@ and it is really, really cool} stroke - Draws - NO + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs32 \cf0 tags/v1.3} +\f0\fs36 \cf0 98ca9} VerticalPad 0 - Wrap - NO Class LineGraphic + Head + + ID + 296 + ID - 71 + 297 Points - {198, 527} - {198, 559} + {564.26397999999995, 322} + {564.45393797403801, 367.50001307216741} Style stroke - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 Width @@ -82888,7 +84928,7 @@ and it is really, really cool} Bounds - {{114, 525}, {154, 34}} + {{500.64301, 369}, {127.864, 55}} Class ShapedGraphic FontInfo @@ -82910,7 +84950,7 @@ and it is really, really cool} 14 ID - 73 + 296 Shape Rectangle Style @@ -82920,11 +84960,11 @@ and it is really, really cool} Color b - 0.831633 + 1 g - 0.831633 + 0.806818 r - 0.831633 + 0.813024 shadow @@ -82937,11 +84977,11 @@ and it is really, really cool} Color b - 0.31599 + 0.316327 g - 0.295367 + 0.139073 r - 0.316327 + 0.109175 CornerRadius 5 @@ -82951,91 +84991,89 @@ and it is really, really cool} Text + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 Snapshot C} VerticalPad 0 - Bounds - {{373, 340}, {76, 22}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo + LineGraphic + Head - Font - Courier - Size - 18 + ID + 294 ID - 67 - Shape - Rectangle + 295 + Points + + {361.03298999999998, 322} + {361.22292965187461, 367.50001306964583} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs36 \cf0 ae668..} - VerticalPad - 0 - - Wrap - NO Bounds - {{153, 331.03699}, {76, 22}} + {{297.41199, 369}, {127.864, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Courier + Geneva + NSKern + 0.0 Size - 18 + 14 ID - 66 + 294 Shape Rectangle Style fill - Draws - NO + Color + + b + 1 + g + 0.806818 + r + 0.813024 + shadow @@ -83044,544 +85082,236 @@ and it is really, really cool} stroke - Draws - NO + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 49e11..} +\f0\fs28 \cf0 Snapshot B} VerticalPad 0 - Wrap - NO Class - Group - Graphics + LineGraphic + Head + + ID + 292 + + ID + 293 + Points + {164.1116036105586, 321.99997123371611} + {164.39339611813145, 367.5000287663708} + + Style + + stroke - Bounds - {{226, 361.96201000000002}, {27, 23.692301}} - Class - ShapedGraphic - FontInfo - - Color - - b - 0.489796 - g - 0.489796 - r - 0.489796 - - Font - GillSans - Size - 18 - - ID - 61 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs36 \cf2 size} - VerticalPad - 0 - - Wrap - NO - - - Bounds - {{127, 361.96201000000002}, {22, 23.692301}} - Class - ShapedGraphic - FontInfo - - Font - GillSans-Bold - Size - 18 - - ID - 62 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\b\fs36 \cf0 tag} - VerticalPad - 0 - - Wrap - NO - - - Class - LineGraphic - ID - 63 - Points - - {212, 357.65399000000002} - {212, 392.11498999999998} - - Style - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Class - LineGraphic - ID - 64 - Points - - {267, 392.11498999999998} - {113, 392.11498999999998} - - Style - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Bounds - {{113, 355.5}, {154, 140}} - Class - ShapedGraphic - FontInfo - - Color - - b - 1 - g - 1 - r - 1 - - Font - Geneva - NSKern - 0.0 - Size - 14 - - ID - 65 - Shape - Rectangle - Style - - fill - - Color - - b - 0.760284 - g - 0.885853 - r - 1 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - CornerRadius - 5 - Width - 3 - - - Text - - VerticalPad - 0 - + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 - - ID - 60 + + Tail + + ID + 298 + + Bounds + {{100.64100000000001, 369}, {127.864, 55}} Class - Group - Graphics - - - Bounds - {{447, 373.63101}, {27, 26.1462}} - Class - ShapedGraphic - FontInfo - - Color - - b - 0.489796 - g - 0.489796 - r - 0.489796 - - Font - GillSans - Size - 18 - - ID - 40 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs36 \cf2 size} - VerticalPad - 0 - - Wrap - NO - + ShapedGraphic + FontInfo + + Color - Bounds - {{350, 373.63101}, {56, 26.1462}} - Class - ShapedGraphic - FontInfo - - Font - GillSans-Bold - Size - 18 - - ID - 41 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\b\fs36 \cf0 commit} - VerticalPad - 0 - - Wrap - NO + b + 1 + g + 1 + r + 1 + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 292 + Shape + Rectangle + Style + + fill - Class - LineGraphic - ID - 42 - Points - - {433, 368.87700999999998} - {433, 406.90798999999998} - - Style + Color - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - + b + 1 + g + 0.806818 + r + 0.813024 + shadow - Class - LineGraphic - ID - 43 - Points - - {488, 406.90798999999998} - {334, 406.90798999999998} - - Style - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - + Draws + NO + stroke - Bounds - {{334, 366.5}, {154, 154.5}} - Class - ShapedGraphic - FontInfo - - Color - - b - 1 - g - 1 - r - 1 - - Font - Geneva - NSKern - 0.0 - Size - 14 - - ID - 44 - Shape - Rectangle - Style - - fill - - Color - - b - 0.757488 - g - 1 - r - 0.738389 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - CornerRadius - 5 - Width - 3 - - - Text + Color - VerticalPad - 0 + b + 0.316327 + g + 0.139073 + r + 0.109175 + CornerRadius + 5 + Width + 3 - - ID - 39 + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 Snapshot A} + VerticalPad + 0 + + + + GridInfo + + HPages + 2 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 1 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + 308 + UniqueID + 90 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 553}} + Class + SolidGraphic + ID + 2 + Style + + stroke + + Draws + NO + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + Bounds - {{369, 139}, {76, 22}} + {{317, 328.18200999999999}, {29, 14}} Class ShapedGraphic FitText @@ -83593,10 +85323,10 @@ and it is really, really cool} Font Courier Size - 18 + 12 ID - 19 + 131 Shape Rectangle Style @@ -83627,7 +85357,7 @@ and it is really, really cool} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 5b1d3..} +\f0\fs24 \cf0 v1.3} VerticalPad 0 @@ -83635,273 +85365,93 @@ and it is really, really cool} NO + Bounds + {{232.23598999999999, 320.81698999999998}, {56, 26.1462}} Class - Group - Graphics - + ShapedGraphic + FontInfo + + Font + GillSans + Size + 14 + + ID + 130 + Shape + Rectangle + Style + + fill - Bounds - {{443, 170}, {27, 22}} - Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo - - Color - - b - 0.489796 - g - 0.489796 - r - 0.489796 - - Font - GillSans - Size - 18 - - ID - 21 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs36 \cf2 size} - VerticalPad - 0 - - Wrap + Draws NO + shadow - Bounds - {{339, 170}, {40, 22}} - Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo - - Font - GillSans - Size - 18 - - ID - 22 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\b\fs36 \cf0 blob} - VerticalPad - 0 - - Wrap + Draws NO + stroke - Class - LineGraphic - ID - 23 - Points - - {429, 166} - {429, 198} - - Style - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Class - LineGraphic - ID - 24 - Points - - {484, 198} - {330, 198} - - Style - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - + Draws + NO - - Bounds - {{330, 164}, {154, 130}} - Class - ShapedGraphic - FontInfo - - Color - - b - 1 - g - 1 - r - 1 - - Font - Geneva - NSKern - 0.0 - Size - 14 - - ID - 25 - Shape - Rectangle - Style - - fill - - Color - - b - 0.749742 - g - 0.760597 - r - 1 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - CornerRadius - 5 - Width - 3 - - - Text + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 tag} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + ID + 129 + Points + + {381.76400999999998, 345.96301} + {232.23598999999999, 345.96301} + + Style + + stroke + + Color - VerticalPad - 0 + b + 0.382653 + g + 0.382653 + r + 0.382653 + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 2 - - ID - 20 + Bounds - {{153, 139}, {76, 22}} + {{315, 307.03600999999998}, {37, 14}} Class ShapedGraphic FitText @@ -83913,10 +85463,10 @@ and it is really, really cool} Font Courier Size - 18 + 12 ID - 12 + 128 Shape Rectangle Style @@ -83947,7 +85497,7 @@ and it is really, really cool} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 c36d4..} +\f0\fs24 \cf0 Scott} VerticalPad 0 @@ -83956,7 +85506,7 @@ and it is really, really cool} Bounds - {{227, 170}, {27, 22}} + {{314.5, 284.03600999999998}, {44, 14}} Class ShapedGraphic FitText @@ -83965,22 +85515,13 @@ and it is really, really cool} Resize FontInfo - Color - - b - 0.489796 - g - 0.489796 - r - 0.489796 - Font - GillSans + Courier Size - 18 + 12 ID - 27 + 127 Shape Rectangle Style @@ -84007,11 +85548,11 @@ and it is really, really cool} 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf2 size} +\f0\fs24 \cf0 commit} VerticalPad 0 @@ -84020,7 +85561,7 @@ and it is really, really cool} Bounds - {{123.5, 170}, {39, 22}} + {{315, 263.03600999999998}, {37, 14}} Class ShapedGraphic FitText @@ -84030,12 +85571,12 @@ and it is really, really cool} FontInfo Font - GillSans-Bold + Courier Size - 18 + 12 ID - 28 + 126 Shape Rectangle Style @@ -84062,11 +85603,11 @@ and it is really, really cool} 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\b\fs36 \cf0 tree} +\f0\fs24 \cf0 ae668} VerticalPad 0 @@ -84074,441 +85615,117 @@ and it is really, really cool} NO + Bounds + {{239.5, 353.03600999999998}, {135, 22}} Class - Group - Graphics - - - Class - LineGraphic - ID - 30 - Points - - {213, 166.15401} - {213, 200.61501000000001} - - Style - - stroke - - Color - - b - 0.316327 - g - 0.139073 - r - 0.109175 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Class - LineGraphic - ID - 31 - Points - - {268, 200.61501000000001} - {114, 200.61501000000001} - - Style - - stroke - - Color - - b - 0.316327 - g - 0.139073 - r - 0.109175 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Bounds - {{114, 164}, {154, 140}} - Class - ShapedGraphic - FontInfo - - Color - - b - 1 - g - 1 - r - 1 - - Font - Geneva - NSKern - 0.0 - Size - 14 - - ID - 32 - Shape - Rectangle - Style - - fill - - Color - - b - 1 - g - 0.806818 - r - 0.813024 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.316327 - g - 0.139073 - r - 0.109175 - - CornerRadius - 5 - Width - 3 - - - Text - - VerticalPad - 0 - - - - ID - 29 - - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - - Lock - NO - Name - Layer 1 - Print - YES - View + ShapedGraphic + FitText YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 2 - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - Canvas 10 - UniqueID - 65 - VPages - 2 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 553}} - Class - SolidGraphic - ID - 2 - Style - - stroke - - Draws - NO - - - - BaseZoom - 0 - CanvasOrigin - {0, 0} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - - - Class - LineGraphic - ID - 245 - Points - - {410, 446.25} - {455, 391.38299999999998} - {496.41100999999998, 391} - - Style + Flow + Resize + FontInfo - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - Width - 3 - + Font + Monaco + Size + 8 - - - Class - LineGraphic ID - 244 - Points - - {403.58899000000002, 290} - {452, 227} - {490, 220.964} - + 115 + Shape + Rectangle Style - stroke + fill - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - Width - 3 + Draws + NO - - - - Class - LineGraphic - ID - 242 - Points - - {394.32299999999998, 154} - {442, 62} - {490, 51.604301} - - Style - - stroke + shadow - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - Width - 3 + Draws + NO - - - - Class - LineGraphic - Head - - ID - 196 - - ID - 241 - Points - - {301.73728817268403, 320.85400000000004} - {308.06112430470273, 366.38299999999998} - - Style - stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - Width - 3 + Draws + NO - Tail + Text - ID - 153 + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural + +\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 +my tag message that explains\ +this tag } + VerticalPad + 0 + Wrap + NO Class LineGraphic - Head - - ID - 140 - ID - 240 + 114 Points - {299.72167683563794, 185.66498999999999} - {306.21196205040638, 216.85400000000004} + {304.00001934211451, 345.96301} + {302.96399000000002, 258.78600999999998} Style stroke + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + HeadArrow - FilledArrow + 0 Legacy - LineType - 1 TailArrow 0 - Width - 3 Tail ID - 219 - - - - Class - LineGraphic - ID - 239 - Points - - {181, 106.664} - {224, 79} - {262, 88} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - Width - 3 - + 129 + Position + 0.52006298303604126 Bounds - {{469.18599999999998, 446.25}, {140, 77}} - Class - ShapedGraphic - FitText - YES - Flow - Resize + {{234.47099, 297.96301}, {56, 26.1462}} + Class + ShapedGraphic FontInfo Font - Monaco + GillSans Size - 8 + 14 ID - 237 + 112 Shape Rectangle Style @@ -84531,24 +85748,15 @@ and it is really, really cool} Text - Align - 0 Pad 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 -require 'grit/git-ruby/reposi\ -require 'grit/git-ruby/file_i\ -\ -module Grit\ - module Tricks\ - \ -} +\f0\fs28 \cf0 tagger} VerticalPad 0 @@ -84557,22 +85765,18 @@ module Grit\ Bounds - {{504.18599999999998, 381.25}, {76, 22}} + {{234.47099, 276.96301}, {56, 26.1462}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font - Courier + GillSans Size - 18 + 14 ID - 236 + 111 Shape Rectangle Style @@ -84599,292 +85803,31 @@ module Grit\ 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 0ad1a..} +\f0\fs28 \cf0 type} VerticalPad 0 Wrap NO - - Class - Group - Graphics - - - Bounds - {{578.18597, 413.81900000000002}, {27, 16.753799000000001}} - Class - ShapedGraphic - FontInfo - - Color - - b - 0.489796 - g - 0.489796 - r - 0.489796 - - Font - GillSans - Size - 18 - - ID - 231 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs36 \cf2 size} - VerticalPad - 0 - - Wrap - NO - - - Bounds - {{474.18599999999998, 414.81900000000002}, {40, 16.753799000000001}} - Class - ShapedGraphic - FontInfo - - Font - GillSans - Size - 18 - - ID - 232 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\b\fs36 \cf0 blob} - VerticalPad - 0 - - Wrap - NO - - - Class - LineGraphic - ID - 233 - Points - - {564.18597, 407.77301} - {564.18597, 438.142} - - Style - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Class - LineGraphic - ID - 234 - Points - - {619.18597, 440.142} - {465.18599999999998, 440.142} - - Style - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Bounds - {{465.18599999999998, 406.25}, {154, 99}} - Class - ShapedGraphic - FontInfo - - Color - - b - 1 - g - 1 - r - 1 - - Font - Geneva - NSKern - 0.0 - Size - 14 - - ID - 235 - Shape - Rectangle - Style - - fill - - Color - - b - 0.749742 - g - 0.760597 - r - 1 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - CornerRadius - 5 - Width - 3 - - - Text - - VerticalPad - 0 - - - - ID - 230 - Bounds - {{467.68599999999998, 275.60399999999998}, {116, 88}} + {{234.47099, 255.96299999999999}, {56, 26.1462}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font - Monaco + GillSans Size - 8 + 14 ID - 229 + 110 Shape Rectangle Style @@ -84907,34 +85850,126 @@ module Grit\ Text - Align - 0 Pad 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural +{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 -require 'grit/index'\ -require 'grit/status'\ -\ -\ -module Grit\ - class << self\ - attr_accessor :debug\ -} +\f0\fs28 \cf0 object} VerticalPad 0 Wrap NO + + Class + LineGraphic + ID + 109 + Points + + {382.48599000000002, 325.07299999999998} + {232.95599000000001, 325.07299999999998} + + Style + + stroke + + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 2 + + + + + Class + LineGraphic + ID + 107 + Points + + {383, 302.10901000000001} + {233.47099, 302.10901000000001} + + Style + + stroke + + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 2 + + + + + Class + LineGraphic + ID + 106 + Points + + {382.48599000000002, 281.10901000000001} + {232.95599000000001, 281.10901000000001} + + Style + + stroke + + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + HeadArrow + 0 + Legacy + + TailArrow + 0 + Width + 2 + + + Bounds - {{502.68599999999998, 210.60400000000001}, {76, 22}} + {{270, 188}, {76, 22}} Class ShapedGraphic FitText @@ -84949,7 +85984,7 @@ module Grit\ 18 ID - 228 + 66 Shape Rectangle Style @@ -84980,7 +86015,7 @@ module Grit\ {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 bc52a..} +\f0\fs36 \cf0 49e11..} VerticalPad 0 @@ -84994,7 +86029,7 @@ module Grit\ Bounds - {{576.68597, 241.26499999999999}, {27, 20.755400000000002}} + {{343, 220.565}, {27, 29.706301}} Class ShapedGraphic FontInfo @@ -85014,7 +86049,7 @@ module Grit\ 18 ID - 223 + 61 Shape Rectangle Style @@ -85054,18 +86089,18 @@ module Grit\ Bounds - {{472.68599999999998, 241.26499999999999}, {40, 20.755400000000002}} + {{244, 220.565}, {22, 29.706301}} Class ShapedGraphic FontInfo Font - GillSans + GillSans-Bold Size 18 ID - 224 + 62 Shape Rectangle Style @@ -85096,7 +86131,7 @@ module Grit\ {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\b\fs36 \cf0 blob} +\f0\b\fs36 \cf0 tag} VerticalPad 0 @@ -85107,11 +86142,11 @@ module Grit\ Class LineGraphic ID - 225 + 63 Points - {562.68597, 237.49100000000001} - {562.68597, 267.68099999999998} + {329, 215.16399999999999} + {329, 258.37200999999999} Style @@ -85141,11 +86176,11 @@ module Grit\ Class LineGraphic ID - 226 + 64 Points - {617.68597, 267.68099999999998} - {463.68599999999998, 267.68099999999998} + {384, 258.37200999999999} + {230, 258.37200999999999} Style @@ -85173,7 +86208,7 @@ module Grit\ Bounds - {{463.68599999999998, 235.60400000000001}, {154, 122.646}} + {{230, 212.46299999999999}, {154, 175.53700000000001}} Class ShapedGraphic FontInfo @@ -85195,7 +86230,7 @@ module Grit\ 14 ID - 227 + 65 Shape Rectangle Style @@ -85205,9 +86240,9 @@ module Grit\ Color b - 0.749742 + 0.760284 g - 0.760597 + 0.885853 r 1 @@ -85242,34 +86277,171 @@ module Grit\ ID - 222 + 60 + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 1 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + Canvas 82 + UniqueID + 91 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 553}} + Class + SolidGraphic + ID + 2 + Style + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + + + Class + LineGraphic + Head + + ID + 298 + + ID + 316 + Points + + {117.932, 104.49999999999999} + {117.932, 150} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 + + + Tail + + ID + 315 + Bounds - {{327.47000000000003, 170.71898999999999}, {22, 14}} + {{54, 48}, {127.864, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font - Courier + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 221 + 315 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.832366 + g + 0.841837 + r + 0.820446 + shadow @@ -85278,108 +86450,111 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.301453 + g + 0.297998 + r + 0.316327 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 lib} +\f0\fs28 \cf0 stable} VerticalPad 0 - Wrap - NO - Bounds - {{326.23498999999998, 147.64599999999999}, {44, 14}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo + LineGraphic + Head - Font - Courier - Size - 12 + ID + 311 ID - 220 - Shape - Rectangle + 314 + Points + + {540.21802000000002, 389.5} + {540.21802000000002, 333} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 - Text + Tail - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 README} - VerticalPad - 0 + ID + 313 - Wrap - NO Bounds - {{279.76501000000002, 171.66498999999999}, {37, 14}} + {{476.28600999999998, 391}, {127.864, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font - Courier + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 219 + 313 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.832366 + g + 0.841837 + r + 0.820446 + shadow @@ -85388,85 +86563,111 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.301453 + g + 0.297998 + r + 0.316327 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 10af9} +\f0\fs28 \cf0 topic} VerticalPad 0 - Wrap - NO Class LineGraphic + Head + + ID + 299 + ID - 218 + 312 Points - {320.52899000000002, 190.81} - {320.52899000000002, 144.59100000000001} + {474.78600999999986, 304} + {400.77599000000004, 304} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 + Width + 3 + Tail + + ID + 311 + Bounds - {{279.76598999999999, 147.59100000000001}, {37, 14}} + {{476.28600999999998, 276.5}, {127.864, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font - Courier + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 217 + 311 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.699991 + g + 1 + r + 0.726874 + shadow @@ -85475,132 +86676,148 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 e8455} +\f0\fs36 \cf0 3acd1} VerticalPad 0 - Wrap - NO Class LineGraphic + Head + + ID + 298 + ID - 216 + 310 Points - {275, 190.81} - {275, 144.59100000000001} + {269.91199, 179} + {183.36400000000003, 179} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 + Width + 3 + Tail + + ID + 308 + - Bounds - {{224, 164.59100000000001}, {56, 26.1462}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Font - GillSans - Size - 14 + ID + 308 ID - 215 - Shape - Rectangle + 309 + Points + + {474.78600999999986, 179} + {400.77599000000004, 179} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 - Text + Tail - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 tree} - VerticalPad - 0 + ID + 300 - Wrap - NO Bounds - {{224, 141.59100000000001}, {56, 26.1462}} + {{271.41199, 151.5}, {127.864, 55}} Class ShapedGraphic FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font - GillSans + Geneva + NSKern + 0.0 Size 14 ID - 214 + 308 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.699991 + g + 1 + r + 0.726874 + shadow @@ -85609,87 +86826,111 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 blob} +\f0\fs36 \cf0 34ac2} VerticalPad 0 - Wrap - NO Class LineGraphic + Head + + ID + 300 + ID - 213 + 305 Points - {387.51598999999999, 168.66399999999999} - {231.98500000000001, 168.66399999999999} + {540.21802000000002, 104.5} + {540.21802000000002, 150} - Style - - stroke - - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - + Style + + stroke + HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 Width - 2 + 3 + Tail + + ID + 303 + Bounds - {{268, 81.664398000000006}, {76, 22}} + {{476.28600999999998, 48}, {127.864, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font - Courier + Geneva + NSKern + 0.0 Size - 18 + 14 ID - 212 + 303 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.832366 + g + 0.841837 + r + 0.820446 + shadow @@ -85698,62 +86939,111 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.301453 + g + 0.297998 + r + 0.316327 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 0de24..} +\f0\fs28 \cf0 master} VerticalPad 0 - Wrap - NO + + + Class + LineGraphic + Head + + ID + 298 + + ID + 301 + Points + + {286.21296199471021, 275.75234677960043} + {167.06302796420005, 207.24765322087904} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 + + + Tail + + ID + 299 + Bounds - {{344, 112.664}, {27, 22}} + {{476.28600999999998, 151.5}, {127.864, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Color b - 0.489796 + 0 g - 0.489796 + 0 r - 0.489796 + 0 Font - GillSans + Geneva + NSKern + 0.0 Size - 18 + 14 ID - 211 + 300 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.699991 + g + 1 + r + 0.726874 + shadow @@ -85762,53 +87052,74 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf2 size} +\f0\fs36 \cf0 f30ab} VerticalPad 0 - Wrap - NO Bounds - {{238.5, 112.664}, {39, 22}} + {{271.41199, 276.5}, {127.864, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font - GillSans-Bold + Geneva + NSKern + 0.0 Size - 18 + 14 ID - 210 + 299 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.699991 + g + 1 + r + 0.726874 + shadow @@ -85817,199 +87128,74 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\b\fs36 \cf0 tree} +\f0\fs36 \cf0 a23fe} VerticalPad 0 - Wrap - NO - - - Class - Group - Graphics - - - Class - LineGraphic - ID - 207 - Points - - {332.00900000000001, 107.98999999999999} - {332.00900000000001, 141.19501} - - Style - - stroke - - Color - - b - 0.316327 - g - 0.139073 - r - 0.109175 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Class - LineGraphic - ID - 208 - Points - - {389.23599000000002, 142.19501} - {229.00101000000001, 142.19501} - - Style - - stroke - - Color - - b - 0.316327 - g - 0.139073 - r - 0.109175 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Bounds - {{229.00101000000001, 106.664}, {160.23500000000001, 86.146004000000005}} - Class - ShapedGraphic - FontInfo - - Color - - b - 1 - g - 1 - r - 1 - - Font - Geneva - NSKern - 0.0 - Size - 14 - - ID - 209 - Shape - Rectangle - Style - - fill - - Color - - b - 1 - g - 0.806818 - r - 0.813024 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.316327 - g - 0.139073 - r - 0.109175 - - CornerRadius - 5 - Width - 3 - - - Text - - VerticalPad - 0 - - - - ID - 206 Bounds - {{329.32299999999998, 436.36498999999998}, {65, 14}} + {{54, 151.5}, {127.864, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font - Courier + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 204 + 298 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.699991 + g + 1 + r + 0.726874 + shadow @@ -86018,85 +87204,195 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 tricks.rb} +\f0\fs36 \cf0 98ca9} VerticalPad 0 - Wrap + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 1 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + 1 - branch 4 + UniqueID + 72 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 553}} + Class + SolidGraphic + ID + 2 + Style + + stroke + + Draws + NO + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + Class LineGraphic + Head + + ID + 339 + ID - 202 + 340 Points - {324.11801000000003, 460.96301} - {324.11801000000003, 427.31} + {194.17970983114935, 322} + {194.17970983114935, 343.49999999999994} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 + Tail + + ID + 333 + Bounds - {{283.35399999999998, 436.31}, {37, 14}} + {{160, 345}, {68.359397999999999, 42}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Courier + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 201 + 339 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.715909 + g + 0.715909 + r + 1 + shadow @@ -86105,457 +87401,180 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.100458 + g + 0.0970254 + r + 0.316327 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 0ad1a} +\f0\fs28 \cf0 blob} VerticalPad 0 - Wrap - NO Class LineGraphic + Head + + ID + 332 + ID - 200 + 338 Points - {278.58899000000002, 460.42000999999999} - {278.58899000000002, 426.76598999999999} + {145.40261112861455, 181.49998594893208} + {145.27708749435928, 210.50001405095912} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 + Tail + + ID + 313 + - Bounds - {{227.589, 430.31}, {56, 26.1462}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Font - GillSans - Size - 14 + ID + 333 ID - 198 - Shape - Rectangle + 336 + Points + + {161.54318193167228, 255.20758375168629} + {177.81621655963437, 277.29241623530646} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 blob} - VerticalPad - 0 + ID + 332 - Wrap - NO - Bounds - {{271.58899000000002, 366.38299999999998}, {76, 22}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo + LineGraphic + Head - Font - Courier - Size - 18 + ID + 334 ID - 196 - Shape - Rectangle + 335 + Points + + {131.77495521848317, 255.28538583775665} + {118.58444154608242, 277.21461413027924} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs36 \cf0 b70f8..} - VerticalPad - 0 + ID + 332 - Wrap - NO Bounds - {{352.58899000000002, 397.38299999999998}, {27, 22}} + {{71, 278.5}, {68.359397999999999, 42}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Color b - 0.489796 + 1 g - 0.489796 + 1 r - 0.489796 - - Font - GillSans - Size - 18 - - ID - 195 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO + 1 - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs36 \cf2 size} - VerticalPad - 0 - - Wrap - NO - - - Bounds - {{242.089, 397.38299999999998}, {39, 22}} - Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo - Font - GillSans-Bold + Geneva + NSKern + 0.0 Size - 18 + 14 ID - 194 + 334 Shape Rectangle Style fill - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\b\fs36 \cf0 tree} - VerticalPad - 0 - - Wrap - NO - - - Class - Group - Graphics - - - Class - LineGraphic - ID - 191 - Points - - {342.517, 392.44601} - {342.517, 424.05599999999998} - - Style - - stroke - - Color - - b - 0.316327 - g - 0.139073 - r - 0.109175 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Class - LineGraphic - ID - 192 - Points - - {403.58801, 425.85699} - {232.589, 425.85699} - - Style - - stroke - - Color - - b - 0.316327 - g - 0.139073 - r - 0.109175 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Bounds - {{232.589, 391.38299999999998}, {170.99898999999999, 69.0364}} - Class - ShapedGraphic - FontInfo - - Color - - b - 1 - g - 1 - r - 1 - - Font - Geneva - NSKern - 0.0 - Size - 14 - - ID - 193 - Shape - Rectangle - Style - - fill - - Color - - b - 1 - g - 0.806818 - r - 0.813024 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.316327 - g - 0.139073 - r - 0.109175 - - CornerRadius - 5 - Width - 3 - - - Text + Color - VerticalPad - 0 + b + 0.715909 + g + 0.715909 + r + 1 - - ID - 190 - - - Bounds - {{325.97100999999998, 305.90899999999999}, {22, 14}} - Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo - - Font - Courier - Size - 12 - - ID - 158 - Shape - Rectangle - Style - - fill - - Draws - NO - shadow Draws @@ -86563,53 +87582,74 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.100458 + g + 0.0970254 + r + 0.316327 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 inc} +\f0\fs28 \cf0 blob} VerticalPad 0 - Wrap - NO Bounds - {{326.73599000000002, 282.83600000000001}, {58, 14}} + {{160, 278.5}, {68.359397999999999, 42}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Courier + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 157 + 333 Shape Rectangle Style fill - Draws - NO + Color + + b + 1 + g + 0.806818 + r + 0.813024 + shadow @@ -86618,53 +87658,74 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 mylib.rb} +\f0\fs28 \cf0 tree} VerticalPad 0 - Wrap - NO Bounds - {{282.26501000000002, 306.85399999999998}, {37, 14}} + {{111, 212}, {68.359397999999999, 42}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Courier + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 153 + 332 Shape Rectangle Style fill - Draws - NO + Color + + b + 1 + g + 0.806818 + r + 0.813024 + shadow @@ -86673,168 +87734,249 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 b70f8} +\f0\fs28 \cf0 tree} VerticalPad 0 - Wrap - NO Class LineGraphic + Head + + ID + 312 + ID - 152 + 331 Points - {323.02999999999997, 326} - {323.02999999999997, 279.78100999999998} + {519.72318255395635, 107.49998591498517} + {519.59750737830336, 136.50001408528416} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 + Tail + + ID + 303 + - Bounds - {{282.26598999999999, 282.78100999999998}, {37, 14}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo + LineGraphic + Head - Font - Courier - Size - 12 + ID + 322 ID - 151 - Shape - Rectangle + 329 + Points + + {519.402611098232, 181.49998594892332} + {519.27708742481695, 210.50001405093903} + Style - fill + stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - shadow + + Tail + + ID + 312 + + + + Class + LineGraphic + Head + + ID + 317 + + ID + 328 + Points + + {332.40261118937957, 181.49998594894961} + {332.27708763344378, 210.50001405099925} + + Style + + stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + Tail + + ID + 311 + + + + Class + LineGraphic + Head + + ID + 323 + + ID + 326 + Points + + {535.54318224418876, 255.20758374341244} + {551.81621718293991, 277.29241621880453} + + Style + stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 bc52a} - VerticalPad - 0 + ID + 322 - Wrap - NO Class LineGraphic + Head + + ID + 324 + ID - 150 + 325 Points - {277.50101000000001, 326} - {277.50101000000001, 279.78100999999998} + {505.77495505573972, 255.285385833546} + {492.58444122319639, 277.21461412192525} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 + Tail + + ID + 322 + Bounds - {{226.50101000000001, 299.78100999999998}, {56, 26.1462}} + {{445, 278.5}, {68.359397999999999, 42}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - GillSans + Geneva + NSKern + 0.0 Size 14 ID - 146 + 324 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.715909 + g + 0.715909 + r + 1 + shadow @@ -86842,18 +87984,105 @@ module Grit\ NO stroke + + Color + + b + 0.100458 + g + 0.0970254 + r + 0.316327 + + CornerRadius + 5 + Width + 3 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 blob} + VerticalPad + 0 + + + + Bounds + {{534, 278.5}, {68.359397999999999, 42}} + Class + ShapedGraphic + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 323 + Shape + Rectangle + Style + + fill + + Color + + b + 1 + g + 0.806818 + r + 0.813024 + + + shadow Draws NO + stroke + + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + CornerRadius + 5 + Pattern + 11 + Width + 3 + Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -86861,31 +88090,47 @@ module Grit\ VerticalPad 0 - Wrap - NO Bounds - {{226.50101000000001, 276.78100999999998}, {56, 26.1462}} + {{485, 212}, {68.359397999999999, 42}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - GillSans + Geneva + NSKern + 0.0 Size 14 ID - 145 + 322 Shape Rectangle Style fill - Draws - NO + Color + + b + 1 + g + 0.806818 + r + 0.813024 + shadow @@ -86894,87 +88139,144 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 blob} +\f0\fs28 \cf0 tree} VerticalPad 0 - Wrap - NO Class LineGraphic + Head + + ID + 318 + + ID + 321 + Points + + {348.5431820098014, 255.20758374961784} + {364.81621671546077, 277.29241623118099} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 317 + + + + Class + LineGraphic + Head + + ID + 319 + ID - 141 + 320 Points - {390.01598999999999, 303.85399999999998} - {234.48598999999999, 303.85399999999998} + {318.77495505573972, 255.285385833546} + {305.58444122319639, 277.21461412192525} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 - Width - 2 + Tail + + ID + 317 + Bounds - {{270.50101000000001, 216.85400000000001}, {76, 22}} + {{258, 278.5}, {68.359397999999999, 42}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Courier + Geneva + NSKern + 0.0 Size - 18 + 14 ID - 140 + 319 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.715909 + g + 0.715909 + r + 1 + shadow @@ -86983,62 +88285,74 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.100458 + g + 0.0970254 + r + 0.316327 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 10af9..} +\f0\fs28 \cf0 blob} VerticalPad 0 - Wrap - NO Bounds - {{346.50101000000001, 247.85400000000001}, {27, 22}} + {{347, 278.5}, {68.359397999999999, 42}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Color b - 0.489796 + 1 g - 0.489796 + 1 r - 0.489796 + 1 Font - GillSans + Geneva + NSKern + 0.0 Size - 18 + 14 ID - 139 + 318 Shape Rectangle Style fill - Draws - NO + Color + + b + 1 + g + 0.806818 + r + 0.813024 + shadow @@ -87047,53 +88361,76 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + CornerRadius + 5 + Pattern + 11 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf2 size} +\f0\fs28 \cf0 tree} VerticalPad 0 - Wrap - NO Bounds - {{241.00101000000001, 247.85400000000001}, {39, 22}} + {{298, 212}, {68.359397999999999, 42}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - GillSans-Bold + Geneva + NSKern + 0.0 Size - 18 + 14 ID - 138 + 317 Shape Rectangle Style fill - Draws - NO + Color + + b + 1 + g + 0.806818 + r + 0.813024 + shadow @@ -87102,254 +88439,144 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\b\fs36 \cf0 tree} +\f0\fs28 \cf0 tree} VerticalPad 0 - Wrap - NO Class - Group - Graphics + LineGraphic + Head + + ID + 311 + + ID + 316 + Points + {483.5, 159} + {368.5, 159} + + Style + + stroke - Class - LineGraphic - ID - 135 - Points - - {334.50900000000001, 243.179} - {334.50900000000001, 276.38400000000001} - - Style - - stroke - - Color - - b - 0.316327 - g - 0.139073 - r - 0.109175 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Class - LineGraphic - ID - 136 - Points - - {391.73599000000002, 277.38400000000001} - {231.50101000000001, 277.38400000000001} - - Style - - stroke - - Color - - b - 0.316327 - g - 0.139073 - r - 0.109175 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Bounds - {{231.50101000000001, 241.85400000000001}, {160.23500000000001, 86.146004000000005}} - Class - ShapedGraphic - FontInfo - - Color - - b - 1 - g - 1 - r - 1 - - Font - Geneva - NSKern - 0.0 - Size - 14 - - ID - 137 - Shape - Rectangle - Style - - fill - - Color - - b - 1 - g - 0.806818 - r - 0.813024 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.316327 - g - 0.139073 - r - 0.109175 - - CornerRadius - 5 - Width - 3 - - - Text - - VerticalPad - 0 - + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - - ID - 134 + + Tail + + ID + 312 + - Bounds - {{102.86499999999999, 165.60400000000001}, {37, 14}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo + LineGraphic + Head - Font - Courier - Size - 12 + ID + 313 ID - 125 - Shape - Rectangle + 315 + Points + + {296.5, 159} + {181.5, 159} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 Scott} - VerticalPad - 0 + ID + 311 - Wrap - NO Bounds - {{102.86499999999999, 144.60400000000001}, {37, 14}} + {{111, 138}, {69, 42}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font Courier + NSKern + 0.0 Size - 12 + 14 ID - 124 + 313 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.699991 + g + 1 + r + 0.726874 + shadow @@ -87358,53 +88585,74 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 Scott} +\f0\fs28 \cf0 commit} VerticalPad 0 - Wrap - NO Bounds - {{110.36499999999999, 123.604}, {22, 14}} + {{485, 138}, {69, 42}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font Courier + NSKern + 0.0 Size - 12 + 14 ID - 123 + 312 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.699991 + g + 1 + r + 0.726874 + shadow @@ -87413,53 +88661,74 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 nil} +\f0\fs28 \cf0 commit} VerticalPad 0 - Wrap - NO Bounds - {{103.86499999999999, 101.604}, {37, 14}} + {{298, 138}, {69, 42}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font Courier + NSKern + 0.0 Size - 12 + 14 ID - 122 + 311 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.699991 + g + 1 + r + 0.726874 + shadow @@ -87468,53 +88737,74 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 0de24} +\f0\fs28 \cf0 commit} VerticalPad 0 - Wrap - NO Bounds - {{29.879000000000001, 184.78101000000001}, {140, 22}} + {{485.64098999999999, 64}, {68.359397999999999, 42}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font - Monaco + Geneva + NSKern + 0.0 Size - 8 + 14 ID - 95 + 303 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.832366 + g + 0.841837 + r + 0.820446 + shadow @@ -87523,58 +88813,145 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.301453 + g + 0.297998 + r + 0.316327 + + CornerRadius + 5 + Width + 3 Text - Align - 0 - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 -my commit message goes here\ -and it is really, really cool} +\f0\fs28 \cf0 ref} VerticalPad 0 - Wrap + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 1 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + 303 + UniqueID + 85 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 553}} + Class + SolidGraphic + ID + 2 + Style + + stroke + + Draws + NO + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + Class LineGraphic + Head + + ID + 343 + ID - 93 + 344 Points - {94.372001999999995, 182.42699999999999} - {94.372001999999995, 96.281302999999994} + {519.16301999999996, 181.5} + {519.35277593826117, 210.50003211005961} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 @@ -87582,26 +88959,44 @@ and it is really, really cool} Bounds - {{29.879000000000001, 157.95799}, {56, 26.1462}} + {{477.5, 212}, {84, 42}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - GillSans + Geneva + NSKern + 0.0 Size 14 ID - 92 + 343 Shape Rectangle Style fill - Draws - NO + Color + + b + 1 + g + 0.806818 + r + 0.813024 + shadow @@ -87610,49 +89005,104 @@ and it is really, really cool} stroke - Draws - NO + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 committer} +\f0\fs28 \cf0 snapshot} VerticalPad 0 - Wrap - NO + + + Class + LineGraphic + Head + + ID + 341 + + ID + 342 + Points + + {332.16298999999998, 181.5} + {332.35276283152115, 210.50003211577695} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + Bounds - {{25.879000000000001, 136.45799}, {56, 26.1462}} + {{290.5, 212}, {84, 42}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - GillSans + Geneva + NSKern + 0.0 Size 14 ID - 86 + 341 Shape Rectangle Style fill - Draws - NO + Color + + b + 1 + g + 0.806818 + r + 0.813024 + shadow @@ -87661,291 +89111,302 @@ and it is really, really cool} stroke - Draws - NO + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 author} +\f0\fs28 \cf0 snapshot} VerticalPad 0 - Wrap - NO - Bounds - {{25.879000000000001, 115.458}, {56, 26.1462}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Font - GillSans - Size - 14 + ID + 332 ID - 85 - Shape - Rectangle + 338 + Points + + {145.49991474601612, 181.49999999998923} + {145.49980486310355, 210.50000000005642} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 parent} - VerticalPad - 0 + ID + 313 - Wrap - NO Bounds - {{25.879000000000001, 94.458297999999999}, {56, 26.1462}} + {{103.5, 212}, {84, 42}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - GillSans + Geneva + NSKern + 0.0 Size 14 ID - 84 + 332 Shape Rectangle Style fill - Draws - NO + Color + + b + 1 + g + 0.806818 + r + 0.813024 + shadow Draws NO - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 tree} - VerticalPad - 0 - - Wrap - NO - - - Class - LineGraphic - ID - 83 - Points - - {173.89400000000001, 182.60400000000001} - {24.364000000000001, 182.60400000000001} - - Style - stroke Color b - 0.382653 + 0.316327 g - 0.382653 + 0.139073 r - 0.382653 - - HeadArrow - 0 - Legacy - - TailArrow - 0 + 0.109175 + + CornerRadius + 5 Width - 2 + 3 + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 snapshot} + VerticalPad + 0 + Class LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 312 + ID - 82 + 331 Points - {174.37899999999999, 161.60400000000001} - {24.850000000000001, 161.60400000000001} + {519.72318255395635, 107.49998591498517} + {519.59750737830336, 136.50001408528416} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 - Width - 2 + Tail + + ID + 303 + Class LineGraphic + Head + + ID + 311 + ID - 81 + 316 Points - {174.40799999999999, 140.60400000000001} - {24.879000000000001, 140.60400000000001} + {483.5, 159} + {368.5, 159} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 - Width - 2 + Tail + + ID + 312 + Class LineGraphic + Head + + ID + 313 + ID - 80 + 315 Points - {173.89400000000001, 119.604} - {24.364000000000001, 119.604} + {296.5, 159} + {181.5, 159} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 - Width - 2 + Tail + + ID + 311 + Bounds - {{466.18599999999998, 111.604}, {149, 99}} + {{111, 138}, {69, 42}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font - Monaco + Courier + NSKern + 0.0 Size - 8 + 14 ID - 75 + 313 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.699991 + g + 1 + r + 0.726874 + shadow @@ -87954,64 +89415,74 @@ and it is really, really cool} stroke - Draws - NO + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 Text - Align - 0 - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 -== LICENSE:\ -\ -(The MIT License)\ -\ -Copyright (c) 2007 Tom Preston-\ -\ -Permission is hereby granted, f\ -ree of charge, to any person ob\ -} +\f0\fs28 \cf0 commit} VerticalPad 0 - Wrap - NO Bounds - {{60.872002000000002, 29.604299999999999}, {76, 22}} + {{485, 138}, {69, 42}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font Courier + NSKern + 0.0 Size - 18 + 14 ID - 67 + 312 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.699991 + g + 1 + r + 0.726874 + shadow @@ -88020,310 +89491,150 @@ ree of charge, to any person ob\ stroke - Draws - NO + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 98ca9..} +\f0\fs28 \cf0 commit} VerticalPad 0 - Wrap - NO + Bounds + {{298, 138}, {69, 42}} Class - Group - Graphics - - - Bounds - {{134.87199000000001, 63.235298}, {27, 26.1462}} - Class - ShapedGraphic - FontInfo - - Color - - b - 0.489796 - g - 0.489796 - r - 0.489796 - - Font - GillSans - Size - 18 - - ID - 40 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs36 \cf2 size} - VerticalPad - 0 - - Wrap - NO - - - Bounds - {{37.872002000000002, 63.235298}, {56, 26.1462}} - Class - ShapedGraphic - FontInfo - - Font - GillSans-Bold - Size - 18 - - ID - 41 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\b\fs36 \cf0 commit} - VerticalPad - 0 - - Wrap - NO - - - Class - LineGraphic - ID - 42 - Points - - {120.872, 58.481299999999997} - {120.872, 96.512298999999999} - - Style - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - + ShapedGraphic + FontInfo + + Color - Class - LineGraphic - ID - 43 - Points - - {175.87199000000001, 96.512298999999999} - {21.872, 96.512298999999999} - - Style - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - + b + 0 + g + 0 + r + 0 + Font + Courier + NSKern + 0.0 + Size + 14 + + ID + 311 + Shape + Rectangle + Style + + fill - Bounds - {{21.872, 56.104301}, {154, 154.5}} - Class - ShapedGraphic - FontInfo - - Color - - b - 1 - g - 1 - r - 1 - - Font - Geneva - NSKern - 0.0 - Size - 14 - - ID - 44 - Shape - Rectangle - Style - - fill - - Color - - b - 0.757488 - g - 1 - r - 0.738389 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - CornerRadius - 5 - Width - 3 - + Color + + b + 0.699991 + g + 1 + r + 0.726874 - Text + + shadow + + Draws + NO + + stroke + + Color - VerticalPad - 0 + b + 0.172231 + g + 0.316327 + r + 0.1567 + CornerRadius + 5 + Width + 3 - - ID - 39 + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 commit} + VerticalPad + 0 + Bounds - {{501.18599999999998, 46.604301}, {76, 22}} + {{485.64098999999999, 64}, {68.359397999999999, 42}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font - Courier + Geneva + NSKern + 0.0 Size - 18 + 14 ID - 19 + 303 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.832366 + g + 0.841837 + r + 0.820446 + shadow @@ -88332,404 +89643,312 @@ ree of charge, to any person ob\ stroke - Draws - NO + Color + + b + 0.301453 + g + 0.297998 + r + 0.316327 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 e8455..} +\f0\fs28 \cf0 ref} VerticalPad 0 - Wrap + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 1 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + 309 + UniqueID + 93 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 553}} + Class + SolidGraphic + ID + 2 + Style + + stroke + + Draws + NO + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + + Bounds + {{97.820701999999997, 316}, {159.35899000000001, 32}} Class - Group - Graphics - + ShapedGraphic + FontInfo + + Color - Bounds - {{575.18597, 77.604301000000007}, {27, 22}} - Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo - - Color - - b - 0.489796 - g - 0.489796 - r - 0.489796 - - Font - GillSans - Size - 18 - - ID - 21 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs36 \cf2 size} - VerticalPad - 0 - - Wrap - NO + b + 1 + g + 1 + r + 1 + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 354 + Shape + Rectangle + Style + + fill - Bounds - {{471.18599999999998, 77.604301000000007}, {40, 22}} - Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo - - Font - GillSans - Size - 18 - - ID - 22 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text + Color - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\b\fs36 \cf0 blob} - VerticalPad - 0 + b + 1 + g + 0.806818 + r + 0.813024 - Wrap - NO + shadow - Class - LineGraphic - ID - 23 - Points - - {561.18597, 73.604301000000007} - {561.18597, 105.604} - - Style - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - + Draws + NO + stroke - Class - LineGraphic - ID - 24 - Points - - {616.18597, 105.604} - {462.18599999999998, 105.604} - - Style + Color - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - + b + 0.316327 + g + 0.139073 + r + 0.109175 + CornerRadius + 5 + Width + 3 + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 rev 7} + VerticalPad + 0 + + + + Bounds + {{97.820701999999997, 274}, {159.35899000000001, 32}} + Class + ShapedGraphic + FontInfo + + Color - Bounds - {{462.18599999999998, 71.604301000000007}, {154, 130}} - Class - ShapedGraphic - FontInfo - - Color - - b - 1 - g - 1 - r - 1 - - Font - Geneva - NSKern - 0.0 - Size - 14 - - ID - 25 - Shape - Rectangle - Style - - fill - - Color - - b - 0.749742 - g - 0.760597 - r - 1 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - CornerRadius - 5 - Width - 3 - + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 353 + Shape + Rectangle + Style + + fill + + Color + + b + 1 + g + 0.806818 + r + 0.813024 - Text + + shadow + + Draws + NO + + stroke + + Color - VerticalPad - 0 + b + 0.316327 + g + 0.139073 + r + 0.109175 + CornerRadius + 5 + Width + 3 - - ID - 20 - - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - - Lock - NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 1 - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - example one - UniqueID - 66 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 553}} - Class - SolidGraphic - ID - 2 - Style - - stroke + + Text - Draws - NO + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 rev 6} + VerticalPad + 0 - - BaseZoom - 0 - CanvasOrigin - {0, 0} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - Bounds - {{325.14301, 173.97900000000001}, {58, 14}} + {{97.820701999999997, 232}, {159.35899000000001, 32}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Courier + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 250 + 352 Shape Rectangle Style fill - Draws - NO + Color + + b + 1 + g + 0.806818 + r + 0.813024 + shadow @@ -88738,53 +89957,74 @@ ree of charge, to any person ob\ stroke - Draws - NO + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 Rakefile} +\f0\fs28 \cf0 rev 5} VerticalPad 0 - Wrap - NO Bounds - {{279.67401000000001, 173.92400000000001}, {37, 14}} + {{97.820701999999997, 190}, {159.35899000000001, 32}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Courier + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 249 + 351 Shape Rectangle Style fill - Draws - NO + Color + + b + 1 + g + 0.806818 + r + 0.813024 + shadow @@ -88793,49 +90033,74 @@ ree of charge, to any person ob\ stroke - Draws - NO + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 bc52a} +\f0\fs28 \cf0 rev 4} VerticalPad 0 - Wrap - NO Bounds - {{223.90799999999999, 167.92400000000001}, {56, 26.1462}} + {{97.820701999999997, 148}, {159.35899000000001, 32}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - GillSans + Geneva + NSKern + 0.0 Size 14 ID - 248 + 350 Shape Rectangle Style fill - Draws - NO + Color + + b + 1 + g + 0.806818 + r + 0.813024 + shadow @@ -88844,213 +90109,417 @@ ree of charge, to any person ob\ stroke - Draws - NO + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 blob} +\f0\fs28 \cf0 rev 3} VerticalPad 0 - Wrap - NO + Bounds + {{97.820701999999997, 106}, {159.35899000000001, 32}} Class - LineGraphic + ShapedGraphic + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + ID - 247 - Points - - {389.23599000000002, 193.73699999999999} - {233.70500000000001, 193.73699999999999} - + 349 + Shape + Rectangle Style + fill + + Color + + b + 1 + g + 0.806818 + r + 0.813024 + + + shadow + + Draws + NO + stroke Color b - 0.382653 + 0.316327 g - 0.382653 + 0.139073 r - 0.382653 + 0.109175 - HeadArrow - 0 - Legacy - - TailArrow - 0 + CornerRadius + 5 Width - 2 + 3 + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 rev 2} + VerticalPad + 0 + + Bounds + {{353, 456}, {269, 32}} Class - LineGraphic + ShapedGraphic + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + ID - 245 - Points - - {400.73401000000001, 379.33301} - {455, 391.38299999999998} - {496.41100999999998, 391} - + 348 + Shape + Rectangle Style + fill + + Color + + b + 0.715909 + g + 0.715909 + r + 1 + + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.100458 + g + 0.0970254 + r + 0.316327 + + CornerRadius + 5 Width 3 + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 delta, rev 5 to 6} + VerticalPad + 0 + + Bounds + {{353, 418}, {269, 32}} Class - LineGraphic + ShapedGraphic + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + ID - 244 - Points - - {394.32299999999998, 183.33299} - {452.66699, 214.81100000000001} - {490, 220.964} - + 347 + Shape + Rectangle Style - stroke + fill - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - Width - 3 + Color + + b + 0.715909 + g + 0.715909 + r + 1 + + + shadow + + Draws + NO - - - - Class - LineGraphic - ID - 242 - Points - - {394.32299999999998, 154} - {442, 62} - {490, 51.604301} - - Style - stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.100458 + g + 0.0970254 + r + 0.316327 + + CornerRadius + 5 Width 3 + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 delta, rev 4 to 5} + VerticalPad + 0 + + Bounds + {{353, 380}, {269, 32}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 140 + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 ID - 240 - Points - - {298.77330805025127, 214.81100000000004} - {305.20124591986894, 303.33301} - + 346 + Shape + Rectangle Style + fill + + Color + + b + 0.715909 + g + 0.715909 + r + 1 + + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.100458 + g + 0.0970254 + r + 0.316327 + + CornerRadius + 5 Width 3 - Tail + Text - ID - 219 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 delta, rev 3 to 4} + VerticalPad + 0 + Bounds + {{353, 224}, {269, 150}} Class - LineGraphic + ShapedGraphic + FontInfo + + Color + + b + 0 + g + 0 + r + 0 + + Font + Courier + NSKern + 0.0 + Size + 14 + ID - 239 - Points - - {181, 106.664} - {224, 79} - {262, 88} - + 345 + Shape + Rectangle Style + fill + + Color + + b + 0.699991 + g + 1 + r + 0.726874 + + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 Width 3 + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 snapshot rev 3} + VerticalPad + 0 + Bounds - {{469.18599999999998, 446.25}, {140, 77}} + {{105, 26}, {145, 32}} Class ShapedGraphic FitText @@ -89062,10 +90531,10 @@ ree of charge, to any person ob\ Font Monaco Size - 8 + 24 ID - 237 + 342 Shape Rectangle Style @@ -89088,24 +90557,15 @@ ree of charge, to any person ob\ Text - Align - 0 Pad 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 -require 'grit/git-ruby/reposi\ -require 'grit/git-ruby/file_i\ -\ -module Grit\ - module Tricks\ - \ -} +\f0\fs48 \cf0 whatever.i} VerticalPad 0 @@ -89114,7 +90574,7 @@ module Grit\ Bounds - {{504.18599999999998, 381.25}, {76, 22}} + {{415, 26}, {145, 32}} Class ShapedGraphic FitText @@ -89124,12 +90584,12 @@ module Grit\ FontInfo Font - Courier + Monaco Size - 18 + 24 ID - 236 + 341 Shape Rectangle Style @@ -89156,11 +90616,11 @@ module Grit\ 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 0ad1a..} +\f0\fs48 \cf0 whatever.d} VerticalPad 0 @@ -89168,288 +90628,121 @@ module Grit\ NO + Bounds + {{353, 186}, {269, 32}} Class - Group - Graphics - - - Bounds - {{578.18597, 413.81900000000002}, {27, 16.753799000000001}} - Class - ShapedGraphic - FontInfo - - Color - - b - 0.489796 - g - 0.489796 - r - 0.489796 - - Font - GillSans - Size - 18 - - ID - 231 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs36 \cf2 size} - VerticalPad - 0 - - Wrap - NO - - - Bounds - {{474.18599999999998, 414.81900000000002}, {40, 16.753799000000001}} - Class - ShapedGraphic - FontInfo - - Font - GillSans - Size - 18 - - ID - 232 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\b\fs36 \cf0 blob} - VerticalPad - 0 - - Wrap - NO - + ShapedGraphic + FontInfo + + Color - Class - LineGraphic - ID - 233 - Points - - {564.18597, 407.77301} - {564.18597, 438.142} - - Style - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - + b + 1 + g + 1 + r + 1 + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 334 + Shape + Rectangle + Style + + fill - Class - LineGraphic - ID - 234 - Points - - {619.18597, 440.142} - {465.18599999999998, 440.142} - - Style + Color - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - + b + 0.715909 + g + 0.715909 + r + 1 - - Bounds - {{465.18599999999998, 406.25}, {154, 99}} - Class - ShapedGraphic - FontInfo - - Color - - b - 1 - g - 1 - r - 1 - - Font - Geneva - NSKern - 0.0 - Size - 14 - - ID - 235 - Shape - Rectangle - Style - - fill - - Color - - b - 0.749742 - g - 0.760597 - r - 1 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - CornerRadius - 5 - Width - 3 - - - Text + shadow + + Draws + NO + + stroke + + Color - VerticalPad - 0 + b + 0.100458 + g + 0.0970254 + r + 0.316327 + CornerRadius + 5 + Width + 3 - - ID - 230 + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 delta, rev 1 to 2} + VerticalPad + 0 + Bounds - {{467.68599999999998, 275.60399999999998}, {116, 88}} + {{97.820296999999997, 64}, {159.35899000000001, 32}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Monaco + Geneva + NSKern + 0.0 Size - 8 + 14 ID - 229 + 332 Shape Rectangle Style fill - Draws - NO + Color + + b + 1 + g + 0.806818 + r + 0.813024 + shadow @@ -89458,63 +90751,74 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + CornerRadius + 5 + Width + 3 Text - Align - 0 - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 -require 'grit/index'\ -require 'grit/status'\ -\ -\ -module Grit\ - class << self\ - attr_accessor :debug\ -} +\f0\fs28 \cf0 rev 1} VerticalPad 0 - Wrap - NO Bounds - {{502.68599999999998, 210.60400000000001}, {76, 22}} + {{353, 64}, {269, 116}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font Courier + NSKern + 0.0 Size - 18 + 14 ID - 228 + 312 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.699991 + g + 1 + r + 0.726874 + shadow @@ -89523,365 +90827,300 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 bc52a..} +\f0\fs28 \cf0 snapshot rev 1} VerticalPad 0 - Wrap + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 1 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + 305 + UniqueID + 87 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 553}} + Class + SolidGraphic + ID + 2 + Style + + stroke + + Draws + NO + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + Class - Group - Graphics + LineGraphic + Head + + ID + 319 + + ID + 353 + Points + {443.5, 299.5} + {327.85939800000006, 299.5} + + Style + + stroke - Bounds - {{576.68597, 241.26499999999999}, {27, 20.755400000000002}} - Class - ShapedGraphic - FontInfo - - Color - - b - 0.489796 - g - 0.489796 - r - 0.489796 - - Font - GillSans - Size - 18 - - ID - 223 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs36 \cf2 size} - VerticalPad - 0 - - Wrap - NO - - - Bounds - {{472.68599999999998, 241.26499999999999}, {40, 20.755400000000002}} - Class - ShapedGraphic - FontInfo - - Font - GillSans - Size - 18 - - ID - 224 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\b\fs36 \cf0 blob} - VerticalPad - 0 - - Wrap - NO - - - Class - LineGraphic - ID - 225 - Points - - {562.68597, 237.49100000000001} - {562.68597, 267.68099999999998} - - Style - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Class - LineGraphic - ID - 226 - Points - - {617.68597, 267.68099999999998} - {463.68599999999998, 267.68099999999998} - - Style - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Bounds - {{463.68599999999998, 235.60400000000001}, {154, 122.646}} - Class - ShapedGraphic - FontInfo - - Color - - b - 1 - g - 1 - r - 1 - - Font - Geneva - NSKern - 0.0 - Size - 14 - - ID - 227 - Shape - Rectangle - Style - - fill - - Color - - b - 0.749742 - g - 0.760597 - r - 1 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - CornerRadius - 5 - Width - 3 - - - Text - - VerticalPad - 0 - + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - - ID - 222 + + Tail + + ID + 324 + - Bounds - {{327.47000000000003, 199.86501000000001}, {22, 14}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo + LineGraphic + Head - Font - Courier - Size - 12 + ID + 334 ID - 221 - Shape - Rectangle + 352 + Points + + {256.5, 299.5} + {140.859398, 299.5} + Style - fill + stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - shadow + + Tail + + ID + 319 + + + + Class + LineGraphic + Head + + ID + 349 + + ID + 351 + Points + + {528.77070503371419, 255.3787181173993} + {566.58884546835429, 343.62128188255411} + + Style + + stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + Tail + + ID + 322 + + + + Class + LineGraphic + Head + + ID + 348 + + ID + 350 + Points + + {339.93328360900955, 255.41760628655405} + {370.42626689106788, 343.58239371344445} + + Style + stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 lib} - VerticalPad - 0 + ID + 317 - Wrap - NO Bounds - {{326.23498999999998, 147.64599999999999}, {44, 14}} + {{542, 345}, {68.359397999999999, 42}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Courier + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 220 + 349 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.715909 + g + 0.715909 + r + 1 + shadow @@ -89890,53 +91129,76 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.100458 + g + 0.0970254 + r + 0.316327 + + CornerRadius + 5 + Pattern + 11 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 README} +\f0\fs28 \cf0 file} VerticalPad 0 - Wrap - NO Bounds - {{279.76501000000002, 200.81100000000001}, {37, 14}} + {{344, 345}, {68.359397999999999, 42}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Courier + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 219 + 348 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.715909 + g + 0.715909 + r + 1 + shadow @@ -89945,85 +91207,181 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.100458 + g + 0.0970254 + r + 0.316327 + + CornerRadius + 5 + Pattern + 11 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 10af9} +\f0\fs28 \cf0 file} VerticalPad 0 - Wrap - NO Class LineGraphic + Head + + ID + 317 + ID - 218 + 343 Points - {319.52899000000002, 222} - {320.52899000000002, 144.59100000000001} + {477.58999999999992, 233} + {373.76970299999999, 233} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 322 + + + + Class + LineGraphic + Head + + ID + 332 + + ID + 342 + Points + + {290.58999999999997, 233} + {186.76970300000002, 233} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow 0 + + + Tail + + ID + 317 + + + + Class + LineGraphic + Head + + ID + 339 + + ID + 341 + Points + + {155.27033946333827, 255.36730516923819} + {195.08921103594207, 343.63269483077846} + + Style + + stroke + + HeadArrow + FilledArrow Legacy + LineType + 1 TailArrow 0 + Tail + + ID + 332 + Bounds - {{279.76598999999999, 147.59100000000001}, {37, 14}} + {{171, 345}, {68.359397999999999, 42}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Courier + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 217 + 339 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.715909 + g + 0.715909 + r + 1 + shadow @@ -90032,81 +91390,144 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.100458 + g + 0.0970254 + r + 0.316327 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 e8455} +\f0\fs28 \cf0 file} VerticalPad 0 - Wrap - NO Class LineGraphic + Head + + ID + 332 + ID - 216 + 338 Points - {274, 222} - {275, 144.59100000000001} + {145.179748254271, 181.49999999999693} + {145.17980658199801, 210.50000000000296} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow 0 + + + Tail + + ID + 313 + + + + Class + LineGraphic + Head + + ID + 334 + + ID + 335 + Points + + {131.77505722430899, 255.285384531332} + {118.58449152778205, 277.21461542344474} + + Style + + stroke + + HeadArrow + FilledArrow Legacy + LineType + 1 TailArrow 0 + Tail + + ID + 332 + Bounds - {{224, 193.73699999999999}, {56, 26.1462}} + {{71, 278.5}, {68.359397999999999, 42}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - GillSans + Geneva + NSKern + 0.0 Size 14 ID - 215 + 334 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.715909 + g + 0.715909 + r + 1 + shadow @@ -90115,49 +91536,74 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.100458 + g + 0.0970254 + r + 0.316327 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 tree} +\f0\fs28 \cf0 file} VerticalPad 0 - Wrap - NO Bounds - {{224, 141.59100000000001}, {56, 26.1462}} + {{105.09, 212}, {80.179703000000003, 42}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - GillSans + Geneva + NSKern + 0.0 Size 14 ID - 214 + 332 Shape Rectangle Style fill - Draws - NO + Color + + b + 1 + g + 0.806818 + r + 0.813024 + shadow @@ -90166,87 +91612,179 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 blob} +\f0\fs28 \cf0 manifest} VerticalPad 0 - Wrap - NO Class LineGraphic + Head + + ID + 322 + ID - 213 + 329 Points - {387.51598999999999, 168.66399999999999} - {231.98500000000001, 168.66399999999999} + {519.17994799907171, 181.49999999999739} + {519.17989386454212, 210.50000000000267} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow 0 + + + Tail + + ID + 312 + + + + Class + LineGraphic + Head + + ID + 317 + + ID + 328 + Points + + {332.17994790792358, 181.49999999999739} + {332.17989365591393, 210.50000000000264} + + Style + + stroke + + HeadArrow + FilledArrow Legacy + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 311 + + + + Class + LineGraphic + Head + + ID + 324 + + ID + 325 + Points + + {505.77505924269394, 255.28538458355325} + {492.58449553229525, 277.21461552705267} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 TailArrow 0 - Width - 2 + Tail + + ID + 322 + Bounds - {{268, 81.664398000000006}, {76, 22}} + {{445, 278.5}, {68.359397999999999, 42}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Courier + Geneva + NSKern + 0.0 Size - 18 + 14 ID - 212 + 324 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.715909 + g + 0.715909 + r + 1 + shadow @@ -90255,62 +91793,74 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.100458 + g + 0.0970254 + r + 0.316327 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 0de24..} +\f0\fs28 \cf0 file} VerticalPad 0 - Wrap - NO Bounds - {{344, 112.664}, {27, 22}} + {{479.08999999999997, 212}, {80.179703000000003, 42}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Color b - 0.489796 + 1 g - 0.489796 + 1 r - 0.489796 + 1 Font - GillSans + Geneva + NSKern + 0.0 Size - 18 + 14 ID - 211 + 322 Shape Rectangle Style fill - Draws - NO + Color + + b + 1 + g + 0.806818 + r + 0.813024 + shadow @@ -90319,53 +91869,109 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf2 size} +\f0\fs28 \cf0 manifest} VerticalPad 0 - Wrap - NO + + + Class + LineGraphic + Head + + ID + 319 + + ID + 320 + Points + + {318.77505730568066, 255.28538453343731} + {305.58449168922505, 277.21461542762171} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 317 + Bounds - {{238.5, 112.664}, {39, 22}} + {{258, 278.5}, {68.359397999999999, 42}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - GillSans-Bold + Geneva + NSKern + 0.0 Size - 18 + 14 ID - 210 + 319 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.715909 + g + 0.715909 + r + 1 + shadow @@ -90374,199 +91980,74 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.100458 + g + 0.0970254 + r + 0.316327 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\b\fs36 \cf0 tree} +\f0\fs28 \cf0 file} VerticalPad 0 - Wrap - NO - - - Class - Group - Graphics - - - Class - LineGraphic - ID - 207 - Points - - {332.00900000000001, 108.45} - {332.00900000000001, 139.33099000000001} - - Style - - stroke - - Color - - b - 0.316327 - g - 0.139073 - r - 0.109175 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Class - LineGraphic - ID - 208 - Points - - {389.23599000000002, 141.59100000000001} - {229.00101000000001, 141.59100000000001} - - Style - - stroke - - Color - - b - 0.316327 - g - 0.139073 - r - 0.109175 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Bounds - {{229.00101000000001, 106.664}, {160.23500000000001, 116.003}} - Class - ShapedGraphic - FontInfo - - Color - - b - 1 - g - 1 - r - 1 - - Font - Geneva - NSKern - 0.0 - Size - 14 - - ID - 209 - Shape - Rectangle - Style - - fill - - Color - - b - 1 - g - 0.806818 - r - 0.813024 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.316327 - g - 0.139073 - r - 0.109175 - - CornerRadius - 5 - Width - 3 - - - Text - - VerticalPad - 0 - - - - ID - 206 Bounds - {{331.23498999999998, 369.315}, {44, 14}} + {{292.08999999999997, 212}, {80.179703000000003, 42}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Courier + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 157 + 317 Shape Rectangle Style fill - Draws - NO + Color + + b + 1 + g + 0.806818 + r + 0.813024 + shadow @@ -90575,85 +92056,144 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 git.rb} +\f0\fs28 \cf0 manifest} VerticalPad 0 - Wrap - NO Class LineGraphic + Head + + ID + 311 + ID - 152 + 316 Points - {320.52899000000002, 389.74700999999999} - {320.52899000000002, 362.08301} + {471.67998999999998, 159} + {384.67998999999998, 159} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow 0 + + + Tail + + ID + 312 + + + + Class + LineGraphic + Head + + ID + 313 + + ID + 315 + Points + + {279.67998999999998, 159} + {192.67970300000002, 159} + + Style + + stroke + + HeadArrow + FilledArrow Legacy + LineType + 1 TailArrow 0 + Tail + + ID + 311 + Bounds - {{279.76501000000002, 369.26001000000002}, {37, 14}} + {{99.179703000000003, 138}, {92, 42}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font Courier + NSKern + 0.0 Size - 12 + 14 ID - 151 + 313 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.699991 + g + 1 + r + 0.726874 + shadow @@ -90662,81 +92202,150 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 0ad1a} +\f0\fs28 \cf0 changeset} VerticalPad 0 - Wrap - NO + Bounds + {{473.17998999999998, 138}, {92, 42}} Class - LineGraphic + ShapedGraphic + FontInfo + + Color + + b + 0 + g + 0 + r + 0 + + Font + Courier + NSKern + 0.0 + Size + 14 + ID - 150 - Points - - {275.00101000000001, 390.64301} - {275.00101000000001, 362.97899999999998} - + 312 + Shape + Rectangle Style + fill + + Color + + b + 0.699991 + g + 1 + r + 0.726874 + + + shadow + + Draws + NO + stroke Color b - 0.382653 + 0.172231 g - 0.382653 + 0.316327 r - 0.382653 + 0.1567 - HeadArrow - 0 - Legacy - - TailArrow - 0 + CornerRadius + 5 + Width + 3 + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 changeset} + VerticalPad + 0 + Bounds - {{224, 363.26001000000002}, {56, 26.1462}} + {{281.17998999999998, 138}, {102, 42}} Class ShapedGraphic FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font - GillSans + Courier + NSKern + 0.0 Size 14 ID - 145 + 311 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.699991 + g + 1 + r + 0.726874 + shadow @@ -90745,53 +92354,300 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 blob} +\f0\fs28 \cf0 changeset} VerticalPad 0 - Wrap + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 1 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + 304 + UniqueID + 86 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 553}} + Class + SolidGraphic + ID + 2 + Style + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + + + Class + LineGraphic + Head + + ID + 319 + + ID + 353 + Points + + {443.5, 299.5} + {327.85939800000006, 299.5} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 324 + + + + Class + LineGraphic + Head + + ID + 334 + + ID + 352 + Points + + {256.5, 299.5} + {140.859398, 299.5} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 319 + + + + Class + LineGraphic + Head + + ID + 349 + + ID + 351 + Points + + {528.77070503371419, 255.3787181173993} + {566.58884546835429, 343.62128188255411} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 322 + + + + Class + LineGraphic + Head + + ID + 348 + + ID + 350 + Points + + {339.93328360900955, 255.41760628655405} + {370.42626689106788, 343.58239371344445} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 317 + Bounds - {{268, 303.33301}, {76, 22}} + {{542, 345}, {68.359397999999999, 42}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Courier + Geneva + NSKern + 0.0 Size - 18 + 14 ID - 140 + 349 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.715909 + g + 0.715909 + r + 1 + shadow @@ -90800,62 +92656,76 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.100458 + g + 0.0970254 + r + 0.316327 + + CornerRadius + 5 + Pattern + 11 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 10af9..} +\f0\fs28 \cf0 file} VerticalPad 0 - Wrap - NO Bounds - {{344, 334.33301}, {27, 22}} + {{344, 345}, {68.359397999999999, 42}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Color b - 0.489796 + 1 g - 0.489796 + 1 r - 0.489796 + 1 Font - GillSans + Geneva + NSKern + 0.0 Size - 18 + 14 ID - 139 + 348 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.715909 + g + 0.715909 + r + 1 + shadow @@ -90864,271 +92734,181 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.100458 + g + 0.0970254 + r + 0.316327 + + CornerRadius + 5 + Pattern + 11 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf2 size} +\f0\fs28 \cf0 file} VerticalPad 0 - Wrap - NO - Bounds - {{238.5, 335}, {39, 22}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo + LineGraphic + Head - Font - GillSans-Bold - Size - 18 + ID + 317 ID - 138 - Shape - Rectangle + 343 + Points + + {477.58999999999992, 233} + {373.76970299999999, 233} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\b\fs36 \cf0 tree} - VerticalPad - 0 + ID + 322 - Wrap - NO Class - Group - Graphics + LineGraphic + Head + + ID + 332 + + ID + 342 + Points + {290.58999999999997, 233} + {186.76970300000002, 233} + + Style + + stroke - Class - LineGraphic - FontInfo - - Font - Helvetica - Size - 13 - - ID - 135 - Points - - {332.49200000000002, 335.19900999999999} - {332.49200000000002, 360.04401000000001} - {332.49200000000002, 356.90399000000002} - - Style - - stroke - - Color - - b - 0.316327 - g - 0.139073 - r - 0.109175 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Class - LineGraphic - FontInfo - - Font - Helvetica - Size - 13 - - ID - 246 - Points - - {389.49898999999999, 361.06601000000001} - {229.26401000000001, 361.06601000000001} - - Rotation - 352.34844970703125 - Style - - stroke - - Color - - b - 0.316327 - g - 0.139073 - r - 0.109175 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + Tail + + ID + 317 + + + + Class + LineGraphic + Head + + ID + 339 + + ID + 341 + Points + + {155.27033946333827, 255.36730516923819} + {195.08921103594207, 343.63269483077846} + + Style + + stroke - Bounds - {{229.48399000000001, 334.33301}, {160.23500000000001, 56.310001}} - Class - ShapedGraphic - FontInfo - - Color - - b - 1 - g - 1 - r - 1 - - Font - Geneva - NSKern - 0.0 - Size - 16 - - ID - 137 - Shape - Rectangle - Style - - fill - - Color - - b - 1 - g - 0.806818 - r - 0.813024 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.316327 - g - 0.139073 - r - 0.109175 - - CornerRadius - 5 - Width - 3 - - - Text - - VerticalPad - 0 - + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - - ID - 134 + + Tail + + ID + 332 + Bounds - {{102.86499999999999, 165.60400000000001}, {37, 14}} + {{171, 345}, {68.359397999999999, 42}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Courier + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 125 + 339 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.715909 + g + 0.715909 + r + 1 + shadow @@ -91137,53 +92917,144 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.100458 + g + 0.0970254 + r + 0.316327 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 Scott} +\f0\fs28 \cf0 file} VerticalPad 0 - Wrap - NO - Bounds - {{102.86499999999999, 144.60400000000001}, {37, 14}} Class - ShapedGraphic - FitText - YES - Flow - Resize + LineGraphic + Head + + ID + 332 + + ID + 338 + Points + + {145.17976224773119, 181.49999999999773} + {145.1798127825607, 210.50000000000222} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 313 + + + + Class + LineGraphic + Head + + ID + 334 + + ID + 335 + Points + + {131.77505722430899, 255.285384531332} + {118.58449152778205, 277.21461542344474} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 332 + + + + Bounds + {{71, 278.5}, {68.359397999999999, 42}} + Class + ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Courier + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 124 + 334 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.715909 + g + 0.715909 + r + 1 + shadow @@ -91192,53 +93063,74 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.100458 + g + 0.0970254 + r + 0.316327 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 Scott} +\f0\fs28 \cf0 file} VerticalPad 0 - Wrap - NO Bounds - {{110.36499999999999, 123.604}, {22, 14}} + {{105.09, 212}, {80.179703000000003, 42}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - Courier + Geneva + NSKern + 0.0 Size - 12 + 14 ID - 123 + 332 Shape Rectangle Style fill - Draws - NO + Color + + b + 1 + g + 0.806818 + r + 0.813024 + shadow @@ -91247,195 +93139,179 @@ module Grit\ stroke - Draws - NO + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 nil} +\f0\fs28 \cf0 manifest} VerticalPad 0 - Wrap - NO - Bounds - {{103.86499999999999, 101.604}, {37, 14}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo + LineGraphic + Head - Font - Courier - Size - 12 + ID + 322 ID - 122 - Shape - Rectangle + 329 + Points + + {519.17993522146674, 181.49999999999807} + {519.17988849860012, 210.50000000000199} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 0de24} - VerticalPad - 0 + ID + 312 - Wrap - NO - Bounds - {{29.879000000000001, 184.78101000000001}, {140, 22}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo + LineGraphic + Head - Font - Monaco - Size - 8 + ID + 317 ID - 95 - Shape - Rectangle + 328 + Points + + {332.17993500923967, 181.49999999999801} + {332.17988810535593, 210.50000000000196} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Align - 0 - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural - -\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 -my commit message goes here\ -and it is really, really cool} - VerticalPad - 0 + ID + 311 - Wrap - NO Class LineGraphic + Head + + ID + 324 + ID - 93 + 325 Points - {94.372001999999995, 182.42699999999999} - {94.372001999999995, 96.281302999999994} + {505.77505924269394, 255.28538458355325} + {492.58449553229525, 277.21461552705267} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 + Tail + + ID + 322 + Bounds - {{29.879000000000001, 157.95799}, {56, 26.1462}} + {{445, 278.5}, {68.359397999999999, 42}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - GillSans + Geneva + NSKern + 0.0 Size 14 ID - 92 + 324 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.715909 + g + 0.715909 + r + 1 + shadow @@ -91444,49 +93320,74 @@ and it is really, really cool} stroke - Draws - NO + Color + + b + 0.100458 + g + 0.0970254 + r + 0.316327 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 committer} +\f0\fs28 \cf0 file} VerticalPad 0 - Wrap - NO Bounds - {{25.879000000000001, 136.45799}, {56, 26.1462}} + {{479.08999999999997, 212}, {80.179703000000003, 42}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - GillSans + Geneva + NSKern + 0.0 Size 14 ID - 86 + 322 Shape Rectangle Style fill - Draws - NO + Color + + b + 1 + g + 0.806818 + r + 0.813024 + shadow @@ -91495,100 +93396,109 @@ and it is really, really cool} stroke - Draws - NO + Color + + b + 0.316327 + g + 0.139073 + r + 0.109175 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 author} +\f0\fs28 \cf0 manifest} VerticalPad 0 - Wrap - NO - Bounds - {{25.879000000000001, 115.458}, {56, 26.1462}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Font - GillSans - Size - 14 + ID + 319 ID - 85 - Shape - Rectangle + 320 + Points + + {318.77505730568066, 255.28538453343731} + {305.58449168922505, 277.21461542762171} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 parent} - VerticalPad - 0 + ID + 317 - Wrap - NO Bounds - {{25.879000000000001, 94.458297999999999}, {56, 26.1462}} + {{258, 278.5}, {68.359397999999999, 42}} Class ShapedGraphic FontInfo + Color + + b + 1 + g + 1 + r + 1 + Font - GillSans + Geneva + NSKern + 0.0 Size 14 ID - 84 + 319 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.715909 + g + 0.715909 + r + 1 + shadow @@ -91597,189 +93507,220 @@ and it is really, really cool} stroke - Draws - NO + Color + + b + 0.100458 + g + 0.0970254 + r + 0.316327 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 tree} +\f0\fs28 \cf0 file} VerticalPad 0 - Wrap - NO + Bounds + {{292.08999999999997, 212}, {80.179703000000003, 42}} Class - LineGraphic - ID - 83 - Points - - {173.89400000000001, 182.60400000000001} - {24.364000000000001, 182.60400000000001} - - Style + ShapedGraphic + FontInfo - stroke + Color - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 2 + b + 1 + g + 1 + r + 1 + Font + Geneva + NSKern + 0.0 + Size + 14 - - - Class - LineGraphic ID - 82 - Points - - {174.37899999999999, 161.60400000000001} - {24.850000000000001, 161.60400000000001} - + 317 + Shape + Rectangle Style + fill + + Color + + b + 1 + g + 0.806818 + r + 0.813024 + + + shadow + + Draws + NO + stroke Color b - 0.382653 + 0.316327 g - 0.382653 + 0.139073 r - 0.382653 + 0.109175 - HeadArrow - 0 - Legacy - - TailArrow - 0 + CornerRadius + 5 Width - 2 + 3 + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 manifest} + VerticalPad + 0 + Class LineGraphic + Head + + ID + 311 + ID - 81 + 316 Points - {174.40799999999999, 140.60400000000001} - {24.879000000000001, 140.60400000000001} + {462.26999000000001, 147.5} + {384.67998999999992, 147.5} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 - Width - 2 + Tail + + ID + 312 + Class LineGraphic + Head + + ID + 313 + ID - 80 + 315 Points - {173.89400000000001, 119.604} - {24.364000000000001, 119.604} + {279.67998999999998, 147.5} + {192.67970300000002, 147.5} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 - Width - 2 + Tail + + ID + 311 + Bounds - {{466.18599999999998, 111.604}, {149, 99}} + {{99.179703000000003, 115}, {92, 65}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font - Monaco + Courier + NSKern + 0.0 Size - 8 + 14 ID - 75 + 313 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.699991 + g + 1 + r + 0.726874 + shadow @@ -91788,64 +93729,75 @@ and it is really, really cool} stroke - Draws - NO + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 Text - Align - 0 - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 -== LICENSE:\ -\ -(The MIT License)\ -\ -Copyright (c) 2007 Tom Preston-\ -\ -Permission is hereby granted, f\ -ree of charge, to any person ob\ +\f0\fs28 \cf0 changeset\ } VerticalPad 0 - Wrap - NO Bounds - {{60.872002000000002, 29.604299999999999}, {76, 22}} + {{463.76999000000001, 115}, {110.81999999999999, 65}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font Courier + NSKern + 0.0 Size - 18 + 14 ID - 67 + 312 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.699991 + g + 1 + r + 0.726874 + shadow @@ -91854,310 +93806,76 @@ ree of charge, to any person ob\ stroke - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs36 \cf0 98ca9..} - VerticalPad - 0 - - Wrap - NO - - - Class - Group - Graphics - - - Bounds - {{134.87199000000001, 63.235298}, {27, 26.1462}} - Class - ShapedGraphic - FontInfo - - Color - - b - 0.489796 - g - 0.489796 - r - 0.489796 - - Font - GillSans - Size - 18 - - ID - 40 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs36 \cf2 size} - VerticalPad - 0 - - Wrap - NO - - - Bounds - {{37.872002000000002, 63.235298}, {56, 26.1462}} - Class - ShapedGraphic - FontInfo - - Font - GillSans-Bold - Size - 18 - - ID - 41 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\b\fs36 \cf0 commit} - VerticalPad - 0 - - Wrap - NO - - - Class - LineGraphic - ID - 42 - Points - - {120.872, 58.481299999999997} - {120.872, 96.512298999999999} - - Style - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Class - LineGraphic - ID - 43 - Points - - {175.87199000000001, 96.512298999999999} - {21.872, 96.512298999999999} - - Style - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Bounds - {{21.872, 56.104301}, {154, 154.5}} - Class - ShapedGraphic - FontInfo - - Color - - b - 1 - g - 1 - r - 1 - - Font - Geneva - NSKern - 0.0 - Size - 14 - - ID - 44 - Shape - Rectangle - Style - - fill - - Color - - b - 0.757488 - g - 1 - r - 0.738389 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - CornerRadius - 5 - Width - 3 - - - Text + Color - VerticalPad - 0 + b + 0.172231 + g + 0.316327 + r + 0.1567 + CornerRadius + 5 + Width + 3 - - ID - 39 + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;\red88\green88\blue88;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 changeset\ +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc +\cf2 branch:test} + VerticalPad + 0 + Bounds - {{501.18599999999998, 46.604301}, {76, 22}} + {{281.17998999999998, 115}, {102, 65}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font Courier + NSKern + 0.0 Size - 18 + 14 ID - 19 + 311 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.699991 + g + 1 + r + 0.726874 + shadow @@ -92166,291 +93884,34 @@ ree of charge, to any person ob\ stroke - Draws - NO + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 e8455..} +\f0\fs28 \cf0 changeset\ +} VerticalPad 0 - Wrap - NO - - - Class - Group - Graphics - - - Bounds - {{575.18597, 77.604301000000007}, {27, 22}} - Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo - - Color - - b - 0.489796 - g - 0.489796 - r - 0.489796 - - Font - GillSans - Size - 18 - - ID - 21 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs36 \cf2 size} - VerticalPad - 0 - - Wrap - NO - - - Bounds - {{471.18599999999998, 77.604301000000007}, {40, 22}} - Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo - - Font - GillSans - Size - 18 - - ID - 22 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\b\fs36 \cf0 blob} - VerticalPad - 0 - - Wrap - NO - - - Class - LineGraphic - ID - 23 - Points - - {561.18597, 73.604301000000007} - {561.18597, 105.604} - - Style - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Class - LineGraphic - ID - 24 - Points - - {616.18597, 105.604} - {462.18599999999998, 105.604} - - Style - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Bounds - {{462.18599999999998, 71.604301000000007}, {154, 130}} - Class - ShapedGraphic - FontInfo - - Color - - b - 1 - g - 1 - r - 1 - - Font - Geneva - NSKern - 0.0 - Size - 14 - - ID - 25 - Shape - Rectangle - Style - - fill - - Color - - b - 0.749742 - g - 0.760597 - r - 1 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - CornerRadius - 5 - Width - 3 - - - Text - - VerticalPad - 0 - - - - ID - 20 GridInfo @@ -92498,9 +93959,9 @@ ree of charge, to any person ob\ RowSpacing 36 SheetTitle - example one 2 + 306 UniqueID - 92 + 88 VPages 1 @@ -92541,12 +94002,17 @@ ree of charge, to any person ob\ Class LineGraphic + Head + + ID + 312 + ID - 317 + 316 Points - {356.5, 122} - {356.5, 149} + {525.57501000000002, 350.5} + {525.57501000000002, 305} Style @@ -92560,17 +94026,130 @@ ree of charge, to any person ob\ 1 TailArrow 0 + Width + 3 Tail ID - 316 + 306 + + + + Class + LineGraphic + Head + + ID + 312 + + ID + 315 + Points + + {525.57501000000002, 201.5} + {525.57501000000002, 247.00000000000003} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 + + + Tail + + ID + 303 + + + + Class + LineGraphic + Head + + ID + 311 + + ID + 314 + Points + + {460.14301, 276} + {387.77599000000004, 276} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 + + + Tail + + ID + 312 + + + + Class + LineGraphic + Head + + ID + 310 + + ID + 313 + Points + + {256.91199, 276} + {190.36400000000003, 276} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 + + + Tail + + ID + 311 Bounds - {{295, 65.5}, {123, 55}} + {{461.64301, 248.5}, {127.864, 55}} Class ShapedGraphic FontInfo @@ -92578,11 +94157,11 @@ ree of charge, to any person ob\ Color b - 1 + 0 g - 1 + 0 r - 1 + 0 Font Geneva @@ -92592,7 +94171,7 @@ ree of charge, to any person ob\ 14 ID - 316 + 312 Shape Rectangle Style @@ -92602,11 +94181,11 @@ ree of charge, to any person ob\ Color b - 0.674017 + 0.699991 g 1 r - 0.668696 + 0.726874 shadow @@ -92619,11 +94198,11 @@ ree of charge, to any person ob\ Color b - 0.163488 + 0.172231 g 0.316327 r - 0.161591 + 0.1567 CornerRadius 5 @@ -92635,249 +94214,419 @@ ree of charge, to any person ob\ Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 commit} +\f0\fs36 \cf0 f30ab} VerticalPad 0 Bounds - {{489, 341.03699}, {61, 29}} + {{258.41199, 248.5}, {127.864, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Color - w + b + 0 + g + 0 + r 0 Font - Monaco + Geneva + NSKern + 0.0 Size 14 ID - 304 - Line - - ID - 300 - Position - 0.40243896842002869 - RotationType - 0 - + 311 Shape Rectangle Style + fill + + Color + + b + 0.699991 + g + 1 + r + 0.726874 + + shadow Draws NO + stroke + + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 + Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 git.rb} +\f0\fs36 \cf0 34ac2} + VerticalPad + 0 - Wrap - NO Bounds - {{422.54354612439397, 227.73957825850403}, {36, 29}} + {{61, 248.5}, {127.864, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Color - w + b + 0 + g + 0 + r 0 Font - Monaco + Geneva + NSKern + 0.0 Size 14 ID - 303 - Line - - ID - 299 - Position - 0.52816039323806763 - RotationType - 0 - + 310 Shape Rectangle Style + fill + + Color + + b + 0.699991 + g + 1 + r + 0.726874 + + shadow Draws NO + stroke + + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 + Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 lib} +\f0\fs36 \cf0 98ca9} + VerticalPad + 0 - Wrap - NO Bounds - {{317.5, 226.37100000000001}, {78, 29}} + {{469.38501000000002, 352}, {112.38, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Color - w + b + 0 + g + 0 + r 0 Font - Monaco + Geneva + NSKern + 0.0 Size 14 ID - 302 - Line - - ID - 297 - Position - 0.50892859697341919 - RotationType - 0 - + 306 Shape Rectangle Style + fill + + Color + + b + 0.832366 + g + 0.841837 + r + 0.820446 + + shadow Draws NO + stroke + + Color + + b + 0.301453 + g + 0.297998 + r + 0.316327 + + CornerRadius + 5 + Width + 3 + Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 Rakefile} +\f0\fs28 \cf0 testing} + VerticalPad + 0 - Wrap - NO Bounds - {{243.24373701900424, 226.73265447875974}, {61, 29}} + {{469.38501000000002, 145}, {112.38, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Color - w + b + 0 + g + 0 + r 0 Font - Monaco + Geneva + NSKern + 0.0 Size 14 ID - 301 - Line - - ID - 298 - Position - 0.51390844583511353 - RotationType - 0 - + 303 Shape Rectangle Style + fill + + Color + + b + 0.832366 + g + 0.841837 + r + 0.820446 + + shadow Draws NO + stroke + + Color + + b + 0.301453 + g + 0.297998 + r + 0.316327 + + CornerRadius + 5 + Width + 3 + Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 README} +\f0\fs28 \cf0 master} + VerticalPad + 0 - Wrap + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 1 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + 0304 + UniqueID + 73 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 553}} + Class + SolidGraphic + ID + 2 + Style + + stroke + + Draws + NO + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + Class LineGraphic Head ID - 296 + 312 ID - 300 + 316 Points - {519.5, 333} - {519.5, 389} + {525.57501000000002, 350.5} + {525.57501000000002, 305} Style @@ -92891,12 +94640,14 @@ ree of charge, to any person ob\ 1 TailArrow 0 + Width + 3 Tail ID - 293 + 306 @@ -92905,14 +94656,14 @@ ree of charge, to any person ob\ Head ID - 293 + 312 ID - 299 + 315 Points - {392.83835254982233, 204.92416915271943} - {483.16166048767457, 275.57583063733546} + {525.57501000000002, 201.5} + {525.57501000000002, 247.00000000000003} Style @@ -92926,12 +94677,14 @@ ree of charge, to any person ob\ 1 TailArrow 0 + Width + 3 Tail ID - 292 + 303 @@ -92940,14 +94693,14 @@ ree of charge, to any person ob\ Head ID - 294 + 311 ID - 298 + 314 Points - {320.16164748826498, 204.92416915333277} - {229.83833964508327, 275.57583063947328} + {460.14301, 276} + {387.77599000000004, 276} Style @@ -92961,12 +94714,14 @@ ree of charge, to any person ob\ 1 TailArrow 0 + Width + 3 Tail ID - 292 + 312 @@ -92975,14 +94730,14 @@ ree of charge, to any person ob\ Head ID - 295 + 310 ID - 297 + 313 Points - {356.5, 205.5} - {356.5, 275} + {256.91199, 276} + {190.36400000000003, 276} Style @@ -92996,17 +94751,19 @@ ree of charge, to any person ob\ 1 TailArrow 0 + Width + 3 Tail ID - 292 + 311 Bounds - {{472, 390.5}, {95, 55}} + {{461.64301, 248.5}, {127.864, 55}} Class ShapedGraphic FontInfo @@ -93014,11 +94771,11 @@ ree of charge, to any person ob\ Color b - 1 + 0 g - 1 + 0 r - 1 + 0 Font Geneva @@ -93028,7 +94785,7 @@ ree of charge, to any person ob\ 14 ID - 296 + 312 Shape Rectangle Style @@ -93038,11 +94795,11 @@ ree of charge, to any person ob\ Color b - 0.738389 + 0.699991 g - 0.749244 - r 1 + r + 0.726874 shadow @@ -93055,11 +94812,11 @@ ree of charge, to any person ob\ Color b - 0.0465446 + 0.172231 g - 0.0431119 - r 0.316327 + r + 0.1567 CornerRadius 5 @@ -93071,18 +94828,18 @@ ree of charge, to any person ob\ Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 blob} +\f0\fs36 \cf0 f30ab} VerticalPad 0 Bounds - {{309, 276.5}, {95, 55}} + {{258.41199, 248.5}, {127.864, 55}} Class ShapedGraphic FontInfo @@ -93090,11 +94847,11 @@ ree of charge, to any person ob\ Color b - 1 + 0 g - 1 + 0 r - 1 + 0 Font Geneva @@ -93104,7 +94861,7 @@ ree of charge, to any person ob\ 14 ID - 295 + 311 Shape Rectangle Style @@ -93114,11 +94871,87 @@ ree of charge, to any person ob\ Color b - 0.738389 + 0.699991 g - 0.749244 + 1 + r + 0.726874 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.172231 + g + 0.316327 r + 0.1567 + + CornerRadius + 5 + Width + 3 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 34ac2} + VerticalPad + 0 + + + + Bounds + {{61, 248.5}, {127.864, 55}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0 + g + 0 + r + 0 + + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 310 + Shape + Rectangle + Style + + fill + + Color + + b + 0.699991 + g 1 + r + 0.726874 shadow @@ -93128,37 +94961,86 @@ ree of charge, to any person ob\ stroke - Color - - b - 0.0465446 - g - 0.0431119 - r - 0.316327 - - CornerRadius - 5 + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 98ca9} + VerticalPad + 0 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 303 + + ID + 318 + Points + + {525.57501000000002, 98} + {525.57501000000002, 143.5} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 Width 3 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 blob} - VerticalPad - 0 + ID + 317 Bounds - {{146, 276.5}, {95, 55}} + {{469.38501000000002, 41.5}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -93180,7 +95062,7 @@ ree of charge, to any person ob\ 14 ID - 294 + 317 Shape Rectangle Style @@ -93190,11 +95072,11 @@ ree of charge, to any person ob\ Color b - 0.738389 + 0.287545 g - 0.749244 + 0.290816 r - 1 + 0.283427 shadow @@ -93207,11 +95089,11 @@ ree of charge, to any person ob\ Color b - 0.0465446 + 0.147567 g - 0.0431119 + 0.14589 r - 0.316327 + 0.153061 CornerRadius 5 @@ -93227,14 +95109,14 @@ ree of charge, to any person ob\ {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 blob} +\f0\fs28 \cf1 HEAD} VerticalPad 0 Bounds - {{472, 276.5}, {95, 55}} + {{469.38501000000002, 352}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -93242,11 +95124,11 @@ ree of charge, to any person ob\ Color b - 1 + 0 g - 1 + 0 r - 1 + 0 Font Geneva @@ -93256,7 +95138,7 @@ ree of charge, to any person ob\ 14 ID - 293 + 306 Shape Rectangle Style @@ -93266,11 +95148,11 @@ ree of charge, to any person ob\ Color b - 1 + 0.832366 g - 0.806818 + 0.841837 r - 0.813024 + 0.820446 shadow @@ -93283,11 +95165,11 @@ ree of charge, to any person ob\ Color b - 0.316327 + 0.301453 g - 0.139073 + 0.297998 r - 0.109175 + 0.316327 CornerRadius 5 @@ -93303,14 +95185,14 @@ ree of charge, to any person ob\ {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 tree} +\f0\fs28 \cf0 testing} VerticalPad 0 Bounds - {{309, 149}, {95, 55}} + {{469.38501000000002, 145}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -93318,11 +95200,11 @@ ree of charge, to any person ob\ Color b - 1 + 0 g - 1 + 0 r - 1 + 0 Font Geneva @@ -93332,7 +95214,7 @@ ree of charge, to any person ob\ 14 ID - 292 + 303 Shape Rectangle Style @@ -93342,11 +95224,11 @@ ree of charge, to any person ob\ Color b - 1 + 0.832366 g - 0.806818 + 0.841837 r - 0.813024 + 0.820446 shadow @@ -93359,11 +95241,11 @@ ree of charge, to any person ob\ Color b - 0.316327 + 0.301453 g - 0.139073 + 0.297998 r - 0.109175 + 0.316327 CornerRadius 5 @@ -93379,7 +95261,7 @@ ree of charge, to any person ob\ {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 tree} +\f0\fs28 \cf0 master} VerticalPad 0 @@ -93430,9 +95312,9 @@ ree of charge, to any person ob\ RowSpacing 36 SheetTitle - example one 4 + 0305 UniqueID - 67 + 102 VPages 1 @@ -93471,184 +95353,78 @@ ree of charge, to any person ob\ GraphicsList - Bounds - {{411.96068149445608, 218.87445070222617}, {95, 29}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo - - Color - - w - 0 - - Font - Monaco - Size - 14 - - ID - 303 - Line + LineGraphic + Head ID - 299 - Position - 0.52831131219863892 - RotationType - 0 + 310 - Shape - Rectangle + ID + 316 + Points + + {295.00600999999995, 210} + {236.88, 210} + Style - shadow - - Draws - NO - stroke - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 lib/git.rb} - - Wrap - NO - - - Bounds - {{318.14089000270553, 217.70755713329453}, {78, 29}} - Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo - - Color - - w + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow 0 + Width + 3 - Font - Monaco - Size - 14 - ID - 302 - Line + Tail ID - 297 - Position - 0.50892859697341919 - RotationType - 0 - - Shape - Rectangle - Style - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 Rakefile} + 311 - Wrap - NO - Bounds - {{243.36088001677811, 219.79668459097809}, {61, 29}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo - - Color - - w - 0 - - Font - Monaco - Size - 14 - - ID - 301 - Line + LineGraphic + Head ID - 298 - Position - 0.51390844583511353 - RotationType - 0 + 311 - Shape - Rectangle + ID + 315 + Points + + {473.62700999999998, 210} + {410.38600999999994, 210} + Style - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 README} + ID + 312 - Wrap - NO Class @@ -93656,14 +95432,14 @@ ree of charge, to any person ob\ Head ID - 296 + 312 ID - 299 + 314 Points - {404.21204295693246, 202.85565534016658} - {508.78795720258535, 260.62234445949673} + {531.31701999999996, 284.5} + {531.31701999999996, 239} Style @@ -93677,12 +95453,14 @@ ree of charge, to any person ob\ 1 TailArrow 0 + Width + 3 Tail ID - 292 + 306 @@ -93691,14 +95469,14 @@ ree of charge, to any person ob\ Head ID - 294 + 312 ID - 298 + 313 Points - {315.95062212571679, 204.85968732285818} - {234.04937635290332, 262.14031265503178} + {531.31701999999996, 135.5} + {531.31701999999996, 181} Style @@ -93712,12 +95490,14 @@ ree of charge, to any person ob\ 1 TailArrow 0 + Width + 3 Tail ID - 292 + 303 @@ -93726,14 +95506,14 @@ ree of charge, to any person ob\ Head ID - 295 + 306 ID - 297 + 309 Points - {356.83363061355914, 205.49990074396538} - {357.43736832021017, 257.978099256669} + {531.31701999999996, 388.00000000000006} + {531.31701999999996, 342.5} Style @@ -93747,17 +95527,19 @@ ree of charge, to any person ob\ 1 TailArrow 0 + Width + 3 Tail ID - 292 + 308 Bounds - {{509, 259.47800000000001}, {95, 55}} + {{475.12700999999998, 389.5}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -93779,7 +95561,7 @@ ree of charge, to any person ob\ 14 ID - 296 + 308 Shape Rectangle Style @@ -93789,11 +95571,11 @@ ree of charge, to any person ob\ Color b - 0.738389 + 0.287545 g - 0.749244 + 0.290816 r - 1 + 0.283427 shadow @@ -93806,9 +95588,85 @@ ree of charge, to any person ob\ Color b - 0.0465446 + 0.147567 g - 0.0431119 + 0.14589 + r + 0.153061 + + CornerRadius + 5 + Width + 3 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf1 HEAD} + VerticalPad + 0 + + + + Bounds + {{475.12700999999998, 286}, {112.38, 55}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0 + g + 0 + r + 0 + + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 306 + Shape + Rectangle + Style + + fill + + Color + + b + 0.832366 + g + 0.841837 + r + 0.820446 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.301453 + g + 0.297998 r 0.316327 @@ -93826,14 +95684,14 @@ ree of charge, to any person ob\ {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 blob} +\f0\fs28 \cf0 testing} VerticalPad 0 Bounds - {{310.27100000000002, 259.47800000000001}, {95, 55}} + {{475.12700999999998, 79}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -93841,11 +95699,11 @@ ree of charge, to any person ob\ Color b - 1 + 0 g - 1 + 0 r - 1 + 0 Font Geneva @@ -93855,7 +95713,7 @@ ree of charge, to any person ob\ 14 ID - 295 + 303 Shape Rectangle Style @@ -93865,11 +95723,87 @@ ree of charge, to any person ob\ Color b - 0.738389 + 0.832366 + g + 0.841837 + r + 0.820446 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.301453 + g + 0.297998 + r + 0.316327 + + CornerRadius + 5 + Width + 3 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 master} + VerticalPad + 0 + + + + Bounds + {{475.12700999999998, 182.5}, {112.38, 55}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0 + g + 0 + r + 0 + + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 312 + Shape + Rectangle + Style + + fill + + Color + + b + 0.699991 g - 0.749244 - r 1 + r + 0.726874 shadow @@ -93882,11 +95816,11 @@ ree of charge, to any person ob\ Color b - 0.0465446 + 0.172231 g - 0.0431119 - r 0.316327 + r + 0.1567 CornerRadius 5 @@ -93898,18 +95832,18 @@ ree of charge, to any person ob\ Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 blob} +\f0\fs36 \cf0 f30ab} VerticalPad 0 Bounds - {{146, 263}, {95, 55}} + {{296.50601, 182.5}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -93917,11 +95851,11 @@ ree of charge, to any person ob\ Color b - 1 + 0 g - 1 + 0 r - 1 + 0 Font Geneva @@ -93931,7 +95865,7 @@ ree of charge, to any person ob\ 14 ID - 294 + 311 Shape Rectangle Style @@ -93941,11 +95875,11 @@ ree of charge, to any person ob\ Color b - 0.738389 + 0.699991 g - 0.749244 - r 1 + r + 0.726874 shadow @@ -93958,11 +95892,11 @@ ree of charge, to any person ob\ Color b - 0.0465446 + 0.172231 g - 0.0431119 - r 0.316327 + r + 0.1567 CornerRadius 5 @@ -93974,18 +95908,18 @@ ree of charge, to any person ob\ Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 blob} +\f0\fs36 \cf0 34ac2} VerticalPad 0 Bounds - {{309, 149}, {95, 55}} + {{123, 182.5}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -93993,11 +95927,11 @@ ree of charge, to any person ob\ Color b - 1 + 0 g - 1 + 0 r - 1 + 0 Font Geneva @@ -94007,7 +95941,7 @@ ree of charge, to any person ob\ 14 ID - 292 + 310 Shape Rectangle Style @@ -94017,11 +95951,11 @@ ree of charge, to any person ob\ Color b - 1 + 0.699991 g - 0.806818 + 1 r - 0.813024 + 0.726874 shadow @@ -94034,11 +95968,11 @@ ree of charge, to any person ob\ Color b - 0.316327 + 0.172231 g - 0.139073 + 0.316327 r - 0.109175 + 0.1567 CornerRadius 5 @@ -94050,11 +95984,11 @@ ree of charge, to any person ob\ Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 tree} +\f0\fs36 \cf0 98ca9} VerticalPad 0 @@ -94105,9 +96039,9 @@ ree of charge, to any person ob\ RowSpacing 36 SheetTitle - example one 7 + 0306 UniqueID - 84 + 74 VPages 1 @@ -94122,13 +96056,6 @@ ree of charge, to any person ob\ {{0, 0}, {756, 553}} Class SolidGraphic - FontInfo - - Font - Helvetica - Size - 12 - ID 2 Style @@ -94152,42 +96079,121 @@ ree of charge, to any person ob\ 1 in = 1.00000 in GraphicsList + + Class + LineGraphic + Head + + ID + 312 + + ID + 316 + Points + + {207.00600000000003, 211} + {148.88, 211} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 + + + Tail + + ID + 313 + + + + Class + LineGraphic + Head + + ID + 313 + + ID + 315 + Points + + {385.62700999999998, 211} + {322.38600000000002, 211} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 + + + Tail + + ID + 314 + + Bounds - {{498.56482889398615, 124.7001679920719}, {78, 29}} + {{387.12700999999998, 183.5}, {112.38, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Color - w + b + 0 + g + 0 + r 0 Font - Monaco + Geneva + NSKern + 0.0 Size 14 ID - 330 - Line - - ID - 325 - Position - 0.43483179807662964 - RotationType - 0 - + 314 Shape Rectangle Style + fill + + Color + + b + 0.699991 + g + 1 + r + 0.726874 + + shadow Draws @@ -94195,59 +96201,75 @@ ree of charge, to any person ob\ stroke - Draws - NO + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 test.txt} +\f0\fs36 \cf0 f30ab} + VerticalPad + 0 - Wrap - NO Bounds - {{502.75775719133185, 83.579398999999995}, {69, 29}} + {{208.506, 183.5}, {112.38, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Color - w + b + 0 + g + 0 + r 0 Font - Monaco + Geneva + NSKern + 0.0 Size 14 ID - 329 - Line - - ID - 326 - Position - 0.12560455501079559 - RotationType - 0 - + 313 Shape Rectangle Style + fill + + Color + + b + 0.699991 + g + 1 + r + 0.726874 + + shadow Draws @@ -94255,59 +96277,75 @@ ree of charge, to any person ob\ stroke - Draws - NO + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 new.txt} +\f0\fs36 \cf0 34ac2} + VerticalPad + 0 - Wrap - NO Bounds - {{500.94871435301138, 38.5}, {36, 29}} + {{35, 183.5}, {112.38, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Color - w + b + 0 + g + 0 + r 0 Font - Monaco + Geneva + NSKern + 0.0 Size 14 ID - 328 - Line - - ID - 327 - Position - 0.06745930016040802 - RotationType - 0 - + 312 Shape Rectangle Style + fill + + Color + + b + 0.699991 + g + 1 + r + 0.726874 + + shadow Draws @@ -94315,22 +96353,33 @@ ree of charge, to any person ob\ stroke - Draws - NO + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 bak} +\f0\fs36 \cf0 98ca9} + VerticalPad + 0 - Wrap - NO Class @@ -94338,18 +96387,14 @@ ree of charge, to any person ob\ Head ID - 293 + 314 ID - 327 + 311 Points - {460.86203630895039, 69.518746133859921} - {477.38101, 53} - {743.80102999999997, 53} - {743.80102999999997, 431} - {487.80099000000001, 431} - {460.57219728118042, 403.48713983483583} + {564.24798999999985, 211} + {501.00700999999998, 211} Style @@ -94357,55 +96402,96 @@ ree of charge, to any person ob\ HeadArrow FilledArrow - HopLines - - HopType - 1 Legacy + LineType + 1 TailArrow 0 + Width + 3 Tail ID - 322 + 310 + Bounds + {{565.74798999999996, 183.5}, {112.38, 55}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 294 + Color + + b + 0 + g + 0 + r + 0 + + Font + Geneva + NSKern + 0.0 + Size + 14 ID - 326 - Points - - {481.30099000000007, 98.079398999999995} - {726.80102999999997, 98.079398999999995} - {726.80102999999997, 280} - {708.7238586223034, 280.24821098385797} - + 310 + Shape + Rectangle Style + fill + + Color + + b + 0.699991 + g + 1 + r + 0.726874 + + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - TailArrow - 0 + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 - Tail + Text - ID - 322 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 c2b9e} + VerticalPad + 0 @@ -94414,14 +96500,14 @@ ree of charge, to any person ob\ Head ID - 295 + 306 ID - 325 + 309 Points - {481.19816665868575, 117.18082572804629} - {610.8268233385262, 167.81958355876466} + {621.93799000000001, 389} + {621.93799000000001, 343.5} Style @@ -94435,12 +96521,90 @@ ree of charge, to any person ob\ 1 TailArrow 0 + Width + 3 + + + Tail + + ID + 308 + + + + Bounds + {{565.74798999999996, 390.5}, {112.38, 55}} + Class + ShapedGraphic + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + Geneva + NSKern + 0.0 + Size + 14 + + ID + 308 + Shape + Rectangle + Style + + fill + + Color + + b + 0.287545 + g + 0.290816 + r + 0.283427 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.147567 + g + 0.14589 + r + 0.153061 + + CornerRadius + 5 + Width + 3 - Tail + Text - ID - 322 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf1 HEAD} + VerticalPad + 0 @@ -94449,14 +96613,14 @@ ree of charge, to any person ob\ Head ID - 322 + 310 ID - 324 + 307 Points - {322.49999999999994, 98.079398999999995} - {383.30099000000001, 98.079398999999995} + {621.93799000000001, 285.5} + {621.93799000000001, 240} Style @@ -94470,40 +96634,56 @@ ree of charge, to any person ob\ 1 TailArrow 0 + Width + 3 Tail ID - 316 + 306 Bounds - {{390.30099000000001, 72.579398999999995}, {37, 14}} + {{565.74798999999996, 287}, {112.38, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font - Monaco + Geneva + NSKern + 0.0 Size - 10 + 14 ID - 323 + 306 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.832366 + g + 0.841837 + r + 0.820446 + shadow @@ -94512,32 +96692,74 @@ ree of charge, to any person ob\ stroke - Draws - NO + Color + + b + 0.301453 + g + 0.297998 + r + 0.316327 + + CornerRadius + 5 + Width + 3 Text - Align - 0 - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf0 3c4e9c} +\f0\fs28 \cf0 testing} VerticalPad 0 - Wrap - NO + + + Class + LineGraphic + Head + + ID + 314 + + ID + 305 + Points + + {443.31702000000001, 136.5} + {443.31702000000001, 182} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 + + + Tail + + ID + 303 + Bounds - {{384.80099000000001, 70.579398999999995}, {95, 55}} + {{387.12700999999998, 80}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -94545,11 +96767,11 @@ ree of charge, to any person ob\ Color b - 1 + 0 g - 1 + 0 r - 1 + 0 Font Geneva @@ -94559,7 +96781,7 @@ ree of charge, to any person ob\ 14 ID - 322 + 303 Shape Rectangle Style @@ -94569,11 +96791,11 @@ ree of charge, to any person ob\ Color b - 1 + 0.832366 g - 0.806818 + 0.841837 r - 0.813024 + 0.820446 shadow @@ -94586,11 +96808,11 @@ ree of charge, to any person ob\ Color b - 0.316327 + 0.301453 g - 0.139073 + 0.297998 r - 0.109175 + 0.316327 CornerRadius 5 @@ -94606,11 +96828,97 @@ ree of charge, to any person ob\ {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 tree} +\f0\fs28 \cf0 master} VerticalPad 0 + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 1 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + 0307 + UniqueID + 75 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 553}} + Class + SolidGraphic + ID + 2 + Style + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + Class LineGraphic @@ -94620,11 +96928,11 @@ ree of charge, to any person ob\ 314 ID - 321 + 318 Points - {259.5, 127.079399} - {259.5, 207.5} + {207.00600000000003, 245} + {148.88, 245} Style @@ -94638,12 +96946,14 @@ ree of charge, to any person ob\ 1 TailArrow 0 + Width + 3 Tail ID - 316 + 315 @@ -94652,14 +96962,14 @@ ree of charge, to any person ob\ Head ID - 311 + 315 ID - 320 + 317 Points - {259.5, 265.5} - {259.5, 345.92098999999996} + {385.62700999999998, 245} + {322.38600000000002, 245} Style @@ -94673,110 +96983,208 @@ ree of charge, to any person ob\ 1 TailArrow 0 + Width + 3 Tail ID - 314 + 316 + Bounds + {{387.12700999999998, 217.5}, {112.38, 55}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 292 + Color + + b + 0 + g + 0 + r + 0 + + Font + Geneva + NSKern + 0.0 + Size + 14 ID - 319 - Points - - {322.49983296888445, 235.55974916048709} - {383.30115702867477, 234.65231031030868} - + 316 + Shape + Rectangle Style + fill + + Color + + b + 0.699991 + g + 1 + r + 0.726874 + + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - HopLines - - HopType - 1 - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 - Tail + Text - ID - 314 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 f30ab} + VerticalPad + 0 + Bounds + {{208.506, 217.5}, {112.38, 55}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 293 + Color + + b + 0 + g + 0 + r + 0 + + Font + Geneva + NSKern + 0.0 + Size + 14 ID - 318 - Points - - {322.49999999999994, 374.92099000000002} - {383.30099000000001, 374.92099000000002} - + 315 + Shape + Rectangle Style + fill + + Color + + b + 0.699991 + g + 1 + r + 0.726874 + + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 - Tail + Text - ID - 311 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 34ac2} + VerticalPad + 0 Bounds - {{204.47399999999999, 73.579398999999995}, {47.905299999999997, 14}} + {{35, 217.5}, {112.38, 55}} Class ShapedGraphic FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font - Monaco + Geneva + NSKern + 0.0 Size - 10 + 14 ID - 317 + 314 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.699991 + g + 1 + r + 0.726874 + shadow @@ -94785,32 +97193,74 @@ ree of charge, to any person ob\ stroke - Draws - NO + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 Text - Align - 0 - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf0 1a410e} +\f0\fs36 \cf0 98ca9} VerticalPad 0 - Wrap - NO + + + Class + LineGraphic + Head + + ID + 316 + + ID + 313 + Points + + {564.24798999999985, 245} + {501.00700999999998, 245} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 + + + Tail + + ID + 312 + Bounds - {{198, 70.579398999999995}, {123, 55}} + {{565.74798999999996, 217.5}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -94818,11 +97268,11 @@ ree of charge, to any person ob\ Color b - 1 + 0 g - 1 + 0 r - 1 + 0 Font Geneva @@ -94832,7 +97282,7 @@ ree of charge, to any person ob\ 14 ID - 316 + 312 Shape Rectangle Style @@ -94842,11 +97292,11 @@ ree of charge, to any person ob\ Color b - 0.674017 + 0.699991 g 1 r - 0.668696 + 0.726874 shadow @@ -94859,11 +97309,11 @@ ree of charge, to any person ob\ Color b - 0.163488 + 0.172231 g 0.316327 r - 0.161591 + 0.1567 CornerRadius 5 @@ -94875,72 +97325,55 @@ ree of charge, to any person ob\ Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 third commit} +\f0\fs36 \cf0 c2b9e} VerticalPad 0 - Bounds - {{204.47399999999999, 212}, {47.905299999999997, 14}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Font - Monaco - Size - 10 + ID + 303 ID - 315 - Shape - Rectangle + 309 + Points + + {443.31702000000001, 67} + {443.31702000000001, 112.5} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 - Text + Tail - Align - 0 - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;} -\deftab720 -\pard\pardeftab720\ri0\sa120 - -\f0\fs20 \cf0 cac0ca} - VerticalPad - 0 + ID + 308 - Wrap - NO Bounds - {{198, 209}, {123, 55}} + {{387.12700999999998, 10.5}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -94962,7 +97395,7 @@ ree of charge, to any person ob\ 14 ID - 314 + 308 Shape Rectangle Style @@ -94972,11 +97405,11 @@ ree of charge, to any person ob\ Color b - 0.674017 + 0.287545 g - 1 + 0.290816 r - 0.668696 + 0.283427 shadow @@ -94989,11 +97422,11 @@ ree of charge, to any person ob\ Color b - 0.163488 + 0.147567 g - 0.316327 + 0.14589 r - 0.161591 + 0.153061 CornerRadius 5 @@ -95009,67 +97442,51 @@ ree of charge, to any person ob\ {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 second commit} +\f0\fs28 \cf1 HEAD} VerticalPad 0 - Bounds - {{204.47399999999999, 350.42099000000002}, {47.905299999999997, 14}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Font - Monaco - Size - 10 + ID + 312 ID - 313 - Shape - Rectangle + 307 + Points + + {621.93799000000001, 319.49999999999994} + {621.93799000000001, 274} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 - Text + Tail - Align - 0 - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural - -\f0\fs20 \cf0 fdf4fc} - VerticalPad - 0 + ID + 306 - Wrap - NO Bounds - {{198, 347.42099000000002}, {123, 55}} + {{565.74798999999996, 321}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -95077,11 +97494,11 @@ ree of charge, to any person ob\ Color b - 1 + 0 g - 1 + 0 r - 1 + 0 Font Geneva @@ -95091,7 +97508,7 @@ ree of charge, to any person ob\ 14 ID - 311 + 306 Shape Rectangle Style @@ -95101,11 +97518,11 @@ ree of charge, to any person ob\ Color b - 0.674017 + 0.832366 g - 1 + 0.841837 r - 0.668696 + 0.820446 shadow @@ -95118,11 +97535,11 @@ ree of charge, to any person ob\ Color b - 0.163488 + 0.301453 g - 0.316327 + 0.297998 r - 0.161591 + 0.316327 CornerRadius 5 @@ -95138,94 +97555,88 @@ ree of charge, to any person ob\ {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 first commit} +\f0\fs28 \cf0 testing} VerticalPad 0 - Bounds - {{617.22400000000005, 350.42099000000002}, {37, 14}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo + LineGraphic + Head - Font - Monaco - Size - 10 + ID + 316 ID - 310 - Shape - Rectangle + 305 + Points + + {443.31702000000001, 170.5} + {443.31702000000001, 215.99999999999997} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 - Text + Tail - Align - 0 - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural - -\f0\fs20 \cf0 83baae} - VerticalPad - 0 + ID + 303 - Wrap - NO Bounds - {{390.80099000000001, 350.42099000000002}, {37, 14}} + {{387.12700999999998, 114}, {112.38, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0 + g + 0 + r + 0 + Font - Monaco + Geneva + NSKern + 0.0 Size - 10 + 14 ID - 309 + 303 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.832366 + g + 0.841837 + r + 0.820446 + shadow @@ -95234,236 +97645,272 @@ ree of charge, to any person ob\ stroke - Draws - NO + Color + + b + 0.301453 + g + 0.297998 + r + 0.316327 + + CornerRadius + 5 + Width + 3 Text - Align - 0 - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf0 d8329f} +\f0\fs28 \cf0 master} VerticalPad 0 - Wrap + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 1 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + 0308 + UniqueID + 76 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 553}} + Class + SolidGraphic + ID + 2 + Style + + stroke + + Draws + NO + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + - Bounds - {{617.72400000000005, 161.42101}, {37, 14}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo + LineGraphic + Head - Font - Monaco - Size - 10 + ID + 318 ID - 308 - Shape - Rectangle + 321 + Points + + {556.57205430113845, 351.71649576941576} + {496.9349556806082, 332.53350675137438} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 - Text + Tail - Align - 0 - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural - -\f0\fs20 \cf0 1f7a7a} - VerticalPad - 0 + ID + 310 - Wrap - NO - Bounds - {{617.22400000000005, 256.42099000000002}, {37, 14}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo + LineGraphic + Head - Font - Monaco - Size - 10 + ID + 316 ID - 307 - Shape - Rectangle + 320 + Points + + {203.00600000000003, 314} + {144.88, 314} + Style - - fill - - Draws - NO - - shadow - - Draws - NO - + stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 - Text + Tail - Align - 0 - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural - -\f0\fs20 \cf0 fa49b0} - VerticalPad - 0 + ID + 317 - Wrap - NO - Bounds - {{390.30099000000001, 208.42101}, {37, 14}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo + LineGraphic + Head - Font - Monaco - Size - 10 + ID + 317 ID - 305 - Shape - Rectangle + 319 + Points + + {381.62700999999998, 314} + {318.38600000000002, 314} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 - Text + Tail - Align - 0 - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural - -\f0\fs20 \cf0 0155eb} - VerticalPad - 0 + ID + 318 - Wrap - NO Bounds - {{502.77437879344052, 360.42099000000002}, {78, 29}} + {{383.12700999999998, 286.5}, {112.38, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Color - w + b + 0 + g + 0 + r 0 Font - Monaco + Geneva + NSKern + 0.0 Size 14 ID - 304 - Line - - ID - 300 - Position - 0.46725374460220337 - RotationType - 0 - + 318 Shape Rectangle Style + fill + + Color + + b + 0.699991 + g + 1 + r + 0.726874 + + shadow Draws @@ -95471,59 +97918,75 @@ ree of charge, to any person ob\ stroke - Draws - NO + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 test.txt} +\f0\fs36 \cf0 f30ab} + VerticalPad + 0 - Wrap - NO Bounds - {{500.55997132727174, 197.25451011674809}, {78, 29}} + {{204.506, 286.5}, {112.38, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Color - w + b + 0 + g + 0 + r 0 Font - Monaco + Geneva + NSKern + 0.0 Size 14 ID - 302 - Line - - ID - 297 - Position - 0.45016780495643616 - RotationType - 0 - + 317 Shape Rectangle Style + fill + + Color + + b + 0.699991 + g + 1 + r + 0.726874 + + shadow Draws @@ -95531,59 +97994,75 @@ ree of charge, to any person ob\ stroke - Draws - NO + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 test.txt} +\f0\fs36 \cf0 34ac2} + VerticalPad + 0 - Wrap - NO Bounds - {{502.78570292604866, 241.1175018675161}, {69, 29}} + {{31, 286.5}, {112.38, 55}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Color - w + b + 0 + g + 0 + r 0 Font - Monaco + Geneva + NSKern + 0.0 Size 14 ID - 301 - Line - - ID - 298 - Position - 0.4326038658618927 - RotationType - 0 - + 316 Shape Rectangle Style + fill + + Color + + b + 0.699991 + g + 1 + r + 0.726874 + + shadow Draws @@ -95591,91 +98070,32 @@ ree of charge, to any person ob\ stroke - Draws - NO + Color + + b + 0.172231 + g + 0.316327 + r + 0.1567 + + CornerRadius + 5 + Width + 3 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 new.txt} - - Wrap - NO - - - Class - LineGraphic - Head - - ID - 296 - - ID - 300 - Points - - {481.30099000000007, 374.92099000000002} - {610.72400000000005, 374.92099000000002} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 293 - - - - Class - LineGraphic - Head - - ID - 294 - - ID - 298 - Points - - {481.26994856008611, 244.04109874004385} - {610.75504144107913, 270.80092106423268} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 292 +\f0\fs36 \cf0 98ca9} + VerticalPad + 0 @@ -95684,14 +98104,14 @@ ree of charge, to any person ob\ Head ID - 295 + 318 ID - 297 + 315 Points - {481.2699485598086, 223.80092121333749} - {610.75504144006777, 197.04109876587836} + {556.57205430113845, 276.28350423058424} + {496.9349556806082, 295.46649324862562} Style @@ -95705,17 +98125,19 @@ ree of charge, to any person ob\ 1 TailArrow 0 + Width + 3 Tail ID - 292 + 314 Bounds - {{612.22400000000005, 347.42099000000002}, {95, 55}} + {{558, 230.25}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -95723,11 +98145,11 @@ ree of charge, to any person ob\ Color b - 1 + 0 g - 1 + 0 r - 1 + 0 Font Geneva @@ -95737,7 +98159,7 @@ ree of charge, to any person ob\ 14 ID - 296 + 314 Shape Rectangle Style @@ -95747,11 +98169,11 @@ ree of charge, to any person ob\ Color b - 0.738389 + 0.699991 g - 0.749244 - r 1 + r + 0.726874 shadow @@ -95764,11 +98186,11 @@ ree of charge, to any person ob\ Color b - 0.0465446 + 0.172231 g - 0.0431119 - r 0.316327 + r + 0.1567 CornerRadius 5 @@ -95780,18 +98202,18 @@ ree of charge, to any person ob\ Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 "version 1"} +\f0\fs36 \cf0 c2b9e} VerticalPad 0 Bounds - {{612.22400000000005, 159.42101}, {95, 55}} + {{558, 342.75}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -95799,11 +98221,11 @@ ree of charge, to any person ob\ Color b - 1 + 0 g - 1 + 0 r - 1 + 0 Font Geneva @@ -95813,7 +98235,7 @@ ree of charge, to any person ob\ 14 ID - 295 + 310 Shape Rectangle Style @@ -95823,11 +98245,11 @@ ree of charge, to any person ob\ Color b - 0.738389 + 0.699991 g - 0.749244 - r 1 + r + 0.726874 shadow @@ -95840,11 +98262,11 @@ ree of charge, to any person ob\ Color b - 0.0465446 + 0.172231 g - 0.0431119 - r 0.316327 + r + 0.1567 CornerRadius 5 @@ -95856,18 +98278,55 @@ ree of charge, to any person ob\ Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 "version 2"} +\f0\fs36 \cf0 87ab2} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 303 + + ID + 309 + Points + + {614.19000000000005, 78.5} + {614.19000000000005, 124} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 + + + Tail + + ID + 308 + + Bounds - {{612.22400000000005, 253.42101}, {95, 55}} + {{558, 22}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -95889,7 +98348,7 @@ ree of charge, to any person ob\ 14 ID - 294 + 308 Shape Rectangle Style @@ -95899,11 +98358,11 @@ ree of charge, to any person ob\ Color b - 0.738389 + 0.287545 g - 0.749244 + 0.290816 r - 1 + 0.283427 shadow @@ -95916,11 +98375,11 @@ ree of charge, to any person ob\ Color b - 0.0465446 + 0.147567 g - 0.0431119 + 0.14589 r - 0.316327 + 0.153061 CornerRadius 5 @@ -95936,14 +98395,51 @@ ree of charge, to any person ob\ {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 "new file"} +\f0\fs28 \cf1 HEAD} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 310 + + ID + 307 + Points + + {614.19000000000005, 453} + {614.19000000000005, 399.24999999999994} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 + + + Tail + + ID + 306 + + Bounds - {{384.80099000000001, 347.42099000000002}, {95, 55}} + {{558, 454.5}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -95951,11 +98447,11 @@ ree of charge, to any person ob\ Color b - 1 + 0 g - 1 + 0 r - 1 + 0 Font Geneva @@ -95965,7 +98461,7 @@ ree of charge, to any person ob\ 14 ID - 293 + 306 Shape Rectangle Style @@ -95975,11 +98471,11 @@ ree of charge, to any person ob\ Color b - 1 + 0.832366 g - 0.806818 + 0.841837 r - 0.813024 + 0.820446 shadow @@ -95992,11 +98488,11 @@ ree of charge, to any person ob\ Color b - 0.316327 + 0.301453 g - 0.139073 + 0.297998 r - 0.109175 + 0.316327 CornerRadius 5 @@ -96012,14 +98508,51 @@ ree of charge, to any person ob\ {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 tree} +\f0\fs28 \cf0 testing} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 314 + + ID + 305 + Points + + {614.19000000000005, 182} + {614.19000000000005, 228.75} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 + + + Tail + + ID + 303 + + Bounds - {{384.80099000000001, 206.42101}, {95, 55}} + {{558, 125.5}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -96027,11 +98560,11 @@ ree of charge, to any person ob\ Color b - 1 + 0 g - 1 + 0 r - 1 + 0 Font Geneva @@ -96041,7 +98574,7 @@ ree of charge, to any person ob\ 14 ID - 292 + 303 Shape Rectangle Style @@ -96051,11 +98584,11 @@ ree of charge, to any person ob\ Color b - 1 + 0.832366 g - 0.806818 + 0.841837 r - 0.813024 + 0.820446 shadow @@ -96068,11 +98601,11 @@ ree of charge, to any person ob\ Color b - 0.316327 + 0.301453 g - 0.139073 + 0.297998 r - 0.109175 + 0.316327 CornerRadius 5 @@ -96088,7 +98621,7 @@ ree of charge, to any person ob\ {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 tree} +\f0\fs28 \cf0 master} VerticalPad 0 @@ -96139,9 +98672,9 @@ ree of charge, to any person ob\ RowSpacing 36 SheetTitle - example one 5 + 0309 UniqueID - 68 + 77 VPages 1 @@ -96153,16 +98686,9 @@ ree of charge, to any person ob\ BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {805, 732}} Class SolidGraphic - FontInfo - - Font - Helvetica - Size - 12 - ID 2 Style @@ -96178,6 +98704,8 @@ ree of charge, to any person ob\ 0 CanvasOrigin {0, 0} + CanvasSize + {805, 732} ColumnAlign 1 ColumnSpacing @@ -96188,26 +98716,42 @@ ree of charge, to any person ob\ Bounds - {{204.47399999999999, 73.579398999999995}, {47.905299999999997, 14}} + {{409.06799000000001, 391.48000999999999}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Monaco + LucidaGrande Size 10 ID - 317 + 1335 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.933333 + g + 0.933333 + r + 0.933333 + shadow @@ -96216,46 +98760,172 @@ ree of charge, to any person ob\ stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 2 Text - Align - 0 - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf0 1a410e} +\f0\fs20 \cf2 iss53} VerticalPad 0 - Wrap - NO + + + AllowToConnect + + Class + LineGraphic + ID + 1350 + Points + + {434, 439} + {434, 362} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + Bounds - {{204.47399999999999, 212}, {47.905299999999997, 14}} + {{333.75299000000001, 195}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Monaco + LucidaGrande Size 10 ID - 315 + 1316 Shape Rectangle Style + + fill + + Color + + b + 0.933333 + g + 0.933333 + r + 0.933333 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 2 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs20 \cf2 master} + VerticalPad + 0 + + + + AllowToConnect + + Class + LineGraphic + ID + 1349 + Points + + {378, 183} + {378, 260} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{397.82900999999998, 442}, {92.5, 34}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 1348 + Shape + RoundRect + Style fill @@ -96268,27 +98938,92 @@ ree of charge, to any person ob\ NO stroke + + Color + + b + 0.316327 + g + 0.316327 + r + 0.316327 + + Width + 2 + + + Text + + Pad + 3 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Snapshot to \ +Merge In} + VerticalPad + 3 + + Wrap + NO + + + Bounds + {{322.50299000000001, 149}, {92.5, 34}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 1347 + Shape + RoundRect + Style + + fill Draws NO + shadow + + Draws + NO + + stroke + + Color + + b + 0.316327 + g + 0.316327 + r + 0.316327 + + Width + 2 + Text - Align - 0 Pad - 0 + 3 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} -\deftab720 -\pard\pardeftab720\ri0\sa120 +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf0 cac0ca} +\f0\fs24 \cf0 Snapshot to \ +Merge Into} VerticalPad - 0 + 3 Wrap NO @@ -96299,14 +99034,14 @@ ree of charge, to any person ob\ Head ID - 314 + 1304 ID - 335 + 1346 Points - {158.49983335129986, 234.99435173000086} - {196.50016664244603, 235.56084392278581} + {291.44894361607567, 230.99999999999321} + {291.44882607964962, 262.870000000017} Style @@ -96325,8 +99060,66 @@ ree of charge, to any person ob\ Tail ID - 333 + 1345 + + + + Bounds + {{254.57400999999999, 196}, {73.75, 34}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 1345 + Shape + RoundRect + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Color + + b + 0.316327 + g + 0.316327 + r + 0.316327 + + Width + 2 + + Text + + Pad + 3 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Common \ +Ancestor} + VerticalPad + 3 + + Wrap + NO Class @@ -96334,14 +99127,14 @@ ree of charge, to any person ob\ Head ID - 316 + 1337 ID - 334 + 1344 Points - {158.5, 98.079398999999995} - {196.5, 98.079398999999995} + {417.5, 339.63} + {395.09549100000004, 339.63} Style @@ -96360,12 +99153,12 @@ ree of charge, to any person ob\ Tail ID - 332 + 1343 Bounds - {{16, 206.42101}, {141, 55}} + {{420, 321.63}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -96373,23 +99166,21 @@ ree of charge, to any person ob\ Color b - 1 + 0 g - 1 + 0 r - 1 + 0.501961 Font - Geneva - NSKern - 0.0 + Helvetica Size 12 ID - 333 + 1343 Shape - Rectangle + RoundRect Style fill @@ -96397,11 +99188,11 @@ ree of charge, to any person ob\ Color b - 0.831572 + 0.837205 g - 0.872449 + 0.959184 r - 0.861573 + 0.826135 shadow @@ -96414,34 +99205,67 @@ ree of charge, to any person ob\ Color b - 0.297998 + 0 g - 0.316327 + 0.0431373 r - 0.310617 + 0.85098 - CornerRadius - 5 Width - 3 + 5 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red128\green0\blue0;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 refs/heads/test} +\f0\fs24 \cf2 C5} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1304 + + ID + 1340 + Points + + {342.185, 283.37} + {318.02750100000003, 283.37} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1339 + + Bounds - {{16, 70.579398999999995}, {141, 55}} + {{344.685, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -96449,23 +99273,21 @@ ree of charge, to any person ob\ Color b - 1 + 0 g - 1 + 0 r - 1 + 0.501961 - Font - Geneva - NSKern - 0.0 + Font + Helvetica Size 12 ID - 332 + 1339 Shape - Rectangle + RoundRect Style fill @@ -96473,11 +99295,11 @@ ree of charge, to any person ob\ Color b - 0.831572 + 0.837205 g - 0.872449 + 0.959184 r - 0.861573 + 0.826135 shadow @@ -96490,187 +99312,94 @@ ree of charge, to any person ob\ Color b - 0.297998 + 0 g - 0.316327 + 0.0431373 r - 0.310617 + 0.85098 - CornerRadius - 5 Width - 3 + 5 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red128\green0\blue0;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 refs/heads/master} +\f0\fs24 \cf2 C4} VerticalPad 0 - Bounds - {{498.56482889398615, 124.7001679920719}, {78, 29}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo - - Color - - w - 0 - - Font - Monaco - Size - 14 - - ID - 330 - Line + LineGraphic + Head ID - 325 - Position - 0.43483179807662964 - RotationType - 0 + 1304 - Shape - Rectangle + ID + 1338 + Points + + {347.46211963688808, 323.73625172909004} + {314.31465429959388, 299.84840196011737} + Style - shadow - - Draws - NO - stroke - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 test.txt} - - Wrap - NO - - - Bounds - {{502.75775719133185, 83.579398999999995}, {69, 29}} - Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo - - Color - - w + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow 0 - Font - Monaco - Size - 14 - ID - 329 - Line + Tail ID - 326 - Position - 0.12560455501079559 - RotationType - 0 - - Shape - Rectangle - Style - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 new.txt} + 1337 - Wrap - NO Bounds - {{500.94871435301138, 38.5}, {36, 29}} + {{345.43799000000001, 321.63}, {48.157501000000003, 36}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo - Color - - w - 0 - Font - Monaco + Helvetica Size - 14 + 12 ID - 328 - Line - - ID - 327 - Position - 0.06745930016040802 - RotationType - 0 - + 1337 Shape - Rectangle + RoundRect Style + fill + + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + shadow Draws @@ -96678,22 +99407,31 @@ ree of charge, to any person ob\ stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 bak} +\f0\fs24 \cf0 C3} + VerticalPad + 0 - Wrap - NO Class @@ -96701,18 +99439,14 @@ ree of charge, to any person ob\ Head ID - 293 + 1343 ID - 327 + 1336 Points - {460.86203630895039, 69.518746133859921} - {477.38101, 53} - {743.80102999999997, 53} - {743.80102999999997, 431} - {487.80099000000001, 431} - {460.57219728118042, 403.48713983483583} + {444.07899843707719, 390.48001000001187} + {444.0788505799386, 360.12999999997021} Style @@ -96720,12 +99454,10 @@ ree of charge, to any person ob\ HeadArrow FilledArrow - HopLines - - HopType - 1 Legacy + LineType + 1 TailArrow 0 @@ -96733,7 +99465,7 @@ ree of charge, to any person ob\ Tail ID - 322 + 1335 @@ -96742,16 +99474,14 @@ ree of charge, to any person ob\ Head ID - 294 + 1339 ID - 326 + 1334 Points - {481.30099000000007, 98.079398999999995} - {726.80102999999997, 98.079398999999995} - {726.80102999999997, 280} - {708.7238586223034, 280.24821098385797} + {368.76399911848762, 231.99999999998835} + {368.76384983520933, 262.87000000002934} Style @@ -96761,6 +99491,8 @@ ree of charge, to any person ob\ FilledArrow Legacy + LineType + 1 TailArrow 0 @@ -96768,7 +99500,7 @@ ree of charge, to any person ob\ Tail ID - 322 + 1316 @@ -96777,14 +99509,14 @@ ree of charge, to any person ob\ Head ID - 295 + 1299 ID - 325 + 1306 Points - {481.19816665868575, 117.18082572804629} - {610.8268233385262, 167.81958355876466} + {264.87, 283.37} + {239.712491, 283.37} Style @@ -96794,8 +99526,6 @@ ree of charge, to any person ob\ FilledArrow Legacy - LineType - 1 TailArrow 0 @@ -96803,7 +99533,79 @@ ree of charge, to any person ob\ Tail ID - 322 + 1304 + + + + Bounds + {{267.37, 265.37}, {48.157501000000003, 36}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0 + g + 0 + r + 0.501961 + + Font + Helvetica + Size + 12 + + ID + 1304 + Shape + RoundRect + Style + + fill + + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0 + g + 0.0431373 + r + 0.85098 + + Width + 5 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red128\green0\blue0;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 C2} + VerticalPad + 0 @@ -96812,14 +99614,14 @@ ree of charge, to any person ob\ Head ID - 322 + 1302 ID - 324 + 1303 Points - {322.49999999999994, 98.079398999999995} - {383.30099000000001, 98.079398999999995} + {188.55499000000003, 283.37} + {162.39750099999998, 283.37} Style @@ -96829,8 +99631,6 @@ ree of charge, to any person ob\ FilledArrow Legacy - LineType - 1 TailArrow 0 @@ -96838,35 +99638,38 @@ ree of charge, to any person ob\ Tail ID - 316 + 1299 Bounds - {{390.30099000000001, 72.579398999999995}, {37, 14}} + {{112.73999999999999, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font - Monaco + Helvetica Size - 10 + 12 ID - 323 + 1302 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -96875,56 +99678,48 @@ ree of charge, to any person ob\ stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Align - 0 - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf0 3c4e9c} +\f0\fs24 \cf0 C0} VerticalPad 0 - Wrap - NO Bounds - {{384.80099000000001, 70.579398999999995}, {95, 55}} + {{190.05499, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 322 + 1299 Shape - Rectangle + RoundRect Style fill @@ -96932,11 +99727,11 @@ ree of charge, to any person ob\ Color b - 1 + 0.837205 g - 0.806818 + 0.959184 r - 0.813024 + 0.826135 shadow @@ -96949,14 +99744,12 @@ ree of charge, to any person ob\ Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 Width 3 @@ -96965,64 +99758,117 @@ ree of charge, to any person ob\ Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 tree} +\f0\fs24 \cf0 C1} VerticalPad 0 + + GridInfo + + HPages + 2 + KeepToScale + + Layers + - Class - LineGraphic - Head - - ID - 314 - - ID - 321 - Points - - {259.5, 127.079399} - {259.5, 207.5} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + OutlineStyle + Basic + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + 0316 + UniqueID + 24 + VPages + 2 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 553}} + Class + SolidGraphic + ID + 2 + Style + + stroke - ID - 316 + Draws + NO + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + Class LineGraphic Head ID - 311 + 1343 ID - 320 + 1355 Points - {259.5, 265.5} - {259.5, 345.92098999999996} + {258.4804291531504, 157.47659737917061} + {236.43008884479033, 157.36500399949014} Style @@ -97041,46 +99887,70 @@ ree of charge, to any person ob\ Tail ID - 314 + 1354 + Bounds + {{259.98000999999999, 142.495}, {57.940497999999998, 30.271601}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 292 + Font + Courier + Size + 12 ID - 319 - Points - - {322.49983296888445, 235.55974916048709} - {383.30115702867477, 234.65231031030868} - + 1354 + Shape + RoundRect Style + fill + + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - HopLines - - HopType - 1 - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 - Tail + Text - ID - 314 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 f42c5} + VerticalPad + 0 @@ -97089,14 +99959,14 @@ ree of charge, to any person ob\ Head ID - 293 + 1354 ID - 318 + 1353 Points - {322.49999999999994, 374.92099000000002} - {383.30099000000001, 374.92099000000002} + {288.95069790453317, 122.27160099992234} + {288.95046456063045, 140.99500000011452} Style @@ -97115,12 +99985,12 @@ ree of charge, to any person ob\ Tail ID - 311 + 1352 Bounds - {{198, 70.579398999999995}, {123, 55}} + {{254.62100000000001, 91}, {68.659797999999995, 30.271601}} Class ShapedGraphic FontInfo @@ -97128,21 +99998,19 @@ ree of charge, to any person ob\ Color b - 1 + 0.8 g - 1 + 0.8 r - 1 + 0.8 Font - Geneva - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 316 + 1352 Shape Rectangle Style @@ -97152,11 +100020,11 @@ ree of charge, to any person ob\ Color b - 0.674017 + 0.933333 g - 1 + 0.933333 r - 0.668696 + 0.933333 shadow @@ -97169,58 +100037,80 @@ ree of charge, to any person ob\ Color b - 0.163488 + 0.382653 g - 0.316327 + 0.382653 r - 0.161591 + 0.382653 - CornerRadius - 5 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 third commit} +\f0\fs20 \cf2 master} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1344 + + ID + 1348 + Points + + {175.49001000000183, 157.21081211921225} + {153.44049799999704, 157.21081211921225} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1343 + + Bounds - {{198, 209}, {123, 55}} + {{94, 142.07499999999999}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Courier Size - 14 + 12 ID - 314 + 1344 Shape - Rectangle + RoundRect Style fill @@ -97228,11 +100118,11 @@ ree of charge, to any person ob\ Color b - 0.674017 + 0.837205 g - 1 + 0.959184 r - 0.668696 + 0.826135 shadow @@ -97245,14 +100135,12 @@ ree of charge, to any person ob\ Color b - 0.163488 + 0.382653 g - 0.316327 + 0.382653 r - 0.161591 + 0.382653 - CornerRadius - 5 Width 3 @@ -97261,95 +100149,31 @@ ree of charge, to any person ob\ Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 second commit} - VerticalPad - 0 - - - - Bounds - {{204.47399999999999, 350.42099000000002}, {47.905299999999997, 14}} - Class - ShapedGraphic - FontInfo - - Font - Monaco - Size - 10 - - ID - 313 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Align - 0 - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural - -\f0\fs20 \cf0 fdf4fc} +\f0\fs24 \cf0 0b743} VerticalPad 0 - Wrap - NO Bounds - {{198, 347.42099000000002}, {123, 55}} + {{176.99001000000001, 142.07499999999999}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Courier Size - 14 + 12 ID - 311 + 1343 Shape - Rectangle + RoundRect Style fill @@ -97357,11 +100181,11 @@ ree of charge, to any person ob\ Color b - 0.674017 + 0.837205 g - 1 + 0.959184 r - 0.668696 + 0.826135 shadow @@ -97374,14 +100198,12 @@ ree of charge, to any person ob\ Color b - 0.163488 + 0.382653 g - 0.316327 + 0.382653 r - 0.161591 + 0.382653 - CornerRadius - 5 Width 3 @@ -97390,33 +100212,29 @@ ree of charge, to any person ob\ Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 first commit} +\f0\fs24 \cf0 a6b4c} VerticalPad 0 Bounds - {{617.22400000000005, 350.42099000000002}, {37, 14}} + {{250, 42}, {85.304703000000003, 13.0647}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font - Monaco + Helvetica-Bold Size - 10 + 12 ID - 310 + 6 Shape Rectangle Style @@ -97439,17 +100257,15 @@ ree of charge, to any person ob\ Text - Align - 0 Pad 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf0 83baae} +\f0\b\fs28 \cf0 git.ourcompany.com} VerticalPad 0 @@ -97458,31 +100274,15 @@ ree of charge, to any person ob\ Bounds - {{390.80099000000001, 350.42099000000002}, {37, 14}} + {{59.426299999999998, 29.378299999999999}, {457.14699999999999, 174.62199000000001}} Class ShapedGraphic - FitText - YES - Flow - Resize - FontInfo - - Font - Monaco - Size - 10 - ID - 309 + 5 Shape Rectangle Style - fill - - Draws - NO - shadow Draws @@ -97490,104 +100290,200 @@ ree of charge, to any person ob\ stroke - Draws - NO + Width + 2 - Text + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + 0322-old + UniqueID + 27 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 553}} + Class + SolidGraphic + ID + 2 + Style + + stroke - Align - 0 - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural - -\f0\fs20 \cf0 d8329f} - VerticalPad - 0 + Draws + NO - Wrap - NO + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + - Bounds - {{617.72400000000005, 161.42101}, {37, 14}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo + LineGraphic + Head + + ID + 1369 + + ID + 1374 + Points + + {365.5, 439.12593486983832} + {332.60370299999823, 439.12587384504542} + + Style + + stroke + + Color + + b + 0.362245 + g + 0.362245 + r + 0.362245 + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + Pattern + 2 + TailArrow + 0 + + + Tail + + ID + 1372 + + + + Class + LineGraphic + Head - Font - Monaco - Size - 10 + ID + 1363 ID - 308 - Shape - Rectangle + 1373 + Points + + {359, 334.13591630156833} + {332.60370299999852, 334.13587491080892} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + Color + + b + 0.362245 + g + 0.362245 + r + 0.362245 + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + Pattern + 2 + TailArrow + 0 - Text + Tail - Align - 0 - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural - -\f0\fs20 \cf0 1f7a7a} - VerticalPad - 0 + ID + 1371 - Wrap - NO Bounds - {{617.22400000000005, 256.42099000000002}, {37, 14}} + {{365.5, 432.12601000000001}, {81, 14}} Class ShapedGraphic FitText YES Flow Resize - FontInfo - - Font - Monaco - Size - 10 - ID - 307 + 1372 Shape Rectangle Style @@ -97610,17 +100506,13 @@ ree of charge, to any person ob\ Text - Align - 0 - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf0 fa49b0} +\f0\fs24 \cf0 Local Branch} VerticalPad 0 @@ -97629,22 +100521,15 @@ ree of charge, to any person ob\ Bounds - {{390.30099000000001, 208.42101}, {37, 14}} + {{359, 327.13598999999999}, {94, 14}} Class ShapedGraphic FitText YES Flow Resize - FontInfo - - Font - Monaco - Size - 10 - ID - 305 + 1371 Shape Rectangle Style @@ -97667,17 +100552,13 @@ ree of charge, to any person ob\ Text - Align - 0 - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs20 \cf0 0155eb} +\f0\fs24 \cf0 Remote Branch} VerticalPad 0 @@ -97685,101 +100566,79 @@ ree of charge, to any person ob\ NO - Bounds - {{502.77437879344052, 360.42099000000002}, {78, 29}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo - - Color - - w - 0 - - Font - Monaco - Size - 14 - - ID - 304 - Line + LineGraphic + Head ID - 300 - Position - 0.46725374460220337 - RotationType - 0 + 1365 - Shape - Rectangle + ID + 1370 + Points + + {288.95101598329973, 422.9899900002161} + {288.95060586875996, 403.26660099967398} + Style - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 test.txt} + ID + 1369 - Wrap - NO Bounds - {{500.55997132727174, 197.25451011674809}, {78, 29}} + {{246.29900000000001, 423.98998999999998}, {85.304703000000003, 30.271601}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Color - w - 0 + b + 0.8 + g + 0.8 + r + 0.8 Font - Monaco + LucidaGrande Size - 14 + 10 ID - 302 - Line - - ID - 297 - Position - 0.45016780495643616 - RotationType - 0 - + 1369 Shape Rectangle Style + fill + + Color + + b + 0.933333 + g + 0.933333 + r + 0.933333 + + shadow Draws @@ -97787,26 +100646,35 @@ ree of charge, to any person ob\ stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 test.txt} +\f0\fs20 \cf2 master} + VerticalPad + 0 - Wrap - NO Bounds - {{502.78570292604866, 241.1175018675161}, {69, 29}} + {{188, 227}, {313, 16}} Class ShapedGraphic FitText @@ -97815,31 +100683,22 @@ ree of charge, to any person ob\ Resize FontInfo - Color - - w - 0 - Font - Monaco + TheSansMonoCondensed-SemiBold Size - 14 + 13 ID - 301 - Line - - ID - 298 - Position - 0.4326038658618927 - RotationType - 0 - + 1368 Shape Rectangle Style + fill + + Draws + NO + shadow Draws @@ -97853,13 +100712,17 @@ ree of charge, to any person ob\ Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 new.txt} +\f0\b\fs26 \cf0 git clone janedoe@git.ourcompany.com:project.git} + VerticalPad + 0 Wrap NO @@ -97867,52 +100730,19 @@ ree of charge, to any person ob\ Class LineGraphic - Head - - ID - 296 - - ID - 300 - Points - - {481.30099000000007, 374.92099000000002} - {610.72400000000005, 374.92099000000002} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 293 - - - - Class - LineGraphic - Head + FontInfo - ID - 294 + Font + TheSansMonoCondensed-SemiBold + Size + 13 ID - 298 + 1367 Points - {481.26994856008611, 244.04109874004385} - {610.75504144107913, 270.80092106423268} + {160, 214} + {160, 256} Style @@ -97926,13 +100756,10 @@ ree of charge, to any person ob\ 1 TailArrow 0 + Width + 4 - Tail - - ID - 292 - Class @@ -97940,14 +100767,14 @@ ree of charge, to any person ob\ Head ID - 295 + 1360 ID - 297 + 1366 Points - {481.2699485598086, 223.80092121333749} - {610.75504144006777, 197.04109876587836} + {258.48042913274293, 386.47660113179143} + {236.43008886399488, 386.36501046807462} Style @@ -97966,36 +100793,25 @@ ree of charge, to any person ob\ Tail ID - 292 + 1365 Bounds - {{612.22400000000005, 347.42099000000002}, {95, 55}} + {{259.98000999999999, 371.495}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Courier Size - 14 + 12 ID - 296 + 1365 Shape - Rectangle + RoundRect Style fill @@ -98003,11 +100819,11 @@ ree of charge, to any person ob\ Color b - 0.738389 + 0.837205 g - 0.749244 + 0.959184 r - 1 + 0.826135 shadow @@ -98020,14 +100836,12 @@ ree of charge, to any person ob\ Color b - 0.0465446 + 0.382653 g - 0.0431119 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 Width 3 @@ -98036,94 +100850,53 @@ ree of charge, to any person ob\ Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 "version 1"} +\f0\fs24 \cf0 f42c5} VerticalPad 0 - Bounds - {{612.22400000000005, 159.42101}, {95, 55}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Color - - b - 1 - g - 1 - r - 1 - - Font - Geneva - NSKern - 0.0 - Size - 14 + ID + 1365 ID - 295 - Shape - Rectangle + 1364 + Points + + {288.95101598336112, 350.27160099978386} + {288.95060586868846, 369.99500000032606} + Style - fill - - Color - - b - 0.738389 - g - 0.749244 - r - 1 - - - shadow - - Draws - NO - stroke - Color - - b - 0.0465446 - g - 0.0431119 - r - 0.316327 - - CornerRadius - 5 - Width - 3 + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 "version 2"} - VerticalPad - 0 + ID + 1363 Bounds - {{612.22400000000005, 253.42101}, {95, 55}} + {{246.29900000000001, 319}, {85.304703000000003, 30.271601}} Class ShapedGraphic FontInfo @@ -98131,21 +100904,19 @@ ree of charge, to any person ob\ Color b - 1 + 0.8 g - 1 + 0.8 r - 1 + 0.8 Font - Geneva - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 294 + 1363 Shape Rectangle Style @@ -98155,11 +100926,11 @@ ree of charge, to any person ob\ Color b - 0.738389 + 0.933333 g - 0.749244 + 0.933333 r - 1 + 0.933333 shadow @@ -98172,58 +100943,80 @@ ree of charge, to any person ob\ Color b - 0.0465446 + 0.382653 g - 0.0431119 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 "new file"} +\f0\fs20 \cf2 origin/master} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1361 + + ID + 1362 + Points + + {175.4900100000026, 386.21082407202107} + {153.44049799999604, 386.21082407202107} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1360 + + Bounds - {{384.80099000000001, 347.42099000000002}, {95, 55}} + {{94, 371.07501000000002}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Courier Size - 14 + 12 ID - 293 + 1361 Shape - Rectangle + RoundRect Style fill @@ -98231,11 +101024,11 @@ ree of charge, to any person ob\ Color b - 1 + 0.837205 g - 0.806818 + 0.959184 r - 0.813024 + 0.826135 shadow @@ -98248,14 +101041,12 @@ ree of charge, to any person ob\ Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 Width 3 @@ -98264,42 +101055,31 @@ ree of charge, to any person ob\ Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 tree} +\f0\fs24 \cf0 0b743} VerticalPad 0 Bounds - {{384.80099000000001, 206.42101}, {95, 55}} + {{176.99001000000001, 371.07501000000002}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Courier Size - 14 + 12 ID - 292 + 1360 Shape - Rectangle + RoundRect Style fill @@ -98307,11 +101087,11 @@ ree of charge, to any person ob\ Color b - 1 + 0.837205 g - 0.806818 + 0.959184 r - 0.813024 + 0.826135 shadow @@ -98324,14 +101104,12 @@ ree of charge, to any person ob\ Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 Width 3 @@ -98340,127 +101118,79 @@ ree of charge, to any person ob\ Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 tree} +\f0\fs24 \cf0 a6b4c} VerticalPad 0 - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - - Lock - NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 1 - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - example one 6 - UniqueID - 69 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 553}} - Class - SolidGraphic - ID - 2 - Style - stroke + Class + LineGraphic + Head - Draws - NO + ID + 1343 + + ID + 1355 + Points + + {258.4804291531504, 157.47659737917061} + {236.43008884479033, 157.36500399949014} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1354 - - BaseZoom - 0 - CanvasOrigin - {0, 0} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - Bounds - {{81.011002000000005, 135.90199000000001}, {76, 22}} + {{259.98000999999999, 142.495}, {57.940497999999998, 30.271601}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font Courier Size - 18 + 12 ID - 67 + 1354 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -98469,36 +101199,46 @@ ree of charge, to any person ob\ stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 98ca9..} +\f0\fs24 \cf0 f42c5} VerticalPad 0 - Wrap - NO Class LineGraphic + Head + + ID + 1354 + ID - 321 + 1353 Points - {204.75200000000001, 216.95099999999999} - {264.75200999999998, 217.05499} + {288.95069790453317, 122.27160099992234} + {288.95046456063045, 140.99500000011452} Style @@ -98512,37 +101252,52 @@ ree of charge, to any person ob\ 1 TailArrow 0 - Width - 4 + Tail + + ID + 1352 + Bounds - {{124.497, 273}, {37, 14}} + {{254.62100000000001, 91}, {68.659797999999995, 30.271601}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Courier + LucidaGrande Size - 12 + 10 ID - 287 + 1352 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.933333 + g + 0.933333 + r + 0.933333 + shadow @@ -98551,91 +101306,72 @@ ree of charge, to any person ob\ stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 2 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 Scott} +\f0\fs20 \cf2 master} VerticalPad 0 - Wrap - NO - Bounds - {{124.497, 243}, {37, 14}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo + LineGraphic + Head - Font - Courier - Size - 12 + ID + 1344 ID - 286 - Shape - Rectangle + 1348 + Points + + {175.49001000000183, 157.21081211921225} + {153.44049799999704, 157.21081211921225} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 Scott} - VerticalPad - 0 + ID + 1343 - Wrap - NO Bounds - {{125.497, 215}, {37, 14}} + {{94, 142.07499999999999}, {57.940497999999998, 30.271601}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font @@ -98644,15 +101380,22 @@ ree of charge, to any person ob\ 12 ID - 284 + 1344 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -98661,139 +101404,61 @@ ree of charge, to any person ob\ stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 92ec2} +\f0\fs24 \cf0 0b743} VerticalPad 0 - Wrap - NO Bounds - {{51.511001999999998, 296.17700000000002}, {135, 11}} + {{176.99001000000001, 142.07499999999999}, {57.940497999999998, 30.271601}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font - Monaco + Courier Size - 8 + 12 ID - 283 + 1343 Shape - Rectangle + RoundRect Style fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Align - 0 - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural - -\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 -initial commit of my project} - VerticalPad - 0 - - Wrap - NO - - - Class - LineGraphic - ID - 282 - Points - - {116.004, 293.82299999999998} - {116.004, 207.67699999999999} - - Style - - stroke Color b - 0.382653 + 0.837205 g - 0.382653 + 0.959184 r - 0.382653 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - - - - - Bounds - {{52.511001999999998, 264.31}, {56, 26.1462}} - Class - ShapedGraphic - FontInfo - - Font - GillSans - Size - 14 - - ID - 281 - Shape - Rectangle - Style - - fill - - Draws - NO + 0.826135 + shadow @@ -98802,41 +101467,46 @@ initial commit of my project} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 committer} +\f0\fs24 \cf0 a6b4c} VerticalPad 0 - Wrap - NO Bounds - {{46.511001999999998, 236}, {56, 26.1462}} + {{245.34700000000001, 278.42401000000001}, {85.304703000000003, 13.0647}} Class ShapedGraphic FontInfo Font - GillSans + Helvetica-Bold Size - 14 + 12 ID - 280 + 23 Shape Rectangle Style @@ -98863,11 +101533,11 @@ initial commit of my project} 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 author} +\f0\b\fs28 \cf0 My Computer} VerticalPad 0 @@ -98876,18 +101546,41 @@ initial commit of my project} Bounds - {{41.511001999999998, 207.85400000000001}, {56, 26.1462}} + {{59.426299999999998, 268}, {457.14699999999999, 203}} + Class + ShapedGraphic + ID + 22 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 2 + + + + + Bounds + {{250, 42}, {85.304703000000003, 13.0647}} Class ShapedGraphic FontInfo Font - GillSans + Helvetica-Bold Size - 14 + 12 ID - 278 + 6 Shape Rectangle Style @@ -98914,11 +101607,11 @@ initial commit of my project} 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 tree} +\f0\b\fs28 \cf0 git.ourcompany.com} VerticalPad 0 @@ -98926,82 +101619,128 @@ initial commit of my project} NO + Bounds + {{59.426299999999998, 29.378299999999999}, {457.14699999999999, 174.62199000000001}} Class - LineGraphic + ShapedGraphic ID - 277 - Points - - {195.52600000000001, 294} - {45.995998, 294} - + 5 + Shape + Rectangle Style + shadow + + Draws + NO + stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - HeadArrow - 0 - Legacy - - TailArrow - 0 Width 2 + + GridInfo + + HPages + 1 + KeepToScale + + Layers + - Class - LineGraphic - ID - 276 - Points - - {197.50399999999999, 264.31} - {47.975101000000002, 264.31} - - Style + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + 0322 + UniqueID + 28 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 553}} + Class + SolidGraphic + ID + 2 + Style + + stroke - stroke - - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 2 - + Draws + NO + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + Class LineGraphic + Head + + ID + 1380 + ID - 274 + 1385 Points - {195.52600000000001, 235} - {45.995998, 235} + {542, 157.21091516476878} + {485.41049799997012, 157.21084073401704} Style @@ -99010,306 +101749,175 @@ initial commit of my project} Color b - 0.382653 + 0.489796 g - 0.382653 + 0.489796 r - 0.382653 + 0.489796 HeadArrow - 0 + FilledArrow Legacy + LineType + 1 + Pattern + 2 TailArrow 0 - Width - 2 + Tail + + ID + 1384 + + Bounds + {{542, 150.21100000000001}, {129, 14}} Class - Group - Graphics - + ShapedGraphic + FitText + YES + Flow + Resize + ID + 1384 + Shape + Rectangle + Style + + fill - Bounds - {{156.50399999999999, 174.631}, {27, 26.1462}} - Class - ShapedGraphic - FontInfo - - Color - - b - 0.489796 - g - 0.489796 - r - 0.489796 - - Font - GillSans - Size - 18 - - ID - 268 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs36 \cf2 size} - VerticalPad - 0 - - Wrap + Draws NO + shadow - Bounds - {{59.504002, 174.631}, {56, 26.1462}} - Class - ShapedGraphic - FontInfo - - Font - GillSans-Bold - Size - 18 - - ID - 269 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\b\fs36 \cf0 commit} - VerticalPad - 0 - - Wrap + Draws NO + stroke - Class - LineGraphic - ID - 270 - Points - - {142.50399999999999, 169.87700000000001} - {142.50399999999999, 207.90799999999999} - - Style - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Class - LineGraphic - ID - 271 - Points - - {197.50399999999999, 207.90799999999999} - {43.504002, 207.90799999999999} - - Style - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Bounds - {{43.504002, 167.5}, {154, 154.5}} - Class - ShapedGraphic - FontInfo - - Color - - b - 1 - g - 1 - r - 1 - - Font - Geneva - NSKern - 0.0 - Size - 14 - - ID - 272 - Shape - Rectangle - Style - - fill - - Color - - b - 0.757488 - g - 1 - r - 0.738389 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - CornerRadius - 5 - Width - 3 - - - Text - - VerticalPad - 0 - + Draws + NO + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Someone else pushes} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + Head + + ID + 1354 + + ID + 1382 + Points + + {341.47041915490587, 157.36500671353298} + {319.42008888856691, 157.47660228051876} + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1379 + + + + Class + LineGraphic + Head + + ID + 1379 + ID - 267 + 1381 + Points + + {424.47000000000185, 157.21081211258436} + {402.41049799999712, 157.21081211258436} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1380 + Bounds - {{531.50402999999994, 235.13999999999999}, {154, 66}} + {{425.97000000000003, 142.07499999999999}, {57.940497999999998, 30.271601}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font - Monaco + Courier Size - 8 + 12 ID - 320 + 1380 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -99318,61 +101926,61 @@ initial commit of my project} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Align - 0 - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 -The MIT License\ -\ -Copyright (c) <year> <copyright \ -\ -Permission is hereby granted, \ -} +\f0\fs24 \cf0 190a3} VerticalPad 0 - Wrap - NO Bounds - {{566.50402999999994, 170.13999999999999}, {76, 22}} + {{342.97000000000003, 142.07499999999999}, {57.940497999999998, 30.271601}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font Courier Size - 18 + 12 ID - 319 + 1379 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -99381,310 +101989,194 @@ Permission is hereby granted, \ stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 911e7..} +\f0\fs24 \cf0 31b8e} VerticalPad 0 - Wrap - NO Class - Group - Graphics + LineGraphic + Head + + ID + 1375 + + ID + 1378 + Points + {424.47000000000264, 386.21082406427922} + {402.41049799999615, 386.21082406427922} + + Style + + stroke - Bounds - {{640.50402999999994, 202.709}, {27, 16.753799000000001}} - Class - ShapedGraphic - FontInfo - - Color - - b - 0.489796 - g - 0.489796 - r - 0.489796 - - Font - GillSans - Size - 18 - - ID - 314 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs36 \cf2 size} - VerticalPad - 0 - - Wrap - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + Tail + + ID + 1376 + + + + Class + LineGraphic + Head + + ID + 1365 + + ID + 1377 + Points + + {341.47041913329542, 386.3650127397064} + {319.42008890569707, 386.47660543064802} + + Style + + stroke - Bounds - {{536.50402999999994, 203.709}, {40, 16.753799000000001}} - Class - ShapedGraphic - FontInfo - - Font - GillSans - Size - 18 - - ID - 315 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\b\fs36 \cf0 blob} - VerticalPad - 0 - - Wrap - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + Tail + + ID + 1375 + + + + Bounds + {{425.97000000000003, 371.07501000000002}, {57.940497999999998, 30.271601}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1376 + Shape + RoundRect + Style + + fill - Class - LineGraphic - ID - 316 - Points - - {626.50402999999994, 196.66299000000001} - {626.50402999999994, 227.03200000000001} - - Style + Color - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow - Class - LineGraphic - ID - 317 - Points - - {681.50402999999994, 229.03200000000001} - {527.50402999999994, 229.03200000000001} - - Style - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - + Draws + NO + stroke - Bounds - {{527.50402999999994, 195.13999999999999}, {154, 99}} - Class - ShapedGraphic - FontInfo - - Color - - b - 1 - g - 1 - r - 1 - - Font - Geneva - NSKern - 0.0 - Size - 14 - - ID - 318 - Shape - Rectangle - Style - - fill - - Color - - b - 0.749742 - g - 0.760597 - r - 1 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - CornerRadius - 5 - Width - 3 - - - Text + Color - VerticalPad - 0 + b + 0.382653 + g + 0.382653 + r + 0.382653 + Width + 3 - - ID - 313 + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 893cf} + VerticalPad + 0 + Bounds - {{531.50402999999994, 386}, {87, 77}} + {{342.97000000000003, 371.07501000000002}, {57.940497999999998, 30.271601}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font - Monaco + Courier Size - 8 + 12 ID - 312 + 1375 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -99693,62 +102185,105 @@ Permission is hereby granted, \ stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Align - 0 - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 -require 'rubygems'\ -require 'pp'\ -\ -module Test\ - module Tester\ - \ -} +\f0\fs24 \cf0 a38de} VerticalPad 0 - Wrap - NO + + + Class + LineGraphic + Head + + ID + 1376 + + ID + 1370 + Points + + {454.94031307714482, 422.98001000000153} + {454.9402776126085, 402.84661099999789} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1369 + Bounds - {{566.50402999999994, 321}, {76, 22}} + {{412.28798999999998, 423.98000999999999}, {85.304703000000003, 30.271601}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Courier + LucidaGrande Size - 18 + 10 ID - 311 + 1369 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.933333 + g + 0.933333 + r + 0.933333 + shadow @@ -99757,293 +102292,144 @@ module Test\ stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 2 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 cba0a..} +\f0\fs20 \cf2 master} VerticalPad 0 - Wrap - NO Class - Group - Graphics + LineGraphic + Head + + ID + 1360 + + ID + 1366 + Points + {258.48042913274293, 386.47660113179143} + {236.43008886399488, 386.36501046807462} + + Style + + stroke - Bounds - {{640.50402999999994, 353.56900000000002}, {27, 16.753799000000001}} - Class - ShapedGraphic - FontInfo - - Color - - b - 0.489796 - g - 0.489796 - r - 0.489796 - - Font - GillSans - Size - 18 - - ID - 306 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs36 \cf2 size} - VerticalPad - 0 - - Wrap - NO - - - Bounds - {{536.50402999999994, 354.56900000000002}, {40, 16.753799000000001}} - Class - ShapedGraphic - FontInfo - - Font - GillSans - Size - 18 - - ID - 307 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\b\fs36 \cf0 blob} - VerticalPad - 0 - - Wrap - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + Tail + + ID + 1365 + + + + Bounds + {{259.98000999999999, 371.495}, {57.940497999999998, 30.271601}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1365 + Shape + RoundRect + Style + + fill - Class - LineGraphic - ID - 308 - Points - - {626.50402999999994, 347.52301} - {626.50402999999994, 377.892} - - Style + Color - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow - Class - LineGraphic - ID - 309 - Points - - {681.50402999999994, 379.892} - {527.50402999999994, 379.892} - - Style - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - + Draws + NO + stroke - Bounds - {{527.50402999999994, 346}, {154, 99}} - Class - ShapedGraphic - FontInfo - - Color - - b - 1 - g - 1 - r - 1 - - Font - Geneva - NSKern - 0.0 - Size - 14 - - ID - 310 - Shape - Rectangle - Style - - fill - - Color - - b - 0.749742 - g - 0.760597 - r - 1 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - CornerRadius - 5 - Width - 3 - - - Text + Color - VerticalPad - 0 + b + 0.382653 + g + 0.382653 + r + 0.382653 + Width + 3 - - ID - 305 + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 f42c5} + VerticalPad + 0 + Class LineGraphic + Head + + ID + 1365 + ID - 304 + 1364 Points - {454.50400000000002, 247.20099999999999} - {514.50402999999994, 247.30499} + {288.95101598336112, 350.27160099978386} + {288.95060586868846, 369.99500000032606} Style @@ -100057,54 +102443,100 @@ module Test\ 1 TailArrow 0 - Width - 4 + Tail + + ID + 1363 + + Bounds + {{246.29900000000001, 319}, {85.304703000000003, 30.271601}} Class - LineGraphic + ShapedGraphic FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Helvetica + LucidaGrande Size - 12 + 10 ID - 303 - Points - - {454.50400000000002, 292.95598999999999} - {514.50402999999994, 366} - + 1363 + Shape + Rectangle Style + fill + + Color + + b + 0.933333 + g + 0.933333 + r + 0.933333 + + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + Width - 4 + 2 + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs20 \cf2 origin/master} + VerticalPad + 0 + Class LineGraphic + Head + + ID + 1361 + ID - 302 + 1362 Points - {454.50400000000002, 208.98199} - {514.50402999999994, 150.90199000000001} + {175.4900100000026, 386.21082407202107} + {153.44049799999604, 386.21082407202107} Style @@ -100118,37 +102550,43 @@ module Test\ 1 TailArrow 0 - Width - 4 + Tail + + ID + 1360 + Bounds - {{527.50402999999994, 91.902396999999993}, {135, 66}} + {{94, 371.07501000000002}, {57.940497999999998, 30.271601}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font - Monaco + Courier Size - 8 + 12 ID - 301 + 1361 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -100157,61 +102595,61 @@ module Test\ stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Align - 0 - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 -== Testing Library\ -\ -This library is used to test\ -Ruby projects\ - \ -} +\f0\fs24 \cf0 0b743} VerticalPad 0 - Wrap - NO Bounds - {{562.50402999999994, 26.902398999999999}, {76, 22}} + {{176.99001000000001, 371.07501000000002}, {57.940497999999998, 30.271601}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font Courier Size - 18 + 12 ID - 236 + 1360 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -100220,293 +102658,277 @@ Ruby projects\ stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 5b1d3..} +\f0\fs24 \cf0 a6b4c} VerticalPad 0 - Wrap - NO Class - Group - Graphics + LineGraphic + Head + + ID + 1343 + + ID + 1355 + Points + {258.4804291531504, 157.47659737917061} + {236.43008884479033, 157.36500399949014} + + Style + + stroke - Bounds - {{636.50402999999994, 59.471401}, {27, 16.753799000000001}} - Class - ShapedGraphic - FontInfo - - Color - - b - 0.489796 - g - 0.489796 - r - 0.489796 - - Font - GillSans - Size - 18 - - ID - 231 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1354 + + + + Bounds + {{259.98000999999999, 142.495}, {57.940497999999998, 30.271601}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1354 + Shape + RoundRect + Style + + fill + + Color - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs36 \cf2 size} - VerticalPad - 0 + b + 0.837205 + g + 0.959184 + r + 0.826135 - Wrap + + shadow + + Draws NO + stroke - Bounds - {{532.50402999999994, 60.471401}, {40, 16.753799000000001}} - Class - ShapedGraphic - FontInfo - - Font - GillSans - Size - 18 - - ID - 232 - Shape - Rectangle - Style + Color - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - + b + 0.382653 + g + 0.382653 + r + 0.382653 - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} + Width + 3 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\b\fs36 \cf0 blob} - VerticalPad - 0 - - Wrap - NO - +\f0\fs24 \cf0 f42c5} + VerticalPad + 0 + + + + Class + LineGraphic + Head + + ID + 1380 + + ID + 1353 + Points + + {454.94000048884902, 121.27160099997614} + {454.94013386393237, 140.57500000003589} + + Style + + stroke - Class - LineGraphic - ID - 233 - Points - - {622.50402999999994, 53.425400000000003} - {622.50402999999994, 83.794403000000003} - - Style - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + Tail + + ID + 1352 + + + + Bounds + {{420.60998999999998, 90}, {68.659797999999995, 30.271601}} + Class + ShapedGraphic + FontInfo + + Color - Class - LineGraphic - ID - 234 - Points - - {677.50402999999994, 85.794403000000003} - {523.50402999999994, 85.794403000000003} - - Style - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - + b + 0.8 + g + 0.8 + r + 0.8 - - Bounds - {{523.50402999999994, 51.902400999999998}, {154, 99}} - Class - ShapedGraphic - FontInfo - - Color - - b - 1 - g - 1 - r - 1 - - Font - Geneva - NSKern - 0.0 - Size - 14 - - ID - 235 - Shape - Rectangle - Style + Font + LucidaGrande + Size + 10 + + ID + 1352 + Shape + Rectangle + Style + + fill + + Color - fill - - Color - - b - 0.749742 - g - 0.760597 - r - 1 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - CornerRadius - 5 - Width - 3 - + b + 0.933333 + g + 0.933333 + r + 0.933333 - Text + + shadow + + Draws + NO + + stroke + + Color - VerticalPad - 0 + b + 0.382653 + g + 0.382653 + r + 0.382653 + Width + 2 - + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs20 \cf2 master} + VerticalPad + 0 + + + + Class + LineGraphic + Head + + ID + 1344 + ID - 230 + 1348 + Points + + {175.49001000000183, 157.21081211921225} + {153.44049799999704, 157.21081211921225} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1343 + Bounds - {{367.73498999999998, 256.05498999999998}, {51, 14}} + {{94, 142.07499999999999}, {57.940497999999998, 30.271601}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font @@ -100515,15 +102937,22 @@ Ruby projects\ 12 ID - 133 + 1344 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -100532,36 +102961,37 @@ Ruby projects\ stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 LICENSE} +\f0\fs24 \cf0 0b743} VerticalPad 0 - Wrap - NO Bounds - {{367.73498999999998, 281.19501000000002}, {51, 14}} + {{176.99001000000001, 142.07499999999999}, {57.940497999999998, 30.271601}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font @@ -100570,15 +103000,22 @@ Ruby projects\ 12 ID - 132 + 1343 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -100587,45 +103024,46 @@ Ruby projects\ stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 test.rb} +\f0\fs24 \cf0 a6b4c} VerticalPad 0 - Wrap - NO Bounds - {{369.23498999999998, 232.82899}, {44, 14}} + {{245.34700000000001, 278.42401000000001}, {85.304703000000003, 13.0647}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font - Courier + Helvetica-Bold Size 12 ID - 129 + 23 Shape Rectangle Style @@ -100652,11 +103090,11 @@ Ruby projects\ 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 README} +\f0\b\fs28 \cf0 My Computer} VerticalPad 0 @@ -100665,22 +103103,41 @@ Ruby projects\ Bounds - {{322.76501000000002, 256}, {37, 14}} + {{59.426299999999998, 268}, {457.14699999999999, 203}} + Class + ShapedGraphic + ID + 22 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 2 + + + + + Bounds + {{250, 42}, {85.304703000000003, 13.0647}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font - Courier + Helvetica-Bold Size 12 ID - 121 + 6 Shape Rectangle Style @@ -100707,11 +103164,11 @@ Ruby projects\ 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 911e7} +\f0\b\fs28 \cf0 git.ourcompany.com} VerticalPad 0 @@ -100720,13 +103177,183 @@ Ruby projects\ Bounds - {{321.76501000000002, 281.14001000000002}, {37, 14}} + {{59.426299999999998, 29.378299999999999}, {457.14699999999999, 174.62199000000001}} Class ShapedGraphic - FitText + ID + 5 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 2 + + + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print YES - Flow - Resize + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + 0323 + UniqueID + 29 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 553}} + Class + SolidGraphic + ID + 2 + Style + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + + + Class + LineGraphic + ID + 1389 + Points + + {339.97042036186906, 386.36523849282418} + {317.92099000000002, 386.47699} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1386 + + + + Class + LineGraphic + Head + + ID + 1386 + + ID + 1388 + Points + + {422.97000000000264, 386.21082406427922} + {400.91049799999615, 386.21082406427922} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1387 + + + + Bounds + {{424.47000000000003, 371.07501000000002}, {57.940497999999998, 30.271601}} + Class + ShapedGraphic FontInfo Font @@ -100735,15 +103362,22 @@ Ruby projects\ 12 ID - 120 + 1387 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -100752,39 +103386,67 @@ Ruby projects\ stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 cba0a} +\f0\fs24 \cf0 190a3} VerticalPad 0 - Wrap - NO + Bounds + {{341.47000000000003, 371.07501000000002}, {57.940497999999998, 30.271601}} Class - LineGraphic + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + ID - 117 - Points - - {364, 304.84697999999997} - {364, 224.84700000000001} - + 1386 + Shape + RoundRect Style + fill + + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + + shadow + + Draws + NO + stroke Color @@ -100796,18 +103458,26 @@ Ruby projects\ r 0.382653 - HeadArrow - 0 - Legacy - - TailArrow - 0 + Width + 3 + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 31b8e} + VerticalPad + 0 + Bounds - {{322.76501000000002, 232.774}, {37, 14}} + {{207, 228}, {91, 16}} Class ShapedGraphic FitText @@ -100817,12 +103487,12 @@ Ruby projects\ FontInfo Font - Courier + TheSansMonoCondensed-SemiBold Size - 12 + 13 ID - 116 + 1368 Shape Rectangle Style @@ -100849,11 +103519,11 @@ Ruby projects\ 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 5b1d3} +\f0\b\fs26 \cf0 git fetch origin} VerticalPad 0 @@ -100864,107 +103534,128 @@ Ruby projects\ Class LineGraphic ID - 94 + 1367 Points - {318, 304.84697999999997} - {318, 224.774} + {160, 214} + {160, 256} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 + Width + 4 - Bounds - {{267, 249.92699999999999}, {56, 26.1462}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Font - GillSans - Size - 14 + ID + 1354 ID - 91 - Shape - Rectangle + 1382 + Points + + {341.47041915490587, 157.36500671353298} + {319.42008888856691, 157.47660228051876} + Style - fill - - Draws - NO - - shadow + stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + Tail + + ID + 1379 + + + + Class + LineGraphic + Head + + ID + 1379 + + ID + 1381 + Points + + {424.47000000000185, 157.21081211258436} + {402.41049799999712, 157.21081211258436} + + Style + stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 blob} - VerticalPad - 0 + ID + 1380 - Wrap - NO Bounds - {{265.39699999999999, 274.99399}, {56, 26.1462}} + {{425.97000000000003, 142.07499999999999}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo Font - GillSans + Courier Size - 14 + 12 ID - 90 + 1380 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -100973,49 +103664,61 @@ Ruby projects\ stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 blob} +\f0\fs24 \cf0 190a3} VerticalPad 0 - Wrap - NO Bounds - {{267, 226.774}, {56, 26.1462}} + {{342.97000000000003, 142.07499999999999}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo Font - GillSans + Courier Size - 14 + 12 ID - 300 + 1379 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -101024,73 +103727,137 @@ Ruby projects\ stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 blob} +\f0\fs24 \cf0 31b8e} VerticalPad 0 - Wrap - NO Class LineGraphic + Head + + ID + 1375 + ID - 79 + 1378 Points - {424.51501000000002, 274.99399} - {274.98498999999998, 274.99399} + {422.97000000000185, 441.62580211258444} + {400.91049799999712, 441.62580211258444} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 - Width - 2 + Tail + + ID + 1376 + Class LineGraphic + Head + + ID + 1365 + ID - 78 + 1377 Points - {424, 251.994} - {274.47100999999998, 251.994} + {347.2050715245586, 425.94511166533778} + {312.18543682366902, 402.31147920299696} Style + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1375 + + + + Bounds + {{424.47000000000003, 426.48998999999998}, {57.940497999999998, 30.271601}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1376 + Shape + RoundRect + Style + + fill + + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + + shadow + + Draws + NO + stroke Color @@ -101102,43 +103869,52 @@ Ruby projects\ r 0.382653 - HeadArrow - 0 - Legacy - - TailArrow - 0 Width - 2 + 3 + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 893cf} + VerticalPad + 0 + Bounds - {{311, 168.84700000000001}, {76, 22}} + {{341.47000000000003, 426.48998999999998}, {57.940497999999998, 30.271601}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font Courier Size - 18 + 12 ID - 12 + 1375 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -101147,62 +103923,105 @@ Ruby projects\ stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 92ec2..} +\f0\fs24 \cf0 a38de} VerticalPad 0 - Wrap - NO + + + Class + LineGraphic + Head + + ID + 1376 + + ID + 1370 + Points + + {454.50355303215264, 480.9053661949971} + {453.89056799488566, 458.26104170649614} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1369 + Bounds - {{379.73498999999998, 195.95099999999999}, {27, 22}} + {{412.28798999999998, 481.90499999999997}, {85.304703000000003, 30.271601}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Color b - 0.489796 + 0.8 g - 0.489796 + 0.8 r - 0.489796 + 0.8 Font - GillSans + LucidaGrande Size - 18 + 10 ID - 27 + 1369 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.933333 + g + 0.933333 + r + 0.933333 + shadow @@ -101211,53 +104030,96 @@ Ruby projects\ stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 2 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf2 size} +\f0\fs20 \cf2 master} VerticalPad 0 - Wrap - NO + + + Class + LineGraphic + Head + + ID + 1360 + + ID + 1366 + Points + + {258.48042913274293, 386.47660113179143} + {236.43008886399488, 386.36501046807462} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1365 + Bounds - {{283.5, 196.84700000000001}, {39, 22}} + {{259.98000999999999, 371.495}, {57.940497999999998, 30.271601}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font - GillSans-Bold + Courier Size - 18 + 12 ID - 28 + 1365 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -101266,292 +104128,105 @@ Ruby projects\ stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\b\fs36 \cf0 tree} +\f0\fs24 \cf0 f42c5} VerticalPad 0 - Wrap - NO Class - Group - Graphics - - - Class - LineGraphic - ID - 30 - Points - - {371, 195.55499} - {371, 222.87800999999999} - - Style - - stroke - - Color - - b - 0.316327 - g - 0.139073 - r - 0.109175 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Class - LineGraphic - ID - 31 - Points - - {426, 222.87800999999999} - {272, 222.87800999999999} - - Style - - stroke - - Color - - b - 0.316327 - g - 0.139073 - r - 0.109175 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Bounds - {{272, 193.84700000000001}, {154, 111}} - Class - ShapedGraphic - FontInfo - - Color - - b - 1 - g - 1 - r - 1 - - Font - Geneva - NSKern - 0.0 - Size - 14 - - ID - 32 - Shape - Rectangle - Style - - fill - - Color - - b - 1 - g - 0.806818 - r - 0.813024 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.316327 - g - 0.139073 - r - 0.109175 - - CornerRadius - 5 - Width - 3 - - - Text - - VerticalPad - 0 - - - + LineGraphic + Head + + ID + 1387 + ID - 29 - Magnets + 1364 + Points - {1, 1} - {1, -1} - {-1, -1} - {-1, 1} + {453.44031450479417, 346.93160099999864} + {453.44027662235476, 369.57501000000212} - - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - - Lock - NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 1 - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - 0301 - UniqueID - 78 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 553}} - Class - SolidGraphic - ID - 2 - Style - - stroke + Style - Draws - NO + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1363 - - BaseZoom - 0 - CanvasOrigin - {0, 0} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - Bounds - {{113.486, 167.5}, {37, 14}} + {{410.78798999999998, 315.66000000000003}, {85.304703000000003, 30.271601}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Courier + LucidaGrande Size - 12 + 10 ID - 300 + 1363 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.933333 + g + 0.933333 + r + 0.933333 + shadow @@ -101560,26 +104235,31 @@ Ruby projects\ stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 2 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 92ec2} +\f0\fs20 \cf2 origin/master} VerticalPad 0 - Wrap - NO Class @@ -101587,14 +104267,14 @@ Ruby projects\ Head ID - 296 + 1361 ID - 297 + 1362 Points - {591.65301999999997, 278} - {591.88204694128603, 323.50001900216131} + {175.4900100000026, 386.21082407202107} + {153.44049799999604, 386.21082407202107} Style @@ -101608,38 +104288,93 @@ Ruby projects\ 1 TailArrow 0 - Width - 4 + Tail + + ID + 1360 + Bounds - {{515.02801999999997, 325}, {154, 55}} + {{94, 371.07501000000002}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo - Color + Font + Courier + Size + 12 + + ID + 1361 + Shape + RoundRect + Style + + fill - b - 1 - g - 1 - r - 1 + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0b743} + VerticalPad + 0 + + + + Bounds + {{176.99001000000001, 371.07501000000002}, {57.940497999999998, 30.271601}} + Class + ShapedGraphic + FontInfo + Font - Geneva - NSKern - 0.0 + Courier Size - 14 + 12 ID - 296 + 1360 Shape - Rectangle + RoundRect Style fill @@ -101647,11 +104382,11 @@ Ruby projects\ Color b - 1 + 0.837205 g - 0.806818 + 0.959184 r - 0.813024 + 0.826135 shadow @@ -101664,14 +104399,12 @@ Ruby projects\ Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 Width 3 @@ -101680,11 +104413,11 @@ Ruby projects\ Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 Snapshot C} +\f0\fs24 \cf0 a6b4c} VerticalPad 0 @@ -101695,14 +104428,14 @@ Ruby projects\ Head ID - 294 + 1343 ID - 295 + 1355 Points - {346.88198999999997, 278} - {347.11101694128604, 323.50001900216131} + {258.4804291531504, 157.47659737917061} + {236.43008884479033, 157.36500399949014} Style @@ -101716,38 +104449,30 @@ Ruby projects\ 1 TailArrow 0 - Width - 4 + Tail + + ID + 1354 + Bounds - {{270.25698999999997, 325}, {154, 55}} + {{259.98000999999999, 142.495}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Courier Size - 14 + 12 ID - 294 + 1354 Shape - Rectangle + RoundRect Style fill @@ -101755,11 +104480,11 @@ Ruby projects\ Color b - 1 + 0.837205 g - 0.806818 + 0.959184 r - 0.813024 + 0.826135 shadow @@ -101772,14 +104497,12 @@ Ruby projects\ Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 Width 3 @@ -101788,11 +104511,11 @@ Ruby projects\ Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 Snapshot B} +\f0\fs24 \cf0 f42c5} VerticalPad 0 @@ -101803,14 +104526,14 @@ Ruby projects\ Head ID - 292 + 1380 ID - 293 + 1353 Points - {109.88944281505621, 277.99998099301655} - {110.11849891042218, 323.50001900945978} + {454.94000048884902, 121.27160099997614} + {454.94013386393237, 140.57500000003589} Style @@ -101824,19 +104547,17 @@ Ruby projects\ 1 TailArrow 0 - Width - 4 Tail ID - 44 + 1352 Bounds - {{33.264499999999998, 325}, {154, 55}} + {{420.60998999999998, 90}, {68.659797999999995, 30.271601}} Class ShapedGraphic FontInfo @@ -101844,21 +104565,19 @@ Ruby projects\ Color b - 1 + 0.8 g - 1 + 0.8 r - 1 + 0.8 Font - Geneva - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 292 + 1352 Shape Rectangle Style @@ -101868,11 +104587,11 @@ Ruby projects\ Color b - 1 + 0.933333 g - 0.806818 + 0.933333 r - 0.813024 + 0.933333 shadow @@ -101885,27 +104604,25 @@ Ruby projects\ Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 Snapshot A} +\f0\fs20 \cf2 master} VerticalPad 0 @@ -101916,51 +104633,14 @@ Ruby projects\ Head ID - 251 - - ID - 289 - Points - - {514.52099999999996, 199.25} - {429.75698999999997, 199.25} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - Width - 4 - - - Tail - - ID - 272 - - - - Class - LineGraphic - Head - - ID - 44 + 1344 ID - 288 + 1348 Points - {272.75698999999997, 199.25} - {187.99299999999999, 199.25} + {175.49001000000183, 157.21081211921225} + {153.44049799999704, 157.21081211921225} Style @@ -101974,25 +104654,19 @@ Ruby projects\ 1 TailArrow 0 - Width - 4 Tail ID - 251 + 1343 Bounds - {{597.01397999999995, 231.5}, {37, 14}} + {{94, 142.07499999999999}, {57.940497999999998, 30.271601}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font @@ -102001,15 +104675,22 @@ Ruby projects\ 12 ID - 287 + 1344 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -102018,36 +104699,37 @@ Ruby projects\ stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 Scott} +\f0\fs24 \cf0 0b743} VerticalPad 0 - Wrap - NO Bounds - {{597.01397999999995, 210.5}, {37, 14}} + {{176.99001000000001, 142.07499999999999}, {57.940497999999998, 30.271601}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font @@ -102056,15 +104738,22 @@ Ruby projects\ 12 ID - 286 + 1343 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -102073,45 +104762,46 @@ Ruby projects\ stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 Scott} +\f0\fs24 \cf0 a6b4c} VerticalPad 0 - Wrap - NO Bounds - {{597.01397999999995, 189.5}, {37, 14}} + {{245.34700000000001, 278.42401000000001}, {85.304703000000003, 13.0647}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font - Courier + Helvetica-Bold Size 12 ID - 285 + 23 Shape Rectangle Style @@ -102138,11 +104828,11 @@ Ruby projects\ 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 34ac2} +\f0\b\fs28 \cf0 My Computer} VerticalPad 0 @@ -102151,31 +104841,15 @@ Ruby projects\ Bounds - {{524.02801999999997, 250.67699999999999}, {145, 22}} + {{59.426299999999998, 268}, {457.14699999999999, 256}} Class ShapedGraphic - FitText - YES - Flow - Resize - FontInfo - - Font - Monaco - Size - 8 - ID - 283 + 22 Shape Rectangle Style - fill - - Draws - NO - shadow Draws @@ -102183,77 +104857,25 @@ Ruby projects\ stroke - Draws - NO - - - Text - - Align - 0 - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural - -\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 -add feature #32 - ability to\ -add new formats to the central} - VerticalPad - 0 - - Wrap - NO - - - Class - LineGraphic - ID - 282 - Points - - {588.52099999999996, 248.32300000000001} - {588.52099999999996, 162.17699999999999} - - Style - - stroke - - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - HeadArrow - 0 - Legacy - - TailArrow - 0 + Width + 2 Bounds - {{524.02801999999997, 223.85400000000001}, {56, 26.1462}} + {{250, 42}, {85.304703000000003, 13.0647}} Class ShapedGraphic FontInfo Font - GillSans + Helvetica-Bold Size - 14 + 12 ID - 281 + 6 Shape Rectangle Style @@ -102280,11 +104902,11 @@ add new formats to the central} 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 committer} +\f0\b\fs28 \cf0 git.ourcompany.com} VerticalPad 0 @@ -102293,27 +104915,15 @@ add new formats to the central} Bounds - {{520.02801999999997, 202.35400000000001}, {56, 26.1462}} + {{59.426299999999998, 29.378299999999999}, {457.14699999999999, 174.62199000000001}} Class ShapedGraphic - FontInfo - - Font - GillSans - Size - 14 - ID - 280 + 5 Shape Rectangle Style - fill - - Draws - NO - shadow Draws @@ -102321,41 +104931,115 @@ add new formats to the central} stroke - Draws - NO + Width + 2 - Text + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + 0324 + UniqueID + 30 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 553}} + Class + SolidGraphic + ID + 2 + Style + + stroke - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 author} - VerticalPad - 0 + Draws + NO - Wrap - NO + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + Bounds - {{520.02801999999997, 181.35400000000001}, {56, 26.1462}} + {{191.5, 251.58700999999999}, {346, 16}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - GillSans + Helvetica Size - 14 + 12 ID - 279 + 1408 Shape Rectangle Style @@ -102382,11 +105066,11 @@ add new formats to the central} 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 parent} +\f0\b\fs26 \cf0 git remote add teamone git://git.team1.ourcompany.com} VerticalPad 0 @@ -102395,18 +105079,22 @@ add new formats to the central} Bounds - {{520.02801999999997, 160.35400000000001}, {56, 26.1462}} + {{494.06400000000002, 209.173}, {50, 14}} Class ShapedGraphic + FitText + YES + Flow + Resize FontInfo Font - GillSans + Helvetica Size - 14 + 12 ID - 278 + 1407 Shape Rectangle Style @@ -102433,11 +105121,11 @@ add new formats to the central} 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 tree} +\f0\b\fs24 \cf0 teamone} VerticalPad 0 @@ -102447,83 +105135,73 @@ add new formats to the central} Class LineGraphic + Head + + ID + 1401 + ID - 277 + 1406 Points - {668.04303000000004, 248.5} - {518.51300000000003, 248.5} + {529.47038915521568, 155.3650067705191} + {507.42008888827542, 155.47660222692016} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 - Width - 2 + Tail + + ID + 1403 + + Bounds + {{530.96996999999999, 140.07499999999999}, {57.940497999999998, 30.271601}} Class - LineGraphic + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + ID - 276 - Points - - {668.52801999999997, 227.5} - {518.99901999999997, 227.5} - + 1403 + Shape + RoundRect Style - stroke + fill Color b - 0.382653 + 0.837205 g - 0.382653 + 0.959184 r - 0.382653 + 0.826135 - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 2 - - - - Class - LineGraphic - ID - 275 - Points - - {668.55700999999999, 206.5} - {519.02801999999997, 206.5} - - Style - + shadow + + Draws + NO + stroke Color @@ -102535,77 +105213,86 @@ add new formats to the central} r 0.382653 - HeadArrow - 0 - Legacy - - TailArrow - 0 Width - 2 + 3 + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 31b8e} + VerticalPad + 0 + + AllowToConnect + Class LineGraphic ID - 274 + 1402 Points - {668.04303000000004, 185.5} - {518.51300000000003, 185.5} + {446.48001000303049, 155.63038673702872} + {418, 155.63} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 + Pattern + 1 TailArrow 0 - Width - 2 + Tail + + ID + 1401 + Bounds - {{555.02099999999996, 95.5}, {76, 22}} + {{447.98000999999999, 140.495}, {57.940497999999998, 30.271601}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font Courier Size - 18 + 12 ID - 273 + 1401 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -102614,53 +105301,105 @@ add new formats to the central} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 f30ab..} +\f0\fs24 \cf0 f42c5} VerticalPad 0 - Wrap - NO + + + Class + LineGraphic + Head + + ID + 1403 + + ID + 1400 + Points + + {559.94070179186451, 119.27130299990941} + {559.9404419398644, 138.57500000013468} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1399 + Bounds - {{355.25, 231.5}, {37, 14}} + {{525.61102000000005, 87.999701999999999}, {68.659797999999995, 30.271601}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Courier + LucidaGrande Size - 12 + 10 ID - 266 + 1399 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.933333 + g + 0.933333 + r + 0.933333 + shadow @@ -102669,45 +105408,46 @@ add new formats to the central} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 2 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 Scott} +\f0\fs20 \cf2 master} VerticalPad 0 - Wrap - NO Bounds - {{355.25, 210.5}, {37, 14}} + {{477.06099999999998, 41.999699}, {85.304703000000003, 13.0647}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font - Courier + Helvetica-Bold Size 12 ID - 265 + 1398 Shape Rectangle Style @@ -102734,11 +105474,11 @@ add new formats to the central} 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 Scott} +\f0\b\fs28 \cf0 git.team1.ourcompany.com} VerticalPad 0 @@ -102747,31 +105487,15 @@ add new formats to the central} Bounds - {{355.25, 189.5}, {37, 14}} + {{378, 27.378}, {284, 174.62199000000001}} Class ShapedGraphic - FitText - YES - Flow - Resize - FontInfo - - Font - Courier - Size - 12 - ID - 264 + 1397 Shape Rectangle Style - fill - - Draws - NO - shadow Draws @@ -102779,53 +105503,33 @@ add new formats to the central} stroke - Draws - NO + Width + 2 - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 98ca9} - VerticalPad - 0 - - Wrap - NO Bounds - {{356.25, 167.5}, {37, 14}} + {{395, 48.377997999999998}, {249.494, 182.62199000000001}} Class ShapedGraphic - FitText - YES - Flow - Resize - FontInfo - - Font - Courier - Size - 12 - ID - 263 + 1396 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.882653 + g + 0.882653 + r + 0.882653 + shadow @@ -102834,30 +105538,14 @@ add new formats to the central} stroke - Draws - NO + Width + 2 - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 184ca} - VerticalPad - 0 - - Wrap - NO Bounds - {{282.26400999999998, 250.67699999999999}, {116, 22}} + {{183.49001000000001, 209.173}, {34, 14}} Class ShapedGraphic FitText @@ -102867,12 +105555,12 @@ add new formats to the central} FontInfo Font - Monaco + Helvetica Size - 8 + 12 ID - 262 + 1394 Shape Rectangle Style @@ -102895,19 +105583,15 @@ add new formats to the central} Text - Align - 0 Pad 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 -fixed bug #1328 - stack \ -overflow under certain} +\f0\b\fs24 \cf0 origin} VerticalPad 0 @@ -102918,56 +105602,96 @@ overflow under certain} Class LineGraphic ID - 261 + 1389 Points - {346.75698999999997, 248.32300000000001} - {346.75698999999997, 162.17699999999999} + {392.54443036186905, 394.36523849282418} + {370.495, 394.47699} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow 0 + + + Tail + + ID + 1386 + + + + Class + LineGraphic + Head + + ID + 1386 + + ID + 1388 + Points + + {475.54401000000263, 394.21082406427922} + {453.48450799999614, 394.21082406427922} + + Style + + stroke + + HeadArrow + FilledArrow Legacy + LineType + 1 TailArrow 0 + Tail + + ID + 1387 + Bounds - {{282.26400999999998, 223.85400000000001}, {56, 26.1462}} + {{477.04401000000001, 379.07501000000002}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo Font - GillSans + Courier Size - 14 + 12 ID - 260 + 1387 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -102976,49 +105700,61 @@ overflow under certain} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 committer} +\f0\fs24 \cf0 190a3} VerticalPad 0 - Wrap - NO Bounds - {{278.26400999999998, 202.35400000000001}, {56, 26.1462}} + {{394.04401000000001, 379.07501000000002}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo Font - GillSans + Courier Size - 14 + 12 ID - 259 + 1386 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -103027,49 +105763,131 @@ overflow under certain} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 author} +\f0\fs24 \cf0 31b8e} VerticalPad 0 - Wrap - NO + + + Class + LineGraphic + Head + + ID + 1354 + + ID + 1382 + Points + + {179.32341915071791, 155.36500594345006} + {157.2726818925494, 155.47660301288289} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1379 + + + + Class + LineGraphic + Head + + ID + 1379 + + ID + 1381 + Points + + {262.3230000000018, 155.21081211258436} + {240.26349799999704, 155.21081211258436} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1380 + Bounds - {{278.26400999999998, 181.35400000000001}, {56, 26.1462}} + {{263.82299999999998, 140.07499999999999}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo Font - GillSans + Courier Size - 14 + 12 ID - 258 + 1380 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -103078,49 +105896,61 @@ overflow under certain} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 parent} +\f0\fs24 \cf0 190a3} VerticalPad 0 - Wrap - NO Bounds - {{278.26400999999998, 160.35400000000001}, {56, 26.1462}} + {{180.82300000000001, 140.07499999999999}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo Font - GillSans + Courier Size - 14 + 12 ID - 257 + 1379 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -103129,141 +105959,137 @@ overflow under certain} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 tree} +\f0\fs24 \cf0 31b8e} VerticalPad 0 - Wrap - NO Class LineGraphic + Head + + ID + 1375 + ID - 256 + 1378 Points - {426.27899000000002, 248.5} - {276.74898999999999, 248.5} + {475.54401000000183, 449.62580211258444} + {453.48450799999711, 449.62580211258444} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 - Width - 2 + Tail + + ID + 1376 + Class LineGraphic + Head + + ID + 1365 + ID - 255 + 1377 Points - {426.76400999999998, 227.5} - {277.23498999999998, 227.5} + {399.77907599337271, 433.94511375668804} + {364.75942218354203, 410.31147717642011} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 - Width - 2 + Tail + + ID + 1375 + + Bounds + {{477.04401000000001, 434.48998999999998}, {57.940497999999998, 30.271601}} Class - LineGraphic + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + ID - 254 - Points - - {426.79300000000001, 206.5} - {277.26400999999998, 206.5} - + 1376 + Shape + RoundRect Style - stroke + fill Color b - 0.382653 + 0.837205 g - 0.382653 + 0.959184 r - 0.382653 + 0.826135 - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 2 - - - - Class - LineGraphic - ID - 253 - Points - - {426.27899000000002, 185.5} - {276.74898999999999, 185.5} - - Style - + shadow + + Draws + NO + stroke Color @@ -103275,43 +106101,52 @@ overflow under certain} r 0.382653 - HeadArrow - 0 - Legacy - - TailArrow - 0 Width - 2 + 3 + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 893cf} + VerticalPad + 0 + Bounds - {{313.25698999999997, 95.5}, {76, 22}} + {{394.04401000000001, 434.48998999999998}, {57.940497999999998, 30.271601}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font Courier Size - 18 + 12 ID - 252 + 1375 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -103320,293 +106155,179 @@ overflow under certain} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 34ac2..} +\f0\fs24 \cf0 a38de} VerticalPad 0 - Wrap - NO Class - Group - Graphics + LineGraphic + Head + + ID + 1376 + + ID + 1370 + Points + {506.01432448202195, 488.90500000000139} + {506.01428656762607, 466.26159099999802} + + Style + + stroke - Bounds - {{387.25698999999997, 129.131}, {27, 26.1462}} - Class - ShapedGraphic - FontInfo - - Color - - b - 0.489796 - g - 0.489796 - r - 0.489796 - - Font - GillSans - Size - 18 - - ID - 247 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs36 \cf2 size} - VerticalPad - 0 - - Wrap - NO - - - Bounds - {{290.25698999999997, 129.131}, {56, 26.1462}} - Class - ShapedGraphic - FontInfo - - Font - GillSans-Bold - Size - 18 - - ID - 248 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\b\fs36 \cf0 commit} - VerticalPad - 0 - - Wrap - NO - - - Class - LineGraphic - ID - 249 - Points - - {373.25698999999997, 124.377} - {373.25698999999997, 162.40799999999999} - - Style - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Class - LineGraphic - ID - 250 - Points - - {428.25698999999997, 162.40799999999999} - {274.25698999999997, 162.40799999999999} - - Style - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + Tail + + ID + 1369 + + + + Bounds + {{463.36200000000002, 489.90499999999997}, {85.304703000000003, 30.271601}} + Class + ShapedGraphic + FontInfo + + Color - Bounds - {{274.25698999999997, 122}, {154, 154.5}} - Class - ShapedGraphic - FontInfo - - Color - - b - 1 - g - 1 - r - 1 - - Font - Geneva - NSKern - 0.0 - Size - 14 - - ID - 251 - Shape - Rectangle - Style - - fill - - Color - - b - 0.757488 - g - 1 - r - 0.738389 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - CornerRadius - 5 - Width - 3 - + b + 0.8 + g + 0.8 + r + 0.8 + + Font + LucidaGrande + Size + 10 + + ID + 1369 + Shape + Rectangle + Style + + fill + + Color + + b + 0.933333 + g + 0.933333 + r + 0.933333 - Text + + shadow + + Draws + NO + + stroke + + Color - VerticalPad - 0 + b + 0.382653 + g + 0.382653 + r + 0.382653 + Width + 2 - + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs20 \cf2 master} + VerticalPad + 0 + + + + Class + LineGraphic + Head + + ID + 1360 + ID - 246 + 1366 + Points + + {311.05440913284014, 394.47660111392014} + {289.00407886388723, 394.36501048787608} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1365 + Bounds - {{113.486, 209.5}, {37, 14}} + {{312.55399, 379.495}, {57.940497999999998, 30.271601}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font @@ -103615,15 +106336,22 @@ overflow under certain} 12 ID - 125 + 1365 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -103632,53 +106360,105 @@ overflow under certain} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 Scott} +\f0\fs24 \cf0 f42c5} VerticalPad 0 - Wrap - NO + + + Class + LineGraphic + Head + + ID + 1387 + + ID + 1364 + Points + + {506.01432448202178, 354.93160099999864} + {506.01428656762573, 377.57501000000212} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1363 + Bounds - {{113.486, 188.5}, {37, 14}} + {{463.36200000000002, 323.66000000000003}, {85.304703000000003, 30.271601}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Courier + LucidaGrande Size - 12 + 10 ID - 124 + 1363 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.933333 + g + 0.933333 + r + 0.933333 + shadow @@ -103687,36 +106467,72 @@ overflow under certain} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 2 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 Scott} +\f0\fs20 \cf2 origin/master} VerticalPad 0 - Wrap - NO + + + Class + LineGraphic + Head + + ID + 1361 + + ID + 1362 + Points + + {228.06400000000258, 394.21082407203659} + {206.01450799999603, 394.21082407203659} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1360 + Bounds - {{597.01397999999995, 167.42699999999999}, {37, 14}} + {{146.57400999999999, 379.07501000000002}, {57.940497999999998, 30.271601}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font @@ -103725,15 +106541,22 @@ overflow under certain} 12 ID - 299 + 1361 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -103742,53 +106565,61 @@ overflow under certain} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 0de24} +\f0\fs24 \cf0 0b743} VerticalPad 0 - Wrap - NO Bounds - {{40.5, 231.5}, {135, 11}} + {{229.56399999999999, 379.07501000000002}, {57.940497999999998, 30.271601}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font - Monaco + Courier Size - 8 + 12 ID - 95 + 1360 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -103797,57 +106628,56 @@ overflow under certain} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Align - 0 - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 -initial commit of my project} +\f0\fs24 \cf0 a6b4c} VerticalPad 0 - Wrap - NO + AllowToConnect + Class LineGraphic ID - 93 + 1391 Points - {105.00000408366566, 227.32300000000001} - {104.99299999999999, 162.17699999999999} + {96.332603003030499, 155.63038673697957} + {67.852599999999995, 155.63} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 + Pattern + 1 TailArrow 0 @@ -103855,33 +106685,38 @@ initial commit of my project} Tail ID - 83 - Position - 0.53176617622375488 + 1354 Bounds - {{40.5, 201.85400000000001}, {56, 26.1462}} + {{97.832603000000006, 140.495}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo Font - GillSans + Courier Size - 14 + 12 ID - 92 + 1354 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -103890,100 +106725,105 @@ initial commit of my project} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 committer} +\f0\fs24 \cf0 f42c5} VerticalPad 0 - Wrap - NO - Bounds - {{36.5, 180.35400000000001}, {56, 26.1462}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Font - GillSans - Size - 14 + ID + 1380 ID - 86 - Shape - Rectangle + 1353 + Points + + {292.79301426387627, 119.27130299997873} + {292.7931401939145, 138.57500000003208} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 author} - VerticalPad - 0 + ID + 1352 - Wrap - NO Bounds - {{36.5, 181.35400000000001}, {56, 26.1462}} + {{258.46301, 87.999701999999999}, {68.659797999999995, 30.271601}} Class ShapedGraphic FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - GillSans + LucidaGrande Size - 14 + 10 ID - 85 + 1352 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.933333 + g + 0.933333 + r + 0.933333 + shadow @@ -103992,34 +106832,46 @@ initial commit of my project} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 2 Text - Pad - 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs20 \cf2 master} VerticalPad 0 - Wrap - NO Bounds - {{36.5, 160.35400000000001}, {56, 26.1462}} + {{254.69399999999999, 296}, {85.304703000000003, 12.605399999999999}} Class ShapedGraphic FontInfo Font - GillSans + Helvetica-Bold Size - 14 + 12 ID - 84 + 23 Shape Rectangle Style @@ -104046,11 +106898,11 @@ initial commit of my project} 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 tree} +\f0\b\fs28 \cf0 My Computer} VerticalPad 0 @@ -104058,102 +106910,23 @@ initial commit of my project} NO + Bounds + {{112, 285}, {513.84398999999996, 247}} Class - LineGraphic - ID - 83 - Points - - {184.51499999999999, 227.32300000000001} - {34.985000999999997, 227.32300000000001} - - Style - - stroke - - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 2 - - - - - Class - LineGraphic + ShapedGraphic ID - 82 - Points - - {185, 205.5} - {35.471001000000001, 205.5} - + 22 + Shape + Rectangle Style - stroke + shadow - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 2 + Draws + NO - - - - Class - LineGraphic - ID - 80 - Points - - {184.51499999999999, 185.5} - {34.985000999999997, 185.5} - - Style - stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - HeadArrow - 0 - Legacy - - TailArrow - 0 Width 2 @@ -104161,22 +106934,18 @@ initial commit of my project} Bounds - {{71.492996000000005, 95.5}, {76, 22}} + {{158.48699999999999, 41.999699}, {85.304703000000003, 13.0647}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font - Courier + Helvetica-Bold Size - 18 + 12 ID - 67 + 6 Shape Rectangle Style @@ -104203,11 +106972,11 @@ initial commit of my project} 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 98ca9..} +\f0\b\fs28 \cf0 git.ourcompany.com} VerticalPad 0 @@ -104215,518 +106984,62 @@ initial commit of my project} NO + Bounds + {{59.426299999999998, 27.378}, {284, 174.62199000000001}} Class - Group - Graphics - - - Bounds - {{145.49299999999999, 129.131}, {27, 26.1462}} - Class - ShapedGraphic - FontInfo - - Color - - b - 0.489796 - g - 0.489796 - r - 0.489796 - - Font - GillSans - Size - 18 - - ID - 40 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs36 \cf2 size} - VerticalPad - 0 - - Wrap - NO - - - Bounds - {{48.493000000000002, 129.131}, {56, 26.1462}} - Class - ShapedGraphic - FontInfo - - Font - GillSans-Bold - Size - 18 - - ID - 41 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\b\fs36 \cf0 commit} - VerticalPad - 0 - - Wrap - NO - - - Class - LineGraphic - ID - 42 - Points - - {131.49299999999999, 124.377} - {131.49299999999999, 162.40799999999999} - - Style - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Class - LineGraphic - ID - 43 - Points - - {186.49299999999999, 162.40799999999999} - {32.493000000000002, 162.40799999999999} - - Style - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - - - - Bounds - {{32.493000000000002, 122}, {154, 154.5}} - Class - ShapedGraphic - FontInfo - - Color - - b - 1 - g - 1 - r - 1 - - Font - Geneva - NSKern - 0.0 - Size - 14 - - ID - 44 - Shape - Rectangle - Style - - fill - - Color - - b - 0.757488 - g - 1 - r - 0.738389 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - CornerRadius - 5 - Width - 3 - - - Text - - VerticalPad - 0 - - - + ShapedGraphic ID - 39 - - - Class - Group - Graphics - + 5 + Shape + Rectangle + Style + + shadow - Bounds - {{629.02099999999996, 129.131}, {27, 26.1462}} - Class - ShapedGraphic - FontInfo - - Color - - b - 0.489796 - g - 0.489796 - r - 0.489796 - - Font - GillSans - Size - 18 - - ID - 268 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs36 \cf2 size} - VerticalPad - 0 - - Wrap + Draws NO - - Bounds - {{532.02099999999996, 129.131}, {56, 26.1462}} - Class - ShapedGraphic - FontInfo - - Font - GillSans-Bold - Size - 18 - - ID - 269 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\b\fs36 \cf0 commit} - VerticalPad - 0 - - Wrap - NO + stroke + + Width + 2 + + + + Bounds + {{76.426299999999998, 48.377997999999998}, {249.494, 182.62199000000001}} + Class + ShapedGraphic + ID + 1395 + Shape + Rectangle + Style + + fill - Class - LineGraphic - ID - 270 - Points - - {615.02099999999996, 124.377} - {615.02099999999996, 162.40799999999999} - - Style + Color - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - + b + 0.882653 + g + 0.882653 + r + 0.882653 + shadow - Class - LineGraphic - ID - 271 - Points - - {670.02099999999996, 162.40799999999999} - {516.02099999999996, 162.40799999999999} - - Style - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - + Draws + NO + stroke - Bounds - {{516.02099999999996, 122}, {154, 154.5}} - Class - ShapedGraphic - FontInfo - - Color - - b - 1 - g - 1 - r - 1 - - Font - Geneva - NSKern - 0.0 - Size - 14 - - ID - 272 - Shape - Rectangle - Style - - fill - - Color - - b - 0.757488 - g - 1 - r - 0.738389 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - CornerRadius - 5 - Width - 3 - - - Text - - VerticalPad - 0 - + Width + 2 - - ID - 267 + GridInfo @@ -104766,7 +107079,7 @@ initial commit of my project} 0.0 Orientation - 1 + 2 PrintOnePage RowAlign @@ -104774,9 +107087,9 @@ initial commit of my project} RowSpacing 36 SheetTitle - 0302 + 0325 UniqueID - 70 + 31 VPages 1 @@ -104797,37 +107110,376 @@ initial commit of my project} stroke - Draws - NO + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + + + Class + LineGraphic + Head + + ID + 1386 + + ID + 1410 + Points + + {423.014434938916, 356.27160099998929} + {423.01433583896915, 377.57501000001599} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1409 + + + + Bounds + {{374.60500999999999, 325}, {96.819000000000003, 30.271601}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.8 + g + 0.8 + r + 0.8 + + Font + LucidaGrande + Size + 10 + + ID + 1409 + Shape + Rectangle + Style + + fill + + Color + + b + 0.933333 + g + 0.933333 + r + 0.933333 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 2 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs20 \cf2 teamone/master} + VerticalPad + 0 + + + + Class + LineGraphic + ID + 1367 + Points + + {513, 234.5} + {513, 276.5} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 4 + + + + + Bounds + {{367.51400999999998, 250.5}, {108, 16}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 12 + + ID + 1408 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\b\fs26 \cf0 git fetch teamone} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{494.06400000000002, 209.173}, {50, 14}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 12 + + ID + 1407 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\b\fs24 \cf0 teamone} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + Head + + ID + 1401 + + ID + 1406 + Points + + {529.47038915521568, 155.3650067705191} + {507.42008888827542, 155.47660222692016} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1403 + + + + Bounds + {{530.96996999999999, 140.07499999999999}, {57.940497999999998, 30.271601}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1403 + Shape + RoundRect + Style + + fill + + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 31b8e} + VerticalPad + 0 - - BaseZoom - 0 - CanvasOrigin - {0, 0} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - + AllowToConnect + Class LineGraphic - Head - - ID - 300 - ID - 312 + 1402 Points - {530.03455800161441, 218.36130117028216} - {551.21890428965173, 264.13869881537352} + {446.48001000303049, 155.63038673702872} + {418, 155.63} Style @@ -104839,45 +107491,34 @@ initial commit of my project} LineType 1 + Pattern + 1 TailArrow 0 - Width - 2 Tail ID - 309 + 1401 Bounds - {{469, 162}, {95.356903000000003, 55}} + {{447.98000999999999, 140.495}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo - Color - - b - 0 - g - 0 - r - 0 - Font - Geneva - NSKern - 0.0 + Courier Size - 14 + 12 ID - 309 + 1401 Shape - Rectangle + RoundRect Style fill @@ -104885,11 +107526,11 @@ initial commit of my project} Color b - 0.832366 + 0.837205 g - 0.841837 + 0.959184 r - 0.820446 + 0.826135 shadow @@ -104902,14 +107543,12 @@ initial commit of my project} Color b - 0.301453 + 0.382653 g - 0.297998 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 Width 3 @@ -104918,11 +107557,11 @@ initial commit of my project} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 v1.0} +\f0\fs24 \cf0 f42c5} VerticalPad 0 @@ -104933,14 +107572,14 @@ initial commit of my project} Head ID - 303 + 1403 ID - 307 + 1400 Points - {639.678434057971, 120.5} - {639.678434057971, 160.5} + {559.94070179186451, 119.27130299990941} + {559.9404419398644, 138.57500000013468} Style @@ -104954,19 +107593,17 @@ initial commit of my project} 1 TailArrow 0 - Width - 2 Tail ID - 306 + 1399 Bounds - {{592, 64}, {95.356903000000003, 55}} + {{525.61102000000005, 87.999701999999999}, {68.659797999999995, 30.271601}} Class ShapedGraphic FontInfo @@ -104974,21 +107611,19 @@ initial commit of my project} Color b - 0.336735 + 0.8 g - 0.336735 + 0.8 r - 0.336735 + 0.8 Font - Geneva - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 306 + 1399 Shape Rectangle Style @@ -104998,11 +107633,11 @@ initial commit of my project} Color b - 0.902991 + 0.933333 g - 0.913265 + 0.933333 r - 0.890059 + 0.933333 shadow @@ -105015,93 +107650,110 @@ initial commit of my project} Color b - 0.301453 + 0.382653 g - 0.297998 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;\red86\green86\blue86;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf2 HEAD} +\f0\fs20 \cf2 master} VerticalPad 0 + Bounds + {{477.06099999999998, 41.999699}, {85.304703000000003, 13.0647}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 300 + Font + Helvetica-Bold + Size + 12 ID - 305 - Points - - {618.84247269371963, 218.21404798875324} - {585.41098938631035, 264.28595202307667} - + 1398 + Shape + Rectangle Style + fill + + Draws + NO + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - Width - 2 + Draws + NO - Tail + Text - ID - 303 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\b\fs28 \cf0 git.team1.ourcompany.com} + VerticalPad + 0 + Wrap + NO Bounds - {{592, 162}, {95.356903000000003, 55}} + {{378, 27.378}, {284, 174.62199000000001}} Class ShapedGraphic - FontInfo + ID + 1397 + Shape + Rectangle + Style - Color + shadow - b - 0 - g - 0 - r - 0 + Draws + NO + + stroke + + Width + 2 - Font - Geneva - NSKern - 0.0 - Size - 14 + + + Bounds + {{395, 48.377997999999998}, {249.494, 182.62199000000001}} + Class + ShapedGraphic ID - 303 + 1396 Shape Rectangle Style @@ -105111,11 +107763,11 @@ initial commit of my project} Color b - 0.832366 + 0.882653 g - 0.841837 + 0.882653 r - 0.820446 + 0.882653 shadow @@ -105125,48 +107777,75 @@ initial commit of my project} stroke - Color - - b - 0.301453 - g - 0.297998 - r - 0.316327 - - CornerRadius - 5 Width - 3 + 2 + + + + + Bounds + {{183.49001000000001, 209.173}, {34, 14}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 12 + + ID + 1394 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 master} +\f0\b\fs24 \cf0 origin} VerticalPad 0 + Wrap + NO Class LineGraphic - Head - - ID - 299 - ID - 302 + 1389 Points - {499.14301, 293} - {426.77599000000004, 293} + {392.54443036186905, 394.36523849282418} + {370.495, 394.47699} Style @@ -105180,14 +107859,12 @@ initial commit of my project} 1 TailArrow 0 - Width - 3 Tail ID - 300 + 1386 @@ -105196,14 +107873,14 @@ initial commit of my project} Head ID - 298 + 1386 ID - 301 + 1388 Points - {295.91199, 293} - {229.36400000000003, 293} + {490.71629949346334, 394.50044675410214} + {453.48420850842916, 394.34116383417256} Style @@ -105217,43 +107894,30 @@ initial commit of my project} 1 TailArrow 0 - Width - 3 Tail ID - 299 + 1387 Bounds - {{500.64301, 265.5}, {127.864, 55}} + {{492.21600000000001, 379.495}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo - Color - - b - 0 - g - 0 - r - 0 - Font - Geneva - NSKern - 0.0 + Courier Size - 14 + 12 ID - 300 + 1387 Shape - Rectangle + RoundRect Style fill @@ -105261,11 +107925,11 @@ initial commit of my project} Color b - 0.699991 + 0.837205 g - 1 + 0.959184 r - 0.726874 + 0.826135 shadow @@ -105278,14 +107942,12 @@ initial commit of my project} Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width 3 @@ -105298,38 +107960,160 @@ initial commit of my project} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 f30ab} +\f0\fs24 \cf0 190a3} VerticalPad 0 Bounds - {{297.41199, 265.5}, {127.864, 55}} + {{394.04401000000001, 379.07501000000002}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo - Color + Font + Courier + Size + 12 + + ID + 1386 + Shape + RoundRect + Style + + fill - b - 0 - g + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 31b8e} + VerticalPad + 0 + + + + Class + LineGraphic + Head + + ID + 1354 + + ID + 1382 + Points + + {179.32341915071791, 155.36500594345006} + {157.2726818925494, 155.47660301288289} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow 0 - r + + + Tail + + ID + 1379 + + + + Class + LineGraphic + Head + + ID + 1379 + + ID + 1381 + Points + + {262.3230000000018, 155.21081211258436} + {240.26349799999704, 155.21081211258436} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow 0 + + Tail + + ID + 1380 + + + + Bounds + {{263.82299999999998, 140.07499999999999}, {57.940497999999998, 30.271601}} + Class + ShapedGraphic + FontInfo + Font - Geneva - NSKern - 0.0 + Courier Size - 14 + 12 ID - 299 + 1380 Shape - Rectangle + RoundRect Style fill @@ -105337,11 +108121,11 @@ initial commit of my project} Color b - 0.699991 + 0.837205 g - 1 + 0.959184 r - 0.726874 + 0.826135 shadow @@ -105354,14 +108138,12 @@ initial commit of my project} Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 - - CornerRadius - 5 + 0.382653 + Width 3 @@ -105374,38 +108156,27 @@ initial commit of my project} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 34ac2} +\f0\fs24 \cf0 190a3} VerticalPad 0 Bounds - {{100, 265.5}, {127.864, 55}} + {{180.82300000000001, 140.07499999999999}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo - Color - - b - 0 - g - 0 - r - 0 - Font - Geneva - NSKern - 0.0 + Courier Size - 14 + 12 ID - 298 + 1379 Shape - Rectangle + RoundRect Style fill @@ -105413,11 +108184,11 @@ initial commit of my project} Color b - 0.699991 + 0.837205 g - 1 + 0.959184 r - 0.726874 + 0.826135 shadow @@ -105430,14 +108201,12 @@ initial commit of my project} Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width 3 @@ -105450,7 +108219,7 @@ initial commit of my project} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 98ca9} +\f0\fs24 \cf0 31b8e} VerticalPad 0 @@ -105461,14 +108230,49 @@ initial commit of my project} Head ID - 296 + 1375 ID - 297 + 1378 Points - {564.26397999999995, 322} - {564.45393797403801, 367.50001307216741} + {490.7160000000024, 449.62580377694417} + {453.48450799999625, 449.62580377694417} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1376 + + + + Class + LineGraphic + Head + + ID + 1365 + + ID + 1377 + Points + + {399.77907599337271, 433.94511375668804} + {364.75942218354203, 410.31147717642011} Style @@ -105482,38 +108286,30 @@ initial commit of my project} 1 TailArrow 0 - Width - 3 + Tail + + ID + 1375 + Bounds - {{500.64301, 369}, {127.864, 55}} + {{492.21600000000001, 434.48998999999998}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Courier Size - 14 + 12 ID - 296 + 1376 Shape - Rectangle + RoundRect Style fill @@ -105521,11 +108317,11 @@ initial commit of my project} Color b - 1 + 0.837205 g - 0.806818 + 0.959184 r - 0.813024 + 0.826135 shadow @@ -105538,14 +108334,12 @@ initial commit of my project} Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 Width 3 @@ -105554,74 +108348,31 @@ initial commit of my project} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 Snapshot C} +\f0\fs24 \cf0 893cf} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 294 - - ID - 295 - Points - - {361.03298999999998, 322} - {361.22292965187461, 367.50001306964583} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - Width - 3 - - - Bounds - {{297.41199, 369}, {127.864, 55}} + {{394.04401000000001, 434.48998999999998}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Courier Size - 14 + 12 ID - 294 + 1375 Shape - Rectangle + RoundRect Style fill @@ -105629,11 +108380,11 @@ initial commit of my project} Color b - 1 + 0.837205 g - 0.806818 + 0.959184 r - 0.813024 + 0.826135 shadow @@ -105646,14 +108397,12 @@ initial commit of my project} Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 Width 3 @@ -105662,11 +108411,11 @@ initial commit of my project} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 Snapshot B} +\f0\fs24 \cf0 a38de} VerticalPad 0 @@ -105677,14 +108426,14 @@ initial commit of my project} Head ID - 292 + 1376 ID - 293 + 1370 Points - {164.11160318488166, 321.99997123385248} - {164.39339502458051, 367.50002876672113} + {521.18632165446468, 488.90500000000162} + {521.18627977215056, 466.26159099999751} Style @@ -105698,19 +108447,17 @@ initial commit of my project} 1 TailArrow 0 - Width - 3 Tail ID - 298 + 1369 Bounds - {{100.64100000000001, 369}, {127.864, 55}} + {{478.53399999999999, 489.90499999999997}, {85.304703000000003, 30.271601}} Class ShapedGraphic FontInfo @@ -105718,21 +108465,19 @@ initial commit of my project} Color b - 1 + 0.8 g - 1 + 0.8 r - 1 + 0.8 Font - Geneva - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 292 + 1369 Shape Rectangle Style @@ -105742,11 +108487,11 @@ initial commit of my project} Color b - 1 + 0.933333 g - 0.806818 + 0.933333 r - 0.813024 + 0.933333 shadow @@ -105759,131 +108504,43 @@ initial commit of my project} Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 Snapshot A} +\f0\fs20 \cf2 master} VerticalPad 0 - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - - Lock - NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 1 - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - 0303 - UniqueID - 71 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {1512, 553}} - Class - SolidGraphic - ID - 2 - Style - - stroke - - Draws - NO - - - - BaseZoom - 0 - CanvasOrigin - {0, 0} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - Class LineGraphic Head ID - 300 + 1360 ID - 316 + 1366 Points - {702.37401999999997, 293} - {630.00701000000004, 293} + {311.05440913284014, 394.47660111392014} + {289.00407886388723, 394.36501048787608} Style @@ -105897,43 +108554,30 @@ initial commit of my project} 1 TailArrow 0 - Width - 3 Tail ID - 315 + 1365 Bounds - {{703.87401999999997, 265.5}, {127.864, 55}} + {{312.55399, 379.495}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo - Color - - b - 0 - g - 0 - r - 0 - Font - Geneva - NSKern - 0.0 + Courier Size - 14 + 12 ID - 315 + 1365 Shape - Rectangle + RoundRect Style fill @@ -105941,11 +108585,11 @@ initial commit of my project} Color b - 0.699991 + 0.837205 g - 1 + 0.959184 r - 0.726874 + 0.826135 shadow @@ -105958,14 +108602,12 @@ initial commit of my project} Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width 3 @@ -105978,7 +108620,7 @@ initial commit of my project} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 a38d3} +\f0\fs24 \cf0 f42c5} VerticalPad 0 @@ -105989,14 +108631,14 @@ initial commit of my project} Head ID - 313 + 1387 ID - 314 + 1364 Points - {767.495, 322} - {767.68495186665018, 367.50001307132686} + {521.18632114928607, 356.27160099999827} + {521.18628028855107, 377.99500000000268} Style @@ -106010,14 +108652,17 @@ initial commit of my project} 1 TailArrow 0 - Width - 3 + Tail + + ID + 1363 + Bounds - {{703.87401999999997, 369}, {127.864, 55}} + {{478.53399999999999, 325}, {85.304703000000003, 30.271601}} Class ShapedGraphic FontInfo @@ -106025,21 +108670,19 @@ initial commit of my project} Color b - 1 + 0.8 g - 1 + 0.8 r - 1 + 0.8 Font - Geneva - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 313 + 1363 Shape Rectangle Style @@ -106049,11 +108692,11 @@ initial commit of my project} Color b - 1 + 0.933333 g - 0.806818 + 0.933333 r - 0.813024 + 0.933333 shadow @@ -106066,27 +108709,25 @@ initial commit of my project} Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 Snapshot D} +\f0\fs20 \cf2 origin/master} VerticalPad 0 @@ -106097,14 +108738,14 @@ initial commit of my project} Head ID - 300 + 1361 ID - 312 + 1362 Points - {564.57530570625215, 218.49999999998803} - {564.57512402985458, 264.0000000000116} + {228.06400000000258, 394.21082407203659} + {206.01450799999603, 394.21082407203659} Style @@ -106118,43 +108759,93 @@ initial commit of my project} 1 TailArrow 0 - Width - 2 Tail ID - 309 + 1360 Bounds - {{516.89697000000001, 162}, {95.356903000000003, 55}} + {{146.57400999999999, 379.07501000000002}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo - Color + Font + Courier + Size + 12 + + ID + 1361 + Shape + RoundRect + Style + + fill - b - 0 - g - 0 - r - 0 + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 0b743} + VerticalPad + 0 + + + + Bounds + {{229.56399999999999, 379.07501000000002}, {57.940497999999998, 30.271601}} + Class + ShapedGraphic + FontInfo + Font - Geneva - NSKern - 0.0 + Courier Size - 14 + 12 ID - 309 + 1360 Shape - Rectangle + RoundRect Style fill @@ -106162,11 +108853,11 @@ initial commit of my project} Color b - 0.832366 + 0.837205 g - 0.841837 + 0.959184 r - 0.820446 + 0.826135 shadow @@ -106179,14 +108870,12 @@ initial commit of my project} Color b - 0.301453 + 0.382653 g - 0.297998 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 Width 3 @@ -106195,29 +108884,26 @@ initial commit of my project} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 v1.0} +\f0\fs24 \cf0 a6b4c} VerticalPad 0 + AllowToConnect + Class LineGraphic - Head - - ID - 303 - ID - 307 + 1391 Points - {767.80642405797096, 120.5} - {767.80642405797096, 160.5} + {96.332603003030499, 155.63038673697957} + {67.852599999999995, 155.63} Style @@ -106229,45 +108915,34 @@ initial commit of my project} LineType 1 + Pattern + 1 TailArrow 0 - Width - 2 Tail ID - 306 + 1354 Bounds - {{720.12798999999995, 64}, {95.356903000000003, 55}} + {{97.832603000000006, 140.495}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo - Color - - b - 0.336735 - g - 0.336735 - r - 0.336735 - Font - Geneva - NSKern - 0.0 + Courier Size - 14 + 12 ID - 306 + 1354 Shape - Rectangle + RoundRect Style fill @@ -106275,11 +108950,11 @@ initial commit of my project} Color b - 0.902991 + 0.837205 g - 0.913265 + 0.959184 r - 0.890059 + 0.826135 shadow @@ -106292,14 +108967,12 @@ initial commit of my project} Color b - 0.301453 + 0.382653 g - 0.297998 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 Width 3 @@ -106308,11 +108981,11 @@ initial commit of my project} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;\red86\green86\blue86;} +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf2 HEAD} +\f0\fs24 \cf0 f42c5} VerticalPad 0 @@ -106323,14 +108996,14 @@ initial commit of my project} Head ID - 315 + 1380 ID - 305 + 1353 Points - {767.80632296865144, 218.49999999998749} - {767.80613699705282, 264.00000000001222} + {292.79301426387627, 119.27130299997873} + {292.7931401939145, 138.57500000003208} Style @@ -106344,19 +109017,17 @@ initial commit of my project} 1 TailArrow 0 - Width - 2 Tail ID - 303 + 1352 Bounds - {{720.12798999999995, 162}, {95.356903000000003, 55}} + {{258.46301, 87.999701999999999}, {68.659797999999995, 30.271601}} Class ShapedGraphic FontInfo @@ -106364,21 +109035,19 @@ initial commit of my project} Color b - 0 + 0.8 g - 0 + 0.8 r - 0 + 0.8 Font - Geneva - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 303 + 1352 Shape Rectangle Style @@ -106388,11 +109057,11 @@ initial commit of my project} Color b - 0.832366 + 0.933333 g - 0.841837 + 0.933333 r - 0.820446 + 0.933333 shadow @@ -106405,145 +109074,125 @@ initial commit of my project} Color b - 0.301453 + 0.382653 g - 0.297998 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 master} +\f0\fs20 \cf2 master} VerticalPad 0 + Bounds + {{254.69399999999999, 296}, {85.304703000000003, 12.605399999999999}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 299 + Font + Helvetica-Bold + Size + 12 ID - 302 - Points - - {499.14301, 293} - {426.77599000000004, 293} - + 23 + Shape + Rectangle Style + fill + + Draws + NO + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - Width - 3 + Draws + NO - Tail + Text - ID - 300 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\b\fs28 \cf0 My Computer} + VerticalPad + 0 + Wrap + NO + Bounds + {{112, 285}, {513.84398999999996, 247}} Class - LineGraphic - Head - - ID - 298 - + ShapedGraphic ID - 301 - Points - - {295.91199, 293} - {229.36400000000003, 293} - + 22 + Shape + Rectangle Style + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 Width - 3 + 2 - Tail - - ID - 299 - Bounds - {{500.64301, 265.5}, {127.864, 55}} + {{158.48699999999999, 41.999699}, {85.304703000000003, 13.0647}} Class ShapedGraphic FontInfo - Color - - b - 0 - g - 0 - r - 0 - Font - Geneva - NSKern - 0.0 + Helvetica-Bold Size - 14 + 12 ID - 300 + 6 Shape Rectangle Style fill - Color - - b - 0.699991 - g - 1 - r - 0.726874 - + Draws + NO shadow @@ -106552,59 +109201,57 @@ initial commit of my project} stroke - Color - - b - 0.172231 - g - 0.316327 - r - 0.1567 - - CornerRadius - 5 - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 f30ab} +\f0\b\fs28 \cf0 git.ourcompany.com} VerticalPad 0 + Wrap + NO Bounds - {{297.41199, 265.5}, {127.864, 55}} + {{59.426299999999998, 27.378}, {284, 174.62199000000001}} Class ShapedGraphic - FontInfo + ID + 5 + Shape + Rectangle + Style - Color + shadow - b - 0 - g - 0 - r - 0 + Draws + NO + + stroke + + Width + 2 - Font - Geneva - NSKern - 0.0 - Size - 14 + + + Bounds + {{76.426299999999998, 48.377997999999998}, {249.494, 182.62199000000001}} + Class + ShapedGraphic ID - 299 + 1395 Shape Rectangle Style @@ -106614,11 +109261,11 @@ initial commit of my project} Color b - 0.699991 + 0.882653 g - 1 + 0.882653 r - 0.726874 + 0.882653 shadow @@ -106628,37 +109275,172 @@ initial commit of my project} stroke - Color - - b - 0.172231 - g - 0.316327 - r - 0.1567 - - CornerRadius - 5 Width - 3 + 2 - Text + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + 0326 + UniqueID + 32 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {805, 732}} + Class + SolidGraphic + ID + 2 + Style + + stroke - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs36 \cf0 34ac2} - VerticalPad - 0 + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + CanvasSize + {805, 732} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + + + Class + LineGraphic + Head + + ID + 1341 + + ID + 1353 + Points + + {283.02399291659492, 85.479999999983804} + {283.02387123743517, 106.87000000002419} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1330 + + + + Class + LineGraphic + Head + + ID + 1349 + + ID + 1352 + Points + + {360.02398889474904, 344.8700000000174} + {360.02387614052674, 325.76000999997365} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1351 Bounds - {{100, 265.5}, {127.864, 55}} + {{325.01299999999998, 345.87}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -106666,21 +109448,19 @@ initial commit of my project} Color b - 0 + 0.8 g - 0 + 0.8 r - 0 + 0.8 Font - Geneva - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 298 + 1351 Shape Rectangle Style @@ -106690,11 +109470,11 @@ initial commit of my project} Color b - 0.699991 + 0.933333 g - 1 + 0.933333 r - 0.726874 + 0.933333 shadow @@ -106707,27 +109487,25 @@ initial commit of my project} Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 98ca9} +\f0\fs20 \cf2 client} VerticalPad 0 @@ -106738,14 +109516,14 @@ initial commit of my project} Head ID - 296 + 1345 ID - 297 + 1350 Points - {564.26397999999995, 322} - {564.45393797403801, 367.50001307216741} + {334.44501000000002, 306.26001000000002} + {308.60251100000005, 306.26001000000002} Style @@ -106759,38 +109537,30 @@ initial commit of my project} 1 TailArrow 0 - Width - 3 + Tail + + ID + 1349 + Bounds - {{500.64301, 369}, {127.864, 55}} + {{335.94501000000002, 288.26001000000002}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 296 + 1349 Shape - Rectangle + RoundRect Style fill @@ -106798,11 +109568,11 @@ initial commit of my project} Color b - 1 + 0.837205 g - 0.806818 + 0.959184 r - 0.813024 + 0.826135 shadow @@ -106815,14 +109585,12 @@ initial commit of my project} Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 Width 3 @@ -106831,11 +109599,11 @@ initial commit of my project} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 Snapshot C} +\f0\fs24 \cf0 C9} VerticalPad 0 @@ -106846,14 +109614,14 @@ initial commit of my project} Head ID - 294 + 1332 ID - 295 + 1348 Points - {361.03298999999998, 322} - {361.22292965187461, 367.50001306964583} + {334.44501000000002, 194} + {308.60251100000005, 194} Style @@ -106867,38 +109635,30 @@ initial commit of my project} 1 TailArrow 0 - Width - 3 + Tail + + ID + 1347 + Bounds - {{297.41199, 369}, {127.864, 55}} + {{335.94501000000002, 176}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 294 + 1347 Shape - Rectangle + RoundRect Style fill @@ -106906,11 +109666,11 @@ initial commit of my project} Color b - 1 + 0.837205 g - 0.806818 + 0.959184 r - 0.813024 + 0.826135 shadow @@ -106923,14 +109683,12 @@ initial commit of my project} Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 Width 3 @@ -106939,11 +109697,11 @@ initial commit of my project} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 Snapshot B} +\f0\fs24 \cf0 C10} VerticalPad 0 @@ -106954,14 +109712,14 @@ initial commit of my project} Head ID - 292 + 1324 ID - 293 + 1346 Points - {164.11160318488166, 321.99997123385248} - {164.39339502458051, 367.50002876672113} + {269.82896752482731, 287.02302829385781} + {219.21855347680855, 213.23698170609214} Style @@ -106975,43 +109733,30 @@ initial commit of my project} 1 TailArrow 0 - Width - 3 Tail ID - 298 + 1345 Bounds - {{100.64100000000001, 369}, {127.864, 55}} + {{258.94501000000002, 288.26001000000002}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 292 + 1345 Shape - Rectangle + RoundRect Style fill @@ -107019,11 +109764,11 @@ initial commit of my project} Color b - 1 + 0.837205 g - 0.806818 + 0.959184 r - 0.813024 + 0.826135 shadow @@ -107036,14 +109781,12 @@ initial commit of my project} Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 Width 3 @@ -107052,152 +109795,29 @@ initial commit of my project} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 Snapshot A} +\f0\fs24 \cf0 C8} VerticalPad 0 - - GridInfo - - HPages - 2 - KeepToScale - - Layers - - - Lock - NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 1 - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - 307 - UniqueID - 89 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {1512, 553}} - Class - SolidGraphic - ID - 2 - Style - - stroke - - Draws - NO - - - - BaseZoom - 0 - CanvasOrigin - {0, 0} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - - - Class - LineGraphic - Head - - ID - 299 - - ID - 320 - Points - - {361.34399000000002, 218.5} - {361.34399000000002, 264} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - Width - 2 - - - Tail - - ID - 317 - - Class LineGraphic Head ID - 317 + 1307 ID - 319 + 1343 Points - {361.34430745212359, 120.49999999998397} - {361.34412255850089, 160.50000000001566} + {257.44501000000002, 126.37} + {231.60251099999999, 126.37} Style @@ -107211,43 +109831,30 @@ initial commit of my project} 1 TailArrow 0 - Width - 2 Tail ID - 318 + 1341 Bounds - {{313.66599000000002, 64}, {95.356903000000003, 55}} + {{258.94501000000002, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 0 - g - 0 - r - 0 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 318 + 1341 Shape - Rectangle + RoundRect Style fill @@ -107255,11 +109862,11 @@ initial commit of my project} Color b - 0.832366 + 0.837205 g - 0.841837 + 0.959184 r - 0.820446 + 0.826135 shadow @@ -107272,14 +109879,12 @@ initial commit of my project} Color b - 0.301453 + 0.382653 g - 0.297998 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 Width 3 @@ -107288,42 +109893,66 @@ initial commit of my project} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 v1.1} +\f0\fs24 \cf0 C6} VerticalPad 0 - Bounds - {{297.41199, 162}, {127.864, 55}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Color + ID + 1324 + + ID + 1333 + Points + + {257.44501000000002, 194} + {231.60251099999999, 194} + + Style + + stroke - b - 0 - g - 0 - r + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow 0 + + Tail + + ID + 1332 + + + + Bounds + {{258.94501000000002, 176}, {48.157501000000003, 36}} + Class + ShapedGraphic + FontInfo + Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 317 + 1332 Shape - Rectangle + RoundRect Style fill @@ -107331,11 +109960,11 @@ initial commit of my project} Color b - 0.369753 + 0.837205 g - 0.639089 + 0.959184 r - 1 + 0.826135 shadow @@ -107348,14 +109977,12 @@ initial commit of my project} Color b - 0.0976745 + 0.382653 g - 0.197553 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 Width 3 @@ -107364,55 +109991,18 @@ initial commit of my project} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 tag data} +\f0\fs24 \cf0 C4} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 300 - - ID - 316 - Points - - {702.37401999999997, 293} - {630.00701000000004, 293} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - Width - 3 - - - Tail - - ID - 315 - - Bounds - {{703.87401999999997, 265.5}, {127.864, 55}} + {{248.01300000000001, 48.479999999999997}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -107420,21 +110010,19 @@ initial commit of my project} Color b - 0 + 0.8 g - 0 + 0.8 r - 0 + 0.8 Font - Geneva - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 315 + 1330 Shape Rectangle Style @@ -107444,11 +110032,11 @@ initial commit of my project} Color b - 0.699991 + 0.933333 g - 1 + 0.933333 r - 0.726874 + 0.933333 shadow @@ -107461,27 +110049,25 @@ initial commit of my project} Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 a38d3} +\f0\fs20 \cf2 master} VerticalPad 0 @@ -107492,14 +110078,14 @@ initial commit of my project} Head ID - 313 + 1304 ID - 314 + 1325 Points - {767.495, 322} - {767.68495186665018, 367.50001307132686} + {185.52111552422147, 176.13842979086073} + {148.89639532047508, 144.23157035481586} Style @@ -107509,42 +110095,32 @@ initial commit of my project} FilledArrow Legacy - LineType - 1 TailArrow 0 - Width - 3 + Tail + + ID + 1324 + Bounds - {{703.87401999999997, 369}, {127.864, 55}} + {{181.94501, 176}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 313 + 1324 Shape - Rectangle + RoundRect Style fill @@ -107552,11 +110128,11 @@ initial commit of my project} Color b - 1 + 0.837205 g - 0.806818 + 0.959184 r - 0.813024 + 0.826135 shadow @@ -107569,14 +110145,12 @@ initial commit of my project} Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 Width 3 @@ -107585,11 +110159,11 @@ initial commit of my project} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 Snapshot D} +\f0\fs24 \cf0 C3} VerticalPad 0 @@ -107600,14 +110174,14 @@ initial commit of my project} Head ID - 300 + 1347 ID - 312 + 1317 Points - {564.57530570625215, 218.49999999998803} - {564.57512402985458, 264.0000000000116} + {360.0239859631576, 231.13000000001833} + {360.02387922107692, 213.4999999999722} Style @@ -107617,23 +110191,19 @@ initial commit of my project} FilledArrow Legacy - LineType - 1 TailArrow 0 - Width - 2 Tail ID - 309 + 1316 Bounds - {{516.89697000000001, 162}, {95.356903000000003, 55}} + {{325.01299999999998, 232.13}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -107641,21 +110211,19 @@ initial commit of my project} Color b - 0 + 0.8 g - 0 + 0.8 r - 0 + 0.8 Font - Geneva - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 309 + 1316 Shape Rectangle Style @@ -107665,11 +110233,11 @@ initial commit of my project} Color b - 0.832366 + 0.933333 g - 0.841837 + 0.933333 r - 0.820446 + 0.933333 shadow @@ -107682,27 +110250,25 @@ initial commit of my project} Color b - 0.301453 + 0.382653 g - 0.297998 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 v1.0} +\f0\fs20 \cf2 server} VerticalPad 0 @@ -107713,14 +110279,14 @@ initial commit of my project} Head ID - 303 + 1304 ID - 307 + 1308 Points - {767.80642405797096, 120.5} - {767.80642405797096, 160.5} + {180.44501000000002, 126.37} + {153.97250099999999, 126.37} Style @@ -107730,47 +110296,32 @@ initial commit of my project} FilledArrow Legacy - LineType - 1 TailArrow 0 - Width - 2 Tail ID - 306 + 1307 Bounds - {{720.12798999999995, 64}, {95.356903000000003, 55}} + {{181.94501, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 0.336735 - g - 0.336735 - r - 0.336735 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 306 + 1307 Shape - Rectangle + RoundRect Style fill @@ -107778,11 +110329,11 @@ initial commit of my project} Color b - 0.902991 + 0.837205 g - 0.913265 + 0.959184 r - 0.890059 + 0.826135 shadow @@ -107795,14 +110346,12 @@ initial commit of my project} Color b - 0.301453 + 0.382653 g - 0.297998 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 Width 3 @@ -107811,11 +110360,11 @@ initial commit of my project} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;\red86\green86\blue86;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf2 HEAD} +\f0\fs24 \cf0 C5} VerticalPad 0 @@ -107826,14 +110375,14 @@ initial commit of my project} Head ID - 315 + 1299 ID - 305 + 1306 Points - {767.80632296865144, 218.49999999998749} - {767.80613699705282, 264.00000000001222} + {102.81500000000003, 126.37} + {76.657500999999982, 126.37} Style @@ -107843,47 +110392,32 @@ initial commit of my project} FilledArrow Legacy - LineType - 1 TailArrow 0 - Width - 2 Tail ID - 303 + 1304 Bounds - {{720.12798999999995, 162}, {95.356903000000003, 55}} + {{104.315, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 0 - g - 0 - r - 0 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 303 + 1304 Shape - Rectangle + RoundRect Style fill @@ -107891,11 +110425,11 @@ initial commit of my project} Color b - 0.832366 + 0.837205 g - 0.841837 + 0.959184 r - 0.820446 + 0.826135 shadow @@ -107908,14 +110442,12 @@ initial commit of my project} Color b - 0.301453 + 0.382653 g - 0.297998 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 Width 3 @@ -107924,66 +110456,182 @@ initial commit of my project} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 master} +\f0\fs24 \cf0 C2} VerticalPad 0 + Bounds + {{27, 108.37}, {48.157501000000003, 36}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 299 + Font + Helvetica + Size + 12 ID - 302 - Points - - {499.14301, 293} - {426.77599000000004, 293} - + 1299 + Shape + RoundRect Style + fill + + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + Width 3 - Tail + Text - ID - 300 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 C1} + VerticalPad + 0 + + + + GridInfo + + HPages + 2 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + OutlineStyle + Basic + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + 331 + UniqueID + 33 + VPages + 2 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {805, 732}} + Class + SolidGraphic + ID + 2 + Style + + stroke + + Draws + NO + + BaseZoom + 0 + CanvasOrigin + {0, 0} + CanvasSize + {805, 732} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + Class LineGraphic Head ID - 298 + 1356 ID - 301 + 1359 Points - {295.91199, 293} - {229.36400000000003, 293} + {437.32140819406663, 84.999877594906764} + {437.66363141530377, 106.87018360634559} Style @@ -107997,19 +110645,17 @@ initial commit of my project} 1 TailArrow 0 - Width - 3 Tail ID - 299 + 1358 Bounds - {{500.64301, 265.5}, {127.864, 55}} + {{402.01299999999998, 48}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -108017,21 +110663,19 @@ initial commit of my project} Color b - 0 + 0.8 g - 0 + 0.8 r - 0 + 0.8 Font - Geneva - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 300 + 1358 Shape Rectangle Style @@ -108041,11 +110685,11 @@ initial commit of my project} Color b - 0.699991 + 0.933333 g - 1 + 0.933333 r - 0.726874 + 0.933333 shadow @@ -108058,58 +110702,80 @@ initial commit of my project} Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 f30ab} +\f0\fs20 \cf2 client} VerticalPad 0 - Bounds - {{297.41199, 265.5}, {127.864, 55}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Color + ID + 1354 + + ID + 1357 + Points + + {412.39001000000002, 126.37} + {386.54751100000004, 126.37} + + Style + + stroke - b - 0 - g - 0 - r + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow 0 + + Tail + + ID + 1356 + + + + Bounds + {{413.89001000000002, 108.37}, {48.157501000000003, 36}} + Class + ShapedGraphic + FontInfo + Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 299 + 1356 Shape - Rectangle + RoundRect Style fill @@ -108117,11 +110783,11 @@ initial commit of my project} Color b - 0.699991 + 0.837205 g - 1 + 0.959184 r - 0.726874 + 0.826135 shadow @@ -108134,58 +110800,80 @@ initial commit of my project} Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width 3 - Text + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 C9'} + VerticalPad + 0 + + + + Class + LineGraphic + Head + + ID + 1341 + + ID + 1355 + Points + + {335.39001000000002, 126.37} + {308.60251100000005, 126.37} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs36 \cf0 34ac2} - VerticalPad - 0 + ID + 1354 Bounds - {{100, 265.5}, {127.864, 55}} + {{336.89001000000002, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 0 - g - 0 - r - 0 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 298 + 1354 Shape - Rectangle + RoundRect Style fill @@ -108193,11 +110881,11 @@ initial commit of my project} Color b - 0.699991 + 0.837205 g - 1 + 0.959184 r - 0.726874 + 0.826135 shadow @@ -108210,14 +110898,12 @@ initial commit of my project} Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width 3 @@ -108226,11 +110912,11 @@ initial commit of my project} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 98ca9} +\f0\fs24 \cf0 C8'} VerticalPad 0 @@ -108241,14 +110927,14 @@ initial commit of my project} Head ID - 296 + 1341 ID - 297 + 1353 Points - {564.26397999999995, 322} - {564.45393797403801, 367.50001307216741} + {283.0239937845617, 84.999999999984098} + {283.02387037394931, 106.87000000002382} Style @@ -108262,14 +110948,61 @@ initial commit of my project} 1 TailArrow 0 - Width - 3 + Tail + + ID + 1330 + + + + Class + LineGraphic + Head + + ID + 1345 + + ID + 1350 + Points + + {334.44501000000002, 309} + {308.60251100000005, 309} + + Style + + stroke + + Color + + b + 0.709184 + g + 0.709184 + r + 0.709184 + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1349 + Bounds - {{500.64301, 369}, {127.864, 55}} + {{335.94501000000002, 291}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -108277,23 +111010,21 @@ initial commit of my project} Color b - 1 + 0.617347 g - 1 + 0.617347 r - 1 + 0.617347 Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 296 + 1349 Shape - Rectangle + RoundRect Style fill @@ -108301,11 +111032,11 @@ initial commit of my project} Color b - 1 + 0.896649 g - 0.806818 + 0.959184 r - 0.813024 + 0.895628 shadow @@ -108318,14 +111049,12 @@ initial commit of my project} Color b - 0.316327 + 0.709184 g - 0.139073 + 0.709184 r - 0.109175 + 0.709184 - CornerRadius - 5 Width 3 @@ -108334,11 +111063,11 @@ initial commit of my project} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red157\green157\blue157;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 Snapshot C} +\f0\fs24 \cf2 C9} VerticalPad 0 @@ -108349,14 +111078,14 @@ initial commit of my project} Head ID - 294 + 1332 ID - 295 + 1348 Points - {361.03298999999998, 322} - {361.22292965187461, 367.50001306964583} + {334.44501000000002, 194} + {308.60251100000005, 194} Style @@ -108370,38 +111099,30 @@ initial commit of my project} 1 TailArrow 0 - Width - 3 + Tail + + ID + 1347 + Bounds - {{297.41199, 369}, {127.864, 55}} + {{335.94501000000002, 176}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 294 + 1347 Shape - Rectangle + RoundRect Style fill @@ -108409,11 +111130,11 @@ initial commit of my project} Color b - 1 + 0.837205 g - 0.806818 + 0.959184 r - 0.813024 + 0.826135 shadow @@ -108426,14 +111147,12 @@ initial commit of my project} Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 Width 3 @@ -108442,11 +111161,11 @@ initial commit of my project} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 Snapshot B} +\f0\fs24 \cf0 C10} VerticalPad 0 @@ -108457,19 +111176,28 @@ initial commit of my project} Head ID - 292 + 1324 ID - 293 + 1346 Points - {164.11160318488166, 321.99997123385248} - {164.39339502458051, 367.50002876672113} + {270.13703681495736, 289.75359449677069} + {218.91048418345164, 213.24640550327791} Style stroke + Color + + b + 0.709184 + g + 0.709184 + r + 0.709184 + HeadArrow FilledArrow Legacy @@ -108478,19 +111206,17 @@ initial commit of my project} 1 TailArrow 0 - Width - 3 Tail ID - 298 + 1345 Bounds - {{100.64100000000001, 369}, {127.864, 55}} + {{258.94501000000002, 291}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -108498,23 +111224,21 @@ initial commit of my project} Color b - 1 + 0.617347 g - 1 + 0.617347 r - 1 + 0.617347 Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 292 + 1345 Shape - Rectangle + RoundRect Style fill @@ -108522,11 +111246,11 @@ initial commit of my project} Color b - 1 + 0.896649 g - 0.806818 + 0.959184 r - 0.813024 + 0.895628 shadow @@ -108539,14 +111263,12 @@ initial commit of my project} Color b - 0.316327 + 0.709184 g - 0.139073 + 0.709184 r - 0.109175 + 0.709184 - CornerRadius - 5 Width 3 @@ -108555,178 +111277,79 @@ initial commit of my project} Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red157\green157\blue157;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 Snapshot A} +\f0\fs24 \cf2 C8} VerticalPad 0 - - GridInfo - - HPages - 2 - KeepToScale - - Layers - - - Lock - NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 1 - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - 308 - UniqueID - 90 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 553}} - Class - SolidGraphic - ID - 2 - Style - - stroke - - Draws - NO - - - - BaseZoom - 0 - CanvasOrigin - {0, 0} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - - Bounds - {{317, 328.18200999999999}, {29, 14}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo + LineGraphic + Head - Font - Courier - Size - 12 + ID + 1307 ID - 131 - Shape - Rectangle + 1343 + Points + + {257.44501000000002, 126.37} + {231.60251099999999, 126.37} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 v1.3} - VerticalPad - 0 + ID + 1341 - Wrap - NO Bounds - {{232.23598999999999, 320.81698999999998}, {56, 26.1462}} + {{258.94501000000002, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - GillSans + Helvetica Size - 14 + 12 ID - 130 + 1341 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -108735,87 +111358,96 @@ initial commit of my project} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 tag} +\f0\fs24 \cf0 C6} VerticalPad 0 - Wrap - NO Class LineGraphic + Head + + ID + 1324 + ID - 129 + 1333 Points - {381.76400999999998, 345.96301} - {232.23598999999999, 345.96301} + {257.44501000000002, 194} + {231.60251099999999, 194} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 - Width - 2 + Tail + + ID + 1332 + Bounds - {{315, 307.03600999999998}, {37, 14}} + {{258.94501000000002, 176}, {48.157501000000003, 36}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font - Courier + Helvetica Size 12 ID - 128 + 1332 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -108824,53 +111456,70 @@ initial commit of my project} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 Scott} +\f0\fs24 \cf0 C4} VerticalPad 0 - Wrap - NO Bounds - {{314.5, 284.03600999999998}, {44, 14}} + {{248.01300000000001, 48}, {70.022201999999993, 36}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Courier + LucidaGrande Size - 12 + 10 ID - 127 + 1330 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.933333 + g + 0.933333 + r + 0.933333 + shadow @@ -108879,53 +111528,94 @@ initial commit of my project} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 2 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 commit} +\f0\fs20 \cf2 master} VerticalPad 0 - Wrap - NO + + + Class + LineGraphic + Head + + ID + 1304 + + ID + 1325 + Points + + {185.52111552422147, 176.13842979086073} + {148.89639532047508, 144.23157035481586} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + + + Tail + + ID + 1324 + Bounds - {{315, 263.03600999999998}, {37, 14}} + {{181.94501, 176}, {48.157501000000003, 36}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font - Courier + Helvetica Size 12 ID - 126 + 1324 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -108934,53 +111624,103 @@ initial commit of my project} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs24 \cf0 ae668} +\f0\fs24 \cf0 C3} VerticalPad 0 - Wrap - NO + + + Class + LineGraphic + Head + + ID + 1347 + + ID + 1317 + Points + + {360.02398868206888, 232.50000000001748} + {360.02387636413772, 213.49999999997351} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + + + Tail + + ID + 1316 + Bounds - {{239.5, 353.03600999999998}, {135, 22}} + {{325.01299999999998, 233.5}, {70.022201999999993, 36}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Monaco + LucidaGrande Size - 8 + 10 ID - 115 + 1316 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.933333 + g + 0.933333 + r + 0.933333 + shadow @@ -108989,56 +111729,53 @@ initial commit of my project} stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 2 Text - Align - 0 - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;\red75\green75\blue75;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs16 \cf2 \expnd0\expndtw0\kerning0 -my tag message that explains\ -this tag } +\f0\fs20 \cf2 server} VerticalPad 0 - Wrap - NO Class LineGraphic + Head + + ID + 1304 + ID - 114 + 1308 Points - {304.00001934211451, 345.96301} - {302.96399000000002, 258.78600999999998} + {180.44501000000002, 126.37} + {153.97250099999999, 126.37} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy TailArrow @@ -109048,33 +111785,38 @@ this tag } Tail ID - 129 - Position - 0.52006298303604126 + 1307 Bounds - {{234.47099, 297.96301}, {56, 26.1462}} + {{181.94501, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - GillSans + Helvetica Size - 14 + 12 ID - 112 + 1307 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -109083,49 +111825,94 @@ this tag } stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 tagger} +\f0\fs24 \cf0 C5} VerticalPad 0 - Wrap - NO + + + Class + LineGraphic + Head + + ID + 1299 + + ID + 1306 + Points + + {102.81500000000003, 126.37} + {76.657500999999982, 126.37} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + + + Tail + + ID + 1304 + Bounds - {{234.47099, 276.96301}, {56, 26.1462}} + {{104.315, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - GillSans + Helvetica Size - 14 + 12 ID - 111 + 1304 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -109134,49 +111921,61 @@ this tag } stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 type} +\f0\fs24 \cf0 C2} VerticalPad 0 - Wrap - NO Bounds - {{234.47099, 255.96299999999999}, {56, 26.1462}} + {{27, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo Font - GillSans + Helvetica Size - 14 + 12 ID - 110 + 1299 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -109185,155 +111984,230 @@ this tag } stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 object} +\f0\fs24 \cf0 C1} VerticalPad 0 - Wrap - NO + + GridInfo + + HPages + 2 + KeepToScale + + Layers + - Class - LineGraphic - ID - 109 - Points - - {382.48599000000002, 325.07299999999998} - {232.95599000000001, 325.07299999999998} - - Style - - stroke - - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 2 - + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + OutlineStyle + Basic + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + 332 + UniqueID + 34 + VPages + 2 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {805, 732}} + Class + SolidGraphic + ID + 2 + Style + + stroke + + Draws + NO + + BaseZoom + 0 + CanvasOrigin + {0, 0} + CanvasSize + {805, 732} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + Class LineGraphic + Head + + ID + 1356 + ID - 107 + 1363 Points - {383, 302.10901000000001} - {233.47099, 302.10901000000001} + {441.02400048580557, 234.74001000001402} + {441.02386362774172, 208.86999999997903} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 - Width - 2 + Tail + + ID + 1330 + Class LineGraphic + Head + + ID + 1356 + ID - 106 + 1362 Points - {382.48599000000002, 281.10901000000001} - {232.95599000000001, 281.10901000000001} + {441.02400048578994, 143.99999999998602} + {441.02386362775763, 169.87000000002098} Style stroke - Color - - b - 0.382653 - g - 0.382653 - r - 0.382653 - HeadArrow - 0 + FilledArrow Legacy + LineType + 1 TailArrow 0 - Width - 2 + Tail + + ID + 1361 + Bounds - {{270, 188}, {76, 22}} + {{406.01299999999998, 107}, {70.022201999999993, 36}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo + Color + + b + 0.8 + g + 0.8 + r + 0.8 + Font - Courier + LucidaGrande Size - 18 + 10 ID - 66 + 1361 Shape Rectangle Style fill - Draws - NO + Color + + b + 0.933333 + g + 0.933333 + r + 0.933333 + shadow @@ -109342,384 +112216,144 @@ this tag } stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 2 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 49e11..} +\f0\fs20 \cf2 client} VerticalPad 0 - Wrap - NO Class - Group - Graphics + LineGraphic + Head + + ID + 1354 + + ID + 1357 + Points + {415.44501000000002, 189.37} + {389.60251100000005, 189.37} + + Style + + stroke - Bounds - {{343, 220.565}, {27, 29.706301}} - Class - ShapedGraphic - FontInfo - - Color - - b - 0.489796 - g - 0.489796 - r - 0.489796 - - Font - GillSans - Size - 18 - - ID - 61 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;\red125\green125\blue125;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs36 \cf2 size} - VerticalPad - 0 - - Wrap - NO - - - Bounds - {{244, 220.565}, {22, 29.706301}} - Class - ShapedGraphic - FontInfo - - Font - GillSans-Bold - Size - 18 - - ID - 62 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 GillSans;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\b\fs36 \cf0 tag} - VerticalPad - 0 - - Wrap - NO - - - Class - LineGraphic - ID - 63 - Points - - {329, 215.16399999999999} - {329, 258.37200999999999} - - Style - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - - + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + Tail + + ID + 1356 + + + + Bounds + {{416.94501000000002, 171.37}, {48.157501000000003, 36}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 12 + + ID + 1356 + Shape + RoundRect + Style + + fill - Class - LineGraphic - ID - 64 - Points - - {384, 258.37200999999999} - {230, 258.37200999999999} - - Style + Color - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - HeadArrow - 0 - Legacy - - TailArrow - 0 - Width - 3 - + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow - Bounds - {{230, 212.46299999999999}, {154, 175.53700000000001}} - Class - ShapedGraphic - FontInfo - - Color - - b - 1 - g - 1 - r - 1 - - Font - Geneva - NSKern - 0.0 - Size - 14 - - ID - 65 - Shape - Rectangle - Style - - fill - - Color - - b - 0.760284 - g - 0.885853 - r - 1 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.31599 - g - 0.295367 - r - 0.316327 - - CornerRadius - 5 - Width - 3 - - - Text - - VerticalPad - 0 - - - - ID - 60 - - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - - Lock - NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 1 - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - Canvas 82 - UniqueID - 91 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 553}} - Class - SolidGraphic - ID - 2 - Style - - stroke + Draws + NO + + stroke + + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 + + + Text - Draws - NO + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 C9'} + VerticalPad + 0 - - BaseZoom - 0 - CanvasOrigin - {0, 0} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - Class LineGraphic Head ID - 339 + 1341 ID - 340 + 1355 Points - {194.17970983114935, 322} - {194.17970983114935, 343.5} + {338.44501000000002, 189.37} + {312.60251100000005, 189.37} Style @@ -109738,36 +112372,25 @@ this tag } Tail ID - 333 + 1354 Bounds - {{160, 345}, {68.359397999999999, 42}} + {{339.94501000000002, 171.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 339 + 1354 Shape - Rectangle + RoundRect Style fill @@ -109775,11 +112398,11 @@ this tag } Color b - 0.715909 + 0.837205 g - 0.715909 + 0.959184 r - 1 + 0.826135 shadow @@ -109792,14 +112415,12 @@ this tag } Color b - 0.100458 + 0.382653 g - 0.0970254 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 Width 3 @@ -109808,11 +112429,11 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 blob} +\f0\fs24 \cf0 C8'} VerticalPad 0 @@ -109823,14 +112444,14 @@ this tag } Head ID - 332 + 1332 ID - 338 + 1348 Points - {145.40261064266895, 181.49998594879185} - {145.27708638208279, 210.50001405063819} + {338.44501000000002, 257} + {312.60251100000005, 257} Style @@ -109849,42 +112470,70 @@ this tag } Tail ID - 313 + 1347 + Bounds + {{339.94501000000002, 239}, {48.157501000000003, 36}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 333 + Font + Helvetica + Size + 12 ID - 336 - Points - - {161.54318242026321, 255.20758373875094} - {177.81621753411557, 277.29241620950722} - + 1347 + Shape + RoundRect Style + fill + + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 - Tail + Text - ID - 332 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 C10} + VerticalPad + 0 @@ -109893,14 +112542,14 @@ this tag } Head ID - 334 + 1307 ID - 335 + 1343 Points - {131.77495400279301, 255.28538580630342} - {118.58443913413093, 277.21461406787535} + {261.44501000000002, 189.37} + {235.60251099999999, 189.37} Style @@ -109919,36 +112568,25 @@ this tag } Tail ID - 332 + 1341 Bounds - {{71, 278.5}, {68.359397999999999, 42}} + {{262.94501000000002, 171.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 334 + 1341 Shape - Rectangle + RoundRect Style fill @@ -109956,11 +112594,11 @@ this tag } Color b - 0.715909 + 0.837205 g - 0.715909 + 0.959184 r - 1 + 0.826135 shadow @@ -109973,14 +112611,12 @@ this tag } Color b - 0.100458 + 0.382653 g - 0.0970254 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 Width 3 @@ -109989,42 +112625,66 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 blob} +\f0\fs24 \cf0 C6} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1324 + + ID + 1333 + Points + + {261.44501000000002, 257} + {235.60251099999999, 257} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1332 + + Bounds - {{160, 278.5}, {68.359397999999999, 42}} + {{262.94501000000002, 239}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 333 + 1332 Shape - Rectangle + RoundRect Style fill @@ -110032,11 +112692,11 @@ this tag } Color b - 1 + 0.837205 g - 0.806818 + 0.959184 r - 0.813024 + 0.826135 shadow @@ -110049,14 +112709,12 @@ this tag } Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 Width 3 @@ -110065,18 +112723,18 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 tree} +\f0\fs24 \cf0 C4} VerticalPad 0 Bounds - {{111, 212}, {68.359397999999999, 42}} + {{406.01299999999998, 235.74001000000001}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -110084,21 +112742,19 @@ this tag } Color b - 1 + 0.8 g - 1 + 0.8 r - 1 + 0.8 Font - Geneva - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 332 + 1330 Shape Rectangle Style @@ -110108,11 +112764,11 @@ this tag } Color b - 1 + 0.933333 g - 0.806818 + 0.933333 r - 0.813024 + 0.933333 shadow @@ -110125,27 +112781,25 @@ this tag } Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 tree} +\f0\fs20 \cf2 master} VerticalPad 0 @@ -110156,14 +112810,14 @@ this tag } Head ID - 312 + 1304 ID - 331 + 1325 Points - {519.72318375553709, 107.4999859153323} - {519.59751012859067, 136.50001408607875} + {189.52111552846054, 239.13842978688436} + {152.89639533228666, 207.23157034373642} Style @@ -110173,8 +112827,6 @@ this tag } FilledArrow Legacy - LineType - 1 TailArrow 0 @@ -110182,42 +112834,70 @@ this tag } Tail ID - 303 + 1324 + Bounds + {{185.94501, 239}, {48.157501000000003, 36}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 322 + Font + Helvetica + Size + 12 ID - 329 - Points - - {519.4026104834943, 181.49998594874592} - {519.27708601774941, 210.50001405053305} - + 1324 + Shape + RoundRect Style + fill + + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 - Tail + Text - ID - 312 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 C3} + VerticalPad + 0 @@ -110226,14 +112906,14 @@ this tag } Head ID - 317 + 1347 ID - 328 + 1317 Points - {332.40261096101824, 181.4999859488837} - {332.27708711074962, 210.50001405084845} + {364.02399175424137, 297.26001000001656} + {364.02387238881823, 276.49999999997533} Style @@ -110243,8 +112923,6 @@ this tag } FilledArrow Legacy - LineType - 1 TailArrow 0 @@ -110252,42 +112930,79 @@ this tag } Tail ID - 311 + 1316 + Bounds + {{329.01299999999998, 298.26001000000002}, {70.022201999999993, 36}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 323 + Color + + b + 0.8 + g + 0.8 + r + 0.8 + + Font + LucidaGrande + Size + 10 ID - 326 - Points - - {535.54318366342898, 255.20758370583835} - {551.81622001357573, 277.29241614386399} - + 1316 + Shape + Rectangle Style + fill + + Color + + b + 0.933333 + g + 0.933333 + r + 0.933333 + + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 2 - Tail + Text - ID - 322 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs20 \cf2 server} + VerticalPad + 0 @@ -110296,14 +113011,14 @@ this tag } Head ID - 324 + 1304 ID - 325 + 1308 Points - {505.77495336218118, 255.28538578972899} - {492.58443786314518, 277.21461403499143} + {184.44501000000002, 189.37} + {157.97250099999999, 189.37} Style @@ -110313,8 +113028,6 @@ this tag } FilledArrow Legacy - LineType - 1 TailArrow 0 @@ -110322,36 +113035,25 @@ this tag } Tail ID - 322 + 1307 Bounds - {{445, 278.5}, {68.359397999999999, 42}} + {{185.94501, 171.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 324 + 1307 Shape - Rectangle + RoundRect Style fill @@ -110359,11 +113061,11 @@ this tag } Color b - 0.715909 + 0.837205 g - 0.715909 + 0.959184 r - 1 + 0.826135 shadow @@ -110376,14 +113078,12 @@ this tag } Color b - 0.100458 + 0.382653 g - 0.0970254 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 Width 3 @@ -110392,42 +113092,64 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 blob} +\f0\fs24 \cf0 C5} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1299 + + ID + 1306 + Points + + {106.81500000000003, 189.37} + {80.657500999999982, 189.37} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + + + Tail + + ID + 1304 + + Bounds - {{534, 278.5}, {68.359397999999999, 42}} + {{108.315, 171.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 323 + 1304 Shape - Rectangle + RoundRect Style fill @@ -110435,11 +113157,11 @@ this tag } Color b - 1 + 0.837205 g - 0.806818 + 0.959184 r - 0.813024 + 0.826135 shadow @@ -110452,16 +113174,12 @@ this tag } Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 - Pattern - 11 Width 3 @@ -110470,42 +113188,31 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 tree} +\f0\fs24 \cf0 C2} VerticalPad 0 Bounds - {{485, 212}, {68.359397999999999, 42}} + {{31, 171.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 322 + 1299 Shape - Rectangle + RoundRect Style fill @@ -110513,11 +113220,11 @@ this tag } Color b - 1 + 0.837205 g - 0.806818 + 0.959184 r - 0.813024 + 0.826135 shadow @@ -110530,14 +113237,12 @@ this tag } Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 Width 3 @@ -110546,29 +113251,119 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 tree} +\f0\fs24 \cf0 C1} VerticalPad 0 + + GridInfo + + HPages + 2 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + OutlineStyle + Basic + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + 333 + UniqueID + 35 + VPages + 2 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {805, 732}} + Class + SolidGraphic + ID + 2 + Style + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + CanvasSize + {805, 732} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + Class LineGraphic Head ID - 318 + 1356 ID - 321 + 1367 Points - {348.54318273105469, 255.20758373052277} - {364.81621815398069, 277.29241619309641} + {488.44500999999997, 126.37} + {462.60251100000005, 126.37} Style @@ -110587,7 +113382,7 @@ this tag } Tail ID - 317 + 1362 @@ -110596,14 +113391,14 @@ this tag } Head ID - 319 + 1363 ID - 320 + 1366 Points - {318.77495336218118, 255.28538578972899} - {305.58443786314518, 277.21461403499143} + {642.44501000000002, 126.37} + {616.60251099999994, 126.37} Style @@ -110622,36 +113417,25 @@ this tag } Tail ID - 317 + 1365 Bounds - {{258, 278.5}, {68.359397999999999, 42}} + {{643.94501000000002, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 319 + 1365 Shape - Rectangle + RoundRect Style fill @@ -110659,11 +113443,11 @@ this tag } Color b - 0.715909 + 0.837205 g - 0.715909 + 0.959184 r - 1 + 0.826135 shadow @@ -110676,14 +113460,12 @@ this tag } Color b - 0.100458 + 0.382653 g - 0.0970254 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 Width 3 @@ -110692,42 +113474,66 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 blob} +\f0\fs24 \cf0 C10'} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1362 + + ID + 1364 + Points + + {565.44501000000002, 126.37} + {539.60251099999994, 126.37} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1363 + + Bounds - {{347, 278.5}, {68.359397999999999, 42}} + {{566.94501000000002, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 318 + 1363 Shape - Rectangle + RoundRect Style fill @@ -110735,11 +113541,11 @@ this tag } Color b - 1 + 0.837205 g - 0.806818 + 0.959184 r - 0.813024 + 0.826135 shadow @@ -110752,16 +113558,12 @@ this tag } Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 - Pattern - 11 Width 3 @@ -110770,42 +113572,31 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 tree} +\f0\fs24 \cf0 C4'} VerticalPad 0 Bounds - {{298, 212}, {68.359397999999999, 42}} + {{489.94501000000002, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 317 + 1362 Shape - Rectangle + RoundRect Style fill @@ -110813,11 +113604,11 @@ this tag } Color b - 1 + 0.837205 g - 0.806818 + 0.959184 r - 0.813024 + 0.826135 shadow @@ -110830,14 +113621,12 @@ this tag } Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 Width 3 @@ -110846,11 +113635,11 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 tree} +\f0\fs24 \cf0 C3'} VerticalPad 0 @@ -110861,49 +113650,14 @@ this tag } Head ID - 311 - - ID - 316 - Points - - {483.5, 159} - {368.5, 159} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 312 - - - - Class - LineGraphic - Head - - ID - 313 + 1365 ID - 315 + 1361 Points - {296.5, 159} - {181.5, 159} + {668.02399006508438, 86.999999999982961} + {668.02387405051718, 106.87000000002544} Style @@ -110913,8 +113667,6 @@ this tag } FilledArrow Legacy - LineType - 1 TailArrow 0 @@ -110922,12 +113674,12 @@ this tag } Tail ID - 311 + 1360 Bounds - {{111, 138}, {69, 42}} + {{633.01300000000003, 50}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -110935,21 +113687,19 @@ this tag } Color b - 0 + 0.8 g - 0 + 0.8 r - 0 + 0.8 Font - Courier - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 313 + 1360 Shape Rectangle Style @@ -110959,11 +113709,11 @@ this tag } Color b - 0.699991 + 0.933333 g - 1 + 0.933333 r - 0.726874 + 0.933333 shadow @@ -110976,34 +113726,67 @@ this tag } Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 commit} +\f0\fs20 \cf2 server} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1356 + + ID + 1359 + Points + + {437.02399034255933, 86.999999999983046} + {437.02387461817267, 106.8700000000257} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1358 + + Bounds - {{485, 138}, {69, 42}} + {{402.01299999999998, 50}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -111011,21 +113794,19 @@ this tag } Color b - 0 + 0.8 g - 0 + 0.8 r - 0 + 0.8 Font - Courier - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 312 + 1358 Shape Rectangle Style @@ -111035,11 +113816,11 @@ this tag } Color b - 0.699991 + 0.933333 g - 1 + 0.933333 r - 0.726874 + 0.933333 shadow @@ -111052,58 +113833,80 @@ this tag } Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 commit} +\f0\fs20 \cf2 client} VerticalPad 0 - Bounds - {{298, 138}, {69, 42}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Color + ID + 1354 + + ID + 1357 + Points + + {411.44501000000002, 126.37} + {385.60251100000005, 126.37} + + Style + + stroke - b - 0 - g - 0 - r + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow 0 + + Tail + + ID + 1356 + + + + Bounds + {{412.94501000000002, 108.37}, {48.157501000000003, 36}} + Class + ShapedGraphic + FontInfo + Font - Courier - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 311 + 1356 Shape - Rectangle + RoundRect Style fill @@ -111111,11 +113914,11 @@ this tag } Color b - 0.699991 + 0.837205 g - 1 + 0.959184 r - 0.726874 + 0.826135 shadow @@ -111128,14 +113931,12 @@ this tag } Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width 3 @@ -111144,42 +113945,66 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 commit} +\f0\fs24 \cf0 C9'} VerticalPad 0 - Bounds - {{485.64098999999999, 64}, {68.359397999999999, 42}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Color + ID + 1341 + + ID + 1355 + Points + + {334.44501000000002, 126.37} + {308.60251100000005, 126.37} + + Style + + stroke - b - 0 - g - 0 - r + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow 0 + + Tail + + ID + 1354 + + + + Bounds + {{335.94501000000002, 108.37}, {48.157501000000003, 36}} + Class + ShapedGraphic + FontInfo + Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 303 + 1354 Shape - Rectangle + RoundRect Style fill @@ -111187,11 +114012,11 @@ this tag } Color b - 0.832366 + 0.837205 g - 0.841837 + 0.959184 r - 0.820446 + 0.826135 shadow @@ -111204,14 +114029,12 @@ this tag } Color b - 0.301453 + 0.382653 g - 0.297998 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 Width 3 @@ -111220,120 +114043,78 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 ref} +\f0\fs24 \cf0 C8'} VerticalPad 0 - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - - Lock - NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 1 - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - 303 - UniqueID - 85 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 553}} - Class - SolidGraphic - ID - 2 - Style - stroke + Class + LineGraphic + Head - Draws - NO + ID + 1356 + + ID + 1353 + Points + + {437.02400534186069, 175.00000000001268} + {437.02385868282926, 145.86999999998099} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1330 - - BaseZoom - 0 - CanvasOrigin - {0, 0} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - Class LineGraphic Head ID - 343 + 1332 ID - 344 + 1348 Points - {519.16301999999996, 181.5} - {519.35277593826117, 210.50003211005961} + {334.44501000000002, 194} + {308.60251100000005, 194} Style stroke + Color + + b + 0.734694 + g + 0.734694 + r + 0.734694 + HeadArrow FilledArrow Legacy @@ -111344,10 +114125,15 @@ this tag } 0 + Tail + + ID + 1347 + Bounds - {{477.5, 212}, {84, 42}} + {{335.94501000000002, 176}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -111355,23 +114141,21 @@ this tag } Color b - 1 + 0.69898 g - 1 + 0.69898 r - 1 + 0.69898 Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 343 + 1347 Shape - Rectangle + RoundRect Style fill @@ -111379,11 +114163,11 @@ this tag } Color b - 1 + 0.885418 g - 0.806818 + 0.959184 r - 0.813024 + 0.880584 shadow @@ -111396,14 +114180,12 @@ this tag } Color b - 0.316327 + 0.734694 g - 0.139073 + 0.734694 r - 0.109175 + 0.734694 - CornerRadius - 5 Width 3 @@ -111412,11 +114194,11 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red178\green178\blue178;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 snapshot} +\f0\fs24 \cf2 C10} VerticalPad 0 @@ -111427,14 +114209,14 @@ this tag } Head ID - 341 + 1307 ID - 342 + 1343 Points - {332.16298999999998, 181.5} - {332.35276283152115, 210.50003211577695} + {257.44501000000002, 126.37} + {231.60251099999999, 126.37} Style @@ -111450,34 +114232,28 @@ this tag } 0 + Tail + + ID + 1341 + Bounds - {{290.5, 212}, {84, 42}} + {{258.94501000000002, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 341 + 1341 Shape - Rectangle + RoundRect Style fill @@ -111485,11 +114261,11 @@ this tag } Color b - 1 + 0.837205 g - 0.806818 + 0.959184 r - 0.813024 + 0.826135 shadow @@ -111502,14 +114278,12 @@ this tag } Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 Width 3 @@ -111518,11 +114292,11 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 snapshot} +\f0\fs24 \cf0 C6} VerticalPad 0 @@ -111533,19 +114307,28 @@ this tag } Head ID - 332 + 1324 ID - 338 + 1333 Points - {145.49955335332589, 181.49999999970444} - {145.49897767539034, 210.50000000154836} + {257.44501000000002, 194} + {231.60251099999999, 194} Style stroke + Color + + b + 0.734694 + g + 0.734694 + r + 0.734694 + HeadArrow FilledArrow Legacy @@ -111559,12 +114342,12 @@ this tag } Tail ID - 313 + 1332 Bounds - {{103.5, 212}, {84, 42}} + {{258.94501000000002, 176}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -111572,23 +114355,21 @@ this tag } Color b - 1 + 0.69898 g - 1 + 0.69898 r - 1 + 0.69898 Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 332 + 1332 Shape - Rectangle + RoundRect Style fill @@ -111596,11 +114377,11 @@ this tag } Color b - 1 + 0.885418 g - 0.806818 + 0.959184 r - 0.813024 + 0.880584 shadow @@ -111613,14 +114394,12 @@ this tag } Color b - 0.316327 + 0.734694 g - 0.139073 + 0.734694 r - 0.109175 + 0.734694 - CornerRadius - 5 Width 3 @@ -111629,95 +114408,85 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red178\green178\blue178;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 snapshot} +\f0\fs24 \cf2 C4} VerticalPad 0 + Bounds + {{402.01299999999998, 176}, {70.022201999999993, 36}} Class - LineGraphic - FontInfo - - Color - - w - 0 - - Font - Helvetica - Size - 12 - - Head - - ID - 312 - - ID - 331 - Points - - {519.72318375553709, 107.4999859153323} - {519.59751012859067, 136.50001408607875} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 303 - - - - Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 311 + Color + + b + 0.8 + g + 0.8 + r + 0.8 + + Font + LucidaGrande + Size + 10 ID - 316 - Points - - {483.5, 159} - {368.5, 159} - + 1330 + Shape + Rectangle Style + fill + + Color + + b + 0.933333 + g + 0.933333 + r + 0.933333 + + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 2 - Tail + Text - ID - 312 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs20 \cf2 master} + VerticalPad + 0 @@ -111726,25 +114495,32 @@ this tag } Head ID - 313 + 1304 ID - 315 + 1325 Points - {296.5, 159} - {181.5, 159} + {185.52111552422147, 176.13842979086073} + {148.89639532047508, 144.23157035481586} Style stroke + Color + + b + 0.734694 + g + 0.734694 + r + 0.734694 + HeadArrow FilledArrow Legacy - LineType - 1 TailArrow 0 @@ -111752,12 +114528,12 @@ this tag } Tail ID - 311 + 1324 Bounds - {{111, 138}, {69, 42}} + {{181.94501, 176}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -111765,23 +114541,21 @@ this tag } Color b - 0 + 0.69898 g - 0 + 0.69898 r - 0 + 0.69898 Font - Courier - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 313 + 1324 Shape - Rectangle + RoundRect Style fill @@ -111789,11 +114563,11 @@ this tag } Color b - 0.699991 + 0.885418 g - 1 + 0.959184 r - 0.726874 + 0.880584 shadow @@ -111806,14 +114580,12 @@ this tag } Color b - 0.172231 + 0.734694 g - 0.316327 + 0.734694 r - 0.1567 + 0.734694 - CornerRadius - 5 Width 3 @@ -111822,42 +114594,64 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red178\green178\blue178;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 commit} +\f0\fs24 \cf2 C3} VerticalPad 0 - Bounds - {{485, 138}, {69, 42}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Color + ID + 1304 + + ID + 1308 + Points + + {180.44501000000002, 126.37} + {153.97250099999999, 126.37} + + Style + + stroke - b - 0 - g - 0 - r + HeadArrow + FilledArrow + Legacy + + TailArrow 0 + + Tail + + ID + 1307 + + + + Bounds + {{181.94501, 108.37}, {48.157501000000003, 36}} + Class + ShapedGraphic + FontInfo + Font - Courier - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 312 + 1307 Shape - Rectangle + RoundRect Style fill @@ -111865,11 +114659,11 @@ this tag } Color b - 0.699991 + 0.837205 g - 1 + 0.959184 r - 0.726874 + 0.826135 shadow @@ -111882,14 +114676,12 @@ this tag } Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width 3 @@ -111898,42 +114690,64 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 commit} +\f0\fs24 \cf0 C5} VerticalPad 0 - Bounds - {{298, 138}, {69, 42}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Color + ID + 1299 + + ID + 1306 + Points + + {102.81500000000003, 126.37} + {76.657500999999982, 126.37} + + Style + + stroke - b - 0 - g - 0 - r + HeadArrow + FilledArrow + Legacy + + TailArrow 0 + + Tail + + ID + 1304 + + + + Bounds + {{104.315, 108.37}, {48.157501000000003, 36}} + Class + ShapedGraphic + FontInfo + Font - Courier - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 311 + 1304 Shape - Rectangle + RoundRect Style fill @@ -111941,11 +114755,11 @@ this tag } Color b - 0.699991 + 0.837205 g - 1 + 0.959184 r - 0.726874 + 0.826135 shadow @@ -111958,14 +114772,12 @@ this tag } Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width 3 @@ -111974,42 +114786,31 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 commit} +\f0\fs24 \cf0 C2} VerticalPad 0 Bounds - {{485.64098999999999, 64}, {68.359397999999999, 42}} + {{27, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 0 - g - 0 - r - 0 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 303 + 1299 Shape - Rectangle + RoundRect Style fill @@ -112017,11 +114818,11 @@ this tag } Color b - 0.832366 + 0.837205 g - 0.841837 + 0.959184 r - 0.820446 + 0.826135 shadow @@ -112034,14 +114835,12 @@ this tag } Color b - 0.301453 + 0.382653 g - 0.297998 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 Width 3 @@ -112050,11 +114849,11 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 ref} +\f0\fs24 \cf0 C1} VerticalPad 0 @@ -112063,7 +114862,7 @@ this tag } GridInfo HPages - 1 + 2 KeepToScale Layers @@ -112097,7 +114896,9 @@ this tag } 0.0 Orientation - 1 + 2 + OutlineStyle + Basic PrintOnePage RowAlign @@ -112105,11 +114906,11 @@ this tag } RowSpacing 36 SheetTitle - 309 + 334 UniqueID - 93 + 36 VPages - 1 + 2 ActiveLayerIndex @@ -112119,7 +114920,7 @@ this tag } BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {805, 732}} Class SolidGraphic ID @@ -112137,6 +114938,8 @@ this tag } 0 CanvasOrigin {0, 0} + CanvasSize + {805, 732} ColumnAlign 1 ColumnSpacing @@ -112145,33 +114948,190 @@ this tag } 1 in = 1.00000 in GraphicsList + + Class + LineGraphic + Head + + ID + 1356 + + ID + 1367 + Points + + {488.44500999999997, 126.37} + {462.60251100000005, 126.37} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1362 + + + + Class + LineGraphic + Head + + ID + 1363 + + ID + 1366 + Points + + {642.44501000000002, 126.37} + {616.60251099999994, 126.37} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1365 + + Bounds - {{97.820701999999997, 316}, {159.35899000000001, 32}} + {{643.94501000000002, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color + Font + Helvetica + Size + 12 + + ID + 1365 + Shape + RoundRect + Style + + fill - b - 1 - g - 1 - r - 1 + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 C10'} + VerticalPad + 0 + + + + Class + LineGraphic + Head + + ID + 1362 + + ID + 1364 + Points + + {565.44501000000002, 126.37} + {539.60251099999994, 126.37} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + Tail + + ID + 1363 + + + + Bounds + {{566.94501000000002, 108.37}, {48.157501000000003, 36}} + Class + ShapedGraphic + FontInfo + Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 354 + 1363 Shape - Rectangle + RoundRect Style fill @@ -112179,11 +115139,11 @@ this tag } Color b - 1 + 0.837205 g - 0.806818 + 0.959184 r - 0.813024 + 0.826135 shadow @@ -112196,14 +115156,12 @@ this tag } Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 Width 3 @@ -112212,42 +115170,31 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 rev 7} +\f0\fs24 \cf0 C4'} VerticalPad 0 Bounds - {{97.820701999999997, 274}, {159.35899000000001, 32}} + {{489.94501000000002, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 353 + 1362 Shape - Rectangle + RoundRect Style fill @@ -112255,11 +115202,11 @@ this tag } Color b - 1 + 0.837205 g - 0.806818 + 0.959184 r - 0.813024 + 0.826135 shadow @@ -112272,14 +115219,12 @@ this tag } Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 Width 3 @@ -112288,42 +115233,66 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 rev 6} +\f0\fs24 \cf0 C3'} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1354 + + ID + 1357 + Points + + {411.44501000000002, 126.37} + {385.60251100000005, 126.37} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1356 + + Bounds - {{97.820701999999997, 232}, {159.35899000000001, 32}} + {{412.94501000000002, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 352 + 1356 Shape - Rectangle + RoundRect Style fill @@ -112331,11 +115300,11 @@ this tag } Color b - 1 + 0.837205 g - 0.806818 + 0.959184 r - 0.813024 + 0.826135 shadow @@ -112348,14 +115317,12 @@ this tag } Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 Width 3 @@ -112364,42 +115331,66 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 rev 5} +\f0\fs24 \cf0 C9'} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1341 + + ID + 1355 + Points + + {334.44501000000002, 126.37} + {308.60251100000005, 126.37} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1354 + + Bounds - {{97.820701999999997, 190}, {159.35899000000001, 32}} + {{335.94501000000002, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 351 + 1354 Shape - Rectangle + RoundRect Style fill @@ -112407,11 +115398,11 @@ this tag } Color b - 1 + 0.837205 g - 0.806818 + 0.959184 r - 0.813024 + 0.826135 shadow @@ -112424,14 +115415,12 @@ this tag } Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 Width 3 @@ -112440,42 +115429,101 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 rev 4} +\f0\fs24 \cf0 C8'} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1365 + + ID + 1353 + Points + + {668.02399768095052, 170.00000000001478} + {668.02386646575781, 145.86999999997786} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1330 + + + + Class + LineGraphic + Head + + ID + 1307 + + ID + 1343 + Points + + {257.44501000000002, 126.37} + {231.60251099999999, 126.37} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1341 + + Bounds - {{97.820701999999997, 148}, {159.35899000000001, 32}} + {{258.94501000000002, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 350 + 1341 Shape - Rectangle + RoundRect Style fill @@ -112483,11 +115531,11 @@ this tag } Color b - 1 + 0.837205 g - 0.806818 + 0.959184 r - 0.813024 + 0.826135 shadow @@ -112500,14 +115548,12 @@ this tag } Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 Width 3 @@ -112516,18 +115562,18 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 rev 3} +\f0\fs24 \cf0 C6} VerticalPad 0 Bounds - {{97.820701999999997, 106}, {159.35899000000001, 32}} + {{633.01300000000003, 171}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -112535,21 +115581,19 @@ this tag } Color b - 1 + 0.8 g - 1 + 0.8 r - 1 + 0.8 Font - Geneva - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 349 + 1330 Shape Rectangle Style @@ -112559,11 +115603,11 @@ this tag } Color b - 1 + 0.933333 g - 0.806818 + 0.933333 r - 0.813024 + 0.933333 shadow @@ -112576,58 +115620,78 @@ this tag } Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 rev 2} +\f0\fs20 \cf2 master} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1304 + + ID + 1308 + Points + + {180.44501000000002, 126.37} + {153.97250099999999, 126.37} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + + + Tail + + ID + 1307 + + Bounds - {{353, 456}, {269, 32}} + {{181.94501, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 348 + 1307 Shape - Rectangle + RoundRect Style fill @@ -112635,11 +115699,11 @@ this tag } Color b - 0.715909 + 0.837205 g - 0.715909 + 0.959184 r - 1 + 0.826135 shadow @@ -112652,14 +115716,12 @@ this tag } Color b - 0.100458 + 0.382653 g - 0.0970254 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 Width 3 @@ -112668,42 +115730,64 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 delta, rev 5 to 6} +\f0\fs24 \cf0 C5} VerticalPad 0 + + Class + LineGraphic + Head + + ID + 1299 + + ID + 1306 + Points + + {102.81500000000003, 126.37} + {76.657500999999982, 126.37} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + + + Tail + + ID + 1304 + + Bounds - {{353, 418}, {269, 32}} + {{104.315, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 347 + 1304 Shape - Rectangle + RoundRect Style fill @@ -112711,11 +115795,11 @@ this tag } Color b - 0.715909 + 0.837205 g - 0.715909 + 0.959184 r - 1 + 0.826135 shadow @@ -112728,14 +115812,12 @@ this tag } Color b - 0.100458 + 0.382653 g - 0.0970254 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 Width 3 @@ -112744,42 +115826,31 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 delta, rev 4 to 5} +\f0\fs24 \cf0 C2} VerticalPad 0 Bounds - {{353, 380}, {269, 32}} + {{27, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 346 + 1299 Shape - Rectangle + RoundRect Style fill @@ -112787,11 +115858,11 @@ this tag } Color b - 0.715909 + 0.837205 g - 0.715909 + 0.959184 r - 1 + 0.826135 shadow @@ -112804,14 +115875,12 @@ this tag } Color b - 0.100458 + 0.382653 g - 0.0970254 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 Width 3 @@ -112820,42 +115889,156 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 delta, rev 3 to 4} +\f0\fs24 \cf0 C1} VerticalPad 0 + + GridInfo + + HPages + 2 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + OutlineStyle + Basic + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + 335 + UniqueID + 37 + VPages + 2 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {805, 732}} + Class + SolidGraphic + ID + 2 + Style + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + CanvasSize + {805, 732} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + - Bounds - {{353, 224}, {269, 150}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Color + ID + 1420 + + ID + 1428 + Points + + {166.57918596617415, 287.51586143636513} + {132.37740595136017, 264.47514871849052} + + Style + + stroke - b - 0 - g - 0 - r + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow 0 + + Tail + + ID + 1369 + + + + Bounds + {{85.817100999999994, 231.33000000000001}, {48.157501000000003, 36}} + Class + ShapedGraphic + FontInfo + Font - Courier - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 345 + 1420 Shape - Rectangle + RoundRect Style fill @@ -112863,11 +116046,11 @@ this tag } Color b - 0.699991 + 0.837205 g - 1 + 0.959184 r - 0.726874 + 0.826135 shadow @@ -112880,14 +116063,12 @@ this tag } Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width 3 @@ -112896,96 +116077,90 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 snapshot rev 3} +\f0\fs24 \cf0 C1} VerticalPad 0 - Bounds - {{105, 26}, {145, 32}} Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo + LineGraphic + Head - Font - Monaco - Size - 24 + ID + 1375 ID - 342 - Shape - Rectangle + 1405 + Points + + {163.98199, 106.607} + {135.474602, 106.607} + Style - fill - - Draws - NO - - shadow - - Draws - NO - stroke - Draws - NO + Color + + b + 0.505102 + g + 0.505102 + r + 0.505102 + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + Pattern + 2 + TailArrow + 0 - Text + Tail - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs48 \cf0 whatever.i} - VerticalPad - 0 + ID + 1344 - Wrap - NO Bounds - {{415, 26}, {145, 32}} + {{85.817100999999994, 88.607001999999994}, {48.157501000000003, 36}} Class ShapedGraphic - FitText - YES - Flow - Resize FontInfo Font - Monaco + Helvetica Size - 24 + 12 ID - 341 + 1375 Shape - Rectangle + RoundRect Style fill - Draws - NO + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + shadow @@ -112994,67 +116169,54 @@ this tag } stroke - Draws - NO + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 Text - Pad - 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Monaco;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs48 \cf0 whatever.d} +\f0\fs24 \cf0 C1} VerticalPad 0 - Wrap - NO Bounds - {{353, 186}, {269, 32}} + {{130, 47}, {36.333599, 2.5095698999999998}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 334 + 1352 Shape Rectangle Style fill - Color - - b - 0.715909 - g - 0.715909 - r - 1 - + Draws + NO shadow @@ -113063,37 +116225,30 @@ this tag } stroke - Color - - b - 0.100458 - g - 0.0970254 - r - 0.316327 - - CornerRadius - 5 - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 delta, rev 1 to 2} +\f0\b\fs24 \cf0 git.team1.ourcompany.com} VerticalPad 0 + Wrap + NO Bounds - {{97.820296999999997, 64}, {159.35899000000001, 32}} + {{164.98199, 93.107001999999994}, {70.932297000000005, 27}} Class ShapedGraphic FontInfo @@ -113101,21 +116256,19 @@ this tag } Color b - 1 + 0.8 g - 1 + 0.8 r - 1 + 0.8 Font - Geneva - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 332 + 1344 Shape Rectangle Style @@ -113125,11 +116278,11 @@ this tag } Color b - 1 + 0.933333 g - 0.806818 + 0.933333 r - 0.813024 + 0.933333 shadow @@ -113142,34 +116295,32 @@ this tag } Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 rev 1} +\f0\fs20 \cf2 master} VerticalPad 0 Bounds - {{353, 64}, {269, 116}} + {{71, 56.959201999999998}, {382, 104.041}} Class ShapedGraphic FontInfo @@ -113177,21 +116328,19 @@ this tag } Color b - 0 + 0.8 g - 0 + 0.8 r - 0 + 0.8 Font - Courier - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 312 + 1350 Shape Rectangle Style @@ -113201,11 +116350,11 @@ this tag } Color b - 0.699991 + 0.933333 g - 1 + 0.933333 r - 0.726874 + 0.933333 shadow @@ -113218,142 +116367,58 @@ this tag } Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 - - CornerRadius - 5 - Width - 3 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 snapshot rev 1} - VerticalPad - 0 - - - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - - Lock - NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 1 - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - 305 - UniqueID - 87 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 553}} - Class - SolidGraphic - ID - 2 - Style - - stroke + 0.382653 + + Width + 2 + + + Text - Draws - NO + VerticalPad + 0 - - BaseZoom - 0 - CanvasOrigin - {0, 0} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - Class LineGraphic Head ID - 319 + 1370 ID - 353 + 1408 Points - {443.5, 299.5} - {327.85939800000006, 299.5} + {322.31200999999999, 302.66100999999998} + {293.80450100000002, 302.66100999999998} Style stroke + Color + + b + 0.505102 + g + 0.505102 + r + 0.505102 + HeadArrow FilledArrow Legacy LineType 1 + Pattern + 2 TailArrow 0 @@ -113361,7 +116426,7 @@ this tag } Tail ID - 324 + 1364 @@ -113370,25 +116435,36 @@ this tag } Head ID - 334 + 1420 ID - 352 + 1407 Points - {256.5, 299.5} - {140.859398, 299.5} + {163.98199, 249.33000000000001} + {135.47460199999998, 249.33000000000001} Style stroke + Color + + b + 0.505102 + g + 0.505102 + r + 0.505102 + HeadArrow FilledArrow Legacy LineType 1 + Pattern + 2 TailArrow 0 @@ -113396,7 +116472,7 @@ this tag } Tail ID - 319 + 1357 @@ -113405,14 +116481,14 @@ this tag } Head ID - 349 + 1369 ID - 351 + 1371 Points - {528.77070504187009, 255.37871811721564} - {566.58884550867015, 343.6212818816461} + {242.64700000000002, 302.66100999999998} + {214.63949099999999, 302.66100999999998} Style @@ -113422,8 +116498,6 @@ this tag } FilledArrow Legacy - LineType - 1 TailArrow 0 @@ -113431,71 +116505,88 @@ this tag } Tail ID - 322 + 1370 + Bounds + {{244.14699999999999, 284.66100999999998}, {48.157501000000003, 36}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 348 + Font + Helvetica + Size + 12 ID - 350 - Points - - {339.93328360931434, 255.41760628654805} - {370.42626689257145, 343.58239371341489} - + 1370 + Shape + RoundRect Style + fill + + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 - Tail + Text - ID - 317 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 C3} + VerticalPad + 0 Bounds - {{542, 345}, {68.359397999999999, 42}} + {{164.98199, 284.66100999999998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 349 + 1369 Shape - Rectangle + RoundRect Style fill @@ -113503,11 +116594,11 @@ this tag } Color b - 0.715909 + 0.837205 g - 0.715909 + 0.959184 r - 1 + 0.826135 shadow @@ -113520,16 +116611,12 @@ this tag } Color b - 0.100458 + 0.382653 g - 0.0970254 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 - Pattern - 11 Width 3 @@ -113538,18 +116625,18 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 file} +\f0\fs24 \cf0 C2} VerticalPad 0 Bounds - {{344, 345}, {68.359397999999999, 42}} + {{323.31200999999999, 289.16100999999998}, {81.652298000000002, 27}} Class ShapedGraphic FontInfo @@ -113557,21 +116644,19 @@ this tag } Color b - 1 + 0.8 g - 1 + 0.8 r - 1 + 0.8 Font - Geneva - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 348 + 1364 Shape Rectangle Style @@ -113581,11 +116666,11 @@ this tag } Color b - 0.715909 + 0.933333 g - 0.715909 + 0.933333 r - 1 + 0.933333 shadow @@ -113598,141 +116683,155 @@ this tag } Color b - 0.100458 + 0.382653 g - 0.0970254 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 - Pattern - 11 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 file} +\f0\fs20 \cf2 master} VerticalPad 0 + Bounds + {{164.98199, 235.83000000000001}, {101, 27}} Class - LineGraphic - Head - - ID - 317 - - ID - 343 - Points - - {477.58999999999992, 233} - {373.76970299999999, 233} - - Style + ShapedGraphic + FontInfo - stroke + Color - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + b + 0.8 + g + 0.8 + r + 0.8 - - Tail - - ID - 322 - - - - Class - LineGraphic - Head - - ID - 332 + Font + LucidaGrande + Size + 10 ID - 342 - Points - - {290.58999999999997, 233} - {186.76970300000002, 233} - + 1357 + Shape + Rectangle Style + fill + + Color + + b + 0.933333 + g + 0.933333 + r + 0.933333 + + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 2 - Tail + Text - ID - 317 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs20 \cf2 teamone/master} + VerticalPad + 0 + Bounds + {{93.974602000000004, 191}, {37, 7.7526598}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 339 + Font + Helvetica + Size + 12 ID - 341 - Points - - {155.27033946049829, 255.36730516930393} - {195.0892110218951, 343.63269483110372} - + 1353 + Shape + Rectangle Style + fill + + Draws + NO + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - Tail + Text - ID - 332 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\b\fs24 \cf0 My Computer} + VerticalPad + 0 + Wrap + NO Bounds - {{171, 345}, {68.359397999999999, 42}} + {{71, 203.43899999999999}, {382, 137.56100000000001}} Class ShapedGraphic FontInfo @@ -113740,21 +116839,19 @@ this tag } Color b - 1 + 0.8 g - 1 + 0.8 r - 1 + 0.8 Font - Geneva - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 339 + 1351 Shape Rectangle Style @@ -113764,11 +116861,11 @@ this tag } Color b - 0.715909 + 0.933333 g - 0.715909 + 0.933333 r - 1 + 0.933333 shadow @@ -113781,45 +116878,126 @@ this tag } Color b - 0.100458 + 0.382653 g - 0.0970254 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 Width - 3 + 2 Text - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 file} VerticalPad 0 + + GridInfo + + HPages + 2 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + OutlineStyle + Basic + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + 336 + UniqueID + 39 + VPages + 2 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {805, 732}} + Class + SolidGraphic + ID + 2 + Style + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + CanvasSize + {805, 732} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList + Class LineGraphic Head ID - 332 + 1424 ID - 338 + 1431 Points - {145.17974868768431, 181.4999999999969} - {145.17980757403291, 210.50000000000284} + {324.90919801903533, 347.5158763596728} + {290.70731294233718, 324.47512371286302} Style @@ -113838,7 +117016,7 @@ this tag } Tail ID - 313 + 1429 @@ -113847,14 +117025,14 @@ this tag } Head ID - 334 + 1370 ID - 335 + 1430 Points - {131.7750555043342, 255.28538448683145} - {118.58448811532028, 277.2146153351548} + {321.81200999999999, 362.66100999999998} + {293.80450100000002, 362.66100999999998} Style @@ -113873,112 +117051,25 @@ this tag } Tail ID - 332 - - - - Bounds - {{71, 278.5}, {68.359397999999999, 42}} - Class - ShapedGraphic - FontInfo - - Color - - b - 1 - g - 1 - r - 1 - - Font - Geneva - NSKern - 0.0 - Size - 14 - - ID - 334 - Shape - Rectangle - Style - - fill - - Color - - b - 0.715909 - g - 0.715909 - r - 1 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.100458 - g - 0.0970254 - r - 0.316327 - - CornerRadius - 5 - Width - 3 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 file} - VerticalPad - 0 + 1429 Bounds - {{105.09, 212}, {80.179703000000003, 42}} + {{323.31200999999999, 344.66100999999998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 332 + 1429 Shape - Rectangle + RoundRect Style fill @@ -113986,11 +117077,11 @@ this tag } Color b - 1 + 0.689968 g - 0.806818 + 0.77551 r - 0.813024 + 0.669392 shadow @@ -114003,14 +117094,12 @@ this tag } Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 Width 3 @@ -114019,11 +117108,11 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 manifest} +\f0\fs24 \cf0 C7} VerticalPad 0 @@ -114034,14 +117123,14 @@ this tag } Head ID - 322 + 1420 ID - 329 + 1428 Points - {519.17994846772979, 181.49999999999744} - {519.17989493724815, 210.50000000000276} + {166.57918708893021, 347.51585932803283} + {132.37740486291409, 324.4751407623948} Style @@ -114060,7 +117149,7 @@ this tag } Tail ID - 312 + 1369 @@ -114069,14 +117158,14 @@ this tag } Head ID - 317 + 1421 ID - 328 + 1427 Points - {332.179947990203, 181.49999999999739} - {332.17989384424254, 210.50000000000261} + {246.70574829791508, 292.63510250043328} + {210.58074271532635, 264.60987748144561} Style @@ -114095,7 +117184,7 @@ this tag } Tail ID - 311 + 1424 @@ -114104,14 +117193,14 @@ this tag } Head ID - 324 + 1420 ID - 325 + 1426 Points - {505.77506344936245, 255.28538469239152} - {492.5845038784035, 277.21461574298979} + {167.54074924911714, 264.60989451028172} + {131.41584274544542, 292.63508548227685} Style @@ -114130,159 +117219,7 @@ this tag } Tail ID - 322 - - - - Bounds - {{445, 278.5}, {68.359397999999999, 42}} - Class - ShapedGraphic - FontInfo - - Color - - b - 1 - g - 1 - r - 1 - - Font - Geneva - NSKern - 0.0 - Size - 14 - - ID - 324 - Shape - Rectangle - Style - - fill - - Color - - b - 0.715909 - g - 0.715909 - r - 1 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.100458 - g - 0.0970254 - r - 0.316327 - - CornerRadius - 5 - Width - 3 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 file} - VerticalPad - 0 - - - - Bounds - {{479.08999999999997, 212}, {80.179703000000003, 42}} - Class - ShapedGraphic - FontInfo - - Color - - b - 1 - g - 1 - r - 1 - - Font - Geneva - NSKern - 0.0 - Size - 14 - - ID - 322 - Shape - Rectangle - Style - - fill - - Color - - b - 1 - g - 0.806818 - r - 0.813024 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.316327 - g - 0.139073 - r - 0.109175 - - CornerRadius - 5 - Width - 3 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 manifest} - VerticalPad - 0 + 1421 @@ -114291,14 +117228,14 @@ this tag } Head ID - 319 + 1422 ID - 320 + 1425 Points - {318.77505582464005, 255.28538449511868} - {305.58448875081297, 277.21461535159676} + {242.64700000000002, 309.32999000000001} + {214.63949099999999, 309.32999000000001} Style @@ -114308,8 +117245,6 @@ this tag } FilledArrow Legacy - LineType - 1 TailArrow 0 @@ -114317,112 +117252,25 @@ this tag } Tail ID - 317 - - - - Bounds - {{258, 278.5}, {68.359397999999999, 42}} - Class - ShapedGraphic - FontInfo - - Color - - b - 1 - g - 1 - r - 1 - - Font - Geneva - NSKern - 0.0 - Size - 14 - - ID - 319 - Shape - Rectangle - Style - - fill - - Color - - b - 0.715909 - g - 0.715909 - r - 1 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.100458 - g - 0.0970254 - r - 0.316327 - - CornerRadius - 5 - Width - 3 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 file} - VerticalPad - 0 + 1424 Bounds - {{292.08999999999997, 212}, {80.179703000000003, 42}} + {{244.14699999999999, 291.32999000000001}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 317 + 1424 Shape - Rectangle + RoundRect Style fill @@ -114430,11 +117278,11 @@ this tag } Color b - 1 + 0.837205 g - 0.806818 + 0.959184 r - 0.813024 + 0.826135 shadow @@ -114447,14 +117295,12 @@ this tag } Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 Width 3 @@ -114463,11 +117309,11 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 manifest} +\f0\fs24 \cf0 C6} VerticalPad 0 @@ -114478,49 +117324,14 @@ this tag } Head ID - 311 - - ID - 316 - Points - - {471.67998999999998, 159} - {384.67998999999998, 159} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 312 - - - - Class - LineGraphic - Head - - ID - 313 + 1420 ID - 315 + 1423 Points - {279.67998999999998, 159} - {192.67970300000002, 159} + {163.48199000000002, 309.32999000000001} + {135.47460199999998, 309.32999000000001} Style @@ -114530,8 +117341,6 @@ this tag } FilledArrow Legacy - LineType - 1 TailArrow 0 @@ -114539,36 +117348,25 @@ this tag } Tail ID - 311 + 1422 Bounds - {{99.179703000000003, 138}, {92, 42}} + {{164.98199, 291.32999000000001}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 0 - g - 0 - r - 0 - Font - Courier - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 313 + 1422 Shape - Rectangle + RoundRect Style fill @@ -114576,11 +117374,11 @@ this tag } Color b - 0.699991 + 0.837205 g - 1 + 0.959184 r - 0.726874 + 0.826135 shadow @@ -114593,14 +117391,12 @@ this tag } Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width 3 @@ -114609,42 +117405,31 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 changeset} +\f0\fs24 \cf0 C4} VerticalPad 0 Bounds - {{473.17998999999998, 138}, {92, 42}} + {{164.98199, 229.91498999999999}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 0 - g - 0 - r - 0 - Font - Courier - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 312 + 1421 Shape - Rectangle + RoundRect Style fill @@ -114652,11 +117437,11 @@ this tag } Color b - 0.699991 + 0.837205 g - 1 + 0.959184 r - 0.726874 + 0.826135 shadow @@ -114669,14 +117454,12 @@ this tag } Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width 3 @@ -114685,42 +117468,31 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 changeset} +\f0\fs24 \cf0 C5} VerticalPad 0 Bounds - {{281.17998999999998, 138}, {102, 42}} + {{85.817100999999994, 291.32999000000001}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 0 - g - 0 - r - 0 - Font - Courier - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 311 + 1420 Shape - Rectangle + RoundRect Style fill @@ -114728,11 +117500,11 @@ this tag } Color b - 0.699991 + 0.837205 g - 1 + 0.959184 r - 0.726874 + 0.826135 shadow @@ -114745,14 +117517,12 @@ this tag } Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width 3 @@ -114761,115 +117531,29 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 changeset} +\f0\fs24 \cf0 C1} VerticalPad 0 - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - - Lock - NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 1 - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - 304 - UniqueID - 86 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 553}} - Class - SolidGraphic - ID - 2 - Style - - stroke - - Draws - NO - - - - BaseZoom - 0 - CanvasOrigin - {0, 0} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - Class LineGraphic Head ID - 319 + 1379 ID - 353 + 1419 Points - {443.5, 299.5} - {327.85939800000006, 299.5} + {246.04058232884279, 90.931240140446249} + {211.24590873915034, 66.345759743590989} Style @@ -114888,7 +117572,7 @@ this tag } Tail ID - 324 + 1382 @@ -114897,14 +117581,14 @@ this tag } Head ID - 334 + 1375 ID - 352 + 1409 Points - {256.5, 299.5} - {140.859398, 299.5} + {166.87558134610924, 66.345777388152058} + {132.08101063370339, 90.931222577418353} Style @@ -114923,7 +117607,7 @@ this tag } Tail ID - 319 + 1379 @@ -114932,14 +117616,14 @@ this tag } Head ID - 349 + 1380 ID - 351 + 1383 Points - {528.77070504187009, 255.37871811721564} - {566.58884550867015, 343.6212818816461} + {242.64700000000011, 106.607} + {214.63949100000002, 106.607} Style @@ -114949,8 +117633,6 @@ this tag } FilledArrow Legacy - LineType - 1 TailArrow 0 @@ -114958,7 +117640,70 @@ this tag } Tail ID - 322 + 1382 + + + + Bounds + {{244.14699999999999, 88.607001999999994}, {48.157501000000003, 36}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 12 + + ID + 1382 + Shape + RoundRect + Style + + fill + + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + + shadow + + Draws + NO + + stroke + + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 C6} + VerticalPad + 0 @@ -114967,14 +117712,14 @@ this tag } Head ID - 348 + 1375 ID - 350 + 1381 Points - {339.93328360931434, 255.41760628654805} - {370.42626689257145, 343.58239371341489} + {163.48199000000011, 106.607} + {135.474602, 106.607} Style @@ -114984,8 +117729,6 @@ this tag } FilledArrow Legacy - LineType - 1 TailArrow 0 @@ -114993,36 +117736,25 @@ this tag } Tail ID - 317 + 1380 Bounds - {{542, 345}, {68.359397999999999, 42}} + {{164.98199, 88.607001999999994}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 349 + 1380 Shape - Rectangle + RoundRect Style fill @@ -115030,11 +117762,11 @@ this tag } Color b - 0.715909 + 0.837205 g - 0.715909 + 0.959184 r - 1 + 0.826135 shadow @@ -115047,16 +117779,12 @@ this tag } Color b - 0.100458 + 0.382653 g - 0.0970254 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 - Pattern - 11 Width 3 @@ -115065,42 +117793,31 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 file} +\f0\fs24 \cf0 C4} VerticalPad 0 Bounds - {{344, 345}, {68.359397999999999, 42}} + {{164.98199, 32.669998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 348 + 1379 Shape - Rectangle + RoundRect Style fill @@ -115108,11 +117825,11 @@ this tag } Color b - 0.715909 + 0.837205 g - 0.715909 + 0.959184 r - 1 + 0.826135 shadow @@ -115125,16 +117842,12 @@ this tag } Color b - 0.100458 + 0.382653 g - 0.0970254 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 - Pattern - 11 Width 3 @@ -115143,11 +117856,11 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 file} +\f0\fs24 \cf0 C5} VerticalPad 0 @@ -115158,95 +117871,36 @@ this tag } Head ID - 317 - - ID - 343 - Points - - {477.58999999999992, 233} - {373.76970299999999, 233} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 322 - - - - Class - LineGraphic - Head - - ID - 332 - - ID - 342 - Points - - {290.58999999999997, 233} - {186.76970300000002, 233} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 317 - - - - Class - LineGraphic - Head - - ID - 339 + 1382 ID - 341 + 1405 Points - {155.27033946049829, 255.36730516930393} - {195.0892110218951, 343.63269483110372} + {322.31200999999999, 106.607} + {293.80450100000002, 106.607} Style stroke + Color + + b + 0.505102 + g + 0.505102 + r + 0.505102 + HeadArrow FilledArrow Legacy LineType 1 + Pattern + 2 TailArrow 0 @@ -115254,36 +117908,25 @@ this tag } Tail ID - 332 + 1344 Bounds - {{171, 345}, {68.359397999999999, 42}} + {{85.817100999999994, 88.607001999999994}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 339 + 1375 Shape - Rectangle + RoundRect Style fill @@ -115291,11 +117934,11 @@ this tag } Color b - 0.715909 + 0.837205 g - 0.715909 + 0.959184 r - 1 + 0.826135 shadow @@ -115308,14 +117951,12 @@ this tag } Color b - 0.100458 + 0.382653 g - 0.0970254 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 Width 3 @@ -115324,88 +117965,69 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 file} +\f0\fs24 \cf0 C1} VerticalPad 0 + Bounds + {{130, 15}, {36.333599, 3.21401}} Class - LineGraphic - Head - - ID - 332 - - ID - 338 - Points - - {145.17976288008336, 181.49999999999767} - {145.17981395427208, 210.50000000000205} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 313 - - - - Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 334 + Font + Helvetica + Size + 12 ID - 335 - Points - - {131.7750555043342, 255.28538448683145} - {118.58448811532028, 277.2146153351548} - + 1352 + Shape + Rectangle Style + fill + + Draws + NO + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Draws + NO - Tail + Text - ID - 332 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\b\fs24 \cf0 git.team1.ourcompany.com} + VerticalPad + 0 + Wrap + NO Bounds - {{71, 278.5}, {68.359397999999999, 42}} + {{323.31200999999999, 93.107001999999994}, {70.932297000000005, 27}} Class ShapedGraphic FontInfo @@ -115413,21 +118035,19 @@ this tag } Color b - 1 + 0.8 g - 1 + 0.8 r - 1 + 0.8 Font - Geneva - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 334 + 1344 Shape Rectangle Style @@ -115437,11 +118057,11 @@ this tag } Color b - 0.715909 + 0.933333 g - 0.715909 + 0.933333 r - 1 + 0.933333 shadow @@ -115454,34 +118074,32 @@ this tag } Color b - 0.100458 + 0.382653 g - 0.0970254 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 file} +\f0\fs20 \cf2 master} VerticalPad 0 Bounds - {{105.09, 212}, {80.179703000000003, 42}} + {{71, 27.754801}, {516, 133.245}} Class ShapedGraphic FontInfo @@ -115489,21 +118107,19 @@ this tag } Color b - 1 + 0.8 g - 1 + 0.8 r - 1 + 0.8 Font - Geneva - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 332 + 1350 Shape Rectangle Style @@ -115513,11 +118129,11 @@ this tag } Color b - 1 + 0.933333 g - 0.806818 + 0.933333 r - 0.813024 + 0.933333 shadow @@ -115530,27 +118146,18 @@ this tag } Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 Width - 3 + 2 Text - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 manifest} VerticalPad 0 @@ -115561,25 +118168,36 @@ this tag } Head ID - 322 + 1429 ID - 329 + 1408 Points - {519.1799361856846, 181.4999999999981} - {519.17989028523914, 210.50000000000219} + {394, 362.66100999999998} + {372.96951100000001, 362.66100999999998} Style stroke + Color + + b + 0.505102 + g + 0.505102 + r + 0.505102 + HeadArrow FilledArrow Legacy LineType 1 + Pattern + 2 TailArrow 0 @@ -115587,7 +118205,7 @@ this tag } Tail ID - 312 + 1364 @@ -115596,25 +118214,36 @@ this tag } Head ID - 317 + 1424 ID - 328 + 1407 Points - {332.17993528559253, 181.49999999999807} - {332.17988861742145, 210.50000000000202} + {322.31200999999999, 309.32999000000001} + {293.80450100000002, 309.32999000000001} Style stroke + Color + + b + 0.505102 + g + 0.505102 + r + 0.505102 + HeadArrow FilledArrow Legacy LineType 1 + Pattern + 2 TailArrow 0 @@ -115622,7 +118251,7 @@ this tag } Tail ID - 311 + 1357 @@ -115631,14 +118260,14 @@ this tag } Head ID - 324 + 1369 ID - 325 + 1371 Points - {505.77506344936245, 255.28538469239152} - {492.5845038784035, 277.21461574298979} + {242.64700000000002, 362.66100999999998} + {214.63949099999999, 362.66100999999998} Style @@ -115648,8 +118277,6 @@ this tag } FilledArrow Legacy - LineType - 1 TailArrow 0 @@ -115657,112 +118284,25 @@ this tag } Tail ID - 322 - - - - Bounds - {{445, 278.5}, {68.359397999999999, 42}} - Class - ShapedGraphic - FontInfo - - Color - - b - 1 - g - 1 - r - 1 - - Font - Geneva - NSKern - 0.0 - Size - 14 - - ID - 324 - Shape - Rectangle - Style - - fill - - Color - - b - 0.715909 - g - 0.715909 - r - 1 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.100458 - g - 0.0970254 - r - 0.316327 - - CornerRadius - 5 - Width - 3 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 file} - VerticalPad - 0 + 1370 Bounds - {{479.08999999999997, 212}, {80.179703000000003, 42}} + {{244.14699999999999, 344.66100999999998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 322 + 1370 Shape - Rectangle + RoundRect Style fill @@ -115770,11 +118310,11 @@ this tag } Color b - 1 + 0.837205 g - 0.806818 + 0.959184 r - 0.813024 + 0.826135 shadow @@ -115787,14 +118327,12 @@ this tag } Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 Width 3 @@ -115803,77 +118341,31 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 manifest} +\f0\fs24 \cf0 C3} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 319 - - ID - 320 - Points - - {318.77505582464005, 255.28538449511868} - {305.58448875081297, 277.21461535159676} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 317 - - Bounds - {{258, 278.5}, {68.359397999999999, 42}} + {{164.98199, 344.66100999999998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 319 + 1369 Shape - Rectangle + RoundRect Style fill @@ -115881,11 +118373,11 @@ this tag } Color b - 0.715909 + 0.837205 g - 0.715909 + 0.959184 r - 1 + 0.826135 shadow @@ -115898,14 +118390,12 @@ this tag } Color b - 0.100458 + 0.382653 g - 0.0970254 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 Width 3 @@ -115914,18 +118404,18 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 file} +\f0\fs24 \cf0 C2} VerticalPad 0 Bounds - {{292.08999999999997, 212}, {80.179703000000003, 42}} + {{395, 349.16100999999998}, {81.652298000000002, 27}} Class ShapedGraphic FontInfo @@ -115933,21 +118423,19 @@ this tag } Color b - 1 + 0.8 g - 1 + 0.8 r - 1 + 0.8 Font - Geneva - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 317 + 1364 Shape Rectangle Style @@ -115957,11 +118445,11 @@ this tag } Color b - 1 + 0.933333 g - 0.806818 + 0.933333 r - 0.813024 + 0.933333 shadow @@ -115974,104 +118462,32 @@ this tag } Color b - 0.316327 + 0.382653 g - 0.139073 + 0.382653 r - 0.109175 + 0.382653 - CornerRadius - 5 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 manifest} +\f0\fs20 \cf2 master} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 311 - - ID - 316 - Points - - {462.26999000000001, 147.5} - {384.67998999999992, 147.5} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 312 - - - - Class - LineGraphic - Head - - ID - 313 - - ID - 315 - Points - - {279.67998999999998, 147.5} - {192.67970300000002, 147.5} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - - - Tail - - ID - 311 - - Bounds - {{99.179703000000003, 115}, {92, 65}} + {{323.31200999999999, 295.82999000000001}, {101, 27}} Class ShapedGraphic FontInfo @@ -116079,21 +118495,19 @@ this tag } Color b - 0 + 0.8 g - 0 + 0.8 r - 0 + 0.8 Font - Courier - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 313 + 1357 Shape Rectangle Style @@ -116103,11 +118517,11 @@ this tag } Color b - 0.699991 + 0.933333 g - 1 + 0.933333 r - 0.726874 + 0.933333 shadow @@ -116120,72 +118534,51 @@ this tag } Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 changeset\ -} +\f0\fs20 \cf2 teamone/master} VerticalPad 0 Bounds - {{463.76999000000001, 115}, {110.81999999999999, 65}} + {{93.974602000000004, 195}, {37, 10.5953}} Class ShapedGraphic FontInfo - Color - - b - 0 - g - 0 - r - 0 - Font - Courier - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 312 + 1353 Shape Rectangle Style fill - Color - - b - 0.699991 - g - 1 - r - 0.726874 - + Draws + NO shadow @@ -116194,39 +118587,30 @@ this tag } stroke - Color - - b - 0.172231 - g - 0.316327 - r - 0.1567 - - CornerRadius - 5 - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;\red88\green88\blue88;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 changeset\ -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\cf2 branch:test} +\f0\b\fs24 \cf0 My Computer} VerticalPad 0 + Wrap + NO Bounds - {{281.17998999999998, 115}, {102, 65}} + {{71, 212}, {516, 188}} Class ShapedGraphic FontInfo @@ -116234,21 +118618,19 @@ this tag } Color b - 0 + 0.8 g - 0 + 0.8 r - 0 + 0.8 Font - Courier - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 311 + 1351 Shape Rectangle Style @@ -116258,11 +118640,11 @@ this tag } Color b - 0.699991 + 0.933333 g - 1 + 0.933333 r - 0.726874 + 0.933333 shadow @@ -116275,28 +118657,18 @@ this tag } Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width - 3 + 2 Text - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 changeset\ -} VerticalPad 0 @@ -116305,7 +118677,7 @@ this tag } GridInfo HPages - 1 + 2 KeepToScale Layers @@ -116339,7 +118711,9 @@ this tag } 0.0 Orientation - 1 + 2 + OutlineStyle + Basic PrintOnePage RowAlign @@ -116347,11 +118721,11 @@ this tag } RowSpacing 36 SheetTitle - 306 + 337 UniqueID - 88 + 42 VPages - 1 + 2 ActiveLayerIndex @@ -116361,7 +118735,7 @@ this tag } BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {805, 732}} Class SolidGraphic ID @@ -116379,6 +118753,8 @@ this tag } 0 CanvasOrigin {0, 0} + CanvasSize + {805, 732} ColumnAlign 1 ColumnSpacing @@ -116393,14 +118769,14 @@ this tag } Head ID - 298 + 1421 ID - 316 + 1437 Points - {117.932, 104.49999999999999} - {117.932, 150} + {242.64700000000002, 247.91498999999999} + {214.63949099999999, 247.91498999999999} Style @@ -116414,43 +118790,30 @@ this tag } 1 TailArrow 0 - Width - 3 Tail ID - 315 + 1436 Bounds - {{54, 48}, {127.864, 55}} + {{244.14699999999999, 229.91498999999999}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 0 - g - 0 - r - 0 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 315 + 1436 Shape - Rectangle + RoundRect Style fill @@ -116458,11 +118821,11 @@ this tag } Color b - 0.832366 + 0.837205 g - 0.841837 + 0.959184 r - 0.820446 + 0.826135 shadow @@ -116475,14 +118838,12 @@ this tag } Color b - 0.301453 + 0.382653 g - 0.297998 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 Width 3 @@ -116491,11 +118852,11 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 stable} +\f0\fs24 \cf0 C4'} VerticalPad 0 @@ -116506,14 +118867,14 @@ this tag } Head ID - 311 + 1375 ID - 314 + 1435 Points - {540.21802000000002, 389.5} - {540.21802000000002, 333} + {166.87558110094875, 78.345776970030244} + {132.0810108331963, 102.93122091765399} Style @@ -116527,43 +118888,30 @@ this tag } 1 TailArrow 0 - Width - 3 Tail ID - 313 + 1434 Bounds - {{476.28600999999998, 391}, {127.864, 55}} + {{164.98199, 44.669998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 0 - g - 0 - r - 0 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 313 + 1434 Shape - Rectangle + RoundRect Style fill @@ -116571,11 +118919,11 @@ this tag } Color b - 0.832366 + 0.837205 g - 0.841837 + 0.959184 r - 0.820446 + 0.826135 shadow @@ -116588,14 +118936,12 @@ this tag } Color b - 0.301453 + 0.382653 g - 0.297998 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 Width 3 @@ -116604,11 +118950,11 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 topic} +\f0\fs24 \cf0 C5} VerticalPad 0 @@ -116619,14 +118965,14 @@ this tag } Head ID - 299 + 1379 ID - 312 + 1433 Points - {474.78600999999986, 304} - {400.77599000000004, 304} + {246.50000000000003, 62.669998} + {214.63949099999999, 62.669998} Style @@ -116640,43 +118986,30 @@ this tag } 1 TailArrow 0 - Width - 3 Tail ID - 311 + 1432 Bounds - {{476.28600999999998, 276.5}, {127.864, 55}} + {{248, 44.669998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 0 - g - 0 - r - 0 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 311 + 1432 Shape - Rectangle + RoundRect Style fill @@ -116684,11 +119017,11 @@ this tag } Color b - 0.699991 + 0.837205 g - 1 + 0.959184 r - 0.726874 + 0.826135 shadow @@ -116701,14 +119034,12 @@ this tag } Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width 3 @@ -116717,11 +119048,11 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 3acd1} +\f0\fs24 \cf0 C4'} VerticalPad 0 @@ -116732,14 +119063,14 @@ this tag } Head ID - 298 + 1424 ID - 310 + 1431 Points - {269.91199, 179} - {183.36400000000003, 179} + {324.90919801903533, 347.5158763596728} + {290.70731294233718, 324.47512371286302} Style @@ -116753,14 +119084,12 @@ this tag } 1 TailArrow 0 - Width - 3 Tail ID - 308 + 1429 @@ -116769,14 +119098,14 @@ this tag } Head ID - 308 + 1370 ID - 309 + 1430 Points - {474.78600999999986, 179} - {400.77599000000004, 179} + {321.81200999999999, 362.66100999999998} + {293.80450100000002, 362.66100999999998} Style @@ -116790,43 +119119,30 @@ this tag } 1 TailArrow 0 - Width - 3 Tail ID - 300 + 1429 Bounds - {{271.41199, 151.5}, {127.864, 55}} + {{323.31200999999999, 344.66100999999998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 0 - g - 0 - r - 0 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 308 + 1429 Shape - Rectangle + RoundRect Style fill @@ -116834,11 +119150,11 @@ this tag } Color b - 0.699991 + 0.689968 g - 1 + 0.77551 r - 0.726874 + 0.669392 shadow @@ -116851,14 +119167,12 @@ this tag } Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width 3 @@ -116867,11 +119181,11 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 34ac2} +\f0\fs24 \cf0 C7} VerticalPad 0 @@ -116882,14 +119196,14 @@ this tag } Head ID - 300 + 1420 ID - 305 + 1428 Points - {540.21802000000002, 104.5} - {540.21802000000002, 150} + {166.57918708893021, 347.51585932803283} + {132.37740486291409, 324.4751407623948} Style @@ -116903,43 +119217,133 @@ this tag } 1 TailArrow 0 - Width - 3 Tail ID - 303 + 1369 - Bounds - {{476.28600999999998, 48}, {127.864, 55}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Color + ID + 1421 + + ID + 1427 + Points + + {246.70574829791508, 292.63510250043328} + {210.58074271532635, 264.60987748144561} + + Style + + stroke - b + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow 0 - g + + + Tail + + ID + 1424 + + + + Class + LineGraphic + Head + + ID + 1420 + + ID + 1426 + Points + + {167.54074924911714, 264.60989451028172} + {131.41584274544542, 292.63508548227685} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow 0 - r + + + Tail + + ID + 1421 + + + + Class + LineGraphic + Head + + ID + 1422 + + ID + 1425 + Points + + {242.64700000000002, 309.32999000000001} + {214.63949099999999, 309.32999000000001} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow 0 + + Tail + + ID + 1424 + + + + Bounds + {{244.14699999999999, 291.32999000000001}, {48.157501000000003, 36}} + Class + ShapedGraphic + FontInfo + Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 303 + 1424 Shape - Rectangle + RoundRect Style fill @@ -116947,11 +119351,11 @@ this tag } Color b - 0.832366 + 0.837205 g - 0.841837 + 0.959184 r - 0.820446 + 0.826135 shadow @@ -116964,14 +119368,12 @@ this tag } Color b - 0.301453 + 0.382653 g - 0.297998 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 Width 3 @@ -116980,11 +119382,11 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 master} +\f0\fs24 \cf0 C6} VerticalPad 0 @@ -116995,14 +119397,14 @@ this tag } Head ID - 298 + 1420 ID - 301 + 1423 Points - {286.21296189506137, 275.75234678076322} - {167.06302762288848, 207.24765322486184} + {163.48199000000002, 309.32999000000001} + {135.47460199999998, 309.32999000000001} Style @@ -117012,47 +119414,32 @@ this tag } FilledArrow Legacy - LineType - 1 TailArrow 0 - Width - 3 Tail ID - 299 + 1422 Bounds - {{476.28600999999998, 151.5}, {127.864, 55}} + {{164.98199, 291.32999000000001}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 0 - g - 0 - r - 0 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 300 + 1422 Shape - Rectangle + RoundRect Style fill @@ -117060,11 +119447,11 @@ this tag } Color b - 0.699991 + 0.837205 g - 1 + 0.959184 r - 0.726874 + 0.826135 shadow @@ -117077,14 +119464,12 @@ this tag } Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width 3 @@ -117093,42 +119478,31 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 f30ab} +\f0\fs24 \cf0 C4} VerticalPad 0 Bounds - {{271.41199, 276.5}, {127.864, 55}} + {{164.98199, 229.91498999999999}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 0 - g - 0 - r - 0 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 299 + 1421 Shape - Rectangle + RoundRect Style fill @@ -117136,11 +119510,11 @@ this tag } Color b - 0.699991 + 0.837205 g - 1 + 0.959184 r - 0.726874 + 0.826135 shadow @@ -117153,14 +119527,12 @@ this tag } Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width 3 @@ -117169,42 +119541,31 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 a23fe} +\f0\fs24 \cf0 C5} VerticalPad 0 Bounds - {{54, 151.5}, {127.864, 55}} + {{85.817100999999994, 291.32999000000001}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 0 - g - 0 - r - 0 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 298 + 1420 Shape - Rectangle + RoundRect Style fill @@ -117212,11 +119573,11 @@ this tag } Color b - 0.699991 + 0.837205 g - 1 + 0.959184 r - 0.726874 + 0.826135 shadow @@ -117229,14 +119590,12 @@ this tag } Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width 3 @@ -117245,120 +119604,43 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 98ca9} +\f0\fs24 \cf0 C1} VerticalPad 0 - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - - Lock - NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 1 - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - 1 - branch 4 - UniqueID - 72 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 553}} - Class - SolidGraphic - ID - 2 - Style - - stroke - - Draws - NO - - - - BaseZoom - 0 - CanvasOrigin - {0, 0} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - Class LineGraphic Head ID - 310 + 1379 ID - 316 + 1419 Points - {295.00600999999995, 210} - {236.88, 210} + {249.5982850219936, 103.45980674871693} + {211.54120595015422, 77.817191303565892} Style stroke + Color + + b + 0.658163 + g + 0.658163 + r + 0.658163 + HeadArrow FilledArrow Legacy @@ -117367,14 +119649,12 @@ this tag } 1 TailArrow 0 - Width - 3 Tail ID - 311 + 1382 @@ -117383,19 +119663,28 @@ this tag } Head ID - 311 + 1375 ID - 315 + 1409 Points - {473.62700999999998, 210} - {410.38600999999994, 210} + {166.87558110094875, 78.345776970030244} + {132.0810108331963, 102.93122091765399} Style stroke + Color + + b + 0.505102 + g + 0.505102 + r + 0.505102 + HeadArrow FilledArrow Legacy @@ -117404,14 +119693,12 @@ this tag } 1 TailArrow 0 - Width - 3 Tail ID - 312 + 1379 @@ -117420,72 +119707,112 @@ this tag } Head ID - 312 + 1380 ID - 314 + 1383 Points - {531.31701999999996, 284.5} - {531.31701999999996, 239} + {246.50000000000003, 118.607} + {214.63949099999999, 118.607} Style stroke + Color + + b + 0.658163 + g + 0.658163 + r + 0.658163 + HeadArrow FilledArrow Legacy - LineType - 1 TailArrow 0 - Width - 3 Tail ID - 306 + 1382 + Bounds + {{248, 100.607}, {48.157501000000003, 36}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 312 + Color + + b + 0.596939 + g + 0.596939 + r + 0.596939 + + Font + Helvetica + Size + 12 ID - 313 - Points - - {531.31701999999996, 135.5} - {531.31701999999996, 181} - + 1382 + Shape + RoundRect Style + fill + + Color + + b + 0.900487 + g + 0.959184 + r + 0.908507 + + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.658163 + g + 0.658163 + r + 0.658163 + Width 3 - Tail + Text - ID - 303 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red152\green152\blue152;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 C6} + VerticalPad + 0 @@ -117494,40 +119821,45 @@ this tag } Head ID - 306 + 1375 ID - 309 + 1381 Points - {531.31701999999996, 388.00000000000006} - {531.31701999999996, 342.5} + {163.48199000000002, 118.607} + {135.47460199999998, 118.607} Style stroke + Color + + b + 0.658163 + g + 0.658163 + r + 0.658163 + HeadArrow FilledArrow Legacy - LineType - 1 TailArrow 0 - Width - 3 Tail ID - 308 + 1380 Bounds - {{475.12700999999998, 389.5}, {112.38, 55}} + {{164.98199, 100.607}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -117535,23 +119867,21 @@ this tag } Color b - 1 + 0.596939 g - 1 + 0.596939 r - 1 + 0.596939 Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 308 + 1380 Shape - Rectangle + RoundRect Style fill @@ -117559,11 +119889,11 @@ this tag } Color b - 0.287545 + 0.900487 g - 0.290816 + 0.959184 r - 0.283427 + 0.908507 shadow @@ -117576,14 +119906,12 @@ this tag } Color b - 0.147567 + 0.658163 g - 0.14589 + 0.658163 r - 0.153061 + 0.658163 - CornerRadius - 5 Width 3 @@ -117592,18 +119920,18 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red152\green152\blue152;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf1 HEAD} +\f0\fs24 \cf2 C4} VerticalPad 0 Bounds - {{475.12700999999998, 286}, {112.38, 55}} + {{164.98199, 44.669998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -117611,23 +119939,21 @@ this tag } Color b - 0 + 0.505102 g - 0 + 0.505102 r - 0 + 0.505102 Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 306 + 1379 Shape - Rectangle + RoundRect Style fill @@ -117635,11 +119961,11 @@ this tag } Color b - 0.832366 + 0.91294 g - 0.841837 + 0.959184 r - 0.820446 + 0.897525 shadow @@ -117652,14 +119978,12 @@ this tag } Color b - 0.301453 + 0.663265 g - 0.297998 + 0.663265 r - 0.316327 + 0.663265 - CornerRadius - 5 Width 3 @@ -117668,42 +119992,77 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red129\green129\blue129;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 testing} +\f0\fs24 \cf2 C5} VerticalPad 0 - Bounds - {{475.12700999999998, 79}, {112.38, 55}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Color + ID + 1432 + + ID + 1405 + Points + + {330.01801, 62.669998} + {297.65750100000002, 62.669998} + + Style + + stroke - b - 0 - g - 0 - r + Color + + b + 0.505102 + g + 0.505102 + r + 0.505102 + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + Pattern + 2 + TailArrow 0 + + Tail + + ID + 1344 + + + + Bounds + {{85.817100999999994, 100.607}, {48.157501000000003, 36}} + Class + ShapedGraphic + FontInfo + Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 303 + 1375 Shape - Rectangle + RoundRect Style fill @@ -117711,11 +120070,11 @@ this tag } Color b - 0.832366 + 0.837205 g - 0.841837 + 0.959184 r - 0.820446 + 0.826135 shadow @@ -117728,14 +120087,12 @@ this tag } Color b - 0.301453 + 0.382653 g - 0.297998 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 Width 3 @@ -117744,55 +120101,37 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 master} +\f0\fs24 \cf0 C1} VerticalPad 0 Bounds - {{475.12700999999998, 182.5}, {112.38, 55}} - Class - ShapedGraphic - FontInfo - - Color - - b - 0 - g - 0 - r - 0 - + {{130, 20}, {36.333599, 3.3681098999999999}} + Class + ShapedGraphic + FontInfo + Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 312 + 1352 Shape Rectangle Style fill - Color - - b - 0.699991 - g - 1 - r - 0.726874 - + Draws + NO shadow @@ -117801,37 +120140,30 @@ this tag } stroke - Color - - b - 0.172231 - g - 0.316327 - r - 0.1567 - - CornerRadius - 5 - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 f30ab} +\f0\b\fs24 \cf0 git.team1.ourcompany.com} VerticalPad 0 + Wrap + NO Bounds - {{296.50601, 182.5}, {112.38, 55}} + {{331.01801, 49.169998}, {70.932297000000005, 27}} Class ShapedGraphic FontInfo @@ -117839,21 +120171,19 @@ this tag } Color b - 0 + 0.8 g - 0 + 0.8 r - 0 + 0.8 Font - Geneva - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 311 + 1344 Shape Rectangle Style @@ -117863,11 +120193,11 @@ this tag } Color b - 0.699991 + 0.933333 g - 1 + 0.933333 r - 0.726874 + 0.933333 shadow @@ -117880,34 +120210,32 @@ this tag } Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 34ac2} +\f0\fs20 \cf2 master} VerticalPad 0 Bounds - {{123, 182.5}, {112.38, 55}} + {{71, 33.366298999999998}, {516, 139.63300000000001}} Class ShapedGraphic FontInfo @@ -117915,21 +120243,19 @@ this tag } Color b - 0 + 0.8 g - 0 + 0.8 r - 0 + 0.8 Font - Geneva - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 310 + 1350 Shape Rectangle Style @@ -117939,11 +120265,11 @@ this tag } Color b - 0.699991 + 0.933333 g - 1 + 0.933333 r - 0.726874 + 0.933333 shadow @@ -117956,189 +120282,66 @@ this tag } Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width - 3 + 2 Text - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs36 \cf0 98ca9} VerticalPad 0 - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - - Lock - NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 1 - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - 0306 - UniqueID - 74 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 553}} - Class - SolidGraphic - ID - 2 - Style - - stroke - - Draws - NO - - - - BaseZoom - 0 - CanvasOrigin - {0, 0} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - - - Class - LineGraphic - Head - - ID - 312 - - ID - 316 - Points - - {525.57501000000002, 350.5} - {525.57501000000002, 305} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - Width - 3 - - - Tail - - ID - 306 - - Class LineGraphic Head ID - 312 + 1429 ID - 315 + 1408 Points - {525.57501000000002, 201.5} - {525.57501000000002, 247.00000000000003} + {394, 362.66100999999998} + {372.96951100000001, 362.66100999999998} Style stroke + Color + + b + 0.505102 + g + 0.505102 + r + 0.505102 + HeadArrow FilledArrow Legacy LineType 1 + Pattern + 2 TailArrow 0 - Width - 3 Tail ID - 303 + 1364 @@ -118147,35 +120350,44 @@ this tag } Head ID - 311 + 1436 ID - 314 + 1407 Points - {460.14301, 276} - {387.77599000000004, 276} + {322.31200999999999, 247.91498999999999} + {293.80450100000002, 247.91498999999999} Style stroke + Color + + b + 0.505102 + g + 0.505102 + r + 0.505102 + HeadArrow FilledArrow Legacy LineType 1 + Pattern + 2 TailArrow 0 - Width - 3 Tail ID - 312 + 1357 @@ -118184,14 +120396,14 @@ this tag } Head ID - 310 + 1369 ID - 313 + 1371 Points - {256.91199, 276} - {190.36400000000003, 276} + {242.64700000000002, 362.66100999999998} + {214.63949099999999, 362.66100999999998} Style @@ -118201,47 +120413,32 @@ this tag } FilledArrow Legacy - LineType - 1 TailArrow 0 - Width - 3 Tail ID - 311 + 1370 Bounds - {{461.64301, 248.5}, {127.864, 55}} + {{244.14699999999999, 344.66100999999998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 0 - g - 0 - r - 0 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 312 + 1370 Shape - Rectangle + RoundRect Style fill @@ -118249,11 +120446,11 @@ this tag } Color b - 0.699991 + 0.837205 g - 1 + 0.959184 r - 0.726874 + 0.826135 shadow @@ -118266,14 +120463,12 @@ this tag } Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width 3 @@ -118282,42 +120477,31 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 f30ab} +\f0\fs24 \cf0 C3} VerticalPad 0 Bounds - {{258.41199, 248.5}, {127.864, 55}} + {{164.98199, 344.66100999999998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 0 - g - 0 - r - 0 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 311 + 1369 Shape - Rectangle + RoundRect Style fill @@ -118325,11 +120509,11 @@ this tag } Color b - 0.699991 + 0.837205 g - 1 + 0.959184 r - 0.726874 + 0.826135 shadow @@ -118342,14 +120526,12 @@ this tag } Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width 3 @@ -118358,18 +120540,18 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 34ac2} +\f0\fs24 \cf0 C2} VerticalPad 0 Bounds - {{61, 248.5}, {127.864, 55}} + {{395, 349.16100999999998}, {81.652298000000002, 27}} Class ShapedGraphic FontInfo @@ -118377,21 +120559,19 @@ this tag } Color b - 0 + 0.8 g - 0 + 0.8 r - 0 + 0.8 Font - Geneva - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 310 + 1364 Shape Rectangle Style @@ -118401,11 +120581,11 @@ this tag } Color b - 0.699991 + 0.933333 g - 1 + 0.933333 r - 0.726874 + 0.933333 shadow @@ -118418,71 +120598,32 @@ this tag } Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 98ca9} +\f0\fs20 \cf2 master} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 303 - - ID - 309 - Points - - {525.57501000000002, 98} - {525.57501000000002, 143.5} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - Width - 3 - - - Tail - - ID - 308 - - Bounds - {{469.38501000000002, 41.5}, {112.38, 55}} + {{323.31200999999999, 234.41498999999999}, {101, 27}} Class ShapedGraphic FontInfo @@ -118490,21 +120631,19 @@ this tag } Color b - 1 + 0.8 g - 1 + 0.8 r - 1 + 0.8 Font - Geneva - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 308 + 1357 Shape Rectangle Style @@ -118514,11 +120653,11 @@ this tag } Color b - 0.287545 + 0.933333 g - 0.290816 + 0.933333 r - 0.283427 + 0.933333 shadow @@ -118531,71 +120670,51 @@ this tag } Color b - 0.147567 + 0.382653 g - 0.14589 + 0.382653 r - 0.153061 + 0.382653 - CornerRadius - 5 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf1 HEAD} +\f0\fs20 \cf2 teamone/master} VerticalPad 0 - Bounds - {{469.38501000000002, 352}, {112.38, 55}} - Class - ShapedGraphic - FontInfo - - Color - - b - 0 - g - 0 - r - 0 - + Bounds + {{93.974602000000004, 195}, {37, 10.5953}} + Class + ShapedGraphic + FontInfo + Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 306 + 1353 Shape Rectangle Style fill - Color - - b - 0.832366 - g - 0.841837 - r - 0.820446 - + Draws + NO shadow @@ -118604,37 +120723,30 @@ this tag } stroke - Color - - b - 0.301453 - g - 0.297998 - r - 0.316327 - - CornerRadius - 5 - Width - 3 + Draws + NO Text + Pad + 0 Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 testing} +\f0\b\fs24 \cf0 My Computer} VerticalPad 0 + Wrap + NO Bounds - {{469.38501000000002, 145}, {112.38, 55}} + {{71, 212}, {516, 188}} Class ShapedGraphic FontInfo @@ -118642,21 +120754,19 @@ this tag } Color b - 0 + 0.8 g - 0 + 0.8 r - 0 + 0.8 Font - Geneva - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 303 + 1351 Shape Rectangle Style @@ -118666,11 +120776,11 @@ this tag } Color b - 0.832366 + 0.933333 g - 0.841837 + 0.933333 r - 0.820446 + 0.933333 shadow @@ -118683,27 +120793,18 @@ this tag } Color b - 0.301453 + 0.382653 g - 0.297998 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 Width - 3 + 2 Text - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 master} VerticalPad 0 @@ -118712,7 +120813,7 @@ this tag } GridInfo HPages - 1 + 2 KeepToScale Layers @@ -118746,7 +120847,9 @@ this tag } 0.0 Orientation - 1 + 2 + OutlineStyle + Basic PrintOnePage RowAlign @@ -118754,11 +120857,11 @@ this tag } RowSpacing 36 SheetTitle - 0304/05 + 338 UniqueID - 73 + 43 VPages - 1 + 2 ActiveLayerIndex @@ -118768,7 +120871,7 @@ this tag } BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {805, 732}} Class SolidGraphic ID @@ -118786,6 +120889,8 @@ this tag } 0 CanvasOrigin {0, 0} + CanvasSize + {805, 732} ColumnAlign 1 ColumnSpacing @@ -118800,14 +120905,14 @@ this tag } Head ID - 312 + 1436 ID - 316 + 1440 Points - {207.00600000000003, 211} - {148.88, 211} + {404.53936048100155, 346.70514477209099} + {290.24213051877678, 263.87085522826686} Style @@ -118821,14 +120926,12 @@ this tag } 1 TailArrow 0 - Width - 3 Tail ID - 313 + 1438 @@ -118837,14 +120940,14 @@ this tag } Head ID - 313 + 1429 ID - 315 + 1439 Points - {385.62700999999998, 211} - {322.38600000000002, 211} + {400.97699, 362.66100999999998} + {372.96951100000001, 362.66100999999998} Style @@ -118858,43 +120961,30 @@ this tag } 1 TailArrow 0 - Width - 3 Tail ID - 314 + 1438 Bounds - {{387.12700999999998, 183.5}, {112.38, 55}} + {{402.47699, 344.66100999999998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 0 - g - 0 - r - 0 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 314 + 1438 Shape - Rectangle + RoundRect Style fill @@ -118902,11 +120992,11 @@ this tag } Color b - 0.699991 + 0.689968 g - 1 + 0.77551 r - 0.726874 + 0.669392 shadow @@ -118919,14 +121009,12 @@ this tag } Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width 3 @@ -118935,42 +121023,66 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 f30ab} +\f0\fs24 \cf0 C8} VerticalPad 0 - Bounds - {{208.506, 183.5}, {112.38, 55}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Color + ID + 1421 + + ID + 1437 + Points + + {242.64700000000002, 247.91498999999999} + {214.63949099999999, 247.91498999999999} + + Style + + stroke - b - 0 - g - 0 - r + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow 0 + + Tail + + ID + 1436 + + + + Bounds + {{244.14699999999999, 229.91498999999999}, {48.157501000000003, 36}} + Class + ShapedGraphic + FontInfo + Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 313 + 1436 Shape - Rectangle + RoundRect Style fill @@ -118978,11 +121090,11 @@ this tag } Color b - 0.699991 + 0.837205 g - 1 + 0.959184 r - 0.726874 + 0.826135 shadow @@ -118995,14 +121107,12 @@ this tag } Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width 3 @@ -119011,42 +121121,66 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 34ac2} +\f0\fs24 \cf0 C4'} VerticalPad 0 - Bounds - {{35, 183.5}, {112.38, 55}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Color + ID + 1375 + + ID + 1435 + Points + + {166.87558110094875, 78.345776970030244} + {132.0810108331963, 102.93122091765399} + + Style + + stroke - b - 0 - g - 0 - r + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow 0 + + Tail + + ID + 1434 + + + + Bounds + {{164.98199, 44.669998}, {48.157501000000003, 36}} + Class + ShapedGraphic + FontInfo + Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 312 + 1434 Shape - Rectangle + RoundRect Style fill @@ -119054,11 +121188,11 @@ this tag } Color b - 0.699991 + 0.837205 g - 1 + 0.959184 r - 0.726874 + 0.826135 shadow @@ -119071,14 +121205,12 @@ this tag } Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width 3 @@ -119087,11 +121219,11 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 98ca9} +\f0\fs24 \cf0 C5} VerticalPad 0 @@ -119102,14 +121234,14 @@ this tag } Head ID - 314 + 1379 ID - 311 + 1433 Points - {564.24798999999985, 211} - {501.00700999999998, 211} + {246.50000000000003, 62.669998} + {214.63949099999999, 62.669998} Style @@ -119123,43 +121255,30 @@ this tag } 1 TailArrow 0 - Width - 3 Tail ID - 310 + 1432 Bounds - {{565.74798999999996, 183.5}, {112.38, 55}} + {{248, 44.669998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 0 - g - 0 - r - 0 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 310 + 1432 Shape - Rectangle + RoundRect Style fill @@ -119167,11 +121286,11 @@ this tag } Color b - 0.699991 + 0.837205 g - 1 + 0.959184 r - 0.726874 + 0.826135 shadow @@ -119184,14 +121303,12 @@ this tag } Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width 3 @@ -119200,11 +121317,11 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 c2b9e} +\f0\fs24 \cf0 C4'} VerticalPad 0 @@ -119215,14 +121332,14 @@ this tag } Head ID - 306 + 1424 ID - 309 + 1431 Points - {621.93799000000001, 389} - {621.93799000000001, 343.5} + {324.90919801903533, 347.5158763596728} + {290.70731294233718, 324.47512371286302} Style @@ -119236,43 +121353,65 @@ this tag } 1 TailArrow 0 - Width - 3 Tail ID - 308 + 1429 + + + + Class + LineGraphic + Head + + ID + 1370 + + ID + 1430 + Points + + {321.81200999999999, 362.66100999999998} + {293.80450100000002, 362.66100999999998} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1429 Bounds - {{565.74798999999996, 390.5}, {112.38, 55}} + {{323.31200999999999, 344.66100999999998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 1 - g - 1 - r - 1 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 308 + 1429 Shape - Rectangle + RoundRect Style fill @@ -119280,11 +121419,11 @@ this tag } Color b - 0.287545 + 0.689968 g - 0.290816 + 0.77551 r - 0.283427 + 0.669392 shadow @@ -119297,14 +121436,12 @@ this tag } Color b - 0.147567 + 0.382653 g - 0.14589 + 0.382653 r - 0.153061 + 0.382653 - CornerRadius - 5 Width 3 @@ -119313,11 +121450,11 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf1 HEAD} +\f0\fs24 \cf0 C7} VerticalPad 0 @@ -119328,14 +121465,84 @@ this tag } Head ID - 310 + 1420 + + ID + 1428 + Points + + {166.57918708893021, 347.51585932803283} + {132.37740486291409, 324.4751407623948} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1369 + + + + Class + LineGraphic + Head + + ID + 1421 + + ID + 1427 + Points + + {246.70574829791508, 292.63510250043328} + {210.58074271532635, 264.60987748144561} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1424 + + + + Class + LineGraphic + Head + + ID + 1420 ID - 307 + 1426 Points - {621.93799000000001, 285.5} - {621.93799000000001, 240} + {167.54074924911714, 264.60989451028172} + {131.41584274544542, 292.63508548227685} Style @@ -119349,90 +121556,12 @@ this tag } 1 TailArrow 0 - Width - 3 Tail ID - 306 - - - - Bounds - {{565.74798999999996, 287}, {112.38, 55}} - Class - ShapedGraphic - FontInfo - - Color - - b - 0 - g - 0 - r - 0 - - Font - Geneva - NSKern - 0.0 - Size - 14 - - ID - 306 - Shape - Rectangle - Style - - fill - - Color - - b - 0.832366 - g - 0.841837 - r - 0.820446 - - - shadow - - Draws - NO - - stroke - - Color - - b - 0.301453 - g - 0.297998 - r - 0.316327 - - CornerRadius - 5 - Width - 3 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 testing} - VerticalPad - 0 + 1421 @@ -119441,14 +121570,14 @@ this tag } Head ID - 314 + 1422 ID - 305 + 1425 Points - {443.31702000000001, 136.5} - {443.31702000000001, 182} + {242.64700000000002, 309.32999000000001} + {214.63949099999999, 309.32999000000001} Style @@ -119458,47 +121587,32 @@ this tag } FilledArrow Legacy - LineType - 1 TailArrow 0 - Width - 3 Tail ID - 303 + 1424 Bounds - {{387.12700999999998, 80}, {112.38, 55}} + {{244.14699999999999, 291.32999000000001}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 0 - g - 0 - r - 0 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 303 + 1424 Shape - Rectangle + RoundRect Style fill @@ -119506,11 +121620,11 @@ this tag } Color b - 0.832366 + 0.837205 g - 0.841837 + 0.959184 r - 0.820446 + 0.826135 shadow @@ -119523,14 +121637,12 @@ this tag } Color b - 0.301453 + 0.382653 g - 0.297998 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 Width 3 @@ -119539,152 +121651,29 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 master} +\f0\fs24 \cf0 C6} VerticalPad 0 - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - - Lock - NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 1 - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - 0307 - UniqueID - 75 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 553}} - Class - SolidGraphic - ID - 2 - Style - - stroke - - Draws - NO - - - - BaseZoom - 0 - CanvasOrigin - {0, 0} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - - - Class - LineGraphic - Head - - ID - 314 - - ID - 318 - Points - - {207.00600000000003, 245} - {148.88, 245} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - Width - 3 - - - Tail - - ID - 315 - - Class LineGraphic Head ID - 315 + 1420 ID - 317 + 1423 Points - {385.62700999999998, 245} - {322.38600000000002, 245} + {163.48199000000002, 309.32999000000001} + {135.47460199999998, 309.32999000000001} Style @@ -119694,47 +121683,32 @@ this tag } FilledArrow Legacy - LineType - 1 TailArrow 0 - Width - 3 Tail ID - 316 + 1422 Bounds - {{387.12700999999998, 217.5}, {112.38, 55}} + {{164.98199, 291.32999000000001}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 0 - g - 0 - r - 0 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 316 + 1422 Shape - Rectangle + RoundRect Style fill @@ -119742,11 +121716,11 @@ this tag } Color b - 0.699991 + 0.837205 g - 1 + 0.959184 r - 0.726874 + 0.826135 shadow @@ -119759,14 +121733,12 @@ this tag } Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width 3 @@ -119775,42 +121747,31 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 f30ab} +\f0\fs24 \cf0 C4} VerticalPad 0 Bounds - {{208.506, 217.5}, {112.38, 55}} + {{164.98199, 229.91498999999999}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 0 - g - 0 - r - 0 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 315 + 1421 Shape - Rectangle + RoundRect Style fill @@ -119818,11 +121779,11 @@ this tag } Color b - 0.699991 + 0.837205 g - 1 + 0.959184 r - 0.726874 + 0.826135 shadow @@ -119835,14 +121796,12 @@ this tag } Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width 3 @@ -119851,42 +121810,31 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 34ac2} +\f0\fs24 \cf0 C5} VerticalPad 0 Bounds - {{35, 217.5}, {112.38, 55}} + {{85.817100999999994, 291.32999000000001}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 0 - g - 0 - r - 0 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 314 + 1420 Shape - Rectangle + RoundRect Style fill @@ -119894,11 +121842,11 @@ this tag } Color b - 0.699991 + 0.837205 g - 1 + 0.959184 r - 0.726874 + 0.826135 shadow @@ -119911,14 +121859,12 @@ this tag } Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width 3 @@ -119927,11 +121873,11 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 98ca9} +\f0\fs24 \cf0 C1} VerticalPad 0 @@ -119942,19 +121888,28 @@ this tag } Head ID - 316 + 1379 ID - 313 + 1419 Points - {564.24798999999985, 245} - {501.00700999999998, 245} + {249.5982850219936, 103.45980674871693} + {211.54120595015422, 77.817191303565892} Style stroke + Color + + b + 0.658163 + g + 0.658163 + r + 0.658163 + HeadArrow FilledArrow Legacy @@ -119963,90 +121918,56 @@ this tag } 1 TailArrow 0 - Width - 3 Tail ID - 312 + 1382 - Bounds - {{565.74798999999996, 217.5}, {112.38, 55}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Color - - b - 0 - g - 0 - r - 0 - - Font - Geneva - NSKern - 0.0 - Size - 14 + ID + 1375 ID - 312 - Shape - Rectangle + 1409 + Points + + {166.87558110094875, 78.345776970030244} + {132.0810108331963, 102.93122091765399} + Style - fill - - Color - - b - 0.699991 - g - 1 - r - 0.726874 - - - shadow - - Draws - NO - stroke Color b - 0.172231 + 0.505102 g - 0.316327 + 0.505102 r - 0.1567 + 0.505102 - CornerRadius - 5 - Width - 3 + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs36 \cf0 c2b9e} - VerticalPad - 0 + ID + 1379 @@ -120055,40 +121976,45 @@ this tag } Head ID - 303 + 1380 ID - 309 + 1383 Points - {443.31702000000001, 67} - {443.31702000000001, 112.5} + {246.50000000000003, 118.607} + {214.63949099999999, 118.607} Style stroke + Color + + b + 0.658163 + g + 0.658163 + r + 0.658163 + HeadArrow FilledArrow Legacy - LineType - 1 TailArrow 0 - Width - 3 Tail ID - 308 + 1382 Bounds - {{387.12700999999998, 10.5}, {112.38, 55}} + {{248, 100.607}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -120096,23 +122022,21 @@ this tag } Color b - 1 + 0.596939 g - 1 + 0.596939 r - 1 + 0.596939 Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 308 + 1382 Shape - Rectangle + RoundRect Style fill @@ -120120,11 +122044,11 @@ this tag } Color b - 0.287545 + 0.900487 g - 0.290816 + 0.959184 r - 0.283427 + 0.908507 shadow @@ -120137,14 +122061,12 @@ this tag } Color b - 0.147567 + 0.658163 g - 0.14589 + 0.658163 r - 0.153061 + 0.658163 - CornerRadius - 5 Width 3 @@ -120153,11 +122075,11 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red152\green152\blue152;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf1 HEAD} +\f0\fs24 \cf2 C6} VerticalPad 0 @@ -120168,40 +122090,45 @@ this tag } Head ID - 312 + 1375 ID - 307 + 1381 Points - {621.93799000000001, 319.49999999999994} - {621.93799000000001, 274} + {163.48199000000002, 118.607} + {135.47460199999998, 118.607} Style stroke + Color + + b + 0.658163 + g + 0.658163 + r + 0.658163 + HeadArrow FilledArrow Legacy - LineType - 1 TailArrow 0 - Width - 3 Tail ID - 306 + 1380 Bounds - {{565.74798999999996, 321}, {112.38, 55}} + {{164.98199, 100.607}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -120209,23 +122136,21 @@ this tag } Color b - 0 + 0.596939 g - 0 + 0.596939 r - 0 + 0.596939 Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 306 + 1380 Shape - Rectangle + RoundRect Style fill @@ -120233,11 +122158,11 @@ this tag } Color b - 0.832366 + 0.900487 g - 0.841837 + 0.959184 r - 0.820446 + 0.908507 shadow @@ -120250,14 +122175,12 @@ this tag } Color b - 0.301453 + 0.658163 g - 0.297998 + 0.658163 r - 0.316327 + 0.658163 - CornerRadius - 5 Width 3 @@ -120266,55 +122189,18 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red152\green152\blue152;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 testing} +\f0\fs24 \cf2 C4} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 316 - - ID - 305 - Points - - {443.31702000000001, 170.5} - {443.31702000000001, 215.99999999999997} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - Width - 3 - - - Tail - - ID - 303 - - Bounds - {{387.12700999999998, 114}, {112.38, 55}} + {{164.98199, 44.669998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -120322,23 +122208,21 @@ this tag } Color b - 0 + 0.505102 g - 0 + 0.505102 r - 0 + 0.505102 Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 303 + 1379 Shape - Rectangle + RoundRect Style fill @@ -120346,11 +122230,11 @@ this tag } Color b - 0.832366 + 0.91294 g - 0.841837 + 0.959184 r - 0.820446 + 0.897525 shadow @@ -120363,14 +122247,12 @@ this tag } Color b - 0.301453 + 0.663265 g - 0.297998 + 0.663265 r - 0.316327 + 0.663265 - CornerRadius - 5 Width 3 @@ -120379,215 +122261,178 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red129\green129\blue129;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 master} +\f0\fs24 \cf2 C5} VerticalPad 0 - - GridInfo - - HPages - 1 - KeepToScale - - Layers - - - Lock - NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoLineLength - 0.20000000298023224 - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - Orientation - 1 - PrintOnePage - - RowAlign - 1 - RowSpacing - 36 - SheetTitle - 0308 - UniqueID - 76 - VPages - 1 - - - ActiveLayerIndex - 0 - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {756, 553}} - Class - SolidGraphic - ID - 2 - Style - - stroke - - Draws - NO - - - - BaseZoom - 0 - CanvasOrigin - {0, 0} - ColumnAlign - 1 - ColumnSpacing - 36 - DisplayScale - 1 in = 1.00000 in - GraphicsList - Class LineGraphic Head ID - 318 + 1432 ID - 321 + 1405 Points - {556.5720542822454, 351.71649837854409} - {496.93495564216016, 332.53351206106481} + {330.01801, 62.669998} + {297.65750100000002, 62.669998} Style stroke + Color + + b + 0.505102 + g + 0.505102 + r + 0.505102 + HeadArrow FilledArrow Legacy LineType 1 + Pattern + 2 TailArrow 0 - Width - 3 Tail ID - 310 + 1344 + Bounds + {{85.817100999999994, 100.607}, {48.157501000000003, 36}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 316 + Font + Helvetica + Size + 12 ID - 320 - Points - - {203.00600000000003, 314} - {144.88, 314} - + 1375 + Shape + RoundRect Style + fill + + Color + + b + 0.837205 + g + 0.959184 + r + 0.826135 + + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 + Color + + b + 0.382653 + g + 0.382653 + r + 0.382653 + Width 3 - Tail + Text - ID - 317 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 C1} + VerticalPad + 0 + Bounds + {{130, 20}, {36.333599, 3.3681098999999999}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 317 + Font + Helvetica + Size + 12 ID - 319 - Points - - {381.62700999999998, 314} - {318.38600000000002, 314} - + 1352 + Shape + Rectangle Style + fill + + Draws + NO + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - Width - 3 + Draws + NO - Tail + Text - ID - 318 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\b\fs24 \cf0 git.team1.ourcompany.com} + VerticalPad + 0 + Wrap + NO Bounds - {{383.12700999999998, 286.5}, {112.38, 55}} + {{331.01801, 49.169998}, {70.932297000000005, 27}} Class ShapedGraphic FontInfo @@ -120595,21 +122440,19 @@ this tag } Color b - 0 + 0.8 g - 0 + 0.8 r - 0 + 0.8 Font - Geneva - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 318 + 1344 Shape Rectangle Style @@ -120619,11 +122462,11 @@ this tag } Color b - 0.699991 + 0.933333 g - 1 + 0.933333 r - 0.726874 + 0.933333 shadow @@ -120636,34 +122479,32 @@ this tag } Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 f30ab} +\f0\fs20 \cf2 master} VerticalPad 0 Bounds - {{204.506, 286.5}, {112.38, 55}} + {{71, 33.366298999999998}, {516, 139.63300000000001}} Class ShapedGraphic FontInfo @@ -120671,21 +122512,19 @@ this tag } Color b - 0 + 0.8 g - 0 + 0.8 r - 0 + 0.8 Font - Geneva - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 317 + 1350 Shape Rectangle Style @@ -120695,11 +122534,11 @@ this tag } Color b - 0.699991 + 0.933333 g - 1 + 0.933333 r - 0.726874 + 0.933333 shadow @@ -120712,105 +122551,112 @@ this tag } Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width - 3 + 2 Text - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs36 \cf0 34ac2} VerticalPad 0 - Bounds - {{31, 286.5}, {112.38, 55}} Class - ShapedGraphic - FontInfo + LineGraphic + Head - Color - - b - 0 - g - 0 - r - 0 - - Font - Geneva - NSKern - 0.0 - Size - 14 + ID + 1438 - ID - 316 - Shape - Rectangle + ID + 1408 + Points + + {480.642, 362.66100999999998} + {452.13449100000003, 362.66100999999998} + Style - fill + stroke Color b - 0.699991 + 0.505102 g - 1 + 0.505102 r - 0.726874 + 0.505102 + HeadArrow + FilledArrow + Legacy + + LineType + 1 + Pattern + 2 + TailArrow + 0 - shadow - - Draws - NO - + + Tail + + ID + 1364 + + + + Class + LineGraphic + Head + + ID + 1436 + + ID + 1407 + Points + + {322.31200999999999, 247.91498999999999} + {293.80450100000002, 247.91498999999999} + + Style + stroke Color b - 0.172231 + 0.505102 g - 0.316327 + 0.505102 r - 0.1567 + 0.505102 - CornerRadius - 5 - Width - 3 + HeadArrow + FilledArrow + Legacy + + LineType + 1 + Pattern + 2 + TailArrow + 0 - Text + Tail - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs36 \cf0 98ca9} - VerticalPad - 0 + ID + 1357 @@ -120819,14 +122665,14 @@ this tag } Head ID - 318 + 1369 ID - 315 + 1371 Points - {556.5720542822454, 276.28350162145591} - {496.93495564216016, 295.46648793893519} + {242.64700000000002, 362.66100999999998} + {214.63949099999999, 362.66100999999998} Style @@ -120836,47 +122682,32 @@ this tag } FilledArrow Legacy - LineType - 1 TailArrow 0 - Width - 3 Tail ID - 314 + 1370 Bounds - {{558, 230.25}, {112.38, 55}} + {{244.14699999999999, 344.66100999999998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 0 - g - 0 - r - 0 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 314 + 1370 Shape - Rectangle + RoundRect Style fill @@ -120884,11 +122715,11 @@ this tag } Color b - 0.699991 + 0.837205 g - 1 + 0.959184 r - 0.726874 + 0.826135 shadow @@ -120901,14 +122732,12 @@ this tag } Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width 3 @@ -120917,42 +122746,31 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 c2b9e} +\f0\fs24 \cf0 C3} VerticalPad 0 Bounds - {{558, 342.75}, {112.38, 55}} + {{164.98199, 344.66100999999998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo - Color - - b - 0 - g - 0 - r - 0 - Font - Geneva - NSKern - 0.0 + Helvetica Size - 14 + 12 ID - 310 + 1369 Shape - Rectangle + RoundRect Style fill @@ -120960,11 +122778,11 @@ this tag } Color b - 0.699991 + 0.837205 g - 1 + 0.959184 r - 0.726874 + 0.826135 shadow @@ -120977,14 +122795,12 @@ this tag } Color b - 0.172231 + 0.382653 g - 0.316327 + 0.382653 r - 0.1567 + 0.382653 - CornerRadius - 5 Width 3 @@ -120993,55 +122809,18 @@ this tag } Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs36 \cf0 87ab2} +\f0\fs24 \cf0 C2} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 303 - - ID - 309 - Points - - {614.19000000000005, 78.5} - {614.19000000000005, 124} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - Width - 3 - - - Tail - - ID - 308 - - Bounds - {{558, 22}, {112.38, 55}} + {{481.642, 349.16100999999998}, {81.652298000000002, 27}} Class ShapedGraphic FontInfo @@ -121049,21 +122828,19 @@ this tag } Color b - 1 + 0.8 g - 1 + 0.8 r - 1 + 0.8 Font - Geneva - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 308 + 1364 Shape Rectangle Style @@ -121073,11 +122850,11 @@ this tag } Color b - 0.287545 + 0.933333 g - 0.290816 + 0.933333 r - 0.283427 + 0.933333 shadow @@ -121090,71 +122867,32 @@ this tag } Color b - 0.147567 + 0.382653 g - 0.14589 + 0.382653 r - 0.153061 + 0.382653 - CornerRadius - 5 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf1 HEAD} +\f0\fs20 \cf2 master} VerticalPad 0 - - Class - LineGraphic - Head - - ID - 310 - - ID - 307 - Points - - {614.19000000000005, 453} - {614.19000000000005, 399.24999999999994} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - Width - 3 - - - Tail - - ID - 306 - - Bounds - {{558, 454.5}, {112.38, 55}} + {{323.31200999999999, 234.41498999999999}, {101, 27}} Class ShapedGraphic FontInfo @@ -121162,21 +122900,19 @@ this tag } Color b - 0 + 0.8 g - 0 + 0.8 r - 0 + 0.8 Font - Geneva - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 306 + 1357 Shape Rectangle Style @@ -121186,11 +122922,11 @@ this tag } Color b - 0.832366 + 0.933333 g - 0.841837 + 0.933333 r - 0.820446 + 0.933333 shadow @@ -121203,71 +122939,83 @@ this tag } Color b - 0.301453 + 0.382653 g - 0.297998 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 Width - 3 + 2 Text Text {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} +{\fonttbl\f0\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;\red119\green119\blue119;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc -\f0\fs28 \cf0 testing} +\f0\fs20 \cf2 teamone/master} VerticalPad 0 + Bounds + {{93.974602000000004, 195}, {37, 10.5953}} Class - LineGraphic - Head + ShapedGraphic + FontInfo - ID - 314 + Font + Helvetica + Size + 12 ID - 305 - Points - - {614.19000000000005, 182} - {614.19000000000005, 228.75} - + 1353 + Shape + Rectangle Style + fill + + Draws + NO + + shadow + + Draws + NO + stroke - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - Width - 3 + Draws + NO - Tail + Text - ID - 303 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\b\fs24 \cf0 My Computer} + VerticalPad + 0 + Wrap + NO Bounds - {{558, 125.5}, {112.38, 55}} + {{71, 212}, {516, 188}} Class ShapedGraphic FontInfo @@ -121275,21 +123023,19 @@ this tag } Color b - 0 + 0.8 g - 0 + 0.8 r - 0 + 0.8 Font - Geneva - NSKern - 0.0 + LucidaGrande Size - 14 + 10 ID - 303 + 1351 Shape Rectangle Style @@ -121299,11 +123045,11 @@ this tag } Color b - 0.832366 + 0.933333 g - 0.841837 + 0.933333 r - 0.820446 + 0.933333 shadow @@ -121316,27 +123062,18 @@ this tag } Color b - 0.301453 + 0.382653 g - 0.297998 + 0.382653 r - 0.316327 + 0.382653 - CornerRadius - 5 Width - 3 + 2 Text - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -{\fonttbl\f0\fnil\fcharset0 Geneva;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs28 \cf0 master} VerticalPad 0 @@ -121345,7 +123082,7 @@ this tag } GridInfo HPages - 1 + 2 KeepToScale Layers @@ -121379,7 +123116,9 @@ this tag } 0.0 Orientation - 1 + 2 + OutlineStyle + Basic PrintOnePage RowAlign @@ -121387,11 +123126,11 @@ this tag } RowSpacing 36 SheetTitle - 0309 + 339 UniqueID - 77 + 44 VPages - 1 + 2 ActiveLayerIndex @@ -121451,8 +123190,8 @@ this tag } 1374 Points - {387.11013585782928, 222.42305885658681} - {352.99068204439311, 260.95701800507766} + {387.10969278059923, 222.42304559994781} + {352.98934614177284, 260.95697803630623} Style @@ -121498,8 +123237,8 @@ this tag } 1373 Points - {336.05649136145564, 337.85996536868589} - {336.05665625149487, 299.57999414193546} + {336.05641868129891, 337.85996536867674} + {336.05643714005885, 299.57999414205403} Style @@ -121545,8 +123284,8 @@ this tag } 1371 Points - {404.06900850676203, 162.06001193551037} - {404.09944337399025, 183.80002933129606} + {404.04827513234517, 162.0600128677815} + {404.05498663161177, 183.80002322743385} Style @@ -121710,8 +123449,8 @@ this tag } 1369 Points - {244.72733840345489, 260.95365769876952} - {210.40149235170148, 221.92587889328368} + {244.72379986747771, 260.95376375825288} + {210.3907333029355, 221.92620132483682} Style @@ -122222,8 +123961,8 @@ this tag } 1355 Points - {236.31736739733353, 203.11445506259895} - {218.79543164150485, 202.98559076899005} + {236.31736739733424, 203.11445506242478} + {218.79543164150601, 202.98559076869492} Style @@ -122807,8 +124546,8 @@ this tag } 1371 Points - {336.05756407024899, 162.0400085497609} - {336.05888633565041, 183.80002292753429} + {336.05666387283168, 162.04000855151753} + {336.05695517461481, 183.80002291602167} Style @@ -122972,8 +124711,8 @@ this tag } 1369 Points - {244.72337570462531, 260.95377647115367} - {210.38944362446222, 221.92623997820436} + {244.72337122613087, 260.95377660538151} + {210.38943000748529, 221.92624038632744} Style @@ -123537,8 +125276,8 @@ this tag } 1355 Points - {236.31736739733455, 203.11445506234298} - {218.79543164150655, 202.98559076855631} + {236.31736739733458, 203.11445506233565} + {218.79543164150664, 202.98559076854386} Style @@ -124017,8 +125756,8 @@ this tag } 1376 Points - {453.31701872668037, 203.29562399841123} - {429.27480972978697, 203.29143257472151} + {453.31701853369259, 203.29886941822335} + {429.27481046519631, 203.29777033058713} Style @@ -124127,8 +125866,8 @@ this tag } 1374 Points - {387.10969278059923, 222.42304559994781} - {352.98934614177284, 260.95697803630623} + {387.10964404019228, 222.42304414166625} + {352.98919918678297, 260.9569736395166} Style @@ -124174,8 +125913,8 @@ this tag } 1373 Points - {336.05641868129891, 337.85996536867674} - {336.05643714005885, 299.57999414205403} + {336.05641868129891, 337.85996536867663} + {336.05641868129891, 299.57999414205557} Style @@ -124221,8 +125960,8 @@ this tag } 1371 Points - {478.51532050315456, 162.04000694116351} - {478.47626810518398, 183.80003346983031} + {478.54190733357376, 162.0400084734452} + {478.53330389794013, 183.80002342768915} Style @@ -124386,8 +126125,8 @@ this tag } 1369 Points - {244.72379986747771, 260.95376375825288} - {210.3907333029355, 221.92620132483682} + {244.72341710739147, 260.95377523024439} + {210.38956951063741, 221.92623620519399} Style @@ -124898,8 +126637,8 @@ this tag } 1355 Points - {236.31736739733424, 203.11445506242478} - {218.79543164150601, 202.98559076869492} + {236.31736739733446, 203.1144550623641} + {218.79543164150644, 202.98559076859212} Style @@ -125426,8 +127165,8 @@ this tag } 1380 Points - {521.30213232541223, 203.34080578283906} - {503.78176938935422, 203.3691237832835} + {521.30211667928938, 203.31422877550077} + {503.78181431624455, 203.32409271928455} Style @@ -125536,8 +127275,8 @@ this tag } 1378 Points - {378.81004348929469, 280.1371450937408} - {361.28871009824229, 280.17683066571203} + {378.81001276096907, 280.09990062343326} + {361.2887983382455, 280.11372355638565} Style @@ -125646,8 +127385,8 @@ this tag } 1376 Points - {453.31701853369259, 203.29886941822335} - {429.27481046519631, 203.29777033058713} + {453.31701852040743, 203.29972044193494} + {429.27481051571056, 203.29943223587836} Style @@ -125756,8 +127495,8 @@ this tag } 1374 Points - {387.10964404019228, 222.42304414166625} - {352.98919918678297, 260.9569736395166} + {387.10963867853769, 222.42304398124909} + {352.98918302110224, 260.95697315585022} Style @@ -125803,8 +127542,8 @@ this tag } 1373 Points - {404.03750250530953, 338.11999245342753} - {404.02754901488709, 299.57999370648457} + {404.0418651317467, 338.11999242048779} + {404.04076088437711, 299.57999413669455} Style @@ -125850,8 +127589,8 @@ this tag } 1371 Points - {546.53284726893287, 162.04000854775251} - {546.53093668184692, 183.80002294069692} + {546.53414799536574, 162.04000855142007} + {546.53372708332802, 183.80002291666051} Style @@ -126015,8 +127754,8 @@ this tag } 1369 Points - {244.72341710739147, 260.95377523024439} - {210.38956951063741, 221.92623620519399} + {244.72337570462531, 260.95377647115367} + {210.38944362446222, 221.92623997820436} Style @@ -126527,8 +128266,8 @@ this tag } 1355 Points - {236.31736739733446, 203.1144550623641} - {218.79543164150644, 202.98559076859212} + {236.31736739733455, 203.11445506234298} + {218.79543164150655, 202.98559076855631} Style @@ -127007,8 +128746,8 @@ this tag } 1383 Points - {589.28723383434067, 203.34668934795579} - {571.76684957048099, 203.3790927084398} + {589.2872133475488, 203.31627818803366} + {571.7669083973343, 203.32756515850107} Style @@ -127165,8 +128904,8 @@ this tag } 1380 Points - {521.30211667928938, 203.31422877550077} - {503.78181431624455, 203.32409271928455} + {521.30211478133981, 203.30497123396671} + {503.78181976667582, 203.30840713376128} Style @@ -127275,8 +129014,8 @@ this tag } 1378 Points - {378.81001276096907, 280.09990062343326} - {361.2887983382455, 280.11372355638565} + {378.81000903380408, 280.08692786056412} + {361.28880904148849, 280.0917425855344} Style @@ -127385,8 +129124,8 @@ this tag } 1376 Points - {453.31701852040743, 203.29972044193494} - {429.27481051571056, 203.29943223587836} + {453.31701851948992, 203.29994359992588} + {429.27481051917033, 203.29986802566899} Style @@ -127495,8 +129234,8 @@ this tag } 1374 Points - {387.10963867853769, 222.42304398124909} - {352.98918302110224, 260.95697315585022} + {387.10963808873271, 222.42304396360248} + {352.98918124280783, 260.95697310264484} Style @@ -127542,8 +129281,8 @@ this tag } 1373 Points - {404.03750452282355, 338.11999245340002} - {404.02755512476909, 299.57999370684257} + {404.04186535557113, 338.11999242048745} + {404.0407615622118, 299.57999413669899} Style @@ -127589,8 +129328,8 @@ this tag } 1371 Points - {614.56026547238446, 162.0400062624955} - {614.60682502027839, 183.8000379175889} + {614.52856779068463, 162.04000844050634} + {614.53882508542233, 183.80002364356238} Style @@ -127754,8 +129493,8 @@ this tag } 1369 Points - {244.72337570462531, 260.95377647115367} - {210.38944362446222, 221.92623997820436} + {244.72337122613087, 260.95377660538151} + {210.38943000748529, 221.92624038632744} Style @@ -128266,8 +130005,8 @@ this tag } 1355 Points - {236.31736739733455, 203.11445506234298} - {218.79543164150655, 202.98559076855631} + {236.31736739733458, 203.11445506233565} + {218.79543164150664, 202.98559076854386} Style @@ -128698,9 +130437,9 @@ this tag } WindowInfo BottomSlabHeight - 347 + 327 CurrentSheet - 58 + 89 Expanded_Canvases Frame @@ -128797,7 +130536,7 @@ this tag } 1 - 101 + 01-foo/101 1 1 @@ -129077,7 +130816,7 @@ this tag } 1 - 0304/05 + 0304 1 1 @@ -129181,6 +130920,21 @@ this tag } 1 1 + + 0305 + 1 + 1 + + + branch-simple 1 + 1 + 1 + + + branch-simple 2 + 1 + 1 +