diff --git a/en/book/02-git-basics/chapter2.asc b/en/book/02-git-basics/chapter2.asc index 1c4b8f4b7..fa244e089 100644 --- a/en/book/02-git-basics/chapter2.asc +++ b/en/book/02-git-basics/chapter2.asc @@ -626,10 +626,12 @@ image::images/18333fig0202-tn.png[The gitk history visualizer.] You can see the commit history in the top half of the window along with a nice ancestry graph. The diff viewer in the bottom half of the window shows you the changes introduced at any commit you click. +[[_undoing]] === Undoing Things At any stage, you may want to undo something. Here, we’ll review a few basic tools for undoing changes that you’ve made. Be careful, because you can’t always undo some of these undos. This is one of the few areas in Git where you may lose some work if you do it wrong. +[[_reset]] ==== Reset Demystified ===== The Three Trees diff --git a/en/book/03-git-branching/chapter3.asc b/en/book/03-git-branching/chapter3.asc index 64d9b12c9..08f20f5f8 100644 --- a/en/book/03-git-branching/chapter3.asc +++ b/en/book/03-git-branching/chapter3.asc @@ -2,100 +2,115 @@ 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. 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. +Some people refer to the branching model in Git 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. === What a Branch Is 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 commit in Git, 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. +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. 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: - $ git add README test.rb LICENSE - $ git commit -m 'initial commit of my project' +[source,shell] +---- +$ git add README test.rb LICENSE +$ git commit -m 'initial commit of my project' +---- When you create the commit by running `git commit`, Git checksums each subdirectory (in this case, just the root project directory) and stores those tree objects in the Git repository. 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]] -.Single commit repository data. -image::images/18333fig0301-tn.png[Single commit repository data.] +.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]] -.Git object data for multiple commits. -image::images/18333fig0302-tn.png[Git object data for multiple commits.] +.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 initially make commits, you’re given a master branch that points to the last commit you made. Every time you commit, it moves forward automatically. +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. Every time you commit, it moves forward automatically. -.Branch pointing into the commit data’s history. -image::images/18333fig0303-tn.png[Branch pointing into the commit data’s history.] +.A branch and its commit history +image::images/18333fig0303-tn.png[A branch and its commit history.] 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. You do this with the `git branch` command: - $ git branch testing +[source,shell] +---- +$ git branch testing +---- -This creates a new pointer at the same commit you’re currently on (see <>). +This creates a new pointer at the same commit you’re currently on. -[[history_diagram_a]] -.Multiple branches pointing into the commit’s data history. -image::images/18333fig0304-tn.png[Multiple branches pointing into the commit’s data history.] +.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? 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 (see <>). +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. -[[history_diagram_b]] -.HEAD file pointing to the branch you’re on. -image::images/18333fig0305-tn.png[HEAD file pointing to the branch you’re on.] +.HEAD pointing to a branch +image::images/18333fig0305-tn.png[HEAD pointing to a branch.] To switch to an existing branch, you run the `git checkout` command. Let’s switch to the new testing branch: - $ git checkout testing +[source,shell] +---- +$ git checkout testing +---- -This moves HEAD to point to the testing branch (see <>). +This moves `HEAD` to point to the `testing` branch. -[[history_diagram_c]] -.HEAD points to another branch when you switch branches. -image::images/18333fig0306-tn.png[HEAD points to another branch when you switch branches.] +.HEAD points to the current branch +image::images/18333fig0306-tn.png[HEAD points to the current branch.] What is the significance of that? Well, let’s do another commit: - $ vim test.rb - $ git commit -a -m 'made a change' +[source,shell] +---- +$ vim test.rb +$ git commit -a -m 'made a change' +---- <> illustrates the result. [[history_diagram_d]] -.The branch that HEAD points to moves forward with each commit. -image::images/18333fig0307-tn.png[The branch that HEAD points to moves forward with each commit.] +.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: - $ git checkout master +[source,shell] +---- +$ git checkout master +---- <> shows the result. [[history_diagram_e]] -.HEAD moves to another branch on a checkout. -image::images/18333fig0308-tn.png[HEAD moves to another branch on a checkout.] +.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 temporarily so you can go in a different direction. +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. Let’s make a few changes and commit again: - $ vim test.rb - $ git commit -a -m 'made other changes' +[source,shell] +---- +$ vim test.rb +$ 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. And you did all that with simple `branch` and `checkout` commands. +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. And you did all that with simple `branch`, `checkout`, and `commit` commands. -.The branch histories have diverged. -image::images/18333fig0309-tn.png[The branch histories have diverged.] +.Divergent history +image::images/18333fig0309-tn.png[Divergent history.] 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 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. These features help encourage developers to create and use branches often. +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. These features help encourage developers to create and use branches often. Let’s see why you should do so. @@ -116,93 +131,115 @@ At this stage, you’ll receive a call that another issue is critical and you ne ==== Basic Branching -First, let’s say you’re working on your project and have a couple of commits already (see <>). +First, let’s say you’re working on your project and have a couple of commits already. -[[branch_diagram_a]] -.A short and simple commit history. -image::images/18333fig0310-tn.png[A short and simple commit history.] +.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. To be clear, Git isn’t tied into any particular issue-tracking system; but because issue #53 is a focused topic that you want to work on, you’ll create a new branch in which to work. To create a branch and switch to it at the same time, you can run the `git checkout` command with the `-b` switch: +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: - $ git checkout -b iss53 - Switched to a new branch "iss53" +[source,shell] +---- +$ git checkout -b iss53 +Switched to a new branch "iss53" +---- This is shorthand for: - $ git branch iss53 - $ git checkout iss53 +[source,shell] +---- +$ git branch iss53 +$ git checkout iss53 +---- <> illustrates the result. [[branch_diagram_b]] -.Creating a new branch pointer. +.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 <>): +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 <>): - $ vim index.html - $ git commit -a -m 'added a new footer [issue 53]' +[source,shell] +---- +$ 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. +.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. -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, 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. For now, let's assume you’ve committed all your changes, so you can switch back to your master branch: - $ git checkout master - Switched to branch "master" +[source,shell] +---- +$ git checkout master +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. 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 <>): - $ git checkout -b 'hotfix' - Switched to a new branch "hotfix" - $ vim index.html - $ git commit -a -m 'fixed the broken email address' - [hotfix]: created 3a0874c: "fixed the broken email address" - 1 files changed, 0 insertions(+), 1 deletions(-) +[source,shell] +---- +$ git checkout -b 'hotfix' +Switched to a new branch 'hotfix' +$ vim index.html +$ git commit -a -m 'fixed the broken email address' +[hotfix 1fb7853] fixed the broken email address + 1 file changed, 2 insertions(+) +---- [[branch_diagram_d]] -.Hotfix branch based back at your master branch point. -image::images/18333fig0313-tn.png[Hotfix branch based back at your master branch point.] +.Hotfix branch based on `master` +image::images/18333fig0313-tn.png[Hotfix branch based on `master`.] You can run your tests, make sure the hotfix is what you want, and merge it back into your master branch to deploy to production. You do this with the `git merge` command: - $ git checkout master - $ git merge hotfix - Updating f42c576..3a0874c - Fast forward - README | 1 - - 1 files changed, 0 insertions(+), 1 deletions(-) +[source,shell] +---- +$ git checkout master +$ git merge hotfix +Updating f42c576..3a0874c +Fast-forward + index.html | 2 ++ + 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 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 (see <>). +Your change is now in the snapshot of the commit pointed to by the `master` branch, and you can deploy your change. -[[branch_diagram_e]] -.Your master branch points to the same place as your hotfix branch after the merge. -image::images/18333fig0314-tn.png[Your master branch points to the same place as your hotfix branch after the merge.] +.`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. You can delete it with the `-d` option to `git branch`: +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`: - $ git branch -d hotfix - Deleted branch hotfix (3a0874c). +[source,shell] +---- +$ 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 <>): - $ git checkout iss53 - Switched to branch "iss53" - $ vim index.html - $ git commit -a -m 'finished the new footer [issue 53]' - [iss53]: created ad82d7a: "finished the new footer [issue 53]" - 1 files changed, 1 insertions(+), 0 deletions(-) +[source,shell] +---- +$ git checkout iss53 +Switched to branch "iss53" +$ vim index.html +$ git commit -a -m 'finished the new footer [issue 53]' +[iss53 ad82d7a] finished the new footer [issue 53] +1 file changed, 1 insertion(+) +---- [[branch_diagram_f]] -.Your iss53 branch can move forward independently. -image::images/18333fig0315-tn.png[Your iss53 branch can move forward independently.] +.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. 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. @@ -210,146 +247,289 @@ It’s worth noting here that the work you did in your `hotfix` branch is not co 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: - $ git checkout master - $ git merge iss53 - Merge made by recursive. - README | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) +[source,shell] +---- +$ git checkout master +Switched to branch 'master' +$ git merge iss53 +Merge made by the 'recursive' strategy. +README | 1 + +1 file changed, 1 insertion(+) +---- 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. 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]] -.Git automatically identifies the best common-ancestor merge base for branch merging. -image::images/18333fig0316-tn.png[Git automatically identifies the best common-ancestor merge base for branch merging.] +.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 <>). This is referred to as a merge commit and is special in that it has more than one parent. +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 <>). 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 CVS or Subversion (before version 1.5), where the developer doing the merge has 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. +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]] -.Git automatically creates a new commit object that contains the merged work. -image::images/18333fig0317-tn.png[Git automatically creates a new commit object that contains the merged work.] +.A merge commit +image::images/18333fig0317-tn.png[A merge commit.] -Now that your work is merged in, you have no further need for the `iss53` branch. You can delete it and then manually close the ticket in your ticket-tracking system: +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: - $ git branch -d iss53 +[source,shell] +---- +$ 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: - $ git merge iss53 - Auto-merging index.html - CONFLICT (content): Merge conflict in index.html - Automatic merge failed; fix conflicts and then commit the result. +[source,shell] +---- +$ git merge iss53 +Auto-merging index.html +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. 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`: - [master*]$ git status - index.html: needs merge - # On branch master - # Changed but not updated: - # (use "git add ..." to update what will be committed) - # (use "git checkout -- ..." to discard changes in working directory) - # - # unmerged: index.html - # +[source,shell] +---- +[master*]$ git status +On branch master +You have unmerged paths. + (fix conflicts and run "git commit") -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: +Unmerged paths: + (use "git add ..." to mark resolution) + + both modified: index.html - <<<<<<< HEAD:index.html - - ======= - - >>>>>>> iss53:index.html +no changes added to commit (use "git add" and/or "git commit -a") +---- -This means the version in HEAD (your master branch, because that was what you had checked out when you ran your merge command) is the top part of that block (everything above the `=======`), while the version in your `iss53` branch looks like everything in the bottom part. In order to resolve the conflict, you have to either choose one side or the other or merge the contents yourself. For instance, you might resolve this conflict by replacing the entire block with this: +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: - +[source,html] +---- +<<<<<<< HEAD:index.html + +======= + +>>>>>>> iss53:index.html +---- + +This means the version in `HEAD` (your `master` branch, because that was what you had checked out when you ran your merge command) is the top part of that block (everything above the `=======`), while the version in your `iss53` branch looks like everything in the bottom part. In order to resolve the conflict, you have to either choose one side or the other or merge the contents yourself. For instance, you might resolve this conflict by replacing the entire block with this: + +[source,html] +---- + +---- 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. 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: - $ git mergetool - merge tool candidates: kdiff3 tkdiff xxdiff meld gvimdiff opendiff emerge vimdiff - Merging the files: index.html +[source,shell] +---- +$ git mergetool - Normal merge conflict for 'index.html': - {local}: modified - {remote}: modified - Hit return to start merge resolution tool (opendiff): +This message is displayed because 'merge.tool' is not configured. +See 'git mergetool --tool-help' or 'git help config' for more details. +'git mergetool' will now attempt to use one of the following tools: +opendiff kdiff3 tkdiff xxdiff meld tortoisemerge gvimdiff diffuse diffmerge ecmerge p4merge araxis bc3 codecompare vimdiff emerge +Merging: +index.html -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 “merge tool candidates”. 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. +Normal merge conflict for 'index.html': + {local}: modified file + {remote}: modified file +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). 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: - $ git status - # On branch master - # Changes to be committed: - # (use "git reset HEAD ..." to unstage) - # - # modified: index.html - # +[source,shell] +---- +$ git status +On branch master +All conflicts fixed but you are still merging. + (use "git commit" to conclude merge) + +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. The commit message by default looks something like this: - Merge branch 'iss53' +[source,shell] +---- +Merge branch 'iss53' - Conflicts: - index.html - # - # It looks like you may be committing a MERGE. - # If this is not correct, please remove the file - # .git/MERGE_HEAD - # and try again. - # +Conflicts: + index.html +# +# It looks like you may be committing a merge. +# If this is not correct, please remove the file +# .git/MERGE_HEAD +# and try again. -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. + +# Please enter the commit message for your changes. Lines starting +# with '#' will be ignored, and an empty message aborts the commit. +# On branch master +# All conflicts fixed but you are still merging. +# +# Changes to be committed: +# modified: index.html +# +---- + +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. + + === 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. 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: - $ git branch - iss53 - * master - testing +[source,shell] +---- +$ git branch + iss53 +* master + testing +---- Notice the `*` character that prefixes the `master` branch: it indicates the branch that you currently have checked out. 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`: - $ git branch -v - iss53 93b412c fix javascript issue - * master 7a98805 Merge branch 'iss53' - testing 782fd34 add scott to the author list in the readmes +[source,shell] +---- +$ git branch -v + iss53 93b412c fix javascript issue +* master 7a98805 Merge branch 'iss53' + 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`: - $ git branch --merged - iss53 - * master +[source,shell] +---- +$ git branch --merged + iss53 +* master +---- 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. To see all the branches that contain work you haven’t yet merged in, you can run `git branch --no-merged`: - $ git branch --no-merged - testing +[source,shell] +---- +$ git branch --no-merged + testing +---- 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: - $ git branch -d testing - error: The branch 'testing' is not an ancestor of your current HEAD. - If you are sure you want to delete it, run 'git branch -D testing'. +[source,shell] +---- +$ git branch -d testing +error: The branch 'testing' is not fully merged. +If you are sure you want to delete it, run 'git branch -D testing'. +---- If you really do want to delete the branch and lose that work, you can force it with `-D`, as the helpful message points out. @@ -361,19 +541,18 @@ Now that you have the basics of branching and merging down, what can or should y Because Git uses a simple three-way merge, merging from one branch into another multiple times over a long period is generally easy to do. 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. +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. -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 (see <>). +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. -[[lrbranch_a]] -.More stable branches are generally farther down the commit history. -image::images/18333fig0318-tn.png[More stable branches are generally farther down the commit 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 (see <>). +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]] -.It may be helpful to think of your branches as silos. -image::images/18333fig0319-tn.png[It may be helpful to think of your branches as silos.] +.A ``silo'' view of progressive-stability branching +image::images/18333fig0319-tn.png[A ``silo'' view of progressive-stability branching.] 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. @@ -382,21 +561,20 @@ Again, having multiple long-running branches isn’t necessary, but it’s often 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. -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. +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. -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 <>. +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]] -.Your commit history with multiple topic branches. -image::images/18333fig0320-tn.png[Your commit history with multiple topic branches.] +.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. You can throw away the original `iss91` branch (losing commits C5 and C6) and merge in the other two. Your history then looks like <>. +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: -[[lrbranch_d]] -.Your history after merging in dumbidea and iss91v2. -image::images/18333fig0321-tn.png[Your history after merging in dumbidea and iss91v2.] +.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. +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 @@ -404,69 +582,74 @@ Remote branches are references to the state of branches on your remote repositor 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 (see <>). +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. -[[rembranch_a]] -.A Git clone gives you your own master branch and origin/master pointing to origin’s master branch. -image::images/18333fig0322-tn.png[A Git clone gives you your own master branch and origin/master pointing to origin’s master 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 (see <>). +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. -[[rembranch_b]] -.Working locally and having someone push to your remote server makes each history move forward differently. -image::images/18333fig0323-tn.png[Working locally and having someone push to your remote server makes each history move forward differently.] +.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 (see <>). +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. -[[rembranch_c]] -.The git fetch command updates your remote references. -image::images/18333fig0324-tn.png[The git fetch command updates your remote references.] +.`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. 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>>. Name this remote `teamone`, which will be your shortname for that whole URL (see <>). +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>>. Name this remote `teamone`, which will be your shortname for that whole URL. -[[rembranch_d]] -.Adding another server as a remote. +.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. 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 (see <>). +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. -[[rembranch_e]] -.You get a reference to teamone’s master branch position locally. -image::images/18333fig0326-tn.png[You get a reference to teamone’s master branch position locally.] +.Remote tracking branch for `teamone/master` +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. +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. 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)`: - $ git push origin serverfix - Counting objects: 20, done. - Compressing objects: 100% (14/14), done. - Writing objects: 100% (15/15), 1.74 KiB, done. - Total 15 (delta 5), reused 0 (delta 0) - To git@github.com:schacon/simplegit.git - * [new branch] serverfix -> serverfix +[source,shell] +---- +$ git push origin serverfix +Counting objects: 24, done. +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 + * [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.” 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. +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.'' 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. 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`: - $ git fetch origin - remote: Counting objects: 20, done. - remote: Compressing objects: 100% (14/14), done. - remote: Total 15 (delta 5), reused 0 (delta 0) - Unpacking objects: 100% (15/15), done. - From git@github.com:schacon/simplegit - * [new branch] serverfix -> origin/serverfix +[source,shell] +---- +$ git fetch origin +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 + * [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: - $ git checkout -b serverfix origin/serverfix - Branch serverfix set up to track remote branch refs/remotes/origin/serverfix. - Switched to a new branch "serverfix" +[source,shell] +---- +$ git checkout -b serverfix origin/serverfix +Branch serverfix set up to track remote branch serverfix from origin. +Switched to a new branch 'serverfix' +---- This gives you a local branch that you can work on that starts where `origin/serverfix` is. @@ -474,29 +657,38 @@ This gives you a local branch that you can work on that starts where `origin/ser Checking out a local branch from a remote branch automatically creates what is called a _tracking 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. 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 don’t track branches on `origin` and 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: +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. 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: - $ git checkout --track origin/serverfix - Branch serverfix set up to track remote branch refs/remotes/origin/serverfix. - Switched to a new branch "serverfix" +[source,shell] +---- +$ git checkout --track origin/serverfix +Branch serverfix set up to track remote branch serverfix from origin. +Switched to a new branch 'serverfix' +---- To set up a local branch with a different name than the remote branch, you can easily use the first version with a different local branch name: - $ git checkout -b sf origin/serverfix - Branch sf set up to track remote branch refs/remotes/origin/serverfix. - Switched to a new branch "sf" +[source,shell] +---- +$ git checkout -b sf origin/serverfix +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. ==== 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]`. If you want to delete your `serverfix` branch from the server, you run the following: +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]`. If you want to delete your `serverfix` branch from the server, you run the following: - $ git push origin :serverfix - To git@github.com:schacon/simplegit.git - - [deleted] serverfix +[source,shell] +---- +$ git push origin :serverfix +To git@github.com:schacon/simplegit.git + - [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]`.” +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]`.'' === Rebasing @@ -504,96 +696,112 @@ In Git, there are two main ways to integrate changes from one branch into anothe ==== The Basic Rebase -If you go back to an earlier example from <<_basic_merging>> (see <>), you can see that you diverged your work and made commits on two different branches. +If you go back to an earlier example from <<_basic_merging>>, you can see that you diverged your work and made commits on two different branches. -[[rbdiag_a]] -.Your initial diverged commit history. -image::images/18333fig0327-tn.png[Your initial diverged commit history.] +.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), as shown in <>. [[rbdiag_b]] -.Merging a branch to integrate the diverged work history. -image::images/18333fig0328-tn.png[Merging a branch to integrate the diverged work history.] +.Merging to integrate diverged work history +image::images/18333fig0328-tn.png[Merging to integrate diverged work history.] -However, there is another way: you can take the patch of the change that was introduced in C3 and reapply it on top of C4. 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. +However, there is another way: you can take the patch of the change that was introduced in `C3` and reapply it on top of `C4`. 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: - $ git checkout experiment - $ git rebase master - First, rewinding head to replay your work on top of it... - Applying: added staged command +[source,shell] +---- +$ git checkout experiment +$ git rebase master +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. [[rbdiag_c]] -.Rebasing the change introduced in C3 onto C4. -image::images/18333fig0329-tn.png[Rebasing the change introduced in C3 onto C4.] +.Rebasing the change introduced in `C3` onto `C4` +image::images/18333fig0329-tn.png[Rebasing the change introduced in `C3` onto `C4`.] -At this point, you can go back to the master branch and do a fast-forward merge (see <>). +At this point, you can go back to the master branch and do a fast-forward merge. -[[rbdiag_d]] -.Fast-forwarding the master branch. +.Fast-forwarding the master branch image::images/18333fig0330-tn.png[Fast-forwarding the master branch.] -Now, the snapshot pointed to by C3' is exactly the same as the one that was pointed to by C5 in the merge example. 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. +Now, the snapshot pointed to by `C3'` is exactly the same as the one that was pointed to by `C5` in the merge example. 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. 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. +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 You can also have your rebase replay on something other than the rebase branch. Take a history like <>, for example. You branched a topic branch (`server`) to add some server-side functionality to your project, and made a commit. Then, you branched off that to make the client-side changes (`client`) and committed a few times. Finally, you went back to your server branch and did a few more commits. [[rbdiag_e]] -.A history with a topic branch off another topic branch. +.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`: - $ git rebase --onto master server client +[source,shell] +---- +$ 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, shown in <>, is pretty cool. +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. -[[rbdiag_f]] -.Rebasing a topic branch off another topic branch. +.Rebasing a topic branch off another topic branch image::images/18333fig0332-tn.png[Rebasing a topic branch off another topic branch.] Now you can fast-forward your master branch (see <>): - $ git checkout master - $ git merge client +[source,shell] +---- +$ git checkout master +$ git merge client +---- [[rbdiag_g]] -.Fast-forwarding your master branch to include the client branch changes. +.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. 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`): +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`): - $ git rebase master server +[source,shell] +---- +$ git rebase master server +---- This replays your `server` work on top of your `master` work, as shown in <>. [[rbdiag_h]] -.Rebasing your server branch on top of your master branch. +.Rebasing your server branch on top of your master branch image::images/18333fig0334-tn.png[Rebasing your server branch on top of your master branch.] Then, you can fast-forward the base branch (`master`): - $ git checkout master - $ git merge server +[source,shell] +---- +$ 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 <>: - $ git branch -d client - $ git branch -d server +[source,shell] +---- +$ git branch -d client +$ git branch -d server +---- [[rbdiag_i]] -.Final commit history. +.Final commit history 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: @@ -604,35 +812,65 @@ If you follow that guideline, you’ll be fine. If you don’t, people will hate 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. Suppose you clone from a central server and then do some work off that. Your commit history looks like <>. +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: -[[rbdiag_j]] -.Clone a repository, and base some work on it. +.Clone a repository, and base some work on it image::images/18333fig0336-tn.png[Clone a repository, and base some work on it.] -Now, someone else does more work that includes a merge, and pushes that work to the central server. You fetch them and merge the new remote branch into your work, making your history look something like <>. +Now, someone else does more work that includes a merge, and pushes that work to the central server. You fetch them and merge the new remote branch into your work, making your history look something like this: -[[rbdiag_k]] -.Fetch more commits, and merge them into your work. +.Fetch more commits, and merge them into your work image::images/18333fig0337-tn.png[Fetch more commits, and merge them into your work.] 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. +.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.] -At this point, you have to merge this work in again, even though you’ve already done so. Rebasing changes the SHA-1 hashes of these commits so to Git they look like new commits, when in fact you already have the C4 work in your history (see <>). +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: -[[rbdiag_l]] -.You merge in the same work again into a new merge commit. +.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.] -You have to merge that work in at some point so you can keep up with the other developer in the future. After you do that, your commit history will contain both the C4 and C4' commits, which have different SHA-1 hashes but introduce the same work and have the same commit message. 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`. +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. +So don't do it. + +But if you do, tell everyone who's working on that branch to `git pull --rebase`. ==== Rebase vs. Merge +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. +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. +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. + +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. + === Summary 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/en/book/images/undomerge-reset.png b/en/book/images/undomerge-reset.png new file mode 100644 index 000000000..1f5aeb632 Binary files /dev/null and b/en/book/images/undomerge-reset.png differ diff --git a/en/book/images/undomerge-revert.png b/en/book/images/undomerge-revert.png new file mode 100644 index 000000000..6ee789272 Binary files /dev/null and b/en/book/images/undomerge-revert.png differ diff --git a/en/book/images/undomerge-revert2.png b/en/book/images/undomerge-revert2.png new file mode 100644 index 000000000..9e85e27e0 Binary files /dev/null and b/en/book/images/undomerge-revert2.png differ diff --git a/en/book/images/undomerge-revert3.png b/en/book/images/undomerge-revert3.png new file mode 100644 index 000000000..57e232a03 Binary files /dev/null and b/en/book/images/undomerge-revert3.png differ diff --git a/en/book/images/undomerge-start.png b/en/book/images/undomerge-start.png new file mode 100644 index 000000000..7fb10d591 Binary files /dev/null and b/en/book/images/undomerge-start.png differ diff --git a/progit.graffle b/progit.graffle index dc3f4a273..a1b1a5ae9 100644 --- a/progit.graffle +++ b/progit.graffle @@ -4,15 +4,15 @@ ApplicationVersion - com.omnigroup.OmniGraffle - 138.31.0.156985 + com.omnigroup.OmniGraffle6 + 156.11.0.206384 CreationDate 2009-03-16 04:04:39 +0000 Creator Scott Chacon GraphDocumentVersion - 8 + 11 GuidesLocked NO GuidesVisible @@ -26,9 +26,9 @@ MasterSheets ModificationDate - 2011-11-01 15:23:01 +0000 + 2014-05-13 03:03:31 +0000 Modifier - Scott Chacon + Ben Straub NotesVisible NO OriginVisible @@ -44,8 +44,8 @@ NSHorizonalPagination - int - 0 + coded + BAtzdHJlYW10eXBlZIHoA4QBQISEhAhOU051bWJlcgCEhAdOU1ZhbHVlAISECE5TT2JqZWN0AIWEASqEhAFxlwCG NSLeftMargin @@ -54,18 +54,18 @@ NSOrientation - int - 1 + coded + BAtzdHJlYW10eXBlZIHoA4QBQISEhAhOU051bWJlcgCEhAdOU1ZhbHVlAISECE5TT2JqZWN0AIWEASqEhAFxlwGG NSPaperSize - coded - BAtzdHJlYW10eXBlZIHoA4QBQISEhAdOU1ZhbHVlAISECE5TT2JqZWN0AIWEASqEhAx7X05TU2l6ZT1mZn2WgRgDgWQChg== + size + {792, 612.00002098083496} NSPrintReverseOrientation - int - 0 + coded + BAtzdHJlYW10eXBlZIHoA4QBQISEhAhOU051bWJlcgCEhAdOU1ZhbHVlAISECE5TT2JqZWN0AIWEASqEhAFxlwCG NSRightMargin @@ -90,18 +90,13 @@ BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -109,6 +104,8 @@ + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -116,7 +113,7 @@ ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -132,7 +129,7 @@ Points {394, 214} - {360.41101, 214} + {360.41099100000008, 214} Style @@ -140,6 +137,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -154,7 +153,7 @@ Bounds - {{395, 196}, {70.022202, 36}} + {{395, 196}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -214,7 +213,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -236,8 +235,8 @@ 1367 Points - {394, 156.74001} - {360.41101, 156.74001} + {394, 156.74001000000001} + {360.41099100000008, 156.74001000000001} Style @@ -245,6 +244,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -259,7 +260,7 @@ Bounds - {{395, 138.74001}, {70.022202, 36}} + {{395, 138.74001000000001}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -319,7 +320,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -341,8 +342,8 @@ 1366 Points - {312.77399, 156.74001} - {285.77402, 156.74001} + {312.77399000000003, 156.74001000000001} + {285.77399100000002, 156.74001000000001} Style @@ -350,6 +351,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -374,8 +377,8 @@ 1365 Points - {312.77399, 214} - {285.77402, 214} + {312.77399000000003, 214} + {285.77399100000002, 214} Style @@ -383,6 +386,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -407,8 +412,8 @@ 1364 Points - {241.37366, 198.21005} - {207.90031, 172.53001} + {241.3736516791958, 198.21003216153903} + {207.90033527735557, 172.52998510483815} Style @@ -416,6 +421,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -430,7 +437,7 @@ Bounds - {{314.27399, 196}, {44.637001, 36}} + {{314.27399000000003, 196}, {44.637000999999998, 36}} Class ShapedGraphic FontInfo @@ -481,7 +488,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -493,7 +500,7 @@ Bounds - {{239.63699, 196}, {44.637001, 36}} + {{239.63699, 196}, {44.637000999999998, 36}} Class ShapedGraphic FontInfo @@ -544,7 +551,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -556,7 +563,7 @@ Bounds - {{314.27399, 138.74001}, {44.637001, 36}} + {{314.27399000000003, 138.74001000000001}, {44.637000999999998, 36}} Class ShapedGraphic FontInfo @@ -607,7 +614,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -629,8 +636,8 @@ 1360 Points - {238.13701, 156.74001} - {211.13699, 156.74001} + {238.13699000000003, 156.74001000000001} + {211.13700099999997, 156.74001000000001} Style @@ -638,6 +645,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -652,7 +661,7 @@ Bounds - {{239.63699, 138.74001}, {44.637001, 36}} + {{239.63699, 138.74001000000001}, {44.637000999999998, 36}} Class ShapedGraphic FontInfo @@ -703,7 +712,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -725,8 +734,8 @@ 1358 Points - {163.5, 156.74001} - {136.5, 156.74001} + {163.50000000000003, 156.74001000000001} + {136.49999999999997, 156.74001000000001} Style @@ -734,6 +743,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -748,7 +759,7 @@ Bounds - {{165, 138.74001}, {44.637001, 36}} + {{165, 138.74001000000001}, {44.637000999999998, 36}} Class ShapedGraphic FontInfo @@ -799,7 +810,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -811,7 +822,7 @@ Bounds - {{90.362999, 138.74001}, {44.637001, 36}} + {{90.362999000000002, 138.74001000000001}, {44.637000999999998, 36}} Class ShapedGraphic FontInfo @@ -862,7 +873,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -902,6 +913,8 @@ 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -930,18 +943,13 @@ BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -949,6 +957,8 @@ + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -956,7 +966,7 @@ ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -971,8 +981,8 @@ 1357 Points - {173.5, 156.74001} - {150.9532, 156.74001} + {173.50000000000003, 156.74001000000001} + {150.95319799999996, 156.74001000000001} Style @@ -980,6 +990,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -994,7 +1006,7 @@ Bounds - {{90.362999, 138.74001}, {59.090199, 36}} + {{90.362999000000002, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -1045,7 +1057,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -1067,8 +1079,8 @@ 1353 Points - {289.1821, 114} - {289.1821, 137.24001} + {289.18209999999999, 114} + {289.18209999999999, 137.24001000000001} Style @@ -1076,6 +1088,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -1090,7 +1104,7 @@ Bounds - {{254.17101, 77}, {70.022202, 36}} + {{254.17101, 77}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -1150,7 +1164,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -1172,8 +1186,8 @@ 1351 Points - {289.18137, 261.22} - {289.18118, 237.97998} + {289.18137072070215, 261.22000000002356} + {289.18121136855041, 237.97999999997066} Style @@ -1181,6 +1195,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -1195,7 +1211,7 @@ Bounds - {{247.267, 262.22}, {83.829002, 36}} + {{247.267, 262.22000000000003}, {83.829002000000003, 36}} Class ShapedGraphic FontInfo @@ -1255,7 +1271,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -1272,8 +1288,8 @@ 1349 Points - {88.86615, 156.24657} - {57, 155.74001} + {88.866151184295461, 156.2465608566325} + {57, 155.74001000000001} Style @@ -1281,6 +1297,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -1307,8 +1325,8 @@ 1348 Points - {258.13699, 156.74001} - {235.59021, 156.74001} + {258.13699000000003, 156.74001000000001} + {235.59019899999996, 156.74001000000001} Style @@ -1316,6 +1334,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -1340,8 +1360,8 @@ 1347 Points - {264.52121, 200.49118} - {229.20494, 174.72881} + {264.52123064172332, 200.49120671334987} + {229.20495520038406, 174.72880546767431} Style @@ -1349,6 +1369,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -1363,7 +1385,7 @@ Bounds - {{175, 138.74001}, {59.090199, 36}} + {{175, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -1414,7 +1436,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -1426,7 +1448,7 @@ Bounds - {{259.63699, 138.74001}, {59.090199, 36}} + {{259.63699000000003, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -1477,7 +1499,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -1489,7 +1511,7 @@ Bounds - {{259.63599, 200.48}, {59.090199, 36}} + {{259.63598999999999, 200.47999999999999}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -1540,7 +1562,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -1580,6 +1602,8 @@ 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -1608,18 +1632,13 @@ BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -1627,6 +1646,8 @@ + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -1634,7 +1655,7 @@ ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -1649,8 +1670,8 @@ 1360 Points - {349.15891, 174.72858} - {313.84119, 200.49138} + {349.15892576054284, 174.72859448428989} + {313.84124041642667, 200.49140665839047} Style @@ -1658,6 +1679,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -1682,8 +1705,8 @@ 1359 Points - {342.77399, 156.74001} - {320.2272, 156.74001} + {342.77399000000003, 156.74001000000001} + {320.22718900000001, 156.74001000000001} Style @@ -1691,6 +1714,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -1705,7 +1730,7 @@ Bounds - {{344.27399, 138.74001}, {59.090199, 36}} + {{344.27399000000003, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -1756,7 +1781,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -1778,8 +1803,8 @@ 1357 Points - {173.5, 156.74001} - {150.9532, 156.74001} + {173.50000000000003, 156.74001000000001} + {150.95319799999996, 156.74001000000001} Style @@ -1787,6 +1812,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -1801,7 +1828,7 @@ Bounds - {{90.362999, 138.74001}, {59.090199, 36}} + {{90.362999000000002, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -1852,7 +1879,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -1874,8 +1901,8 @@ 1353 Points - {373.81912, 115} - {373.81909, 137.24002} + {373.81910132493198, 115} + {373.81910132493198, 137.24001000000001} Style @@ -1883,6 +1910,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -1897,7 +1926,7 @@ Bounds - {{338.80801, 78}, {70.022202, 36}} + {{338.80801000000002, 78}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -1957,7 +1986,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -1979,8 +2008,8 @@ 1351 Points - {289.18137, 261.22} - {289.18118, 237.97998} + {289.18137072070215, 261.22000000002356} + {289.18121136855041, 237.97999999997066} Style @@ -1988,6 +2017,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -2002,7 +2033,7 @@ Bounds - {{247.267, 262.22}, {83.829002, 36}} + {{247.267, 262.22000000000003}, {83.829002000000003, 36}} Class ShapedGraphic FontInfo @@ -2062,7 +2093,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -2079,8 +2110,8 @@ 1349 Points - {88.86615, 156.24657} - {57, 155.74001} + {88.866151184295461, 156.2465608566325} + {57, 155.74001000000001} Style @@ -2088,6 +2119,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -2114,8 +2147,8 @@ 1348 Points - {258.13699, 156.74001} - {235.59021, 156.74001} + {258.13699000000003, 156.74001000000001} + {235.59019899999996, 156.74001000000001} Style @@ -2123,6 +2156,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -2147,8 +2182,8 @@ 1347 Points - {264.52121, 200.49118} - {229.20494, 174.72881} + {264.52123064172332, 200.49120671334987} + {229.20495520038406, 174.72880546767431} Style @@ -2156,6 +2191,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -2170,7 +2207,7 @@ Bounds - {{175, 138.74001}, {59.090199, 36}} + {{175, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -2221,7 +2258,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -2233,7 +2270,7 @@ Bounds - {{259.63699, 138.74001}, {59.090199, 36}} + {{259.63699000000003, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -2284,7 +2321,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -2296,7 +2333,7 @@ Bounds - {{259.63599, 200.48}, {59.090199, 36}} + {{259.63598999999999, 200.47999999999999}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -2347,7 +2384,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -2387,6 +2424,8 @@ 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -2415,18 +2454,13 @@ BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -2434,6 +2468,8 @@ + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -2441,7 +2477,7 @@ ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -2456,8 +2492,8 @@ 1360 Points - {349.15891, 174.72858} - {313.84119, 200.49138} + {349.15892576054284, 174.72859448428989} + {313.84124041642667, 200.49140665839047} Style @@ -2465,6 +2501,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -2489,8 +2527,8 @@ 1359 Points - {342.77399, 156.74001} - {320.2272, 156.74001} + {342.77399000000003, 156.74001000000001} + {320.22718900000001, 156.74001000000001} Style @@ -2498,6 +2536,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -2512,7 +2552,7 @@ Bounds - {{344.27399, 138.74001}, {59.090199, 36}} + {{344.27399000000003, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -2563,7 +2603,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -2585,8 +2625,8 @@ 1357 Points - {173.5, 156.74001} - {150.9532, 156.74001} + {173.50000000000003, 156.74001000000001} + {150.95319799999996, 156.74001000000001} Style @@ -2594,6 +2634,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -2608,7 +2650,7 @@ Bounds - {{90.362999, 138.74001}, {59.090199, 36}} + {{90.362999000000002, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -2659,7 +2701,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -2681,8 +2723,8 @@ 1353 Points - {373.81912, 115} - {373.81909, 137.24002} + {373.81910132493198, 115} + {373.81910132493198, 137.24001000000001} Style @@ -2690,6 +2732,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -2704,7 +2748,7 @@ Bounds - {{338.80801, 78}, {70.022202, 36}} + {{338.80801000000002, 78}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -2764,7 +2808,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -2786,8 +2830,8 @@ 1351 Points - {373.81937, 208} - {373.81915, 176.24001} + {373.8193868578627, 208.00000000001802} + {373.8191960603292, 176.24000999997762} Style @@ -2795,6 +2839,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -2809,7 +2855,7 @@ Bounds - {{331.905, 209}, {83.829002, 36}} + {{331.90499999999997, 209}, {83.829002000000003, 36}} Class ShapedGraphic FontInfo @@ -2869,7 +2915,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -2886,8 +2932,8 @@ 1349 Points - {88.86615, 156.24657} - {57, 155.74001} + {88.866151184295461, 156.2465608566325} + {57, 155.74001000000001} Style @@ -2895,6 +2941,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -2921,8 +2969,8 @@ 1348 Points - {258.13699, 156.74001} - {235.59021, 156.74001} + {258.13699000000003, 156.74001000000001} + {235.59019899999996, 156.74001000000001} Style @@ -2930,6 +2978,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -2954,8 +3004,8 @@ 1347 Points - {264.52121, 200.49118} - {229.20494, 174.72881} + {264.52123064172332, 200.49120671334987} + {229.20495520038406, 174.72880546767431} Style @@ -2963,6 +3013,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -2977,7 +3029,7 @@ Bounds - {{175, 138.74001}, {59.090199, 36}} + {{175, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -3028,7 +3080,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -3040,7 +3092,7 @@ Bounds - {{259.63699, 138.74001}, {59.090199, 36}} + {{259.63699000000003, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -3091,7 +3143,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -3103,7 +3155,7 @@ Bounds - {{259.63599, 200.48}, {59.090199, 36}} + {{259.63598999999999, 200.47999999999999}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -3154,7 +3206,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -3194,6 +3246,8 @@ 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -3222,18 +3276,13 @@ BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -3241,6 +3290,8 @@ + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -3248,7 +3299,7 @@ ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -3263,8 +3314,8 @@ 1368 Points - {289.18237, 197.48} - {289.18219, 176.24001} + {289.18237298686455, 197.48000000002639} + {289.18221870277944, 176.2400099999671} Style @@ -3272,6 +3323,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -3286,7 +3339,7 @@ Bounds - {{245.76801, 198.48}, {86.829002, 36}} + {{245.76801, 198.47999999999999}, {86.829002000000003, 36}} Class ShapedGraphic FontInfo @@ -3346,7 +3399,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -3368,8 +3421,8 @@ 1364 Points - {508.91101, 156.74001} - {488.00122, 156.74001} + {508.91101000000003, 156.74001000000001} + {488.00120899999996, 156.74001000000001} Style @@ -3377,6 +3430,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -3391,7 +3446,7 @@ Bounds - {{510.41101, 138.74001}, {59.090199, 36}} + {{510.41100999999998, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -3442,7 +3497,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -3464,8 +3519,8 @@ 1362 Points - {425.91101, 156.74001} - {404.8642, 156.74001} + {425.91100999999998, 156.74001000000001} + {404.86418900000001, 156.74001000000001} Style @@ -3473,6 +3528,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -3487,7 +3544,7 @@ Bounds - {{427.41101, 138.74001}, {59.090199, 36}} + {{427.41100999999998, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -3538,7 +3595,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -3560,8 +3617,8 @@ 1360 Points - {342.77399, 156.74001} - {320.2272, 156.74001} + {342.77399000000003, 156.74001000000001} + {320.22718900000001, 156.74001000000001} Style @@ -3569,6 +3626,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -3583,7 +3642,7 @@ Bounds - {{344.27399, 138.74001}, {59.090199, 36}} + {{344.27399000000003, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -3634,7 +3693,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -3656,8 +3715,8 @@ 1357 Points - {173.5, 156.74001} - {150.9532, 156.74001} + {173.50000000000003, 156.74001000000001} + {150.95319799999996, 156.74001000000001} Style @@ -3665,6 +3724,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -3679,7 +3740,7 @@ Bounds - {{90.362999, 138.74001}, {59.090199, 36}} + {{90.362999000000002, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -3730,7 +3791,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -3752,8 +3813,8 @@ 1353 Points - {289.1821, 115.99999} - {289.1821, 137.24002} + {289.18209999999999, 116} + {289.18209999999999, 137.24001000000001} Style @@ -3761,6 +3822,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -3775,7 +3838,7 @@ Bounds - {{254.17101, 79}, {70.022202, 36}} + {{254.17101, 79}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -3835,7 +3898,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -3857,8 +3920,8 @@ 1351 Points - {539.95612, 115.99999} - {539.95612, 137.24002} + {539.95612000000006, 116.00000000000001} + {539.95612000000006, 137.24001000000001} Style @@ -3866,6 +3929,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -3880,7 +3945,7 @@ Bounds - {{504.94501, 79}, {70.022202, 36}} + {{504.94501000000002, 79}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -3940,7 +4005,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -3957,8 +4022,8 @@ 1349 Points - {88.86615, 156.24657} - {57, 155.74001} + {88.866151184295461, 156.2465608566325} + {57, 155.74001000000001} Style @@ -3966,6 +4031,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -3992,8 +4059,8 @@ 1347 Points - {258.13699, 156.74001} - {235.59021, 156.74001} + {258.13699000000003, 156.74001000000001} + {235.59019899999996, 156.74001000000001} Style @@ -4001,6 +4068,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -4015,7 +4084,7 @@ Bounds - {{175, 138.74001}, {59.090199, 36}} + {{175, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -4066,7 +4135,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -4078,7 +4147,7 @@ Bounds - {{259.63699, 138.74001}, {59.090199, 36}} + {{259.63699000000003, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -4129,7 +4198,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -4169,6 +4238,8 @@ 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -4197,18 +4268,13 @@ BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -4216,6 +4282,8 @@ + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -4223,7 +4291,7 @@ ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -4238,8 +4306,8 @@ 1374 Points - {373.81934, 270.44003} - {373.81915, 245.98} + {373.81937114181403, 270.44000000002336} + {373.81920396648616, 245.97999999997413} Style @@ -4247,6 +4315,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -4271,8 +4341,8 @@ 1373 Points - {266.32281, 207.64421} - {227.40431, 175.57582} + {266.32282623968558, 207.64421046849583} + {227.4043522233425, 175.57580226516561} Style @@ -4280,6 +4350,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -4304,8 +4376,8 @@ 1372 Points - {342.77399, 226.48} - {320.2272, 226.48} + {342.77399000000003, 226.47999999999999} + {320.22718900000001, 226.47999999999999} Style @@ -4313,6 +4385,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -4327,7 +4401,7 @@ Bounds - {{344.27399, 208.48}, {59.090199, 36}} + {{344.27399000000003, 208.47999999999999}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -4378,7 +4452,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -4390,7 +4464,7 @@ Bounds - {{259.63699, 208.48}, {59.090199, 36}} + {{259.63699000000003, 208.47999999999999}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -4441,7 +4515,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -4463,8 +4537,8 @@ 1368 Points - {350.95978, 207.6442} - {312.04129, 175.57584} + {350.959822760956, 207.64421137100626} + {312.04134042738639, 175.57580273109735} Style @@ -4472,6 +4546,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -4486,7 +4562,7 @@ Bounds - {{330.405, 271.44}, {86.829002, 36}} + {{330.40499999999997, 271.44}, {86.829002000000003, 36}} Class ShapedGraphic FontInfo @@ -4546,7 +4622,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -4568,8 +4644,8 @@ 1364 Points - {508.91101, 156.74001} - {488.00122, 156.74001} + {508.91101000000003, 156.74001000000001} + {488.00120899999996, 156.74001000000001} Style @@ -4577,6 +4653,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -4591,7 +4669,7 @@ Bounds - {{510.41101, 138.74001}, {59.090199, 36}} + {{510.41100999999998, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -4642,7 +4720,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -4664,8 +4742,8 @@ 1362 Points - {425.91101, 156.74001} - {404.8642, 156.74001} + {425.91100999999998, 156.74001000000001} + {404.86418900000001, 156.74001000000001} Style @@ -4673,6 +4751,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -4687,7 +4767,7 @@ Bounds - {{427.41101, 138.74001}, {59.090199, 36}} + {{427.41100999999998, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -4738,7 +4818,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -4760,8 +4840,8 @@ 1360 Points - {342.77399, 156.74001} - {320.2272, 156.74001} + {342.77399000000003, 156.74001000000001} + {320.22718900000001, 156.74001000000001} Style @@ -4769,6 +4849,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -4783,7 +4865,7 @@ Bounds - {{344.27399, 138.74001}, {59.090199, 36}} + {{344.27399000000003, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -4834,7 +4916,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -4856,8 +4938,8 @@ 1357 Points - {173.5, 156.74001} - {150.9532, 156.74001} + {173.50000000000003, 156.74001000000001} + {150.95319799999996, 156.74001000000001} Style @@ -4865,6 +4947,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -4879,7 +4963,7 @@ Bounds - {{90.362999, 138.74001}, {59.090199, 36}} + {{90.362999000000002, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -4930,7 +5014,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -4942,7 +5026,7 @@ Bounds - {{254.17101, 79}, {70.022202, 36}} + {{254.17101, 79}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -5002,7 +5086,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -5024,8 +5108,8 @@ 1351 Points - {539.95612, 115.99999} - {539.95612, 137.24002} + {539.95612000000006, 116.00000000000001} + {539.95612000000006, 137.24001000000001} Style @@ -5033,6 +5117,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -5047,7 +5133,7 @@ Bounds - {{504.94501, 79}, {70.022202, 36}} + {{504.94501000000002, 79}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -5107,7 +5193,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -5124,8 +5210,8 @@ 1349 Points - {88.86615, 156.24657} - {57, 155.74001} + {88.866151184295461, 156.2465608566325} + {57, 155.74001000000001} Style @@ -5133,6 +5219,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -5159,8 +5247,8 @@ 1347 Points - {258.13699, 156.74001} - {235.59021, 156.74001} + {258.13699000000003, 156.74001000000001} + {235.59019899999996, 156.74001000000001} Style @@ -5168,6 +5256,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -5182,7 +5272,7 @@ Bounds - {{175, 138.74001}, {59.090199, 36}} + {{175, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -5233,7 +5323,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -5245,7 +5335,7 @@ Bounds - {{259.63699, 138.74001}, {59.090199, 36}} + {{259.63699000000003, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -5296,7 +5386,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -5318,8 +5408,8 @@ 1353 Points - {289.1821, 115.99999} - {289.1821, 137.24002} + {289.18209999999999, 116} + {289.18209999999999, 137.24001000000001} Style @@ -5327,6 +5417,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -5369,6 +5461,8 @@ 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -5397,18 +5491,13 @@ BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -5416,6 +5505,8 @@ + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -5423,7 +5514,7 @@ ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -5438,8 +5529,8 @@ 1377 Points - {596.01093, 207.47343} - {560.95618, 175.74658} + {596.01094755434497, 207.4734430910012} + {560.95624437764957, 175.74656737219138} Style @@ -5447,6 +5538,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -5471,8 +5564,8 @@ 1376 Points - {585.966, 226.48} - {404.8642, 226.48} + {585.96600000000001, 226.47999999999999} + {404.86418900000001, 226.47999999999999} Style @@ -5480,6 +5573,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -5494,7 +5589,7 @@ Bounds - {{587.466, 208.48}, {59.090199, 36}} + {{587.46600000000001, 208.47999999999999}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -5545,7 +5640,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -5567,8 +5662,8 @@ 1374 Points - {373.81934, 270.44003} - {373.81915, 245.98} + {373.81937114181403, 270.44000000002336} + {373.81920396648616, 245.97999999997413} Style @@ -5576,6 +5671,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -5600,8 +5697,8 @@ 1373 Points - {266.32281, 207.64421} - {227.40431, 175.57582} + {266.32282623968558, 207.64421046849583} + {227.4043522233425, 175.57580226516561} Style @@ -5609,6 +5706,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -5633,8 +5732,8 @@ 1372 Points - {342.77399, 226.48} - {320.2272, 226.48} + {342.77399000000003, 226.47999999999999} + {320.22718900000001, 226.47999999999999} Style @@ -5642,6 +5741,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -5656,7 +5757,7 @@ Bounds - {{344.27399, 208.48}, {59.090199, 36}} + {{344.27399000000003, 208.47999999999999}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -5707,7 +5808,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -5719,7 +5820,7 @@ Bounds - {{259.63699, 208.48}, {59.090199, 36}} + {{259.63699000000003, 208.47999999999999}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -5770,7 +5871,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -5792,8 +5893,8 @@ 1368 Points - {350.95978, 207.6442} - {312.04129, 175.57584} + {350.959822760956, 207.64421137100626} + {312.04134042738639, 175.57580273109735} Style @@ -5801,6 +5902,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -5815,7 +5918,7 @@ Bounds - {{330.405, 271.44}, {86.829002, 36}} + {{330.40499999999997, 271.44}, {86.829002000000003, 36}} Class ShapedGraphic FontInfo @@ -5875,7 +5978,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -5897,8 +6000,8 @@ 1364 Points - {508.91101, 156.74001} - {488.00122, 156.74001} + {508.91101000000003, 156.74001000000001} + {488.00120899999996, 156.74001000000001} Style @@ -5906,6 +6009,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -5920,7 +6025,7 @@ Bounds - {{510.41101, 138.74001}, {59.090199, 36}} + {{510.41100999999998, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -5971,7 +6076,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -5993,8 +6098,8 @@ 1362 Points - {425.91101, 156.74001} - {404.8642, 156.74001} + {425.91100999999998, 156.74001000000001} + {404.86418900000001, 156.74001000000001} Style @@ -6002,6 +6107,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -6016,7 +6123,7 @@ Bounds - {{427.41101, 138.74001}, {59.090199, 36}} + {{427.41100999999998, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -6067,7 +6174,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -6089,8 +6196,8 @@ 1360 Points - {342.77399, 156.74001} - {320.2272, 156.74001} + {342.77399000000003, 156.74001000000001} + {320.22718900000001, 156.74001000000001} Style @@ -6098,6 +6205,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -6112,7 +6221,7 @@ Bounds - {{344.27399, 138.74001}, {59.090199, 36}} + {{344.27399000000003, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -6163,7 +6272,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -6185,8 +6294,8 @@ 1357 Points - {173.5, 156.74001} - {150.9532, 156.74001} + {173.50000000000003, 156.74001000000001} + {150.95319799999996, 156.74001000000001} Style @@ -6194,6 +6303,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -6208,7 +6319,7 @@ Bounds - {{90.362999, 138.74001}, {59.090199, 36}} + {{90.362999000000002, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -6259,7 +6370,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -6271,7 +6382,7 @@ Bounds - {{582, 79}, {70.022202, 36}} + {{582, 79}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -6331,7 +6442,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -6353,8 +6464,8 @@ 1351 Points - {539.95612, 115.99999} - {539.95612, 137.24002} + {539.95612000000006, 116.00000000000001} + {539.95612000000006, 137.24001000000001} Style @@ -6362,6 +6473,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -6376,7 +6489,7 @@ Bounds - {{504.94501, 79}, {70.022202, 36}} + {{504.94501000000002, 79}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -6436,7 +6549,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -6453,8 +6566,8 @@ 1349 Points - {88.86615, 156.24657} - {57, 155.74001} + {88.866151184295461, 156.2465608566325} + {57, 155.74001000000001} Style @@ -6462,6 +6575,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -6488,8 +6603,8 @@ 1347 Points - {258.13699, 156.74001} - {235.59021, 156.74001} + {258.13699000000003, 156.74001000000001} + {235.59019899999996, 156.74001000000001} Style @@ -6497,6 +6612,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -6511,7 +6628,7 @@ Bounds - {{175, 138.74001}, {59.090199, 36}} + {{175, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -6562,7 +6679,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -6574,7 +6691,7 @@ Bounds - {{259.63699, 138.74001}, {59.090199, 36}} + {{259.63699000000003, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -6625,7 +6742,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -6647,8 +6764,8 @@ 1353 Points - {617.01111, 115.99999} - {617.01111, 206.98001} + {617.01111000000003, 115.99999999999999} + {617.01111000000003, 206.97999999999996} Style @@ -6656,6 +6773,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -6698,6 +6817,8 @@ 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -6726,18 +6847,13 @@ BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -6745,6 +6861,8 @@ + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -6752,7 +6870,7 @@ ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -6767,8 +6885,8 @@ 1377 Points - {596.01093, 207.47343} - {560.95618, 175.74658} + {596.01094755434497, 207.4734430910012} + {560.95624437764957, 175.74656737219138} Style @@ -6776,6 +6894,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -6800,8 +6920,8 @@ 1376 Points - {585.966, 226.48} - {404.8642, 226.48} + {585.96600000000001, 226.47999999999999} + {404.86418900000001, 226.47999999999999} Style @@ -6809,6 +6929,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -6823,7 +6945,7 @@ Bounds - {{587.466, 208.48}, {59.090199, 36}} + {{587.46600000000001, 208.47999999999999}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -6874,7 +6996,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -6896,8 +7018,8 @@ 1374 Points - {617.01135, 269} - {617.01117, 245.98} + {617.01135844855992, 269.00000000002075} + {617.01120996781526, 245.97999999997592} Style @@ -6905,6 +7027,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -6929,8 +7053,8 @@ 1373 Points - {266.32281, 207.64421} - {227.40431, 175.57582} + {266.32282623968558, 207.64421046849583} + {227.4043522233425, 175.57580226516561} Style @@ -6938,6 +7062,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -6962,8 +7088,8 @@ 1372 Points - {342.77399, 226.48} - {320.2272, 226.48} + {342.77399000000003, 226.47999999999999} + {320.22718900000001, 226.47999999999999} Style @@ -6971,6 +7097,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -6985,7 +7113,7 @@ Bounds - {{344.27399, 208.48}, {59.090199, 36}} + {{344.27399000000003, 208.47999999999999}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -7036,7 +7164,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -7048,7 +7176,7 @@ Bounds - {{259.63699, 208.48}, {59.090199, 36}} + {{259.63699000000003, 208.47999999999999}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -7099,7 +7227,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -7121,8 +7249,8 @@ 1368 Points - {350.95978, 207.6442} - {312.04129, 175.57584} + {350.959822760956, 207.64421137100626} + {312.04134042738639, 175.57580273109735} Style @@ -7130,6 +7258,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -7144,7 +7274,7 @@ Bounds - {{573.59698, 270}, {86.829002, 36}} + {{573.59698000000003, 270}, {86.829002000000003, 36}} Class ShapedGraphic FontInfo @@ -7204,7 +7334,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -7226,8 +7356,8 @@ 1364 Points - {508.91101, 156.74001} - {488.00122, 156.74001} + {508.91101000000003, 156.74001000000001} + {488.00120899999996, 156.74001000000001} Style @@ -7235,6 +7365,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -7249,7 +7381,7 @@ Bounds - {{510.41101, 138.74001}, {59.090199, 36}} + {{510.41100999999998, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -7300,7 +7432,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -7322,8 +7454,8 @@ 1362 Points - {425.91101, 156.74001} - {404.8642, 156.74001} + {425.91100999999998, 156.74001000000001} + {404.86418900000001, 156.74001000000001} Style @@ -7331,6 +7463,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -7345,7 +7479,7 @@ Bounds - {{427.41101, 138.74001}, {59.090199, 36}} + {{427.41100999999998, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -7396,7 +7530,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -7418,8 +7552,8 @@ 1360 Points - {342.77399, 156.74001} - {320.2272, 156.74001} + {342.77399000000003, 156.74001000000001} + {320.22718900000001, 156.74001000000001} Style @@ -7427,6 +7561,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -7441,7 +7577,7 @@ Bounds - {{344.27399, 138.74001}, {59.090199, 36}} + {{344.27399000000003, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -7492,7 +7628,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -7514,8 +7650,8 @@ 1357 Points - {173.5, 156.74001} - {150.9532, 156.74001} + {173.50000000000003, 156.74001000000001} + {150.95319799999996, 156.74001000000001} Style @@ -7523,6 +7659,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -7537,7 +7675,7 @@ Bounds - {{90.362999, 138.74001}, {59.090199, 36}} + {{90.362999000000002, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -7588,7 +7726,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -7600,7 +7738,7 @@ Bounds - {{582, 79}, {70.022202, 36}} + {{582, 79}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -7660,7 +7798,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -7682,8 +7820,8 @@ 1351 Points - {539.95612, 115.99999} - {539.95612, 137.24002} + {539.95612000000006, 116.00000000000001} + {539.95612000000006, 137.24001000000001} Style @@ -7691,6 +7829,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -7705,7 +7845,7 @@ Bounds - {{504.94501, 79}, {70.022202, 36}} + {{504.94501000000002, 79}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -7765,7 +7905,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -7782,8 +7922,8 @@ 1349 Points - {88.86615, 156.24657} - {57, 155.74001} + {88.866151184295461, 156.2465608566325} + {57, 155.74001000000001} Style @@ -7791,6 +7931,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -7817,8 +7959,8 @@ 1347 Points - {258.13699, 156.74001} - {235.59021, 156.74001} + {258.13699000000003, 156.74001000000001} + {235.59019899999996, 156.74001000000001} Style @@ -7826,6 +7968,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -7840,7 +7984,7 @@ Bounds - {{175, 138.74001}, {59.090199, 36}} + {{175, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -7891,7 +8035,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -7903,7 +8047,7 @@ Bounds - {{259.63699, 138.74001}, {59.090199, 36}} + {{259.63699000000003, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -7954,7 +8098,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -7976,8 +8120,8 @@ 1353 Points - {617.01111, 115.99999} - {617.01111, 206.98001} + {617.01111000000003, 115.99999999999999} + {617.01111000000003, 206.97999999999996} Style @@ -7985,6 +8129,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -8027,6 +8173,8 @@ 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -8055,18 +8203,13 @@ BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -8074,6 +8217,8 @@ + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -8081,7 +8226,7 @@ ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -8096,8 +8241,8 @@ 1381 Points - {373.81912, 275.49997} - {373.81909, 245.97998} + {373.8191027765904, 275.49999999999994} + {373.8191027765904, 245.97999999999999} Style @@ -8105,6 +8250,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -8119,7 +8266,7 @@ Bounds - {{338.80801, 276.5}, {70.022202, 36}} + {{338.80801000000002, 276.5}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -8179,7 +8326,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -8201,8 +8348,8 @@ 1379 Points - {289.1821, 106} - {289.1821, 137.24001} + {289.18209999999999, 106} + {289.18209999999999, 137.24001000000001} Style @@ -8210,6 +8357,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -8224,7 +8373,7 @@ Bounds - {{254.17101, 69}, {70.022202, 36}} + {{254.17101, 69}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -8284,7 +8433,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -8306,8 +8455,8 @@ 1373 Points - {266.32281, 207.64421} - {227.40431, 175.57582} + {266.32282623968558, 207.64421046849583} + {227.4043522233425, 175.57580226516561} Style @@ -8315,6 +8464,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -8339,8 +8490,8 @@ 1372 Points - {342.77399, 226.48} - {320.2272, 226.48} + {342.77399000000003, 226.47999999999999} + {320.22718900000001, 226.47999999999999} Style @@ -8348,6 +8499,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -8362,7 +8515,7 @@ Bounds - {{344.27399, 208.48}, {59.090199, 36}} + {{344.27399000000003, 208.47999999999999}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -8413,7 +8566,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -8425,7 +8578,7 @@ Bounds - {{259.63699, 208.48}, {59.090199, 36}} + {{259.63699000000003, 208.47999999999999}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -8476,7 +8629,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -8498,8 +8651,8 @@ 1357 Points - {173.5, 156.74001} - {150.9532, 156.74001} + {173.50000000000003, 156.74001000000001} + {150.95319799999996, 156.74001000000001} Style @@ -8507,6 +8660,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -8521,7 +8676,7 @@ Bounds - {{90.362999, 138.74001}, {59.090199, 36}} + {{90.362999000000002, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -8572,7 +8727,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -8594,8 +8749,8 @@ 1351 Points - {204.5451, 106} - {204.54509, 137.24001} + {204.54508999999999, 106} + {204.54508999999999, 137.24001000000001} Style @@ -8603,6 +8758,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -8617,7 +8774,7 @@ Bounds - {{169.534, 69}, {70.022202, 36}} + {{169.53399999999999, 69}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -8677,7 +8834,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -8694,8 +8851,8 @@ 1349 Points - {88.86615, 156.24657} - {57, 155.74001} + {88.866151184295461, 156.2465608566325} + {57, 155.74001000000001} Style @@ -8703,6 +8860,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -8729,8 +8888,8 @@ 1347 Points - {258.13699, 156.74001} - {235.59021, 156.74001} + {258.13699000000003, 156.74001000000001} + {235.59019899999996, 156.74001000000001} Style @@ -8738,6 +8897,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -8752,7 +8913,7 @@ Bounds - {{175, 138.74001}, {59.090199, 36}} + {{175, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -8803,7 +8964,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -8815,7 +8976,7 @@ Bounds - {{259.63699, 138.74001}, {59.090199, 36}} + {{259.63699000000003, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -8866,7 +9027,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -8906,6 +9067,8 @@ 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -8934,18 +9097,13 @@ BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -8953,6 +9111,8 @@ + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -8960,7 +9120,7 @@ ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -8975,8 +9135,8 @@ 1394 Points - {427.41101, 156.74001} - {404.8642, 156.74001} + {427.41100999999998, 156.74001000000001} + {404.86418900000001, 156.74001000000001} Style @@ -8984,6 +9144,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -8998,7 +9160,7 @@ Bounds - {{428.91101, 138.74001}, {59.090199, 36}} + {{428.91100999999998, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -9049,7 +9211,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -9061,7 +9223,7 @@ Bounds - {{411.72299, 29}, {93.466003, 36}} + {{411.72298999999998, 29}, {93.466003000000001, 36}} Class ShapedGraphic FontInfo @@ -9121,7 +9283,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -9133,7 +9295,7 @@ Bounds - {{433.45099, 330}, {108.188, 36}} + {{433.45098999999999, 330}, {108.188, 36}} Class ShapedGraphic FontInfo @@ -9193,7 +9355,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -9215,8 +9377,8 @@ 1388 Points - {456.5, 226.48} - {426.50122, 226.48} + {456.5, 226.47999999999999} + {426.50120899999996, 226.47999999999999} Style @@ -9224,6 +9386,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -9248,8 +9412,8 @@ 1387 Points - {459.43332, 240.22768} - {376.56689, 280.75232} + {459.43331566338668, 240.22767073992247} + {376.56688313973928, 280.7523288814441} Style @@ -9257,6 +9421,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -9271,7 +9437,7 @@ Bounds - {{458, 208.48}, {59.090199, 36}} + {{458, 208.47999999999999}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -9322,7 +9488,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -9344,9 +9510,9 @@ 1385 Points - {321.52512, 278.81735} + {321.52512277242255, 278.81733534280869} {248, 236} - {215.13486, 176.05531} + {215.13485633108354, 176.05530035566687} Style @@ -9354,6 +9520,8 @@ HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -9366,7 +9534,7 @@ Bounds - {{318.91, 276.5}, {59.090199, 36}} + {{318.91000000000003, 276.5}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -9417,7 +9585,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -9439,8 +9607,8 @@ 1383 Points - {342.77399, 156.74001} - {320.2272, 156.74001} + {342.77399000000003, 156.74001000000001} + {320.22718900000001, 156.74001000000001} Style @@ -9448,6 +9616,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -9462,7 +9632,7 @@ Bounds - {{344.27399, 138.74001}, {59.090199, 36}} + {{344.27399000000003, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -9513,7 +9683,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -9535,8 +9705,8 @@ 1381 Points - {487.5451, 275.49997} - {487.5451, 245.97998} + {487.54509999999999, 275.5} + {487.54509999999999, 245.98000000000002} Style @@ -9544,6 +9714,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -9558,7 +9730,7 @@ Bounds - {{452.534, 276.5}, {70.022202, 36}} + {{452.53399999999999, 276.5}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -9618,7 +9790,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -9640,8 +9812,8 @@ 1379 Points - {458.45612, 112} - {458.45609, 137.24002} + {458.45610198101679, 112} + {458.45610198101679, 137.24001000000001} Style @@ -9649,6 +9821,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -9663,7 +9837,7 @@ Bounds - {{423.44501, 75}, {70.022202, 36}} + {{423.44501000000002, 75}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -9723,7 +9897,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -9745,8 +9919,8 @@ 1373 Points - {284.96213, 209.51193} - {230.40207, 173.70807} + {284.96213112581756, 209.51193409951765} + {230.40205896497349, 173.70807478385115} Style @@ -9754,6 +9928,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -9778,8 +9954,8 @@ 1372 Points - {364.41101, 226.48} - {341.8642, 226.48} + {364.41100999999998, 226.47999999999999} + {341.86418900000001, 226.47999999999999} Style @@ -9787,6 +9963,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -9801,7 +9979,7 @@ Bounds - {{365.91101, 208.48}, {59.090199, 36}} + {{365.91100999999998, 208.47999999999999}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -9852,7 +10030,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -9864,7 +10042,7 @@ Bounds - {{281.27399, 208.48}, {59.090199, 36}} + {{281.27399000000003, 208.47999999999999}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -9915,7 +10093,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -9937,8 +10115,8 @@ 1357 Points - {173.5, 156.74001} - {150.9532, 156.74001} + {173.50000000000003, 156.74001000000001} + {150.95319799999996, 156.74001000000001} Style @@ -9946,6 +10124,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -9960,7 +10140,7 @@ Bounds - {{90.362999, 138.74001}, {59.090199, 36}} + {{90.362999000000002, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -10011,7 +10191,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -10033,8 +10213,8 @@ 1351 Points - {204.5451, 111.99999} - {204.54509, 137.24001} + {204.54508999999999, 112} + {204.54508999999999, 137.24001000000001} Style @@ -10042,6 +10222,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -10056,7 +10238,7 @@ Bounds - {{169.534, 75}, {70.022202, 36}} + {{169.53399999999999, 75}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -10116,7 +10298,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -10133,8 +10315,8 @@ 1349 Points - {88.86615, 156.24657} - {57, 155.74001} + {88.866151184295461, 156.2465608566325} + {57, 155.74001000000001} Style @@ -10142,6 +10324,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -10168,8 +10352,8 @@ 1347 Points - {258.13699, 156.74001} - {235.59021, 156.74001} + {258.13699000000003, 156.74001000000001} + {235.59019899999996, 156.74001000000001} Style @@ -10177,6 +10361,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -10191,7 +10377,7 @@ Bounds - {{175, 138.74001}, {59.090199, 36}} + {{175, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -10242,7 +10428,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -10254,7 +10440,7 @@ Bounds - {{259.63699, 138.74001}, {59.090199, 36}} + {{259.63699000000003, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -10305,7 +10491,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -10327,8 +10513,8 @@ 1390 Points - {487.54501, 329} - {487.54507, 245.97998} + {487.54500704194112, 329.0000000000004} + {487.54508150625446, 245.97999999999936} Style @@ -10336,6 +10522,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -10360,8 +10548,8 @@ 1392 Points - {458.45602, 66} - {458.45609, 137.24002} + {458.45601194408835, 65.999999999999403} + {458.45608859867036, 137.24001000000086} Style @@ -10369,6 +10557,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -10411,6 +10601,8 @@ 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -10439,18 +10631,13 @@ BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -10458,6 +10645,8 @@ + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -10465,7 +10654,7 @@ ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -10480,8 +10669,8 @@ 1399 Points - {568.23303, 112} - {568.23309, 137.24001} + {568.23306380205202, 111.99999999999979} + {568.23308014436338, 137.24001000000015} Style @@ -10489,6 +10678,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -10503,7 +10694,7 @@ Bounds - {{527, 75}, {82.466103, 36}} + {{527, 75}, {82.466103000000004, 36}} Class ShapedGraphic FontInfo @@ -10563,7 +10754,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -10585,8 +10776,8 @@ 1397 Points - {546.27515, 175.71863} - {509.50299, 207.50137} + {546.27514278936928, 175.71863063208826} + {509.50303474780742, 207.50137869864992} Style @@ -10594,6 +10785,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -10618,8 +10811,8 @@ 1396 Points - {537.18799, 156.74001} - {489.50122, 156.74001} + {537.18799000000001, 156.74001000000001} + {489.50120899999996, 156.74001000000001} Style @@ -10627,6 +10820,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -10641,7 +10836,7 @@ Bounds - {{538.68799, 138.74001}, {59.090199, 36}} + {{538.68799000000001, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -10692,7 +10887,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -10714,8 +10909,8 @@ 1394 Points - {427.41101, 156.74001} - {404.8642, 156.74001} + {427.41100999999998, 156.74001000000001} + {404.86418900000001, 156.74001000000001} Style @@ -10723,6 +10918,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -10737,7 +10934,7 @@ Bounds - {{428.91101, 138.74001}, {59.090199, 36}} + {{428.91100999999998, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -10788,7 +10985,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -10800,7 +10997,7 @@ Bounds - {{411.72299, 29}, {93.466003, 36}} + {{411.72298999999998, 29}, {93.466003000000001, 36}} Class ShapedGraphic FontInfo @@ -10860,7 +11057,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -10872,7 +11069,7 @@ Bounds - {{433.45099, 330}, {108.188, 36}} + {{433.45098999999999, 330}, {108.188, 36}} Class ShapedGraphic FontInfo @@ -10932,7 +11129,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -10954,8 +11151,8 @@ 1388 Points - {456.5, 226.48} - {426.50122, 226.48} + {456.5, 226.47999999999999} + {426.50120899999996, 226.47999999999999} Style @@ -10963,6 +11160,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -10987,8 +11186,8 @@ 1387 Points - {459.43332, 240.22768} - {376.56689, 280.75232} + {459.43331566338668, 240.22767073992247} + {376.56688313973928, 280.7523288814441} Style @@ -10996,6 +11195,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -11010,7 +11211,7 @@ Bounds - {{458, 208.48}, {59.090199, 36}} + {{458, 208.47999999999999}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -11061,7 +11262,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -11083,9 +11284,9 @@ 1385 Points - {321.52512, 278.81735} + {321.52512277242255, 278.81733534280869} {248, 236} - {215.13486, 176.05531} + {215.13485633108354, 176.05530035566687} Style @@ -11093,6 +11294,8 @@ HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -11105,7 +11308,7 @@ Bounds - {{318.91, 276.5}, {59.090199, 36}} + {{318.91000000000003, 276.5}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -11156,7 +11359,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -11178,8 +11381,8 @@ 1383 Points - {342.77399, 156.74001} - {320.2272, 156.74001} + {342.77399000000003, 156.74001000000001} + {320.22718900000001, 156.74001000000001} Style @@ -11187,6 +11390,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -11201,7 +11406,7 @@ Bounds - {{344.27399, 138.74001}, {59.090199, 36}} + {{344.27399000000003, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -11252,7 +11457,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -11274,8 +11479,8 @@ 1381 Points - {487.5451, 275.49997} - {487.5451, 245.97998} + {487.54509999999999, 275.5} + {487.54509999999999, 245.98000000000002} Style @@ -11283,6 +11488,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -11297,7 +11504,7 @@ Bounds - {{452.534, 276.5}, {70.022202, 36}} + {{452.53399999999999, 276.5}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -11357,7 +11564,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -11379,8 +11586,8 @@ 1379 Points - {458.45612, 112} - {458.45609, 137.24002} + {458.45610198101679, 112} + {458.45610198101679, 137.24001000000001} Style @@ -11388,6 +11595,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -11402,7 +11611,7 @@ Bounds - {{423.44501, 75}, {70.022202, 36}} + {{423.44501000000002, 75}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -11462,7 +11671,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -11484,8 +11693,8 @@ 1373 Points - {284.96213, 209.51193} - {230.40207, 173.70807} + {284.96213112581756, 209.51193409951765} + {230.40205896497349, 173.70807478385115} Style @@ -11493,6 +11702,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -11517,8 +11728,8 @@ 1372 Points - {364.41101, 226.48} - {341.8642, 226.48} + {364.41100999999998, 226.47999999999999} + {341.86418900000001, 226.47999999999999} Style @@ -11526,6 +11737,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -11540,7 +11753,7 @@ Bounds - {{365.91101, 208.48}, {59.090199, 36}} + {{365.91100999999998, 208.47999999999999}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -11591,7 +11804,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -11603,7 +11816,7 @@ Bounds - {{281.27399, 208.48}, {59.090199, 36}} + {{281.27399000000003, 208.47999999999999}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -11654,7 +11867,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -11676,8 +11889,8 @@ 1357 Points - {173.5, 156.74001} - {150.9532, 156.74001} + {173.50000000000003, 156.74001000000001} + {150.95319799999996, 156.74001000000001} Style @@ -11685,6 +11898,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -11699,7 +11914,7 @@ Bounds - {{90.362999, 138.74001}, {59.090199, 36}} + {{90.362999000000002, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -11750,7 +11965,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -11772,8 +11987,8 @@ 1351 Points - {204.5451, 111.99999} - {204.54509, 137.24001} + {204.54508999999999, 112} + {204.54508999999999, 137.24001000000001} Style @@ -11781,6 +11996,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -11795,7 +12012,7 @@ Bounds - {{169.534, 75}, {70.022202, 36}} + {{169.53399999999999, 75}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -11855,7 +12072,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -11872,8 +12089,8 @@ 1349 Points - {88.86615, 156.24657} - {57, 155.74001} + {88.866151184295461, 156.2465608566325} + {57, 155.74001000000001} Style @@ -11881,6 +12098,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -11907,8 +12126,8 @@ 1347 Points - {258.13699, 156.74001} - {235.59021, 156.74001} + {258.13699000000003, 156.74001000000001} + {235.59019899999996, 156.74001000000001} Style @@ -11916,6 +12135,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -11930,7 +12151,7 @@ Bounds - {{175, 138.74001}, {59.090199, 36}} + {{175, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -11981,7 +12202,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -11993,7 +12214,7 @@ Bounds - {{259.63699, 138.74001}, {59.090199, 36}} + {{259.63699000000003, 138.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -12044,7 +12265,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -12066,8 +12287,8 @@ 1390 Points - {487.54501, 329} - {487.54507, 245.97998} + {487.54500704194112, 329.0000000000004} + {487.54508150625446, 245.97999999999936} Style @@ -12075,6 +12296,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -12099,8 +12322,8 @@ 1392 Points - {458.45602, 66} - {458.45609, 137.24002} + {458.45601194408835, 65.999999999999403} + {458.45608859867036, 137.24001000000086} Style @@ -12108,6 +12331,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -12150,6 +12375,8 @@ 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -12178,18 +12405,13 @@ BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -12197,6 +12419,8 @@ + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -12204,7 +12428,7 @@ ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -12219,8 +12443,8 @@ 1404 Points - {329.151, 255.87} - {301.13821, 255.87} + {329.15100000000001, 255.87} + {301.13819899999999, 255.87} Style @@ -12228,6 +12452,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -12242,7 +12468,7 @@ Bounds - {{330.651, 237.87}, {59.090199, 36}} + {{330.65100000000001, 237.87}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -12293,7 +12519,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -12315,8 +12541,8 @@ 1402 Points - {244.99004, 238.21304} - {192.64816, 201.39696} + {244.99002931819888, 238.21305736526318} + {192.64816841979021, 201.39695365422838} Style @@ -12324,6 +12550,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -12348,8 +12576,8 @@ 1401 Points - {420.00037, 257.51157} - {391.23178, 256.72192} + {420.0003764999542, 257.51155620024741} + {391.23178964747746, 256.72189890518422} Style @@ -12357,6 +12585,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -12371,7 +12601,7 @@ Bounds - {{421, 240.5}, {70.022202, 36}} + {{421, 240.5}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -12431,7 +12661,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -12443,7 +12673,7 @@ Bounds - {{240.548, 237.87}, {59.090199, 36}} + {{240.548, 237.87}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -12494,7 +12724,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -12516,8 +12746,8 @@ 1398 Points - {331.27399, 328} - {301.13821, 328} + {331.27399000000003, 328} + {301.13819899999999, 328} Style @@ -12525,6 +12755,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -12549,8 +12781,8 @@ 1397 Points - {270.09305, 139} - {270.09308, 164.24001} + {270.093065421007, 138.99999999999974} + {270.0930839139732, 164.2400100000005} Style @@ -12558,6 +12790,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -12572,7 +12806,7 @@ Bounds - {{228.86, 102}, {82.466103, 36}} + {{228.86000000000001, 102}, {82.466103000000004, 36}} Class ShapedGraphic FontInfo @@ -12632,7 +12866,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -12644,7 +12878,7 @@ Bounds - {{332.27399, 310}, {70.022202, 36}} + {{332.27399000000003, 310}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -12704,7 +12938,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -12726,9 +12960,9 @@ 1373 Points - {247.0722, 309.20908} + {247.07221173518184, 309.20910639541279} {207, 276.5} - {175.78841, 203.12032} + {175.78840365406185, 203.12033541477922} Style @@ -12736,6 +12970,8 @@ HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -12748,7 +12984,7 @@ Bounds - {{240.548, 310}, {59.090199, 36}} + {{240.548, 310}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -12799,7 +13035,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -12821,8 +13057,8 @@ 1357 Points - {136.5, 183.74001} - {113.95319, 183.74001} + {136.50000000000003, 183.74001000000001} + {113.95319799999997, 183.74001000000001} Style @@ -12830,6 +13066,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -12844,7 +13082,7 @@ Bounds - {{53.362999, 165.74001}, {59.090199, 36}} + {{53.362999000000002, 165.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -12895,7 +13133,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -12917,8 +13155,8 @@ 1351 Points - {167.5451, 139} - {167.54509, 164.24001} + {167.54508999999999, 139} + {167.54508999999999, 164.24001000000001} Style @@ -12926,6 +13164,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -12940,7 +13180,7 @@ Bounds - {{132.534, 102}, {70.022202, 36}} + {{132.53399999999999, 102}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -13000,7 +13240,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -13017,8 +13257,8 @@ 1349 Points - {51.866154, 183.24657} - {20, 182.74001} + {51.866151184295454, 183.2465608566325} + {20, 182.74001000000001} Style @@ -13026,6 +13266,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -13052,8 +13294,8 @@ 1347 Points - {239.048, 183.74001} - {198.59021, 183.74001} + {239.04800000000003, 183.74001000000001} + {198.59019899999996, 183.74001000000001} Style @@ -13061,6 +13303,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -13075,7 +13319,7 @@ Bounds - {{138, 165.74001}, {59.090199, 36}} + {{138, 165.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -13126,7 +13370,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -13138,7 +13382,7 @@ Bounds - {{240.548, 165.74001}, {59.090199, 36}} + {{240.548, 165.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -13189,7 +13433,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -13229,6 +13473,8 @@ 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -13257,18 +13503,13 @@ BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -13276,6 +13517,8 @@ + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -13283,7 +13526,7 @@ ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -13298,8 +13541,8 @@ 1404 Points - {403.603, 247} - {375.59021, 247} + {403.60300000000001, 247} + {375.59019899999998, 247} Style @@ -13307,6 +13550,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -13321,7 +13566,7 @@ Bounds - {{405.103, 229}, {59.090199, 36}} + {{405.10300000000001, 229}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -13372,7 +13617,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -13394,8 +13639,8 @@ 1402 Points - {322.24716, 228.054} - {292.39105, 202.686} + {322.24716519017454, 228.05400524701346} + {292.3910383656663, 202.68600414422156} Style @@ -13403,6 +13648,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -13427,8 +13674,8 @@ 1401 Points - {494.45236, 248.64157} - {465.68378, 247.85191} + {494.45237650117519, 248.6415545965919} + {465.68378971128499, 247.8518960220764} Style @@ -13436,6 +13683,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -13450,7 +13699,7 @@ Bounds - {{495.452, 231.63}, {70.022202, 36}} + {{495.452, 231.63}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -13510,7 +13759,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -13522,7 +13771,7 @@ Bounds - {{315, 229}, {59.090199, 36}} + {{315, 229}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -13573,7 +13822,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -13595,8 +13844,8 @@ 1398 Points - {331.27399, 328} - {301.13821, 328} + {331.27399000000003, 328} + {301.13819899999999, 328} Style @@ -13604,6 +13853,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -13628,8 +13879,8 @@ 1397 Points - {270.09305, 139} - {270.09308, 164.24001} + {270.093065421007, 138.99999999999974} + {270.0930839139732, 164.2400100000005} Style @@ -13637,6 +13888,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -13651,7 +13904,7 @@ Bounds - {{228.86, 102}, {82.466103, 36}} + {{228.86000000000001, 102}, {82.466103000000004, 36}} Class ShapedGraphic FontInfo @@ -13711,7 +13964,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -13723,7 +13976,7 @@ Bounds - {{332.27399, 310}, {70.022202, 36}} + {{332.27399000000003, 310}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -13783,7 +14036,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -13805,9 +14058,9 @@ 1373 Points - {247.0722, 309.20908} + {247.07221173518184, 309.20910639541279} {207, 276.5} - {175.78841, 203.12032} + {175.78840365406185, 203.12033541477922} Style @@ -13815,6 +14068,8 @@ HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -13827,7 +14082,7 @@ Bounds - {{240.548, 310}, {59.090199, 36}} + {{240.548, 310}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -13878,7 +14133,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -13900,8 +14155,8 @@ 1357 Points - {136.5, 183.74001} - {113.95319, 183.74001} + {136.50000000000003, 183.74001000000001} + {113.95319799999997, 183.74001000000001} Style @@ -13909,6 +14164,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -13923,7 +14180,7 @@ Bounds - {{53.362999, 165.74001}, {59.090199, 36}} + {{53.362999000000002, 165.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -13974,7 +14231,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -13996,8 +14253,8 @@ 1351 Points - {167.5451, 139} - {167.54509, 164.24001} + {167.54508999999999, 139} + {167.54508999999999, 164.24001000000001} Style @@ -14005,6 +14262,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -14019,7 +14278,7 @@ Bounds - {{132.534, 102}, {70.022202, 36}} + {{132.53399999999999, 102}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -14079,7 +14338,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -14096,8 +14355,8 @@ 1349 Points - {51.866154, 183.24657} - {20, 182.74001} + {51.866151184295454, 183.2465608566325} + {20, 182.74001000000001} Style @@ -14105,6 +14364,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -14131,8 +14392,8 @@ 1347 Points - {239.048, 183.74001} - {198.59021, 183.74001} + {239.04800000000003, 183.74001000000001} + {198.59019899999996, 183.74001000000001} Style @@ -14140,6 +14401,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -14154,7 +14417,7 @@ Bounds - {{138, 165.74001}, {59.090199, 36}} + {{138, 165.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -14205,7 +14468,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -14217,7 +14480,7 @@ Bounds - {{240.548, 165.74001}, {59.090199, 36}} + {{240.548, 165.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -14268,7 +14531,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -14308,6 +14571,8 @@ 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -14336,18 +14601,13 @@ BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -14355,6 +14615,8 @@ + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -14362,7 +14624,7 @@ ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -14377,8 +14639,8 @@ 1408 Points - {421.37701, 230} - {392.8642, 230} + {421.37701000000004, 230} + {392.86418900000001, 230} Style @@ -14386,6 +14648,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -14400,7 +14664,7 @@ Bounds - {{422.37701, 212}, {70.022202, 36}} + {{422.37700999999998, 212}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -14460,7 +14724,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -14482,8 +14746,8 @@ 1406 Points - {333.88806, 215.91356} - {298.0242, 197.82637} + {333.88804846630092, 215.91358593229802} + {298.02414970466168, 197.82640731875929} Style @@ -14491,6 +14755,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -14505,7 +14771,7 @@ Bounds - {{332.27399, 212}, {59.090199, 36}} + {{332.27399000000003, 212}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -14556,7 +14822,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -14578,8 +14844,8 @@ 1404 Points - {420.87701, 294.26001} - {392.8642, 294.26001} + {420.87700999999998, 294.26001000000002} + {392.86418900000001, 294.26001000000002} Style @@ -14587,6 +14853,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -14601,7 +14869,7 @@ Bounds - {{422.37701, 276.26001}, {59.090199, 36}} + {{422.37700999999998, 276.26001000000002}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -14652,7 +14920,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -14674,8 +14942,8 @@ 1402 Points - {345.92203, 275.10577} - {285.99017, 202.89427} + {345.92203380003974, 275.10575935567971} + {285.99015556146401, 202.89426063334483} Style @@ -14683,6 +14951,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -14707,8 +14977,8 @@ 1401 Points - {511.72638, 295.90158} - {482.95779, 295.11194} + {511.72638649873306, 295.90156780390299} + {482.95779958366961, 295.11191178829205} Style @@ -14716,6 +14986,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -14730,7 +15002,7 @@ Bounds - {{512.72601, 278.89001}, {70.022202, 36}} + {{512.72600999999997, 278.89001000000002}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -14790,7 +15062,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -14802,7 +15074,7 @@ Bounds - {{332.27399, 276.26001}, {59.090199, 36}} + {{332.27399000000003, 276.26001000000002}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -14853,7 +15125,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -14875,8 +15147,8 @@ 1398 Points - {331.27399, 349} - {301.13821, 349} + {331.27399000000003, 349} + {301.13819899999999, 349} Style @@ -14884,6 +15156,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -14908,8 +15182,8 @@ 1397 Points - {270.09305, 139} - {270.09308, 164.24001} + {270.093065421007, 138.99999999999974} + {270.0930839139732, 164.2400100000005} Style @@ -14917,6 +15191,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -14931,7 +15207,7 @@ Bounds - {{228.86, 102}, {82.466103, 36}} + {{228.86000000000001, 102}, {82.466103000000004, 36}} Class ShapedGraphic FontInfo @@ -14991,7 +15267,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -15003,7 +15279,7 @@ Bounds - {{332.27399, 331}, {70.022202, 36}} + {{332.27399000000003, 331}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -15063,7 +15339,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -15085,9 +15361,9 @@ 1373 Points - {253.44389, 329.86847} + {253.44389683841075, 329.8684752765202} {207, 276.5} - {175.78841, 203.12032} + {175.78840365406185, 203.12033541477922} Style @@ -15095,6 +15371,8 @@ HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -15107,7 +15385,7 @@ Bounds - {{240.548, 331}, {59.090199, 36}} + {{240.548, 331}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -15158,7 +15436,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -15180,8 +15458,8 @@ 1357 Points - {136.5, 183.74001} - {113.95319, 183.74001} + {136.50000000000003, 183.74001000000001} + {113.95319799999997, 183.74001000000001} Style @@ -15189,6 +15467,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -15203,7 +15483,7 @@ Bounds - {{53.362999, 165.74001}, {59.090199, 36}} + {{53.362999000000002, 165.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -15254,7 +15534,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -15276,8 +15556,8 @@ 1351 Points - {167.5451, 139} - {167.54509, 164.24001} + {167.54508999999999, 139} + {167.54508999999999, 164.24001000000001} Style @@ -15285,6 +15565,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -15299,7 +15581,7 @@ Bounds - {{132.534, 102}, {70.022202, 36}} + {{132.53399999999999, 102}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -15359,7 +15641,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -15376,8 +15658,8 @@ 1349 Points - {51.866154, 183.24657} - {20, 182.74001} + {51.866151184295454, 183.2465608566325} + {20, 182.74001000000001} Style @@ -15385,6 +15667,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -15411,8 +15695,8 @@ 1347 Points - {239.048, 183.74001} - {198.59021, 183.74001} + {239.04800000000003, 183.74001000000001} + {198.59019899999996, 183.74001000000001} Style @@ -15420,6 +15704,8 @@ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -15434,7 +15720,7 @@ Bounds - {{138, 165.74001}, {59.090199, 36}} + {{138, 165.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -15485,7 +15771,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -15497,7 +15783,7 @@ Bounds - {{240.548, 165.74001}, {59.090199, 36}} + {{240.548, 165.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -15548,7 +15834,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -15588,6 +15874,8 @@ 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -15623,11 +15911,6 @@ 2 Style - shadow - - Draws - NO - stroke Draws @@ -15635,6 +15918,8 @@ + BaseZoom + 0 CanvasOrigin {0, 0} CanvasSize @@ -15644,7 +15929,7 @@ ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -15659,8 +15944,8 @@ 2009 Points - {432.07376, 148.96036} - {340.03949, 60.469601} + {432.07378185277423, 148.96035977544466} + {341.12077155353637, 61.509241239464124} Style @@ -15677,6 +15962,8 @@ HeadArrow 0 + Legacy + Pattern 2 TailArrow @@ -15701,8 +15988,8 @@ 2008 Points - {411.76624, 161.00638} - {138.93596, 66.673477} + {411.76626744787814, 161.00638574246028} + {138.93596213230853, 66.673469831634264} Style @@ -15719,6 +16006,8 @@ HeadArrow 0 + Legacy + TailArrow FilledArrow @@ -15741,8 +16030,8 @@ 2007 Points - {292.32977, 154.67145} - {134.94621, 75.29184} + {292.32979208176596, 154.67143972061157} + {134.94621518092993, 75.291834248995912} Style @@ -15759,6 +16048,8 @@ HeadArrow 0 + Legacy + TailArrow FilledArrow @@ -15781,8 +16072,8 @@ 2006 Points - {185.10561, 148.9774} - {116.47308, 85.022606} + {185.10560953931608, 148.97739643907747} + {116.47309897879268, 85.02260361546341} Style @@ -15799,6 +16090,8 @@ HeadArrow 0 + Legacy + TailArrow FilledArrow @@ -15821,8 +16114,8 @@ 2004 Points - {463.0405, 60.469601} - {463.0405, 148.5} + {463.04050000000001, 61.969601000000011} + {463.04050000000001, 148.5} Style @@ -15830,6 +16123,8 @@ HeadArrow 0 + Legacy + TailArrow FilledArrow Width @@ -15854,7 +16149,7 @@ 2003 Points - {340.03949, 60.469601} + {340.03949, 61.969601000000011} {340.03949, 148.5} Style @@ -15863,6 +16158,8 @@ HeadArrow 0 + Legacy + TailArrow FilledArrow Width @@ -15887,8 +16184,8 @@ 2002 Points - {217.03951, 60.469601} - {217.03951, 148.5} + {217.0395, 60.469600999999997} + {217.0395, 148.5} Style @@ -15896,6 +16193,8 @@ HeadArrow 0 + Legacy + TailArrow FilledArrow Width @@ -15920,8 +16219,8 @@ 2000 Points - {123.94611, 163.00168} - {463.0405, 60.469601} + {123.94611231183583, 163.00168308365656} + {463.04050999999998, 60.469600999999997} Style @@ -15938,6 +16237,8 @@ HeadArrow 0 + Legacy + TailArrow FilledArrow @@ -15960,8 +16261,8 @@ 1999 Points - {108.33744, 149.05241} - {217.03951, 60.469601} + {108.33744440603807, 149.05242130416892} + {217.0395, 60.469600999999997} Style @@ -15978,6 +16279,8 @@ HeadArrow 0 + Legacy + TailArrow FilledArrow @@ -16000,8 +16303,8 @@ 1998 Points - {121.19299, 156.99858} - {340.03949, 60.469601} + {121.19298908470483, 156.99857010335171} + {340.03949999999998, 60.469600999999997} Style @@ -16018,6 +16321,8 @@ HeadArrow 0 + Legacy + TailArrow FilledArrow @@ -16030,7 +16335,7 @@ Bounds - {{410.00101, 150}, {106.079, 57.469601}} + {{410.00101000000001, 150}, {106.07899999999999, 57.469600999999997}} Class ShapedGraphic FontInfo @@ -16081,7 +16386,7 @@ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -16094,7 +16399,7 @@ private} Bounds - {{164, 150}, {106.079, 57.469601}} + {{164, 150}, {106.07899999999999, 57.469600999999997}} Class ShapedGraphic FontInfo @@ -16145,7 +16450,7 @@ private} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -16158,7 +16463,7 @@ private} Bounds - {{287, 150}, {106.079, 57.469601}} + {{287, 150}, {106.07899999999999, 57.469600999999997}} Class ShapedGraphic FontInfo @@ -16209,7 +16514,7 @@ private} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -16232,8 +16537,8 @@ private} 1990 Points - {71.913498, 85.5} - {71.913498, 148.5} + {71.913498000000004, 85.5} + {71.913498000000004, 148.5} Style @@ -16241,6 +16546,8 @@ private} HeadArrow 0 + Legacy + TailArrow FilledArrow Width @@ -16255,7 +16562,7 @@ private} Bounds - {{2.7479999, 3}, {138.33099, 81}} + {{2.7479998999999999, 3}, {138.33099000000001, 81}} Class ShapedGraphic FontInfo @@ -16306,7 +16613,7 @@ private} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -16319,7 +16626,7 @@ repository} Bounds - {{410.00101, 3}, {106.079, 57.469601}} + {{410.00101000000001, 3}, {106.07899999999999, 57.469600999999997}} Class ShapedGraphic FontInfo @@ -16375,7 +16682,7 @@ repository} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -16388,7 +16695,7 @@ public} Bounds - {{18.874001, 150}, {106.079, 57.469601}} + {{18.874001, 150}, {106.07899999999999, 57.469600999999997}} Class ShapedGraphic FontInfo @@ -16439,7 +16746,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -16451,7 +16758,7 @@ public} Bounds - {{164, 3}, {106.079, 57.469601}} + {{164, 3}, {106.07899999999999, 57.469600999999997}} Class ShapedGraphic FontInfo @@ -16507,7 +16814,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -16520,7 +16827,7 @@ public} Bounds - {{287, 3}, {106.079, 57.469601}} + {{287, 3}, {106.07899999999999, 57.469600999999997}} Class ShapedGraphic FontInfo @@ -16576,7 +16883,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -16617,6 +16924,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -16654,11 +16963,6 @@ public} 2 Style - shadow - - Draws - NO - stroke Draws @@ -16666,6 +16970,8 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} CanvasSize @@ -16675,7 +16981,7 @@ public} ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -16690,8 +16996,8 @@ public} 2013 Points - {302.72449, 73.337555} - {384.00049, 131} + {302.72448050866188, 73.337548278049397} + {384.00049999999999, 131} Style @@ -16699,6 +17005,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -16723,8 +17031,8 @@ public} 2012 Points - {260.99918, 73.969604} - {260.99951, 131} + {260.99917669985678, 73.969600999974361} + {260.99950999999999, 131} Style @@ -16732,6 +17040,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -16756,8 +17066,8 @@ public} 2011 Points - {139.22289, 130.13205} - {219.27419, 73.337563} + {137.99949899999999, 131} + {219.27418438167132, 73.337557661056849} Style @@ -16765,6 +17075,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -16789,8 +17101,8 @@ public} 2010 Points - {219.27419, 73.337563} - {137.9995, 131} + {219.27418438167132, 73.337557661056849} + {137.99949899999999, 131} Style @@ -16798,6 +17110,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -16812,7 +17126,7 @@ public} Bounds - {{201.916, 15}, {118.166, 57.469601}} + {{201.916, 15}, {118.166, 57.469600999999997}} Class ShapedGraphic FontInfo @@ -16863,7 +17177,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -16876,7 +17190,7 @@ repository} Bounds - {{330.961, 131}, {106.079, 57.469601}} + {{330.96100000000001, 131}, {106.07899999999999, 57.469600999999997}} Class ShapedGraphic FontInfo @@ -16932,7 +17246,7 @@ repository} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -16944,7 +17258,7 @@ repository} Bounds - {{84.959999, 131}, {106.079, 57.469601}} + {{84.959998999999996, 131}, {106.07899999999999, 57.469600999999997}} Class ShapedGraphic FontInfo @@ -17000,7 +17314,7 @@ repository} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -17012,7 +17326,7 @@ repository} Bounds - {{207.96001, 131}, {106.079, 57.469601}} + {{207.96001000000001, 131}, {106.07899999999999, 57.469600999999997}} Class ShapedGraphic FontInfo @@ -17068,7 +17382,7 @@ repository} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -17108,6 +17422,8 @@ repository} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -17138,18 +17454,13 @@ repository} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -17157,6 +17468,8 @@ repository} + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -17164,7 +17477,7 @@ repository} ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -17179,9 +17492,9 @@ repository} 2012 Points - {249.44746, 385.77258} + {249.44746834936015, 385.77257303650646} {377, 332} - {524.87927, 159.1398} + {524.87926241269736, 159.13981819317826} Style @@ -17202,6 +17515,8 @@ repository} HopType 1 + Legacy + TailArrow FilledArrow @@ -17224,9 +17539,9 @@ repository} 2011 Points - {403.03644, 376.72604} + {403.03643850083427, 376.72605032393841} {424, 343} - {535.20892, 159.2832} + {535.20894038801589, 159.28321318021037} Style @@ -17247,6 +17562,8 @@ repository} HopType 1 + Legacy + TailArrow FilledArrow @@ -17269,8 +17586,8 @@ repository} 2010 Points - {560.50153, 376.5} - {560.50146, 159.5} + {560.50150388540771, 376.5} + {560.50150388540771, 159.49999999999997} Style @@ -17287,6 +17604,8 @@ repository} HeadArrow 0 + Legacy + TailArrow FilledArrow @@ -17309,8 +17628,8 @@ repository} 2007 Points - {387.10962, 220.89032} - {500.41052, 153.33112} + {387.10964211431576, 220.8903178394161} + {500.41057218433826, 153.33109264612162} Style @@ -17327,6 +17646,8 @@ repository} HeadArrow 0 + Legacy + TailArrow FilledArrow @@ -17349,9 +17670,9 @@ repository} 2006 Points - {245.12643, 221.18106} + {245.12643511071295, 221.18105334237214} {324, 175} - {491.6488, 134.23997} + {491.6488527800085, 134.2399657564512} Style @@ -17372,6 +17693,8 @@ repository} HopType 1 + Legacy + TailArrow FilledArrow @@ -17394,8 +17717,8 @@ repository} 2003 Points - {232.22314, 147.24757} - {309.53989, 218.01723} + {232.22312574329919, 147.24757653438459} + {309.53988398652604, 218.01722247028309} Style @@ -17407,6 +17730,8 @@ repository} HopType 1 + Legacy + TailArrow FilledArrow Width @@ -17431,8 +17756,8 @@ repository} 2002 Points - {199.72353, 147.7348} - {199.72356, 217.53} + {199.72352511286618, 147.73479900000001} + {199.72352511286618, 217.53000000000003} Style @@ -17440,6 +17765,8 @@ repository} HeadArrow 0 + Legacy + TailArrow FilledArrow Width @@ -17464,8 +17791,8 @@ repository} 2000 Points - {382.41907, 277.14813} - {520.12195, 377.35153} + {382.41903815281171, 277.14810288953225} + {520.12196879127396, 377.35149886604052} Style @@ -17477,6 +17804,8 @@ repository} HopType 1 + Legacy + TailArrow FilledArrow @@ -17499,8 +17828,8 @@ repository} 1999 Points - {199.72351, 277.9996} - {199.72354, 376.5} + {199.723517045812, 277.99960099999998} + {199.723517045812, 376.5} Style @@ -17508,6 +17837,8 @@ repository} HeadArrow 0 + Legacy + TailArrow FilledArrow @@ -17530,8 +17861,8 @@ repository} 1998 Points - {234.23874, 277.47827} - {349.86832, 377.02139} + {234.23871506990173, 277.47823453815835} + {349.86828541693939, 377.02136645376066} Style @@ -17543,6 +17874,8 @@ repository} HopType 1 + Legacy + TailArrow FilledArrow @@ -17555,7 +17888,7 @@ repository} Bounds - {{146.68401, 219.03}, {106.079, 57.469601}} + {{146.68401, 219.03}, {106.07899999999999, 57.469600999999997}} Class ShapedGraphic FontInfo @@ -17606,7 +17939,7 @@ repository} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -17618,7 +17951,7 @@ repository} Bounds - {{289, 219.03}, {106.079, 57.469601}} + {{289, 219.03}, {106.07899999999999, 57.469600999999997}} Class ShapedGraphic FontInfo @@ -17669,7 +18002,7 @@ repository} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -17691,8 +18024,8 @@ repository} 1990 Points - {489.836, 117.5} - {254.26302, 117.5} + {489.83600000000001, 117.5} + {254.26300999999989, 117.5} Style @@ -17700,6 +18033,8 @@ repository} HeadArrow 0 + Legacy + TailArrow FilledArrow Width @@ -17714,7 +18049,7 @@ repository} Bounds - {{491.336, 77}, {138.33099, 81}} + {{491.33600000000001, 77}, {138.33099000000001, 81}} Class ShapedGraphic FontInfo @@ -17765,7 +18100,7 @@ repository} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -17778,7 +18113,7 @@ repository} Bounds - {{507.46201, 378}, {106.079, 57.469601}} + {{507.46201000000002, 378}, {106.07899999999999, 57.469600999999997}} Class ShapedGraphic FontInfo @@ -17829,7 +18164,7 @@ repository} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -17842,7 +18177,7 @@ public} Bounds - {{146.68401, 88.765198}, {106.079, 57.469601}} + {{146.68401, 88.765197999999998}, {106.07899999999999, 57.469600999999997}} Class ShapedGraphic FontInfo @@ -17893,7 +18228,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -17905,7 +18240,7 @@ public} Bounds - {{146.68401, 378}, {106.079, 57.469601}} + {{146.68401, 378}, {106.07899999999999, 57.469600999999997}} Class ShapedGraphic FontInfo @@ -17956,7 +18291,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -17969,7 +18304,7 @@ public} Bounds - {{331.34399, 378}, {106.079, 57.469601}} + {{331.34399000000002, 378}, {106.07899999999999, 57.469600999999997}} Class ShapedGraphic FontInfo @@ -18020,7 +18355,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -18061,6 +18396,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -18089,18 +18426,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -18108,6 +18440,8 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -18115,7 +18449,7 @@ public} ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -18161,7 +18495,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -18194,6 +18528,8 @@ public} HeadArrow 0 + Legacy + LineType 1 TailArrow @@ -18219,7 +18555,7 @@ public} Points {390, 188.5} - {390, 214.49998} + {390, 214.5} Style @@ -18227,6 +18563,8 @@ public} HeadArrow 0 + Legacy + LineType 1 TailArrow @@ -18251,8 +18589,8 @@ public} 10 Points - {324.5, 160.5} - {213.5, 160.5} + {324.50000000000006, 160.5} + {213.49999999999997, 160.5} Style @@ -18260,6 +18598,8 @@ public} HeadArrow 0 + Legacy + LineType 1 TailArrow @@ -18325,7 +18665,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -18386,7 +18726,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -18447,7 +18787,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -18498,7 +18838,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -18571,7 +18911,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -18636,7 +18976,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -18704,6 +19044,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -18732,18 +19074,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -18751,6 +19088,8 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -18758,7 +19097,7 @@ public} ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -18773,8 +19112,8 @@ public} 21 Points - {307.04163, 286.23831} - {187.15083, 338.47202} + {307.04161510175061, 286.23830128281315} + {187.15079786014886, 338.47203620505076} Style @@ -18782,6 +19121,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -18837,7 +19178,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -18892,7 +19233,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -18957,7 +19298,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -19038,7 +19379,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -19093,7 +19434,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -19126,6 +19467,8 @@ public} HeadArrow 0 + Legacy + LineType 1 TailArrow @@ -19151,7 +19494,7 @@ public} Points {423.5, 188.5} - {423.5, 214.49998} + {423.5, 214.5} Style @@ -19159,6 +19502,8 @@ public} HeadArrow 0 + Legacy + LineType 1 TailArrow @@ -19183,8 +19528,8 @@ public} 10 Points - {307.02856, 194.34544} - {190.62511, 153.2149} + {307.02856457573824, 194.34542963799151} + {190.62511596418133, 153.2148820593973} Style @@ -19192,6 +19537,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -19257,7 +19604,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -19318,7 +19665,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -19379,7 +19726,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -19430,7 +19777,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -19503,7 +19850,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -19568,7 +19915,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -19666,6 +20013,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -19694,18 +20043,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 1106}} + {{0, 0}, {756, 1106.0000419616699}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -19713,6 +20057,8 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -19720,7 +20066,7 @@ public} ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -19735,8 +20081,8 @@ public} 44 Points - {455.99969, 430.91608} - {455.99982, 445.5} + {455.99971083406899, 430.91609799996087} + {455.99981616940272, 445.50000000001296} Style @@ -19744,6 +20090,8 @@ public} HeadArrow 0 + Legacy + LineType 1 TailArrow @@ -19768,8 +20116,8 @@ public} 43 Points - {119.9999, 430.91608} - {119.99993, 445.50003} + {119.99990368856517, 430.91609799999759} + {119.99992982841259, 445.5000000000008} Style @@ -19777,6 +20125,8 @@ public} HeadArrow 0 + Legacy + LineType 1 TailArrow @@ -19801,8 +20151,8 @@ public} 42 Points - {455.99979, 572.63611} - {455.99985, 581.164} + {455.99975585134808, 572.6361279999951} + {455.99977763416024, 581.16400000000942} Style @@ -19810,6 +20160,8 @@ public} HeadArrow 0 + Legacy + LineType 1 TailArrow @@ -19834,8 +20186,8 @@ public} 41 Points - {455.99979, 520.37811} - {455.99985, 528.90503} + {455.99975585653044, 520.37809799999513} + {455.99977763896254, 528.90503000000945} Style @@ -19843,6 +20195,8 @@ public} HeadArrow 0 + Legacy + LineType 1 TailArrow @@ -19867,8 +20221,8 @@ public} 40 Points - {119.99994, 572.63715} - {119.99995, 581.16498} + {119.99991924477369, 572.63710799999944} + {119.99992636049234, 581.16498000000104} Style @@ -19876,6 +20230,8 @@ public} HeadArrow 0 + Legacy + LineType 1 TailArrow @@ -19900,8 +20256,8 @@ public} 38 Points - {119.99994, 520.37811} - {119.99995, 528.90594} + {119.99991924474368, 520.37809799999945} + {119.999926360484, 528.90601000000106} Style @@ -19909,6 +20265,8 @@ public} HeadArrow 0 + Legacy + LineType 1 TailArrow @@ -19933,8 +20291,8 @@ public} 36 Points - {353.48004, 496.06354} - {222.52002, 496.0636} + {353.48001000000005, 496.06352331645354} + {222.51998999999995, 496.06352331645354} Style @@ -19942,6 +20300,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -19968,8 +20328,8 @@ public} 35 Points - {352.07938, 289.07794} - {381.43793, 347.55316} + {352.0793352646117, 289.07794338657158} + {381.43785846002618, 347.55315646682101} Style @@ -19977,6 +20337,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -19993,7 +20355,7 @@ public} Bounds - {{406.815, 582.664}, {98.3694, 40.731098}} + {{406.815, 582.66399999999999}, {98.369399999999999, 40.731098000000003}} Class ShapedGraphic FontInfo @@ -20044,7 +20406,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -20054,7 +20416,7 @@ public} Bounds - {{406.815, 530.40503}, {98.3694, 40.731098}} + {{406.815, 530.40503000000001}, {98.369399999999999, 40.731098000000003}} Class ShapedGraphic FontInfo @@ -20105,7 +20467,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -20115,7 +20477,7 @@ public} Bounds - {{406.815, 478.147}, {98.3694, 40.731098}} + {{406.815, 478.14699999999999}, {98.369399999999999, 40.731098000000003}} Class ShapedGraphic FontInfo @@ -20166,7 +20528,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -20176,7 +20538,7 @@ public} Bounds - {{413.34799, 454.5}, {85.304703, 13.0647}} + {{413.34798999999998, 454.5}, {85.304703000000003, 13.0647}} Class ShapedGraphic FontInfo @@ -20213,7 +20575,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -20227,7 +20589,7 @@ public} Bounds - {{366.853, 446}, {178.295, 189}} + {{366.85300000000001, 446}, {178.29499999999999, 189}} Class ShapedGraphic ID @@ -20245,7 +20607,7 @@ public} Bounds - {{413.34799, 360}, {79.1567, 16.9072}} + {{413.34798999999998, 360}, {79.156700000000001, 16.9072}} Class ShapedGraphic FontInfo @@ -20282,7 +20644,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -20296,7 +20658,7 @@ public} Bounds - {{406.815, 388.685}, {98.3694, 40.731098}} + {{406.815, 388.685}, {98.369399999999999, 40.731098000000003}} Class ShapedGraphic FontInfo @@ -20352,7 +20714,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -20362,7 +20724,7 @@ public} Bounds - {{353.98001, 348}, {204.03999, 296.12701}} + {{353.98000999999999, 348}, {204.03998999999999, 296.12700999999998}} Class ShapedGraphic ID @@ -20392,7 +20754,7 @@ public} Bounds - {{70.815201, 582.66498}, {98.3694, 40.731098}} + {{70.815201000000002, 582.66498000000001}, {98.369399999999999, 40.731098000000003}} Class ShapedGraphic FontInfo @@ -20443,7 +20805,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -20453,7 +20815,7 @@ public} Bounds - {{70.815201, 530.40601}, {98.3694, 40.731098}} + {{70.815201000000002, 530.40601000000004}, {98.369399999999999, 40.731098000000003}} Class ShapedGraphic FontInfo @@ -20504,7 +20866,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -20514,7 +20876,7 @@ public} Bounds - {{70.815201, 478.147}, {98.3694, 40.731098}} + {{70.815201000000002, 478.14699999999999}, {98.369399999999999, 40.731098000000003}} Class ShapedGraphic FontInfo @@ -20565,7 +20927,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -20575,7 +20937,7 @@ public} Bounds - {{77.347504, 454.5}, {85.304703, 13.0647}} + {{77.347504000000001, 454.5}, {85.304703000000003, 13.0647}} Class ShapedGraphic FontInfo @@ -20612,7 +20974,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -20626,7 +20988,7 @@ public} Bounds - {{30.8526, 446}, {178.295, 189}} + {{30.852599999999999, 446}, {178.29499999999999, 189}} Class ShapedGraphic ID @@ -20644,7 +21006,7 @@ public} Bounds - {{77.347504, 360}, {79.1567, 16.9072}} + {{77.347504000000001, 360}, {79.156700000000001, 16.9072}} Class ShapedGraphic FontInfo @@ -20681,7 +21043,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -20705,8 +21067,8 @@ public} 20 Points - {223.92061, 289.07794} - {194.56207, 347.55316} + {223.92066004355857, 289.07794339402892} + {194.56213928695487, 347.55315646410105} Style @@ -20714,6 +21076,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -20730,7 +21094,7 @@ public} Bounds - {{70.815201, 388.685}, {98.3694, 40.731098}} + {{70.815201000000002, 388.685}, {98.369399999999999, 40.731098000000003}} Class ShapedGraphic FontInfo @@ -20786,7 +21150,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -20796,7 +21160,7 @@ public} Bounds - {{17.98, 348}, {204.03999, 296.12701}} + {{17.98, 348}, {204.03998999999999, 296.12700999999998}} Class ShapedGraphic ID @@ -20826,7 +21190,7 @@ public} Bounds - {{231.51401, 47.6315}, {112.971, 16.9072}} + {{231.51401000000001, 47.631500000000003}, {112.971, 16.9072}} Class ShapedGraphic FontInfo @@ -20863,7 +21227,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -20887,8 +21251,8 @@ public} 12 Points - {287.99979, 213.49109} - {287.99985, 221.424} + {287.9997592639935, 213.49108799999451} + {287.99978076521654, 221.42400000001027} Style @@ -20896,6 +21260,8 @@ public} HeadArrow 0 + Legacy + LineType 1 TailArrow @@ -20920,8 +21286,8 @@ public} 11 Points - {287.99979, 161.82709} - {287.99985, 169.75999} + {287.99975926411287, 161.82709799999446} + {287.999780765325, 169.75999000001028} Style @@ -20929,6 +21295,8 @@ public} HeadArrow 0 + Legacy + LineType 1 TailArrow @@ -20943,7 +21311,7 @@ public} Bounds - {{238.815, 222.924}, {98.3694, 40.731098}} + {{238.815, 222.92400000000001}, {98.369399999999999, 40.731098000000003}} Class ShapedGraphic FontInfo @@ -20994,7 +21362,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -21004,7 +21372,7 @@ public} Bounds - {{238.815, 171.25999}, {98.3694, 40.731098}} + {{238.815, 171.25998999999999}, {98.369399999999999, 40.731098000000003}} Class ShapedGraphic FontInfo @@ -21055,7 +21423,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -21065,7 +21433,7 @@ public} Bounds - {{238.815, 119.596}, {98.3694, 40.731098}} + {{238.815, 119.596}, {98.369399999999999, 40.731098000000003}} Class ShapedGraphic FontInfo @@ -21116,7 +21484,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -21126,7 +21494,7 @@ public} Bounds - {{245.34801, 95.5979}, {85.304703, 13.0647}} + {{245.34800999999999, 95.597899999999996}, {85.304703000000003, 13.0647}} Class ShapedGraphic FontInfo @@ -21163,7 +21531,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -21177,7 +21545,7 @@ public} Bounds - {{198.853, 82.6315}, {178.295, 194.481}} + {{198.85300000000001, 82.631500000000003}, {178.29499999999999, 194.48099999999999}} Class ShapedGraphic ID @@ -21195,7 +21563,7 @@ public} Bounds - {{185.98, 34.2631}, {204.03999, 254.368}} + {{185.97999999999999, 34.263100000000001}, {204.03998999999999, 254.36799999999999}} Class ShapedGraphic ID @@ -21253,6 +21621,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -21281,18 +21651,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -21300,6 +21665,8 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -21307,7 +21674,7 @@ public} ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -21322,8 +21689,8 @@ public} 1355 Points - {258.48044, 157.47659} - {236.43008, 157.36501} + {258.4804291472326, 157.47659846735544} + {236.43008883458981, 157.36500587517023} Style @@ -21331,6 +21698,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -21345,7 +21714,7 @@ public} Bounds - {{259.98001, 142.495}, {57.940498, 30.271601}} + {{259.98000999999999, 142.495}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -21396,7 +21765,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -21418,8 +21787,8 @@ public} 1353 Points - {288.95062, 122.27161} - {288.95035, 140.995} + {288.95068678900776, 122.2716009999135} + {288.95044054705158, 140.99500000008933} Style @@ -21427,6 +21796,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -21441,7 +21812,7 @@ public} Bounds - {{254.621, 91}, {68.659798, 30.271601}} + {{254.62100000000001, 91}, {68.659797999999995, 30.271601}} Class ShapedGraphic FontInfo @@ -21501,7 +21872,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -21523,8 +21894,8 @@ public} 1348 Points - {175.49001, 157.21083} - {153.44049, 157.21086} + {175.49001000000172, 157.21081211921225} + {153.4404979999922, 157.21082052734704} Style @@ -21532,6 +21903,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -21546,7 +21919,7 @@ public} Bounds - {{94, 142.075}, {57.940498, 30.271601}} + {{94, 142.07499999999999}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -21597,7 +21970,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -21609,7 +21982,7 @@ public} Bounds - {{176.99001, 142.075}, {57.940498, 30.271601}} + {{176.99001000000001, 142.07499999999999}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -21660,7 +22033,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -21672,7 +22045,7 @@ public} Bounds - {{250, 42}, {85.304703, 13.0647}} + {{250, 42}, {85.304703000000003, 13.0647}} Class ShapedGraphic FontInfo @@ -21709,7 +22082,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -21723,7 +22096,7 @@ public} Bounds - {{59.4263, 29.3783}, {457.147, 174.62199}} + {{59.426299999999998, 29.378299999999999}, {457.14699999999999, 174.62199000000001}} Class ShapedGraphic ID @@ -21774,6 +22147,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -21802,18 +22177,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -21821,6 +22191,8 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -21828,7 +22200,7 @@ public} ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -21843,8 +22215,8 @@ public} 1374 Points - {365.5, 439.12595} - {332.6037, 439.12592} + {365.5, 439.1259423225477} + {332.60370299999761, 439.12588735124967} Style @@ -21861,6 +22233,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -21887,8 +22261,8 @@ public} 1373 Points - {359, 334.13596} - {332.6037, 334.13593} + {359, 334.13592894036316} + {332.60370299999767, 334.13589464784599} Style @@ -21905,6 +22279,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -21921,7 +22297,7 @@ public} Bounds - {{365.5, 432.12601}, {81, 14}} + {{365.5, 432.12601000000001}, {81, 14}} Class ShapedGraphic FitText @@ -21953,7 +22329,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -21967,7 +22343,7 @@ public} Bounds - {{359, 327.13599}, {94, 14}} + {{359, 327.13598999999999}, {94, 14}} Class ShapedGraphic FitText @@ -21999,7 +22375,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -22023,8 +22399,8 @@ public} 1370 Points - {288.95105, 422.98999} - {288.95068, 403.26657} + {288.95102261783768, 422.98999000020763} + {288.95062061294038, 403.26660099964568} Style @@ -22032,6 +22408,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -22046,7 +22424,7 @@ public} Bounds - {{246.299, 423.98999}, {85.304703, 30.271601}} + {{246.29900000000001, 423.98998999999998}, {85.304703000000003, 30.271601}} Class ShapedGraphic FontInfo @@ -22106,7 +22484,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -22159,7 +22537,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -22194,6 +22572,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -22215,8 +22595,8 @@ public} 1366 Points - {258.48044, 386.47659} - {236.43008, 386.36502} + {258.48042912336837, 386.47660285566923} + {236.4300888478358, 386.36501343948464} Style @@ -22224,6 +22604,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -22238,7 +22620,7 @@ public} Bounds - {{259.98001, 371.495}, {57.940498, 30.271601}} + {{259.98000999999999, 371.495}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -22289,7 +22671,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -22311,8 +22693,8 @@ public} 1364 Points - {288.95105, 350.27164} - {288.95068, 369.995} + {288.95102261784825, 350.27160099979233} + {288.95062061276002, 369.99500000035437} Style @@ -22320,6 +22702,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -22334,7 +22718,7 @@ public} Bounds - {{246.299, 319}, {85.304703, 30.271601}} + {{246.29900000000001, 319}, {85.304703000000003, 30.271601}} Class ShapedGraphic FontInfo @@ -22394,7 +22778,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -22416,8 +22800,8 @@ public} 1362 Points - {175.49001, 386.21085} - {153.44049, 386.21088} + {175.49001000000246, 386.21082407202107} + {153.44049799998947, 386.21083389328771} Style @@ -22425,6 +22809,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -22439,7 +22825,7 @@ public} Bounds - {{94, 371.07501}, {57.940498, 30.271601}} + {{94, 371.07501000000002}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -22490,7 +22876,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -22502,7 +22888,7 @@ public} Bounds - {{176.99001, 371.07501}, {57.940498, 30.271601}} + {{176.99001000000001, 371.07501000000002}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -22553,7 +22939,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -22575,8 +22961,8 @@ public} 1355 Points - {258.48044, 157.47659} - {236.43008, 157.36501} + {258.4804291472326, 157.47659846735544} + {236.43008883458981, 157.36500587517023} Style @@ -22584,6 +22970,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -22598,7 +22986,7 @@ public} Bounds - {{259.98001, 142.495}, {57.940498, 30.271601}} + {{259.98000999999999, 142.495}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -22649,7 +23037,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -22671,8 +23059,8 @@ public} 1353 Points - {288.95062, 122.27161} - {288.95035, 140.995} + {288.95068678900776, 122.2716009999135} + {288.95044054705158, 140.99500000008933} Style @@ -22680,6 +23068,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -22694,7 +23084,7 @@ public} Bounds - {{254.621, 91}, {68.659798, 30.271601}} + {{254.62100000000001, 91}, {68.659797999999995, 30.271601}} Class ShapedGraphic FontInfo @@ -22754,7 +23144,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -22776,8 +23166,8 @@ public} 1348 Points - {175.49001, 157.21083} - {153.44049, 157.21086} + {175.49001000000172, 157.21081211921225} + {153.4404979999922, 157.21082052734704} Style @@ -22785,6 +23175,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -22799,7 +23191,7 @@ public} Bounds - {{94, 142.075}, {57.940498, 30.271601}} + {{94, 142.07499999999999}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -22850,7 +23242,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -22862,7 +23254,7 @@ public} Bounds - {{176.99001, 142.075}, {57.940498, 30.271601}} + {{176.99001000000001, 142.07499999999999}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -22913,7 +23305,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -22925,7 +23317,7 @@ public} Bounds - {{245.347, 278.42401}, {85.304703, 13.0647}} + {{245.34700000000001, 278.42401000000001}, {85.304703000000003, 13.0647}} Class ShapedGraphic FontInfo @@ -22962,7 +23354,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -22976,7 +23368,7 @@ public} Bounds - {{59.4263, 268}, {457.147, 203}} + {{59.426299999999998, 268}, {457.14699999999999, 203}} Class ShapedGraphic ID @@ -22999,7 +23391,7 @@ public} Bounds - {{250, 42}, {85.304703, 13.0647}} + {{250, 42}, {85.304703000000003, 13.0647}} Class ShapedGraphic FontInfo @@ -23036,7 +23428,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -23050,7 +23442,7 @@ public} Bounds - {{59.4263, 29.3783}, {457.147, 174.62199}} + {{59.426299999999998, 29.378299999999999}, {457.14699999999999, 174.62199000000001}} Class ShapedGraphic ID @@ -23101,6 +23493,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -23129,18 +23523,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -23148,6 +23537,8 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -23155,7 +23546,7 @@ public} ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -23170,8 +23561,8 @@ public} 1385 Points - {542, 157.21092} - {485.41049, 157.21086} + {542, 157.21091702350117} + {485.41049799996483, 157.21084422352058} Style @@ -23188,6 +23579,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -23204,7 +23597,7 @@ public} Bounds - {{542, 150.211}, {129, 14}} + {{542, 150.21100000000001}, {129, 14}} Class ShapedGraphic FitText @@ -23236,7 +23629,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -23260,8 +23653,8 @@ public} 1382 Points - {341.47043, 157.36508} - {319.42007, 157.47673} + {341.47041927984878, 157.36502968659707} + {319.42008910387335, 157.47664187867272} Style @@ -23269,6 +23662,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -23293,8 +23688,8 @@ public} 1381 Points - {424.47, 157.21083} - {402.41049, 157.21086} + {424.47000000000173, 157.21081211258436} + {402.41049799999229, 157.21082051973025} Style @@ -23302,6 +23697,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -23316,7 +23713,7 @@ public} Bounds - {{425.97, 142.075}, {57.940498, 30.271601}} + {{425.97000000000003, 142.07499999999999}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -23367,7 +23764,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -23379,7 +23776,7 @@ public} Bounds - {{342.97, 142.075}, {57.940498, 30.271601}} + {{342.97000000000003, 142.07499999999999}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -23430,7 +23827,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -23452,8 +23849,8 @@ public} 1378 Points - {424.47, 386.21085} - {402.41049, 386.21088} + {424.47000000000253, 386.21082406427922} + {402.41049799998956, 386.21083388439081} Style @@ -23461,6 +23858,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -23485,8 +23884,8 @@ public} 1377 Points - {341.47043, 386.36508} - {319.42007, 386.47672} + {341.47041924536063, 386.36503334565333} + {319.42008909881724, 386.47664094865542} Style @@ -23494,6 +23893,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -23508,7 +23909,7 @@ public} Bounds - {{425.97, 371.07501}, {57.940498, 30.271601}} + {{425.97000000000003, 371.07501000000002}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -23559,7 +23960,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -23571,7 +23972,7 @@ public} Bounds - {{342.97, 371.07501}, {57.940498, 30.271601}} + {{342.97000000000003, 371.07501000000002}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -23622,7 +24023,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -23644,8 +24045,8 @@ public} 1370 Points - {454.94028, 422.98001} - {454.94022, 402.84662} + {454.9403080862719, 422.98001000000215} + {454.940266394388, 402.84661099999926} Style @@ -23653,6 +24054,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -23667,7 +24070,7 @@ public} Bounds - {{412.28799, 423.98001}, {85.304703, 30.271601}} + {{412.28798999999998, 423.98000999999999}, {85.304703000000003, 30.271601}} Class ShapedGraphic FontInfo @@ -23727,7 +24130,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -23749,8 +24152,8 @@ public} 1366 Points - {258.48044, 386.47659} - {236.43008, 386.36502} + {258.48042912336837, 386.47660285566923} + {236.4300888478358, 386.36501343948464} Style @@ -23758,6 +24161,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -23772,7 +24177,7 @@ public} Bounds - {{259.98001, 371.495}, {57.940498, 30.271601}} + {{259.98000999999999, 371.495}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -23823,7 +24228,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -23845,8 +24250,8 @@ public} 1364 Points - {288.95105, 350.27164} - {288.95068, 369.995} + {288.95102261784825, 350.27160099979233} + {288.95062061276002, 369.99500000035437} Style @@ -23854,6 +24259,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -23868,7 +24275,7 @@ public} Bounds - {{246.299, 319}, {85.304703, 30.271601}} + {{246.29900000000001, 319}, {85.304703000000003, 30.271601}} Class ShapedGraphic FontInfo @@ -23928,7 +24335,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -23950,8 +24357,8 @@ public} 1362 Points - {175.49001, 386.21085} - {153.44049, 386.21088} + {175.49001000000246, 386.21082407202107} + {153.44049799998947, 386.21083389328771} Style @@ -23959,6 +24366,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -23973,7 +24382,7 @@ public} Bounds - {{94, 371.07501}, {57.940498, 30.271601}} + {{94, 371.07501000000002}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -24024,7 +24433,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -24036,7 +24445,7 @@ public} Bounds - {{176.99001, 371.07501}, {57.940498, 30.271601}} + {{176.99001000000001, 371.07501000000002}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -24087,7 +24496,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -24109,8 +24518,8 @@ public} 1355 Points - {258.48044, 157.47659} - {236.43008, 157.36501} + {258.4804291472326, 157.47659846735544} + {236.43008883458981, 157.36500587517023} Style @@ -24118,6 +24527,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -24132,7 +24543,7 @@ public} Bounds - {{259.98001, 142.495}, {57.940498, 30.271601}} + {{259.98000999999999, 142.495}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -24183,7 +24594,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -24205,8 +24616,8 @@ public} 1353 Points - {454.93997, 121.27161} - {454.94012, 140.575} + {454.93999920555109, 121.27160099997668} + {454.94013104541392, 140.5750000000377} Style @@ -24214,6 +24625,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -24228,7 +24641,7 @@ public} Bounds - {{420.60999, 90}, {68.659798, 30.271601}} + {{420.60998999999998, 90}, {68.659797999999995, 30.271601}} Class ShapedGraphic FontInfo @@ -24288,7 +24701,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -24310,8 +24723,8 @@ public} 1348 Points - {175.49001, 157.21083} - {153.44049, 157.21086} + {175.49001000000172, 157.21081211921225} + {153.4404979999922, 157.21082052734704} Style @@ -24319,6 +24732,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -24333,7 +24748,7 @@ public} Bounds - {{94, 142.075}, {57.940498, 30.271601}} + {{94, 142.07499999999999}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -24384,7 +24799,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -24396,7 +24811,7 @@ public} Bounds - {{176.99001, 142.075}, {57.940498, 30.271601}} + {{176.99001000000001, 142.07499999999999}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -24447,7 +24862,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -24459,7 +24874,7 @@ public} Bounds - {{245.347, 278.42401}, {85.304703, 13.0647}} + {{245.34700000000001, 278.42401000000001}, {85.304703000000003, 13.0647}} Class ShapedGraphic FontInfo @@ -24496,7 +24911,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -24510,7 +24925,7 @@ public} Bounds - {{59.4263, 268}, {457.147, 203}} + {{59.426299999999998, 268}, {457.14699999999999, 203}} Class ShapedGraphic ID @@ -24533,7 +24948,7 @@ public} Bounds - {{250, 42}, {85.304703, 13.0647}} + {{250, 42}, {85.304703000000003, 13.0647}} Class ShapedGraphic FontInfo @@ -24570,7 +24985,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -24584,7 +24999,7 @@ public} Bounds - {{59.4263, 29.3783}, {457.147, 174.62199}} + {{59.426299999999998, 29.378299999999999}, {457.14699999999999, 174.62199000000001}} Class ShapedGraphic ID @@ -24635,6 +25050,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -24663,18 +25080,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -24682,6 +25094,8 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -24689,7 +25103,7 @@ public} ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -24699,8 +25113,8 @@ public} 1389 Points - {339.97043, 386.36523} - {317.92099, 386.47699} + {339.97042036186906, 386.36523849282418} + {317.92099000000002, 386.47699} Style @@ -24708,6 +25122,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -24732,8 +25148,8 @@ public} 1388 Points - {422.97, 386.21085} - {400.91049, 386.21088} + {422.97000000000253, 386.21082406427922} + {400.91049799998956, 386.21083388439081} Style @@ -24741,6 +25157,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -24755,7 +25173,7 @@ public} Bounds - {{424.47, 371.07501}, {57.940498, 30.271601}} + {{424.47000000000003, 371.07501000000002}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -24806,7 +25224,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -24818,7 +25236,7 @@ public} Bounds - {{341.47, 371.07501}, {57.940498, 30.271601}} + {{341.47000000000003, 371.07501000000002}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -24869,7 +25287,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -24922,7 +25340,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -24950,6 +25368,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -24971,8 +25391,8 @@ public} 1382 Points - {341.47043, 157.36508} - {319.42007, 157.47673} + {341.47041927984878, 157.36502968659707} + {319.42008910387335, 157.47664187867272} Style @@ -24980,6 +25400,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -25004,8 +25426,8 @@ public} 1381 Points - {424.47, 157.21083} - {402.41049, 157.21086} + {424.47000000000173, 157.21081211258436} + {402.41049799999229, 157.21082051973025} Style @@ -25013,6 +25435,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -25027,7 +25451,7 @@ public} Bounds - {{425.97, 142.075}, {57.940498, 30.271601}} + {{425.97000000000003, 142.07499999999999}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -25078,7 +25502,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -25090,7 +25514,7 @@ public} Bounds - {{342.97, 142.075}, {57.940498, 30.271601}} + {{342.97000000000003, 142.07499999999999}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -25141,7 +25565,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -25163,8 +25587,8 @@ public} 1378 Points - {422.97, 441.62582} - {400.91049, 441.62585} + {422.97000000000173, 441.62580211258444} + {400.91049799999229, 441.62581051973029} Style @@ -25172,6 +25596,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -25196,8 +25622,8 @@ public} 1377 Points - {347.20511, 425.9451} - {312.18546, 402.31143} + {347.20507534854073, 425.94511021948779} + {312.18544641107349, 402.31147557797919} Style @@ -25205,6 +25631,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -25219,7 +25647,7 @@ public} Bounds - {{424.47, 426.48999}, {57.940498, 30.271601}} + {{424.47000000000003, 426.48998999999998}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -25270,7 +25698,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -25282,7 +25710,7 @@ public} Bounds - {{341.47, 426.48999}, {57.940498, 30.271601}} + {{341.47000000000003, 426.48998999999998}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -25333,7 +25761,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -25355,8 +25783,8 @@ public} 1370 Points - {454.50357, 480.90536} - {453.89062, 458.26102} + {454.50355678882238, 480.90536618870129} + {453.89057702344593, 458.26104168448074} Style @@ -25364,6 +25792,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -25378,7 +25808,7 @@ public} Bounds - {{412.28799, 481.905}, {85.304703, 30.271601}} + {{412.28798999999998, 481.90499999999997}, {85.304703000000003, 30.271601}} Class ShapedGraphic FontInfo @@ -25438,7 +25868,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -25460,8 +25890,8 @@ public} 1366 Points - {258.48044, 386.47659} - {236.43008, 386.36502} + {258.48042912336837, 386.47660285566923} + {236.4300888478358, 386.36501343948464} Style @@ -25469,6 +25899,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -25483,7 +25915,7 @@ public} Bounds - {{259.98001, 371.495}, {57.940498, 30.271601}} + {{259.98000999999999, 371.495}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -25534,7 +25966,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -25556,8 +25988,8 @@ public} 1364 Points - {453.44031, 346.93161} - {453.44025, 369.57501} + {453.44031260287255, 346.93160099999847} + {453.44027205146165, 369.57501000000144} Style @@ -25565,6 +25997,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -25579,7 +26013,7 @@ public} Bounds - {{410.78799, 315.66}, {85.304703, 30.271601}} + {{410.78798999999998, 315.66000000000003}, {85.304703000000003, 30.271601}} Class ShapedGraphic FontInfo @@ -25639,7 +26073,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -25661,8 +26095,8 @@ public} 1362 Points - {175.49001, 386.21085} - {153.44049, 386.21088} + {175.49001000000246, 386.21082407202107} + {153.44049799998947, 386.21083389328771} Style @@ -25670,6 +26104,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -25684,7 +26120,7 @@ public} Bounds - {{94, 371.07501}, {57.940498, 30.271601}} + {{94, 371.07501000000002}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -25735,7 +26171,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -25747,7 +26183,7 @@ public} Bounds - {{176.99001, 371.07501}, {57.940498, 30.271601}} + {{176.99001000000001, 371.07501000000002}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -25798,7 +26234,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -25820,8 +26256,8 @@ public} 1355 Points - {258.48044, 157.47659} - {236.43008, 157.36501} + {258.4804291472326, 157.47659846735544} + {236.43008883458981, 157.36500587517023} Style @@ -25829,6 +26265,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -25843,7 +26281,7 @@ public} Bounds - {{259.98001, 142.495}, {57.940498, 30.271601}} + {{259.98000999999999, 142.495}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -25894,7 +26332,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -25916,8 +26354,8 @@ public} 1353 Points - {454.93997, 121.27161} - {454.94012, 140.575} + {454.93999920555109, 121.27160099997668} + {454.94013104541392, 140.5750000000377} Style @@ -25925,6 +26363,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -25939,7 +26379,7 @@ public} Bounds - {{420.60999, 90}, {68.659798, 30.271601}} + {{420.60998999999998, 90}, {68.659797999999995, 30.271601}} Class ShapedGraphic FontInfo @@ -25999,7 +26439,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -26021,8 +26461,8 @@ public} 1348 Points - {175.49001, 157.21083} - {153.44049, 157.21086} + {175.49001000000172, 157.21081211921225} + {153.4404979999922, 157.21082052734704} Style @@ -26030,6 +26470,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -26044,7 +26486,7 @@ public} Bounds - {{94, 142.075}, {57.940498, 30.271601}} + {{94, 142.07499999999999}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -26095,7 +26537,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -26107,7 +26549,7 @@ public} Bounds - {{176.99001, 142.075}, {57.940498, 30.271601}} + {{176.99001000000001, 142.07499999999999}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -26158,7 +26600,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -26170,7 +26612,7 @@ public} Bounds - {{245.347, 278.42401}, {85.304703, 13.0647}} + {{245.34700000000001, 278.42401000000001}, {85.304703000000003, 13.0647}} Class ShapedGraphic FontInfo @@ -26207,7 +26649,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -26221,7 +26663,7 @@ public} Bounds - {{59.4263, 268}, {457.147, 256}} + {{59.426299999999998, 268}, {457.14699999999999, 256}} Class ShapedGraphic ID @@ -26244,7 +26686,7 @@ public} Bounds - {{250, 42}, {85.304703, 13.0647}} + {{250, 42}, {85.304703000000003, 13.0647}} Class ShapedGraphic FontInfo @@ -26281,7 +26723,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -26295,7 +26737,7 @@ public} Bounds - {{59.4263, 29.3783}, {457.147, 174.62199}} + {{59.426299999999998, 29.378299999999999}, {457.14699999999999, 174.62199000000001}} Class ShapedGraphic ID @@ -26346,6 +26788,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -26374,18 +26818,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -26393,6 +26832,8 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -26400,12 +26841,12 @@ public} ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList Bounds - {{191.5, 251.58701}, {346, 16}} + {{191.5, 251.58700999999999}, {346, 16}} Class ShapedGraphic FitText @@ -26446,7 +26887,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -26460,7 +26901,7 @@ public} Bounds - {{494.064, 209.173}, {50, 14}} + {{494.06400000000002, 209.173}, {50, 14}} Class ShapedGraphic FitText @@ -26501,7 +26942,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -26525,8 +26966,8 @@ public} 1406 Points - {529.4704, 155.36508} - {507.42007, 155.47673} + {529.47038928021141, 155.36502975326732} + {507.42008910367258, 155.4766418417438} Style @@ -26534,6 +26975,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -26548,7 +26991,7 @@ public} Bounds - {{530.96997, 140.075}, {57.940498, 30.271601}} + {{530.96996999999999, 140.07499999999999}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -26599,7 +27042,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -26618,7 +27061,7 @@ public} 1402 Points - {446.48001, 155.63039} + {446.48001000303049, 155.63038673702872} {418, 155.63} Style @@ -26627,6 +27070,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -26643,7 +27088,7 @@ public} Bounds - {{447.98001, 140.495}, {57.940498, 30.271601}} + {{447.98000999999999, 140.495}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -26694,7 +27139,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -26716,8 +27161,8 @@ public} 1400 Points - {559.94067, 119.27131} - {559.94037, 138.57501} + {559.94069513301338, 119.27130299990375} + {559.94042731484853, 138.57500000011757} Style @@ -26725,6 +27170,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -26739,7 +27186,7 @@ public} Bounds - {{525.61102, 87.999702}, {68.659798, 30.271601}} + {{525.61102000000005, 87.999701999999999}, {68.659797999999995, 30.271601}} Class ShapedGraphic FontInfo @@ -26799,7 +27246,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -26811,7 +27258,7 @@ public} Bounds - {{477.061, 41.999699}, {85.304703, 13.0647}} + {{477.06099999999998, 41.999699}, {85.304703000000003, 13.0647}} Class ShapedGraphic FontInfo @@ -26848,7 +27295,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -26862,7 +27309,7 @@ public} Bounds - {{378, 27.378}, {284, 174.62199}} + {{378, 27.378}, {284, 174.62199000000001}} Class ShapedGraphic ID @@ -26885,7 +27332,7 @@ public} Bounds - {{395, 48.377998}, {249.494, 182.62199}} + {{395, 48.377997999999998}, {249.494, 182.62199000000001}} Class ShapedGraphic ID @@ -26920,7 +27367,7 @@ public} Bounds - {{183.49001, 209.173}, {34, 14}} + {{183.49001000000001, 209.173}, {34, 14}} Class ShapedGraphic FitText @@ -26961,7 +27408,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -26980,7 +27427,7 @@ public} 1389 Points - {392.54443, 394.36523} + {392.54443036186905, 394.36523849282418} {370.495, 394.47699} Style @@ -26989,6 +27436,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -27013,8 +27462,8 @@ public} 1388 Points - {475.54401, 394.21085} - {453.4845, 394.21088} + {475.54401000000252, 394.21082406427922} + {453.48450799998955, 394.21083388439081} Style @@ -27022,6 +27471,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -27036,7 +27487,7 @@ public} Bounds - {{477.04401, 379.07501}, {57.940498, 30.271601}} + {{477.04401000000001, 379.07501000000002}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -27087,7 +27538,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -27099,7 +27550,7 @@ public} Bounds - {{394.04401, 379.07501}, {57.940498, 30.271601}} + {{394.04401000000001, 379.07501000000002}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -27150,7 +27601,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -27172,8 +27623,8 @@ public} 1382 Points - {179.32341, 155.36508} - {157.27269, 155.47673} + {179.32341927507443, 155.36502880880619} + {157.27268210684721, 155.47664242568845} Style @@ -27181,6 +27632,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -27205,8 +27658,8 @@ public} 1381 Points - {262.323, 155.21083} - {240.26349, 155.21086} + {262.32300000000168, 155.21081211258436} + {240.26349799999221, 155.21082051973025} Style @@ -27214,6 +27667,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -27228,7 +27683,7 @@ public} Bounds - {{263.823, 140.075}, {57.940498, 30.271601}} + {{263.82299999999998, 140.07499999999999}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -27279,7 +27734,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -27291,7 +27746,7 @@ public} Bounds - {{180.823, 140.075}, {57.940498, 30.271601}} + {{180.82300000000001, 140.07499999999999}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -27342,7 +27797,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -27364,8 +27819,8 @@ public} 1378 Points - {475.54401, 449.62582} - {453.4845, 449.62585} + {475.54401000000172, 449.62580211258444} + {453.48450799999227, 449.62581051973029} Style @@ -27373,6 +27828,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -27397,8 +27854,8 @@ public} 1377 Points - {399.77911, 433.94513} - {364.75949, 410.31149} + {399.77907793612201, 433.94511302213073} + {364.75942705436489, 410.31147533474876} Style @@ -27406,6 +27863,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -27420,7 +27879,7 @@ public} Bounds - {{477.04401, 434.48999}, {57.940498, 30.271601}} + {{477.04401000000001, 434.48998999999998}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -27471,7 +27930,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -27483,7 +27942,7 @@ public} Bounds - {{394.04401, 434.48999}, {57.940498, 30.271601}} + {{394.04401000000001, 434.48998999999998}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -27534,7 +27993,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -27556,8 +28015,8 @@ public} 1370 Points - {506.01431, 488.905} - {506.01425, 466.26157} + {506.01432186960625, 488.90500000000162} + {506.014280289201, 466.26159099999882} Style @@ -27565,6 +28024,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -27579,7 +28040,7 @@ public} Bounds - {{463.362, 489.905}, {85.304703, 30.271601}} + {{463.36200000000002, 489.90499999999997}, {85.304703000000003, 30.271601}} Class ShapedGraphic FontInfo @@ -27639,7 +28100,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -27661,8 +28122,8 @@ public} 1366 Points - {311.05441, 394.47659} - {289.00406, 394.36502} + {311.05440912343539, 394.4766028433437} + {289.00407884767611, 394.36501346884461} Style @@ -27670,6 +28131,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -27684,7 +28147,7 @@ public} Bounds - {{312.55399, 379.495}, {57.940498, 30.271601}} + {{312.55399, 379.495}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -27735,7 +28198,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -27757,8 +28220,8 @@ public} 1364 Points - {506.01431, 354.93161} - {506.01425, 377.57501} + {506.01432186960227, 354.93160099999835} + {506.01428028919133, 377.57501000000127} Style @@ -27766,6 +28229,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -27780,7 +28245,7 @@ public} Bounds - {{463.362, 323.66}, {85.304703, 30.271601}} + {{463.36200000000002, 323.66000000000003}, {85.304703000000003, 30.271601}} Class ShapedGraphic FontInfo @@ -27840,7 +28305,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -27862,8 +28327,8 @@ public} 1362 Points - {228.064, 394.21085} - {206.0145, 394.21088} + {228.06400000000244, 394.21082407203659} + {206.01450799998946, 394.21083389330556} Style @@ -27871,6 +28336,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -27885,7 +28352,7 @@ public} Bounds - {{146.57401, 379.07501}, {57.940498, 30.271601}} + {{146.57400999999999, 379.07501000000002}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -27936,7 +28403,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -27948,7 +28415,7 @@ public} Bounds - {{229.564, 379.07501}, {57.940498, 30.271601}} + {{229.56399999999999, 379.07501000000002}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -27999,7 +28466,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -28018,8 +28485,8 @@ public} 1391 Points - {96.332611, 155.63039} - {67.8526, 155.63} + {96.332603003030499, 155.63038673697957} + {67.852599999999995, 155.63} Style @@ -28027,6 +28494,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -28043,7 +28512,7 @@ public} Bounds - {{97.832603, 140.495}, {57.940498, 30.271601}} + {{97.832603000000006, 140.495}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -28094,7 +28563,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -28116,8 +28585,8 @@ public} 1353 Points - {292.793, 119.27131} - {292.79312, 138.57501} + {292.79301239469072, 119.27130299997945} + {292.79313608857132, 138.57500000003455} Style @@ -28125,6 +28594,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -28139,7 +28610,7 @@ public} Bounds - {{258.46301, 87.999702}, {68.659798, 30.271601}} + {{258.46301, 87.999701999999999}, {68.659797999999995, 30.271601}} Class ShapedGraphic FontInfo @@ -28199,7 +28670,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -28211,7 +28682,7 @@ public} Bounds - {{254.694, 296}, {85.304703, 12.6054}} + {{254.69399999999999, 296}, {85.304703000000003, 12.605399999999999}} Class ShapedGraphic FontInfo @@ -28248,7 +28719,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -28262,7 +28733,7 @@ public} Bounds - {{112, 285}, {513.84399, 247}} + {{112, 285}, {513.84398999999996, 247}} Class ShapedGraphic ID @@ -28285,7 +28756,7 @@ public} Bounds - {{158.487, 41.999699}, {85.304703, 13.0647}} + {{158.48699999999999, 41.999699}, {85.304703000000003, 13.0647}} Class ShapedGraphic FontInfo @@ -28322,7 +28793,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -28336,7 +28807,7 @@ public} Bounds - {{59.4263, 27.378}, {284, 174.62199}} + {{59.426299999999998, 27.378}, {284, 174.62199000000001}} Class ShapedGraphic ID @@ -28359,7 +28830,7 @@ public} Bounds - {{76.4263, 48.377998}, {249.494, 182.62199}} + {{76.426299999999998, 48.377997999999998}, {249.494, 182.62199000000001}} Class ShapedGraphic ID @@ -28422,6 +28893,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -28450,18 +28923,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -28469,6 +28937,8 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -28476,7 +28946,7 @@ public} ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -28491,8 +28961,8 @@ public} 1410 Points - {423.01443, 356.27164} - {423.01428, 377.57501} + {423.01443052354216, 356.27160099998798} + {423.01432559416554, 377.57501000001201} Style @@ -28500,6 +28970,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -28514,7 +28986,7 @@ public} Bounds - {{374.60501, 325}, {96.819, 30.271601}} + {{374.60500999999999, 325}, {96.819000000000003, 30.271601}} Class ShapedGraphic FontInfo @@ -28574,7 +29046,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -28600,6 +29072,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -28611,7 +29085,7 @@ public} Bounds - {{367.51401, 250.5}, {108, 16}} + {{367.51400999999998, 250.5}, {108, 16}} Class ShapedGraphic FitText @@ -28652,7 +29126,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -28666,7 +29140,7 @@ public} Bounds - {{494.064, 209.173}, {50, 14}} + {{494.06400000000002, 209.173}, {50, 14}} Class ShapedGraphic FitText @@ -28707,7 +29181,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -28731,8 +29205,8 @@ public} 1406 Points - {529.4704, 155.36508} - {507.42007, 155.47673} + {529.47038928021141, 155.36502975326732} + {507.42008910367258, 155.4766418417438} Style @@ -28740,6 +29214,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -28754,7 +29230,7 @@ public} Bounds - {{530.96997, 140.075}, {57.940498, 30.271601}} + {{530.96996999999999, 140.07499999999999}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -28805,7 +29281,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -28824,7 +29300,7 @@ public} 1402 Points - {446.48001, 155.63039} + {446.48001000303049, 155.63038673702872} {418, 155.63} Style @@ -28833,6 +29309,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -28849,7 +29327,7 @@ public} Bounds - {{447.98001, 140.495}, {57.940498, 30.271601}} + {{447.98000999999999, 140.495}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -28900,7 +29378,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -28922,8 +29400,8 @@ public} 1400 Points - {559.94067, 119.27131} - {559.94037, 138.57501} + {559.94069513301338, 119.27130299990375} + {559.94042731484853, 138.57500000011757} Style @@ -28931,6 +29409,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -28945,7 +29425,7 @@ public} Bounds - {{525.61102, 87.999702}, {68.659798, 30.271601}} + {{525.61102000000005, 87.999701999999999}, {68.659797999999995, 30.271601}} Class ShapedGraphic FontInfo @@ -29005,7 +29485,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -29017,7 +29497,7 @@ public} Bounds - {{477.061, 41.999699}, {85.304703, 13.0647}} + {{477.06099999999998, 41.999699}, {85.304703000000003, 13.0647}} Class ShapedGraphic FontInfo @@ -29054,7 +29534,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -29068,7 +29548,7 @@ public} Bounds - {{378, 27.378}, {284, 174.62199}} + {{378, 27.378}, {284, 174.62199000000001}} Class ShapedGraphic ID @@ -29091,7 +29571,7 @@ public} Bounds - {{395, 48.377998}, {249.494, 182.62199}} + {{395, 48.377997999999998}, {249.494, 182.62199000000001}} Class ShapedGraphic ID @@ -29126,7 +29606,7 @@ public} Bounds - {{183.49001, 209.173}, {34, 14}} + {{183.49001000000001, 209.173}, {34, 14}} Class ShapedGraphic FitText @@ -29167,7 +29647,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -29186,7 +29666,7 @@ public} 1389 Points - {392.54443, 394.36523} + {392.54443036186905, 394.36523849282418} {370.495, 394.47699} Style @@ -29195,6 +29675,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -29219,8 +29701,8 @@ public} 1388 Points - {490.71631, 394.50043} - {453.48422, 394.34113} + {490.71629950719239, 394.50044376722218} + {453.48420853893299, 394.34115719753959} Style @@ -29228,6 +29710,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -29242,7 +29726,7 @@ public} Bounds - {{492.216, 379.495}, {57.940498, 30.271601}} + {{492.21600000000001, 379.495}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -29293,7 +29777,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -29305,7 +29789,7 @@ public} Bounds - {{394.04401, 379.07501}, {57.940498, 30.271601}} + {{394.04401000000001, 379.07501000000002}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -29356,7 +29840,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -29378,8 +29862,8 @@ public} 1382 Points - {179.32341, 155.36508} - {157.27269, 155.47673} + {179.32341927507443, 155.36502880880619} + {157.27268210684721, 155.47664242568845} Style @@ -29387,6 +29871,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -29411,8 +29897,8 @@ public} 1381 Points - {262.323, 155.21083} - {240.26349, 155.21086} + {262.32300000000168, 155.21081211258436} + {240.26349799999221, 155.21082051973025} Style @@ -29420,6 +29906,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -29434,7 +29922,7 @@ public} Bounds - {{263.823, 140.075}, {57.940498, 30.271601}} + {{263.82299999999998, 140.07499999999999}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -29485,7 +29973,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -29497,7 +29985,7 @@ public} Bounds - {{180.823, 140.075}, {57.940498, 30.271601}} + {{180.82300000000001, 140.07499999999999}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -29548,7 +30036,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -29570,8 +30058,8 @@ public} 1378 Points - {490.71603, 449.62579} - {453.4845, 449.62582} + {490.7160000000024, 449.62580377694417} + {453.48450799999625, 449.62580377694417} Style @@ -29579,6 +30067,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -29603,8 +30093,8 @@ public} 1377 Points - {399.77911, 433.94513} - {364.75949, 410.31149} + {399.77907793612201, 433.94511302213073} + {364.75942705436489, 410.31147533474876} Style @@ -29612,6 +30102,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -29626,7 +30118,7 @@ public} Bounds - {{492.216, 434.48999}, {57.940498, 30.271601}} + {{492.21600000000001, 434.48998999999998}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -29677,7 +30169,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -29689,7 +30181,7 @@ public} Bounds - {{394.04401, 434.48999}, {57.940498, 30.271601}} + {{394.04401000000001, 434.48998999999998}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -29740,7 +30232,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -29762,8 +30254,8 @@ public} 1370 Points - {521.18634, 488.90497} - {521.18628, 466.2616} + {521.18632167074122, 488.90500000000162} + {521.18627981126804, 466.26159099999751} Style @@ -29771,6 +30263,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -29785,7 +30279,7 @@ public} Bounds - {{478.534, 489.905}, {85.304703, 30.271601}} + {{478.53399999999999, 489.90499999999997}, {85.304703000000003, 30.271601}} Class ShapedGraphic FontInfo @@ -29845,7 +30339,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -29867,8 +30361,8 @@ public} 1366 Points - {311.05441, 394.47659} - {289.00406, 394.36502} + {311.05440912343539, 394.4766028433437} + {289.00407884767611, 394.36501346884461} Style @@ -29876,6 +30370,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -29890,7 +30386,7 @@ public} Bounds - {{312.55399, 379.495}, {57.940498, 30.271601}} + {{312.55399, 379.495}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -29941,7 +30437,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -29963,8 +30459,8 @@ public} 1364 Points - {521.18634, 356.27161} - {521.18628, 377.99496} + {521.18632112718569, 356.27160099999827} + {521.18628023669703, 377.99500000000268} Style @@ -29972,6 +30468,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -29986,7 +30484,7 @@ public} Bounds - {{478.534, 325}, {85.304703, 30.271601}} + {{478.53399999999999, 325}, {85.304703000000003, 30.271601}} Class ShapedGraphic FontInfo @@ -30046,7 +30544,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -30068,8 +30566,8 @@ public} 1362 Points - {228.064, 394.21085} - {206.0145, 394.21088} + {228.06400000000244, 394.21082407203659} + {206.01450799998946, 394.21083389330556} Style @@ -30077,6 +30575,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -30091,7 +30591,7 @@ public} Bounds - {{146.57401, 379.07501}, {57.940498, 30.271601}} + {{146.57400999999999, 379.07501000000002}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -30142,7 +30642,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -30154,7 +30654,7 @@ public} Bounds - {{229.564, 379.07501}, {57.940498, 30.271601}} + {{229.56399999999999, 379.07501000000002}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -30205,7 +30705,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -30224,8 +30724,8 @@ public} 1391 Points - {96.332611, 155.63039} - {67.8526, 155.63} + {96.332603003030499, 155.63038673697957} + {67.852599999999995, 155.63} Style @@ -30233,6 +30733,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -30249,7 +30751,7 @@ public} Bounds - {{97.832603, 140.495}, {57.940498, 30.271601}} + {{97.832603000000006, 140.495}, {57.940497999999998, 30.271601}} Class ShapedGraphic FontInfo @@ -30300,7 +30802,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -30322,8 +30824,8 @@ public} 1353 Points - {292.793, 119.27131} - {292.79312, 138.57501} + {292.79301239469072, 119.27130299997945} + {292.79313608857132, 138.57500000003455} Style @@ -30331,6 +30833,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -30345,7 +30849,7 @@ public} Bounds - {{258.46301, 87.999702}, {68.659798, 30.271601}} + {{258.46301, 87.999701999999999}, {68.659797999999995, 30.271601}} Class ShapedGraphic FontInfo @@ -30405,7 +30909,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -30417,7 +30921,7 @@ public} Bounds - {{254.694, 296}, {85.304703, 12.6054}} + {{254.69399999999999, 296}, {85.304703000000003, 12.605399999999999}} Class ShapedGraphic FontInfo @@ -30454,7 +30958,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -30468,7 +30972,7 @@ public} Bounds - {{112, 285}, {513.84399, 247}} + {{112, 285}, {513.84398999999996, 247}} Class ShapedGraphic ID @@ -30491,7 +30995,7 @@ public} Bounds - {{158.487, 41.999699}, {85.304703, 13.0647}} + {{158.48699999999999, 41.999699}, {85.304703000000003, 13.0647}} Class ShapedGraphic FontInfo @@ -30528,7 +31032,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -30542,7 +31046,7 @@ public} Bounds - {{59.4263, 27.378}, {284, 174.62199}} + {{59.426299999999998, 27.378}, {284, 174.62199000000001}} Class ShapedGraphic ID @@ -30565,7 +31069,7 @@ public} Bounds - {{76.4263, 48.377998}, {249.494, 182.62199}} + {{76.426299999999998, 48.377997999999998}, {249.494, 182.62199000000001}} Class ShapedGraphic ID @@ -30628,6 +31132,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -30656,18 +31162,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -30675,16 +31176,18 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} CanvasSize - {756, 553} + {756, 553.00002098083496} ColumnAlign 1 ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -30699,8 +31202,8 @@ public} 1428 Points - {166.57919, 287.51587} - {132.37741, 264.47519} + {166.57918504317468, 287.51586316959134} + {132.37740362417648, 264.47515308851865} Style @@ -30708,6 +31211,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -30722,7 +31227,7 @@ public} Bounds - {{85.817101, 231.33}, {48.157501, 36}} + {{85.817100999999994, 231.33000000000001}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -30773,7 +31278,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -30796,7 +31301,7 @@ public} Points {163.98199, 106.607} - {135.47461, 106.607} + {135.474602, 106.607} Style @@ -30813,6 +31318,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -30829,7 +31336,7 @@ public} Bounds - {{85.817101, 88.607002}, {48.157501, 36}} + {{85.817100999999994, 88.607001999999994}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -30880,7 +31387,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -30892,7 +31399,7 @@ public} Bounds - {{130, 47}, {36.333599, 2.5095699}} + {{130, 47}, {36.333599, 2.5095698999999998}} Class ShapedGraphic FontInfo @@ -30929,7 +31436,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -30943,7 +31450,7 @@ public} Bounds - {{164.98199, 93.107002}, {70.932297, 27}} + {{164.98199, 93.107001999999994}, {70.932297000000005, 27}} Class ShapedGraphic FontInfo @@ -31003,7 +31510,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -31015,7 +31522,7 @@ public} Bounds - {{71, 56.959202}, {382, 104.041}} + {{71, 56.959201999999998}, {382, 104.041}} Class ShapedGraphic FontInfo @@ -31090,8 +31597,8 @@ public} 1408 Points - {322.31198, 302.66101} - {293.8045, 302.66101} + {322.31200999999999, 302.66100999999998} + {293.80450100000002, 302.66100999999998} Style @@ -31108,6 +31615,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -31134,8 +31643,8 @@ public} 1407 Points - {163.98201, 249.33} - {135.47461, 249.33} + {163.98199, 249.33000000000001} + {135.47460199999998, 249.33000000000001} Style @@ -31152,6 +31661,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -31178,8 +31689,8 @@ public} 1371 Points - {242.64702, 302.66101} - {214.6395, 302.66101} + {242.64700000000002, 302.66100999999998} + {214.63949099999999, 302.66100999999998} Style @@ -31187,6 +31698,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -31199,7 +31712,7 @@ public} Bounds - {{244.147, 284.66101}, {48.157501, 36}} + {{244.14699999999999, 284.66100999999998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -31250,7 +31763,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -31262,7 +31775,7 @@ public} Bounds - {{164.98199, 284.66101}, {48.157501, 36}} + {{164.98199, 284.66100999999998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -31313,7 +31826,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -31325,7 +31838,7 @@ public} Bounds - {{323.31201, 289.16101}, {81.652298, 27}} + {{323.31200999999999, 289.16100999999998}, {81.652298000000002, 27}} Class ShapedGraphic FontInfo @@ -31385,7 +31898,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -31397,7 +31910,7 @@ public} Bounds - {{164.98199, 235.83}, {101, 27}} + {{164.98199, 235.83000000000001}, {101, 27}} Class ShapedGraphic FontInfo @@ -31457,7 +31970,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -31469,7 +31982,7 @@ public} Bounds - {{93.974602, 191}, {37, 7.7526598}} + {{93.974602000000004, 191}, {37, 7.7526598}} Class ShapedGraphic FontInfo @@ -31506,7 +32019,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -31520,7 +32033,7 @@ public} Bounds - {{71, 203.439}, {382, 137.561}} + {{71, 203.43899999999999}, {382, 137.56100000000001}} Class ShapedGraphic FontInfo @@ -31613,6 +32126,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -31643,18 +32158,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {665, 555}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -31662,16 +32172,18 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} CanvasSize - {756, 553} + {665, 555} ColumnAlign 1 ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -31686,8 +32198,8 @@ public} 1431 Points - {324.90918, 347.51587} - {290.70734, 324.47516} + {324.90919758669287, 347.51587717153564} + {290.7073118522589, 324.47512575983751} Style @@ -31695,6 +32207,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -31719,8 +32233,8 @@ public} 1430 Points - {321.81201, 362.66101} - {293.8045, 362.66101} + {321.81200999999999, 362.66100999999998} + {293.80450100000002, 362.66100999999998} Style @@ -31728,6 +32242,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -31742,7 +32258,7 @@ public} Bounds - {{323.31201, 344.66101}, {48.157501, 36}} + {{323.31200999999999, 344.66100999999998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -31793,7 +32309,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -31815,8 +32331,8 @@ public} 1428 Points - {166.57921, 347.51587} - {132.3774, 324.47516} + {166.57918654994572, 347.51586034014787} + {132.37740350395796, 324.47514331426697} Style @@ -31824,6 +32340,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -31848,8 +32366,8 @@ public} 1427 Points - {246.70576, 292.6351} - {210.58073, 264.60986} + {246.70574847963516, 292.63510225174554} + {210.5807432020946, 264.60987681529281} Style @@ -31857,6 +32375,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -31881,8 +32401,8 @@ public} 1426 Points - {167.54079, 264.60986} - {131.41582, 292.6351} + {167.54074917449543, 264.60989440816076} + {131.41584254555863, 292.6350852087287} Style @@ -31890,6 +32410,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -31914,8 +32436,8 @@ public} 1425 Points - {242.64702, 309.32999} - {214.6395, 309.32999} + {242.64700000000002, 309.32999000000001} + {214.63949099999999, 309.32999000000001} Style @@ -31923,6 +32445,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -31935,7 +32459,7 @@ public} Bounds - {{244.147, 291.32999}, {48.157501, 36}} + {{244.14699999999999, 291.32999000000001}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -31986,7 +32510,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -32008,8 +32532,8 @@ public} 1423 Points - {163.48199, 309.32999} - {135.47461, 309.32999} + {163.48199000000002, 309.32999000000001} + {135.47460199999998, 309.32999000000001} Style @@ -32017,6 +32541,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -32029,7 +32555,7 @@ public} Bounds - {{164.98199, 291.32999}, {48.157501, 36}} + {{164.98199, 291.32999000000001}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -32080,7 +32606,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -32092,7 +32618,7 @@ public} Bounds - {{164.98199, 229.91499}, {48.157501, 36}} + {{164.98199, 229.91498999999999}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -32143,7 +32669,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -32155,7 +32681,7 @@ public} Bounds - {{85.817101, 291.32999}, {48.157501, 36}} + {{85.817100999999994, 291.32999000000001}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -32206,7 +32732,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -32228,8 +32754,8 @@ public} 1419 Points - {246.04059, 90.931229} - {211.24593, 66.345741} + {246.04058313892955, 90.931238758837239} + {211.2459108197566, 66.345756195099781} Style @@ -32237,6 +32763,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -32261,8 +32789,8 @@ public} 1409 Points - {166.87558, 66.345772} - {132.08101, 90.931213} + {166.87558110559328, 66.345776977951488} + {132.08101001596901, 90.931221523870917} Style @@ -32270,6 +32798,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -32294,8 +32824,8 @@ public} 1383 Points - {242.64702, 106.607} - {214.6395, 106.607} + {242.64700000000011, 106.607} + {214.63949100000002, 106.607} Style @@ -32303,6 +32833,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -32315,7 +32847,7 @@ public} Bounds - {{244.147, 88.607002}, {48.157501, 36}} + {{244.14699999999999, 88.607001999999994}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -32366,7 +32898,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -32388,8 +32920,8 @@ public} 1381 Points - {163.48199, 106.607} - {135.47461, 106.607} + {163.48199000000011, 106.607} + {135.474602, 106.607} Style @@ -32397,6 +32929,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -32409,7 +32943,7 @@ public} Bounds - {{164.98199, 88.607002}, {48.157501, 36}} + {{164.98199, 88.607001999999994}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -32460,7 +32994,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -32472,7 +33006,7 @@ public} Bounds - {{164.98199, 32.669998}, {48.157501, 36}} + {{164.98199, 32.669998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -32523,7 +33057,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -32545,8 +33079,8 @@ public} 1405 Points - {322.31198, 106.607} - {293.8045, 106.607} + {322.31200999999999, 106.607} + {293.80450100000002, 106.607} Style @@ -32563,6 +33097,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -32579,7 +33115,7 @@ public} Bounds - {{85.817101, 88.607002}, {48.157501, 36}} + {{85.817100999999994, 88.607001999999994}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -32630,7 +33166,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -32679,7 +33215,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -32693,7 +33229,7 @@ public} Bounds - {{323.31201, 93.107002}, {70.932297, 27}} + {{323.31200999999999, 93.107001999999994}, {70.932297000000005, 27}} Class ShapedGraphic FontInfo @@ -32753,7 +33289,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -32840,8 +33376,8 @@ public} 1408 Points - {394, 362.66101} - {372.96948, 362.66101} + {394, 362.66100999999998} + {372.96951100000001, 362.66100999999998} Style @@ -32858,6 +33394,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -32884,8 +33422,8 @@ public} 1407 Points - {322.31198, 309.32999} - {293.8045, 309.32999} + {322.31200999999999, 309.32999000000001} + {293.80450100000002, 309.32999000000001} Style @@ -32902,6 +33440,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -32928,8 +33468,8 @@ public} 1371 Points - {242.64702, 362.66101} - {214.6395, 362.66101} + {242.64700000000002, 362.66100999999998} + {214.63949099999999, 362.66100999999998} Style @@ -32937,6 +33477,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -32949,7 +33491,7 @@ public} Bounds - {{244.147, 344.66101}, {48.157501, 36}} + {{244.14699999999999, 344.66100999999998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -33000,7 +33542,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -33012,7 +33554,7 @@ public} Bounds - {{164.98199, 344.66101}, {48.157501, 36}} + {{164.98199, 344.66100999999998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -33063,7 +33605,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -33075,7 +33617,7 @@ public} Bounds - {{395, 349.16101}, {81.652298, 27}} + {{395, 349.16100999999998}, {81.652298000000002, 27}} Class ShapedGraphic FontInfo @@ -33135,7 +33677,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -33147,7 +33689,7 @@ public} Bounds - {{323.31201, 295.82999}, {101, 27}} + {{323.31200999999999, 295.82999000000001}, {101, 27}} Class ShapedGraphic FontInfo @@ -33207,7 +33749,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -33219,7 +33761,7 @@ public} Bounds - {{93.974602, 195}, {37, 10.5953}} + {{93.974602000000004, 195}, {37, 10.5953}} Class ShapedGraphic FontInfo @@ -33256,7 +33798,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -33363,6 +33905,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -33383,7 +33927,7 @@ public} UniqueID 42 VPages - 1 + 2 ActiveLayerIndex @@ -33393,18 +33937,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -33412,16 +33951,18 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} CanvasSize - {756, 553} + {756, 553.00002098083496} ColumnAlign 1 ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -33436,8 +33977,8 @@ public} 1437 Points - {242.64702, 247.91499} - {214.6395, 247.91499} + {242.64700000000002, 247.91498999999999} + {214.63949099999999, 247.91498999999999} Style @@ -33445,6 +33986,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -33459,7 +34002,7 @@ public} Bounds - {{244.147, 229.91499}, {48.157501, 36}} + {{244.14699999999999, 229.91498999999999}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -33510,7 +34053,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -33532,8 +34075,8 @@ public} 1435 Points - {166.87558, 78.345757} - {132.08098, 102.93121} + {166.87558031634092, 78.345775631879363} + {132.08100881803131, 102.931217480786} Style @@ -33541,6 +34084,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -33555,7 +34100,7 @@ public} Bounds - {{164.98199, 44.669998}, {48.157501, 36}} + {{164.98199, 44.669998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -33606,7 +34151,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -33628,8 +34173,8 @@ public} 1433 Points - {246.49998, 62.669998} - {214.6395, 62.669998} + {246.50000000000003, 62.669998} + {214.63949099999999, 62.669998} Style @@ -33637,6 +34182,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -33651,7 +34198,7 @@ public} Bounds - {{248, 44.669998}, {48.157501, 36}} + {{248, 44.669998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -33702,7 +34249,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -33724,8 +34271,8 @@ public} 1431 Points - {324.90918, 347.51587} - {290.70734, 324.47516} + {324.90919758669287, 347.51587717153564} + {290.7073118522589, 324.47512575983751} Style @@ -33733,6 +34280,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -33757,8 +34306,8 @@ public} 1430 Points - {321.81201, 362.66101} - {293.8045, 362.66101} + {321.81200999999999, 362.66100999999998} + {293.80450100000002, 362.66100999999998} Style @@ -33766,6 +34315,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -33780,7 +34331,7 @@ public} Bounds - {{323.31201, 344.66101}, {48.157501, 36}} + {{323.31200999999999, 344.66100999999998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -33831,7 +34382,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -33853,8 +34404,8 @@ public} 1428 Points - {166.57921, 347.51587} - {132.3774, 324.47516} + {166.57918654994572, 347.51586034014787} + {132.37740350395796, 324.47514331426697} Style @@ -33862,6 +34413,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -33886,8 +34439,8 @@ public} 1427 Points - {246.70576, 292.6351} - {210.58073, 264.60986} + {246.70574847963516, 292.63510225174554} + {210.5807432020946, 264.60987681529281} Style @@ -33895,6 +34448,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -33919,8 +34474,8 @@ public} 1426 Points - {167.54079, 264.60986} - {131.41582, 292.6351} + {167.54074917449543, 264.60989440816076} + {131.41584254555863, 292.6350852087287} Style @@ -33928,6 +34483,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -33952,8 +34509,8 @@ public} 1425 Points - {242.64702, 309.32999} - {214.6395, 309.32999} + {242.64700000000002, 309.32999000000001} + {214.63949099999999, 309.32999000000001} Style @@ -33961,6 +34518,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -33973,7 +34532,7 @@ public} Bounds - {{244.147, 291.32999}, {48.157501, 36}} + {{244.14699999999999, 291.32999000000001}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -34024,7 +34583,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -34046,8 +34605,8 @@ public} 1423 Points - {163.48199, 309.32999} - {135.47461, 309.32999} + {163.48199000000002, 309.32999000000001} + {135.47460199999998, 309.32999000000001} Style @@ -34055,6 +34614,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -34067,7 +34628,7 @@ public} Bounds - {{164.98199, 291.32999}, {48.157501, 36}} + {{164.98199, 291.32999000000001}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -34118,7 +34679,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -34130,7 +34691,7 @@ public} Bounds - {{164.98199, 229.91499}, {48.157501, 36}} + {{164.98199, 229.91498999999999}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -34181,7 +34742,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -34193,7 +34754,7 @@ public} Bounds - {{85.817101, 291.32999}, {48.157501, 36}} + {{85.817100999999994, 291.32999000000001}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -34244,7 +34805,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -34266,8 +34827,8 @@ public} 1419 Points - {249.59827, 103.45981} - {211.5412, 77.817207} + {249.59828463291979, 103.45980747906853} + {211.54120490241885, 77.817193270326314} Style @@ -34284,6 +34845,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -34308,8 +34871,8 @@ public} 1409 Points - {166.87558, 78.345757} - {132.08098, 102.93121} + {166.87558031634092, 78.345775631879363} + {132.08100881803131, 102.931217480786} Style @@ -34326,6 +34889,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -34350,8 +34915,8 @@ public} 1383 Points - {246.49998, 118.607} - {214.6395, 118.607} + {246.50000000000003, 118.607} + {214.63949099999999, 118.607} Style @@ -34368,6 +34933,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -34380,7 +34947,7 @@ public} Bounds - {{248, 100.607}, {48.157501, 36}} + {{248, 100.607}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -34440,7 +35007,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -34462,8 +35029,8 @@ public} 1381 Points - {163.48199, 118.607} - {135.47461, 118.607} + {163.48199000000002, 118.607} + {135.47460199999998, 118.607} Style @@ -34480,6 +35047,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -34492,7 +35061,7 @@ public} Bounds - {{164.98199, 100.607}, {48.157501, 36}} + {{164.98199, 100.607}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -34552,7 +35121,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -34564,7 +35133,7 @@ public} Bounds - {{164.98199, 44.669998}, {48.157501, 36}} + {{164.98199, 44.669998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -34624,7 +35193,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -34647,7 +35216,7 @@ public} Points {330.01801, 62.669998} - {297.65747, 62.669998} + {297.65750100000002, 62.669998} Style @@ -34664,6 +35233,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -34680,7 +35251,7 @@ public} Bounds - {{85.817101, 100.607}, {48.157501, 36}} + {{85.817100999999994, 100.607}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -34731,7 +35302,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -34743,7 +35314,7 @@ public} Bounds - {{130, 20}, {36.333599, 3.3681099}} + {{130, 20}, {36.333599, 3.3681098999999999}} Class ShapedGraphic FontInfo @@ -34780,7 +35351,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -34794,7 +35365,7 @@ public} Bounds - {{331.01801, 49.169998}, {70.932297, 27}} + {{331.01801, 49.169998}, {70.932297000000005, 27}} Class ShapedGraphic FontInfo @@ -34854,7 +35425,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -34866,7 +35437,7 @@ public} Bounds - {{71, 33.366299}, {516, 139.633}} + {{71, 33.366298999999998}, {516, 139.63300000000001}} Class ShapedGraphic FontInfo @@ -34941,8 +35512,8 @@ public} 1408 Points - {394, 362.66101} - {372.96948, 362.66101} + {394, 362.66100999999998} + {372.96951100000001, 362.66100999999998} Style @@ -34959,6 +35530,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -34985,8 +35558,8 @@ public} 1407 Points - {322.31198, 247.91499} - {293.8045, 247.91499} + {322.31200999999999, 247.91498999999999} + {293.80450100000002, 247.91498999999999} Style @@ -35003,6 +35576,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -35029,8 +35604,8 @@ public} 1371 Points - {242.64702, 362.66101} - {214.6395, 362.66101} + {242.64700000000002, 362.66100999999998} + {214.63949099999999, 362.66100999999998} Style @@ -35038,6 +35613,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -35050,7 +35627,7 @@ public} Bounds - {{244.147, 344.66101}, {48.157501, 36}} + {{244.14699999999999, 344.66100999999998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -35101,7 +35678,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -35113,7 +35690,7 @@ public} Bounds - {{164.98199, 344.66101}, {48.157501, 36}} + {{164.98199, 344.66100999999998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -35164,7 +35741,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -35176,7 +35753,7 @@ public} Bounds - {{395, 349.16101}, {81.652298, 27}} + {{395, 349.16100999999998}, {81.652298000000002, 27}} Class ShapedGraphic FontInfo @@ -35236,7 +35813,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -35248,7 +35825,7 @@ public} Bounds - {{323.31201, 234.41499}, {101, 27}} + {{323.31200999999999, 234.41498999999999}, {101, 27}} Class ShapedGraphic FontInfo @@ -35308,7 +35885,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -35320,7 +35897,7 @@ public} Bounds - {{93.974602, 195}, {37, 10.5953}} + {{93.974602000000004, 195}, {37, 10.5953}} Class ShapedGraphic FontInfo @@ -35357,7 +35934,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -35464,6 +36041,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -35494,18 +36073,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {760, 542}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -35513,16 +36087,18 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} CanvasSize - {760, 542} + {756, 553.00002098083496} ColumnAlign 1 ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -35537,8 +36113,8 @@ public} 1440 Points - {404.53937, 346.70514} - {290.24213, 263.87088} + {404.53936043573191, 346.7051448451669} + {290.24213023849126, 263.87085568071353} Style @@ -35546,6 +36122,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -35570,8 +36148,8 @@ public} 1439 Points - {400.97699, 362.66101} - {372.96948, 362.66101} + {400.97699, 362.66100999999998} + {372.96951100000001, 362.66100999999998} Style @@ -35579,6 +36157,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -35593,7 +36173,7 @@ public} Bounds - {{402.47699, 344.66101}, {48.157501, 36}} + {{402.47699, 344.66100999999998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -35644,7 +36224,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -35666,8 +36246,8 @@ public} 1437 Points - {242.64702, 247.91499} - {214.6395, 247.91499} + {242.64700000000002, 247.91498999999999} + {214.63949099999999, 247.91498999999999} Style @@ -35675,6 +36255,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -35689,7 +36271,7 @@ public} Bounds - {{244.147, 229.91499}, {48.157501, 36}} + {{244.14699999999999, 229.91498999999999}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -35740,7 +36322,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -35762,8 +36344,8 @@ public} 1435 Points - {166.87558, 78.345757} - {132.08098, 102.93121} + {166.87558031634092, 78.345775631879363} + {132.08100881803131, 102.931217480786} Style @@ -35771,6 +36353,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -35785,7 +36369,7 @@ public} Bounds - {{164.98199, 44.669998}, {48.157501, 36}} + {{164.98199, 44.669998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -35836,7 +36420,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -35858,8 +36442,8 @@ public} 1433 Points - {246.49998, 62.669998} - {214.6395, 62.669998} + {246.50000000000003, 62.669998} + {214.63949099999999, 62.669998} Style @@ -35867,6 +36451,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -35881,7 +36467,7 @@ public} Bounds - {{248, 44.669998}, {48.157501, 36}} + {{248, 44.669998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -35932,7 +36518,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -35954,8 +36540,8 @@ public} 1431 Points - {324.90918, 347.51587} - {290.70734, 324.47516} + {324.90919758669287, 347.51587717153564} + {290.7073118522589, 324.47512575983751} Style @@ -35963,6 +36549,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -35987,8 +36575,8 @@ public} 1430 Points - {321.81201, 362.66101} - {293.8045, 362.66101} + {321.81200999999999, 362.66100999999998} + {293.80450100000002, 362.66100999999998} Style @@ -35996,6 +36584,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -36010,7 +36600,7 @@ public} Bounds - {{323.31201, 344.66101}, {48.157501, 36}} + {{323.31200999999999, 344.66100999999998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -36061,7 +36651,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -36083,8 +36673,8 @@ public} 1428 Points - {166.57921, 347.51587} - {132.3774, 324.47516} + {166.57918654994572, 347.51586034014787} + {132.37740350395796, 324.47514331426697} Style @@ -36092,6 +36682,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -36116,8 +36708,8 @@ public} 1427 Points - {246.70576, 292.6351} - {210.58073, 264.60986} + {246.70574847963516, 292.63510225174554} + {210.5807432020946, 264.60987681529281} Style @@ -36125,6 +36717,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -36149,8 +36743,8 @@ public} 1426 Points - {167.54079, 264.60986} - {131.41582, 292.6351} + {167.54074917449543, 264.60989440816076} + {131.41584254555863, 292.6350852087287} Style @@ -36158,6 +36752,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -36182,8 +36778,8 @@ public} 1425 Points - {242.64702, 309.32999} - {214.6395, 309.32999} + {242.64700000000002, 309.32999000000001} + {214.63949099999999, 309.32999000000001} Style @@ -36191,6 +36787,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -36203,7 +36801,7 @@ public} Bounds - {{244.147, 291.32999}, {48.157501, 36}} + {{244.14699999999999, 291.32999000000001}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -36254,7 +36852,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -36276,8 +36874,8 @@ public} 1423 Points - {163.48199, 309.32999} - {135.47461, 309.32999} + {163.48199000000002, 309.32999000000001} + {135.47460199999998, 309.32999000000001} Style @@ -36285,6 +36883,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -36297,7 +36897,7 @@ public} Bounds - {{164.98199, 291.32999}, {48.157501, 36}} + {{164.98199, 291.32999000000001}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -36348,7 +36948,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -36360,7 +36960,7 @@ public} Bounds - {{164.98199, 229.91499}, {48.157501, 36}} + {{164.98199, 229.91498999999999}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -36411,7 +37011,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -36423,7 +37023,7 @@ public} Bounds - {{85.817101, 291.32999}, {48.157501, 36}} + {{85.817100999999994, 291.32999000000001}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -36474,7 +37074,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -36496,8 +37096,8 @@ public} 1419 Points - {249.59827, 103.45981} - {211.5412, 77.817207} + {249.59828463291979, 103.45980747906853} + {211.54120490241885, 77.817193270326314} Style @@ -36514,6 +37114,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -36538,8 +37140,8 @@ public} 1409 Points - {166.87558, 78.345757} - {132.08098, 102.93121} + {166.87558031634092, 78.345775631879363} + {132.08100881803131, 102.931217480786} Style @@ -36556,6 +37158,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -36580,8 +37184,8 @@ public} 1383 Points - {246.49998, 118.607} - {214.6395, 118.607} + {246.50000000000003, 118.607} + {214.63949099999999, 118.607} Style @@ -36598,6 +37202,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -36610,7 +37216,7 @@ public} Bounds - {{248, 100.607}, {48.157501, 36}} + {{248, 100.607}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -36670,7 +37276,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -36692,8 +37298,8 @@ public} 1381 Points - {163.48199, 118.607} - {135.47461, 118.607} + {163.48199000000002, 118.607} + {135.47460199999998, 118.607} Style @@ -36710,6 +37316,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -36722,7 +37330,7 @@ public} Bounds - {{164.98199, 100.607}, {48.157501, 36}} + {{164.98199, 100.607}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -36782,7 +37390,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -36794,7 +37402,7 @@ public} Bounds - {{164.98199, 44.669998}, {48.157501, 36}} + {{164.98199, 44.669998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -36854,7 +37462,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -36877,7 +37485,7 @@ public} Points {330.01801, 62.669998} - {297.65747, 62.669998} + {297.65750100000002, 62.669998} Style @@ -36894,6 +37502,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -36910,7 +37520,7 @@ public} Bounds - {{85.817101, 100.607}, {48.157501, 36}} + {{85.817100999999994, 100.607}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -36961,7 +37571,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -36973,7 +37583,7 @@ public} Bounds - {{130, 20}, {36.333599, 3.3681099}} + {{130, 20}, {36.333599, 3.3681098999999999}} Class ShapedGraphic FontInfo @@ -37010,7 +37620,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -37024,7 +37634,7 @@ public} Bounds - {{331.01801, 49.169998}, {70.932297, 27}} + {{331.01801, 49.169998}, {70.932297000000005, 27}} Class ShapedGraphic FontInfo @@ -37084,7 +37694,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -37096,7 +37706,7 @@ public} Bounds - {{71, 33.366299}, {516, 139.633}} + {{71, 33.366298999999998}, {516, 139.63300000000001}} Class ShapedGraphic FontInfo @@ -37171,8 +37781,8 @@ public} 1408 Points - {480.642, 362.66101} - {452.13446, 362.66101} + {480.642, 362.66100999999998} + {452.13449100000003, 362.66100999999998} Style @@ -37189,6 +37799,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -37215,8 +37827,8 @@ public} 1407 Points - {322.31198, 247.91499} - {293.8045, 247.91499} + {322.31200999999999, 247.91498999999999} + {293.80450100000002, 247.91498999999999} Style @@ -37233,6 +37845,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -37259,8 +37873,8 @@ public} 1371 Points - {242.64702, 362.66101} - {214.6395, 362.66101} + {242.64700000000002, 362.66100999999998} + {214.63949099999999, 362.66100999999998} Style @@ -37268,6 +37882,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -37280,7 +37896,7 @@ public} Bounds - {{244.147, 344.66101}, {48.157501, 36}} + {{244.14699999999999, 344.66100999999998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -37331,7 +37947,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -37343,7 +37959,7 @@ public} Bounds - {{164.98199, 344.66101}, {48.157501, 36}} + {{164.98199, 344.66100999999998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -37394,7 +38010,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -37406,7 +38022,7 @@ public} Bounds - {{481.642, 349.16101}, {81.652298, 27}} + {{481.642, 349.16100999999998}, {81.652298000000002, 27}} Class ShapedGraphic FontInfo @@ -37466,7 +38082,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -37478,7 +38094,7 @@ public} Bounds - {{323.31201, 234.41499}, {101, 27}} + {{323.31200999999999, 234.41498999999999}, {101, 27}} Class ShapedGraphic FontInfo @@ -37538,7 +38154,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -37550,7 +38166,7 @@ public} Bounds - {{93.974602, 195}, {37, 10.5953}} + {{93.974602000000004, 195}, {37, 10.5953}} Class ShapedGraphic FontInfo @@ -37587,7 +38203,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -37668,7 +38284,7 @@ public} GridInfo HPages - 2 + 1 KeepToScale Layers @@ -37694,6 +38310,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -37731,11 +38349,6 @@ public} 2 Style - shadow - - Draws - NO - stroke Draws @@ -37743,6 +38356,8 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} CanvasSize @@ -37752,7 +38367,7 @@ public} ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -37767,8 +38382,8 @@ public} 1404 Points - {488.41925, 153.13226} - {373.57028, 235.88771} + {488.41923679611648, 153.13229081350471} + {373.57026435925235, 235.88770944052345} Style @@ -37776,6 +38391,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -37800,8 +38417,8 @@ public} 1403 Points - {510.47476, 156.74001} - {510.47479, 177.67999} + {510.47476954674062, 156.74000000000001} + {510.47476954674062, 177.67999} Style @@ -37809,6 +38426,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -37823,7 +38442,7 @@ public} Bounds - {{486.396, 119.24}, {48.157501, 36}} + {{486.39600000000002, 119.23999999999999}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -37874,7 +38493,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -37896,8 +38515,8 @@ public} 1401 Points - {373.07791, 384.41537} - {405.09357, 409.11462} + {373.07791021728985, 384.41539018633785} + {405.09358819429218, 409.11461340827287} Style @@ -37905,6 +38524,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -37929,8 +38550,8 @@ public} 1400 Points - {351.5148, 271.28} - {351.51483, 290.28} + {351.51476082972533, 271.27999999999975} + {351.51477089458592, 290.28000000000077} Style @@ -37938,6 +38559,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -37950,7 +38573,7 @@ public} Bounds - {{327.436, 233.78}, {48.157501, 36}} + {{327.43599999999998, 233.78}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -38001,7 +38624,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -38023,8 +38646,8 @@ public} 1398 Points - {351.5148, 329.28} - {351.51483, 348.28} + {351.51476082972533, 329.27999999999975} + {351.51477089458592, 348.28000000000077} Style @@ -38032,6 +38655,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -38044,7 +38669,7 @@ public} Bounds - {{327.436, 291.78}, {48.157501, 36}} + {{327.43599999999998, 291.77999999999997}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -38095,7 +38720,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -38107,7 +38732,7 @@ public} Bounds - {{327.436, 349.78}, {48.157501, 36}} + {{327.43599999999998, 349.77999999999997}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -38158,7 +38783,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -38180,8 +38805,8 @@ public} 1395 Points - {170.784, 389.32996} - {137.32089, 414.15002} + {170.78399467326062, 389.32997542165486} + {137.32090385699806, 414.15001385926331} Style @@ -38189,6 +38814,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -38213,8 +38840,8 @@ public} 1394 Points - {487.79996, 211.95059} - {449.33154, 237.00937} + {487.79995936753193, 211.95060937832596} + {449.33154084192427, 237.00937904056485} Style @@ -38222,6 +38849,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -38246,8 +38875,8 @@ public} 1393 Points - {510.44775, 216.67999} - {510.41879, 237.62} + {510.44775021231726, 216.67998856210141} + {510.41875603726794, 237.62000143952329} Style @@ -38255,6 +38884,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -38269,7 +38900,7 @@ public} Bounds - {{486.396, 179.17999}, {48.157501, 36}} + {{486.39600000000002, 179.17999}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -38320,7 +38951,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -38342,8 +38973,8 @@ public} 1390 Points - {192.63878, 276.61996} - {192.63881, 295.62003} + {192.63876576386062, 276.62} + {192.63876576386062, 295.62000000000046} Style @@ -38351,6 +38982,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -38363,7 +38996,7 @@ public} Bounds - {{168.56, 239.12}, {48.157501, 36}} + {{168.56, 239.12}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -38414,7 +39047,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -38436,8 +39069,8 @@ public} 1388 Points - {192.63878, 334.62} - {192.63881, 353.62} + {192.63876576387253, 334.62} + {192.63876576387253, 353.62000000000046} Style @@ -38445,6 +39078,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -38457,7 +39092,7 @@ public} Bounds - {{168.56, 297.12}, {48.157501, 36}} + {{168.56, 297.12}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -38508,7 +39143,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -38520,7 +39155,7 @@ public} Bounds - {{168.56, 355.12}, {48.157501, 36}} + {{168.56, 355.12}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -38571,7 +39206,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -38593,8 +39228,8 @@ public} 1385 Points - {426.65677, 387.27997} - {426.6568, 406.25003} + {426.65676321831887, 387.27999999999997} + {426.65676321831887, 406.25000000000034} Style @@ -38602,6 +39237,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -38626,8 +39263,8 @@ public} 1383 Points - {426.65677, 271.28} - {426.6568, 290.28} + {426.65676319851576, 271.27999999999997} + {426.65676319851576, 290.28000000000031} Style @@ -38635,6 +39272,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -38647,7 +39286,7 @@ public} Bounds - {{402.578, 233.78}, {48.157501, 36}} + {{402.57799999999997, 233.78}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -38698,7 +39337,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -38720,8 +39359,8 @@ public} 1381 Points - {426.65677, 329.28} - {426.6568, 348.28} + {426.65676319851576, 329.27999999999997} + {426.65676319851576, 348.28000000000031} Style @@ -38729,6 +39368,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -38741,7 +39382,7 @@ public} Bounds - {{402.578, 291.78}, {48.157501, 36}} + {{402.57799999999997, 291.77999999999997}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -38792,7 +39433,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -38804,7 +39445,7 @@ public} Bounds - {{402.578, 349.78}, {48.157501, 36}} + {{402.57799999999997, 349.77999999999997}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -38855,7 +39496,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -38877,8 +39518,8 @@ public} 1378 Points - {115.46613, 392.62} - {115.46611, 410.85999} + {115.46612860730792, 392.62} + {115.46612860730792, 410.85998999999993} Style @@ -38895,6 +39536,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -38919,8 +39562,8 @@ public} 1376 Points - {115.46613, 449.85995} - {115.46612, 471.13} + {115.46613486865677, 449.85998999999993} + {115.46613486865677, 471.12999999999994} Style @@ -38928,6 +39571,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -38940,7 +39585,7 @@ public} Bounds - {{91.387398, 412.35999}, {48.157501, 36}} + {{91.387398000000005, 412.35998999999998}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -38991,7 +39636,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -39013,8 +39658,8 @@ public} 1374 Points - {510.39175, 336.56} - {510.39178, 357.5} + {510.39175954673595, 336.55999999999995} + {510.39175954673595, 357.5} Style @@ -39022,6 +39667,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -39046,8 +39693,8 @@ public} 1371 Points - {510.39175, 276.62} - {510.39178, 297.56} + {510.39175954673595, 276.61999999999995} + {510.39175954673595, 297.56} Style @@ -39055,6 +39702,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -39067,7 +39716,7 @@ public} Bounds - {{486.31299, 239.12}, {48.157501, 36}} + {{486.31299000000001, 239.12}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -39118,7 +39767,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -39130,7 +39779,7 @@ public} Bounds - {{486.31299, 299.06}, {48.157501, 36}} + {{486.31299000000001, 299.06}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -39181,7 +39830,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -39203,8 +39852,8 @@ public} 1368 Points - {487.15283, 390.52951} - {449.89557, 412.22046} + {487.15286894734066, 390.52952681859097} + {449.89561925095762, 412.22046640711284} Style @@ -39212,6 +39861,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -39224,7 +39875,7 @@ public} Bounds - {{486.31299, 359}, {48.157501, 36}} + {{486.31299000000001, 359}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -39275,7 +39926,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -39287,7 +39938,7 @@ public} Bounds - {{469.565, 81}, {81.652298, 27}} + {{469.565, 81}, {81.652298000000002, 27}} Class ShapedGraphic FontInfo @@ -39347,7 +39998,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -39359,7 +40010,7 @@ public} Bounds - {{316.42401, 183.67999}, {81.652298, 27}} + {{316.42401000000001, 183.67999}, {81.652298000000002, 27}} Class ShapedGraphic FontInfo @@ -39419,7 +40070,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -39441,8 +40092,8 @@ public} 1356 Points - {426.65677, 445.25} - {426.6568, 471.13} + {426.65675963998405, 445.25} + {426.65675963998405, 471.13000000000017} Style @@ -39450,6 +40101,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -39462,7 +40115,7 @@ public} Bounds - {{402.578, 472.63}, {48.157501, 36}} + {{402.57799999999997, 472.63}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -39513,7 +40166,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -39525,7 +40178,7 @@ public} Bounds - {{402.578, 407.75}, {48.157501, 36}} + {{402.57799999999997, 407.75}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -39576,7 +40229,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -39588,7 +40241,7 @@ public} Bounds - {{408.966, 31}, {37, 14}} + {{408.96600000000001, 31}, {37, 14}} Class ShapedGraphic FitText @@ -39622,7 +40275,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -39636,7 +40289,7 @@ public} Bounds - {{159.14, 31}, {26, 14}} + {{159.13999999999999, 31}, {26, 14}} Class ShapedGraphic FitText @@ -39670,7 +40323,7 @@ public} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -39684,7 +40337,7 @@ public} Bounds - {{157.173, 200}, {70.932297, 27}} + {{157.173, 200}, {70.932297000000005, 27}} Class ShapedGraphic FontInfo @@ -39744,7 +40397,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -39766,8 +40419,8 @@ public} 1343 Points - {115.46613, 276.62} - {115.46611, 295.62} + {115.46612900000001, 276.62} + {115.46612900000001, 295.62} Style @@ -39784,6 +40437,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -39796,7 +40451,7 @@ public} Bounds - {{91.387398, 239.12}, {48.157501, 36}} + {{91.387398000000005, 239.12}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -39856,7 +40511,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -39878,8 +40533,8 @@ public} 1337 Points - {115.46613, 334.62} - {115.46611, 353.62} + {115.46612900000001, 334.62} + {115.46612900000001, 353.62} Style @@ -39896,6 +40551,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -39908,7 +40565,7 @@ public} Bounds - {{91.387398, 297.12}, {48.157501, 36}} + {{91.387398000000005, 297.12}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -39968,7 +40625,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -39980,7 +40637,7 @@ public} Bounds - {{91.387398, 355.12}, {48.157501, 36}} + {{91.387398000000005, 355.12}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -40040,7 +40697,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -40052,7 +40709,7 @@ public} Bounds - {{91.387398, 472.63}, {48.157501, 36}} + {{91.387398000000005, 472.63}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -40103,7 +40760,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -40115,7 +40772,7 @@ public} Bounds - {{48.279999, 51}, {247.72, 494}} + {{48.279998999999997, 51}, {247.72, 494}} Class ShapedGraphic FontInfo @@ -40273,6 +40930,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -40303,18 +40962,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -40322,6 +40976,8 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -40329,7 +40985,7 @@ public} ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -40344,9 +41000,9 @@ public} 1369 Points - {275.92392, 370.02869} + {275.923927827912, 370.02868310353347} {239, 328} - {225.81206, 229.7267} + {225.81204731149296, 229.72668317055502} Style @@ -40354,6 +41010,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -40378,8 +41036,8 @@ public} 1367 Points - {361.19708, 426.27997} - {361.19702, 408.5} + {361.19706493276868, 426.28000000000179} + {361.19703118143332, 408.49999999999812} Style @@ -40387,6 +41045,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -40401,7 +41061,7 @@ public} Bounds - {{326.186, 427.28}, {70.022202, 36}} + {{326.18599999999998, 427.27999999999997}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -40461,7 +41121,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -40484,7 +41144,7 @@ public} Points {338.5, 389} - {315.28799, 389} + {315.28801099999998, 389} Style @@ -40492,6 +41152,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -40506,7 +41168,7 @@ public} Bounds - {{340, 371}, {42.394001, 36}} + {{340, 371}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -40557,7 +41219,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -40569,7 +41231,7 @@ public} Bounds - {{271.39401, 371}, {42.394001, 36}} + {{271.39400999999998, 371}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -40620,7 +41282,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -40642,8 +41304,8 @@ public} 1355 Points - {269.89401, 210.24001} - {245.89401, 210.24001} + {269.89400999999998, 210.24001000000001} + {245.894001, 210.24001000000001} Style @@ -40651,6 +41313,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -40665,7 +41329,7 @@ public} Bounds - {{271.39401, 192.24001}, {42.394001, 36}} + {{271.39400999999998, 192.24001000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -40716,7 +41380,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -40738,8 +41402,8 @@ public} 1353 Points - {292.59103, 168} - {292.591, 190.74002} + {292.59103924331072, 167.99999999999989} + {292.59102696766774, 190.74001000000001} Style @@ -40747,6 +41411,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -40761,7 +41427,7 @@ public} Bounds - {{264.487, 131}, {56.208099, 36}} + {{264.48700000000002, 131}, {56.208098999999997, 36}} Class ShapedGraphic FontInfo @@ -40821,7 +41487,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -40843,8 +41509,8 @@ public} 1351 Points - {361.72, 308.96008} - {361.46909, 290.97983} + {361.71998299777346, 308.96008733796793} + {361.4690931048973, 290.97985399470434} Style @@ -40852,6 +41518,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -40866,7 +41534,7 @@ public} Bounds - {{326.974, 309.95999}, {70.022202, 36}} + {{326.97399999999999, 309.95999}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -40926,7 +41594,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -40943,8 +41611,8 @@ public} 1349 Points - {131.106, 209.74001} - {97, 209.74001} + {131.10599999999999, 209.74001000000001} + {97, 209.74001000000001} Style @@ -40952,6 +41620,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -40973,8 +41643,8 @@ public} 1348 Points - {200.50027, 210.07652} - {176.49974, 209.90366} + {200.50026340785371, 210.07648786881407} + {176.49973746239345, 209.90357239042388} Style @@ -40982,6 +41652,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -41006,8 +41678,8 @@ public} 1347 Points - {273.57431, 254.69778} - {242.21375, 227.02216} + {273.5743073971725, 254.69781707815872} + {242.21370931957205, 227.02218420789626} Style @@ -41015,6 +41687,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -41039,8 +41713,8 @@ public} 1346 Points - {338.5, 271.47998} - {315.28799, 271.47998} + {338.50000000000119, 271.47999011218053} + {315.28801099999941, 271.47999011218053} Style @@ -41048,6 +41722,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -41062,7 +41738,7 @@ public} Bounds - {{340, 253.48}, {42.394001, 36}} + {{340, 253.47999999999999}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -41113,7 +41789,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -41125,7 +41801,7 @@ public} Bounds - {{132.606, 191.74001}, {42.394001, 36}} + {{132.60599999999999, 191.74001000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -41176,7 +41852,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -41188,7 +41864,7 @@ public} Bounds - {{202, 192.24001}, {42.394001, 36}} + {{202, 192.24001000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -41239,7 +41915,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -41251,7 +41927,7 @@ public} Bounds - {{271.39401, 253.48}, {42.394001, 36}} + {{271.39400999999998, 253.47999999999999}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -41302,7 +41978,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -41342,6 +42018,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -41370,18 +42048,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -41389,6 +42062,8 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -41396,12 +42071,12 @@ public} ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList Bounds - {{252.989, 310.78}, {70.022202, 36}} + {{252.989, 310.77999999999997}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -41461,7 +42136,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -41483,9 +42158,9 @@ public} 1370 Points - {427.3038, 231.67546} + {427.30382555213083, 231.67547194881854} {389, 358} - {310.54276, 378.62555} + {310.54277898667459, 378.62554058079513} Style @@ -41493,6 +42168,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -41517,8 +42194,8 @@ public} 1369 Points - {303.69711, 211.84627} - {242.2879, 212.13377} + {303.69710119367522, 211.84626618312871} + {242.28788980940627, 212.13375528890754} Style @@ -41526,6 +42203,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -41550,8 +42229,8 @@ public} 1368 Points - {410.50012, 212.13374} - {349.09085, 211.84624} + {410.50011120031672, 212.13375364434728} + {349.09087980466057, 211.84626397801532} Style @@ -41559,6 +42238,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -41573,7 +42254,7 @@ public} Bounds - {{412, 194.24001}, {42.394001, 36}} + {{412, 194.24001000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -41624,7 +42305,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -41646,8 +42327,8 @@ public} 1366 Points - {314.42868, 231.0144} - {300.16226, 253.99564} + {314.42869887228818, 231.01441490827671} + {300.16229097354034, 253.99559505688686} Style @@ -41655,6 +42336,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -41669,7 +42352,7 @@ public} Bounds - {{305.19699, 193.74001}, {42.394001, 36}} + {{305.19699000000003, 193.74001000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -41720,7 +42403,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -41742,9 +42425,9 @@ public} 1364 Points - {199.87891, 368.92636} + {199.87889944196874, 368.92637581647114} {162, 339} - {152.0121, 231.73354} + {152.01210190938781, 231.73354946028613} Style @@ -41752,6 +42435,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -41776,8 +42461,8 @@ public} 1363 Points - {288.19708, 421.22} - {288.19702, 404} + {288.19706444036217, 421.2200000000019} + {288.19703130578517, 403.99999999999812} Style @@ -41785,6 +42470,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -41799,7 +42486,7 @@ public} Bounds - {{253.186, 422.22}, {70.022202, 36}} + {{253.18600000000001, 422.22000000000003}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -41859,7 +42546,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -41882,7 +42569,7 @@ public} Points {265.5, 384.5} - {242.28801, 384.5} + {242.28800100000001, 384.5} Style @@ -41890,6 +42577,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -41904,7 +42593,7 @@ public} Bounds - {{267, 366.5}, {42.394001, 36}} + {{267, 366.5}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -41955,7 +42644,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -41967,7 +42656,7 @@ public} Bounds - {{198.394, 366.5}, {42.394001, 36}} + {{198.39400000000001, 366.5}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -42018,7 +42707,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -42040,8 +42729,8 @@ public} 1355 Points - {196.894, 212.24001} - {172.89401, 212.24001} + {196.89400000000001, 212.24001000000001} + {172.894001, 212.24001000000001} Style @@ -42049,6 +42738,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -42063,7 +42754,7 @@ public} Bounds - {{198.394, 194.24001}, {42.394001, 36}} + {{198.39400000000001, 194.24001000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -42114,7 +42805,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -42136,8 +42827,8 @@ public} 1353 Points - {433.19702, 174.48001} - {433.19699, 192.74002} + {433.19702662858327, 174.47999999999973} + {433.19701425846768, 192.74001000000001} Style @@ -42145,6 +42836,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -42159,7 +42852,7 @@ public} Bounds - {{405.09299, 137.48}, {56.208099, 36}} + {{405.09298999999999, 137.47999999999999}, {56.208098999999997, 36}} Class ShapedGraphic FontInfo @@ -42219,7 +42912,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -42241,8 +42934,8 @@ public} 1351 Points - {288.0675, 309.77997} - {288.12787, 292.76999} + {288.06750150692352, 309.78000629195077} + {288.12784277336203, 292.76999056656672} Style @@ -42250,6 +42943,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -42269,8 +42964,8 @@ public} 1349 Points - {58.105999, 211.74001} - {24, 211.74001} + {58.105998999999997, 211.74001000000001} + {24, 211.74001000000001} Style @@ -42278,6 +42973,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -42299,8 +42996,8 @@ public} 1348 Points - {127.50027, 212.07652} - {103.49974, 211.90366} + {127.5002634078479, 212.07648787061336} + {103.49973646240473, 211.90357238692135} Style @@ -42308,6 +43005,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -42332,8 +43031,8 @@ public} 1347 Points - {200.55043, 256.52438} - {169.23759, 228.98564} + {200.55042468521481, 256.5243708173013} + {169.23757718229857, 228.98563784836131} Style @@ -42341,6 +43040,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -42365,8 +43066,8 @@ public} 1346 Points - {265.5, 273.27002} - {242.28801, 273.27002} + {265.50000000000057, 273.27000988782379} + {242.28800099999881, 273.27000988782379} Style @@ -42374,6 +43075,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -42388,7 +43091,7 @@ public} Bounds - {{267, 255.27}, {42.394001, 36}} + {{267, 255.27000000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -42439,7 +43142,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -42451,7 +43154,7 @@ public} Bounds - {{59.605999, 193.74001}, {42.394001, 36}} + {{59.605998999999997, 193.74001000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -42502,7 +43205,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -42514,7 +43217,7 @@ public} Bounds - {{129, 194.24001}, {42.394001, 36}} + {{129, 194.24001000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -42565,7 +43268,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -42577,7 +43280,7 @@ public} Bounds - {{198.394, 255.27}, {42.394001, 36}} + {{198.39400000000001, 255.27000000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -42628,7 +43331,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -42668,6 +43371,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -42696,18 +43401,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -42715,6 +43415,8 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -42722,7 +43424,7 @@ public} ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -42737,8 +43439,8 @@ public} 1372 Points - {223.19704, 168.00002} - {223.19702, 190.74002} + {223.19703467033651, 167.99999999999969} + {223.19701692156303, 190.74001000000055} Style @@ -42746,6 +43448,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -42760,7 +43464,7 @@ public} Bounds - {{195.093, 131}, {56.208099, 36}} + {{195.09299999999999, 131}, {56.208098999999997, 36}} Class ShapedGraphic FontInfo @@ -42820,7 +43524,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -42842,8 +43546,8 @@ public} 1355 Points - {269.89401, 210.24001} - {245.89401, 210.24001} + {269.89400999999998, 210.24001000000001} + {245.894001, 210.24001000000001} Style @@ -42851,6 +43555,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -42865,7 +43571,7 @@ public} Bounds - {{271.39401, 192.24001}, {42.394001, 36}} + {{271.39400999999998, 192.24001000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -42916,7 +43622,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -42938,8 +43644,8 @@ public} 1353 Points - {292.59103, 168} - {292.591, 190.74002} + {292.59103924331072, 167.99999999999989} + {292.59102696766774, 190.74001000000001} Style @@ -42947,6 +43653,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -42961,7 +43669,7 @@ public} Bounds - {{264.487, 131}, {56.208099, 36}} + {{264.48700000000002, 131}, {56.208098999999997, 36}} Class ShapedGraphic FontInfo @@ -43021,7 +43729,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -43043,8 +43751,8 @@ public} 1351 Points - {361.72, 308.96008} - {361.46909, 290.97983} + {361.71998299777346, 308.96008733796793} + {361.4690931048973, 290.97985399470434} Style @@ -43052,6 +43760,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -43066,7 +43776,7 @@ public} Bounds - {{326.974, 309.95999}, {70.022202, 36}} + {{326.97399999999999, 309.95999}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -43126,7 +43836,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -43143,8 +43853,8 @@ public} 1349 Points - {131.106, 209.74001} - {97, 209.74001} + {131.10599999999999, 209.74001000000001} + {97, 209.74001000000001} Style @@ -43152,6 +43862,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -43173,8 +43885,8 @@ public} 1348 Points - {200.50027, 210.07652} - {176.49974, 209.90366} + {200.50026340785371, 210.07648786881407} + {176.49973746239345, 209.90357239042388} Style @@ -43182,6 +43894,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -43206,8 +43920,8 @@ public} 1347 Points - {273.57431, 254.69778} - {242.21375, 227.02216} + {273.5743073971725, 254.69781707815872} + {242.21370931957205, 227.02218420789626} Style @@ -43215,6 +43929,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -43239,8 +43955,8 @@ public} 1346 Points - {338.5, 271.47998} - {315.28799, 271.47998} + {338.50000000000119, 271.47999011218053} + {315.28801099999941, 271.47999011218053} Style @@ -43248,6 +43964,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -43262,7 +43980,7 @@ public} Bounds - {{340, 253.48}, {42.394001, 36}} + {{340, 253.47999999999999}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -43313,7 +44031,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -43325,7 +44043,7 @@ public} Bounds - {{132.606, 191.74001}, {42.394001, 36}} + {{132.60599999999999, 191.74001000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -43376,7 +44094,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -43388,7 +44106,7 @@ public} Bounds - {{202, 192.24001}, {42.394001, 36}} + {{202, 192.24001000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -43439,7 +44157,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -43451,7 +44169,7 @@ public} Bounds - {{271.39401, 253.48}, {42.394001, 36}} + {{271.39400999999998, 253.47999999999999}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -43502,7 +44220,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -43542,6 +44260,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -43570,18 +44290,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -43589,6 +44304,8 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -43596,7 +44313,7 @@ public} ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -43611,8 +44328,8 @@ public} 1372 Points - {326.39404, 169.20999} - {326.39401, 192.24002} + {326.39403797150385, 169.21000999999933} + {326.3940118767004, 192.24001000000095} Style @@ -43620,6 +44337,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -43634,7 +44353,7 @@ public} Bounds - {{298.29001, 132.21001}, {56.208099, 36}} + {{298.29001, 132.21001000000001}, {56.208098999999997, 36}} Class ShapedGraphic FontInfo @@ -43694,7 +44413,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -43706,7 +44425,7 @@ public} Bounds - {{252.989, 310.78}, {70.022202, 36}} + {{252.989, 310.77999999999997}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -43766,7 +44485,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -43788,8 +44507,8 @@ public} 1369 Points - {303.69711, 211.84627} - {242.2879, 212.13377} + {303.69710119367522, 211.84626618312871} + {242.28788980940627, 212.13375528890754} Style @@ -43797,6 +44516,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -43821,8 +44542,8 @@ public} 1366 Points - {314.42868, 231.0144} - {300.16226, 253.99564} + {314.42869887228818, 231.01441490827671} + {300.16229097354034, 253.99559505688686} Style @@ -43830,6 +44551,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -43844,7 +44567,7 @@ public} Bounds - {{305.19699, 193.74001}, {42.394001, 36}} + {{305.19699000000003, 193.74001000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -43895,7 +44618,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -43917,8 +44640,8 @@ public} 1355 Points - {196.894, 212.24001} - {172.89401, 212.24001} + {196.89400000000001, 212.24001000000001} + {172.894001, 212.24001000000001} Style @@ -43926,6 +44649,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -43940,7 +44665,7 @@ public} Bounds - {{198.394, 194.24001}, {42.394001, 36}} + {{198.39400000000001, 194.24001000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -43991,7 +44716,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -44013,8 +44738,8 @@ public} 1353 Points - {150.19704, 169.20999} - {150.19702, 192.74001} + {150.19703486160665, 169.21000999999973} + {150.19701673311212, 192.7400100000005} Style @@ -44022,6 +44747,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -44036,7 +44763,7 @@ public} Bounds - {{122.093, 132.21001}, {56.208099, 36}} + {{122.093, 132.21001000000001}, {56.208098999999997, 36}} Class ShapedGraphic FontInfo @@ -44096,7 +44823,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -44118,8 +44845,8 @@ public} 1351 Points - {288.0675, 309.77997} - {288.12787, 292.76999} + {288.06750150692352, 309.78000629195077} + {288.12784277336203, 292.76999056656672} Style @@ -44127,6 +44854,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -44146,8 +44875,8 @@ public} 1349 Points - {58.105999, 211.74001} - {24, 211.74001} + {58.105998999999997, 211.74001000000001} + {24, 211.74001000000001} Style @@ -44155,6 +44884,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -44176,8 +44907,8 @@ public} 1348 Points - {127.50027, 212.07652} - {103.49974, 211.90366} + {127.5002634078479, 212.07648787061336} + {103.49973646240473, 211.90357238692135} Style @@ -44185,6 +44916,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -44209,8 +44942,8 @@ public} 1347 Points - {200.55043, 256.52438} - {169.23759, 228.98564} + {200.55042468521481, 256.5243708173013} + {169.23757718229857, 228.98563784836131} Style @@ -44218,6 +44951,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -44242,8 +44977,8 @@ public} 1346 Points - {265.5, 273.27002} - {242.28801, 273.27002} + {265.50000000000057, 273.27000988782379} + {242.28800099999881, 273.27000988782379} Style @@ -44251,6 +44986,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -44265,7 +45002,7 @@ public} Bounds - {{267, 255.27}, {42.394001, 36}} + {{267, 255.27000000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -44316,7 +45053,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -44328,7 +45065,7 @@ public} Bounds - {{59.605999, 193.74001}, {42.394001, 36}} + {{59.605998999999997, 193.74001000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -44379,7 +45116,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -44391,7 +45128,7 @@ public} Bounds - {{129, 194.24001}, {42.394001, 36}} + {{129, 194.24001000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -44442,7 +45179,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -44454,7 +45191,7 @@ public} Bounds - {{198.394, 255.27}, {42.394001, 36}} + {{198.39400000000001, 255.27000000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -44505,7 +45242,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -44545,6 +45282,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -44573,18 +45312,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -44592,6 +45326,8 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -44599,7 +45335,7 @@ public} ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -44614,8 +45350,8 @@ public} 1372 Points - {349.76575, 173.8511} - {338.28479, 192.46335} + {349.76575900005219, 173.85110117579572} + {338.2847895200029, 192.46335816602431} Style @@ -44623,6 +45359,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -44637,7 +45375,7 @@ public} Bounds - {{333.29001, 137}, {56.208099, 36}} + {{333.29001, 137}, {56.208098999999997, 36}} Class ShapedGraphic FontInfo @@ -44697,7 +45435,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -44709,7 +45447,7 @@ public} Bounds - {{252.989, 310.78}, {70.022202, 36}} + {{252.989, 310.77999999999997}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -44769,7 +45507,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -44791,8 +45529,8 @@ public} 1369 Points - {303.69711, 211.84627} - {242.2879, 212.13377} + {303.69710119367522, 211.84626618312871} + {242.28788980940627, 212.13375528890754} Style @@ -44800,6 +45538,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -44824,8 +45564,8 @@ public} 1366 Points - {314.42868, 231.0144} - {300.16226, 253.99564} + {314.42869887228818, 231.01441490827671} + {300.16229097354034, 253.99559505688686} Style @@ -44833,6 +45573,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -44847,7 +45589,7 @@ public} Bounds - {{305.19699, 193.74001}, {42.394001, 36}} + {{305.19699000000003, 193.74001000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -44898,7 +45640,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -44920,8 +45662,8 @@ public} 1355 Points - {196.894, 212.24001} - {172.89401, 212.24001} + {196.89400000000001, 212.24001000000001} + {172.894001, 212.24001000000001} Style @@ -44929,6 +45671,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -44943,7 +45687,7 @@ public} Bounds - {{198.394, 194.24001}, {42.394001, 36}} + {{198.39400000000001, 194.24001000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -44994,7 +45738,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -45016,8 +45760,8 @@ public} 1353 Points - {303.02228, 173.8511} - {314.5032, 192.46335} + {303.02230990245573, 173.85110219918417} + {314.5032279864177, 192.46335706561877} Style @@ -45025,6 +45769,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -45039,7 +45785,7 @@ public} Bounds - {{263.29001, 137}, {56.208099, 36}} + {{263.29001, 137}, {56.208098999999997, 36}} Class ShapedGraphic FontInfo @@ -45099,7 +45845,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -45121,8 +45867,8 @@ public} 1351 Points - {288.0675, 309.77997} - {288.12787, 292.76999} + {288.06750150692352, 309.78000629195077} + {288.12784277336203, 292.76999056656672} Style @@ -45130,6 +45876,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -45149,8 +45897,8 @@ public} 1349 Points - {58.105999, 211.74001} - {24, 211.74001} + {58.105998999999997, 211.74001000000001} + {24, 211.74001000000001} Style @@ -45158,6 +45906,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -45179,8 +45929,8 @@ public} 1348 Points - {127.50027, 212.07652} - {103.49974, 211.90366} + {127.5002634078479, 212.07648787061336} + {103.49973646240473, 211.90357238692135} Style @@ -45188,6 +45938,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -45212,8 +45964,8 @@ public} 1347 Points - {200.55043, 256.52438} - {169.23759, 228.98564} + {200.55042468521481, 256.5243708173013} + {169.23757718229857, 228.98563784836131} Style @@ -45221,6 +45973,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -45245,8 +45999,8 @@ public} 1346 Points - {265.5, 273.27002} - {242.28801, 273.27002} + {265.50000000000057, 273.27000988782379} + {242.28800099999881, 273.27000988782379} Style @@ -45254,6 +46008,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -45268,7 +46024,7 @@ public} Bounds - {{267, 255.27}, {42.394001, 36}} + {{267, 255.27000000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -45319,7 +46075,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -45331,7 +46087,7 @@ public} Bounds - {{59.605999, 193.74001}, {42.394001, 36}} + {{59.605998999999997, 193.74001000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -45382,7 +46138,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -45394,7 +46150,7 @@ public} Bounds - {{129, 194.24001}, {42.394001, 36}} + {{129, 194.24001000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -45445,7 +46201,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -45457,7 +46213,7 @@ public} Bounds - {{198.394, 255.27}, {42.394001, 36}} + {{198.39400000000001, 255.27000000000001}, {42.394001000000003, 36}} Class ShapedGraphic FontInfo @@ -45508,7 +46264,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -45548,6 +46304,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -45576,18 +46334,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -45595,6 +46348,8 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -45602,7 +46357,7 @@ public} ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -45617,8 +46372,8 @@ public} 1399 Points - {224.88904, 325.68726} - {206.57504, 325.54782} + {224.88903898843807, 325.68721551098906} + {206.57503610656218, 325.54776499499411} Style @@ -45626,6 +46381,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -45650,8 +46407,8 @@ public} 1398 Points - {259.51001, 278.28253} - {238.4996, 278.29999} + {259.51001034512058, 278.28254008600254} + {238.49958428187875, 278.29999570989168} Style @@ -45659,6 +46416,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -45683,8 +46442,8 @@ public} 1397 Points - {160.933, 325.37399} - {141.14261, 325.37399} + {160.93300000000198, 325.37396147316269} + {141.14260099999717, 325.37396147316269} Style @@ -45692,6 +46451,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -45716,8 +46477,8 @@ public} 1396 Points - {192.85699, 278.31897} - {164.5033, 278.31897} + {192.85699000000145, 278.31896999999998} + {164.50329099999811, 278.31896999999998} Style @@ -45725,6 +46486,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -45749,9 +46512,9 @@ public} 1395 Points - {112.44646, 311.39313} + {112.44646811922426, 311.3931288308674} {69, 208} - {134.02, 106.55168} + {134.02000147355167, 106.55168375134612} Style @@ -45759,6 +46522,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -45781,9 +46546,9 @@ public} 1394 Points - {138.15942, 264.39825} + {138.15943415487277, 264.3982639914646} {108, 208} - {138.65573, 106.72447} + {138.65572596279043, 106.72447263259417} Style @@ -45791,6 +46556,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -45813,8 +46580,8 @@ public} 1393 Points - {291.91104, 230.9778} - {268.45206, 231.13687} + {291.91103298561546, 230.97777577984047} + {268.45204210651758, 231.13683537783459} Style @@ -45822,6 +46589,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -45846,8 +46615,8 @@ public} 1392 Points - {230.65298, 231.26495} - {202.29932, 231.26495} + {230.6530000000019, 231.26495} + {202.29930099999885, 231.26495} Style @@ -45855,6 +46624,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -45879,9 +46650,9 @@ public} 1391 Points - {169.27356, 217.80276} + {169.27356797027039, 217.80277019903482} {148, 197.52901} - {143.5889, 106.78704} + {143.58888826198682, 106.787033819919} Style @@ -45889,6 +46660,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -45901,7 +46674,7 @@ public} Bounds - {{162.433, 312.776}, {42.642601, 25.1959}} + {{162.43299999999999, 312.77600000000001}, {42.642600999999999, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -45952,7 +46725,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -45964,7 +46737,7 @@ public} Bounds - {{97, 312.776}, {42.642601, 25.1959}} + {{97, 312.77600000000001}, {42.642600999999999, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -46015,7 +46788,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -46027,7 +46800,7 @@ public} Bounds - {{194.35699, 265.72101}, {42.642601, 25.1959}} + {{194.35699, 265.72100999999998}, {42.642600999999999, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -46078,7 +46851,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -46090,7 +46863,7 @@ public} Bounds - {{128.20399, 265.72101}, {34.799301, 25.1959}} + {{128.20399, 265.72100999999998}, {34.799301, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -46141,7 +46914,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -46153,7 +46926,7 @@ public} Bounds - {{232.153, 218.66701}, {34.799301, 25.1959}} + {{232.15299999999999, 218.66701}, {34.799301, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -46204,7 +46977,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -46216,7 +46989,7 @@ public} Bounds - {{166, 218.66701}, {34.799301, 25.1959}} + {{166, 218.66701}, {34.799301, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -46267,7 +47040,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -46279,7 +47052,7 @@ public} Bounds - {{225.88901, 312.776}, {85.697998, 26.4902}} + {{225.88901000000001, 312.77600000000001}, {85.697997999999998, 26.490200000000002}} Class ShapedGraphic FontInfo @@ -46339,7 +47112,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -46351,7 +47124,7 @@ public} Bounds - {{292.91101, 217.373}, {104.094, 26.4902}} + {{292.91100999999998, 217.37299999999999}, {104.09399999999999, 26.490200000000002}} Class ShapedGraphic FontInfo @@ -46411,7 +47184,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -46423,7 +47196,7 @@ public} Bounds - {{260.51001, 265.00101}, {85.697998, 26.4902}} + {{260.51001000000002, 265.00101000000001}, {85.697997999999998, 26.490200000000002}} Class ShapedGraphic FontInfo @@ -46483,7 +47256,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -46505,9 +47278,9 @@ public} 1378 Points - {193.49196, 178.78954} - {176, 172.907} - {148.67354, 106.67541} + {193.49194673559552, 178.78953767571369} + {176, 172.90700000000001} + {148.67353646545871, 106.67541709153137} Style @@ -46515,6 +47288,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -46527,7 +47302,7 @@ public} Bounds - {{321.26801, 172.334}, {141, 26.4902}} + {{321.26801, 172.334}, {141, 26.490200000000002}} Class ShapedGraphic FontInfo @@ -46587,7 +47362,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -46609,8 +47384,8 @@ public} 1376 Points - {320.26804, 185.17261} - {296.80914, 185.03925} + {320.26802615493216, 185.17267653701163} + {296.80912916460522, 185.03933040684527} Style @@ -46618,6 +47393,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -46642,8 +47419,8 @@ public} 1375 Points - {259.01001, 184.93195} - {230.65631, 184.93195} + {259.01001000000002, 184.93195} + {230.65629100000001, 184.93195} Style @@ -46651,6 +47428,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -46665,7 +47444,7 @@ public} Bounds - {{260.51001, 172.334}, {34.799301, 25.1959}} + {{260.51001000000002, 172.334}, {34.799301, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -46716,7 +47495,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -46728,7 +47507,7 @@ public} Bounds - {{194.35699, 172.334}, {34.799301, 25.1959}} + {{194.35699, 172.334}, {34.799301, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -46779,7 +47558,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -46791,7 +47570,7 @@ public} Bounds - {{346.21399, 126}, {98, 26.4902}} + {{346.21399000000002, 126}, {98, 26.490200000000002}} Class ShapedGraphic FontInfo @@ -46851,7 +47630,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -46873,8 +47652,8 @@ public} 1353 Points - {142.9032, 62.490204} - {142.90337, 78.592911} + {142.90323288070627, 62.490199999917138} + {142.9034401747968, 78.592903000166942} Style @@ -46882,6 +47661,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -46896,7 +47677,7 @@ public} Bounds - {{114.799, 35}, {56.208099, 26.4902}} + {{114.79900000000001, 35}, {56.208098999999997, 26.490200000000002}} Class ShapedGraphic FontInfo @@ -46956,7 +47737,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -46978,8 +47759,8 @@ public} 1351 Points - {345.21402, 138.892} - {322.45303, 138.73126} + {345.2140149268144, 138.89205806485666} + {322.45301034785621, 138.73134620268871} Style @@ -46987,6 +47768,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -47006,8 +47789,8 @@ public} 1349 Points - {59.105995, 93.337967} - {19, 93.337997} + {59.105999000003244, 93.337963694817063} + {19, 93.337997000000001} Style @@ -47015,6 +47798,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -47041,8 +47826,8 @@ public} 1348 Points - {124.00457, 92.879295} - {96.904732, 93.149513} + {124.00456020105203, 92.879295442732442} + {96.904739808704406, 93.149507197455264} Style @@ -47050,6 +47835,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -47074,9 +47861,9 @@ public} 1347 Points - {218.51727, 137.55418} - {190.401, 136} - {157.4341, 105.94004} + {218.51726951670096, 137.55418637798789} + {190.40100000000001, 136} + {157.4340882464727, 105.94003155334926} Style @@ -47084,6 +47871,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -47106,8 +47895,8 @@ public} 1346 Points - {284.65399, 138.59795} - {256.29932, 138.59795} + {284.65399000000002, 138.59795} + {256.29930100000001, 138.59795} Style @@ -47115,6 +47904,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -47129,7 +47920,7 @@ public} Bounds - {{286.15399, 126}, {34.799301, 25.1959}} + {{286.15399000000002, 126}, {34.799301, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -47180,7 +47971,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -47192,7 +47983,7 @@ public} Bounds - {{60.605999, 80.739998}, {34.799301, 25.1959}} + {{60.605998999999997, 80.739998}, {34.799301, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -47243,7 +48034,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -47255,7 +48046,7 @@ public} Bounds - {{125.504, 80.092903}, {34.799301, 25.1959}} + {{125.504, 80.092903000000007}, {34.799301, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -47306,7 +48097,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -47318,7 +48109,7 @@ public} Bounds - {{220, 126}, {34.799301, 25.1959}} + {{220, 126}, {34.799301, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -47369,7 +48160,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -47409,6 +48200,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -47437,18 +48230,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -47456,6 +48244,8 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -47463,7 +48253,7 @@ public} ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -47478,8 +48268,8 @@ public} 1418 Points - {575.00006, 187.87628} - {551.28558, 188.08014} + {575.00003695000373, 187.87629990816473} + {551.28560763902749, 188.08016691879058} Style @@ -47487,6 +48277,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -47511,8 +48303,8 @@ public} 1417 Points - {575.00006, 233.70973} - {551.22308, 233.50519} + {575.00003698940543, 233.70976671985645} + {551.22312282004123, 233.50525358224206} Style @@ -47520,6 +48312,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -47534,7 +48328,7 @@ public} Bounds - {{576, 174.381}, {56.208099, 26.4902}} + {{576, 174.381}, {56.208098999999997, 26.490200000000002}} Class ShapedGraphic FontInfo @@ -47594,7 +48388,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -47606,7 +48400,7 @@ public} Bounds - {{576, 220.715}, {56.208099, 26.4902}} + {{576, 220.715}, {56.208098999999997, 26.490200000000002}} Class ShapedGraphic FontInfo @@ -47666,7 +48460,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -47688,8 +48482,8 @@ public} 1414 Points - {506.43796, 188.27296} - {488.34833, 188.27296} + {506.43799000000143, 188.27296000000001} + {488.34830099999772, 188.27296000000001} Style @@ -47697,6 +48491,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -47721,9 +48517,9 @@ public} 1413 Points - {443.5, 188.24643} - {235.153, 188} - {161.30902, 209.87553} + {443.50001292434291, 188.24642732444889} + {235.15299999999999, 188} + {161.30900536794388, 209.87554713440119} Style @@ -47735,6 +48531,8 @@ public} HopType 1 + Legacy + TailArrow 0 @@ -47747,7 +48545,7 @@ public} Bounds - {{507.93799, 175.675}, {41.848301, 25.1959}} + {{507.93799000000001, 175.67500000000001}, {41.848300999999999, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -47798,7 +48596,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -47810,7 +48608,7 @@ public} Bounds - {{445, 175.675}, {41.848301, 25.1959}} + {{445, 175.67500000000001}, {41.848300999999999, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -47861,7 +48659,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -47883,9 +48681,9 @@ public} 1406 Points - {380.50058, 233.13788} - {235.153, 232} - {161.61835, 218.71022} + {380.5005619669999, 233.13788881159931} + {235.15299999999999, 232} + {161.61832695545547, 218.71021798660706} Style @@ -47893,6 +48691,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -47915,8 +48715,8 @@ public} 1405 Points - {506.49997, 233.31296} - {488.22382, 233.31296} + {506.50000000000148, 233.31296} + {488.22380099999771, 233.31296} Style @@ -47924,6 +48724,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -47948,8 +48750,8 @@ public} 1404 Points - {443.5, 233.31296} - {425.22382, 233.31296} + {443.50000000000142, 233.31296} + {425.22380099999771, 233.31296} Style @@ -47957,6 +48759,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -47971,7 +48775,7 @@ public} Bounds - {{508, 220.715}, {41.723801, 25.1959}} + {{508, 220.715}, {41.723801000000002, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -48022,7 +48826,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -48034,7 +48838,7 @@ public} Bounds - {{445, 220.715}, {41.723801, 25.1959}} + {{445, 220.715}, {41.723801000000002, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -48085,7 +48889,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -48097,7 +48901,7 @@ public} Bounds - {{382, 220.715}, {41.723801, 25.1959}} + {{382, 220.715}, {41.723801000000002, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -48148,7 +48952,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -48170,8 +48974,8 @@ public} 1399 Points - {334.74399, 71.089981} - {310.52557, 71.089973} + {334.74399000000011, 71.089977378333955} + {310.52560099999528, 71.08996598871181} Style @@ -48179,6 +48983,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -48203,8 +49009,8 @@ public} 1398 Points - {362.87106, 121.74297} - {334.01712, 121.93832} + {362.87102292423242, 121.74301307501921} + {334.01715439016812, 121.93839029016435} Style @@ -48212,6 +49018,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -48236,8 +49044,8 @@ public} 1397 Points - {264.883, 71.089958} - {245.09261, 71.089966} + {264.88300000000362, 71.089966000000004} + {245.09260099999506, 71.089966000000004} Style @@ -48245,6 +49053,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -48269,8 +49079,8 @@ public} 1396 Points - {288.375, 122.09296} - {260.02081, 122.09296} + {288.37500000000142, 122.09296000000001} + {260.02080099999773, 122.09296000000001} Style @@ -48278,6 +49088,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -48302,9 +49114,9 @@ public} 1395 Points - {200.55212, 78.404716} + {200.55211983415774, 78.404713482921878} {178, 86} - {146.71527, 201.28236} + {146.71527042470825, 201.28235841955174} Style @@ -48312,6 +49124,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -48334,9 +49148,9 @@ public} 1394 Points - {215.84497, 127.41272} + {215.84496210552052, 127.41270837254197} {186, 134.69099} - {150.34364, 201.40709} + {150.34364460964159, 201.40708397817136} Style @@ -48344,6 +49158,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -48366,8 +49182,8 @@ public} 1393 Points - {294.91104, 381.09579} - {271.45206, 381.25488} + {294.91103298539883, 381.09577408486496} + {271.45204213705921, 381.25483293307997} Style @@ -48375,6 +49191,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -48399,8 +49217,8 @@ public} 1392 Points - {233.65298, 381.38297} - {205.29932, 381.38297} + {233.65300000000553, 381.38297} + {205.29930099999302, 381.38297} Style @@ -48408,6 +49226,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -48432,9 +49252,9 @@ public} 1391 Points - {177.70024, 367.51428} - {148, 320.16599} - {143.5889, 229.42412} + {177.70024339154733, 367.5143014563925} + {148, 320.16599000000002} + {143.58888902652544, 229.42413081597715} Style @@ -48442,6 +49262,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -48454,7 +49276,7 @@ public} Bounds - {{266.383, 58.492001}, {42.642601, 25.1959}} + {{266.38299999999998, 58.492001000000002}, {42.642600999999999, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -48505,7 +49327,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -48517,7 +49339,7 @@ public} Bounds - {{200.95, 58.492001}, {42.642601, 25.1959}} + {{200.94999999999999, 58.492001000000002}, {42.642600999999999, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -48568,7 +49390,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -48580,7 +49402,7 @@ public} Bounds - {{289.875, 109.495}, {42.642601, 25.1959}} + {{289.875, 109.495}, {42.642600999999999, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -48631,7 +49453,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -48643,7 +49465,7 @@ public} Bounds - {{216.797, 109.495}, {41.723801, 25.1959}} + {{216.797, 109.495}, {41.723801000000002, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -48694,7 +49516,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -48706,7 +49528,7 @@ public} Bounds - {{235.153, 368.785}, {34.799301, 25.1959}} + {{235.15299999999999, 368.78500000000003}, {34.799301, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -48757,7 +49579,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -48769,7 +49591,7 @@ public} Bounds - {{169, 368.785}, {34.799301, 25.1959}} + {{169, 368.78500000000003}, {34.799301, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -48820,7 +49642,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -48832,7 +49654,7 @@ public} Bounds - {{335.74399, 57.844898}, {85.697998, 26.4902}} + {{335.74399, 57.844898000000001}, {85.697997999999998, 26.490200000000002}} Class ShapedGraphic FontInfo @@ -48892,7 +49714,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -48904,7 +49726,7 @@ public} Bounds - {{295.91101, 367.491}, {104.094, 26.4902}} + {{295.91100999999998, 367.49099999999999}, {104.09399999999999, 26.490200000000002}} Class ShapedGraphic FontInfo @@ -48964,7 +49786,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -48976,7 +49798,7 @@ public} Bounds - {{363.871, 108.201}, {85.697998, 26.4902}} + {{363.87099999999998, 108.20099999999999}, {85.697997999999998, 26.490200000000002}} Class ShapedGraphic FontInfo @@ -49036,7 +49858,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -49058,9 +49880,9 @@ public} 1378 Points - {201.35382, 321.388} - {176, 295.54401} - {148.67354, 229.31252} + {201.35381618193065, 321.38800287276672} + {176, 295.54401000000001} + {148.6735426330483, 229.31251387276578} Style @@ -49068,6 +49890,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -49080,7 +49904,7 @@ public} Bounds - {{324.26801, 322.452}, {98, 26.4902}} + {{324.26801, 322.452}, {98, 26.490200000000002}} Class ShapedGraphic FontInfo @@ -49140,7 +49964,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -49162,8 +49986,8 @@ public} 1376 Points - {323.26807, 335.34665} - {299.80905, 335.18225} + {323.26803455142368, 335.34672660081003} + {299.80903457408533, 335.18233832881759} Style @@ -49171,6 +49995,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -49195,8 +50021,8 @@ public} 1375 Points - {262.01001, 335.04996} - {233.65631, 335.04996} + {262.01001000000122, 335.04996} + {233.65629099999811, 335.04996} Style @@ -49204,6 +50030,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -49218,7 +50046,7 @@ public} Bounds - {{263.51001, 322.452}, {34.799301, 25.1959}} + {{263.51001000000002, 322.452}, {34.799301, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -49269,7 +50097,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -49281,7 +50109,7 @@ public} Bounds - {{197.35699, 322.452}, {34.799301, 25.1959}} + {{197.35699, 322.452}, {34.799301, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -49332,7 +50160,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -49344,7 +50172,7 @@ public} Bounds - {{349.21399, 276.11801}, {85.697998, 26.4902}} + {{349.21399000000002, 276.11801000000003}, {85.697997999999998, 26.490200000000002}} Class ShapedGraphic FontInfo @@ -49404,7 +50232,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -49426,8 +50254,8 @@ public} 1353 Points - {119.11181, 181.90291} - {133.0667, 201.50797} + {119.11178240416517, 181.90290089654152} + {133.06662888629472, 201.50796284323093} Style @@ -49435,6 +50263,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -49449,7 +50279,7 @@ public} Bounds - {{81, 154.59801}, {56.208099, 26.4902}} + {{81, 154.59800999999999}, {56.208098999999997, 26.490200000000002}} Class ShapedGraphic FontInfo @@ -49509,7 +50339,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -49531,8 +50361,8 @@ public} 1351 Points - {348.21402, 289.03125} - {325.453, 288.85901} + {348.21401863687936, 289.03125637167972} + {325.45296829455776, 288.85899834422935} Style @@ -49540,6 +50370,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -49559,7 +50391,7 @@ public} 1349 Points - {59.105995, 215.97496} + {59.105999000005021, 215.97496921814334} {19, 215.97501} Style @@ -49568,6 +50400,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -49594,8 +50428,8 @@ public} 1348 Points - {124.00457, 215.51639} - {96.904732, 215.78661} + {124.00456006428449, 215.51636944896845} + {96.904740040840082, 215.78654822679539} Style @@ -49603,6 +50437,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -49627,9 +50463,9 @@ public} 1347 Points - {223.46669, 278.52917} - {190.401, 258.63699} - {157.43411, 228.57712} + {223.4666806066096, 278.52915918956234} + {190.40100000000001, 258.63699000000003} + {157.43410962432461, 228.5771153125558} Style @@ -49637,6 +50473,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -49659,8 +50497,8 @@ public} 1346 Points - {287.65399, 288.71597} - {259.29932, 288.71597} + {287.65399000000122, 288.71597000000003} + {259.29930099999814, 288.71597000000003} Style @@ -49668,6 +50506,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -49682,7 +50522,7 @@ public} Bounds - {{289.15399, 276.11801}, {34.799301, 25.1959}} + {{289.15399000000002, 276.11801000000003}, {34.799301, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -49733,7 +50573,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -49745,7 +50585,7 @@ public} Bounds - {{60.605999, 203.377}, {34.799301, 25.1959}} + {{60.605998999999997, 203.37700000000001}, {34.799301, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -49796,7 +50636,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -49808,7 +50648,7 @@ public} Bounds - {{125.504, 202.73}, {34.799301, 25.1959}} + {{125.504, 202.72999999999999}, {34.799301, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -49859,7 +50699,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -49871,7 +50711,7 @@ public} Bounds - {{223, 276.11801}, {34.799301, 25.1959}} + {{223, 276.11801000000003}, {34.799301, 25.195900000000002}} Class ShapedGraphic FontInfo @@ -49922,7 +50762,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -49944,9 +50784,9 @@ public} 1408 Points - {271.4523, 381.35678} + {271.45229019621632, 381.3567691846124} {529, 381} - {528.87506, 247.41089} + {528.87508323846941, 247.41089934421669} Style @@ -49958,6 +50798,8 @@ public} HopType 1 + Legacy + TailArrow 0 @@ -49980,9 +50822,9 @@ public} 1407 Points - {299.80933, 335.04486} + {299.80931059018405, 335.04484958511853} {466, 335} - {465.88107, 247.4109} + {465.88104669073903, 247.41089861670889} Style @@ -49994,6 +50836,8 @@ public} HopType 1 + Legacy + TailArrow 0 @@ -50016,9 +50860,9 @@ public} 1401 Points - {325.45224, 288.97565} + {325.45222687229528, 288.97563028168793} {400.005, 290} - {402.15149, 247.40898} + {402.15149118263014, 247.40899867030225} Style @@ -50030,6 +50874,8 @@ public} HopType 1 + Legacy + TailArrow 0 @@ -50052,9 +50898,9 @@ public} 1412 Points - {310.52557, 71.081444} + {310.52559964835092, 71.081443601468038} {529, 71} - {528.87872, 174.175} + {528.87871325778553, 174.17500103642652} Style @@ -50062,6 +50908,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -50084,9 +50932,9 @@ public} 1411 Points - {334.01758, 122.07925} + {334.01759749284878, 122.0792472295731} {466, 122} - {465.94028, 174.175} + {465.94028562577921, 174.17500098241206} Style @@ -50094,6 +50942,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -50134,6 +50984,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -50162,18 +51014,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -50181,6 +51028,8 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -50188,7 +51037,7 @@ public} ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -50203,8 +51052,8 @@ public} 1355 Points - {260.38043, 156.05652} - {237.83276, 155.92326} + {260.38043504321911, 156.05658216792366} + {237.83276433104297, 155.9233589416632} Style @@ -50212,6 +51061,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -50226,7 +51077,7 @@ public} Bounds - {{261.88, 138.24001}, {59.090199, 36}} + {{261.88, 138.24001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -50277,7 +51128,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -50299,8 +51150,8 @@ public} 1353 Points - {291.42511, 114.00002} - {291.42508, 136.74001} + {291.42509144082641, 114} + {291.42509144082641, 136.74001000000001} Style @@ -50308,6 +51159,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -50322,7 +51175,7 @@ public} Bounds - {{256.414, 77}, {70.022202, 36}} + {{256.41399999999999, 77}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -50382,7 +51235,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -50404,8 +51257,8 @@ public} 1351 Points - {376.06311, 259.22} - {376.06308, 236.97998} + {376.06309132493197, 259.22000000000003} + {376.06309132493197, 236.97999999999999} Style @@ -50413,6 +51266,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -50427,7 +51282,7 @@ public} Bounds - {{341.052, 260.22}, {70.022202, 36}} + {{341.05200000000002, 260.22000000000003}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -50487,7 +51342,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -50504,8 +51359,8 @@ public} 1349 Points - {91.106003, 155.74001} - {57, 155.74001} + {91.106003000000001, 155.74001000000001} + {57, 155.74001000000001} Style @@ -50513,6 +51368,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -50534,8 +51391,8 @@ public} 1348 Points - {175.743, 155.74001} - {153.1962, 155.74001} + {175.74300000000002, 155.74001000000001} + {153.19620199999997, 155.74001000000001} Style @@ -50543,6 +51400,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -50567,8 +51426,8 @@ public} 1347 Points - {266.76505, 199.4913} - {231.44806, 173.72873} + {266.76508717744383, 199.49131270779776} + {231.44810074802018, 173.72870494134722} Style @@ -50576,6 +51435,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -50600,8 +51461,8 @@ public} 1346 Points - {345.01801, 217.48} - {322.47021, 217.48} + {345.01801, 217.47999999999999} + {322.47019899999998, 217.47999999999999} Style @@ -50609,6 +51470,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -50623,7 +51486,7 @@ public} Bounds - {{346.51801, 199.48}, {59.090199, 36}} + {{346.51801, 199.47999999999999}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -50674,7 +51537,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -50686,7 +51549,7 @@ public} Bounds - {{92.606003, 137.74001}, {59.090199, 36}} + {{92.606003000000001, 137.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -50737,7 +51600,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -50749,7 +51612,7 @@ public} Bounds - {{177.243, 137.74001}, {59.090199, 36}} + {{177.24299999999999, 137.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -50800,7 +51663,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -50812,7 +51675,7 @@ public} Bounds - {{261.88, 199.48}, {59.090199, 36}} + {{261.88, 199.47999999999999}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -50863,7 +51726,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -50903,6 +51766,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -50931,18 +51796,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -50950,6 +51810,8 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -50957,7 +51819,7 @@ public} ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -50972,8 +51834,8 @@ public} 1358 Points - {316.08517, 199.49129} - {351.40213, 173.72873} + {316.08511275347195, 199.49131157240026} + {351.40209621824948, 173.72870531503636} Style @@ -50990,6 +51852,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -51018,8 +51882,8 @@ public} 1357 Points - {345.01743, 155.92349} - {322.46979, 156.05675} + {345.01743501877928, 155.92343592287992} + {322.46976433078368, 156.05665776224751} Style @@ -51027,6 +51891,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -51041,7 +51907,7 @@ public} Bounds - {{346.517, 137.74001}, {59.090199, 36}} + {{346.517, 137.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -51092,7 +51958,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -51114,8 +51980,8 @@ public} 1355 Points - {260.38043, 156.05652} - {237.83276, 155.92326} + {260.38043504321911, 156.05658216792366} + {237.83276433104297, 155.9233589416632} Style @@ -51123,6 +51989,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -51137,7 +52005,7 @@ public} Bounds - {{261.88, 138.24001}, {59.090199, 36}} + {{261.88, 138.24001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -51188,7 +52056,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -51210,8 +52078,8 @@ public} 1353 Points - {376.06274, 113} - {376.06235, 136.24001} + {376.06278672082556, 112.99999999986319} + {376.0624023076067, 136.24001000018086} Style @@ -51219,6 +52087,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -51233,7 +52103,7 @@ public} Bounds - {{341.052, 76}, {70.022202, 36}} + {{341.05200000000002, 76}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -51293,7 +52163,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -51315,8 +52185,8 @@ public} 1351 Points - {376.06311, 259.22} - {376.06308, 236.97998} + {376.06309132493197, 259.22000000000003} + {376.06309132493197, 236.97999999999999} Style @@ -51333,6 +52203,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -51347,7 +52219,7 @@ public} Bounds - {{341.052, 260.22}, {70.022202, 36}} + {{341.05200000000002, 260.22000000000003}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -51407,7 +52279,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -51424,8 +52296,8 @@ public} 1349 Points - {91.106003, 155.74001} - {57, 155.74001} + {91.106003000000001, 155.74001000000001} + {57, 155.74001000000001} Style @@ -51433,6 +52305,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -51454,8 +52328,8 @@ public} 1348 Points - {175.743, 155.74001} - {153.1962, 155.74001} + {175.74300000000002, 155.74001000000001} + {153.19620199999997, 155.74001000000001} Style @@ -51463,6 +52337,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -51487,8 +52363,8 @@ public} 1347 Points - {266.76505, 199.4913} - {231.44806, 173.72873} + {266.76508717744383, 199.49131270779776} + {231.44810074802018, 173.72870494134722} Style @@ -51505,6 +52381,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -51529,8 +52407,8 @@ public} 1346 Points - {345.01801, 217.48} - {322.47021, 217.48} + {345.01801, 217.47999999999999} + {322.47019899999998, 217.47999999999999} Style @@ -51547,6 +52425,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -51561,7 +52441,7 @@ public} Bounds - {{346.51801, 199.48}, {59.090199, 36}} + {{346.51801, 199.47999999999999}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -51621,7 +52501,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -51633,7 +52513,7 @@ public} Bounds - {{92.606003, 137.74001}, {59.090199, 36}} + {{92.606003000000001, 137.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -51684,7 +52564,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -51696,7 +52576,7 @@ public} Bounds - {{177.243, 137.74001}, {59.090199, 36}} + {{177.24299999999999, 137.74001000000001}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -51747,7 +52627,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -51759,7 +52639,7 @@ public} Bounds - {{261.88, 199.48}, {59.090199, 36}} + {{261.88, 199.47999999999999}, {59.090198999999998, 36}} Class ShapedGraphic FontInfo @@ -51819,7 +52699,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -51859,6 +52739,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -51887,18 +52769,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -51906,6 +52783,8 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -51913,7 +52792,7 @@ public} ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -51928,8 +52807,8 @@ public} 1355 Points - {227.07736, 156.05452} - {209.55544, 155.92572} + {227.07736876176557, 156.05447135461304} + {209.55543292523862, 155.92562734359672} Style @@ -51937,6 +52816,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -51951,7 +52832,7 @@ public} Bounds - {{228.577, 138.24001}, {47.464802, 36}} + {{228.577, 138.24001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -52002,7 +52883,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -52024,8 +52905,8 @@ public} 1353 Points - {252.09016, 114.99998} - {252.20578, 136.74002} + {252.09013148977803, 114.99998586293822} + {252.20573196673513, 136.74003119736491} Style @@ -52033,6 +52914,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -52047,7 +52930,7 @@ public} Bounds - {{216.978, 78}, {70.022202, 36}} + {{216.97800000000001, 78}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -52107,7 +52990,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -52124,8 +53007,8 @@ public} 1349 Points - {91.106003, 155.74001} - {57, 155.74001} + {91.106003000000001, 155.74001000000001} + {57, 155.74001000000001} Style @@ -52133,6 +53016,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -52154,8 +53039,8 @@ public} 1348 Points - {159.091, 155.74001} - {141.57071, 155.74001} + {159.09100000000004, 155.74001000000001} + {141.57070599999997, 155.74001000000001} Style @@ -52163,6 +53048,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -52177,7 +53064,7 @@ public} Bounds - {{92.605904, 137.74001}, {47.464802, 36}} + {{92.605903999999995, 137.74001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -52228,7 +53115,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -52240,7 +53127,7 @@ public} Bounds - {{160.591, 137.74001}, {47.464802, 36}} + {{160.59100000000001, 137.74001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -52291,7 +53178,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -52331,6 +53218,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -52359,18 +53248,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -52378,6 +53262,8 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -52385,7 +53271,7 @@ public} ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -52400,8 +53286,8 @@ public} 1363 Points - {447.70377, 278} - {447.70364, 255.00002} + {447.70372214514873, 278.00000000002228} + {447.70356858401294, 254.99999999995103} Style @@ -52409,6 +53295,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -52423,7 +53311,7 @@ public} Bounds - {{408.332, 279}, {78.743698, 36}} + {{408.33199999999999, 279}, {78.743697999999995, 36}} Class ShapedGraphic FontInfo @@ -52483,7 +53371,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -52505,8 +53393,8 @@ public} 1361 Points - {297.24832, 215.8026} - {266.79361, 175.43742} + {297.24829618531498, 215.80258092537119} + {266.79352023839203, 175.4374286320627} Style @@ -52514,6 +53402,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -52538,8 +53428,8 @@ public} 1360 Points - {422.47137, 235.31451} - {404.95041, 235.18573} + {422.47137875811234, 235.31446227335817} + {404.95042289037946, 235.18562610633339} Style @@ -52547,6 +53437,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -52561,7 +53453,7 @@ public} Bounds - {{423.97101, 217.5}, {47.464802, 36}} + {{423.97100999999998, 217.5}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -52612,7 +53504,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -52634,8 +53526,8 @@ public} 1358 Points - {354.48599, 235} - {336.96478, 235} + {354.48599000000002, 235} + {336.96480199999996, 235} Style @@ -52643,6 +53535,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -52657,7 +53551,7 @@ public} Bounds - {{288, 217}, {47.464802, 36}} + {{288, 217}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -52708,7 +53602,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -52720,7 +53614,7 @@ public} Bounds - {{355.98599, 217}, {47.464802, 36}} + {{355.98599000000002, 217}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -52771,7 +53665,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -52793,8 +53687,8 @@ public} 1355 Points - {227.07736, 156.05452} - {209.55544, 155.92572} + {227.07736876176557, 156.05447135461304} + {209.55543292523862, 155.92562734359672} Style @@ -52802,6 +53696,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -52816,7 +53712,7 @@ public} Bounds - {{228.577, 138.24001}, {47.464802, 36}} + {{228.577, 138.24001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -52867,7 +53763,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -52889,8 +53785,8 @@ public} 1353 Points - {252.09016, 114.99998} - {252.20578, 136.74002} + {252.09013148977803, 114.99998586293822} + {252.20573196673513, 136.74003119736491} Style @@ -52898,6 +53794,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -52912,7 +53810,7 @@ public} Bounds - {{216.978, 78}, {70.022202, 36}} + {{216.97800000000001, 78}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -52972,7 +53870,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -52989,8 +53887,8 @@ public} 1349 Points - {91.106003, 155.74001} - {57, 155.74001} + {91.106003000000001, 155.74001000000001} + {57, 155.74001000000001} Style @@ -52998,6 +53896,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -53019,8 +53919,8 @@ public} 1348 Points - {159.091, 155.74001} - {141.57071, 155.74001} + {159.09100000000004, 155.74001000000001} + {141.57070599999997, 155.74001000000001} Style @@ -53028,6 +53928,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -53042,7 +53944,7 @@ public} Bounds - {{92.605904, 137.74001}, {47.464802, 36}} + {{92.605903999999995, 137.74001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -53093,7 +53995,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -53105,7 +54007,7 @@ public} Bounds - {{160.591, 137.74001}, {47.464802, 36}} + {{160.59100000000001, 137.74001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -53156,7 +54058,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -53196,6 +54098,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -53224,18 +54128,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -53243,6 +54142,8 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -53250,7 +54151,7 @@ public} ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -53265,8 +54166,8 @@ public} 1361 Points - {301.58401, 156.24001} - {277.54181, 156.24001} + {301.58400999999998, 156.24001000000001} + {277.54180200000002, 156.24001000000001} Style @@ -53274,6 +54175,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -53298,8 +54201,8 @@ public} 1360 Points - {437.55536, 156.55452} - {420.03442, 156.42574} + {437.55535875857527, 156.55447215693673} + {420.03444288999418, 156.42563620319169} Style @@ -53307,6 +54210,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -53321,7 +54226,7 @@ public} Bounds - {{439.05499, 138.74001}, {47.464802, 36}} + {{439.05498999999998, 138.74001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -53372,7 +54277,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -53394,8 +54299,8 @@ public} 1358 Points - {369.57001, 156.24001} - {352.0488, 156.24001} + {369.57001000000002, 156.24001000000001} + {352.04881199999994, 156.24001000000001} Style @@ -53403,6 +54308,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -53417,7 +54324,7 @@ public} Bounds - {{303.08401, 138.24001}, {47.464802, 36}} + {{303.08400999999998, 138.24001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -53468,7 +54375,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -53480,7 +54387,7 @@ public} Bounds - {{371.07001, 138.24001}, {47.464802, 36}} + {{371.07001000000002, 138.24001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -53531,7 +54438,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -53553,8 +54460,8 @@ public} 1355 Points - {227.07736, 156.05452} - {209.55544, 155.92572} + {227.07736876176557, 156.05447135461304} + {209.55543292523862, 155.92562734359672} Style @@ -53562,6 +54469,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -53576,7 +54485,7 @@ public} Bounds - {{228.577, 138.24001}, {47.464802, 36}} + {{228.577, 138.24001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -53627,7 +54536,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -53649,8 +54558,8 @@ public} 1353 Points - {462.78717, 115} - {462.78723, 137.24001} + {462.78718498147748, 114.99999999999024} + {462.78728328405111, 137.24001000002286} Style @@ -53658,6 +54567,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -53672,7 +54583,7 @@ public} Bounds - {{427.776, 78}, {70.022202, 36}} + {{427.77600000000001, 78}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -53732,7 +54643,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -53749,8 +54660,8 @@ public} 1349 Points - {91.106003, 155.74001} - {57, 155.74001} + {91.106003000000001, 155.74001000000001} + {57, 155.74001000000001} Style @@ -53758,6 +54669,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -53779,8 +54692,8 @@ public} 1348 Points - {159.091, 155.74001} - {141.57071, 155.74001} + {159.09100000000004, 155.74001000000001} + {141.57070599999997, 155.74001000000001} Style @@ -53788,6 +54701,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -53802,7 +54717,7 @@ public} Bounds - {{92.605904, 137.74001}, {47.464802, 36}} + {{92.605903999999995, 137.74001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -53853,7 +54768,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -53865,7 +54780,7 @@ public} Bounds - {{160.591, 137.74001}, {47.464802, 36}} + {{160.59100000000001, 137.74001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -53916,7 +54831,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -53956,6 +54871,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -53984,18 +54901,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -54003,6 +54915,8 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -54010,7 +54924,7 @@ public} ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -54025,8 +54939,8 @@ public} 1369 Points - {308.39114, 213.98749} - {270.73465, 175.21254} + {308.39114717478412, 213.98748390129518} + {270.73466282550805, 175.2125366940609} Style @@ -54034,6 +54948,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -54058,8 +54974,8 @@ public} 1368 Points - {462.78699, 278.48001} - {462.7872, 252.96001} + {462.78701460372969, 278.48001000003353} + {462.78722360410762, 252.9600099999447} Style @@ -54067,6 +54983,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -54081,7 +54999,7 @@ public} Bounds - {{423.41501, 279.48001}, {78.743698, 36}} + {{423.41501, 279.48000999999999}, {78.743697999999995, 36}} Class ShapedGraphic FontInfo @@ -54141,7 +55059,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -54163,8 +55081,8 @@ public} 1366 Points - {437.55536, 233.27452} - {420.03442, 233.14574} + {437.55535875857527, 233.27447215693672} + {420.03444288999418, 233.14563620319169} Style @@ -54172,6 +55090,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -54186,7 +55106,7 @@ public} Bounds - {{439.05499, 215.46001}, {47.464802, 36}} + {{439.05498999999998, 215.46001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -54237,7 +55157,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -54259,8 +55179,8 @@ public} 1364 Points - {369.57001, 232.96001} - {352.0488, 232.96001} + {369.57001000000002, 232.96001000000001} + {352.04881199999994, 232.96001000000001} Style @@ -54268,6 +55188,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -54282,7 +55204,7 @@ public} Bounds - {{303.08401, 214.96001}, {47.464802, 36}} + {{303.08400999999998, 214.96001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -54333,7 +55255,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -54345,7 +55267,7 @@ public} Bounds - {{371.07001, 214.96001}, {47.464802, 36}} + {{371.07001000000002, 214.96001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -54396,7 +55318,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -54418,8 +55340,8 @@ public} 1361 Points - {301.58401, 156.24001} - {277.54181, 156.24001} + {301.58400999999998, 156.24001000000001} + {277.54180200000002, 156.24001000000001} Style @@ -54427,6 +55349,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -54451,8 +55375,8 @@ public} 1360 Points - {437.55536, 156.55452} - {420.03442, 156.42574} + {437.55535875857527, 156.55447215693673} + {420.03444288999418, 156.42563620319169} Style @@ -54460,6 +55384,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -54474,7 +55400,7 @@ public} Bounds - {{439.05499, 138.74001}, {47.464802, 36}} + {{439.05498999999998, 138.74001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -54525,7 +55451,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -54547,8 +55473,8 @@ public} 1358 Points - {369.57001, 156.24001} - {352.0488, 156.24001} + {369.57001000000002, 156.24001000000001} + {352.04881199999994, 156.24001000000001} Style @@ -54556,6 +55482,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -54570,7 +55498,7 @@ public} Bounds - {{303.08401, 138.24001}, {47.464802, 36}} + {{303.08400999999998, 138.24001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -54621,7 +55549,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -54633,7 +55561,7 @@ public} Bounds - {{371.07001, 138.24001}, {47.464802, 36}} + {{371.07001000000002, 138.24001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -54684,7 +55612,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -54706,8 +55634,8 @@ public} 1355 Points - {227.07736, 156.05452} - {209.55544, 155.92572} + {227.07736876176557, 156.05447135461304} + {209.55543292523862, 155.92562734359672} Style @@ -54715,6 +55643,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -54729,7 +55659,7 @@ public} Bounds - {{228.577, 138.24001}, {47.464802, 36}} + {{228.577, 138.24001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -54780,7 +55710,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -54802,8 +55732,8 @@ public} 1353 Points - {462.78717, 115} - {462.78723, 137.24001} + {462.78718498147748, 114.99999999999024} + {462.78728328405111, 137.24001000002286} Style @@ -54811,6 +55741,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -54825,7 +55757,7 @@ public} Bounds - {{427.776, 78}, {70.022202, 36}} + {{427.77600000000001, 78}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -54885,7 +55817,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -54902,8 +55834,8 @@ public} 1349 Points - {91.106003, 155.74001} - {57, 155.74001} + {91.106003000000001, 155.74001000000001} + {57, 155.74001000000001} Style @@ -54911,6 +55843,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -54932,8 +55866,8 @@ public} 1348 Points - {159.091, 155.74001} - {141.57071, 155.74001} + {159.09100000000004, 155.74001000000001} + {141.57070599999997, 155.74001000000001} Style @@ -54941,6 +55875,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -54955,7 +55891,7 @@ public} Bounds - {{92.605904, 137.74001}, {47.464802, 36}} + {{92.605903999999995, 137.74001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -55006,7 +55942,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -55018,7 +55954,7 @@ public} Bounds - {{160.591, 137.74001}, {47.464802, 36}} + {{160.59100000000001, 137.74001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -55069,7 +56005,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -55109,6 +56045,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -55137,18 +56075,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -55156,6 +56089,8 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -55163,7 +56098,7 @@ public} ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -55178,8 +56113,8 @@ public} 1372 Points - {479.82697, 223.33736} - {445.73279, 184.86267} + {479.82698153341681, 223.33736763206988} + {445.73281410679397, 184.86265255817079} Style @@ -55187,6 +56122,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -55211,8 +56148,8 @@ public} 1371 Points - {471.54001, 242.46001} - {454.01978, 242.46001} + {471.54001, 242.46001000000001} + {454.01979199999994, 242.46001000000001} Style @@ -55220,6 +56157,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -55234,7 +56173,7 @@ public} Bounds - {{473.04001, 224.46001}, {47.464802, 36}} + {{473.04001, 224.46001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -55285,7 +56224,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -55307,8 +56246,8 @@ public} 1369 Points - {274.39117, 222.98749} - {236.73466, 184.21252} + {274.39114798419092, 222.98748366031722} + {236.73466528913372, 184.21253596058631} Style @@ -55316,6 +56255,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -55340,8 +56281,8 @@ public} 1368 Points - {496.77277, 287.47998} - {496.77264, 261.95999} + {496.77272655043186, 287.48001000002074} + {496.77256208132775, 261.96000999995499} Style @@ -55349,6 +56290,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -55363,7 +56306,7 @@ public} Bounds - {{457.401, 288.48001}, {78.743698, 36}} + {{457.40100000000001, 288.48000999999999}, {78.743697999999995, 36}} Class ShapedGraphic FontInfo @@ -55423,7 +56366,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -55445,8 +56388,8 @@ public} 1366 Points - {403.55536, 242.27452} - {386.03442, 242.14574} + {403.55535875857527, 242.27447215693672} + {386.03444288999418, 242.14563620319169} Style @@ -55454,6 +56397,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -55468,7 +56413,7 @@ public} Bounds - {{405.05499, 224.46001}, {47.464802, 36}} + {{405.05498999999998, 224.46001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -55519,7 +56464,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -55541,8 +56486,8 @@ public} 1364 Points - {335.57001, 241.96001} - {318.0488, 241.96001} + {335.57001000000002, 241.96001000000001} + {318.04881199999994, 241.96001000000001} Style @@ -55550,6 +56495,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -55564,7 +56511,7 @@ public} Bounds - {{269.08401, 223.96001}, {47.464802, 36}} + {{269.08400999999998, 223.96001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -55615,7 +56562,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -55627,7 +56574,7 @@ public} Bounds - {{337.07001, 223.96001}, {47.464802, 36}} + {{337.07001000000002, 223.96001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -55678,7 +56625,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -55700,8 +56647,8 @@ public} 1361 Points - {267.58401, 165.24001} - {243.54181, 165.24001} + {267.58400999999998, 165.24001000000001} + {243.54180199999999, 165.24001000000001} Style @@ -55709,6 +56656,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -55733,8 +56682,8 @@ public} 1360 Points - {403.55536, 165.55452} - {386.03442, 165.42574} + {403.55535875857527, 165.55447215693673} + {386.03444288999418, 165.42563620319169} Style @@ -55742,6 +56691,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -55756,7 +56707,7 @@ public} Bounds - {{405.05499, 147.74001}, {47.464802, 36}} + {{405.05498999999998, 147.74001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -55807,7 +56758,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -55829,8 +56780,8 @@ public} 1358 Points - {335.57001, 165.24001} - {318.0488, 165.24001} + {335.57001000000002, 165.24001000000001} + {318.04881199999994, 165.24001000000001} Style @@ -55838,6 +56789,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -55852,7 +56805,7 @@ public} Bounds - {{269.08401, 147.24001}, {47.464802, 36}} + {{269.08400999999998, 147.24001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -55903,7 +56856,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -55915,7 +56868,7 @@ public} Bounds - {{337.07001, 147.24001}, {47.464802, 36}} + {{337.07001000000002, 147.24001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -55966,7 +56919,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -55988,8 +56941,8 @@ public} 1355 Points - {193.07736, 165.05452} - {175.55544, 164.92572} + {193.07736876176557, 165.05447135461304} + {175.55543292523859, 164.92562734359672} Style @@ -55997,6 +56950,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -56011,7 +56966,7 @@ public} Bounds - {{194.577, 147.24001}, {47.464802, 36}} + {{194.577, 147.24001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -56062,7 +57017,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -56084,8 +57039,8 @@ public} 1353 Points - {428.78708, 125} - {428.7872, 146.24001} + {428.7871107983093, 124.99999999997962} + {428.78724639711464, 146.24001000004122} Style @@ -56093,6 +57048,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -56107,7 +57064,7 @@ public} Bounds - {{386.67499, 88}, {84.223999, 36}} + {{386.67498999999998, 88}, {84.223999000000006, 36}} Class ShapedGraphic FontInfo @@ -56167,7 +57124,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -56184,8 +57141,8 @@ public} 1349 Points - {57.105999, 164.74001} - {23, 164.74001} + {57.105998999999997, 164.74001000000001} + {23, 164.74001000000001} Style @@ -56193,6 +57150,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -56214,8 +57173,8 @@ public} 1348 Points - {125.09101, 164.74001} - {107.5707, 164.74001} + {125.09100000000001, 164.74001000000001} + {107.57070199999998, 164.74001000000001} Style @@ -56223,6 +57182,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -56237,7 +57198,7 @@ public} Bounds - {{58.6059, 146.74001}, {47.464802, 36}} + {{58.605899999999998, 146.74001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -56288,7 +57249,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -56300,7 +57261,7 @@ public} Bounds - {{126.591, 146.74001}, {47.464802, 36}} + {{126.59099999999999, 146.74001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -56351,7 +57312,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -56391,6 +57352,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -56419,18 +57382,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -56438,6 +57396,8 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -56445,7 +57405,7 @@ public} ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -56460,8 +57420,8 @@ public} 1378 Points - {271.04837, 236.73451} - {253.52744, 236.60573} + {271.04836875849406, 236.73446217737097} + {253.5274328904415, 236.6056260907543} Style @@ -56478,6 +57438,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -56502,8 +57464,8 @@ public} 1377 Points - {203.063, 236.42} - {185.54181, 236.42} + {203.06300000000002, 236.41999999999999} + {185.54180199999999, 236.41999999999999} Style @@ -56520,6 +57482,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -56544,8 +57508,8 @@ public} 1376 Points - {140.77962, 217.98888} - {104.41618, 183.67111} + {140.77960899277986, 217.98887938712019} + {104.41619290622474, 183.67112999481472} Style @@ -56562,6 +57526,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -56576,7 +57542,7 @@ public} Bounds - {{272.548, 218.92}, {47.464802, 36}} + {{272.548, 218.91999999999999}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -56636,7 +57602,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -56648,7 +57614,7 @@ public} Bounds - {{136.577, 218.42}, {47.464802, 36}} + {{136.577, 218.41999999999999}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -56708,7 +57674,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -56720,7 +57686,7 @@ public} Bounds - {{204.563, 218.42}, {47.464802, 36}} + {{204.56299999999999, 218.41999999999999}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -56780,7 +57746,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -56802,8 +57768,8 @@ public} 1369 Points - {360.07477, 219.5088} - {316.93805, 183.15121} + {360.07474594381495, 219.50878771078675} + {316.93805654459203, 183.15122173628609} Style @@ -56811,6 +57777,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -56835,8 +57803,8 @@ public} 1368 Points - {516.703, 283.88} - {516.70325, 256.92001} + {516.70300569890378, 283.88000000003848} + {516.70324223587465, 256.9199999999438} Style @@ -56844,6 +57812,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -56858,7 +57828,7 @@ public} Bounds - {{477.33099, 284.88}, {78.743698, 36}} + {{477.33098999999999, 284.88}, {78.743697999999995, 36}} Class ShapedGraphic FontInfo @@ -56918,7 +57888,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -56940,8 +57910,8 @@ public} 1366 Points - {491.47141, 237.23451} - {473.95041, 237.10573} + {491.47137875811234, 237.23446227335816} + {473.95042289037946, 237.10562610633337} Style @@ -56949,6 +57919,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -56963,7 +57935,7 @@ public} Bounds - {{492.97101, 219.42}, {47.464802, 36}} + {{492.97100999999998, 219.41999999999999}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -57014,7 +57986,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -57036,8 +58008,8 @@ public} 1364 Points - {423.48599, 236.92} - {405.96478, 236.92} + {423.48599000000002, 236.91999999999999} + {405.96480199999996, 236.91999999999999} Style @@ -57045,6 +58017,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -57059,7 +58033,7 @@ public} Bounds - {{357, 218.92}, {47.464802, 36}} + {{357, 218.91999999999999}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -57110,7 +58084,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -57122,7 +58096,7 @@ public} Bounds - {{424.98599, 218.92}, {47.464802, 36}} + {{424.98599000000002, 218.91999999999999}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -57173,7 +58147,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -57195,8 +58169,8 @@ public} 1361 Points - {135.077, 165.24001} - {110.1188, 165.24001} + {135.07700000000003, 165.24001000000001} + {110.11880099999998, 165.24001000000001} Style @@ -57204,6 +58178,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -57228,8 +58204,8 @@ public} 1360 Points - {271.04837, 165.55452} - {253.52744, 165.42574} + {271.04836875849406, 165.554472177371} + {253.5274328904415, 165.42563609075432} Style @@ -57237,6 +58213,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -57251,7 +58229,7 @@ public} Bounds - {{272.548, 147.74001}, {47.464802, 36}} + {{272.548, 147.74001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -57302,7 +58280,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -57324,8 +58302,8 @@ public} 1358 Points - {203.063, 165.24001} - {185.54181, 165.24001} + {203.06300000000002, 165.24001000000001} + {185.54180199999999, 165.24001000000001} Style @@ -57333,6 +58311,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -57347,7 +58327,7 @@ public} Bounds - {{136.577, 147.24001}, {47.464802, 36}} + {{136.577, 147.24001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -57398,7 +58378,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -57410,7 +58390,7 @@ public} Bounds - {{204.563, 147.24001}, {47.464802, 36}} + {{204.56299999999999, 147.24001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -57461,7 +58441,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -57473,7 +58453,7 @@ public} Bounds - {{61.153999, 147.24001}, {47.464802, 36}} + {{61.153998999999999, 147.24001000000001}, {47.464801999999999, 36}} Class ShapedGraphic FontInfo @@ -57524,7 +58504,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -57546,8 +58526,8 @@ public} 1353 Points - {296.28009, 125} - {296.28021, 146.24001} + {296.28012079830933, 124.99999999997964} + {296.28025639711467, 146.24001000004122} Style @@ -57555,6 +58535,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -57569,7 +58551,7 @@ public} Bounds - {{254.168, 88}, {84.223999, 36}} + {{254.16800000000001, 88}, {84.223999000000006, 36}} Class ShapedGraphic FontInfo @@ -57629,7 +58611,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -57646,8 +58628,8 @@ public} 1349 Points - {59.654476, 165.02934} - {25, 164.74001} + {59.654474444282087, 165.02934509481523} + {25, 164.74001000000001} Style @@ -57655,6 +58637,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 Pattern @@ -57699,6 +58683,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -57727,18 +58713,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {760, 542}} + {{0, 0}, {1106, 882}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -57746,16 +58727,18 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} CanvasSize - {760, 542} + {1106, 882} ColumnAlign 1 ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -57770,8 +58753,8 @@ public} 1353 Points - {283.02399, 85.479996} - {283.02386, 106.87} + {283.02399177752682, 85.479999999983463} + {283.02386881601626, 106.87000000002314} Style @@ -57779,6 +58762,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -57803,8 +58788,8 @@ public} 1352 Points - {360.02402, 344.87} - {360.0239, 325.76001} + {360.02399174555666, 344.87000000001649} + {360.0238818586451, 325.76000999997098} Style @@ -57812,6 +58797,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -57826,7 +58813,7 @@ public} Bounds - {{325.013, 345.87}, {70.022202, 36}} + {{325.01299999999998, 345.87}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -57886,7 +58873,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -57908,8 +58895,8 @@ public} 1350 Points - {334.44501, 306.26001} - {308.60248, 306.26001} + {334.44501000000002, 306.26001000000002} + {308.60251100000005, 306.26001000000002} Style @@ -57917,6 +58904,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -57931,7 +58920,7 @@ public} Bounds - {{335.94501, 288.26001}, {48.157501, 36}} + {{335.94501000000002, 288.26001000000002}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -57982,7 +58971,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -58004,8 +58993,8 @@ public} 1348 Points - {334.44501, 194} - {308.60248, 194} + {334.44501000000002, 194} + {308.60251100000005, 194} Style @@ -58013,6 +59002,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -58027,7 +59018,7 @@ public} Bounds - {{335.94501, 176}, {48.157501, 36}} + {{335.94501000000002, 176}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -58078,7 +59069,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -58100,8 +59091,8 @@ public} 1346 Points - {269.82895, 287.02304} - {219.21857, 213.23698} + {269.82896767781688, 287.0230282891726} + {219.21855421661053, 213.23698168343634} Style @@ -58109,6 +59100,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -58123,7 +59116,7 @@ public} Bounds - {{258.94501, 288.26001}, {48.157501, 36}} + {{258.94501000000002, 288.26001000000002}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -58174,7 +59167,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -58196,8 +59189,8 @@ public} 1343 Points - {257.44501, 126.37} - {231.60251, 126.37} + {257.44501000000002, 126.37} + {231.60251099999999, 126.37} Style @@ -58205,6 +59198,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -58219,7 +59214,7 @@ public} Bounds - {{258.94501, 108.37}, {48.157501, 36}} + {{258.94501000000002, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -58270,7 +59265,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -58292,8 +59287,8 @@ public} 1333 Points - {257.44501, 194} - {231.60251, 194} + {257.44501000000002, 194} + {231.60251099999999, 194} Style @@ -58301,6 +59296,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -58315,7 +59312,7 @@ public} Bounds - {{258.94501, 176}, {48.157501, 36}} + {{258.94501000000002, 176}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -58366,7 +59363,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -58378,7 +59375,7 @@ public} Bounds - {{248.013, 48.48}, {70.022202, 36}} + {{248.01300000000001, 48.479999999999997}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -58438,7 +59435,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -58460,8 +59457,8 @@ public} 1325 Points - {185.5211, 176.13846} - {148.89633, 144.23161} + {185.52111309295319, 176.13843207142133} + {148.89638854612505, 144.23157670922984} Style @@ -58469,6 +59466,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -58481,7 +59480,7 @@ public} Bounds - {{181.94501, 176}, {48.157501, 36}} + {{181.94501, 176}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -58532,7 +59531,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -58554,8 +59553,8 @@ public} 1317 Points - {360.02402, 231.13} - {360.0239, 213.49998} + {360.02398873744175, 231.13000000001747} + {360.02388456960483, 213.49999999996965} Style @@ -58563,6 +59562,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -58575,7 +59576,7 @@ public} Bounds - {{325.013, 232.13}, {70.022202, 36}} + {{325.01299999999998, 232.13}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -58635,7 +59636,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -58657,8 +59658,8 @@ public} 1308 Points - {180.44501, 126.37} - {153.9725, 126.37} + {180.44501000000002, 126.37} + {153.97250099999999, 126.37} Style @@ -58666,6 +59667,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -58678,7 +59681,7 @@ public} Bounds - {{181.94501, 108.37}, {48.157501, 36}} + {{181.94501, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -58729,7 +59732,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -58751,8 +59754,8 @@ public} 1306 Points - {102.815, 126.37} - {76.657501, 126.37} + {102.81500000000003, 126.37} + {76.657500999999982, 126.37} Style @@ -58760,6 +59763,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -58772,7 +59777,7 @@ public} Bounds - {{104.315, 108.37}, {48.157501, 36}} + {{104.315, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -58823,7 +59828,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -58835,7 +59840,7 @@ public} Bounds - {{27, 108.37}, {48.157501, 36}} + {{27, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -58886,7 +59891,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -58926,6 +59931,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -58946,7 +59953,7 @@ public} UniqueID 33 VPages - 1 + 2 ActiveLayerIndex @@ -58956,18 +59963,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {1106, 882}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -58975,16 +59977,18 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} CanvasSize - {756, 553} + {1106, 882} ColumnAlign 1 ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -58999,8 +60003,8 @@ public} 1359 Points - {437.32144, 84.999878} - {437.6637, 106.87019} + {437.32141490593403, 84.999877589380944} + {437.66364585295582, 106.87018358897363} Style @@ -59008,6 +60012,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -59022,7 +60028,7 @@ public} Bounds - {{402.013, 48}, {70.022202, 36}} + {{402.01299999999998, 48}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -59082,7 +60088,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -59104,8 +60110,8 @@ public} 1357 Points - {412.39001, 126.37} - {386.54749, 126.37} + {412.39001000000002, 126.37} + {386.54751100000004, 126.37} Style @@ -59113,6 +60119,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -59127,7 +60135,7 @@ public} Bounds - {{413.89001, 108.37}, {48.157501, 36}} + {{413.89001000000002, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -59178,7 +60186,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -59200,8 +60208,8 @@ public} 1355 Points - {335.39001, 126.37} - {308.60248, 126.37} + {335.39001000000002, 126.37} + {308.60251100000005, 126.37} Style @@ -59209,6 +60217,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -59223,7 +60233,7 @@ public} Bounds - {{336.89001, 108.37}, {48.157501, 36}} + {{336.89001000000002, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -59274,7 +60284,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -59296,8 +60306,8 @@ public} 1353 Points - {283.02399, 85} - {283.02386, 106.87} + {283.02399276781193, 84.999999999983771} + {283.02386818686705, 106.87000000002288} Style @@ -59305,6 +60315,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -59329,8 +60341,8 @@ public} 1350 Points - {334.44501, 309} - {308.60248, 309} + {334.44501000000002, 309} + {308.60251100000005, 309} Style @@ -59347,6 +60359,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -59361,7 +60375,7 @@ public} Bounds - {{335.94501, 291}, {48.157501, 36}} + {{335.94501000000002, 291}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -59421,7 +60435,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -59443,8 +60457,8 @@ public} 1348 Points - {334.44501, 194} - {308.60248, 194} + {334.44501000000002, 194} + {308.60251100000005, 194} Style @@ -59452,6 +60466,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -59466,7 +60482,7 @@ public} Bounds - {{335.94501, 176}, {48.157501, 36}} + {{335.94501000000002, 176}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -59517,7 +60533,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -59539,8 +60555,8 @@ public} 1346 Points - {270.13699, 289.7536} - {218.91046, 213.2464} + {270.13703665209022, 289.75359450174653} + {218.91048337316423, 213.24640552803342} Style @@ -59557,6 +60573,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -59571,7 +60589,7 @@ public} Bounds - {{258.94501, 291}, {48.157501, 36}} + {{258.94501000000002, 291}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -59631,7 +60649,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -59653,8 +60671,8 @@ public} 1343 Points - {257.44501, 126.37} - {231.60251, 126.37} + {257.44501000000002, 126.37} + {231.60251099999999, 126.37} Style @@ -59662,6 +60680,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -59676,7 +60696,7 @@ public} Bounds - {{258.94501, 108.37}, {48.157501, 36}} + {{258.94501000000002, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -59727,7 +60747,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -59749,8 +60769,8 @@ public} 1333 Points - {257.44501, 194} - {231.60251, 194} + {257.44501000000002, 194} + {231.60251099999999, 194} Style @@ -59758,6 +60778,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -59772,7 +60794,7 @@ public} Bounds - {{258.94501, 176}, {48.157501, 36}} + {{258.94501000000002, 176}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -59823,7 +60845,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -59835,7 +60857,7 @@ public} Bounds - {{248.013, 48}, {70.022202, 36}} + {{248.01300000000001, 48}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -59895,7 +60917,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -59917,8 +60939,8 @@ public} 1325 Points - {185.5211, 176.13846} - {148.89633, 144.23161} + {185.52111309295319, 176.13843207142133} + {148.89638854612505, 144.23157670922984} Style @@ -59926,6 +60948,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -59938,7 +60962,7 @@ public} Bounds - {{181.94501, 176}, {48.157501, 36}} + {{181.94501, 176}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -59989,7 +61013,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -60011,8 +61035,8 @@ public} 1317 Points - {360.02402, 232.5} - {360.0239, 213.5} + {360.02399152922078, 232.5000000000166} + {360.02388205844159, 213.49999999997087} Style @@ -60020,6 +61044,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -60032,7 +61058,7 @@ public} Bounds - {{325.013, 233.5}, {70.022202, 36}} + {{325.01299999999998, 233.5}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -60092,7 +61118,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -60114,8 +61140,8 @@ public} 1308 Points - {180.44501, 126.37} - {153.9725, 126.37} + {180.44501000000002, 126.37} + {153.97250099999999, 126.37} Style @@ -60123,6 +61149,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -60135,7 +61163,7 @@ public} Bounds - {{181.94501, 108.37}, {48.157501, 36}} + {{181.94501, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -60186,7 +61214,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -60208,8 +61236,8 @@ public} 1306 Points - {102.815, 126.37} - {76.657501, 126.37} + {102.81500000000003, 126.37} + {76.657500999999982, 126.37} Style @@ -60217,6 +61245,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -60229,7 +61259,7 @@ public} Bounds - {{104.315, 108.37}, {48.157501, 36}} + {{104.315, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -60280,7 +61310,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -60292,7 +61322,7 @@ public} Bounds - {{27, 108.37}, {48.157501, 36}} + {{27, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -60343,7 +61373,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -60357,7 +61387,7 @@ public} GridInfo HPages - 1 + 2 KeepToScale Layers @@ -60383,6 +61413,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -60403,7 +61435,7 @@ public} UniqueID 34 VPages - 1 + 2 ActiveLayerIndex @@ -60413,18 +61445,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {1106, 882}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -60432,16 +61459,18 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} CanvasSize - {756, 553} + {1106, 882} ColumnAlign 1 ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -60456,8 +61485,8 @@ public} 1363 Points - {441.02402, 234.73999} - {441.02386, 208.87} + {441.02400021385233, 234.74001000001408} + {441.02386298550249, 208.86999999997929} Style @@ -60465,6 +61494,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -60489,8 +61520,8 @@ public} 1362 Points - {441.02402, 144} - {441.02386, 169.87} + {441.02400021383534, 143.99999999998593} + {441.02386298551528, 169.87000000002072} Style @@ -60498,6 +61529,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -60512,7 +61545,7 @@ public} Bounds - {{406.013, 107}, {70.022202, 36}} + {{406.01299999999998, 107}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -60572,7 +61605,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -60594,8 +61627,8 @@ public} 1357 Points - {415.44501, 189.37} - {389.60248, 189.37} + {415.44501000000002, 189.37} + {389.60251100000005, 189.37} Style @@ -60603,6 +61636,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -60617,7 +61652,7 @@ public} Bounds - {{416.94501, 171.37}, {48.157501, 36}} + {{416.94501000000002, 171.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -60668,7 +61703,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -60690,8 +61725,8 @@ public} 1355 Points - {338.44501, 189.37} - {312.60248, 189.37} + {338.44501000000002, 189.37} + {312.60251100000005, 189.37} Style @@ -60699,6 +61734,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -60713,7 +61750,7 @@ public} Bounds - {{339.94501, 171.37}, {48.157501, 36}} + {{339.94501000000002, 171.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -60764,7 +61801,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -60786,8 +61823,8 @@ public} 1348 Points - {338.44501, 257} - {312.60248, 257} + {338.44501000000002, 257} + {312.60251100000005, 257} Style @@ -60795,6 +61832,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -60809,7 +61848,7 @@ public} Bounds - {{339.94501, 239}, {48.157501, 36}} + {{339.94501000000002, 239}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -60860,7 +61899,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -60882,8 +61921,8 @@ public} 1343 Points - {261.44501, 189.37} - {235.60251, 189.37} + {261.44501000000002, 189.37} + {235.60251099999999, 189.37} Style @@ -60891,6 +61930,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -60905,7 +61946,7 @@ public} Bounds - {{262.94501, 171.37}, {48.157501, 36}} + {{262.94501000000002, 171.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -60956,7 +61997,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -60978,8 +62019,8 @@ public} 1333 Points - {261.44501, 257} - {235.60251, 257} + {261.44501000000002, 257} + {235.60251099999999, 257} Style @@ -60987,6 +62028,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -61001,7 +62044,7 @@ public} Bounds - {{262.94501, 239}, {48.157501, 36}} + {{262.94501000000002, 239}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -61052,7 +62095,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -61064,7 +62107,7 @@ public} Bounds - {{406.013, 235.74001}, {70.022202, 36}} + {{406.01299999999998, 235.74001000000001}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -61124,7 +62167,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -61146,8 +62189,8 @@ public} 1325 Points - {189.5211, 239.13844} - {152.89633, 207.2316} + {189.52111334846529, 239.13843183174757} + {152.8963892580704, 207.23157604141815} Style @@ -61155,6 +62198,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -61167,7 +62212,7 @@ public} Bounds - {{185.94501, 239}, {48.157501, 36}} + {{185.94501, 239}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -61218,7 +62263,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -61240,8 +62285,8 @@ public} 1317 Points - {364.02399, 297.26001} - {364.02386, 276.5} + {364.02399044110081, 297.26001000001702} + {364.023869640898, 276.49999999997652} Style @@ -61249,6 +62294,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -61261,7 +62308,7 @@ public} Bounds - {{329.013, 298.26001}, {70.022202, 36}} + {{329.01299999999998, 298.26001000000002}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -61321,7 +62368,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -61343,8 +62390,8 @@ public} 1308 Points - {184.44501, 189.37} - {157.9725, 189.37} + {184.44501000000002, 189.37} + {157.97250099999999, 189.37} Style @@ -61352,6 +62399,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -61364,7 +62413,7 @@ public} Bounds - {{185.94501, 171.37}, {48.157501, 36}} + {{185.94501, 171.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -61415,7 +62464,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -61437,8 +62486,8 @@ public} 1306 Points - {106.815, 189.37} - {80.657501, 189.37} + {106.81500000000003, 189.37} + {80.657500999999982, 189.37} Style @@ -61446,6 +62495,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -61458,7 +62509,7 @@ public} Bounds - {{108.315, 171.37}, {48.157501, 36}} + {{108.315, 171.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -61509,7 +62560,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -61521,7 +62572,7 @@ public} Bounds - {{31, 171.37}, {48.157501, 36}} + {{31, 171.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -61572,7 +62623,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -61586,7 +62637,7 @@ public} GridInfo HPages - 1 + 2 KeepToScale Layers @@ -61612,6 +62663,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -61632,7 +62685,7 @@ public} UniqueID 35 VPages - 1 + 2 ActiveLayerIndex @@ -61642,18 +62695,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {1106, 882}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -61661,16 +62709,18 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} CanvasSize - {756, 553} + {1106, 882} ColumnAlign 1 ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -61685,8 +62735,8 @@ public} 1367 Points - {488.44501, 126.37} - {462.60248, 126.37} + {488.44500999999997, 126.37} + {462.60251100000005, 126.37} Style @@ -61694,6 +62744,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -61718,8 +62770,8 @@ public} 1366 Points - {642.44501, 126.37} - {616.60248, 126.37} + {642.44501000000002, 126.37} + {616.60251099999994, 126.37} Style @@ -61727,6 +62779,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -61741,7 +62795,7 @@ public} Bounds - {{643.94501, 108.37}, {48.157501, 36}} + {{643.94501000000002, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -61792,7 +62846,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -61814,8 +62868,8 @@ public} 1364 Points - {565.44501, 126.37} - {539.60248, 126.37} + {565.44501000000002, 126.37} + {539.60251099999994, 126.37} Style @@ -61823,6 +62877,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -61837,7 +62893,7 @@ public} Bounds - {{566.94501, 108.37}, {48.157501, 36}} + {{566.94501000000002, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -61888,7 +62944,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -61900,7 +62956,7 @@ public} Bounds - {{489.94501, 108.37}, {48.157501, 36}} + {{489.94501000000002, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -61951,7 +63007,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -61973,8 +63029,8 @@ public} 1361 Points - {668.02399, 87} - {668.02386, 106.87} + {668.02398847721838, 86.999999999982464} + {668.02387080207791, 106.87000000002401} Style @@ -61982,6 +63038,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -61994,7 +63052,7 @@ public} Bounds - {{633.013, 50}, {70.022202, 36}} + {{633.01300000000003, 50}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -62054,7 +63112,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -62076,8 +63134,8 @@ public} 1359 Points - {437.02402, 87} - {437.0239, 106.87} + {437.02399321099017, 86.999999999983899} + {437.02388048637829, 106.8700000000284} Style @@ -62085,6 +63143,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -62099,7 +63159,7 @@ public} Bounds - {{402.013, 50}, {70.022202, 36}} + {{402.01299999999998, 50}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -62159,7 +63219,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -62181,8 +63241,8 @@ public} 1357 Points - {411.44501, 126.37} - {385.60248, 126.37} + {411.44501000000002, 126.37} + {385.60251100000005, 126.37} Style @@ -62190,6 +63250,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -62204,7 +63266,7 @@ public} Bounds - {{412.94501, 108.37}, {48.157501, 36}} + {{412.94501000000002, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -62255,7 +63317,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -62277,8 +63339,8 @@ public} 1355 Points - {334.44501, 126.37} - {308.60248, 126.37} + {334.44501000000002, 126.37} + {308.60251100000005, 126.37} Style @@ -62286,6 +63348,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -62300,7 +63364,7 @@ public} Bounds - {{335.94501, 108.37}, {48.157501, 36}} + {{335.94501000000002, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -62351,7 +63415,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -62373,8 +63437,8 @@ public} 1353 Points - {437.02402, 175} - {437.02386, 145.87} + {437.02400542242691, 175.00000000001265} + {437.02385888691617, 145.86999999998091} Style @@ -62382,6 +63446,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -62406,8 +63472,8 @@ public} 1348 Points - {334.44501, 194} - {308.60248, 194} + {334.44501000000002, 194} + {308.60251100000005, 194} Style @@ -62424,6 +63490,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -62438,7 +63506,7 @@ public} Bounds - {{335.94501, 176}, {48.157501, 36}} + {{335.94501000000002, 176}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -62498,7 +63566,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -62520,8 +63588,8 @@ public} 1343 Points - {257.44501, 126.37} - {231.60251, 126.37} + {257.44501000000002, 126.37} + {231.60251099999999, 126.37} Style @@ -62529,6 +63597,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -62543,7 +63613,7 @@ public} Bounds - {{258.94501, 108.37}, {48.157501, 36}} + {{258.94501000000002, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -62594,7 +63664,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -62616,8 +63686,8 @@ public} 1333 Points - {257.44501, 194} - {231.60251, 194} + {257.44501000000002, 194} + {231.60251099999999, 194} Style @@ -62634,6 +63704,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -62648,7 +63720,7 @@ public} Bounds - {{258.94501, 176}, {48.157501, 36}} + {{258.94501000000002, 176}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -62708,7 +63780,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -62720,7 +63792,7 @@ public} Bounds - {{402.013, 176}, {70.022202, 36}} + {{402.01299999999998, 176}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -62780,7 +63852,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -62802,8 +63874,8 @@ public} 1325 Points - {185.5211, 176.13846} - {148.89633, 144.23161} + {185.52111309295319, 176.13843207142133} + {148.89638854612505, 144.23157670922984} Style @@ -62820,6 +63892,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -62832,7 +63906,7 @@ public} Bounds - {{181.94501, 176}, {48.157501, 36}} + {{181.94501, 176}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -62892,7 +63966,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -62914,8 +63988,8 @@ public} 1308 Points - {180.44501, 126.37} - {153.9725, 126.37} + {180.44501000000002, 126.37} + {153.97250099999999, 126.37} Style @@ -62923,6 +63997,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -62935,7 +64011,7 @@ public} Bounds - {{181.94501, 108.37}, {48.157501, 36}} + {{181.94501, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -62986,7 +64062,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -63008,8 +64084,8 @@ public} 1306 Points - {102.815, 126.37} - {76.657501, 126.37} + {102.81500000000003, 126.37} + {76.657500999999982, 126.37} Style @@ -63017,6 +64093,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -63029,7 +64107,7 @@ public} Bounds - {{104.315, 108.37}, {48.157501, 36}} + {{104.315, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -63080,7 +64158,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -63092,7 +64170,7 @@ public} Bounds - {{27, 108.37}, {48.157501, 36}} + {{27, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -63143,7 +64221,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -63157,7 +64235,7 @@ public} GridInfo HPages - 1 + 2 KeepToScale Layers @@ -63183,6 +64261,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -63203,7 +64283,7 @@ public} UniqueID 36 VPages - 1 + 2 ActiveLayerIndex @@ -63213,18 +64293,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {1106, 882}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -63232,16 +64307,18 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} CanvasSize - {756, 553} + {1106, 882} ColumnAlign 1 ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -63256,8 +64333,8 @@ public} 1367 Points - {488.44501, 126.37} - {462.60248, 126.37} + {488.44500999999997, 126.37} + {462.60251100000005, 126.37} Style @@ -63265,6 +64342,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -63289,8 +64368,8 @@ public} 1366 Points - {642.44501, 126.37} - {616.60248, 126.37} + {642.44501000000002, 126.37} + {616.60251099999994, 126.37} Style @@ -63298,6 +64377,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -63312,7 +64393,7 @@ public} Bounds - {{643.94501, 108.37}, {48.157501, 36}} + {{643.94501000000002, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -63363,7 +64444,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -63385,8 +64466,8 @@ public} 1364 Points - {565.44501, 126.37} - {539.60248, 126.37} + {565.44501000000002, 126.37} + {539.60251099999994, 126.37} Style @@ -63394,6 +64475,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -63408,7 +64491,7 @@ public} Bounds - {{566.94501, 108.37}, {48.157501, 36}} + {{566.94501000000002, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -63459,7 +64542,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -63471,7 +64554,7 @@ public} Bounds - {{489.94501, 108.37}, {48.157501, 36}} + {{489.94501000000002, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -63522,7 +64605,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -63544,8 +64627,8 @@ public} 1357 Points - {411.44501, 126.37} - {385.60248, 126.37} + {411.44501000000002, 126.37} + {385.60251100000005, 126.37} Style @@ -63553,6 +64636,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -63567,7 +64652,7 @@ public} Bounds - {{412.94501, 108.37}, {48.157501, 36}} + {{412.94501000000002, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -63618,7 +64703,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -63640,8 +64725,8 @@ public} 1355 Points - {334.44501, 126.37} - {308.60248, 126.37} + {334.44501000000002, 126.37} + {308.60251100000005, 126.37} Style @@ -63649,6 +64734,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -63663,7 +64750,7 @@ public} Bounds - {{335.94501, 108.37}, {48.157501, 36}} + {{335.94501000000002, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -63714,7 +64801,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -63736,8 +64823,8 @@ public} 1353 Points - {668.02399, 170} - {668.02386, 145.87} + {668.02399713773286, 170.00000000001495} + {668.02386523265375, 145.86999999997838} Style @@ -63745,6 +64832,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -63769,8 +64858,8 @@ public} 1343 Points - {257.44501, 126.37} - {231.60251, 126.37} + {257.44501000000002, 126.37} + {231.60251099999999, 126.37} Style @@ -63778,6 +64867,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -63792,7 +64883,7 @@ public} Bounds - {{258.94501, 108.37}, {48.157501, 36}} + {{258.94501000000002, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -63843,7 +64934,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -63855,7 +64946,7 @@ public} Bounds - {{633.013, 171}, {70.022202, 36}} + {{633.01300000000003, 171}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -63915,7 +65006,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -63937,8 +65028,8 @@ public} 1308 Points - {180.44501, 126.37} - {153.9725, 126.37} + {180.44501000000002, 126.37} + {153.97250099999999, 126.37} Style @@ -63946,6 +65037,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -63958,7 +65051,7 @@ public} Bounds - {{181.94501, 108.37}, {48.157501, 36}} + {{181.94501, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -64009,7 +65102,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -64031,8 +65124,8 @@ public} 1306 Points - {102.815, 126.37} - {76.657501, 126.37} + {102.81500000000003, 126.37} + {76.657500999999982, 126.37} Style @@ -64040,6 +65133,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -64052,7 +65147,7 @@ public} Bounds - {{104.315, 108.37}, {48.157501, 36}} + {{104.315, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -64103,7 +65198,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -64115,7 +65210,7 @@ public} Bounds - {{27, 108.37}, {48.157501, 36}} + {{27, 108.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -64166,7 +65261,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -64180,7 +65275,7 @@ public} GridInfo HPages - 1 + 2 KeepToScale Layers @@ -64206,6 +65301,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -64226,7 +65323,7 @@ public} UniqueID 37 VPages - 1 + 2 ActiveLayerIndex @@ -64236,18 +65333,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {1106, 882}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -64255,16 +65347,18 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} CanvasSize - {756, 553} + {1106, 882} ColumnAlign 1 ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -64279,8 +65373,8 @@ public} 1342 Points - {344.93799, 283.37} - {317.02747, 283.37} + {344.93799000000001, 283.37} + {317.02750100000003, 283.37} Style @@ -64297,6 +65391,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -64323,8 +65419,8 @@ public} 1341 Points - {370.51703, 233} - {370.51685, 263.87} + {370.51700982316453, 232.99999999998582} + {370.51684543743232, 263.87000000002172} Style @@ -64332,6 +65428,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -64346,7 +65444,7 @@ public} Bounds - {{335.50601, 196}, {70.022202, 36}} + {{335.50601, 196}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -64406,7 +65504,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -64418,7 +65516,7 @@ public} Bounds - {{346.43799, 265.37}, {48.157501, 36}} + {{346.43799000000001, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -64478,7 +65576,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -64500,8 +65598,8 @@ public} 1338 Points - {349.26843, 329.76517} - {312.69699, 300.41986} + {349.26844501595724, 329.76514293301767} + {312.69704187258435, 300.41986218794494} Style @@ -64509,6 +65607,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -64523,7 +65623,7 @@ public} Bounds - {{346.43799, 328.815}, {48.157501, 36}} + {{346.43799000000001, 328.815}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -64574,7 +65674,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -64596,8 +65696,8 @@ public} 1336 Points - {370.51703, 397.92496} - {370.51685, 366.315} + {370.51701094038162, 397.92499000001385} + {370.51684447282719, 366.31499999997868} Style @@ -64605,6 +65705,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -64619,7 +65721,7 @@ public} Bounds - {{335.50601, 398.92499}, {70.022202, 36}} + {{335.50601, 398.92498999999998}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -64679,7 +65781,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -64701,8 +65803,8 @@ public} 1334 Points - {291.44901, 233} - {291.44885, 263.87} + {291.44899795191895, 232.99999999998803} + {291.4488467732736, 263.87000000001831} Style @@ -64710,6 +65812,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -64724,7 +65828,7 @@ public} Bounds - {{256.43799, 196}, {70.022202, 36}} + {{256.43799000000001, 196}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -64784,7 +65888,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -64807,7 +65911,7 @@ public} Points {265.87, 283.37} - {239.71249, 283.37} + {239.712491, 283.37} Style @@ -64815,6 +65919,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -64827,7 +65933,7 @@ public} Bounds - {{267.37, 265.37}, {48.157501, 36}} + {{267.37, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -64887,7 +65993,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -64909,8 +66015,8 @@ public} 1303 Points - {188.55499, 283.37} - {162.39751, 283.37} + {188.55499000000003, 283.37} + {162.39750099999998, 283.37} Style @@ -64918,6 +66024,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -64930,7 +66038,7 @@ public} Bounds - {{112.74, 265.37}, {48.157501, 36}} + {{112.73999999999999, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -64981,7 +66089,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -64993,7 +66101,7 @@ public} Bounds - {{190.05499, 265.37}, {48.157501, 36}} + {{190.05499, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -65044,7 +66152,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -65058,7 +66166,7 @@ public} GridInfo HPages - 1 + 2 KeepToScale Layers @@ -65084,6 +66192,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -65104,7 +66214,7 @@ public} UniqueID 20 VPages - 1 + 2 ActiveLayerIndex @@ -65114,18 +66224,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {1106, 882}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -65133,16 +66238,18 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} CanvasSize - {756, 553} + {1106, 882} ColumnAlign 1 ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -65157,8 +66264,8 @@ public} 1342 Points - {369.31079, 232.99995} - {368.97559, 263.87009} + {369.31077493440733, 232.99994103729816} + {368.97553048548303, 263.8700884560194} Style @@ -65166,6 +66273,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -65180,7 +66289,7 @@ public} Bounds - {{334.50601, 196}, {70.022202, 36}} + {{334.50601, 196}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -65240,7 +66349,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -65263,7 +66372,7 @@ public} Points {343.185, 283.37} - {317.02747, 283.37} + {317.02750100000003, 283.37} Style @@ -65271,6 +66380,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -65285,7 +66396,7 @@ public} Bounds - {{344.685, 265.37}, {48.157501, 36}} + {{344.685, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -65336,7 +66447,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -65358,8 +66469,8 @@ public} 1338 Points - {347.4621, 323.73627} - {313.50333, 299.26379} + {347.46211771747522, 323.73625486641828} + {313.50336670614695, 299.26375588282764} Style @@ -65367,6 +66478,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -65381,7 +66494,7 @@ public} Bounds - {{345.43799, 321.63}, {48.157501, 36}} + {{345.43799000000001, 321.63}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -65432,7 +66545,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -65454,8 +66567,8 @@ public} 1336 Points - {369.51703, 390.73999} - {369.51685, 359.13} + {369.51701094038162, 390.73999000001385} + {369.51684447282719, 359.12999999997868} Style @@ -65463,6 +66576,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -65477,7 +66592,7 @@ public} Bounds - {{334.50601, 391.73999}, {70.022202, 36}} + {{334.50601, 391.73998999999998}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -65537,7 +66652,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -65559,8 +66674,8 @@ public} 1334 Points - {291.44901, 233} - {291.44885, 263.87} + {291.44899795191895, 232.99999999998803} + {291.4488467732736, 263.87000000001831} Style @@ -65568,6 +66683,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -65582,7 +66699,7 @@ public} Bounds - {{256.43799, 196}, {70.022202, 36}} + {{256.43799000000001, 196}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -65642,7 +66759,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -65665,7 +66782,7 @@ public} Points {265.87, 283.37} - {239.71249, 283.37} + {239.712491, 283.37} Style @@ -65673,6 +66790,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -65685,7 +66804,7 @@ public} Bounds - {{267.37, 265.37}, {48.157501, 36}} + {{267.37, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -65736,7 +66855,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -65758,8 +66877,8 @@ public} 1303 Points - {188.55499, 283.37} - {162.39751, 283.37} + {188.55499000000003, 283.37} + {162.39750099999998, 283.37} Style @@ -65767,6 +66886,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -65779,7 +66900,7 @@ public} Bounds - {{112.74, 265.37}, {48.157501, 36}} + {{112.73999999999999, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -65830,7 +66951,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -65842,7 +66963,7 @@ public} Bounds - {{190.05499, 265.37}, {48.157501, 36}} + {{190.05499, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -65893,7 +67014,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -65907,7 +67028,7 @@ public} GridInfo HPages - 1 + 2 KeepToScale Layers @@ -65933,6 +67054,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -65953,7 +67076,7 @@ public} UniqueID 21 VPages - 1 + 2 ActiveLayerIndex @@ -65963,18 +67086,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {760, 542}} + {{0, 0}, {1106, 882}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -65982,16 +67100,18 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} CanvasSize - {760, 542} + {1106, 882} ColumnAlign 1 ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -66006,8 +67126,8 @@ public} 1342 Points - {369.31079, 232.99995} - {368.97559, 263.87009} + {369.31077493440733, 232.99994103729816} + {368.97553048548303, 263.8700884560194} Style @@ -66015,6 +67135,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -66029,7 +67151,7 @@ public} Bounds - {{334.50601, 196}, {70.022202, 36}} + {{334.50601, 196}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -66089,7 +67211,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -66112,7 +67234,7 @@ public} Points {343.185, 283.37} - {317.02747, 283.37} + {317.02750100000003, 283.37} Style @@ -66120,6 +67242,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -66134,7 +67258,7 @@ public} Bounds - {{344.685, 265.37}, {48.157501, 36}} + {{344.685, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -66185,7 +67309,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -66207,8 +67331,8 @@ public} 1338 Points - {347.4621, 323.73627} - {313.50333, 299.26379} + {347.46211771747522, 323.73625486641828} + {313.50336670614695, 299.26375588282764} Style @@ -66216,6 +67340,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -66230,7 +67356,7 @@ public} Bounds - {{345.43799, 321.63}, {48.157501, 36}} + {{345.43799000000001, 321.63}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -66281,7 +67407,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -66303,8 +67429,8 @@ public} 1336 Points - {369.51703, 390.73999} - {369.51685, 359.13} + {369.51701094038162, 390.73999000001385} + {369.51684447282719, 359.12999999997868} Style @@ -66312,6 +67438,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -66326,7 +67454,7 @@ public} Bounds - {{334.50601, 391.73999}, {70.022202, 36}} + {{334.50601, 391.73998999999998}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -66386,7 +67514,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -66408,8 +67536,8 @@ public} 1334 Points - {369.40387, 175.99998} - {368.88, 263.87003} + {369.40384173953373, 175.99998223046069} + {368.88000046282599, 263.87002665430094} Style @@ -66417,6 +67545,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -66431,7 +67561,7 @@ public} Bounds - {{334.50601, 139}, {70.022202, 36}} + {{334.50601, 139}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -66491,7 +67621,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -66514,7 +67644,7 @@ public} Points {265.87, 283.37} - {239.71249, 283.37} + {239.712491, 283.37} Style @@ -66522,6 +67652,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -66534,7 +67666,7 @@ public} Bounds - {{267.37, 265.37}, {48.157501, 36}} + {{267.37, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -66585,7 +67717,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -66607,8 +67739,8 @@ public} 1303 Points - {188.55499, 283.37} - {162.39751, 283.37} + {188.55499000000003, 283.37} + {162.39750099999998, 283.37} Style @@ -66616,6 +67748,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -66628,7 +67762,7 @@ public} Bounds - {{112.74, 265.37}, {48.157501, 36}} + {{112.73999999999999, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -66679,7 +67813,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -66691,7 +67825,7 @@ public} Bounds - {{190.05499, 265.37}, {48.157501, 36}} + {{190.05499, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -66742,7 +67876,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -66782,6 +67916,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -66802,7 +67938,7 @@ public} UniqueID 22 VPages - 1 + 2 ActiveLayerIndex @@ -66812,18 +67948,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {1106, 882}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -66831,16 +67962,18 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} CanvasSize - {756, 553} + {1106, 882} ColumnAlign 1 ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -66856,7 +67989,7 @@ public} Points {418.5, 339.63} - {395.09546, 339.63} + {395.09549100000004, 339.63} Style @@ -66864,6 +67997,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -66878,7 +68013,7 @@ public} Bounds - {{420, 321.63}, {48.157501, 36}} + {{420, 321.63}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -66929,7 +68064,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -66952,7 +68087,7 @@ public} Points {343.185, 283.37} - {317.02747, 283.37} + {317.02750100000003, 283.37} Style @@ -66960,6 +68095,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -66974,7 +68111,7 @@ public} Bounds - {{344.685, 265.37}, {48.157501, 36}} + {{344.685, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -67025,7 +68162,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -67047,8 +68184,8 @@ public} 1338 Points - {347.4621, 323.73627} - {313.50333, 299.26379} + {347.46211771747522, 323.73625486641828} + {313.50336670614695, 299.26375588282764} Style @@ -67056,6 +68193,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -67070,7 +68209,7 @@ public} Bounds - {{345.43799, 321.63}, {48.157501, 36}} + {{345.43799000000001, 321.63}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -67121,7 +68260,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -67143,8 +68282,8 @@ public} 1336 Points - {444.07901, 390.48004} - {444.07886, 359.13} + {444.07899916879467, 390.48001000001165} + {444.07884764725753, 359.12999999998146} Style @@ -67152,6 +68291,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -67166,7 +68307,7 @@ public} Bounds - {{409.06799, 391.48001}, {70.022202, 36}} + {{409.06799000000001, 391.48000999999999}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -67226,7 +68367,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -67248,8 +68389,8 @@ public} 1334 Points - {368.76401, 232} - {368.76385, 263.87} + {368.76399933697928, 231.9999999999884} + {368.76384558432289, 263.87000000001785} Style @@ -67257,6 +68398,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -67271,7 +68414,7 @@ public} Bounds - {{333.75299, 195}, {70.022202, 36}} + {{333.75299000000001, 195}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -67331,7 +68474,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -67354,7 +68497,7 @@ public} Points {265.87, 283.37} - {239.71249, 283.37} + {239.712491, 283.37} Style @@ -67362,6 +68505,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -67374,7 +68519,7 @@ public} Bounds - {{267.37, 265.37}, {48.157501, 36}} + {{267.37, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -67425,7 +68570,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -67447,8 +68592,8 @@ public} 1303 Points - {188.55499, 283.37} - {162.39751, 283.37} + {188.55499000000003, 283.37} + {162.39750099999998, 283.37} Style @@ -67456,6 +68601,8 @@ public} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -67468,7 +68615,7 @@ public} Bounds - {{112.74, 265.37}, {48.157501, 36}} + {{112.73999999999999, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -67519,7 +68666,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -67531,7 +68678,7 @@ public} Bounds - {{190.05499, 265.37}, {48.157501, 36}} + {{190.05499, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -67582,7 +68729,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -67596,7 +68743,7 @@ public} GridInfo HPages - 1 + 2 KeepToScale Layers @@ -67622,6 +68769,8 @@ public} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -67642,7 +68791,7 @@ public} UniqueID 23 VPages - 1 + 2 ActiveLayerIndex @@ -67652,18 +68801,13 @@ public} BackgroundGraphic Bounds - {{0, 0}, {760, 548}} + {{0, 0}, {1106, 882}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -67671,21 +68815,23 @@ public} + BaseZoom + 0 CanvasOrigin {0, 0} CanvasSize - {760, 548} + {1106, 882} ColumnAlign 1 ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList Bounds - {{409.06799, 391.48001}, {70.022202, 36}} + {{409.06799000000001, 391.48000999999999}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -67745,7 +68891,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -67773,6 +68919,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -67782,7 +68930,7 @@ public} Bounds - {{333.75299, 195}, {70.022202, 36}} + {{333.75299000000001, 195}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -67842,7 +68990,7 @@ public} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -67870,6 +69018,8 @@ public} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -67879,7 +69029,7 @@ public} Bounds - {{397.82901, 442}, {92.5, 34}} + {{397.82900999999998, 442}, {92.5, 34}} Class ShapedGraphic FitText @@ -67922,7 +69072,7 @@ public} Pad 3 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -67937,7 +69087,7 @@ Merge In} Bounds - {{322.50299, 149}, {92.5, 34}} + {{322.50299000000001, 149}, {92.5, 34}} Class ShapedGraphic FitText @@ -67980,7 +69130,7 @@ Merge In} Pad 3 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -68005,8 +69155,8 @@ Merge Into} 1346 Points - {291.44894, 231.00002} - {291.44882, 262.87} + {291.44894331136646, 230.99999999999315} + {291.44882523543589, 262.8700000000166} Style @@ -68014,6 +69164,8 @@ Merge Into} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -68028,7 +69180,7 @@ Merge Into} Bounds - {{254.57401, 196}, {73.75, 34}} + {{254.57400999999999, 196}, {73.75, 34}} Class ShapedGraphic FitText @@ -68071,7 +69223,7 @@ Merge Into} Pad 3 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -68097,7 +69249,7 @@ Ancestor} Points {417.5, 339.63} - {395.09546, 339.63} + {395.09549100000004, 339.63} Style @@ -68105,6 +69257,8 @@ Ancestor} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -68119,7 +69273,7 @@ Ancestor} Bounds - {{420, 321.63}, {48.157501, 36}} + {{420, 321.63}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -68179,7 +69333,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -68202,7 +69356,7 @@ Ancestor} Points {342.185, 283.37} - {318.02747, 283.37} + {318.02750100000003, 283.37} Style @@ -68210,6 +69364,8 @@ Ancestor} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -68224,7 +69380,7 @@ Ancestor} Bounds - {{344.685, 265.37}, {48.157501, 36}} + {{344.685, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -68284,7 +69440,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -68306,8 +69462,8 @@ Ancestor} 1338 Points - {347.46213, 323.73624} - {314.31467, 299.84833} + {347.46212188932969, 323.73624804742036} + {314.31465996081067, 299.84839276188103} Style @@ -68315,6 +69471,8 @@ Ancestor} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -68329,7 +69487,7 @@ Ancestor} Bounds - {{345.43799, 321.63}, {48.157501, 36}} + {{345.43799000000001, 321.63}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -68380,7 +69538,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -68402,8 +69560,8 @@ Ancestor} 1336 Points - {444.07901, 390.48001} - {444.07889, 360.13} + {444.07900074461617, 390.48001000001125} + {444.07885657346878, 360.12999999996657} Style @@ -68411,6 +69569,8 @@ Ancestor} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -68435,8 +69595,8 @@ Ancestor} 1334 Points - {368.76401, 231.99998} - {368.76389, 262.87} + {368.76400139930342, 231.99999999998892} + {368.76385582175072, 262.87000000003292} Style @@ -68444,6 +69604,8 @@ Ancestor} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -68469,7 +69631,7 @@ Ancestor} Points {264.87, 283.37} - {239.71249, 283.37} + {239.712491, 283.37} Style @@ -68477,6 +69639,8 @@ Ancestor} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -68489,7 +69653,7 @@ Ancestor} Bounds - {{267.37, 265.37}, {48.157501, 36}} + {{267.37, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -68549,7 +69713,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -68571,8 +69735,8 @@ Ancestor} 1303 Points - {188.55499, 283.37} - {162.39751, 283.37} + {188.55499000000003, 283.37} + {162.39750099999998, 283.37} Style @@ -68580,6 +69744,8 @@ Ancestor} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -68592,7 +69758,7 @@ Ancestor} Bounds - {{112.74, 265.37}, {48.157501, 36}} + {{112.73999999999999, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -68643,7 +69809,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -68655,7 +69821,7 @@ Ancestor} Bounds - {{190.05499, 265.37}, {48.157501, 36}} + {{190.05499, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -68706,7 +69872,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -68746,6 +69912,8 @@ Ancestor} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -68766,7 +69934,7 @@ Ancestor} UniqueID 24 VPages - 1 + 2 ActiveLayerIndex @@ -68776,18 +69944,13 @@ Ancestor} BackgroundGraphic Bounds - {{0, 0}, {760, 542}} + {{0, 0}, {1106, 882}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -68795,16 +69958,18 @@ Ancestor} + BaseZoom + 0 CanvasOrigin {0, 0} CanvasSize - {760, 542} + {1106, 882} ColumnAlign 1 ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -68819,8 +69984,8 @@ Ancestor} 1347 Points - {477.75421, 302.48132} - {461.40326, 320.51871} + {477.75421890620379, 302.48133920021621} + {461.40328982552688, 320.5186610295346} Style @@ -68828,6 +69993,8 @@ Ancestor} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -68853,7 +70020,7 @@ Ancestor} Points {469.5, 283.37} - {394.34247, 283.37} + {394.34250100000003, 283.37} Style @@ -68861,6 +70028,8 @@ Ancestor} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -68875,7 +70044,7 @@ Ancestor} Bounds - {{471, 265.37}, {48.157501, 36}} + {{471, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -68926,7 +70095,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -68949,7 +70118,7 @@ Ancestor} Points {418.5, 339.63} - {395.09546, 339.63} + {395.09549100000004, 339.63} Style @@ -68957,6 +70126,8 @@ Ancestor} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -68971,7 +70142,7 @@ Ancestor} Bounds - {{420, 321.63}, {48.157501, 36}} + {{420, 321.63}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -69022,7 +70193,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -69045,7 +70216,7 @@ Ancestor} Points {343.185, 283.37} - {317.02747, 283.37} + {317.02750100000003, 283.37} Style @@ -69053,6 +70224,8 @@ Ancestor} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -69067,7 +70240,7 @@ Ancestor} Bounds - {{344.685, 265.37}, {48.157501, 36}} + {{344.685, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -69118,7 +70291,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -69140,8 +70313,8 @@ Ancestor} 1338 Points - {347.4621, 323.73627} - {313.50333, 299.26379} + {347.46211771747522, 323.73625486641828} + {313.50336670614695, 299.26375588282764} Style @@ -69149,6 +70322,8 @@ Ancestor} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -69163,7 +70338,7 @@ Ancestor} Bounds - {{345.43799, 321.63}, {48.157501, 36}} + {{345.43799000000001, 321.63}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -69214,7 +70389,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -69236,8 +70411,8 @@ Ancestor} 1336 Points - {444.07901, 385.96002} - {444.07886, 359.13} + {444.07899254099976, 385.95999000001342} + {444.07885350657904, 359.12999999997908} Style @@ -69245,6 +70420,8 @@ Ancestor} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -69259,7 +70436,7 @@ Ancestor} Bounds - {{409.06799, 386.95999}, {70.022202, 36}} + {{409.06799000000001, 386.95999}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -69319,7 +70496,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -69341,8 +70518,8 @@ Ancestor} 1334 Points - {495.07901, 239} - {495.07886, 263.87} + {495.07898929840968, 238.9999999999857} + {495.07885617638067, 263.870000000022} Style @@ -69350,6 +70527,8 @@ Ancestor} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -69364,7 +70543,7 @@ Ancestor} Bounds - {{460.06799, 202}, {70.022202, 36}} + {{460.06799000000001, 202}, {70.022201999999993, 36}} Class ShapedGraphic FontInfo @@ -69424,7 +70603,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -69447,7 +70626,7 @@ Ancestor} Points {265.87, 283.37} - {239.71249, 283.37} + {239.712491, 283.37} Style @@ -69455,6 +70634,8 @@ Ancestor} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -69467,7 +70648,7 @@ Ancestor} Bounds - {{267.37, 265.37}, {48.157501, 36}} + {{267.37, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -69518,7 +70699,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -69540,8 +70721,8 @@ Ancestor} 1303 Points - {188.55499, 283.37} - {162.39751, 283.37} + {188.55499000000003, 283.37} + {162.39750099999998, 283.37} Style @@ -69549,6 +70730,8 @@ Ancestor} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -69561,7 +70744,7 @@ Ancestor} Bounds - {{112.74, 265.37}, {48.157501, 36}} + {{112.73999999999999, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -69612,7 +70795,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -69624,7 +70807,7 @@ Ancestor} Bounds - {{190.05499, 265.37}, {48.157501, 36}} + {{190.05499, 265.37}, {48.157501000000003, 36}} Class ShapedGraphic FontInfo @@ -69675,7 +70858,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -69715,6 +70898,8 @@ Ancestor} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -69735,7 +70920,7 @@ Ancestor} UniqueID 25 VPages - 1 + 2 ActiveLayerIndex @@ -69745,18 +70930,13 @@ Ancestor} BackgroundGraphic Bounds - {{0, 0}, {760, 542}} + {{0, 0}, {1106, 882}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -69764,21 +70944,23 @@ Ancestor} + BaseZoom + 0 CanvasOrigin {0, 0} CanvasSize - {760, 542} + {1106, 882} ColumnAlign 1 ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList Bounds - {{301.539, 295.814}, {133, 27}} + {{301.53899999999999, 295.81400000000002}, {133, 27}} Class ShapedGraphic FitText @@ -69826,7 +71008,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -69843,8 +71025,8 @@ Ancestor} 2014 Points - {108.039, 309.314} - {632.039, 309.314} + {108.039, 309.31400000000002} + {632.03899999999999, 309.31400000000002} Style @@ -69852,6 +71034,8 @@ Ancestor} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -69863,7 +71047,7 @@ Ancestor} Bounds - {{303.539, 9.4784002}, {133, 27}} + {{303.53899999999999, 9.4784001999999994}, {133, 27}} Class ShapedGraphic FitText @@ -69911,7 +71095,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -69929,7 +71113,7 @@ Ancestor} Points {110.039, 22.978399} - {634.039, 22.978399} + {634.03899999999999, 22.978399} Style @@ -69937,6 +71121,8 @@ Ancestor} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -69948,7 +71134,7 @@ Ancestor} Bounds - {{551.41302, 497.371}, {89.252197, 36}} + {{551.41301999999996, 497.37099999999998}, {89.252196999999995, 36}} Class ShapedGraphic FontInfo @@ -69999,7 +71185,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -70011,7 +71197,7 @@ Ancestor} Bounds - {{551.41302, 445.11899}, {89.252197, 36}} + {{551.41301999999996, 445.11899}, {89.252196999999995, 36}} Class ShapedGraphic FontInfo @@ -70062,7 +71248,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -70074,7 +71260,7 @@ Ancestor} Bounds - {{551.41302, 392.866}, {89.252296, 36}} + {{551.41301999999996, 392.86599999999999}, {89.252296000000001, 36}} Class ShapedGraphic FontInfo @@ -70127,7 +71313,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -70139,7 +71325,7 @@ Ancestor} Bounds - {{439.41299, 497.371}, {89.252197, 36}} + {{439.41298999999998, 497.37099999999998}, {89.252196999999995, 36}} Class ShapedGraphic FontInfo @@ -70192,7 +71378,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -70204,7 +71390,7 @@ Ancestor} Bounds - {{439.41299, 445.11899}, {89.252197, 36}} + {{439.41298999999998, 445.11899}, {89.252196999999995, 36}} Class ShapedGraphic FontInfo @@ -70255,7 +71441,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -70267,7 +71453,7 @@ Ancestor} Bounds - {{439.41299, 392.866}, {89.252296, 36}} + {{439.41298999999998, 392.86599999999999}, {89.252296000000001, 36}} Class ShapedGraphic FontInfo @@ -70318,7 +71504,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -70330,7 +71516,7 @@ Ancestor} Bounds - {{327.41299, 497.371}, {89.252197, 36}} + {{327.41298999999998, 497.37099999999998}, {89.252196999999995, 36}} Class ShapedGraphic FontInfo @@ -70381,7 +71567,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -70393,7 +71579,7 @@ Ancestor} Bounds - {{327.41299, 445.11899}, {89.252197, 36}} + {{327.41298999999998, 445.11899}, {89.252196999999995, 36}} Class ShapedGraphic FontInfo @@ -70446,7 +71632,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -70458,7 +71644,7 @@ Ancestor} Bounds - {{327.41299, 392.866}, {89.252296, 36}} + {{327.41298999999998, 392.86599999999999}, {89.252296000000001, 36}} Class ShapedGraphic FontInfo @@ -70511,7 +71697,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -70523,7 +71709,7 @@ Ancestor} Bounds - {{215.41299, 497.371}, {89.252197, 36}} + {{215.41299000000001, 497.37099999999998}, {89.252196999999995, 36}} Class ShapedGraphic FontInfo @@ -70574,7 +71760,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -70586,7 +71772,7 @@ Ancestor} Bounds - {{215.41299, 445.11899}, {89.252197, 36}} + {{215.41299000000001, 445.11899}, {89.252196999999995, 36}} Class ShapedGraphic FontInfo @@ -70639,7 +71825,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -70651,7 +71837,7 @@ Ancestor} Bounds - {{215.41299, 392.866}, {89.252296, 36}} + {{215.41299000000001, 392.86599999999999}, {89.252296000000001, 36}} Class ShapedGraphic FontInfo @@ -70702,7 +71888,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -70714,7 +71900,7 @@ Ancestor} Bounds - {{551.224, 333.59}, {89.252296, 36}} + {{551.22400000000005, 333.58999999999997}, {89.252296000000001, 36}} Class ShapedGraphic FontInfo @@ -70765,7 +71951,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -70777,7 +71963,7 @@ Ancestor} Bounds - {{439.28699, 333.59}, {89.252296, 36}} + {{439.28699, 333.58999999999997}, {89.252296000000001, 36}} Class ShapedGraphic FontInfo @@ -70828,7 +72014,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -70840,7 +72026,7 @@ Ancestor} Bounds - {{327.35001, 333.59}, {89.252296, 36}} + {{327.35001, 333.58999999999997}, {89.252296000000001, 36}} Class ShapedGraphic FontInfo @@ -70891,7 +72077,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -70903,7 +72089,7 @@ Ancestor} Bounds - {{215.41299, 333.59}, {89.252296, 36}} + {{215.41299000000001, 333.58999999999997}, {89.252296000000001, 36}} Class ShapedGraphic FontInfo @@ -70954,7 +72140,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -70966,7 +72152,7 @@ Ancestor} Bounds - {{103.476, 333.59}, {89.252296, 36}} + {{103.476, 333.58999999999997}, {89.252296000000001, 36}} Class ShapedGraphic FontInfo @@ -71017,7 +72203,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -71029,7 +72215,7 @@ Ancestor} Bounds - {{103.476, 497.371}, {89.252197, 36}} + {{103.476, 497.37099999999998}, {89.252196999999995, 36}} Class ShapedGraphic FontInfo @@ -71080,7 +72266,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -71092,7 +72278,7 @@ Ancestor} Bounds - {{103.476, 445.11899}, {89.252197, 36}} + {{103.476, 445.11899}, {89.252196999999995, 36}} Class ShapedGraphic FontInfo @@ -71143,7 +72329,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -71155,7 +72341,7 @@ Ancestor} Bounds - {{103.476, 392.866}, {89.252296, 36}} + {{103.476, 392.86599999999999}, {89.252296000000001, 36}} Class ShapedGraphic FontInfo @@ -71206,7 +72392,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -71228,8 +72414,8 @@ Ancestor} 1972 Points - {194.22821, 178.784} - {455.508, 178.784} + {194.22819699999997, 178.78399999999999} + {455.50799999999998, 178.78399999999999} Style @@ -71237,6 +72423,8 @@ Ancestor} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -71259,8 +72447,8 @@ Ancestor} 1971 Points - {400.57098, 231.036} - {567.508, 231.036} + {400.57099999999997, 231.036} + {567.50800000000004, 231.036} Style @@ -71268,6 +72456,8 @@ Ancestor} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -71280,7 +72470,7 @@ Ancestor} Bounds - {{569.008, 213.036}, {54.062901, 36}} + {{569.00800000000004, 213.036}, {54.062900999999997, 36}} Class ShapedGraphic FontInfo @@ -71331,7 +72521,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -71354,8 +72544,8 @@ Ancestor} 1969 Points - {288.57098, 231.036} - {343.508, 231.036} + {288.57100000000003, 231.036} + {343.50799999999998, 231.036} Style @@ -71363,6 +72553,8 @@ Ancestor} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -71375,7 +72567,7 @@ Ancestor} Bounds - {{345.008, 213.036}, {54.063, 36}} + {{345.00799999999998, 213.036}, {54.063000000000002, 36}} Class ShapedGraphic FontInfo @@ -71426,7 +72618,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -71439,7 +72631,7 @@ Ancestor} Bounds - {{233.008, 213.036}, {54.063, 36}} + {{233.00800000000001, 213.036}, {54.063000000000002, 36}} Class ShapedGraphic FontInfo @@ -71490,7 +72682,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -71513,8 +72705,8 @@ Ancestor} 1966 Points - {194.228, 231.036} - {231.508, 231.036} + {194.22800000000001, 231.036} + {231.50800000000007, 231.036} Style @@ -71522,6 +72714,8 @@ Ancestor} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -71539,8 +72733,8 @@ Ancestor} 1965 Points - {512.57092, 178.784} - {567.508, 178.784} + {512.57090100000005, 178.78399999999999} + {567.50800000000004, 178.78399999999999} Style @@ -71548,6 +72742,8 @@ Ancestor} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -71560,7 +72756,7 @@ Ancestor} Bounds - {{569.008, 160.784}, {54.062901, 36}} + {{569.00800000000004, 160.78399999999999}, {54.062900999999997, 36}} Class ShapedGraphic FontInfo @@ -71611,7 +72807,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -71624,7 +72820,7 @@ Ancestor} Bounds - {{457.008, 160.784}, {54.062901, 36}} + {{457.00799999999998, 160.78399999999999}, {54.062900999999997, 36}} Class ShapedGraphic FontInfo @@ -71675,7 +72871,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -71698,8 +72894,8 @@ Ancestor} 1957 Points - {288.57098, 126.531} - {455.508, 126.531} + {288.57100000000003, 126.53100000000001} + {455.50799999999998, 126.53100000000001} Style @@ -71707,6 +72903,8 @@ Ancestor} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -71719,7 +72917,7 @@ Ancestor} Bounds - {{457.008, 108.531}, {54.062901, 36}} + {{457.00799999999998, 108.53100000000001}, {54.062900999999997, 36}} Class ShapedGraphic FontInfo @@ -71770,7 +72968,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -71783,7 +72981,7 @@ Ancestor} Bounds - {{551.224, 49.2547}, {89.252296, 36}} + {{551.22400000000005, 49.2547}, {89.252296000000001, 36}} Class ShapedGraphic FontInfo @@ -71834,7 +73032,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -71846,7 +73044,7 @@ Ancestor} Bounds - {{439.28699, 49.2547}, {89.252296, 36}} + {{439.28699, 49.2547}, {89.252296000000001, 36}} Class ShapedGraphic FontInfo @@ -71897,7 +73095,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -71909,7 +73107,7 @@ Ancestor} Bounds - {{327.35001, 49.2547}, {89.252296, 36}} + {{327.35001, 49.2547}, {89.252296000000001, 36}} Class ShapedGraphic FontInfo @@ -71960,7 +73158,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -71972,7 +73170,7 @@ Ancestor} Bounds - {{215.41299, 49.2547}, {89.252296, 36}} + {{215.41299000000001, 49.2547}, {89.252296000000001, 36}} Class ShapedGraphic FontInfo @@ -72023,7 +73221,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -72035,7 +73233,7 @@ Ancestor} Bounds - {{103.476, 49.2547}, {89.252296, 36}} + {{103.476, 49.2547}, {89.252296000000001, 36}} Class ShapedGraphic FontInfo @@ -72086,7 +73284,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -72098,7 +73296,7 @@ Ancestor} Bounds - {{103.476, 213.036}, {89.252197, 36}} + {{103.476, 213.036}, {89.252196999999995, 36}} Class ShapedGraphic FontInfo @@ -72149,7 +73347,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -72161,7 +73359,7 @@ Ancestor} Bounds - {{103.476, 160.784}, {89.252197, 36}} + {{103.476, 160.78399999999999}, {89.252196999999995, 36}} Class ShapedGraphic FontInfo @@ -72212,7 +73410,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -72224,7 +73422,7 @@ Ancestor} Bounds - {{233.008, 108.531}, {54.063, 36}} + {{233.00800000000001, 108.53100000000001}, {54.063000000000002, 36}} Class ShapedGraphic FontInfo @@ -72275,7 +73473,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -72288,7 +73486,7 @@ Ancestor} Bounds - {{103.476, 108.531}, {89.252296, 36}} + {{103.476, 108.53100000000001}, {89.252296000000001, 36}} Class ShapedGraphic FontInfo @@ -72339,7 +73537,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 LucidaGrande;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -72361,8 +73559,8 @@ Ancestor} 1304 Points - {194.22829, 126.531} - {231.508, 126.531} + {194.22829599999997, 126.53100000000001} + {231.50800000000007, 126.53100000000001} Style @@ -72370,6 +73568,8 @@ Ancestor} HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -72392,8 +73592,8 @@ Ancestor} 2011 Points - {595.87262, 371.09} - {596.01666, 495.87097} + {595.87264719704001, 371.0899990015514} + {596.01662014547719, 495.87100099837375} Style @@ -72401,6 +73601,8 @@ Ancestor} HeadArrow 0 + Legacy + TailArrow 0 @@ -72423,8 +73625,8 @@ Ancestor} 2010 Points - {483.92816, 371.09003} - {484.02451, 496.37097} + {483.92813392474648, 371.0899995564543} + {484.02447774536103, 496.37100029567046} Style @@ -72432,6 +73634,8 @@ Ancestor} HeadArrow 0 + Legacy + TailArrow 0 @@ -72454,8 +73658,8 @@ Ancestor} 2009 Points - {371.98367, 371.09} - {372.03162, 495.87097} + {371.983650654766, 371.08999988927053} + {372.03159634509046, 495.87100011071476} Style @@ -72463,6 +73667,8 @@ Ancestor} HeadArrow 0 + Legacy + TailArrow 0 @@ -72485,8 +73691,8 @@ Ancestor} 2008 Points - {260.03915, 371.09} - {260.03909, 495.87097} + {260.03913209561267, 371.08999999999992} + {260.0390943132868, 495.87099999999998} Style @@ -72494,6 +73700,8 @@ Ancestor} HeadArrow 0 + Legacy + TailArrow 0 @@ -72516,8 +73724,8 @@ Ancestor} 2007 Points - {148.10214, 371.09003} - {148.1021, 495.87097} + {148.10214209561269, 371.08999999999992} + {148.10210431328679, 495.87099999999998} Style @@ -72525,6 +73733,8 @@ Ancestor} HeadArrow 0 + Legacy + TailArrow 0 @@ -72565,6 +73775,8 @@ Ancestor} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -72585,7 +73797,7 @@ Ancestor} UniqueID 61 VPages - 1 + 2 ActiveLayerIndex @@ -72595,18 +73807,13 @@ Ancestor} BackgroundGraphic Bounds - {{0, 0}, {760, 542}} + {{0, 0}, {1106, 882}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -72614,16 +73821,18 @@ Ancestor} + BaseZoom + 0 CanvasOrigin {0, 0} CanvasSize - {760, 542} + {1106, 882} ColumnAlign 1 ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -72669,7 +73878,7 @@ Ancestor} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -72724,7 +73933,7 @@ Ancestor} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -72738,7 +73947,7 @@ Ancestor} Bounds - {{266.37, 328.25421}, {158, 75.491699}} + {{266.37, 328.25418757619212}, {158, 75.491698999999997}} Class ShapedGraphic Head @@ -72801,8 +74010,6 @@ Ancestor} r 0 - ShadowVector - {0, 2} stroke @@ -72831,7 +74038,7 @@ Ancestor} Bounds - {{109.36846, 240.26196}, {157.00154, 75.491699}} + {{109.36844274253311, 240.26193757557681}, {157.00155764700102, 75.491698999999997}} Class ShapedGraphic Head @@ -72844,7 +74051,7 @@ Ancestor} ID 30 Rotation - 359.99429321289062 + 359.99429213883559 Shape AdjustableArrow ShapeData @@ -72896,8 +74103,6 @@ Ancestor} r 0 - ShadowVector - {0, 2} stroke @@ -72967,7 +74172,7 @@ Ancestor} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -72981,7 +74186,7 @@ Ancestor} Bounds - {{201.87, 171.694}, {129, 17}} + {{201.87, 171.69399999999999}, {129, 17}} Class ShapedGraphic FitText @@ -73031,7 +74236,7 @@ Ancestor} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -73045,7 +74250,7 @@ Ancestor} Bounds - {{109.71719, 143.25584}, {314.65314, 75.491699}} + {{109.71720610765337, 143.25585460739526}, {314.65314317037104, 75.491698999999997}} Class ShapedGraphic Head @@ -73058,7 +74263,7 @@ Ancestor} ID 1949 Rotation - 180.1207275390625 + 180.1207319741778 Shape AdjustableArrow ShapeData @@ -73110,8 +74315,6 @@ Ancestor} r 0 - ShadowVector - {0, 2} stroke @@ -73140,7 +74343,7 @@ Ancestor} Bounds - {{144.534, 163.93401}, {64, 17}} + {{144.53399999999999, 163.93401}, {64, 17}} Class ShapedGraphic FitText @@ -73181,7 +74384,7 @@ Ancestor} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -73200,7 +74403,7 @@ Ancestor} 1934 Points - {424.37, 136.394} + {424.37, 136.39400000000001} {424.37, 417} Style @@ -73218,6 +74421,8 @@ Ancestor} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -73232,7 +74437,7 @@ Ancestor} 1933 Points - {266.37, 136.394} + {266.37, 136.39400000000001} {266.37, 417} Style @@ -73250,6 +74455,8 @@ Ancestor} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -73264,7 +74471,7 @@ Ancestor} 1932 Points - {109.87, 138.16299} + {109.87, 138.16299000000001} {108.87, 417} Style @@ -73282,6 +74489,8 @@ Ancestor} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -73291,7 +74500,7 @@ Ancestor} Bounds - {{52.766998, 61.967201}, {112.206, 61.427101}} + {{52.766998000000001, 61.967201000000003}, {112.206, 61.427101}} Class ShapedGraphic FontInfo @@ -73342,7 +74551,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -73354,7 +74563,7 @@ Ancestor} Bounds - {{210.767, 61.967201}, {112.206, 61.427101}} + {{210.767, 61.967201000000003}, {112.206, 61.427101}} Class ShapedGraphic FontInfo @@ -73405,7 +74614,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -73417,7 +74626,7 @@ Ancestor} Bounds - {{359.25299, 61.967201}, {131.233, 61.427101}} + {{359.25299000000001, 61.967201000000003}, {131.233, 61.427101}} Class ShapedGraphic FontInfo @@ -73468,7 +74677,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -73509,6 +74718,8 @@ Ancestor} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -73529,7 +74740,7 @@ Ancestor} UniqueID 62 VPages - 1 + 2 ActiveLayerIndex @@ -73539,18 +74750,13 @@ Ancestor} BackgroundGraphic Bounds - {{0, 0}, {760, 542}} + {{0, 0}, {1106, 882}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -73558,16 +74764,18 @@ Ancestor} + BaseZoom + 0 CanvasOrigin {0, 0} CanvasSize - {760, 542} + {1106, 882} ColumnAlign 1 ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -73613,7 +74821,7 @@ Ancestor} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -73627,7 +74835,7 @@ Ancestor} Bounds - {{173, 355.66599}, {49, 17}} + {{173, 355.66599000000002}, {49, 17}} Class ShapedGraphic FitText @@ -73668,7 +74876,7 @@ Ancestor} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -73682,7 +74890,7 @@ Ancestor} Bounds - {{109.05292, 328.25244}, {157.31708, 75.491699}} + {{109.05291478368096, 328.25244403779601}, {157.31708523490823, 75.491698999999997}} Class ShapedGraphic Head @@ -73695,7 +74903,7 @@ Ancestor} ID 1929 Rotation - 180.00123596191406 + 180.00124564727639 Shape AdjustableArrow ShapeData @@ -73747,8 +74955,6 @@ Ancestor} r 0 - ShadowVector - {0, 2} stroke @@ -73777,7 +74983,7 @@ Ancestor} Bounds - {{266.37, 240.25415}, {158, 75.491699}} + {{266.36999999999824, 240.25413397723489}, {158.00000000000355, 75.491698999999997}} Class ShapedGraphic Head @@ -73790,7 +74996,7 @@ Ancestor} ID 30 Rotation - 180.00001525878906 + 180.00001213033002 Shape AdjustableArrow ShapeData @@ -73842,8 +75048,6 @@ Ancestor} r 0 - ShadowVector - {0, 2} stroke @@ -73872,7 +75076,7 @@ Ancestor} Bounds - {{201.87, 173.694}, {129, 17}} + {{201.87, 173.69399999999999}, {129, 17}} Class ShapedGraphic FitText @@ -73922,7 +75126,7 @@ Ancestor} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -73936,7 +75140,7 @@ Ancestor} Bounds - {{109.99698, 144.25403}, {314.37616, 75.491699}} + {{109.99698007712473, 144.25404206023157}, {314.37620015885653, 75.491698999999997}} Class ShapedGraphic Head @@ -73949,7 +75153,7 @@ Ancestor} ID 1949 Rotation - 359.63552856445312 + 359.63553300711015 Shape AdjustableArrow ShapeData @@ -74001,8 +75205,6 @@ Ancestor} r 0 - ShadowVector - {0, 2} stroke @@ -74024,7 +75226,7 @@ Ancestor} Bounds - {{144.534, 163.93401}, {64, 17}} + {{144.53399999999999, 163.93401}, {64, 17}} Class ShapedGraphic FitText @@ -74065,7 +75267,7 @@ Ancestor} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -74084,7 +75286,7 @@ Ancestor} 1934 Points - {424.37, 136.394} + {424.37, 136.39400000000001} {424.37, 417} Style @@ -74102,6 +75304,8 @@ Ancestor} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -74116,7 +75320,7 @@ Ancestor} 1933 Points - {266.37, 136.394} + {266.37, 136.39400000000001} {266.37, 417} Style @@ -74134,6 +75338,8 @@ Ancestor} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -74148,7 +75354,7 @@ Ancestor} 1932 Points - {109.87, 138.16299} + {109.87, 138.16299000000001} {108.87, 417} Style @@ -74166,6 +75372,8 @@ Ancestor} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -74175,7 +75383,7 @@ Ancestor} Bounds - {{52.766998, 61.967201}, {112.206, 61.427101}} + {{52.766998000000001, 61.967201000000003}, {112.206, 61.427101}} Class ShapedGraphic FontInfo @@ -74226,7 +75434,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -74238,7 +75446,7 @@ Ancestor} Bounds - {{210.767, 61.967201}, {112.206, 61.427101}} + {{210.767, 61.967201000000003}, {112.206, 61.427101}} Class ShapedGraphic FontInfo @@ -74289,7 +75497,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -74301,7 +75509,7 @@ Ancestor} Bounds - {{359.25299, 61.967201}, {131.233, 61.427101}} + {{359.25299000000001, 61.967201000000003}, {131.233, 61.427101}} Class ShapedGraphic FontInfo @@ -74352,7 +75560,7 @@ Ancestor} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -74393,6 +75601,8 @@ Directory} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -74413,7 +75623,7 @@ Directory} UniqueID 94 VPages - 1 + 2 ActiveLayerIndex @@ -74423,18 +75633,13 @@ Directory} BackgroundGraphic Bounds - {{0, 0}, {760, 542}} + {{0, 0}, {1106, 882}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -74442,16 +75647,18 @@ Directory} + BaseZoom + 0 CanvasOrigin {0, 0} CanvasSize - {760, 542} + {1106, 882} ColumnAlign 1 ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -74497,7 +75704,7 @@ Directory} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -74511,7 +75718,7 @@ Directory} Bounds - {{165.5, 355.66599}, {64, 17}} + {{165.5, 355.66599000000002}, {64, 17}} Class ShapedGraphic FitText @@ -74552,7 +75759,7 @@ Directory} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -74566,7 +75773,7 @@ Directory} Bounds - {{109.05292, 328.25244}, {157.31708, 75.491699}} + {{109.05291478368096, 328.25244403779601}, {157.31708523490823, 75.491698999999997}} Class ShapedGraphic Head @@ -74579,7 +75786,7 @@ Directory} ID 1929 Rotation - 180.00123596191406 + 180.00124564727639 Shape AdjustableArrow ShapeData @@ -74631,8 +75838,6 @@ Directory} r 0 - ShadowVector - {0, 2} stroke @@ -74661,7 +75866,7 @@ Directory} Bounds - {{266.37, 240.25415}, {158, 75.491699}} + {{266.36999999999824, 240.25413397723489}, {158.00000000000355, 75.491698999999997}} Class ShapedGraphic Head @@ -74674,7 +75879,7 @@ Directory} ID 30 Rotation - 180.00001525878906 + 180.00001213033002 Shape AdjustableArrow ShapeData @@ -74726,8 +75931,6 @@ Directory} r 0 - ShadowVector - {0, 2} stroke @@ -74756,7 +75959,7 @@ Directory} Bounds - {{228.87, 173.694}, {75, 17}} + {{228.87, 173.69399999999999}, {75, 17}} Class ShapedGraphic FitText @@ -74806,7 +76009,7 @@ Directory} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -74820,7 +76023,7 @@ Directory} Bounds - {{109.99696, 144.25404}, {314.37619, 75.491699}} + {{109.9969600455214, 144.25404710794044}, {314.37622022236656, 75.491698999999997}} Class ShapedGraphic Head @@ -74833,7 +76036,7 @@ Directory} ID 1949 Rotation - 359.63552856445312 + 359.63553119042075 Shape AdjustableArrow ShapeData @@ -74885,8 +76088,6 @@ Directory} r 0 - ShadowVector - {0, 2} stroke @@ -74908,7 +76109,7 @@ Directory} Bounds - {{144.534, 163.93401}, {64, 17}} + {{144.53399999999999, 163.93401}, {64, 17}} Class ShapedGraphic FitText @@ -74949,7 +76150,7 @@ Directory} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -74968,7 +76169,7 @@ Directory} 1934 Points - {424.37, 136.394} + {424.37, 136.39400000000001} {424.37, 417} Style @@ -74986,6 +76187,8 @@ Directory} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -75000,7 +76203,7 @@ Directory} 1933 Points - {266.37, 136.394} + {266.37, 136.39400000000001} {266.37, 417} Style @@ -75018,6 +76221,8 @@ Directory} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -75032,7 +76237,7 @@ Directory} 1932 Points - {109.87, 138.16299} + {109.87, 138.16299000000001} {108.87, 417} Style @@ -75050,6 +76255,8 @@ Directory} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -75059,7 +76266,7 @@ Directory} Bounds - {{52.766998, 61.967201}, {112.206, 61.427101}} + {{52.766998000000001, 61.967201000000003}, {112.206, 61.427101}} Class ShapedGraphic FontInfo @@ -75110,7 +76317,7 @@ Directory} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -75122,7 +76329,7 @@ Directory} Bounds - {{210.767, 61.967201}, {112.206, 61.427101}} + {{210.767, 61.967201000000003}, {112.206, 61.427101}} Class ShapedGraphic FontInfo @@ -75173,7 +76380,7 @@ Directory} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -75185,7 +76392,7 @@ Directory} Bounds - {{359.25299, 61.967201}, {131.233, 61.427101}} + {{359.25299000000001, 61.967201000000003}, {131.233, 61.427101}} Class ShapedGraphic FontInfo @@ -75236,7 +76443,7 @@ Directory} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -75276,6 +76483,8 @@ Directory} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -75296,7 +76505,7 @@ Directory} UniqueID 96 VPages - 1 + 2 ActiveLayerIndex @@ -75306,18 +76515,13 @@ Directory} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {1106, 882}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -75325,16 +76529,18 @@ Directory} + BaseZoom + 0 CanvasOrigin {0, 0} CanvasSize - {756, 553} + {1106, 882} ColumnAlign 1 ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -75349,8 +76555,8 @@ Directory} 1962 Points - {304.14401, 143.5} - {221.78548, 143.5} + {304.14400999999998, 143.5} + {221.78550000000001, 143.5} Style @@ -75358,6 +76564,8 @@ Directory} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -75382,8 +76590,8 @@ Directory} 1961 Points - {521.17603, 143.5} - {439.71497, 143.5} + {521.17602999999997, 143.5} + {439.71501000000001, 143.5} Style @@ -75391,6 +76599,8 @@ Directory} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -75415,8 +76625,8 @@ Directory} 1960 Points - {588.96112, 67} - {588.9613, 89.5} + {588.96113871626301, 66.999999999956415} + {588.96134877205884, 89.500000000026816} Style @@ -75424,6 +76634,8 @@ Directory} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -75438,7 +76650,7 @@ Directory} Bounds - {{550.422, 28}, {77.077904, 38}} + {{550.42200000000003, 28}, {77.077904000000004, 38}} Class ShapedGraphic FontInfo @@ -75489,8 +76701,8 @@ Directory} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 -{\fonttbl\f0\fnil\fcharset0 AvenirLTStd-Roman;} + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -75501,7 +76713,7 @@ Directory} Bounds - {{590.06299, 152}, {51, 22}} + {{591.56299000000001, 152}, {48, 22}} Class ShapedGraphic FitText @@ -75542,8 +76754,8 @@ Directory} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 -{\fonttbl\f0\fnil\fcharset0 AvenirLTStd-Roman;} + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -75556,7 +76768,7 @@ Directory} Bounds - {{535.06299, 142}, {45, 38}} + {{535.06299000000001, 142}, {45, 38}} Class ShapedGraphic FontInfo @@ -75607,7 +76819,7 @@ Directory} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -75619,7 +76831,7 @@ Directory} Bounds - {{563.461, 100}, {51, 14}} + {{563.46100000000001, 100}, {51, 14}} Class ShapedGraphic FitText @@ -75660,7 +76872,7 @@ Directory} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -75674,7 +76886,7 @@ Directory} Bounds - {{521.67603, 90}, {134.571, 34}} + {{521.67602999999997, 90}, {134.571, 34}} Class ShapedGraphic ID @@ -75692,7 +76904,7 @@ Directory} Bounds - {{521.67603, 90}, {134.571, 107}} + {{521.67602999999997, 90}, {134.571, 107}} Class ShapedGraphic ID @@ -75734,7 +76946,7 @@ Directory} Bounds - {{373.03101, 152}, {51, 22}} + {{374.53100999999998, 152}, {48, 22}} Class ShapedGraphic FitText @@ -75775,8 +76987,8 @@ Directory} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 -{\fonttbl\f0\fnil\fcharset0 AvenirLTStd-Roman;} + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -75789,7 +77001,7 @@ Directory} Bounds - {{318.03101, 142}, {45, 38}} + {{318.03100999999998, 142}, {45, 38}} Class ShapedGraphic FontInfo @@ -75840,7 +77052,7 @@ Directory} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -75893,7 +77105,7 @@ Directory} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -75907,7 +77119,7 @@ Directory} Bounds - {{304.64401, 90}, {134.571, 34}} + {{304.64400999999998, 90}, {134.571, 34}} Class ShapedGraphic ID @@ -75925,7 +77137,7 @@ Directory} Bounds - {{304.64401, 90}, {134.571, 107}} + {{304.64400999999998, 90}, {134.571, 107}} Class ShapedGraphic ID @@ -75967,7 +77179,7 @@ Directory} Bounds - {{80.000198, 220}, {95, 17}} + {{79.000197999999997, 220}, {97, 17}} Class ShapedGraphic FitText @@ -76008,8 +77220,8 @@ Directory} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 -{\fonttbl\f0\fnil\fcharset0 AvenirLTStd-Roman;} + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -76022,7 +77234,7 @@ Directory} Bounds - {{155.10201, 152}, {51, 22}} + {{156.60201000000001, 152}, {48, 22}} Class ShapedGraphic FitText @@ -76063,8 +77275,8 @@ Directory} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 -{\fonttbl\f0\fnil\fcharset0 AvenirLTStd-Roman;} + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -76128,7 +77340,7 @@ Directory} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -76181,7 +77393,7 @@ Directory} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -76195,7 +77407,7 @@ Directory} Bounds - {{86.7145, 90}, {134.571, 34}} + {{86.714500000000001, 90}, {134.571, 34}} Class ShapedGraphic ID @@ -76213,7 +77425,7 @@ Directory} Bounds - {{86.7145, 90}, {134.571, 107}} + {{86.714500000000001, 90}, {134.571, 107}} Class ShapedGraphic ID @@ -76255,7 +77467,7 @@ Directory} Bounds - {{592, 396}, {51, 22}} + {{593.5, 396}, {48, 22}} Class ShapedGraphic FitText @@ -76296,8 +77508,8 @@ Directory} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 -{\fonttbl\f0\fnil\fcharset0 AvenirLTStd-Roman;} + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -76361,7 +77573,7 @@ Directory} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -76373,7 +77585,7 @@ Directory} Bounds - {{374, 395}, {51, 22}} + {{375.5, 395}, {48, 22}} Class ShapedGraphic FitText @@ -76414,8 +77626,8 @@ Directory} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 -{\fonttbl\f0\fnil\fcharset0 AvenirLTStd-Roman;} + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -76479,7 +77691,7 @@ Directory} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -76491,7 +77703,7 @@ Directory} Bounds - {{156, 396}, {51, 22}} + {{157.5, 396}, {48, 22}} Class ShapedGraphic FitText @@ -76532,8 +77744,8 @@ Directory} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 -{\fonttbl\f0\fnil\fcharset0 AvenirLTStd-Roman;} + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -76597,7 +77809,7 @@ Directory} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -76650,7 +77862,7 @@ Directory} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -76664,7 +77876,7 @@ Directory} Bounds - {{78.000198, 283}, {154.078, 61.427101}} + {{78.000197999999997, 283}, {154.078, 61.427101}} Class ShapedGraphic FontInfo @@ -76715,8 +77927,8 @@ Directory} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 -{\fonttbl\f0\fnil\fcharset0 AvenirLTStd-Roman;} + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -76727,7 +77939,7 @@ Directory} Bounds - {{294.961, 283}, {154.078, 61.427101}} + {{294.96100000000001, 283}, {154.078, 61.427101}} Class ShapedGraphic FontInfo @@ -76778,8 +77990,8 @@ Directory} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 -{\fonttbl\f0\fnil\fcharset0 AvenirLTStd-Roman;} + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -76790,7 +78002,7 @@ Directory} Bounds - {{511.922, 283}, {154.078, 61.427101}} + {{511.92200000000003, 283}, {154.078, 61.427101}} Class ShapedGraphic FontInfo @@ -76841,8 +78053,8 @@ Directory} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 -{\fonttbl\f0\fnil\fcharset0 AvenirLTStd-Roman;} + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -76854,7 +78066,7 @@ Directory} Bounds - {{87.612198, 334}, {134.571, 34}} + {{87.612198000000006, 334}, {134.571, 34}} Class ShapedGraphic ID @@ -76872,7 +78084,7 @@ Directory} Bounds - {{521.67603, 334}, {134.571, 107}} + {{521.67602999999997, 334}, {134.571, 107}} Class ShapedGraphic ID @@ -76914,7 +78126,7 @@ Directory} Bounds - {{304.64401, 334}, {134.571, 107}} + {{304.64400999999998, 334}, {134.571, 107}} Class ShapedGraphic ID @@ -76956,7 +78168,7 @@ Directory} Bounds - {{87.612198, 334}, {134.571, 107}} + {{87.612198000000006, 334}, {134.571, 107}} Class ShapedGraphic ID @@ -76998,7 +78210,7 @@ Directory} Bounds - {{72.000099, 53}, {600, 191}} + {{72.000099000000006, 53}, {600, 191}} Class ShapedGraphic ID @@ -77018,7 +78230,7 @@ Directory} GridInfo HPages - 1 + 2 KeepToScale Layers @@ -77044,6 +78256,8 @@ Directory} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -77064,7 +78278,7 @@ Directory} UniqueID 95 VPages - 1 + 2 ActiveLayerIndex @@ -77074,18 +78288,13 @@ Directory} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {1106, 882}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -77093,16 +78302,18 @@ Directory} + BaseZoom + 0 CanvasOrigin {0, 0} CanvasSize - {756, 553} + {1106, 882} ColumnAlign 1 ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -77148,7 +78359,7 @@ Directory} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -77203,7 +78414,7 @@ Directory} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -77217,7 +78428,7 @@ Directory} Bounds - {{84.602997, 259.25415}, {159.5, 75.491699}} + {{84.602997000000016, 259.25415538394424}, {159.50000299999999, 75.491698999999997}} Class ShapedGraphic Head @@ -77230,7 +78441,7 @@ Directory} ID 1961 Rotation - 179.99998474121094 + 180 Shape AdjustableArrow ShapeData @@ -77282,8 +78493,6 @@ Directory} r 0 - ShadowVector - {0, 2} stroke @@ -77312,7 +78521,7 @@ Directory} Bounds - {{84.602997, 188.25415}, {159.5, 75.491699}} + {{84.602997000000016, 188.25414994975114}, {159.50000299999999, 75.491698999999997}} Class ShapedGraphic Head @@ -77375,8 +78584,6 @@ Directory} r 0 - ShadowVector - {0, 2} stroke @@ -77410,8 +78617,8 @@ Directory} 1958 Points - {84.602997, 149.16299} - {84.602997, 387} + {84.602997000000002, 149.16299000000001} + {84.602997000000002, 387} Style @@ -77428,6 +78635,8 @@ Directory} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -77437,7 +78646,7 @@ Directory} Bounds - {{29, 72.967201}, {112.206, 61.427101}} + {{29, 72.967201000000003}, {112.206, 61.427101}} Class ShapedGraphic FontInfo @@ -77488,7 +78697,7 @@ Directory} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -77541,7 +78750,7 @@ Directory} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -77555,7 +78764,7 @@ Directory} Bounds - {{277.767, 186.16299}, {70, 17}} + {{277.767, 186.16299000000001}, {70, 17}} Class ShapedGraphic FitText @@ -77596,7 +78805,7 @@ Directory} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -77610,7 +78819,7 @@ Directory} Bounds - {{400.60303, 215.25414}, {158, 75.491699}} + {{400.60299999999984, 215.25414603028642}, {158.00003000000038, 75.491698999999997}} Class ShapedGraphic Head @@ -77622,6 +78831,8 @@ Directory} ID 1929 + Rotation + 359.99999589599383 Shape AdjustableArrow ShapeData @@ -77673,8 +78884,6 @@ Directory} r 0 - ShadowVector - {0, 2} stroke @@ -77703,7 +78912,7 @@ Directory} Bounds - {{244.103, 157.25415}, {156.5, 75.491699}} + {{244.10300000000001, 157.25415006283467}, {156.50000000000003, 75.491698999999997}} Class ShapedGraphic Head @@ -77715,6 +78924,8 @@ Directory} ID 30 + Rotation + 1.0525728271204571e-06 Shape AdjustableArrow ShapeData @@ -77766,8 +78977,6 @@ Directory} r 0 - ShadowVector - {0, 2} stroke @@ -77837,7 +79046,7 @@ Directory} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -77851,7 +79060,7 @@ Directory} Bounds - {{376.103, 343.29401}, {49, 17}} + {{376.10300000000001, 343.29401000000001}, {49, 17}} Class ShapedGraphic FitText @@ -77901,7 +79110,7 @@ Directory} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -77915,7 +79124,7 @@ Directory} Bounds - {{244.10301, 312.25415}, {314.50003, 75.491699}} + {{244.10299999999907, 312.25413769115715}, {314.50003000000191, 75.491698999999997}} Class ShapedGraphic Head @@ -77928,7 +79137,7 @@ Directory} ID 1949 Rotation - 179.99998474121094 + 179.99999360315383 Shape AdjustableArrow ShapeData @@ -77980,8 +79189,6 @@ Directory} r 0 - ShadowVector - {0, 2} stroke @@ -78051,7 +79258,7 @@ Directory} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -78070,8 +79277,8 @@ Directory} 1934 Points - {558.60303, 147.394} - {558.60303, 385.23099} + {558.60302999999999, 147.39400000000001} + {558.60302999999999, 385.23099000000002} Style @@ -78088,6 +79295,8 @@ Directory} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -78102,8 +79311,8 @@ Directory} 1933 Points - {400.603, 147.394} - {400.603, 387} + {400.60300000000001, 147.39400000000001} + {400.60300000000001, 387} Style @@ -78120,6 +79329,8 @@ Directory} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -78134,8 +79345,8 @@ Directory} 1932 Points - {244.103, 149.16299} - {244.103, 387} + {244.10300000000001, 149.16299000000001} + {244.10300000000001, 387} Style @@ -78152,6 +79363,8 @@ Directory} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -78161,7 +79374,7 @@ Directory} Bounds - {{185.103, 72.967201}, {119, 61.427101}} + {{185.10300000000001, 72.967201000000003}, {119, 61.427101}} Class ShapedGraphic FontInfo @@ -78212,7 +79425,7 @@ Directory} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -78224,7 +79437,7 @@ Directory} Bounds - {{345, 72.967201}, {112.206, 61.427101}} + {{345, 72.967201000000003}, {112.206, 61.427101}} Class ShapedGraphic FontInfo @@ -78275,7 +79488,7 @@ Directory} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -78287,7 +79500,7 @@ Directory} Bounds - {{493.48599, 72.967201}, {131.233, 61.427101}} + {{493.48599000000002, 72.967201000000003}, {131.233, 61.427101}} Class ShapedGraphic FontInfo @@ -78338,7 +79551,7 @@ Directory} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -78352,7 +79565,7 @@ Directory} GridInfo HPages - 1 + 2 KeepToScale Layers @@ -78378,6 +79591,8 @@ Directory} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -78398,7 +79613,7 @@ Directory} UniqueID 63 VPages - 1 + 2 ActiveLayerIndex @@ -78408,18 +79623,13 @@ Directory} BackgroundGraphic Bounds - {{0, 0}, {756, 1106}} + {{0, 0}, {756, 1106.0000419616699}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -78427,6 +79637,8 @@ Directory} + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -78434,12 +79646,12 @@ Directory} ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList Bounds - {{611.99298, 476}, {37, 14}} + {{611.99297999999999, 476}, {37, 14}} Class ShapedGraphic FitText @@ -78480,7 +79692,7 @@ Directory} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -78494,7 +79706,7 @@ Directory} Bounds - {{611.99298, 455}, {37, 14}} + {{611.99297999999999, 455}, {37, 14}} Class ShapedGraphic FitText @@ -78535,7 +79747,7 @@ Directory} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -78549,7 +79761,7 @@ Directory} Bounds - {{611.99298, 435}, {37, 14}} + {{611.99297999999999, 435}, {37, 14}} Class ShapedGraphic FitText @@ -78590,7 +79802,7 @@ Directory} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -78604,7 +79816,7 @@ Directory} Bounds - {{611.99298, 412}, {37, 14}} + {{611.99297999999999, 412}, {37, 14}} Class ShapedGraphic FitText @@ -78645,7 +79857,7 @@ Directory} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -78659,7 +79871,7 @@ Directory} Bounds - {{539.00702, 495.177}, {145, 22}} + {{539.00702000000001, 495.17700000000002}, {145, 22}} Class ShapedGraphic FitText @@ -78702,7 +79914,7 @@ Directory} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -78723,8 +79935,8 @@ and I'm not sure why} 149 Points - {603.5, 492.823} - {603.5, 406.677} + {603.5, 492.82299999999998} + {603.5, 406.67700000000002} Style @@ -78741,6 +79953,8 @@ and I'm not sure why} HeadArrow 0 + Legacy + TailArrow 0 @@ -78748,7 +79962,7 @@ and I'm not sure why} Bounds - {{539.00702, 468.354}, {56, 26.1462}} + {{539.00702000000001, 468.35399999999998}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -78785,7 +79999,7 @@ and I'm not sure why} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -78799,7 +80013,7 @@ and I'm not sure why} Bounds - {{535.00702, 446.854}, {56, 26.1462}} + {{535.00702000000001, 446.85399999999998}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -78836,7 +80050,7 @@ and I'm not sure why} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -78850,7 +80064,7 @@ and I'm not sure why} Bounds - {{535.00702, 425.854}, {56, 26.1462}} + {{535.00702000000001, 425.85399999999998}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -78887,7 +80101,7 @@ and I'm not sure why} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -78901,7 +80115,7 @@ and I'm not sure why} Bounds - {{535.00702, 404.854}, {56, 26.1462}} + {{535.00702000000001, 404.85399999999998}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -78938,7 +80152,7 @@ and I'm not sure why} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -78957,8 +80171,8 @@ and I'm not sure why} 144 Points - {683.02197, 493} - {533.492, 493} + {683.02197000000001, 493} + {533.49199999999996, 493} Style @@ -78975,6 +80189,8 @@ and I'm not sure why} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -78989,8 +80205,8 @@ and I'm not sure why} 143 Points - {683.50702, 472} - {533.97803, 472} + {683.50702000000001, 472} + {533.97802999999999, 472} Style @@ -79007,6 +80223,8 @@ and I'm not sure why} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -79021,8 +80239,8 @@ and I'm not sure why} 142 Points - {683.53601, 451} - {534.00702, 451} + {683.53601000000003, 451} + {534.00702000000001, 451} Style @@ -79039,6 +80257,8 @@ and I'm not sure why} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -79053,8 +80273,8 @@ and I'm not sure why} 141 Points - {683.02197, 430} - {533.492, 430} + {683.02197000000001, 430} + {533.49199999999996, 430} Style @@ -79071,6 +80291,8 @@ and I'm not sure why} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -79131,7 +80353,7 @@ and I'm not sure why} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -79182,7 +80404,7 @@ and I'm not sure why} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -79201,8 +80423,8 @@ and I'm not sure why} 137 Points - {630, 368.87701} - {630, 406.90799} + {630, 368.87700999999998} + {630, 406.90798999999998} Style @@ -79219,6 +80441,8 @@ and I'm not sure why} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -79233,8 +80457,8 @@ and I'm not sure why} 138 Points - {685, 406.90799} - {531, 406.90799} + {685, 406.90798999999998} + {531, 406.90798999999998} Style @@ -79251,6 +80475,8 @@ and I'm not sure why} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -79333,7 +80559,7 @@ and I'm not sure why} Bounds - {{212.735, 286.05499}, {37, 14}} + {{212.73500000000001, 286.05498999999998}, {37, 14}} Class ShapedGraphic FitText @@ -79374,7 +80600,7 @@ and I'm not sure why} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -79388,7 +80614,7 @@ and I'm not sure why} Bounds - {{211.338, 266.12799}, {51, 14}} + {{211.33799999999999, 266.12799000000001}, {51, 14}} Class ShapedGraphic FitText @@ -79429,7 +80655,7 @@ and I'm not sure why} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -79443,7 +80669,7 @@ and I'm not sure why} Bounds - {{212.103, 245.05499}, {29, 14}} + {{212.10300000000001, 245.05499}, {29, 14}} Class ShapedGraphic FitText @@ -79484,7 +80710,7 @@ and I'm not sure why} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -79539,7 +80765,7 @@ and I'm not sure why} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -79553,7 +80779,7 @@ and I'm not sure why} Bounds - {{211.235, 204.98199}, {44, 14}} + {{211.23500000000001, 204.98199}, {44, 14}} Class ShapedGraphic FitText @@ -79594,7 +80820,7 @@ and I'm not sure why} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -79608,7 +80834,7 @@ and I'm not sure why} Bounds - {{198, 442.073}, {37, 14}} + {{198, 442.07299999999998}, {37, 14}} Class ShapedGraphic FitText @@ -79649,7 +80875,7 @@ and I'm not sure why} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -79663,7 +80889,7 @@ and I'm not sure why} Bounds - {{197.5, 419.073}, {44, 14}} + {{197.5, 419.07299999999998}, {44, 14}} Class ShapedGraphic FitText @@ -79704,7 +80930,7 @@ and I'm not sure why} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -79718,7 +80944,7 @@ and I'm not sure why} Bounds - {{198, 398.073}, {37, 14}} + {{198, 398.07299999999998}, {37, 14}} Class ShapedGraphic FitText @@ -79759,7 +80985,7 @@ and I'm not sure why} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -79773,7 +80999,7 @@ and I'm not sure why} Bounds - {{414.99301, 476}, {37, 14}} + {{414.99301000000003, 476}, {37, 14}} Class ShapedGraphic FitText @@ -79814,7 +81040,7 @@ and I'm not sure why} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -79828,7 +81054,7 @@ and I'm not sure why} Bounds - {{414.99301, 455}, {37, 14}} + {{414.99301000000003, 455}, {37, 14}} Class ShapedGraphic FitText @@ -79869,7 +81095,7 @@ and I'm not sure why} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -79883,7 +81109,7 @@ and I'm not sure why} Bounds - {{414.99301, 435}, {37, 14}} + {{414.99301000000003, 435}, {37, 14}} Class ShapedGraphic FitText @@ -79924,7 +81150,7 @@ and I'm not sure why} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -79938,7 +81164,7 @@ and I'm not sure why} Bounds - {{414.99301, 412}, {37, 14}} + {{414.99301000000003, 412}, {37, 14}} Class ShapedGraphic FitText @@ -79979,7 +81205,7 @@ and I'm not sure why} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -79993,7 +81219,7 @@ and I'm not sure why} Bounds - {{164.765, 286}, {37, 14}} + {{164.76499999999999, 286}, {37, 14}} Class ShapedGraphic FitText @@ -80034,7 +81260,7 @@ and I'm not sure why} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -80048,7 +81274,7 @@ and I'm not sure why} Bounds - {{165.368, 266.073}, {37, 14}} + {{165.36799999999999, 266.07299999999998}, {37, 14}} Class ShapedGraphic FitText @@ -80089,7 +81315,7 @@ and I'm not sure why} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -80103,7 +81329,7 @@ and I'm not sure why} Bounds - {{165.133, 246}, {37, 14}} + {{165.13300000000001, 246}, {37, 14}} Class ShapedGraphic FitText @@ -80144,7 +81370,7 @@ and I'm not sure why} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -80199,7 +81425,7 @@ and I'm not sure why} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -80218,8 +81444,8 @@ and I'm not sure why} 117 Points - {205.52901, 303.073} - {205.52901, 203.927} + {205.52901, 303.07299999999998} + {205.52901, 203.92699999999999} Style @@ -80236,6 +81462,8 @@ and I'm not sure why} HeadArrow 0 + Legacy + TailArrow 0 @@ -80243,7 +81471,7 @@ and I'm not sure why} Bounds - {{164.765, 204.927}, {37, 14}} + {{164.76499999999999, 204.92699999999999}, {37, 14}} Class ShapedGraphic FitText @@ -80284,7 +81512,7 @@ and I'm not sure why} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -80298,7 +81526,7 @@ and I'm not sure why} Bounds - {{122, 466.146}, {135, 22}} + {{122, 466.14600000000002}, {135, 22}} Class ShapedGraphic FitText @@ -80341,7 +81569,7 @@ and I'm not sure why} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -80362,8 +81590,8 @@ this tag } 114 Points - {186, 459.10999} - {185.964, 393.823} + {185.9999974096292, 459.10998999999998} + {185.964, 393.82299999999998} Style @@ -80380,6 +81608,8 @@ this tag } HeadArrow 0 + Legacy + TailArrow 0 @@ -80431,7 +81661,7 @@ this tag } Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -80482,7 +81712,7 @@ this tag } Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -80533,7 +81763,7 @@ this tag } Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -80552,8 +81782,8 @@ this tag } 109 Points - {265.48599, 459.10999} - {115.956, 459.10999} + {265.48599000000002, 459.10998999999998} + {115.956, 459.10998999999998} Style @@ -80570,6 +81800,8 @@ this tag } HeadArrow 0 + Legacy + TailArrow 0 Width @@ -80584,8 +81816,8 @@ this tag } 107 Points - {266, 437.146} - {116.471, 437.146} + {266, 437.14600000000002} + {116.471, 437.14600000000002} Style @@ -80602,6 +81834,8 @@ this tag } HeadArrow 0 + Legacy + TailArrow 0 Width @@ -80616,8 +81850,8 @@ this tag } 106 Points - {265.48599, 416.146} - {115.956, 416.146} + {265.48599000000002, 416.14600000000002} + {115.956, 416.14600000000002} Style @@ -80634,6 +81868,8 @@ this tag } HeadArrow 0 + Legacy + TailArrow 0 Width @@ -80643,7 +81879,7 @@ this tag } Bounds - {{342.00699, 495.177}, {140, 22}} + {{342.00698999999997, 495.17700000000002}, {140, 22}} Class ShapedGraphic FitText @@ -80686,7 +81922,7 @@ this tag } Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -80707,8 +81943,8 @@ and it is really, really cool} 94 Points - {160, 303.073} - {160, 203.927} + {160, 303.07299999999998} + {160, 203.92699999999999} Style @@ -80725,6 +81961,8 @@ and it is really, really cool} HeadArrow 0 + Legacy + TailArrow 0 @@ -80737,8 +81975,8 @@ and it is really, really cool} 93 Points - {406.5, 492.823} - {406.5, 406.677} + {406.5, 492.82299999999998} + {406.5, 406.67700000000002} Style @@ -80755,6 +81993,8 @@ and it is really, really cool} HeadArrow 0 + Legacy + TailArrow 0 @@ -80762,7 +82002,7 @@ and it is really, really cool} Bounds - {{342.00699, 468.354}, {56, 26.1462}} + {{342.00698999999997, 468.35399999999998}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -80799,7 +82039,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -80813,7 +82053,7 @@ and it is really, really cool} Bounds - {{109, 280.927}, {56, 26.1462}} + {{109, 280.92700000000002}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -80850,7 +82090,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -80864,7 +82104,7 @@ and it is really, really cool} Bounds - {{109, 259.927}, {56, 26.1462}} + {{109, 259.92700000000002}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -80901,7 +82141,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -80915,7 +82155,7 @@ and it is really, really cool} Bounds - {{109, 239.927}, {56, 26.1462}} + {{109, 239.92699999999999}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -80952,7 +82192,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -80966,7 +82206,7 @@ and it is really, really cool} Bounds - {{109, 217.927}, {56, 26.1462}} + {{109, 217.92699999999999}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -81003,7 +82243,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -81017,7 +82257,7 @@ and it is really, really cool} Bounds - {{109, 198.927}, {56, 26.1462}} + {{109, 198.92699999999999}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -81054,7 +82294,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -81068,7 +82308,7 @@ and it is really, really cool} Bounds - {{338.00699, 446.854}, {56, 26.1462}} + {{338.00698999999997, 446.85399999999998}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -81105,7 +82345,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -81119,7 +82359,7 @@ and it is really, really cool} Bounds - {{338.00699, 425.854}, {56, 26.1462}} + {{338.00698999999997, 425.85399999999998}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -81156,7 +82396,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -81170,7 +82410,7 @@ and it is really, really cool} Bounds - {{338.00699, 404.854}, {56, 26.1462}} + {{338.00698999999997, 404.85399999999998}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -81207,7 +82447,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -81226,8 +82466,8 @@ and it is really, really cool} 83 Points - {486.022, 493} - {336.492, 493} + {486.02199999999999, 493} + {336.49200000000002, 493} Style @@ -81244,6 +82484,8 @@ and it is really, really cool} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -81258,8 +82500,8 @@ and it is really, really cool} 82 Points - {486.50699, 472} - {336.978, 472} + {486.50698999999997, 472} + {336.97800000000001, 472} Style @@ -81276,6 +82518,8 @@ and it is really, really cool} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -81290,8 +82534,8 @@ and it is really, really cool} 81 Points - {486.53601, 451} - {337.00699, 451} + {486.53600999999998, 451} + {337.00698999999997, 451} Style @@ -81308,6 +82552,8 @@ and it is really, really cool} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -81322,8 +82568,8 @@ and it is really, really cool} 80 Points - {486.022, 430} - {336.492, 430} + {486.02199999999999, 430} + {336.49200000000002, 430} Style @@ -81340,6 +82586,8 @@ and it is really, really cool} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -81354,7 +82602,7 @@ and it is really, really cool} 79 Points - {266.51501, 284} + {266.51501000000002, 284} {116.985, 284} Style @@ -81372,6 +82620,8 @@ and it is really, really cool} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -81404,6 +82654,8 @@ and it is really, really cool} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -81418,7 +82670,7 @@ and it is really, really cool} 77 Points - {266.02899, 242} + {266.02899000000002, 242} {116.5, 242} Style @@ -81436,6 +82688,8 @@ and it is really, really cool} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -81450,7 +82704,7 @@ and it is really, really cool} 76 Points - {266.51501, 221} + {266.51501000000002, 221} {116.985, 221} Style @@ -81468,6 +82722,8 @@ and it is really, really cool} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -81520,7 +82776,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -81584,7 +82840,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -81639,7 +82895,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -81676,6 +82932,8 @@ and it is really, really cool} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -81795,7 +83053,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -81850,7 +83108,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -81869,7 +83127,7 @@ and it is really, really cool} Bounds - {{226, 361.96201}, {27, 23.692301}} + {{226, 361.96201000000002}, {27, 23.692301}} Class ShapedGraphic FontInfo @@ -81915,7 +83173,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -81929,7 +83187,7 @@ and it is really, really cool} Bounds - {{127, 361.96201}, {22, 23.692301}} + {{127, 361.96201000000002}, {22, 23.692301}} Class ShapedGraphic FontInfo @@ -81966,7 +83224,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -81985,8 +83243,8 @@ and it is really, really cool} 63 Points - {212, 357.65399} - {212, 392.11499} + {212, 357.65399000000002} + {212, 392.11498999999998} Style @@ -82003,6 +83261,8 @@ and it is really, really cool} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -82017,8 +83277,8 @@ and it is really, really cool} 64 Points - {267, 392.11499} - {113, 392.11499} + {267, 392.11498999999998} + {113, 392.11498999999998} Style @@ -82035,6 +83295,8 @@ and it is really, really cool} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -82168,7 +83430,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -82219,7 +83481,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -82238,8 +83500,8 @@ and it is really, really cool} 42 Points - {433, 368.87701} - {433, 406.90799} + {433, 368.87700999999998} + {433, 406.90798999999998} Style @@ -82256,6 +83518,8 @@ and it is really, really cool} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -82270,8 +83534,8 @@ and it is really, really cool} 43 Points - {488, 406.90799} - {334, 406.90799} + {488, 406.90798999999998} + {334, 406.90798999999998} Style @@ -82288,6 +83552,8 @@ and it is really, really cool} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -82411,7 +83677,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -82480,7 +83746,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -82535,7 +83801,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -82572,6 +83838,8 @@ and it is really, really cool} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -82604,6 +83872,8 @@ and it is really, really cool} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -82727,7 +83997,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -82791,7 +84061,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -82846,7 +84116,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -82871,7 +84141,7 @@ and it is really, really cool} Points {213, 166.15401} - {213, 200.61501} + {213, 200.61501000000001} Style @@ -82888,6 +84158,8 @@ and it is really, really cool} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -82902,8 +84174,8 @@ and it is really, really cool} 31 Points - {268, 200.61501} - {114, 200.61501} + {268, 200.61501000000001} + {114, 200.61501000000001} Style @@ -82920,6 +84192,8 @@ and it is really, really cool} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -83030,6 +84304,8 @@ and it is really, really cool} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -83058,18 +84334,13 @@ and it is really, really cool} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -83077,6 +84348,8 @@ and it is really, really cool} + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -83084,7 +84357,7 @@ and it is really, really cool} ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -83095,8 +84368,8 @@ and it is really, really cool} Points {410, 446.25} - {455, 391.383} - {496.41101, 391} + {455, 391.38299999999998} + {496.41100999999998, 391} Style @@ -83104,6 +84377,8 @@ and it is really, really cool} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -83120,7 +84395,7 @@ and it is really, really cool} 244 Points - {403.58899, 290} + {403.58899000000002, 290} {452, 227} {490, 220.964} @@ -83130,6 +84405,8 @@ and it is really, really cool} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -83146,7 +84423,7 @@ and it is really, really cool} 242 Points - {394.323, 154} + {394.32299999999998, 154} {442, 62} {490, 51.604301} @@ -83156,6 +84433,8 @@ and it is really, really cool} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -83177,8 +84456,8 @@ and it is really, really cool} 241 Points - {301.7373, 320.854} - {308.06113, 366.383} + {301.73728819186709, 320.85399999999998} + {308.06112444865499, 366.38300000000004} Style @@ -83186,6 +84465,8 @@ and it is really, really cool} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -83212,8 +84493,8 @@ and it is really, really cool} 240 Points - {299.72168, 185.66501} - {306.21194, 216.854} + {299.72167665128319, 185.66498999999999} + {306.21196104464582, 216.85400000000004} Style @@ -83221,6 +84502,8 @@ and it is really, really cool} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -83252,6 +84535,8 @@ and it is really, really cool} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -83263,7 +84548,7 @@ and it is really, really cool} Bounds - {{469.186, 446.25}, {140, 77}} + {{469.18599999999998, 446.25}, {140, 77}} Class ShapedGraphic FitText @@ -83306,7 +84591,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -83327,7 +84612,7 @@ module Grit\ Bounds - {{504.186, 381.25}, {76, 22}} + {{504.18599999999998, 381.25}, {76, 22}} Class ShapedGraphic FitText @@ -83368,7 +84653,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -83387,7 +84672,7 @@ module Grit\ Bounds - {{578.18597, 413.819}, {27, 16.753799}} + {{578.18597, 413.81900000000002}, {27, 16.753799000000001}} Class ShapedGraphic FontInfo @@ -83433,7 +84718,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -83447,7 +84732,7 @@ module Grit\ Bounds - {{474.186, 414.819}, {40, 16.753799}} + {{474.18599999999998, 414.81900000000002}, {40, 16.753799000000001}} Class ShapedGraphic FontInfo @@ -83484,7 +84769,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -83521,6 +84806,8 @@ module Grit\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -83536,7 +84823,7 @@ module Grit\ Points {619.18597, 440.142} - {465.186, 440.142} + {465.18599999999998, 440.142} Style @@ -83553,6 +84840,8 @@ module Grit\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -83562,7 +84851,7 @@ module Grit\ Bounds - {{465.186, 406.25}, {154, 99}} + {{465.18599999999998, 406.25}, {154, 99}} Class ShapedGraphic FontInfo @@ -83635,7 +84924,7 @@ module Grit\ Bounds - {{467.686, 275.604}, {116, 88}} + {{467.68599999999998, 275.60399999999998}, {116, 88}} Class ShapedGraphic FitText @@ -83678,7 +84967,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -83700,7 +84989,7 @@ module Grit\ Bounds - {{502.686, 210.604}, {76, 22}} + {{502.68599999999998, 210.60400000000001}, {76, 22}} Class ShapedGraphic FitText @@ -83741,7 +85030,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -83760,7 +85049,7 @@ module Grit\ Bounds - {{576.68597, 241.265}, {27, 20.7554}} + {{576.68597, 241.26499999999999}, {27, 20.755400000000002}} Class ShapedGraphic FontInfo @@ -83806,7 +85095,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -83820,7 +85109,7 @@ module Grit\ Bounds - {{472.686, 241.265}, {40, 20.7554}} + {{472.68599999999998, 241.26499999999999}, {40, 20.755400000000002}} Class ShapedGraphic FontInfo @@ -83857,7 +85146,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -83876,8 +85165,8 @@ module Grit\ 225 Points - {562.68597, 237.491} - {562.68597, 267.681} + {562.68597, 237.49100000000001} + {562.68597, 267.68099999999998} Style @@ -83894,6 +85183,8 @@ module Grit\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -83908,8 +85199,8 @@ module Grit\ 226 Points - {617.68597, 267.681} - {463.686, 267.681} + {617.68597, 267.68099999999998} + {463.68599999999998, 267.68099999999998} Style @@ -83926,6 +85217,8 @@ module Grit\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -83935,7 +85228,7 @@ module Grit\ Bounds - {{463.686, 235.604}, {154, 122.646}} + {{463.68599999999998, 235.60400000000001}, {154, 122.646}} Class ShapedGraphic FontInfo @@ -84008,7 +85301,7 @@ module Grit\ Bounds - {{327.47, 170.71899}, {22, 14}} + {{327.47000000000003, 170.71898999999999}, {22, 14}} Class ShapedGraphic FitText @@ -84049,7 +85342,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -84063,7 +85356,7 @@ module Grit\ Bounds - {{326.23499, 147.646}, {44, 14}} + {{326.23498999999998, 147.64599999999999}, {44, 14}} Class ShapedGraphic FitText @@ -84104,7 +85397,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -84118,7 +85411,7 @@ module Grit\ Bounds - {{279.76501, 171.66499}, {37, 14}} + {{279.76501000000002, 171.66498999999999}, {37, 14}} Class ShapedGraphic FitText @@ -84159,7 +85452,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -84178,8 +85471,8 @@ module Grit\ 218 Points - {320.52899, 190.81} - {320.52899, 144.591} + {320.52899000000002, 190.81} + {320.52899000000002, 144.59100000000001} Style @@ -84196,6 +85489,8 @@ module Grit\ HeadArrow 0 + Legacy + TailArrow 0 @@ -84203,7 +85498,7 @@ module Grit\ Bounds - {{279.76599, 147.591}, {37, 14}} + {{279.76598999999999, 147.59100000000001}, {37, 14}} Class ShapedGraphic FitText @@ -84244,7 +85539,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -84264,7 +85559,7 @@ module Grit\ Points {275, 190.81} - {275, 144.591} + {275, 144.59100000000001} Style @@ -84281,6 +85576,8 @@ module Grit\ HeadArrow 0 + Legacy + TailArrow 0 @@ -84288,7 +85585,7 @@ module Grit\ Bounds - {{224, 164.591}, {56, 26.1462}} + {{224, 164.59100000000001}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -84325,7 +85622,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -84339,7 +85636,7 @@ module Grit\ Bounds - {{224, 141.591}, {56, 26.1462}} + {{224, 141.59100000000001}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -84376,7 +85673,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -84395,8 +85692,8 @@ module Grit\ 213 Points - {387.51599, 168.664} - {231.985, 168.664} + {387.51598999999999, 168.66399999999999} + {231.98500000000001, 168.66399999999999} Style @@ -84413,6 +85710,8 @@ module Grit\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -84422,7 +85721,7 @@ module Grit\ Bounds - {{268, 81.664398}, {76, 22}} + {{268, 81.664398000000006}, {76, 22}} Class ShapedGraphic FitText @@ -84463,7 +85762,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -84527,7 +85826,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -84582,7 +85881,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -84606,8 +85905,8 @@ module Grit\ 207 Points - {332.009, 107.99} - {332.009, 141.19501} + {332.00900000000001, 107.98999999999999} + {332.00900000000001, 141.19501} Style @@ -84624,6 +85923,8 @@ module Grit\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -84638,8 +85939,8 @@ module Grit\ 208 Points - {389.23599, 142.19501} - {229.00101, 142.19501} + {389.23599000000002, 142.19501} + {229.00101000000001, 142.19501} Style @@ -84656,6 +85957,8 @@ module Grit\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -84665,7 +85968,7 @@ module Grit\ Bounds - {{229.00101, 106.664}, {160.235, 86.146004}} + {{229.00101000000001, 106.664}, {160.23500000000001, 86.146004000000005}} Class ShapedGraphic FontInfo @@ -84738,7 +86041,7 @@ module Grit\ Bounds - {{329.323, 436.36499}, {65, 14}} + {{329.32299999999998, 436.36498999999998}, {65, 14}} Class ShapedGraphic FitText @@ -84779,7 +86082,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -84798,8 +86101,8 @@ module Grit\ 202 Points - {324.11801, 460.96301} - {324.11801, 427.31} + {324.11801000000003, 460.96301} + {324.11801000000003, 427.31} Style @@ -84816,6 +86119,8 @@ module Grit\ HeadArrow 0 + Legacy + TailArrow 0 @@ -84823,7 +86128,7 @@ module Grit\ Bounds - {{283.354, 436.31}, {37, 14}} + {{283.35399999999998, 436.31}, {37, 14}} Class ShapedGraphic FitText @@ -84864,7 +86169,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -84883,8 +86188,8 @@ module Grit\ 200 Points - {278.58899, 460.42001} - {278.58899, 426.76599} + {278.58899000000002, 460.42000999999999} + {278.58899000000002, 426.76598999999999} Style @@ -84901,6 +86206,8 @@ module Grit\ HeadArrow 0 + Legacy + TailArrow 0 @@ -84945,7 +86252,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -84959,7 +86266,7 @@ module Grit\ Bounds - {{271.58899, 366.383}, {76, 22}} + {{271.58899000000002, 366.38299999999998}, {76, 22}} Class ShapedGraphic FitText @@ -85000,7 +86307,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -85014,7 +86321,7 @@ module Grit\ Bounds - {{352.58899, 397.383}, {27, 22}} + {{352.58899000000002, 397.38299999999998}, {27, 22}} Class ShapedGraphic FitText @@ -85064,7 +86371,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -85078,7 +86385,7 @@ module Grit\ Bounds - {{242.089, 397.383}, {39, 22}} + {{242.089, 397.38299999999998}, {39, 22}} Class ShapedGraphic FitText @@ -85119,7 +86426,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -85144,7 +86451,7 @@ module Grit\ Points {342.517, 392.44601} - {342.517, 424.056} + {342.517, 424.05599999999998} Style @@ -85161,6 +86468,8 @@ module Grit\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -85193,6 +86502,8 @@ module Grit\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -85202,7 +86513,7 @@ module Grit\ Bounds - {{232.589, 391.383}, {170.99899, 69.0364}} + {{232.589, 391.38299999999998}, {170.99898999999999, 69.0364}} Class ShapedGraphic FontInfo @@ -85275,7 +86586,7 @@ module Grit\ Bounds - {{325.97101, 305.909}, {22, 14}} + {{325.97100999999998, 305.90899999999999}, {22, 14}} Class ShapedGraphic FitText @@ -85316,7 +86627,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -85330,7 +86641,7 @@ module Grit\ Bounds - {{326.73599, 282.836}, {58, 14}} + {{326.73599000000002, 282.83600000000001}, {58, 14}} Class ShapedGraphic FitText @@ -85371,7 +86682,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -85385,7 +86696,7 @@ module Grit\ Bounds - {{282.26501, 306.854}, {37, 14}} + {{282.26501000000002, 306.85399999999998}, {37, 14}} Class ShapedGraphic FitText @@ -85426,7 +86737,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -85445,8 +86756,8 @@ module Grit\ 152 Points - {323.03, 326} - {323.03, 279.78101} + {323.02999999999997, 326} + {323.02999999999997, 279.78100999999998} Style @@ -85463,6 +86774,8 @@ module Grit\ HeadArrow 0 + Legacy + TailArrow 0 @@ -85470,7 +86783,7 @@ module Grit\ Bounds - {{282.26599, 282.78101}, {37, 14}} + {{282.26598999999999, 282.78100999999998}, {37, 14}} Class ShapedGraphic FitText @@ -85511,7 +86824,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -85530,8 +86843,8 @@ module Grit\ 150 Points - {277.50101, 326} - {277.50101, 279.78101} + {277.50101000000001, 326} + {277.50101000000001, 279.78100999999998} Style @@ -85548,6 +86861,8 @@ module Grit\ HeadArrow 0 + Legacy + TailArrow 0 @@ -85555,7 +86870,7 @@ module Grit\ Bounds - {{226.50101, 299.78101}, {56, 26.1462}} + {{226.50101000000001, 299.78100999999998}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -85592,7 +86907,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -85606,7 +86921,7 @@ module Grit\ Bounds - {{226.50101, 276.78101}, {56, 26.1462}} + {{226.50101000000001, 276.78100999999998}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -85643,7 +86958,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -85662,8 +86977,8 @@ module Grit\ 141 Points - {390.01599, 303.854} - {234.48599, 303.854} + {390.01598999999999, 303.85399999999998} + {234.48598999999999, 303.85399999999998} Style @@ -85680,6 +86995,8 @@ module Grit\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -85689,7 +87006,7 @@ module Grit\ Bounds - {{270.50101, 216.854}, {76, 22}} + {{270.50101000000001, 216.85400000000001}, {76, 22}} Class ShapedGraphic FitText @@ -85730,7 +87047,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -85744,7 +87061,7 @@ module Grit\ Bounds - {{346.50101, 247.854}, {27, 22}} + {{346.50101000000001, 247.85400000000001}, {27, 22}} Class ShapedGraphic FitText @@ -85794,7 +87111,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -85808,7 +87125,7 @@ module Grit\ Bounds - {{241.00101, 247.854}, {39, 22}} + {{241.00101000000001, 247.85400000000001}, {39, 22}} Class ShapedGraphic FitText @@ -85849,7 +87166,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -85873,8 +87190,8 @@ module Grit\ 135 Points - {334.509, 243.179} - {334.509, 276.384} + {334.50900000000001, 243.179} + {334.50900000000001, 276.38400000000001} Style @@ -85891,6 +87208,8 @@ module Grit\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -85905,8 +87224,8 @@ module Grit\ 136 Points - {391.73599, 277.384} - {231.50101, 277.384} + {391.73599000000002, 277.38400000000001} + {231.50101000000001, 277.38400000000001} Style @@ -85923,6 +87242,8 @@ module Grit\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -85932,7 +87253,7 @@ module Grit\ Bounds - {{231.50101, 241.854}, {160.235, 86.146004}} + {{231.50101000000001, 241.85400000000001}, {160.23500000000001, 86.146004000000005}} Class ShapedGraphic FontInfo @@ -86005,7 +87326,7 @@ module Grit\ Bounds - {{102.865, 165.604}, {37, 14}} + {{102.86499999999999, 165.60400000000001}, {37, 14}} Class ShapedGraphic FitText @@ -86046,7 +87367,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -86060,7 +87381,7 @@ module Grit\ Bounds - {{102.865, 144.604}, {37, 14}} + {{102.86499999999999, 144.60400000000001}, {37, 14}} Class ShapedGraphic FitText @@ -86101,7 +87422,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -86115,7 +87436,7 @@ module Grit\ Bounds - {{110.365, 123.604}, {22, 14}} + {{110.36499999999999, 123.604}, {22, 14}} Class ShapedGraphic FitText @@ -86156,7 +87477,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -86170,7 +87491,7 @@ module Grit\ Bounds - {{103.865, 101.604}, {37, 14}} + {{103.86499999999999, 101.604}, {37, 14}} Class ShapedGraphic FitText @@ -86211,7 +87532,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -86225,7 +87546,7 @@ module Grit\ Bounds - {{29.879, 184.78101}, {140, 22}} + {{29.879000000000001, 184.78101000000001}, {140, 22}} Class ShapedGraphic FitText @@ -86268,7 +87589,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -86289,8 +87610,8 @@ and it is really, really cool} 93 Points - {94.372002, 182.427} - {94.372002, 96.281303} + {94.372001999999995, 182.42699999999999} + {94.372001999999995, 96.281302999999994} Style @@ -86307,6 +87628,8 @@ and it is really, really cool} HeadArrow 0 + Legacy + TailArrow 0 @@ -86314,7 +87637,7 @@ and it is really, really cool} Bounds - {{29.879, 157.95799}, {56, 26.1462}} + {{29.879000000000001, 157.95799}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -86351,7 +87674,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -86365,7 +87688,7 @@ and it is really, really cool} Bounds - {{25.879, 136.45799}, {56, 26.1462}} + {{25.879000000000001, 136.45799}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -86402,7 +87725,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -86416,7 +87739,7 @@ and it is really, really cool} Bounds - {{25.879, 115.458}, {56, 26.1462}} + {{25.879000000000001, 115.458}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -86453,7 +87776,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -86467,7 +87790,7 @@ and it is really, really cool} Bounds - {{25.879, 94.458298}, {56, 26.1462}} + {{25.879000000000001, 94.458297999999999}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -86504,7 +87827,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -86523,8 +87846,8 @@ and it is really, really cool} 83 Points - {173.894, 182.604} - {24.364, 182.604} + {173.89400000000001, 182.60400000000001} + {24.364000000000001, 182.60400000000001} Style @@ -86541,6 +87864,8 @@ and it is really, really cool} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -86555,8 +87880,8 @@ and it is really, really cool} 82 Points - {174.379, 161.604} - {24.85, 161.604} + {174.37899999999999, 161.60400000000001} + {24.850000000000001, 161.60400000000001} Style @@ -86573,6 +87898,8 @@ and it is really, really cool} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -86587,8 +87914,8 @@ and it is really, really cool} 81 Points - {174.408, 140.604} - {24.879, 140.604} + {174.40799999999999, 140.60400000000001} + {24.879000000000001, 140.60400000000001} Style @@ -86605,6 +87932,8 @@ and it is really, really cool} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -86619,8 +87948,8 @@ and it is really, really cool} 80 Points - {173.894, 119.604} - {24.364, 119.604} + {173.89400000000001, 119.604} + {24.364000000000001, 119.604} Style @@ -86637,6 +87966,8 @@ and it is really, really cool} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -86646,7 +87977,7 @@ and it is really, really cool} Bounds - {{466.186, 111.604}, {149, 99}} + {{466.18599999999998, 111.604}, {149, 99}} Class ShapedGraphic FitText @@ -86689,7 +88020,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -86712,7 +88043,7 @@ ree of charge, to any person ob\ Bounds - {{60.872002, 29.6043}, {76, 22}} + {{60.872002000000002, 29.604299999999999}, {76, 22}} Class ShapedGraphic FitText @@ -86753,7 +88084,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -86772,7 +88103,7 @@ ree of charge, to any person ob\ Bounds - {{134.87199, 63.235298}, {27, 26.1462}} + {{134.87199000000001, 63.235298}, {27, 26.1462}} Class ShapedGraphic FontInfo @@ -86818,7 +88149,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -86832,7 +88163,7 @@ ree of charge, to any person ob\ Bounds - {{37.872002, 63.235298}, {56, 26.1462}} + {{37.872002000000002, 63.235298}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -86869,7 +88200,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -86888,8 +88219,8 @@ ree of charge, to any person ob\ 42 Points - {120.872, 58.4813} - {120.872, 96.512299} + {120.872, 58.481299999999997} + {120.872, 96.512298999999999} Style @@ -86906,6 +88237,8 @@ ree of charge, to any person ob\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -86920,8 +88253,8 @@ ree of charge, to any person ob\ 43 Points - {175.87199, 96.512299} - {21.872, 96.512299} + {175.87199000000001, 96.512298999999999} + {21.872, 96.512298999999999} Style @@ -86938,6 +88271,8 @@ ree of charge, to any person ob\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -87020,7 +88355,7 @@ ree of charge, to any person ob\ Bounds - {{501.186, 46.604301}, {76, 22}} + {{501.18599999999998, 46.604301}, {76, 22}} Class ShapedGraphic FitText @@ -87061,7 +88396,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -87080,7 +88415,7 @@ ree of charge, to any person ob\ Bounds - {{575.18597, 77.604301}, {27, 22}} + {{575.18597, 77.604301000000007}, {27, 22}} Class ShapedGraphic FitText @@ -87130,7 +88465,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -87144,7 +88479,7 @@ ree of charge, to any person ob\ Bounds - {{471.186, 77.604301}, {40, 22}} + {{471.18599999999998, 77.604301000000007}, {40, 22}} Class ShapedGraphic FitText @@ -87185,7 +88520,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -87204,7 +88539,7 @@ ree of charge, to any person ob\ 23 Points - {561.18597, 73.604301} + {561.18597, 73.604301000000007} {561.18597, 105.604} Style @@ -87222,6 +88557,8 @@ ree of charge, to any person ob\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -87237,7 +88574,7 @@ ree of charge, to any person ob\ Points {616.18597, 105.604} - {462.186, 105.604} + {462.18599999999998, 105.604} Style @@ -87254,6 +88591,8 @@ ree of charge, to any person ob\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -87263,7 +88602,7 @@ ree of charge, to any person ob\ Bounds - {{462.186, 71.604301}, {154, 130}} + {{462.18599999999998, 71.604301000000007}, {154, 130}} Class ShapedGraphic FontInfo @@ -87364,6 +88703,8 @@ ree of charge, to any person ob\ 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -87392,18 +88733,13 @@ ree of charge, to any person ob\ BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -87411,6 +88747,8 @@ ree of charge, to any person ob\ + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -87418,12 +88756,12 @@ ree of charge, to any person ob\ ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList Bounds - {{325.14301, 173.979}, {58, 14}} + {{325.14301, 173.97900000000001}, {58, 14}} Class ShapedGraphic FitText @@ -87464,7 +88802,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -87478,7 +88816,7 @@ ree of charge, to any person ob\ Bounds - {{279.67401, 173.924}, {37, 14}} + {{279.67401000000001, 173.92400000000001}, {37, 14}} Class ShapedGraphic FitText @@ -87519,7 +88857,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -87533,7 +88871,7 @@ ree of charge, to any person ob\ Bounds - {{223.908, 167.924}, {56, 26.1462}} + {{223.90799999999999, 167.92400000000001}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -87570,7 +88908,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -87589,8 +88927,8 @@ ree of charge, to any person ob\ 247 Points - {389.23599, 193.737} - {233.705, 193.737} + {389.23599000000002, 193.73699999999999} + {233.70500000000001, 193.73699999999999} Style @@ -87607,6 +88945,8 @@ ree of charge, to any person ob\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -87621,9 +88961,9 @@ ree of charge, to any person ob\ 245 Points - {400.73401, 379.33301} - {455, 391.383} - {496.41101, 391} + {400.73401000000001, 379.33301} + {455, 391.38299999999998} + {496.41100999999998, 391} Style @@ -87631,6 +88971,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -87647,8 +88989,8 @@ ree of charge, to any person ob\ 244 Points - {394.323, 183.33299} - {452.66699, 214.811} + {394.32299999999998, 183.33299} + {452.66699, 214.81100000000001} {490, 220.964} Style @@ -87657,6 +88999,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -87673,7 +89017,7 @@ ree of charge, to any person ob\ 242 Points - {394.323, 154} + {394.32299999999998, 154} {442, 62} {490, 51.604301} @@ -87683,6 +89027,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -87704,8 +89050,8 @@ ree of charge, to any person ob\ 240 Points - {298.77332, 214.811} - {305.20123, 303.33301} + {298.77330804087785, 214.81100000000004} + {305.20124579195902, 303.33301} Style @@ -87713,6 +89059,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -87744,6 +89092,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -87755,7 +89105,7 @@ ree of charge, to any person ob\ Bounds - {{469.186, 446.25}, {140, 77}} + {{469.18599999999998, 446.25}, {140, 77}} Class ShapedGraphic FitText @@ -87798,7 +89148,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -87819,7 +89169,7 @@ module Grit\ Bounds - {{504.186, 381.25}, {76, 22}} + {{504.18599999999998, 381.25}, {76, 22}} Class ShapedGraphic FitText @@ -87860,7 +89210,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -87879,7 +89229,7 @@ module Grit\ Bounds - {{578.18597, 413.819}, {27, 16.753799}} + {{578.18597, 413.81900000000002}, {27, 16.753799000000001}} Class ShapedGraphic FontInfo @@ -87925,7 +89275,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -87939,7 +89289,7 @@ module Grit\ Bounds - {{474.186, 414.819}, {40, 16.753799}} + {{474.18599999999998, 414.81900000000002}, {40, 16.753799000000001}} Class ShapedGraphic FontInfo @@ -87976,7 +89326,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -88013,6 +89363,8 @@ module Grit\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -88028,7 +89380,7 @@ module Grit\ Points {619.18597, 440.142} - {465.186, 440.142} + {465.18599999999998, 440.142} Style @@ -88045,6 +89397,8 @@ module Grit\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -88054,7 +89408,7 @@ module Grit\ Bounds - {{465.186, 406.25}, {154, 99}} + {{465.18599999999998, 406.25}, {154, 99}} Class ShapedGraphic FontInfo @@ -88127,7 +89481,7 @@ module Grit\ Bounds - {{467.686, 275.604}, {116, 88}} + {{467.68599999999998, 275.60399999999998}, {116, 88}} Class ShapedGraphic FitText @@ -88170,7 +89524,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -88192,7 +89546,7 @@ module Grit\ Bounds - {{502.686, 210.604}, {76, 22}} + {{502.68599999999998, 210.60400000000001}, {76, 22}} Class ShapedGraphic FitText @@ -88233,7 +89587,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -88252,7 +89606,7 @@ module Grit\ Bounds - {{576.68597, 241.265}, {27, 20.7554}} + {{576.68597, 241.26499999999999}, {27, 20.755400000000002}} Class ShapedGraphic FontInfo @@ -88298,7 +89652,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -88312,7 +89666,7 @@ module Grit\ Bounds - {{472.686, 241.265}, {40, 20.7554}} + {{472.68599999999998, 241.26499999999999}, {40, 20.755400000000002}} Class ShapedGraphic FontInfo @@ -88349,7 +89703,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -88368,8 +89722,8 @@ module Grit\ 225 Points - {562.68597, 237.491} - {562.68597, 267.681} + {562.68597, 237.49100000000001} + {562.68597, 267.68099999999998} Style @@ -88386,6 +89740,8 @@ module Grit\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -88400,8 +89756,8 @@ module Grit\ 226 Points - {617.68597, 267.681} - {463.686, 267.681} + {617.68597, 267.68099999999998} + {463.68599999999998, 267.68099999999998} Style @@ -88418,6 +89774,8 @@ module Grit\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -88427,7 +89785,7 @@ module Grit\ Bounds - {{463.686, 235.604}, {154, 122.646}} + {{463.68599999999998, 235.60400000000001}, {154, 122.646}} Class ShapedGraphic FontInfo @@ -88500,7 +89858,7 @@ module Grit\ Bounds - {{327.47, 199.86501}, {22, 14}} + {{327.47000000000003, 199.86501000000001}, {22, 14}} Class ShapedGraphic FitText @@ -88541,7 +89899,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -88555,7 +89913,7 @@ module Grit\ Bounds - {{326.23499, 147.646}, {44, 14}} + {{326.23498999999998, 147.64599999999999}, {44, 14}} Class ShapedGraphic FitText @@ -88596,7 +89954,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -88610,7 +89968,7 @@ module Grit\ Bounds - {{279.76501, 200.811}, {37, 14}} + {{279.76501000000002, 200.81100000000001}, {37, 14}} Class ShapedGraphic FitText @@ -88651,7 +90009,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -88670,8 +90028,8 @@ module Grit\ 218 Points - {319.52899, 222} - {320.52899, 144.591} + {319.52899000000002, 222} + {320.52899000000002, 144.59100000000001} Style @@ -88688,6 +90046,8 @@ module Grit\ HeadArrow 0 + Legacy + TailArrow 0 @@ -88695,7 +90055,7 @@ module Grit\ Bounds - {{279.76599, 147.591}, {37, 14}} + {{279.76598999999999, 147.59100000000001}, {37, 14}} Class ShapedGraphic FitText @@ -88736,7 +90096,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -88756,7 +90116,7 @@ module Grit\ Points {274, 222} - {275, 144.591} + {275, 144.59100000000001} Style @@ -88773,6 +90133,8 @@ module Grit\ HeadArrow 0 + Legacy + TailArrow 0 @@ -88780,7 +90142,7 @@ module Grit\ Bounds - {{224, 193.737}, {56, 26.1462}} + {{224, 193.73699999999999}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -88817,7 +90179,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -88831,7 +90193,7 @@ module Grit\ Bounds - {{224, 141.591}, {56, 26.1462}} + {{224, 141.59100000000001}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -88868,7 +90230,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -88887,8 +90249,8 @@ module Grit\ 213 Points - {387.51599, 168.664} - {231.985, 168.664} + {387.51598999999999, 168.66399999999999} + {231.98500000000001, 168.66399999999999} Style @@ -88905,6 +90267,8 @@ module Grit\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -88914,7 +90278,7 @@ module Grit\ Bounds - {{268, 81.664398}, {76, 22}} + {{268, 81.664398000000006}, {76, 22}} Class ShapedGraphic FitText @@ -88955,7 +90319,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -89019,7 +90383,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -89074,7 +90438,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -89098,8 +90462,8 @@ module Grit\ 207 Points - {332.009, 108.45} - {332.009, 139.33099} + {332.00900000000001, 108.45} + {332.00900000000001, 139.33099000000001} Style @@ -89116,6 +90480,8 @@ module Grit\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -89130,8 +90496,8 @@ module Grit\ 208 Points - {389.23599, 141.591} - {229.00101, 141.591} + {389.23599000000002, 141.59100000000001} + {229.00101000000001, 141.59100000000001} Style @@ -89148,6 +90514,8 @@ module Grit\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -89157,7 +90525,7 @@ module Grit\ Bounds - {{229.00101, 106.664}, {160.235, 116.003}} + {{229.00101000000001, 106.664}, {160.23500000000001, 116.003}} Class ShapedGraphic FontInfo @@ -89230,7 +90598,7 @@ module Grit\ Bounds - {{331.23499, 369.315}, {44, 14}} + {{331.23498999999998, 369.315}, {44, 14}} Class ShapedGraphic FitText @@ -89271,7 +90639,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -89290,8 +90658,8 @@ module Grit\ 152 Points - {320.52899, 389.74701} - {320.52899, 362.08301} + {320.52899000000002, 389.74700999999999} + {320.52899000000002, 362.08301} Style @@ -89308,6 +90676,8 @@ module Grit\ HeadArrow 0 + Legacy + TailArrow 0 @@ -89315,7 +90685,7 @@ module Grit\ Bounds - {{279.76501, 369.26001}, {37, 14}} + {{279.76501000000002, 369.26001000000002}, {37, 14}} Class ShapedGraphic FitText @@ -89356,7 +90726,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -89375,8 +90745,8 @@ module Grit\ 150 Points - {275.00101, 390.64301} - {275.00101, 362.979} + {275.00101000000001, 390.64301} + {275.00101000000001, 362.97899999999998} Style @@ -89393,6 +90763,8 @@ module Grit\ HeadArrow 0 + Legacy + TailArrow 0 @@ -89400,7 +90772,7 @@ module Grit\ Bounds - {{224, 363.26001}, {56, 26.1462}} + {{224, 363.26001000000002}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -89437,7 +90809,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -89492,7 +90864,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -89556,7 +90928,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -89611,7 +90983,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -89642,9 +91014,9 @@ module Grit\ 135 Points - {332.492, 335.19901} - {332.492, 360.04401} - {332.492, 356.90399} + {332.49200000000002, 335.19900999999999} + {332.49200000000002, 360.04401000000001} + {332.49200000000002, 356.90399000000002} Style @@ -89661,6 +91033,8 @@ module Grit\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -89682,8 +91056,8 @@ module Grit\ 246 Points - {389.49899, 361.06601} - {229.26401, 361.06601} + {389.49898999999999, 361.06601000000001} + {229.26401000000001, 361.06601000000001} Rotation 352.34844970703125 @@ -89702,6 +91076,8 @@ module Grit\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -89711,7 +91087,7 @@ module Grit\ Bounds - {{229.48399, 334.33301}, {160.235, 56.310001}} + {{229.48399000000001, 334.33301}, {160.23500000000001, 56.310001}} Class ShapedGraphic FontInfo @@ -89784,7 +91160,7 @@ module Grit\ Bounds - {{102.865, 165.604}, {37, 14}} + {{102.86499999999999, 165.60400000000001}, {37, 14}} Class ShapedGraphic FitText @@ -89825,7 +91201,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -89839,7 +91215,7 @@ module Grit\ Bounds - {{102.865, 144.604}, {37, 14}} + {{102.86499999999999, 144.60400000000001}, {37, 14}} Class ShapedGraphic FitText @@ -89880,7 +91256,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -89894,7 +91270,7 @@ module Grit\ Bounds - {{110.365, 123.604}, {22, 14}} + {{110.36499999999999, 123.604}, {22, 14}} Class ShapedGraphic FitText @@ -89935,7 +91311,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -89949,7 +91325,7 @@ module Grit\ Bounds - {{103.865, 101.604}, {37, 14}} + {{103.86499999999999, 101.604}, {37, 14}} Class ShapedGraphic FitText @@ -89990,7 +91366,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -90004,7 +91380,7 @@ module Grit\ Bounds - {{29.879, 184.78101}, {140, 22}} + {{29.879000000000001, 184.78101000000001}, {140, 22}} Class ShapedGraphic FitText @@ -90047,7 +91423,7 @@ module Grit\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -90068,8 +91444,8 @@ and it is really, really cool} 93 Points - {94.372002, 182.427} - {94.372002, 96.281303} + {94.372001999999995, 182.42699999999999} + {94.372001999999995, 96.281302999999994} Style @@ -90086,6 +91462,8 @@ and it is really, really cool} HeadArrow 0 + Legacy + TailArrow 0 @@ -90093,7 +91471,7 @@ and it is really, really cool} Bounds - {{29.879, 157.95799}, {56, 26.1462}} + {{29.879000000000001, 157.95799}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -90130,7 +91508,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -90144,7 +91522,7 @@ and it is really, really cool} Bounds - {{25.879, 136.45799}, {56, 26.1462}} + {{25.879000000000001, 136.45799}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -90181,7 +91559,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -90195,7 +91573,7 @@ and it is really, really cool} Bounds - {{25.879, 115.458}, {56, 26.1462}} + {{25.879000000000001, 115.458}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -90232,7 +91610,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -90246,7 +91624,7 @@ and it is really, really cool} Bounds - {{25.879, 94.458298}, {56, 26.1462}} + {{25.879000000000001, 94.458297999999999}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -90283,7 +91661,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -90302,8 +91680,8 @@ and it is really, really cool} 83 Points - {173.894, 182.604} - {24.364, 182.604} + {173.89400000000001, 182.60400000000001} + {24.364000000000001, 182.60400000000001} Style @@ -90320,6 +91698,8 @@ and it is really, really cool} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -90334,8 +91714,8 @@ and it is really, really cool} 82 Points - {174.379, 161.604} - {24.85, 161.604} + {174.37899999999999, 161.60400000000001} + {24.850000000000001, 161.60400000000001} Style @@ -90352,6 +91732,8 @@ and it is really, really cool} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -90366,8 +91748,8 @@ and it is really, really cool} 81 Points - {174.408, 140.604} - {24.879, 140.604} + {174.40799999999999, 140.60400000000001} + {24.879000000000001, 140.60400000000001} Style @@ -90384,6 +91766,8 @@ and it is really, really cool} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -90398,8 +91782,8 @@ and it is really, really cool} 80 Points - {173.894, 119.604} - {24.364, 119.604} + {173.89400000000001, 119.604} + {24.364000000000001, 119.604} Style @@ -90416,6 +91800,8 @@ and it is really, really cool} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -90425,7 +91811,7 @@ and it is really, really cool} Bounds - {{466.186, 111.604}, {149, 99}} + {{466.18599999999998, 111.604}, {149, 99}} Class ShapedGraphic FitText @@ -90468,7 +91854,7 @@ and it is really, really cool} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -90491,7 +91877,7 @@ ree of charge, to any person ob\ Bounds - {{60.872002, 29.6043}, {76, 22}} + {{60.872002000000002, 29.604299999999999}, {76, 22}} Class ShapedGraphic FitText @@ -90532,7 +91918,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -90551,7 +91937,7 @@ ree of charge, to any person ob\ Bounds - {{134.87199, 63.235298}, {27, 26.1462}} + {{134.87199000000001, 63.235298}, {27, 26.1462}} Class ShapedGraphic FontInfo @@ -90597,7 +91983,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -90611,7 +91997,7 @@ ree of charge, to any person ob\ Bounds - {{37.872002, 63.235298}, {56, 26.1462}} + {{37.872002000000002, 63.235298}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -90648,7 +92034,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -90667,8 +92053,8 @@ ree of charge, to any person ob\ 42 Points - {120.872, 58.4813} - {120.872, 96.512299} + {120.872, 58.481299999999997} + {120.872, 96.512298999999999} Style @@ -90685,6 +92071,8 @@ ree of charge, to any person ob\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -90699,8 +92087,8 @@ ree of charge, to any person ob\ 43 Points - {175.87199, 96.512299} - {21.872, 96.512299} + {175.87199000000001, 96.512298999999999} + {21.872, 96.512298999999999} Style @@ -90717,6 +92105,8 @@ ree of charge, to any person ob\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -90799,7 +92189,7 @@ ree of charge, to any person ob\ Bounds - {{501.186, 46.604301}, {76, 22}} + {{501.18599999999998, 46.604301}, {76, 22}} Class ShapedGraphic FitText @@ -90840,7 +92230,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -90859,7 +92249,7 @@ ree of charge, to any person ob\ Bounds - {{575.18597, 77.604301}, {27, 22}} + {{575.18597, 77.604301000000007}, {27, 22}} Class ShapedGraphic FitText @@ -90909,7 +92299,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -90923,7 +92313,7 @@ ree of charge, to any person ob\ Bounds - {{471.186, 77.604301}, {40, 22}} + {{471.18599999999998, 77.604301000000007}, {40, 22}} Class ShapedGraphic FitText @@ -90964,7 +92354,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -90983,7 +92373,7 @@ ree of charge, to any person ob\ 23 Points - {561.18597, 73.604301} + {561.18597, 73.604301000000007} {561.18597, 105.604} Style @@ -91001,6 +92391,8 @@ ree of charge, to any person ob\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -91016,7 +92408,7 @@ ree of charge, to any person ob\ Points {616.18597, 105.604} - {462.186, 105.604} + {462.18599999999998, 105.604} Style @@ -91033,6 +92425,8 @@ ree of charge, to any person ob\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -91042,7 +92436,7 @@ ree of charge, to any person ob\ Bounds - {{462.186, 71.604301}, {154, 130}} + {{462.18599999999998, 71.604301000000007}, {154, 130}} Class ShapedGraphic FontInfo @@ -91143,6 +92537,8 @@ ree of charge, to any person ob\ 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -91171,18 +92567,13 @@ ree of charge, to any person ob\ BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -91190,6 +92581,8 @@ ree of charge, to any person ob\ + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -91197,7 +92590,7 @@ ree of charge, to any person ob\ ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -91216,6 +92609,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -91294,7 +92689,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -91349,7 +92744,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -91361,7 +92756,7 @@ ree of charge, to any person ob\ Bounds - {{422.54453, 227.73956}, {36, 29}} + {{422.54362174404224, 227.73957757588255}, {36, 29}} Class ShapedGraphic FitText @@ -91404,7 +92799,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -91416,7 +92811,7 @@ ree of charge, to any person ob\ Bounds - {{317.5, 226.371}, {78, 29}} + {{317.5, 226.37100000000001}, {78, 29}} Class ShapedGraphic FitText @@ -91459,7 +92854,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -91471,7 +92866,7 @@ ree of charge, to any person ob\ Bounds - {{243.24277, 226.73264}, {61, 29}} + {{243.24366386483325, 226.73265355612398}, {61, 29}} Class ShapedGraphic FitText @@ -91514,7 +92909,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -91545,6 +92940,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -91569,8 +92966,8 @@ ree of charge, to any person ob\ 299 Points - {392.83878, 204.92416} - {483.16315, 275.57581} + {392.83838495607569, 204.92416863087607} + {483.16177344352974, 275.57582881838454} Style @@ -91578,6 +92975,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -91602,8 +93001,8 @@ ree of charge, to any person ob\ 298 Points - {320.16122, 204.92416} - {229.83687, 275.57581} + {320.1616155066676, 204.92416863832773} + {229.83822816941694, 275.57582884435817} Style @@ -91611,6 +93010,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -91644,6 +93045,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -91722,7 +93125,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -91798,7 +93201,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -91874,7 +93277,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -91950,7 +93353,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -92026,7 +93429,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -92066,6 +93469,8 @@ ree of charge, to any person ob\ 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -92094,18 +93499,13 @@ ree of charge, to any person ob\ BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -92113,6 +93513,8 @@ ree of charge, to any person ob\ + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -92120,12 +93522,12 @@ ree of charge, to any person ob\ ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList Bounds - {{411.96069, 218.87445}, {95, 29}} + {{411.960682343955, 218.87444980714344}, {95, 29}} Class ShapedGraphic FitText @@ -92173,7 +93575,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -92185,7 +93587,7 @@ ree of charge, to any person ob\ Bounds - {{318.14084, 217.70755}, {78, 29}} + {{318.14088629609176, 217.70755711611659}, {78, 29}} Class ShapedGraphic FitText @@ -92233,7 +93635,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -92245,7 +93647,7 @@ ree of charge, to any person ob\ Bounds - {{243.36081, 219.79669}, {61, 29}} + {{243.36087484715554, 219.79668373564539}, {61, 29}} Class ShapedGraphic FitText @@ -92293,7 +93695,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -92315,8 +93717,8 @@ ree of charge, to any person ob\ 299 Points - {404.21204, 202.85565} - {508.78799, 260.62234} + {404.21204330656582, 202.85565490106578} + {508.78795831855035, 260.62234305796886} Style @@ -92324,6 +93726,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -92348,8 +93752,8 @@ ree of charge, to any person ob\ 298 Points - {315.95059, 204.85968} - {234.04927, 262.14032} + {315.9506190528482, 204.85968727820048} + {234.04936707348418, 262.14031252017486} Style @@ -92357,6 +93761,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -92381,8 +93787,8 @@ ree of charge, to any person ob\ 297 Points - {356.83359, 205.49991} - {357.43732, 257.97809} + {356.83362868410876, 205.49990074511328} + {357.43736289922794, 257.97809925989424} Style @@ -92390,6 +93796,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -92404,7 +93812,7 @@ ree of charge, to any person ob\ Bounds - {{509, 259.478}, {95, 55}} + {{509, 259.47800000000001}, {95, 55}} Class ShapedGraphic FontInfo @@ -92468,7 +93876,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -92480,7 +93888,7 @@ ree of charge, to any person ob\ Bounds - {{310.271, 259.478}, {95, 55}} + {{310.27100000000002, 259.47800000000001}, {95, 55}} Class ShapedGraphic FontInfo @@ -92544,7 +93952,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -92620,7 +94028,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -92696,7 +94104,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -92736,6 +94144,8 @@ ree of charge, to any person ob\ 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -92764,7 +94174,7 @@ ree of charge, to any person ob\ BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic FontInfo @@ -92778,11 +94188,6 @@ ree of charge, to any person ob\ 2 Style - shadow - - Draws - NO - stroke Draws @@ -92790,6 +94195,8 @@ ree of charge, to any person ob\ + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -92797,12 +94204,12 @@ ree of charge, to any person ob\ ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList Bounds - {{498.56488, 124.7002}, {78, 29}} + {{498.56482916774826, 124.70016974207962}, {78, 29}} Class ShapedGraphic FitText @@ -92850,7 +94257,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -92862,7 +94269,7 @@ ree of charge, to any person ob\ Bounds - {{502.75775, 83.579399}, {69, 29}} + {{502.75775719133185, 83.579398999999995}, {69, 29}} Class ShapedGraphic FitText @@ -92910,7 +94317,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -92922,7 +94329,7 @@ ree of charge, to any person ob\ Bounds - {{500.94876, 38.5}, {36, 29}} + {{500.94871435301138, 38.5}, {36, 29}} Class ShapedGraphic FitText @@ -92970,7 +94377,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -92992,12 +94399,12 @@ ree of charge, to any person ob\ 327 Points - {460.86203, 69.518745} + {460.86203630895039, 69.518746133859921} {477.38101, 53} - {743.80103, 53} - {743.80103, 431} - {487.80099, 431} - {460.5722, 403.48715} + {743.80102999999997, 53} + {743.80102999999997, 431} + {487.80099000000001, 431} + {460.57219728118042, 403.48713983483583} Style @@ -93009,6 +94416,8 @@ ree of charge, to any person ob\ HopType 1 + Legacy + TailArrow 0 @@ -93031,10 +94440,10 @@ ree of charge, to any person ob\ 326 Points - {481.30096, 98.079399} - {726.80103, 98.079399} - {726.80103, 280} - {708.72388, 280.2482} + {481.30099000000007, 98.079398999999995} + {726.80102999999997, 98.079398999999995} + {726.80102999999997, 280} + {708.7238586223034, 280.24821098385797} Style @@ -93042,6 +94451,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -93064,8 +94475,8 @@ ree of charge, to any person ob\ 325 Points - {481.19821, 117.18084} - {610.82684, 167.81963} + {481.19816665129434, 117.18082648839524} + {610.82682331153978, 167.81958633483353} Style @@ -93073,6 +94484,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -93097,8 +94510,8 @@ ree of charge, to any person ob\ 324 Points - {322.5, 98.079399} - {383.30099, 98.079399} + {322.49999999999994, 98.079398999999995} + {383.30099000000001, 98.079398999999995} Style @@ -93106,6 +94519,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -93120,7 +94535,7 @@ ree of charge, to any person ob\ Bounds - {{390.30099, 72.579399}, {37, 14}} + {{390.30099000000001, 72.579398999999995}, {37, 14}} Class ShapedGraphic FitText @@ -93163,7 +94578,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural @@ -93177,7 +94592,7 @@ ree of charge, to any person ob\ Bounds - {{384.80099, 70.579399}, {95, 55}} + {{384.80099000000001, 70.579398999999995}, {95, 55}} Class ShapedGraphic FontInfo @@ -93241,7 +94656,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -93263,7 +94678,7 @@ ree of charge, to any person ob\ 321 Points - {259.5, 127.0794} + {259.5, 127.079399} {259.5, 207.5} Style @@ -93272,6 +94687,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -93297,7 +94714,7 @@ ree of charge, to any person ob\ Points {259.5, 265.5} - {259.5, 345.92096} + {259.5, 345.92098999999996} Style @@ -93305,6 +94722,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -93329,8 +94748,8 @@ ree of charge, to any person ob\ 319 Points - {322.49988, 235.55971} - {383.30115, 234.65224} + {322.4998329665288, 235.55974252910514} + {383.30115702272309, 234.65229727898026} Style @@ -93342,6 +94761,8 @@ ree of charge, to any person ob\ HopType 1 + Legacy + LineType 1 TailArrow @@ -93366,8 +94787,8 @@ ree of charge, to any person ob\ 318 Points - {322.5, 374.92099} - {383.30099, 374.92099} + {322.49999999999994, 374.92099000000002} + {383.30099000000001, 374.92099000000002} Style @@ -93375,6 +94796,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -93389,7 +94812,7 @@ ree of charge, to any person ob\ Bounds - {{204.474, 73.579399}, {47.9053, 14}} + {{204.47399999999999, 73.579398999999995}, {47.905299999999997, 14}} Class ShapedGraphic FontInfo @@ -93428,7 +94851,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural @@ -93442,7 +94865,7 @@ ree of charge, to any person ob\ Bounds - {{198, 70.579399}, {123, 55}} + {{198, 70.579398999999995}, {123, 55}} Class ShapedGraphic FontInfo @@ -93506,7 +94929,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -93518,7 +94941,7 @@ ree of charge, to any person ob\ Bounds - {{204.474, 212}, {47.9053, 14}} + {{204.47399999999999, 212}, {47.905299999999997, 14}} Class ShapedGraphic FontInfo @@ -93557,7 +94980,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \deftab720 @@ -93636,7 +95059,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -93648,7 +95071,7 @@ ree of charge, to any person ob\ Bounds - {{204.474, 350.42099}, {47.9053, 14}} + {{204.47399999999999, 350.42099000000002}, {47.905299999999997, 14}} Class ShapedGraphic FontInfo @@ -93687,7 +95110,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural @@ -93701,7 +95124,7 @@ ree of charge, to any person ob\ Bounds - {{198, 347.42099}, {123, 55}} + {{198, 347.42099000000002}, {123, 55}} Class ShapedGraphic FontInfo @@ -93765,7 +95188,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -93777,7 +95200,7 @@ ree of charge, to any person ob\ Bounds - {{617.224, 350.42099}, {37, 14}} + {{617.22400000000005, 350.42099000000002}, {37, 14}} Class ShapedGraphic FitText @@ -93820,7 +95243,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural @@ -93834,7 +95257,7 @@ ree of charge, to any person ob\ Bounds - {{390.80099, 350.42099}, {37, 14}} + {{390.80099000000001, 350.42099000000002}, {37, 14}} Class ShapedGraphic FitText @@ -93877,7 +95300,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural @@ -93891,7 +95314,7 @@ ree of charge, to any person ob\ Bounds - {{617.724, 161.42101}, {37, 14}} + {{617.72400000000005, 161.42101}, {37, 14}} Class ShapedGraphic FitText @@ -93934,7 +95357,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural @@ -93948,7 +95371,7 @@ ree of charge, to any person ob\ Bounds - {{617.224, 256.42099}, {37, 14}} + {{617.22400000000005, 256.42099000000002}, {37, 14}} Class ShapedGraphic FitText @@ -93991,7 +95414,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural @@ -94005,7 +95428,7 @@ ree of charge, to any person ob\ Bounds - {{390.30099, 208.42101}, {37, 14}} + {{390.30099000000001, 208.42101}, {37, 14}} Class ShapedGraphic FitText @@ -94048,7 +95471,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural @@ -94062,7 +95485,7 @@ ree of charge, to any person ob\ Bounds - {{502.77399, 360.42099}, {78, 29}} + {{502.77437879344052, 360.42099000000002}, {78, 29}} Class ShapedGraphic FitText @@ -94110,7 +95533,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -94122,7 +95545,7 @@ ree of charge, to any person ob\ Bounds - {{500.56, 197.2545}, {78, 29}} + {{500.55997133914758, 197.25450999376872}, {78, 29}} Class ShapedGraphic FitText @@ -94170,7 +95593,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -94182,7 +95605,7 @@ ree of charge, to any person ob\ Bounds - {{502.78571, 241.11749}, {69, 29}} + {{502.78570281869747, 241.11750073441547}, {69, 29}} Class ShapedGraphic FitText @@ -94230,7 +95653,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -94252,8 +95675,8 @@ ree of charge, to any person ob\ 300 Points - {481.30099, 374.92099} - {610.724, 374.92099} + {481.30099000000007, 374.92099000000002} + {610.72400000000005, 374.92099000000002} Style @@ -94261,6 +95684,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -94285,8 +95710,8 @@ ree of charge, to any person ob\ 298 Points - {481.26999, 244.04109} - {610.75507, 270.8009} + {481.26994856316685, 244.04109822250646} + {610.75504145230627, 270.80091917820852} Style @@ -94294,6 +95719,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -94318,8 +95745,8 @@ ree of charge, to any person ob\ 297 Points - {481.26999, 223.80092} - {610.75507, 197.04109} + {481.26994855948135, 223.80092115837954} + {610.75504143887554, 197.04109856559904} Style @@ -94327,6 +95754,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -94341,7 +95770,7 @@ ree of charge, to any person ob\ Bounds - {{612.224, 347.42099}, {95, 55}} + {{612.22400000000005, 347.42099000000002}, {95, 55}} Class ShapedGraphic FontInfo @@ -94405,7 +95834,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -94417,7 +95846,7 @@ ree of charge, to any person ob\ Bounds - {{612.224, 159.42101}, {95, 55}} + {{612.22400000000005, 159.42101}, {95, 55}} Class ShapedGraphic FontInfo @@ -94481,7 +95910,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -94493,7 +95922,7 @@ ree of charge, to any person ob\ Bounds - {{612.224, 253.42101}, {95, 55}} + {{612.22400000000005, 253.42101}, {95, 55}} Class ShapedGraphic FontInfo @@ -94557,7 +95986,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -94569,7 +95998,7 @@ ree of charge, to any person ob\ Bounds - {{384.80099, 347.42099}, {95, 55}} + {{384.80099000000001, 347.42099000000002}, {95, 55}} Class ShapedGraphic FontInfo @@ -94633,7 +96062,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -94645,7 +96074,7 @@ ree of charge, to any person ob\ Bounds - {{384.80099, 206.42101}, {95, 55}} + {{384.80099000000001, 206.42101}, {95, 55}} Class ShapedGraphic FontInfo @@ -94709,7 +96138,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -94749,6 +96178,8 @@ ree of charge, to any person ob\ 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -94777,7 +96208,7 @@ ree of charge, to any person ob\ BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic FontInfo @@ -94791,11 +96222,6 @@ ree of charge, to any person ob\ 2 Style - shadow - - Draws - NO - stroke Draws @@ -94803,6 +96229,8 @@ ree of charge, to any person ob\ + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -94810,12 +96238,12 @@ ree of charge, to any person ob\ ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList Bounds - {{204.474, 73.579399}, {47.9053, 14}} + {{204.47399999999999, 73.579398999999995}, {47.905299999999997, 14}} Class ShapedGraphic FontInfo @@ -94854,7 +96282,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural @@ -94868,7 +96296,7 @@ ree of charge, to any person ob\ Bounds - {{204.474, 212}, {47.9053, 14}} + {{204.47399999999999, 212}, {47.905299999999997, 14}} Class ShapedGraphic FontInfo @@ -94907,7 +96335,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \deftab720 @@ -94932,8 +96360,8 @@ ree of charge, to any person ob\ 335 Points - {158.49983, 234.99438} - {196.50017, 235.5609} + {158.49983334799899, 234.99436236168236} + {196.50016663668279, 235.56086016568401} Style @@ -94941,6 +96369,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -94965,8 +96395,8 @@ ree of charge, to any person ob\ 334 Points - {158.5, 98.079399} - {196.5, 98.079399} + {158.5, 98.079398999999995} + {196.5, 98.079398999999995} Style @@ -94974,6 +96404,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -95052,7 +96484,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -95064,7 +96496,7 @@ ree of charge, to any person ob\ Bounds - {{16, 70.579399}, {141, 55}} + {{16, 70.579398999999995}, {141, 55}} Class ShapedGraphic FontInfo @@ -95128,7 +96560,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -95140,7 +96572,7 @@ ree of charge, to any person ob\ Bounds - {{498.56488, 124.7002}, {78, 29}} + {{498.56482916774826, 124.70016974207962}, {78, 29}} Class ShapedGraphic FitText @@ -95188,7 +96620,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -95200,7 +96632,7 @@ ree of charge, to any person ob\ Bounds - {{502.75775, 83.579399}, {69, 29}} + {{502.75775719133185, 83.579398999999995}, {69, 29}} Class ShapedGraphic FitText @@ -95248,7 +96680,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -95260,7 +96692,7 @@ ree of charge, to any person ob\ Bounds - {{500.94876, 38.5}, {36, 29}} + {{500.94871435301138, 38.5}, {36, 29}} Class ShapedGraphic FitText @@ -95308,7 +96740,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -95330,12 +96762,12 @@ ree of charge, to any person ob\ 327 Points - {460.86203, 69.518745} + {460.86203630895039, 69.518746133859921} {477.38101, 53} - {743.80103, 53} - {743.80103, 431} - {487.80099, 431} - {460.5722, 403.48715} + {743.80102999999997, 53} + {743.80102999999997, 431} + {487.80099000000001, 431} + {460.57219728118042, 403.48713983483583} Style @@ -95347,6 +96779,8 @@ ree of charge, to any person ob\ HopType 1 + Legacy + TailArrow 0 @@ -95369,10 +96803,10 @@ ree of charge, to any person ob\ 326 Points - {481.30096, 98.079399} - {726.80103, 98.079399} - {726.80103, 280} - {708.72388, 280.2482} + {481.30099000000007, 98.079398999999995} + {726.80102999999997, 98.079398999999995} + {726.80102999999997, 280} + {708.7238586223034, 280.24821098385797} Style @@ -95380,6 +96814,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + TailArrow 0 @@ -95402,8 +96838,8 @@ ree of charge, to any person ob\ 325 Points - {481.19821, 117.18084} - {610.82684, 167.81963} + {481.19816665129434, 117.18082648839524} + {610.82682331153978, 167.81958633483353} Style @@ -95411,6 +96847,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -95435,8 +96873,8 @@ ree of charge, to any person ob\ 324 Points - {322.5, 98.079399} - {383.30099, 98.079399} + {322.49999999999994, 98.079398999999995} + {383.30099000000001, 98.079398999999995} Style @@ -95444,6 +96882,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -95458,7 +96898,7 @@ ree of charge, to any person ob\ Bounds - {{390.30099, 72.579399}, {37, 14}} + {{390.30099000000001, 72.579398999999995}, {37, 14}} Class ShapedGraphic FitText @@ -95501,7 +96941,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural @@ -95515,7 +96955,7 @@ ree of charge, to any person ob\ Bounds - {{384.80099, 70.579399}, {95, 55}} + {{384.80099000000001, 70.579398999999995}, {95, 55}} Class ShapedGraphic FontInfo @@ -95579,7 +97019,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -95601,7 +97041,7 @@ ree of charge, to any person ob\ 321 Points - {259.5, 127.0794} + {259.5, 127.079399} {259.5, 207.5} Style @@ -95610,6 +97050,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -95635,7 +97077,7 @@ ree of charge, to any person ob\ Points {259.5, 265.5} - {259.5, 345.92096} + {259.5, 345.92098999999996} Style @@ -95643,6 +97085,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -95667,8 +97111,8 @@ ree of charge, to any person ob\ 319 Points - {322.49988, 235.55971} - {383.30115, 234.65224} + {322.4998329665288, 235.55974252910514} + {383.30115702272309, 234.65229727898026} Style @@ -95680,6 +97124,8 @@ ree of charge, to any person ob\ HopType 1 + Legacy + LineType 1 TailArrow @@ -95704,8 +97150,8 @@ ree of charge, to any person ob\ 318 Points - {322.5, 374.92099} - {383.30099, 374.92099} + {322.49999999999994, 374.92099000000002} + {383.30099000000001, 374.92099000000002} Style @@ -95713,6 +97159,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -95727,7 +97175,7 @@ ree of charge, to any person ob\ Bounds - {{198, 70.579399}, {123, 55}} + {{198, 70.579398999999995}, {123, 55}} Class ShapedGraphic FontInfo @@ -95791,7 +97239,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -95867,7 +97315,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -95879,7 +97327,7 @@ ree of charge, to any person ob\ Bounds - {{204.474, 350.42099}, {47.9053, 14}} + {{204.47399999999999, 350.42099000000002}, {47.905299999999997, 14}} Class ShapedGraphic FontInfo @@ -95918,7 +97366,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural @@ -95932,7 +97380,7 @@ ree of charge, to any person ob\ Bounds - {{198, 347.42099}, {123, 55}} + {{198, 347.42099000000002}, {123, 55}} Class ShapedGraphic FontInfo @@ -95996,7 +97444,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -96008,7 +97456,7 @@ ree of charge, to any person ob\ Bounds - {{617.224, 350.42099}, {37, 14}} + {{617.22400000000005, 350.42099000000002}, {37, 14}} Class ShapedGraphic FitText @@ -96051,7 +97499,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural @@ -96065,7 +97513,7 @@ ree of charge, to any person ob\ Bounds - {{390.80099, 350.42099}, {37, 14}} + {{390.80099000000001, 350.42099000000002}, {37, 14}} Class ShapedGraphic FitText @@ -96108,7 +97556,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural @@ -96122,7 +97570,7 @@ ree of charge, to any person ob\ Bounds - {{617.724, 161.42101}, {37, 14}} + {{617.72400000000005, 161.42101}, {37, 14}} Class ShapedGraphic FitText @@ -96165,7 +97613,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural @@ -96179,7 +97627,7 @@ ree of charge, to any person ob\ Bounds - {{617.224, 256.42099}, {37, 14}} + {{617.22400000000005, 256.42099000000002}, {37, 14}} Class ShapedGraphic FitText @@ -96222,7 +97670,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural @@ -96236,7 +97684,7 @@ ree of charge, to any person ob\ Bounds - {{390.30099, 208.42101}, {37, 14}} + {{390.30099000000001, 208.42101}, {37, 14}} Class ShapedGraphic FitText @@ -96279,7 +97727,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural @@ -96293,7 +97741,7 @@ ree of charge, to any person ob\ Bounds - {{502.77399, 360.42099}, {78, 29}} + {{502.77437879344052, 360.42099000000002}, {78, 29}} Class ShapedGraphic FitText @@ -96341,7 +97789,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -96353,7 +97801,7 @@ ree of charge, to any person ob\ Bounds - {{500.56, 197.2545}, {78, 29}} + {{500.55997133914758, 197.25450999376872}, {78, 29}} Class ShapedGraphic FitText @@ -96401,7 +97849,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -96413,7 +97861,7 @@ ree of charge, to any person ob\ Bounds - {{502.78571, 241.11749}, {69, 29}} + {{502.78570281869747, 241.11750073441547}, {69, 29}} Class ShapedGraphic FitText @@ -96461,7 +97909,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -96483,8 +97931,8 @@ ree of charge, to any person ob\ 300 Points - {481.30099, 374.92099} - {610.724, 374.92099} + {481.30099000000007, 374.92099000000002} + {610.72400000000005, 374.92099000000002} Style @@ -96492,6 +97940,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -96516,8 +97966,8 @@ ree of charge, to any person ob\ 298 Points - {481.26999, 244.04109} - {610.75507, 270.8009} + {481.26994856316685, 244.04109822250646} + {610.75504145230627, 270.80091917820852} Style @@ -96525,6 +97975,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -96549,8 +98001,8 @@ ree of charge, to any person ob\ 297 Points - {481.26999, 223.80092} - {610.75507, 197.04109} + {481.26994855948135, 223.80092115837954} + {610.75504143887554, 197.04109856559904} Style @@ -96558,6 +98010,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -96572,7 +98026,7 @@ ree of charge, to any person ob\ Bounds - {{612.224, 347.42099}, {95, 55}} + {{612.22400000000005, 347.42099000000002}, {95, 55}} Class ShapedGraphic FontInfo @@ -96636,7 +98090,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -96648,7 +98102,7 @@ ree of charge, to any person ob\ Bounds - {{612.224, 159.42101}, {95, 55}} + {{612.22400000000005, 159.42101}, {95, 55}} Class ShapedGraphic FontInfo @@ -96712,7 +98166,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -96724,7 +98178,7 @@ ree of charge, to any person ob\ Bounds - {{612.224, 253.42101}, {95, 55}} + {{612.22400000000005, 253.42101}, {95, 55}} Class ShapedGraphic FontInfo @@ -96788,7 +98242,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -96800,7 +98254,7 @@ ree of charge, to any person ob\ Bounds - {{384.80099, 347.42099}, {95, 55}} + {{384.80099000000001, 347.42099000000002}, {95, 55}} Class ShapedGraphic FontInfo @@ -96864,7 +98318,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -96876,7 +98330,7 @@ ree of charge, to any person ob\ Bounds - {{384.80099, 206.42101}, {95, 55}} + {{384.80099000000001, 206.42101}, {95, 55}} Class ShapedGraphic FontInfo @@ -96940,7 +98394,7 @@ ree of charge, to any person ob\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -96980,6 +98434,8 @@ ree of charge, to any person ob\ 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -97008,18 +98464,13 @@ ree of charge, to any person ob\ BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -97027,6 +98478,8 @@ ree of charge, to any person ob\ + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -97034,12 +98487,12 @@ ree of charge, to any person ob\ ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList Bounds - {{81.011002, 135.90199}, {76, 22}} + {{81.011002000000005, 135.90199000000001}, {76, 22}} Class ShapedGraphic FitText @@ -97080,7 +98533,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -97099,8 +98552,8 @@ ree of charge, to any person ob\ 321 Points - {204.752, 216.951} - {264.75201, 217.05499} + {204.75200000000001, 216.95099999999999} + {264.75200999999998, 217.05499} Style @@ -97108,6 +98561,8 @@ ree of charge, to any person ob\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -97160,7 +98615,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -97215,7 +98670,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -97270,7 +98725,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -97284,7 +98739,7 @@ ree of charge, to any person ob\ Bounds - {{51.511002, 296.177}, {135, 11}} + {{51.511001999999998, 296.17700000000002}, {135, 11}} Class ShapedGraphic FitText @@ -97327,7 +98782,7 @@ ree of charge, to any person ob\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -97347,8 +98802,8 @@ initial commit of my project} 282 Points - {116.004, 293.823} - {116.004, 207.677} + {116.004, 293.82299999999998} + {116.004, 207.67699999999999} Style @@ -97365,6 +98820,8 @@ initial commit of my project} HeadArrow 0 + Legacy + TailArrow 0 @@ -97372,7 +98829,7 @@ initial commit of my project} Bounds - {{52.511002, 264.31}, {56, 26.1462}} + {{52.511001999999998, 264.31}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -97409,7 +98866,7 @@ initial commit of my project} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -97423,7 +98880,7 @@ initial commit of my project} Bounds - {{46.511002, 236}, {56, 26.1462}} + {{46.511001999999998, 236}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -97460,7 +98917,7 @@ initial commit of my project} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -97474,7 +98931,7 @@ initial commit of my project} Bounds - {{41.511002, 207.854}, {56, 26.1462}} + {{41.511001999999998, 207.85400000000001}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -97511,7 +98968,7 @@ initial commit of my project} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -97530,7 +98987,7 @@ initial commit of my project} 277 Points - {195.526, 294} + {195.52600000000001, 294} {45.995998, 294} Style @@ -97548,6 +99005,8 @@ initial commit of my project} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -97562,8 +99021,8 @@ initial commit of my project} 276 Points - {197.504, 264.31} - {47.975101, 264.31} + {197.50399999999999, 264.31} + {47.975101000000002, 264.31} Style @@ -97580,6 +99039,8 @@ initial commit of my project} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -97594,7 +99055,7 @@ initial commit of my project} 274 Points - {195.526, 235} + {195.52600000000001, 235} {45.995998, 235} Style @@ -97612,6 +99073,8 @@ initial commit of my project} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -97626,7 +99089,7 @@ initial commit of my project} Bounds - {{156.504, 174.631}, {27, 26.1462}} + {{156.50399999999999, 174.631}, {27, 26.1462}} Class ShapedGraphic FontInfo @@ -97672,7 +99135,7 @@ initial commit of my project} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -97723,7 +99186,7 @@ initial commit of my project} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -97742,8 +99205,8 @@ initial commit of my project} 270 Points - {142.504, 169.877} - {142.504, 207.908} + {142.50399999999999, 169.87700000000001} + {142.50399999999999, 207.90799999999999} Style @@ -97760,6 +99223,8 @@ initial commit of my project} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -97774,8 +99239,8 @@ initial commit of my project} 271 Points - {197.504, 207.908} - {43.504002, 207.908} + {197.50399999999999, 207.90799999999999} + {43.504002, 207.90799999999999} Style @@ -97792,6 +99257,8 @@ initial commit of my project} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -97874,7 +99341,7 @@ initial commit of my project} Bounds - {{531.50403, 235.14}, {154, 66}} + {{531.50402999999994, 235.13999999999999}, {154, 66}} Class ShapedGraphic FitText @@ -97917,7 +99384,7 @@ initial commit of my project} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -97937,7 +99404,7 @@ Permission is hereby granted, \ Bounds - {{566.50403, 170.14}, {76, 22}} + {{566.50402999999994, 170.13999999999999}, {76, 22}} Class ShapedGraphic FitText @@ -97978,7 +99445,7 @@ Permission is hereby granted, \ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -97997,7 +99464,7 @@ Permission is hereby granted, \ Bounds - {{640.50403, 202.709}, {27, 16.753799}} + {{640.50402999999994, 202.709}, {27, 16.753799000000001}} Class ShapedGraphic FontInfo @@ -98043,7 +99510,7 @@ Permission is hereby granted, \ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -98057,7 +99524,7 @@ Permission is hereby granted, \ Bounds - {{536.50403, 203.709}, {40, 16.753799}} + {{536.50402999999994, 203.709}, {40, 16.753799000000001}} Class ShapedGraphic FontInfo @@ -98094,7 +99561,7 @@ Permission is hereby granted, \ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -98113,8 +99580,8 @@ Permission is hereby granted, \ 316 Points - {626.50403, 196.66299} - {626.50403, 227.032} + {626.50402999999994, 196.66299000000001} + {626.50402999999994, 227.03200000000001} Style @@ -98131,6 +99598,8 @@ Permission is hereby granted, \ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -98145,8 +99614,8 @@ Permission is hereby granted, \ 317 Points - {681.50403, 229.032} - {527.50403, 229.032} + {681.50402999999994, 229.03200000000001} + {527.50402999999994, 229.03200000000001} Style @@ -98163,6 +99632,8 @@ Permission is hereby granted, \ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -98172,7 +99643,7 @@ Permission is hereby granted, \ Bounds - {{527.50403, 195.14}, {154, 99}} + {{527.50402999999994, 195.13999999999999}, {154, 99}} Class ShapedGraphic FontInfo @@ -98245,7 +99716,7 @@ Permission is hereby granted, \ Bounds - {{531.50403, 386}, {87, 77}} + {{531.50402999999994, 386}, {87, 77}} Class ShapedGraphic FitText @@ -98288,7 +99759,7 @@ Permission is hereby granted, \ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -98309,7 +99780,7 @@ module Test\ Bounds - {{566.50403, 321}, {76, 22}} + {{566.50402999999994, 321}, {76, 22}} Class ShapedGraphic FitText @@ -98350,7 +99821,7 @@ module Test\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -98369,7 +99840,7 @@ module Test\ Bounds - {{640.50403, 353.569}, {27, 16.753799}} + {{640.50402999999994, 353.56900000000002}, {27, 16.753799000000001}} Class ShapedGraphic FontInfo @@ -98415,7 +99886,7 @@ module Test\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -98429,7 +99900,7 @@ module Test\ Bounds - {{536.50403, 354.569}, {40, 16.753799}} + {{536.50402999999994, 354.56900000000002}, {40, 16.753799000000001}} Class ShapedGraphic FontInfo @@ -98466,7 +99937,7 @@ module Test\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -98485,8 +99956,8 @@ module Test\ 308 Points - {626.50403, 347.52301} - {626.50403, 377.892} + {626.50402999999994, 347.52301} + {626.50402999999994, 377.892} Style @@ -98503,6 +99974,8 @@ module Test\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -98517,8 +99990,8 @@ module Test\ 309 Points - {681.50403, 379.892} - {527.50403, 379.892} + {681.50402999999994, 379.892} + {527.50402999999994, 379.892} Style @@ -98535,6 +100008,8 @@ module Test\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -98544,7 +100019,7 @@ module Test\ Bounds - {{527.50403, 346}, {154, 99}} + {{527.50402999999994, 346}, {154, 99}} Class ShapedGraphic FontInfo @@ -98622,8 +100097,8 @@ module Test\ 304 Points - {454.504, 247.201} - {514.50403, 247.30499} + {454.50400000000002, 247.20099999999999} + {514.50402999999994, 247.30499} Style @@ -98631,6 +100106,8 @@ module Test\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -98654,8 +100131,8 @@ module Test\ 303 Points - {454.504, 292.95599} - {514.50403, 366} + {454.50400000000002, 292.95598999999999} + {514.50402999999994, 366} Style @@ -98663,6 +100140,8 @@ module Test\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -98679,8 +100158,8 @@ module Test\ 302 Points - {454.504, 208.98199} - {514.50403, 150.90199} + {454.50400000000002, 208.98199} + {514.50402999999994, 150.90199000000001} Style @@ -98688,6 +100167,8 @@ module Test\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -98699,7 +100180,7 @@ module Test\ Bounds - {{527.50403, 91.902397}, {135, 66}} + {{527.50402999999994, 91.902396999999993}, {135, 66}} Class ShapedGraphic FitText @@ -98742,7 +100223,7 @@ module Test\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -98762,7 +100243,7 @@ Ruby projects\ Bounds - {{562.50403, 26.902399}, {76, 22}} + {{562.50402999999994, 26.902398999999999}, {76, 22}} Class ShapedGraphic FitText @@ -98803,7 +100284,7 @@ Ruby projects\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -98822,7 +100303,7 @@ Ruby projects\ Bounds - {{636.50403, 59.471401}, {27, 16.753799}} + {{636.50402999999994, 59.471401}, {27, 16.753799000000001}} Class ShapedGraphic FontInfo @@ -98868,7 +100349,7 @@ Ruby projects\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -98882,7 +100363,7 @@ Ruby projects\ Bounds - {{532.50403, 60.471401}, {40, 16.753799}} + {{532.50402999999994, 60.471401}, {40, 16.753799000000001}} Class ShapedGraphic FontInfo @@ -98919,7 +100400,7 @@ Ruby projects\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -98938,8 +100419,8 @@ Ruby projects\ 233 Points - {622.50403, 53.4254} - {622.50403, 83.794403} + {622.50402999999994, 53.425400000000003} + {622.50402999999994, 83.794403000000003} Style @@ -98956,6 +100437,8 @@ Ruby projects\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -98970,8 +100453,8 @@ Ruby projects\ 234 Points - {677.50403, 85.794403} - {523.50403, 85.794403} + {677.50402999999994, 85.794403000000003} + {523.50402999999994, 85.794403000000003} Style @@ -98988,6 +100471,8 @@ Ruby projects\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -98997,7 +100482,7 @@ Ruby projects\ Bounds - {{523.50403, 51.902401}, {154, 99}} + {{523.50402999999994, 51.902400999999998}, {154, 99}} Class ShapedGraphic FontInfo @@ -99070,7 +100555,7 @@ Ruby projects\ Bounds - {{367.73499, 256.05499}, {51, 14}} + {{367.73498999999998, 256.05498999999998}, {51, 14}} Class ShapedGraphic FitText @@ -99111,7 +100596,7 @@ Ruby projects\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -99125,7 +100610,7 @@ Ruby projects\ Bounds - {{367.73499, 281.19501}, {51, 14}} + {{367.73498999999998, 281.19501000000002}, {51, 14}} Class ShapedGraphic FitText @@ -99166,7 +100651,7 @@ Ruby projects\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -99180,7 +100665,7 @@ Ruby projects\ Bounds - {{369.23499, 232.82899}, {44, 14}} + {{369.23498999999998, 232.82899}, {44, 14}} Class ShapedGraphic FitText @@ -99221,7 +100706,7 @@ Ruby projects\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -99235,7 +100720,7 @@ Ruby projects\ Bounds - {{322.76501, 256}, {37, 14}} + {{322.76501000000002, 256}, {37, 14}} Class ShapedGraphic FitText @@ -99276,7 +100761,7 @@ Ruby projects\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -99290,7 +100775,7 @@ Ruby projects\ Bounds - {{321.76501, 281.14001}, {37, 14}} + {{321.76501000000002, 281.14001000000002}, {37, 14}} Class ShapedGraphic FitText @@ -99331,7 +100816,7 @@ Ruby projects\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -99350,8 +100835,8 @@ Ruby projects\ 117 Points - {364, 304.84698} - {364, 224.847} + {364, 304.84697999999997} + {364, 224.84700000000001} Style @@ -99368,6 +100853,8 @@ Ruby projects\ HeadArrow 0 + Legacy + TailArrow 0 @@ -99375,7 +100862,7 @@ Ruby projects\ Bounds - {{322.76501, 232.774}, {37, 14}} + {{322.76501000000002, 232.774}, {37, 14}} Class ShapedGraphic FitText @@ -99416,7 +100903,7 @@ Ruby projects\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -99435,7 +100922,7 @@ Ruby projects\ 94 Points - {318, 304.84698} + {318, 304.84697999999997} {318, 224.774} Style @@ -99453,6 +100940,8 @@ Ruby projects\ HeadArrow 0 + Legacy + TailArrow 0 @@ -99460,7 +100949,7 @@ Ruby projects\ Bounds - {{267, 249.927}, {56, 26.1462}} + {{267, 249.92699999999999}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -99497,7 +100986,7 @@ Ruby projects\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -99511,7 +101000,7 @@ Ruby projects\ Bounds - {{265.397, 274.99399}, {56, 26.1462}} + {{265.39699999999999, 274.99399}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -99548,7 +101037,7 @@ Ruby projects\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -99599,7 +101088,7 @@ Ruby projects\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -99618,8 +101107,8 @@ Ruby projects\ 79 Points - {424.51501, 274.99399} - {274.98499, 274.99399} + {424.51501000000002, 274.99399} + {274.98498999999998, 274.99399} Style @@ -99636,6 +101125,8 @@ Ruby projects\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -99651,7 +101142,7 @@ Ruby projects\ Points {424, 251.994} - {274.47101, 251.994} + {274.47100999999998, 251.994} Style @@ -99668,6 +101159,8 @@ Ruby projects\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -99677,7 +101170,7 @@ Ruby projects\ Bounds - {{311, 168.847}, {76, 22}} + {{311, 168.84700000000001}, {76, 22}} Class ShapedGraphic FitText @@ -99718,7 +101211,7 @@ Ruby projects\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -99732,7 +101225,7 @@ Ruby projects\ Bounds - {{379.73499, 195.951}, {27, 22}} + {{379.73498999999998, 195.95099999999999}, {27, 22}} Class ShapedGraphic FitText @@ -99782,7 +101275,7 @@ Ruby projects\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -99796,7 +101289,7 @@ Ruby projects\ Bounds - {{283.5, 196.847}, {39, 22}} + {{283.5, 196.84700000000001}, {39, 22}} Class ShapedGraphic FitText @@ -99837,7 +101330,7 @@ Ruby projects\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -99862,7 +101355,7 @@ Ruby projects\ Points {371, 195.55499} - {371, 222.87801} + {371, 222.87800999999999} Style @@ -99879,6 +101372,8 @@ Ruby projects\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -99893,8 +101388,8 @@ Ruby projects\ 31 Points - {426, 222.87801} - {272, 222.87801} + {426, 222.87800999999999} + {272, 222.87800999999999} Style @@ -99911,6 +101406,8 @@ Ruby projects\ HeadArrow 0 + Legacy + TailArrow 0 Width @@ -99920,7 +101417,7 @@ Ruby projects\ Bounds - {{272, 193.847}, {154, 111}} + {{272, 193.84700000000001}, {154, 111}} Class ShapedGraphic FontInfo @@ -100028,6 +101525,8 @@ Ruby projects\ 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -100056,18 +101555,13 @@ Ruby projects\ BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -100075,6 +101569,8 @@ Ruby projects\ + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -100082,7 +101578,7 @@ Ruby projects\ ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -100128,7 +101624,7 @@ Ruby projects\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -100152,8 +101648,8 @@ Ruby projects\ 297 Points - {591.65302, 278} - {591.88202, 323.50003} + {591.65301999999997, 278} + {591.88204694128603, 323.50001900216131} Style @@ -100161,6 +101657,8 @@ Ruby projects\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -100172,7 +101670,7 @@ Ruby projects\ Bounds - {{515.02802, 325}, {154, 55}} + {{515.02801999999997, 325}, {154, 55}} Class ShapedGraphic FontInfo @@ -100236,7 +101734,7 @@ Ruby projects\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -100258,8 +101756,8 @@ Ruby projects\ 295 Points - {346.88199, 278} - {347.11102, 323.50003} + {346.88198999999997, 278} + {347.11101694128604, 323.50001900216131} Style @@ -100267,6 +101765,8 @@ Ruby projects\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -100278,7 +101778,7 @@ Ruby projects\ Bounds - {{270.25699, 325}, {154, 55}} + {{270.25698999999997, 325}, {154, 55}} Class ShapedGraphic FontInfo @@ -100342,7 +101842,7 @@ Ruby projects\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -100364,8 +101864,8 @@ Ruby projects\ 293 Points - {109.88937, 277.99997} - {110.11838, 323.50003} + {109.88942789385182, 277.9999809944473} + {110.11847536808766, 323.50001901559062} Style @@ -100373,6 +101873,8 @@ Ruby projects\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -100389,7 +101891,7 @@ Ruby projects\ Bounds - {{33.2645, 325}, {154, 55}} + {{33.264499999999998, 325}, {154, 55}} Class ShapedGraphic FontInfo @@ -100453,7 +101955,7 @@ Ruby projects\ Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -100475,8 +101977,8 @@ Ruby projects\ 289 Points - {514.521, 199.25} - {429.75702, 199.25} + {514.52099999999996, 199.25} + {429.75698999999997, 199.25} Style @@ -100484,6 +101986,8 @@ Ruby projects\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -100510,8 +102014,8 @@ Ruby projects\ 288 Points - {272.75702, 199.25} - {187.99298, 199.25} + {272.75698999999997, 199.25} + {187.99299999999999, 199.25} Style @@ -100519,6 +102023,8 @@ Ruby projects\ HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -100535,7 +102041,7 @@ Ruby projects\ Bounds - {{597.01398, 231.5}, {37, 14}} + {{597.01397999999995, 231.5}, {37, 14}} Class ShapedGraphic FitText @@ -100576,7 +102082,7 @@ Ruby projects\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -100590,7 +102096,7 @@ Ruby projects\ Bounds - {{597.01398, 210.5}, {37, 14}} + {{597.01397999999995, 210.5}, {37, 14}} Class ShapedGraphic FitText @@ -100631,7 +102137,7 @@ Ruby projects\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -100645,7 +102151,7 @@ Ruby projects\ Bounds - {{597.01398, 189.5}, {37, 14}} + {{597.01397999999995, 189.5}, {37, 14}} Class ShapedGraphic FitText @@ -100686,7 +102192,7 @@ Ruby projects\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -100700,7 +102206,7 @@ Ruby projects\ Bounds - {{524.02802, 250.677}, {145, 22}} + {{524.02801999999997, 250.67699999999999}, {145, 22}} Class ShapedGraphic FitText @@ -100743,7 +102249,7 @@ Ruby projects\ Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -100764,8 +102270,8 @@ add new formats to the central} 282 Points - {588.521, 248.323} - {588.521, 162.177} + {588.52099999999996, 248.32300000000001} + {588.52099999999996, 162.17699999999999} Style @@ -100782,6 +102288,8 @@ add new formats to the central} HeadArrow 0 + Legacy + TailArrow 0 @@ -100789,7 +102297,7 @@ add new formats to the central} Bounds - {{524.02802, 223.854}, {56, 26.1462}} + {{524.02801999999997, 223.85400000000001}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -100826,7 +102334,7 @@ add new formats to the central} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -100840,7 +102348,7 @@ add new formats to the central} Bounds - {{520.02802, 202.354}, {56, 26.1462}} + {{520.02801999999997, 202.35400000000001}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -100877,7 +102385,7 @@ add new formats to the central} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -100891,7 +102399,7 @@ add new formats to the central} Bounds - {{520.02802, 181.354}, {56, 26.1462}} + {{520.02801999999997, 181.35400000000001}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -100928,7 +102436,7 @@ add new formats to the central} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -100942,7 +102450,7 @@ add new formats to the central} Bounds - {{520.02802, 160.354}, {56, 26.1462}} + {{520.02801999999997, 160.35400000000001}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -100979,7 +102487,7 @@ add new formats to the central} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -100998,8 +102506,8 @@ add new formats to the central} 277 Points - {668.04303, 248.5} - {518.513, 248.5} + {668.04303000000004, 248.5} + {518.51300000000003, 248.5} Style @@ -101016,6 +102524,8 @@ add new formats to the central} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -101030,8 +102540,8 @@ add new formats to the central} 276 Points - {668.52802, 227.5} - {518.99902, 227.5} + {668.52801999999997, 227.5} + {518.99901999999997, 227.5} Style @@ -101048,6 +102558,8 @@ add new formats to the central} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -101062,8 +102574,8 @@ add new formats to the central} 275 Points - {668.55701, 206.5} - {519.02802, 206.5} + {668.55700999999999, 206.5} + {519.02801999999997, 206.5} Style @@ -101080,6 +102592,8 @@ add new formats to the central} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -101094,8 +102608,8 @@ add new formats to the central} 274 Points - {668.04303, 185.5} - {518.513, 185.5} + {668.04303000000004, 185.5} + {518.51300000000003, 185.5} Style @@ -101112,6 +102626,8 @@ add new formats to the central} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -101121,7 +102637,7 @@ add new formats to the central} Bounds - {{555.021, 95.5}, {76, 22}} + {{555.02099999999996, 95.5}, {76, 22}} Class ShapedGraphic FitText @@ -101162,7 +102678,7 @@ add new formats to the central} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -101217,7 +102733,7 @@ add new formats to the central} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -101272,7 +102788,7 @@ add new formats to the central} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -101327,7 +102843,7 @@ add new formats to the central} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -101382,7 +102898,7 @@ add new formats to the central} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -101396,7 +102912,7 @@ add new formats to the central} Bounds - {{282.26401, 250.677}, {116, 22}} + {{282.26400999999998, 250.67699999999999}, {116, 22}} Class ShapedGraphic FitText @@ -101439,7 +102955,7 @@ add new formats to the central} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -101460,8 +102976,8 @@ overflow under certain} 261 Points - {346.75699, 248.323} - {346.75699, 162.177} + {346.75698999999997, 248.32300000000001} + {346.75698999999997, 162.17699999999999} Style @@ -101478,6 +102994,8 @@ overflow under certain} HeadArrow 0 + Legacy + TailArrow 0 @@ -101485,7 +103003,7 @@ overflow under certain} Bounds - {{282.26401, 223.854}, {56, 26.1462}} + {{282.26400999999998, 223.85400000000001}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -101522,7 +103040,7 @@ overflow under certain} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -101536,7 +103054,7 @@ overflow under certain} Bounds - {{278.26401, 202.354}, {56, 26.1462}} + {{278.26400999999998, 202.35400000000001}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -101573,7 +103091,7 @@ overflow under certain} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -101587,7 +103105,7 @@ overflow under certain} Bounds - {{278.26401, 181.354}, {56, 26.1462}} + {{278.26400999999998, 181.35400000000001}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -101624,7 +103142,7 @@ overflow under certain} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -101638,7 +103156,7 @@ overflow under certain} Bounds - {{278.26401, 160.354}, {56, 26.1462}} + {{278.26400999999998, 160.35400000000001}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -101675,7 +103193,7 @@ overflow under certain} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -101694,8 +103212,8 @@ overflow under certain} 256 Points - {426.27899, 248.5} - {276.74899, 248.5} + {426.27899000000002, 248.5} + {276.74898999999999, 248.5} Style @@ -101712,6 +103230,8 @@ overflow under certain} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -101726,8 +103246,8 @@ overflow under certain} 255 Points - {426.76401, 227.5} - {277.23499, 227.5} + {426.76400999999998, 227.5} + {277.23498999999998, 227.5} Style @@ -101744,6 +103264,8 @@ overflow under certain} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -101758,8 +103280,8 @@ overflow under certain} 254 Points - {426.793, 206.5} - {277.26401, 206.5} + {426.79300000000001, 206.5} + {277.26400999999998, 206.5} Style @@ -101776,6 +103298,8 @@ overflow under certain} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -101790,8 +103314,8 @@ overflow under certain} 253 Points - {426.27899, 185.5} - {276.74899, 185.5} + {426.27899000000002, 185.5} + {276.74898999999999, 185.5} Style @@ -101808,6 +103332,8 @@ overflow under certain} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -101817,7 +103343,7 @@ overflow under certain} Bounds - {{313.25699, 95.5}, {76, 22}} + {{313.25698999999997, 95.5}, {76, 22}} Class ShapedGraphic FitText @@ -101858,7 +103384,7 @@ overflow under certain} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -101877,7 +103403,7 @@ overflow under certain} Bounds - {{387.25699, 129.131}, {27, 26.1462}} + {{387.25698999999997, 129.131}, {27, 26.1462}} Class ShapedGraphic FontInfo @@ -101923,7 +103449,7 @@ overflow under certain} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -101937,7 +103463,7 @@ overflow under certain} Bounds - {{290.25699, 129.131}, {56, 26.1462}} + {{290.25698999999997, 129.131}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -101974,7 +103500,7 @@ overflow under certain} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -101993,8 +103519,8 @@ overflow under certain} 249 Points - {373.25699, 124.377} - {373.25699, 162.408} + {373.25698999999997, 124.377} + {373.25698999999997, 162.40799999999999} Style @@ -102011,6 +103537,8 @@ overflow under certain} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -102025,8 +103553,8 @@ overflow under certain} 250 Points - {428.25699, 162.408} - {274.25699, 162.408} + {428.25698999999997, 162.40799999999999} + {274.25698999999997, 162.40799999999999} Style @@ -102043,6 +103571,8 @@ overflow under certain} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -102052,7 +103582,7 @@ overflow under certain} Bounds - {{274.25699, 122}, {154, 154.5}} + {{274.25698999999997, 122}, {154, 154.5}} Class ShapedGraphic FontInfo @@ -102166,7 +103696,7 @@ overflow under certain} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -102221,7 +103751,7 @@ overflow under certain} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -102235,7 +103765,7 @@ overflow under certain} Bounds - {{597.01398, 167.427}, {37, 14}} + {{597.01397999999995, 167.42699999999999}, {37, 14}} Class ShapedGraphic FitText @@ -102276,7 +103806,7 @@ overflow under certain} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -102333,7 +103863,7 @@ overflow under certain} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -102353,8 +103883,8 @@ initial commit of my project} 93 Points - {105, 227.323} - {104.993, 162.177} + {105.00000408366566, 227.32300000000001} + {104.99299999999999, 162.17699999999999} Style @@ -102371,6 +103901,8 @@ initial commit of my project} HeadArrow 0 + Legacy + TailArrow 0 @@ -102385,7 +103917,7 @@ initial commit of my project} Bounds - {{40.5, 201.854}, {56, 26.1462}} + {{40.5, 201.85400000000001}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -102422,7 +103954,7 @@ initial commit of my project} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -102436,7 +103968,7 @@ initial commit of my project} Bounds - {{36.5, 180.354}, {56, 26.1462}} + {{36.5, 180.35400000000001}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -102473,7 +104005,7 @@ initial commit of my project} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -102487,7 +104019,7 @@ initial commit of my project} Bounds - {{36.5, 181.354}, {56, 26.1462}} + {{36.5, 181.35400000000001}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -102531,7 +104063,7 @@ initial commit of my project} Bounds - {{36.5, 160.354}, {56, 26.1462}} + {{36.5, 160.35400000000001}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -102568,7 +104100,7 @@ initial commit of my project} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -102587,8 +104119,8 @@ initial commit of my project} 83 Points - {184.515, 227.323} - {34.985001, 227.323} + {184.51499999999999, 227.32300000000001} + {34.985000999999997, 227.32300000000001} Style @@ -102605,6 +104137,8 @@ initial commit of my project} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -102620,7 +104154,7 @@ initial commit of my project} Points {185, 205.5} - {35.471001, 205.5} + {35.471001000000001, 205.5} Style @@ -102637,6 +104171,8 @@ initial commit of my project} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -102651,8 +104187,8 @@ initial commit of my project} 80 Points - {184.515, 185.5} - {34.985001, 185.5} + {184.51499999999999, 185.5} + {34.985000999999997, 185.5} Style @@ -102669,6 +104205,8 @@ initial commit of my project} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -102678,7 +104216,7 @@ initial commit of my project} Bounds - {{71.492996, 95.5}, {76, 22}} + {{71.492996000000005, 95.5}, {76, 22}} Class ShapedGraphic FitText @@ -102719,7 +104257,7 @@ initial commit of my project} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -102738,7 +104276,7 @@ initial commit of my project} Bounds - {{145.493, 129.131}, {27, 26.1462}} + {{145.49299999999999, 129.131}, {27, 26.1462}} Class ShapedGraphic FontInfo @@ -102784,7 +104322,7 @@ initial commit of my project} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -102798,7 +104336,7 @@ initial commit of my project} Bounds - {{48.493, 129.131}, {56, 26.1462}} + {{48.493000000000002, 129.131}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -102835,7 +104373,7 @@ initial commit of my project} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -102854,8 +104392,8 @@ initial commit of my project} 42 Points - {131.493, 124.377} - {131.493, 162.408} + {131.49299999999999, 124.377} + {131.49299999999999, 162.40799999999999} Style @@ -102872,6 +104410,8 @@ initial commit of my project} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -102886,8 +104426,8 @@ initial commit of my project} 43 Points - {186.493, 162.408} - {32.493, 162.408} + {186.49299999999999, 162.40799999999999} + {32.493000000000002, 162.40799999999999} Style @@ -102904,6 +104444,8 @@ initial commit of my project} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -102913,7 +104455,7 @@ initial commit of my project} Bounds - {{32.493, 122}, {154, 154.5}} + {{32.493000000000002, 122}, {154, 154.5}} Class ShapedGraphic FontInfo @@ -102991,7 +104533,7 @@ initial commit of my project} Bounds - {{629.021, 129.131}, {27, 26.1462}} + {{629.02099999999996, 129.131}, {27, 26.1462}} Class ShapedGraphic FontInfo @@ -103037,7 +104579,7 @@ initial commit of my project} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -103051,7 +104593,7 @@ initial commit of my project} Bounds - {{532.021, 129.131}, {56, 26.1462}} + {{532.02099999999996, 129.131}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -103088,7 +104630,7 @@ initial commit of my project} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -103107,8 +104649,8 @@ initial commit of my project} 270 Points - {615.021, 124.377} - {615.021, 162.408} + {615.02099999999996, 124.377} + {615.02099999999996, 162.40799999999999} Style @@ -103125,6 +104667,8 @@ initial commit of my project} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -103139,8 +104683,8 @@ initial commit of my project} 271 Points - {670.021, 162.408} - {516.021, 162.408} + {670.02099999999996, 162.40799999999999} + {516.02099999999996, 162.40799999999999} Style @@ -103157,6 +104701,8 @@ initial commit of my project} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -103166,7 +104712,7 @@ initial commit of my project} Bounds - {{516.021, 122}, {154, 154.5}} + {{516.02099999999996, 122}, {154, 154.5}} Class ShapedGraphic FontInfo @@ -103267,6 +104813,8 @@ initial commit of my project} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -103295,18 +104843,13 @@ initial commit of my project} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -103314,6 +104857,8 @@ initial commit of my project} + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -103321,7 +104866,7 @@ initial commit of my project} ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -103336,8 +104881,8 @@ initial commit of my project} 312 Points - {530.03455, 218.3613} - {551.21893, 264.1387} + {530.03455925665526, 218.36130114753047} + {551.21890753533376, 264.13869875653489} Style @@ -103345,6 +104890,8 @@ initial commit of my project} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -103361,7 +104908,7 @@ initial commit of my project} Bounds - {{469, 162}, {95.356903, 55}} + {{469, 162}, {95.356903000000003, 55}} Class ShapedGraphic FontInfo @@ -103425,7 +104972,7 @@ initial commit of my project} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -103447,8 +104994,8 @@ initial commit of my project} 307 Points - {639.67847, 120.49999} - {639.67841, 160.5} + {639.678434057971, 120.5} + {639.678434057971, 160.5} Style @@ -103456,6 +105003,8 @@ initial commit of my project} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -103472,7 +105021,7 @@ initial commit of my project} Bounds - {{592, 64}, {95.356903, 55}} + {{592, 64}, {95.356903000000003, 55}} Class ShapedGraphic FontInfo @@ -103536,7 +105085,7 @@ initial commit of my project} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -103558,8 +105107,8 @@ initial commit of my project} 305 Points - {618.84247, 218.21405} - {585.41101, 264.28595} + {618.84247362438168, 218.21404800773436} + {585.41099181022685, 264.28595207251323} Style @@ -103567,6 +105116,8 @@ initial commit of my project} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -103583,7 +105134,7 @@ initial commit of my project} Bounds - {{592, 162}, {95.356903, 55}} + {{592, 162}, {95.356903000000003, 55}} Class ShapedGraphic FontInfo @@ -103647,7 +105198,7 @@ initial commit of my project} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -103670,7 +105221,7 @@ initial commit of my project} Points {499.14301, 293} - {426.776, 293} + {426.77599000000004, 293} Style @@ -103678,6 +105229,8 @@ initial commit of my project} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -103705,7 +105258,7 @@ initial commit of my project} Points {295.91199, 293} - {229.36403, 293} + {229.36400000000003, 293} Style @@ -103713,6 +105266,8 @@ initial commit of my project} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -103793,7 +105348,7 @@ initial commit of my project} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -103869,7 +105424,7 @@ initial commit of my project} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -103945,7 +105500,7 @@ initial commit of my project} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -103967,8 +105522,8 @@ initial commit of my project} 297 Points - {564.26398, 322} - {564.45392, 367.5} + {564.26397999999995, 322} + {564.45393797403801, 367.50001307216741} Style @@ -103976,6 +105531,8 @@ initial commit of my project} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -104051,7 +105608,7 @@ initial commit of my project} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -104073,8 +105630,8 @@ initial commit of my project} 295 Points - {361.03299, 322} - {361.22293, 367.5} + {361.03298999999998, 322} + {361.22292965187461, 367.50001306964583} Style @@ -104082,6 +105639,8 @@ initial commit of my project} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -104157,7 +105716,7 @@ initial commit of my project} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -104179,8 +105738,8 @@ initial commit of my project} 293 Points - {164.11159, 321.99997} - {164.39334, 367.5} + {164.11160037558318, 321.99997123475231} + {164.39338780757964, 367.50002876903289} Style @@ -104188,6 +105747,8 @@ initial commit of my project} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -104204,7 +105765,7 @@ initial commit of my project} Bounds - {{100.641, 369}, {127.864, 55}} + {{100.64100000000001, 369}, {127.864, 55}} Class ShapedGraphic FontInfo @@ -104268,7 +105829,7 @@ initial commit of my project} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -104308,6 +105869,8 @@ initial commit of my project} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -104336,18 +105899,13 @@ initial commit of my project} BackgroundGraphic Bounds - {{0, 0}, {1512, 553}} + {{0, 0}, {1512, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -104355,6 +105913,8 @@ initial commit of my project} + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -104362,7 +105922,7 @@ initial commit of my project} ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -104377,8 +105937,8 @@ initial commit of my project} 316 Points - {702.37402, 293} - {630.00702, 293} + {702.37401999999997, 293} + {630.00701000000004, 293} Style @@ -104386,6 +105946,8 @@ initial commit of my project} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -104402,7 +105964,7 @@ initial commit of my project} Bounds - {{703.87402, 265.5}, {127.864, 55}} + {{703.87401999999997, 265.5}, {127.864, 55}} Class ShapedGraphic FontInfo @@ -104466,7 +106028,7 @@ initial commit of my project} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -104489,7 +106051,7 @@ initial commit of my project} Points {767.495, 322} - {767.68494, 367.5} + {767.68495186665018, 367.50001307132686} Style @@ -104497,6 +106059,8 @@ initial commit of my project} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -104508,7 +106072,7 @@ initial commit of my project} Bounds - {{703.87402, 369}, {127.864, 55}} + {{703.87401999999997, 369}, {127.864, 55}} Class ShapedGraphic FontInfo @@ -104572,7 +106136,7 @@ initial commit of my project} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -104594,8 +106158,8 @@ initial commit of my project} 312 Points - {564.57532, 218.5} - {564.57507, 264} + {564.57530293876437, 218.49999999998749} + {564.5751169202739, 264.00000000001017} Style @@ -104603,6 +106167,8 @@ initial commit of my project} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -104619,7 +106185,7 @@ initial commit of my project} Bounds - {{516.89697, 162}, {95.356903, 55}} + {{516.89697000000001, 162}, {95.356903000000003, 55}} Class ShapedGraphic FontInfo @@ -104683,7 +106249,7 @@ initial commit of my project} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -104705,8 +106271,8 @@ initial commit of my project} 307 Points - {767.80646, 120.49999} - {767.8064, 160.5} + {767.80642405797096, 120.5} + {767.80642405797096, 160.5} Style @@ -104714,6 +106280,8 @@ initial commit of my project} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -104730,7 +106298,7 @@ initial commit of my project} Bounds - {{720.12799, 64}, {95.356903, 55}} + {{720.12798999999995, 64}, {95.356903000000003, 55}} Class ShapedGraphic FontInfo @@ -104794,7 +106362,7 @@ initial commit of my project} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -104816,8 +106384,8 @@ initial commit of my project} 305 Points - {767.80634, 218.5} - {767.80609, 264} + {767.80632056139405, 218.49999999998695} + {767.80613081289141, 264.00000000001097} Style @@ -104825,6 +106393,8 @@ initial commit of my project} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -104841,7 +106411,7 @@ initial commit of my project} Bounds - {{720.12799, 162}, {95.356903, 55}} + {{720.12798999999995, 162}, {95.356903000000003, 55}} Class ShapedGraphic FontInfo @@ -104905,7 +106475,7 @@ initial commit of my project} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -104928,7 +106498,7 @@ initial commit of my project} Points {499.14301, 293} - {426.776, 293} + {426.77599000000004, 293} Style @@ -104936,6 +106506,8 @@ initial commit of my project} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -104963,7 +106535,7 @@ initial commit of my project} Points {295.91199, 293} - {229.36403, 293} + {229.36400000000003, 293} Style @@ -104971,6 +106543,8 @@ initial commit of my project} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -105051,7 +106625,7 @@ initial commit of my project} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -105127,7 +106701,7 @@ initial commit of my project} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -105203,7 +106777,7 @@ initial commit of my project} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -105225,8 +106799,8 @@ initial commit of my project} 297 Points - {564.26398, 322} - {564.45392, 367.5} + {564.26397999999995, 322} + {564.45393797403801, 367.50001307216741} Style @@ -105234,6 +106808,8 @@ initial commit of my project} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -105309,7 +106885,7 @@ initial commit of my project} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -105331,8 +106907,8 @@ initial commit of my project} 295 Points - {361.03299, 322} - {361.22293, 367.5} + {361.03298999999998, 322} + {361.22292965187461, 367.50001306964583} Style @@ -105340,6 +106916,8 @@ initial commit of my project} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -105415,7 +106993,7 @@ initial commit of my project} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -105437,8 +107015,8 @@ initial commit of my project} 293 Points - {164.11159, 321.99997} - {164.39334, 367.5} + {164.11160037558318, 321.99997123475231} + {164.39338780757964, 367.50002876903289} Style @@ -105446,6 +107024,8 @@ initial commit of my project} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -105462,7 +107042,7 @@ initial commit of my project} Bounds - {{100.641, 369}, {127.864, 55}} + {{100.64100000000001, 369}, {127.864, 55}} Class ShapedGraphic FontInfo @@ -105526,7 +107106,7 @@ initial commit of my project} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -105566,6 +107146,8 @@ initial commit of my project} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -105594,18 +107176,13 @@ initial commit of my project} BackgroundGraphic Bounds - {{0, 0}, {1512, 553}} + {{0, 0}, {1512, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -105613,6 +107190,8 @@ initial commit of my project} + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -105620,7 +107199,7 @@ initial commit of my project} ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -105635,8 +107214,8 @@ initial commit of my project} 320 Points - {361.34399, 218.5} - {361.34399, 264} + {361.34399000000002, 218.5} + {361.34399000000002, 264} Style @@ -105644,6 +107223,8 @@ initial commit of my project} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -105670,8 +107251,8 @@ initial commit of my project} 319 Points - {361.3443, 120.49999} - {361.34409, 160.5} + {361.34430539781255, 120.49999999998346} + {361.34411767065745, 160.50000000001452} Style @@ -105679,6 +107260,8 @@ initial commit of my project} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -105695,7 +107278,7 @@ initial commit of my project} Bounds - {{313.66599, 64}, {95.356903, 55}} + {{313.66599000000002, 64}, {95.356903000000003, 55}} Class ShapedGraphic FontInfo @@ -105759,7 +107342,7 @@ initial commit of my project} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -105835,7 +107418,7 @@ initial commit of my project} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -105857,8 +107440,8 @@ initial commit of my project} 316 Points - {702.37402, 293} - {630.00702, 293} + {702.37401999999997, 293} + {630.00701000000004, 293} Style @@ -105866,6 +107449,8 @@ initial commit of my project} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -105882,7 +107467,7 @@ initial commit of my project} Bounds - {{703.87402, 265.5}, {127.864, 55}} + {{703.87401999999997, 265.5}, {127.864, 55}} Class ShapedGraphic FontInfo @@ -105946,7 +107531,7 @@ initial commit of my project} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -105969,7 +107554,7 @@ initial commit of my project} Points {767.495, 322} - {767.68494, 367.5} + {767.68495186665018, 367.50001307132686} Style @@ -105977,6 +107562,8 @@ initial commit of my project} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -105988,7 +107575,7 @@ initial commit of my project} Bounds - {{703.87402, 369}, {127.864, 55}} + {{703.87401999999997, 369}, {127.864, 55}} Class ShapedGraphic FontInfo @@ -106052,7 +107639,7 @@ initial commit of my project} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -106074,8 +107661,8 @@ initial commit of my project} 312 Points - {564.57532, 218.5} - {564.57507, 264} + {564.57530293876437, 218.49999999998749} + {564.5751169202739, 264.00000000001017} Style @@ -106083,6 +107670,8 @@ initial commit of my project} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -106099,7 +107688,7 @@ initial commit of my project} Bounds - {{516.89697, 162}, {95.356903, 55}} + {{516.89697000000001, 162}, {95.356903000000003, 55}} Class ShapedGraphic FontInfo @@ -106163,7 +107752,7 @@ initial commit of my project} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -106185,8 +107774,8 @@ initial commit of my project} 307 Points - {767.80646, 120.49999} - {767.8064, 160.5} + {767.80642405797096, 120.5} + {767.80642405797096, 160.5} Style @@ -106194,6 +107783,8 @@ initial commit of my project} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -106210,7 +107801,7 @@ initial commit of my project} Bounds - {{720.12799, 64}, {95.356903, 55}} + {{720.12798999999995, 64}, {95.356903000000003, 55}} Class ShapedGraphic FontInfo @@ -106274,7 +107865,7 @@ initial commit of my project} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -106296,8 +107887,8 @@ initial commit of my project} 305 Points - {767.80634, 218.5} - {767.80609, 264} + {767.80632056139405, 218.49999999998695} + {767.80613081289141, 264.00000000001097} Style @@ -106305,6 +107896,8 @@ initial commit of my project} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -106321,7 +107914,7 @@ initial commit of my project} Bounds - {{720.12799, 162}, {95.356903, 55}} + {{720.12798999999995, 162}, {95.356903000000003, 55}} Class ShapedGraphic FontInfo @@ -106385,7 +107978,7 @@ initial commit of my project} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -106408,7 +108001,7 @@ initial commit of my project} Points {499.14301, 293} - {426.776, 293} + {426.77599000000004, 293} Style @@ -106416,6 +108009,8 @@ initial commit of my project} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -106443,7 +108038,7 @@ initial commit of my project} Points {295.91199, 293} - {229.36403, 293} + {229.36400000000003, 293} Style @@ -106451,6 +108046,8 @@ initial commit of my project} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -106531,7 +108128,7 @@ initial commit of my project} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -106607,7 +108204,7 @@ initial commit of my project} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -106683,7 +108280,7 @@ initial commit of my project} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -106705,8 +108302,8 @@ initial commit of my project} 297 Points - {564.26398, 322} - {564.45392, 367.5} + {564.26397999999995, 322} + {564.45393797403801, 367.50001307216741} Style @@ -106714,6 +108311,8 @@ initial commit of my project} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -106789,7 +108388,7 @@ initial commit of my project} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -106811,8 +108410,8 @@ initial commit of my project} 295 Points - {361.03299, 322} - {361.22293, 367.5} + {361.03298999999998, 322} + {361.22292965187461, 367.50001306964583} Style @@ -106820,6 +108419,8 @@ initial commit of my project} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -106895,7 +108496,7 @@ initial commit of my project} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -106917,8 +108518,8 @@ initial commit of my project} 293 Points - {164.11159, 321.99997} - {164.39334, 367.5} + {164.11160037558318, 321.99997123475231} + {164.39338780757964, 367.50002876903289} Style @@ -106926,6 +108527,8 @@ initial commit of my project} HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -106942,7 +108545,7 @@ initial commit of my project} Bounds - {{100.641, 369}, {127.864, 55}} + {{100.64100000000001, 369}, {127.864, 55}} Class ShapedGraphic FontInfo @@ -107006,7 +108609,7 @@ initial commit of my project} Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -107046,6 +108649,8 @@ initial commit of my project} 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -107074,18 +108679,13 @@ initial commit of my project} BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -107093,6 +108693,8 @@ initial commit of my project} + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -107100,12 +108702,12 @@ initial commit of my project} ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList Bounds - {{317, 328.18201}, {29, 14}} + {{317, 328.18200999999999}, {29, 14}} Class ShapedGraphic FitText @@ -107146,7 +108748,7 @@ initial commit of my project} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -107160,7 +108762,7 @@ initial commit of my project} Bounds - {{232.23599, 320.81699}, {56, 26.1462}} + {{232.23598999999999, 320.81698999999998}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -107197,7 +108799,7 @@ initial commit of my project} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -107216,8 +108818,8 @@ initial commit of my project} 129 Points - {381.76401, 345.96301} - {232.23599, 345.96301} + {381.76400999999998, 345.96301} + {232.23598999999999, 345.96301} Style @@ -107234,6 +108836,8 @@ initial commit of my project} HeadArrow 0 + Legacy + TailArrow 0 Width @@ -107243,7 +108847,7 @@ initial commit of my project} Bounds - {{315, 307.03601}, {37, 14}} + {{315, 307.03600999999998}, {37, 14}} Class ShapedGraphic FitText @@ -107284,7 +108888,7 @@ initial commit of my project} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -107298,7 +108902,7 @@ initial commit of my project} Bounds - {{314.5, 284.03601}, {44, 14}} + {{314.5, 284.03600999999998}, {44, 14}} Class ShapedGraphic FitText @@ -107339,7 +108943,7 @@ initial commit of my project} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -107353,7 +108957,7 @@ initial commit of my project} Bounds - {{315, 263.03601}, {37, 14}} + {{315, 263.03600999999998}, {37, 14}} Class ShapedGraphic FitText @@ -107394,7 +108998,7 @@ initial commit of my project} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -107408,7 +109012,7 @@ initial commit of my project} Bounds - {{239.5, 353.03601}, {135, 22}} + {{239.5, 353.03600999999998}, {135, 22}} Class ShapedGraphic FitText @@ -107451,7 +109055,7 @@ initial commit of my project} Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -107472,8 +109076,8 @@ this tag } 114 Points - {304.00003, 345.96301} - {302.96399, 258.78601} + {304.00001934211451, 345.96301} + {302.96399000000002, 258.78600999999998} Style @@ -107490,6 +109094,8 @@ this tag } HeadArrow 0 + Legacy + TailArrow 0 @@ -107541,7 +109147,7 @@ this tag } Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -107592,7 +109198,7 @@ this tag } Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -107606,7 +109212,7 @@ this tag } Bounds - {{234.47099, 255.963}, {56, 26.1462}} + {{234.47099, 255.96299999999999}, {56, 26.1462}} Class ShapedGraphic FontInfo @@ -107643,7 +109249,7 @@ this tag } Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -107662,8 +109268,8 @@ this tag } 109 Points - {382.48599, 325.073} - {232.95599, 325.073} + {382.48599000000002, 325.07299999999998} + {232.95599000000001, 325.07299999999998} Style @@ -107680,6 +109286,8 @@ this tag } HeadArrow 0 + Legacy + TailArrow 0 Width @@ -107694,8 +109302,8 @@ this tag } 107 Points - {383, 302.10901} - {233.47099, 302.10901} + {383, 302.10901000000001} + {233.47099, 302.10901000000001} Style @@ -107712,6 +109320,8 @@ this tag } HeadArrow 0 + Legacy + TailArrow 0 Width @@ -107726,8 +109336,8 @@ this tag } 106 Points - {382.48599, 281.10901} - {232.95599, 281.10901} + {382.48599000000002, 281.10901000000001} + {232.95599000000001, 281.10901000000001} Style @@ -107744,6 +109354,8 @@ this tag } HeadArrow 0 + Legacy + TailArrow 0 Width @@ -107794,7 +109406,7 @@ this tag } Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -107859,7 +109471,7 @@ this tag } Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -107910,7 +109522,7 @@ this tag } Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 GillSans;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -107929,8 +109541,8 @@ this tag } 63 Points - {329, 215.164} - {329, 258.37201} + {329, 215.16399999999999} + {329, 258.37200999999999} Style @@ -107947,6 +109559,8 @@ this tag } HeadArrow 0 + Legacy + TailArrow 0 Width @@ -107961,8 +109575,8 @@ this tag } 64 Points - {384, 258.37201} - {230, 258.37201} + {384, 258.37200999999999} + {230, 258.37200999999999} Style @@ -107979,6 +109593,8 @@ this tag } HeadArrow 0 + Legacy + TailArrow 0 Width @@ -107988,7 +109604,7 @@ this tag } Bounds - {{230, 212.463}, {154, 175.537}} + {{230, 212.46299999999999}, {154, 175.53700000000001}} Class ShapedGraphic FontInfo @@ -108089,6 +109705,8 @@ this tag } 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -108117,18 +109735,13 @@ this tag } BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -108136,6 +109749,8 @@ this tag } + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -108143,7 +109758,7 @@ this tag } ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -108158,8 +109773,8 @@ this tag } 340 Points - {194.17973, 322} - {194.17978, 343.5} + {194.17970983114935, 321.99999999999983} + {194.17972018091427, 343.50000000000063} Style @@ -108167,6 +109782,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -108181,7 +109798,7 @@ this tag } Bounds - {{160, 345}, {68.359398, 42}} + {{160, 345}, {68.359397999999999, 42}} Class ShapedGraphic FontInfo @@ -108245,7 +109862,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -108267,8 +109884,8 @@ this tag } 338 Points - {145.40259, 181.49998} - {145.27705, 210.50002} + {145.40260809678935, 181.49998594805723} + {145.27708055484203, 210.50001404895679} Style @@ -108276,6 +109893,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -108300,8 +109919,8 @@ this tag } 336 Points - {161.5432, 255.20758} - {177.81624, 277.29242} + {161.54318436383926, 255.20758368729514} + {177.81622141052463, 277.29241610688001} Style @@ -108309,6 +109928,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -108333,8 +109954,8 @@ this tag } 335 Points - {131.77493, 255.28539} - {118.5844, 277.2146} + {131.7749492174371, 255.28538568249297} + {118.58442963989697, 277.21461382223328} Style @@ -108342,6 +109963,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -108356,7 +109979,7 @@ this tag } Bounds - {{71, 278.5}, {68.359398, 42}} + {{71, 278.5}, {68.359397999999999, 42}} Class ShapedGraphic FontInfo @@ -108420,7 +110043,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -108432,7 +110055,7 @@ this tag } Bounds - {{160, 278.5}, {68.359398, 42}} + {{160, 278.5}, {68.359397999999999, 42}} Class ShapedGraphic FontInfo @@ -108496,7 +110119,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -108508,7 +110131,7 @@ this tag } Bounds - {{111, 212}, {68.359398, 42}} + {{111, 212}, {68.359397999999999, 42}} Class ShapedGraphic FontInfo @@ -108572,7 +110195,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -108594,8 +110217,8 @@ this tag } 331 Points - {519.72327, 107.49998} - {519.5976, 136.50002} + {519.72319005064503, 107.49998591715088} + {519.59752453740634, 136.50001409024193} Style @@ -108603,6 +110226,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -108627,8 +110252,8 @@ this tag } 329 Points - {519.40259, 181.49998} - {519.27704, 210.50002} + {519.40260726286988, 181.49998594781658} + {519.27707864609135, 210.50001404840606} Style @@ -108636,6 +110261,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -108660,8 +110287,8 @@ this tag } 328 Points - {332.40259, 181.49998} - {332.27707, 210.50002} + {332.40260976462827, 181.49998594853849} + {332.27708437234344, 210.50001405005833} Style @@ -108669,6 +110296,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -108693,8 +110322,8 @@ this tag } 326 Points - {535.54315, 255.20758} - {551.81628, 277.29242} + {535.54318930905458, 255.20758355637145} + {551.81623127362082, 277.29241584575635} Style @@ -108702,6 +110331,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -108726,8 +110357,8 @@ this tag } 325 Points - {505.7749, 255.2854} - {492.58438, 277.2146} + {505.77494669577806, 255.28538561725063} + {492.58442463687908, 277.21461369279143} Style @@ -108735,6 +110366,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -108749,7 +110382,7 @@ this tag } Bounds - {{445, 278.5}, {68.359398, 42}} + {{445, 278.5}, {68.359397999999999, 42}} Class ShapedGraphic FontInfo @@ -108813,7 +110446,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -108825,7 +110458,7 @@ this tag } Bounds - {{534, 278.5}, {68.359398, 42}} + {{534, 278.5}, {68.359397999999999, 42}} Class ShapedGraphic FontInfo @@ -108891,7 +110524,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -108903,7 +110536,7 @@ this tag } Bounds - {{485, 212}, {68.359398, 42}} + {{485, 212}, {68.359397999999999, 42}} Class ShapedGraphic FontInfo @@ -108967,7 +110600,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -108989,8 +110622,8 @@ this tag } 321 Points - {348.54318, 255.20758} - {364.81625, 277.29242} + {348.54318560014315, 255.20758365456419} + {364.81622387629881, 277.2924160415991} Style @@ -108998,6 +110631,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -109022,8 +110657,8 @@ this tag } 320 Points - {318.7749, 255.2854} - {305.58438, 277.2146} + {318.77494669577806, 255.28538561725063} + {305.58442463687908, 277.21461369279143} Style @@ -109031,6 +110666,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -109045,7 +110682,7 @@ this tag } Bounds - {{258, 278.5}, {68.359398, 42}} + {{258, 278.5}, {68.359397999999999, 42}} Class ShapedGraphic FontInfo @@ -109109,7 +110746,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -109121,7 +110758,7 @@ this tag } Bounds - {{347, 278.5}, {68.359398, 42}} + {{347, 278.5}, {68.359397999999999, 42}} Class ShapedGraphic FontInfo @@ -109187,7 +110824,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -109199,7 +110836,7 @@ this tag } Bounds - {{298, 212}, {68.359398, 42}} + {{298, 212}, {68.359397999999999, 42}} Class ShapedGraphic FontInfo @@ -109263,7 +110900,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -109294,6 +110931,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -109327,6 +110966,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -109405,7 +111046,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -109481,7 +111122,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -109557,7 +111198,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -109569,7 +111210,7 @@ this tag } Bounds - {{485.64099, 64}, {68.359398, 42}} + {{485.64098999999999, 64}, {68.359397999999999, 42}} Class ShapedGraphic FontInfo @@ -109633,7 +111274,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -109673,6 +111314,8 @@ this tag } 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -109701,18 +111344,13 @@ this tag } BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -109720,6 +111358,8 @@ this tag } + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -109727,7 +111367,7 @@ this tag } ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -109742,8 +111382,8 @@ this tag } 344 Points - {519.16302, 181.5} - {519.35278, 210.50003} + {519.16301999999996, 181.5} + {519.35277593826117, 210.50003211005961} Style @@ -109751,6 +111391,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -109824,7 +111466,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -109846,8 +111488,8 @@ this tag } 342 Points - {332.16299, 181.5} - {332.35275, 210.50003} + {332.16298999999998, 181.5} + {332.35276283152115, 210.50003211577695} Style @@ -109855,6 +111497,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -109928,7 +111572,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -109950,8 +111594,8 @@ this tag } 338 Points - {145.48773, 181.5} - {145.47194, 210.5} + {145.49766001255961, 181.49999999188807} + {145.49464402874119, 210.50000004249841} Style @@ -109959,6 +111603,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -110037,7 +111683,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -110050,6 +111696,18 @@ this tag } Class LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + Head ID @@ -110059,8 +111717,8 @@ this tag } 331 Points - {519.72327, 107.49998} - {519.5976, 136.50002} + {519.72319005064503, 107.49998591715088} + {519.59752453740634, 136.50001409024193} Style @@ -110068,6 +111726,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -110101,6 +111761,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -110134,6 +111796,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -110212,7 +111876,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -110288,7 +111952,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -110364,7 +112028,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -110376,7 +112040,7 @@ this tag } Bounds - {{485.64099, 64}, {68.359398, 42}} + {{485.64098999999999, 64}, {68.359397999999999, 42}} Class ShapedGraphic FontInfo @@ -110440,7 +112104,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -110480,6 +112144,8 @@ this tag } 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -110508,18 +112174,13 @@ this tag } BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -110527,6 +112188,8 @@ this tag } + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -110534,12 +112197,12 @@ this tag } ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList Bounds - {{97.820702, 316}, {159.35899, 32}} + {{97.820701999999997, 316}, {159.35899000000001, 32}} Class ShapedGraphic FontInfo @@ -110603,7 +112266,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -110615,7 +112278,7 @@ this tag } Bounds - {{97.820702, 274}, {159.35899, 32}} + {{97.820701999999997, 274}, {159.35899000000001, 32}} Class ShapedGraphic FontInfo @@ -110679,7 +112342,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -110691,7 +112354,7 @@ this tag } Bounds - {{97.820702, 232}, {159.35899, 32}} + {{97.820701999999997, 232}, {159.35899000000001, 32}} Class ShapedGraphic FontInfo @@ -110755,7 +112418,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -110767,7 +112430,7 @@ this tag } Bounds - {{97.820702, 190}, {159.35899, 32}} + {{97.820701999999997, 190}, {159.35899000000001, 32}} Class ShapedGraphic FontInfo @@ -110831,7 +112494,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -110843,7 +112506,7 @@ this tag } Bounds - {{97.820702, 148}, {159.35899, 32}} + {{97.820701999999997, 148}, {159.35899000000001, 32}} Class ShapedGraphic FontInfo @@ -110907,7 +112570,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -110919,7 +112582,7 @@ this tag } Bounds - {{97.820702, 106}, {159.35899, 32}} + {{97.820701999999997, 106}, {159.35899000000001, 32}} Class ShapedGraphic FontInfo @@ -110983,7 +112646,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -111059,7 +112722,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -111135,7 +112798,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -111211,7 +112874,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -111287,7 +112950,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -111340,7 +113003,7 @@ this tag } Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -111395,7 +113058,7 @@ this tag } Pad 0 Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Monaco;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -111473,7 +113136,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -111485,7 +113148,7 @@ this tag } Bounds - {{97.820297, 64}, {159.35899, 32}} + {{97.820296999999997, 64}, {159.35899000000001, 32}} Class ShapedGraphic FontInfo @@ -111549,7 +113212,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -111625,7 +113288,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -111665,6 +113328,8 @@ this tag } 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -111693,18 +113358,13 @@ this tag } BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -111712,6 +113372,8 @@ this tag } + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -111719,7 +113381,7 @@ this tag } ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -111735,7 +113397,7 @@ this tag } Points {443.5, 299.5} - {327.85938, 299.5} + {327.85939800000006, 299.5} Style @@ -111743,6 +113405,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -111768,7 +113432,7 @@ this tag } Points {256.5, 299.5} - {140.85941, 299.5} + {140.859398, 299.5} Style @@ -111776,6 +113440,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -111800,8 +113466,8 @@ this tag } 351 Points - {528.77075, 255.37872} - {566.58887, 343.62128} + {528.77070524115754, 255.37871811272731} + {566.5888464937774, 343.62128185945977} Style @@ -111809,6 +113475,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -111833,8 +113501,8 @@ this tag } 350 Points - {339.93326, 255.4176} - {370.42627, 343.5824} + {339.93328361673122, 255.41760628640216} + {370.42626692915729, 343.58239371269531} Style @@ -111842,6 +113510,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -111856,7 +113526,7 @@ this tag } Bounds - {{542, 345}, {68.359398, 42}} + {{542, 345}, {68.359397999999999, 42}} Class ShapedGraphic FontInfo @@ -111922,7 +113592,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -111934,7 +113604,7 @@ this tag } Bounds - {{344, 345}, {68.359398, 42}} + {{344, 345}, {68.359397999999999, 42}} Class ShapedGraphic FontInfo @@ -112000,7 +113670,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -112022,8 +113692,8 @@ this tag } 343 Points - {477.59003, 233} - {373.76968, 233} + {477.58999999999992, 233} + {373.76970299999999, 233} Style @@ -112031,6 +113701,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -112055,8 +113727,8 @@ this tag } 342 Points - {290.59, 233} - {186.76968, 233} + {290.58999999999997, 233} + {186.76970300000002, 233} Style @@ -112064,6 +113736,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -112088,8 +113762,8 @@ this tag } 341 Points - {155.27032, 255.36731} - {195.0892, 343.63269} + {155.27033939101955, 255.3673051709126} + {195.08921067824073, 343.63269483906043} Style @@ -112097,6 +113771,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -112111,7 +113787,7 @@ this tag } Bounds - {{171, 345}, {68.359398, 42}} + {{171, 345}, {68.359397999999999, 42}} Class ShapedGraphic FontInfo @@ -112175,7 +113851,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -112197,8 +113873,8 @@ this tag } 338 Points - {145.17976, 181.5} - {145.17984, 210.50002} + {145.179750958342, 181.49999999999659} + {145.17981277131608, 210.50000000000222} Style @@ -112206,6 +113882,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -112230,8 +113908,8 @@ this tag } 335 Points - {131.77502, 255.28539} - {118.58443, 277.2146} + {131.7750487339469, 255.28538431166263} + {118.5844746827465, 277.2146149876167} Style @@ -112239,6 +113917,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -112253,7 +113933,7 @@ this tag } Bounds - {{71, 278.5}, {68.359398, 42}} + {{71, 278.5}, {68.359397999999999, 42}} Class ShapedGraphic FontInfo @@ -112317,7 +113997,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -112329,7 +114009,7 @@ this tag } Bounds - {{105.09, 212}, {80.179703, 42}} + {{105.09, 212}, {80.179703000000003, 42}} Class ShapedGraphic FontInfo @@ -112393,7 +114073,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -112415,8 +114095,8 @@ this tag } 329 Points - {519.17999, 181.5} - {519.17993, 210.5} + {519.17995092303465, 181.49999999999775} + {519.17990055716837, 210.50000000000352} Style @@ -112424,6 +114104,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -112448,8 +114130,8 @@ this tag } 328 Points - {332.17996, 181.5} - {332.1799, 210.5} + {332.1799484212662, 181.49999999999747} + {332.17989483089826, 210.50000000000279} Style @@ -112457,6 +114139,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -112481,8 +114165,8 @@ this tag } 325 Points - {505.77515, 255.28539} - {492.58466, 277.21463} + {505.7750800081958, 255.28538512081462} + {492.58453673143498, 277.21461659298984} Style @@ -112490,6 +114174,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -112504,7 +114190,7 @@ this tag } Bounds - {{445, 278.5}, {68.359398, 42}} + {{445, 278.5}, {68.359397999999999, 42}} Class ShapedGraphic FontInfo @@ -112568,7 +114254,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -112580,7 +114266,7 @@ this tag } Bounds - {{479.09, 212}, {80.179703, 42}} + {{479.08999999999997, 212}, {80.179703000000003, 42}} Class ShapedGraphic FontInfo @@ -112644,7 +114330,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -112666,8 +114352,8 @@ this tag } 320 Points - {318.77502, 255.28539} - {305.58444, 277.2146} + {318.77504999477605, 255.28538434428378} + {305.58447718425492, 277.21461505233771} Style @@ -112675,6 +114361,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -112689,7 +114377,7 @@ this tag } Bounds - {{258, 278.5}, {68.359398, 42}} + {{258, 278.5}, {68.359397999999999, 42}} Class ShapedGraphic FontInfo @@ -112753,7 +114441,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -112765,7 +114453,7 @@ this tag } Bounds - {{292.09, 212}, {80.179703, 42}} + {{292.08999999999997, 212}, {80.179703000000003, 42}} Class ShapedGraphic FontInfo @@ -112829,7 +114517,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -112851,8 +114539,8 @@ this tag } 316 Points - {471.67999, 159} - {384.67999, 159} + {471.67998999999998, 159} + {384.67998999999998, 159} Style @@ -112860,6 +114548,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -112884,8 +114574,8 @@ this tag } 315 Points - {279.67999, 159} - {192.6797, 159} + {279.67998999999998, 159} + {192.67970300000002, 159} Style @@ -112893,6 +114583,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -112907,7 +114599,7 @@ this tag } Bounds - {{99.179703, 138}, {92, 42}} + {{99.179703000000003, 138}, {92, 42}} Class ShapedGraphic FontInfo @@ -112971,7 +114663,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -112983,7 +114675,7 @@ this tag } Bounds - {{473.17999, 138}, {92, 42}} + {{473.17998999999998, 138}, {92, 42}} Class ShapedGraphic FontInfo @@ -113047,7 +114739,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -113059,7 +114751,7 @@ this tag } Bounds - {{281.17999, 138}, {102, 42}} + {{281.17998999999998, 138}, {102, 42}} Class ShapedGraphic FontInfo @@ -113123,7 +114815,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -113163,6 +114855,8 @@ this tag } 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -113191,18 +114885,13 @@ this tag } BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -113210,6 +114899,8 @@ this tag } + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -113217,7 +114908,7 @@ this tag } ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -113233,7 +114924,7 @@ this tag } Points {443.5, 299.5} - {327.85938, 299.5} + {327.85939800000006, 299.5} Style @@ -113241,6 +114932,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -113266,7 +114959,7 @@ this tag } Points {256.5, 299.5} - {140.85941, 299.5} + {140.859398, 299.5} Style @@ -113274,6 +114967,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -113298,8 +114993,8 @@ this tag } 351 Points - {528.77075, 255.37872} - {566.58887, 343.62128} + {528.77070524115754, 255.37871811272731} + {566.5888464937774, 343.62128185945977} Style @@ -113307,6 +115002,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -113331,8 +115028,8 @@ this tag } 350 Points - {339.93326, 255.4176} - {370.42627, 343.5824} + {339.93328361673122, 255.41760628640216} + {370.42626692915729, 343.58239371269531} Style @@ -113340,6 +115037,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -113354,7 +115053,7 @@ this tag } Bounds - {{542, 345}, {68.359398, 42}} + {{542, 345}, {68.359397999999999, 42}} Class ShapedGraphic FontInfo @@ -113420,7 +115119,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -113432,7 +115131,7 @@ this tag } Bounds - {{344, 345}, {68.359398, 42}} + {{344, 345}, {68.359397999999999, 42}} Class ShapedGraphic FontInfo @@ -113498,7 +115197,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -113520,8 +115219,8 @@ this tag } 343 Points - {477.59003, 233} - {373.76968, 233} + {477.58999999999992, 233} + {373.76970299999999, 233} Style @@ -113529,6 +115228,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -113553,8 +115254,8 @@ this tag } 342 Points - {290.59, 233} - {186.76968, 233} + {290.58999999999997, 233} + {186.76970300000002, 233} Style @@ -113562,6 +115263,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -113586,8 +115289,8 @@ this tag } 341 Points - {155.27032, 255.36731} - {195.0892, 343.63269} + {155.27033939101955, 255.3673051709126} + {195.08921067824073, 343.63269483906043} Style @@ -113595,6 +115298,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -113609,7 +115314,7 @@ this tag } Bounds - {{171, 345}, {68.359398, 42}} + {{171, 345}, {68.359397999999999, 42}} Class ShapedGraphic FontInfo @@ -113673,7 +115378,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -113695,8 +115400,8 @@ this tag } 338 Points - {145.17978, 181.5} - {145.17984, 210.50002} + {145.17976556200051, 181.49999999999747} + {145.17981892370682, 210.50000000000156} Style @@ -113704,6 +115409,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -113728,8 +115435,8 @@ this tag } 335 Points - {131.77502, 255.28539} - {118.58443, 277.2146} + {131.7750487339469, 255.28538431166263} + {118.5844746827465, 277.2146149876167} Style @@ -113737,6 +115444,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -113751,7 +115460,7 @@ this tag } Bounds - {{71, 278.5}, {68.359398, 42}} + {{71, 278.5}, {68.359397999999999, 42}} Class ShapedGraphic FontInfo @@ -113815,7 +115524,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -113827,7 +115536,7 @@ this tag } Bounds - {{105.09, 212}, {80.179703, 42}} + {{105.09, 212}, {80.179703000000003, 42}} Class ShapedGraphic FontInfo @@ -113891,7 +115600,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -113913,8 +115622,8 @@ this tag } 329 Points - {519.17993, 181.5} - {519.17993, 210.5} + {519.17994027510292, 181.49999999999838} + {519.17989786269061, 210.50000000000315} Style @@ -113922,6 +115631,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -113946,8 +115657,8 @@ this tag } 328 Points - {332.17993, 181.5} - {332.1799, 210.5} + {332.17993645765364, 181.49999999999815} + {332.17989078918168, 210.50000000000225} Style @@ -113955,6 +115666,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -113979,8 +115692,8 @@ this tag } 325 Points - {505.77515, 255.28539} - {492.58466, 277.21463} + {505.7750800081958, 255.28538512081462} + {492.58453673143498, 277.21461659298984} Style @@ -113988,6 +115701,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -114002,7 +115717,7 @@ this tag } Bounds - {{445, 278.5}, {68.359398, 42}} + {{445, 278.5}, {68.359397999999999, 42}} Class ShapedGraphic FontInfo @@ -114066,7 +115781,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -114078,7 +115793,7 @@ this tag } Bounds - {{479.09, 212}, {80.179703, 42}} + {{479.08999999999997, 212}, {80.179703000000003, 42}} Class ShapedGraphic FontInfo @@ -114142,7 +115857,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -114164,8 +115879,8 @@ this tag } 320 Points - {318.77502, 255.28539} - {305.58444, 277.2146} + {318.77504999477605, 255.28538434428378} + {305.58447718425492, 277.21461505233771} Style @@ -114173,6 +115888,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -114187,7 +115904,7 @@ this tag } Bounds - {{258, 278.5}, {68.359398, 42}} + {{258, 278.5}, {68.359397999999999, 42}} Class ShapedGraphic FontInfo @@ -114251,7 +115968,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -114263,7 +115980,7 @@ this tag } Bounds - {{292.09, 212}, {80.179703, 42}} + {{292.08999999999997, 212}, {80.179703000000003, 42}} Class ShapedGraphic FontInfo @@ -114327,7 +116044,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -114349,8 +116066,8 @@ this tag } 316 Points - {462.26996, 147.5} - {384.67999, 147.5} + {462.26999000000001, 147.5} + {384.67998999999992, 147.5} Style @@ -114358,6 +116075,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -114382,8 +116101,8 @@ this tag } 315 Points - {279.67999, 147.5} - {192.67972, 147.5} + {279.67998999999998, 147.5} + {192.67970300000002, 147.5} Style @@ -114391,6 +116110,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -114405,7 +116126,7 @@ this tag } Bounds - {{99.179703, 115}, {92, 65}} + {{99.179703000000003, 115}, {92, 65}} Class ShapedGraphic FontInfo @@ -114469,7 +116190,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -114482,7 +116203,7 @@ this tag } Bounds - {{463.76999, 115}, {110.82, 65}} + {{463.76999000000001, 115}, {110.81999999999999, 65}} Class ShapedGraphic FontInfo @@ -114546,7 +116267,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\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 @@ -114560,7 +116281,7 @@ this tag } Bounds - {{281.17999, 115}, {102, 65}} + {{281.17998999999998, 115}, {102, 65}} Class ShapedGraphic FontInfo @@ -114624,7 +116345,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -114665,6 +116386,8 @@ this tag } 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -114693,18 +116416,13 @@ this tag } BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -114712,6 +116430,8 @@ this tag } + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -114719,7 +116439,7 @@ this tag } ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -114734,7 +116454,7 @@ this tag } 316 Points - {117.932, 104.5} + {117.932, 104.49999999999999} {117.932, 150} Style @@ -114743,6 +116463,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -114823,7 +116545,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -114845,8 +116567,8 @@ this tag } 314 Points - {540.21802, 389.5} - {540.21802, 333} + {540.21802000000002, 389.5} + {540.21802000000002, 333} Style @@ -114854,6 +116576,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -114870,7 +116594,7 @@ this tag } Bounds - {{476.28601, 391}, {127.864, 55}} + {{476.28600999999998, 391}, {127.864, 55}} Class ShapedGraphic FontInfo @@ -114934,7 +116658,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -114956,8 +116680,8 @@ this tag } 312 Points - {474.78601, 304} - {400.776, 304} + {474.78600999999986, 304} + {400.77599000000004, 304} Style @@ -114965,6 +116689,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -114981,7 +116707,7 @@ this tag } Bounds - {{476.28601, 276.5}, {127.864, 55}} + {{476.28600999999998, 276.5}, {127.864, 55}} Class ShapedGraphic FontInfo @@ -115045,7 +116771,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -115068,7 +116794,7 @@ this tag } Points {269.91199, 179} - {183.36401, 179} + {183.36400000000003, 179} Style @@ -115076,6 +116802,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -115102,8 +116830,8 @@ this tag } 309 Points - {474.78601, 179} - {400.776, 179} + {474.78600999999986, 179} + {400.77599000000004, 179} Style @@ -115111,6 +116839,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -115191,7 +116921,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -115213,8 +116943,8 @@ this tag } 305 Points - {540.21802, 104.5} - {540.21802, 150} + {540.21802000000002, 104.5} + {540.21802000000002, 150} Style @@ -115222,6 +116952,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -115238,7 +116970,7 @@ this tag } Bounds - {{476.28601, 48}, {127.864, 55}} + {{476.28600999999998, 48}, {127.864, 55}} Class ShapedGraphic FontInfo @@ -115302,7 +117034,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -115324,8 +117056,8 @@ this tag } 301 Points - {286.21298, 275.75235} - {167.06297, 207.24765} + {286.21296072601928, 275.75234679440484} + {167.06302361874785, 207.24765327158633} Style @@ -115333,6 +117065,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -115349,7 +117083,7 @@ this tag } Bounds - {{476.28601, 151.5}, {127.864, 55}} + {{476.28600999999998, 151.5}, {127.864, 55}} Class ShapedGraphic FontInfo @@ -115413,7 +117147,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -115489,7 +117223,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -115565,7 +117299,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -115605,6 +117339,8 @@ this tag } 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -115633,18 +117369,13 @@ this tag } BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -115652,6 +117383,8 @@ this tag } + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -115659,7 +117392,7 @@ this tag } ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -115674,7 +117407,7 @@ this tag } 316 Points - {295.00601, 210} + {295.00600999999995, 210} {236.88, 210} Style @@ -115683,6 +117416,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -115709,8 +117444,8 @@ this tag } 315 Points - {473.62698, 210} - {410.38605, 210} + {473.62700999999998, 210} + {410.38600999999994, 210} Style @@ -115718,6 +117453,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -115744,8 +117481,8 @@ this tag } 314 Points - {531.31702, 284.5} - {531.31702, 239} + {531.31701999999996, 284.5} + {531.31701999999996, 239} Style @@ -115753,6 +117490,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -115779,8 +117518,8 @@ this tag } 313 Points - {531.31702, 135.5} - {531.31702, 181} + {531.31701999999996, 135.5} + {531.31701999999996, 181} Style @@ -115788,6 +117527,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -115814,8 +117555,8 @@ this tag } 309 Points - {531.31702, 388} - {531.31702, 342.5} + {531.31701999999996, 388.00000000000006} + {531.31701999999996, 342.5} Style @@ -115823,6 +117564,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -115839,7 +117582,7 @@ this tag } Bounds - {{475.12701, 389.5}, {112.38, 55}} + {{475.12700999999998, 389.5}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -115903,7 +117646,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -115915,7 +117658,7 @@ this tag } Bounds - {{475.12701, 286}, {112.38, 55}} + {{475.12700999999998, 286}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -115979,7 +117722,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -115991,7 +117734,7 @@ this tag } Bounds - {{475.12701, 79}, {112.38, 55}} + {{475.12700999999998, 79}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -116055,7 +117798,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -116067,7 +117810,7 @@ this tag } Bounds - {{475.12701, 182.5}, {112.38, 55}} + {{475.12700999999998, 182.5}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -116131,7 +117874,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -116207,7 +117950,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -116283,7 +118026,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -116323,6 +118066,8 @@ this tag } 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -116351,18 +118096,13 @@ this tag } BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -116370,6 +118110,8 @@ this tag } + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -116377,7 +118119,7 @@ this tag } ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -116392,8 +118134,8 @@ this tag } 316 Points - {525.57501, 350.5} - {525.57501, 305} + {525.57501000000002, 350.5} + {525.57501000000002, 305} Style @@ -116401,6 +118143,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -116427,8 +118171,8 @@ this tag } 315 Points - {525.57501, 201.5} - {525.57501, 246.99998} + {525.57501000000002, 201.5} + {525.57501000000002, 247.00000000000003} Style @@ -116436,6 +118180,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -116463,7 +118209,7 @@ this tag } Points {460.14301, 276} - {387.776, 276} + {387.77599000000004, 276} Style @@ -116471,6 +118217,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -116498,7 +118246,7 @@ this tag } Points {256.91199, 276} - {190.36401, 276} + {190.36400000000003, 276} Style @@ -116506,6 +118254,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -116586,7 +118336,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -116662,7 +118412,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -116738,7 +118488,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -116760,8 +118510,8 @@ this tag } 309 Points - {525.57501, 98.000008} - {525.57501, 143.5} + {525.57501000000002, 98} + {525.57501000000002, 143.5} Style @@ -116769,6 +118519,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -116785,7 +118537,7 @@ this tag } Bounds - {{469.38501, 41.5}, {112.38, 55}} + {{469.38501000000002, 41.5}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -116849,7 +118601,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -116861,7 +118613,7 @@ this tag } Bounds - {{469.38501, 352}, {112.38, 55}} + {{469.38501000000002, 352}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -116925,7 +118677,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -116937,7 +118689,7 @@ this tag } Bounds - {{469.38501, 145}, {112.38, 55}} + {{469.38501000000002, 145}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -117001,7 +118753,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -117041,6 +118793,8 @@ this tag } 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -117069,18 +118823,13 @@ this tag } BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -117088,6 +118837,8 @@ this tag } + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -117095,7 +118846,7 @@ this tag } ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -117110,7 +118861,7 @@ this tag } 316 Points - {207.006, 211} + {207.00600000000003, 211} {148.88, 211} Style @@ -117119,6 +118870,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -117145,8 +118898,8 @@ this tag } 315 Points - {385.62701, 211} - {322.38599, 211} + {385.62700999999998, 211} + {322.38600000000002, 211} Style @@ -117154,6 +118907,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -117170,7 +118925,7 @@ this tag } Bounds - {{387.12701, 183.5}, {112.38, 55}} + {{387.12700999999998, 183.5}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -117234,7 +118989,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -117310,7 +119065,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -117386,7 +119141,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -117408,8 +119163,8 @@ this tag } 311 Points - {564.24799, 211} - {501.00702, 211} + {564.24798999999985, 211} + {501.00700999999998, 211} Style @@ -117417,6 +119172,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -117433,7 +119190,7 @@ this tag } Bounds - {{565.74799, 183.5}, {112.38, 55}} + {{565.74798999999996, 183.5}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -117497,7 +119254,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -117519,8 +119276,8 @@ this tag } 309 Points - {621.93799, 389} - {621.93799, 343.5} + {621.93799000000001, 389} + {621.93799000000001, 343.5} Style @@ -117528,6 +119285,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -117544,7 +119303,7 @@ this tag } Bounds - {{565.74799, 390.5}, {112.38, 55}} + {{565.74798999999996, 390.5}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -117608,7 +119367,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -117630,8 +119389,8 @@ this tag } 307 Points - {621.93799, 285.5} - {621.93799, 240} + {621.93799000000001, 285.5} + {621.93799000000001, 240} Style @@ -117639,6 +119398,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -117655,7 +119416,7 @@ this tag } Bounds - {{565.74799, 287}, {112.38, 55}} + {{565.74798999999996, 287}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -117719,7 +119480,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -117741,8 +119502,8 @@ this tag } 305 Points - {443.31702, 136.5} - {443.31702, 182} + {443.31702000000001, 136.5} + {443.31702000000001, 182} Style @@ -117750,6 +119511,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -117766,7 +119529,7 @@ this tag } Bounds - {{387.12701, 80}, {112.38, 55}} + {{387.12700999999998, 80}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -117830,7 +119593,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -117870,6 +119633,8 @@ this tag } 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -117898,18 +119663,13 @@ this tag } BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -117917,6 +119677,8 @@ this tag } + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -117924,7 +119686,7 @@ this tag } ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -117939,7 +119701,7 @@ this tag } 318 Points - {207.006, 245} + {207.00600000000003, 245} {148.88, 245} Style @@ -117948,6 +119710,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -117974,8 +119738,8 @@ this tag } 317 Points - {385.62701, 245} - {322.38599, 245} + {385.62700999999998, 245} + {322.38600000000002, 245} Style @@ -117983,6 +119747,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -117999,7 +119765,7 @@ this tag } Bounds - {{387.12701, 217.5}, {112.38, 55}} + {{387.12700999999998, 217.5}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -118063,7 +119829,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -118139,7 +119905,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -118215,7 +119981,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -118237,8 +120003,8 @@ this tag } 313 Points - {564.24799, 245} - {501.00702, 245} + {564.24798999999985, 245} + {501.00700999999998, 245} Style @@ -118246,6 +120012,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -118262,7 +120030,7 @@ this tag } Bounds - {{565.74799, 217.5}, {112.38, 55}} + {{565.74798999999996, 217.5}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -118326,7 +120094,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -118348,8 +120116,8 @@ this tag } 309 Points - {443.31702, 67} - {443.31702, 112.5} + {443.31702000000001, 67} + {443.31702000000001, 112.5} Style @@ -118357,6 +120125,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -118373,7 +120143,7 @@ this tag } Bounds - {{387.12701, 10.5}, {112.38, 55}} + {{387.12700999999998, 10.5}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -118437,7 +120207,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -118459,8 +120229,8 @@ this tag } 307 Points - {621.93799, 319.5} - {621.93799, 274} + {621.93799000000001, 319.49999999999994} + {621.93799000000001, 274} Style @@ -118468,6 +120238,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -118484,7 +120256,7 @@ this tag } Bounds - {{565.74799, 321}, {112.38, 55}} + {{565.74798999999996, 321}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -118548,7 +120320,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -118570,8 +120342,8 @@ this tag } 305 Points - {443.31702, 170.5} - {443.31702, 216} + {443.31702000000001, 170.5} + {443.31702000000001, 215.99999999999997} Style @@ -118579,6 +120351,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -118595,7 +120369,7 @@ this tag } Bounds - {{387.12701, 114}, {112.38, 55}} + {{387.12700999999998, 114}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -118659,7 +120433,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -118699,6 +120473,8 @@ this tag } 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -118727,18 +120503,13 @@ this tag } BackgroundGraphic Bounds - {{0, 0}, {756, 553}} + {{0, 0}, {756, 553.00002098083496}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -118746,6 +120517,8 @@ this tag } + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -118753,7 +120526,7 @@ this tag } ColumnSpacing 36 DisplayScale - 1 0/72 in = 1.0000 in + 1 in = 1.00000 in GraphicsList @@ -118768,8 +120541,8 @@ this tag } 321 Points - {556.57208, 351.71655} - {496.93497, 332.53363} + {556.57205420400203, 351.71650918399672} + {496.93495548293129, 332.53353405063444} Style @@ -118777,6 +120550,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -118803,7 +120578,7 @@ this tag } 320 Points - {203.006, 314} + {203.00600000000003, 314} {144.88, 314} Style @@ -118812,6 +120587,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -118838,8 +120615,8 @@ this tag } 319 Points - {381.62701, 314} - {318.38599, 314} + {381.62700999999998, 314} + {318.38600000000002, 314} Style @@ -118847,6 +120624,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -118863,7 +120642,7 @@ this tag } Bounds - {{383.12701, 286.5}, {112.38, 55}} + {{383.12700999999998, 286.5}, {112.38, 55}} Class ShapedGraphic FontInfo @@ -118927,7 +120706,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -119003,7 +120782,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -119079,7 +120858,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -119101,8 +120880,8 @@ this tag } 315 Points - {556.57208, 276.28345} - {496.93497, 295.46637} + {556.57205420400203, 276.28349081600328} + {496.93495548293129, 295.46646594936556} Style @@ -119110,6 +120889,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -119190,7 +120971,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -119266,7 +121047,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fmodern\fcharset0 Courier;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -119288,8 +121069,8 @@ this tag } 309 Points - {614.19, 78.5} - {614.19, 124} + {614.19000000000005, 78.5} + {614.19000000000005, 124} Style @@ -119297,6 +121078,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -119377,7 +121160,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -119399,8 +121182,8 @@ this tag } 307 Points - {614.19, 452.99997} - {614.19, 399.25} + {614.19000000000005, 453} + {614.19000000000005, 399.24999999999994} Style @@ -119408,6 +121191,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -119488,7 +121273,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -119510,8 +121295,8 @@ this tag } 305 Points - {614.19, 182.00002} - {614.19, 228.75} + {614.19000000000005, 182} + {614.19000000000005, 228.75} Style @@ -119519,6 +121304,8 @@ this tag } HeadArrow FilledArrow + Legacy + LineType 1 TailArrow @@ -119599,7 +121386,7 @@ this tag } Text Text - {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf230 + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 {\fonttbl\f0\fnil\fcharset0 Geneva;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc @@ -119639,6 +121426,8 @@ this tag } 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -119659,386 +121448,7679 @@ this tag } VPages 1 - - SmartAlignmentGuidesActive - YES - SmartDistanceGuidesActive - YES - UseEntirePage - - WindowInfo - - CurrentSheet - 60 - ExpandedCanvases - - Frame - {{72, 18}, {912, 697}} - ListView - - OutlineWidth - 142 - RightSidebar - - ShowRuler - - Sidebar - - SidebarWidth - 138 - SmallIcons - - VisibleRegion - {{0, 0}, {759, 542}} - Zoom - 1 - ZoomValues - - - 0519 - 1 - 1 - - - 0520 - 1 - 1 - - - 0522 - 1 - 1 - - - 0521 - 1 - 1 - - - 0523 - 1 - 1 - - - 0524 - 1 - 1 - - - 0525 - 1 - 1 - - - 0526 - 1 - 1 - - - 0527 - 1 - 1 - - - Canvas 11 - 1 - 1 - - - Canvas 12 - 1 - 1 - - - Canvas 13 - 1 - 1 - - - Canvas 14 - 1 - 1 - - - Canvas 15 - 1 - 1 - - - Canvas 16 - 1 - 1 - - - 101 - 1 - 1 - - - 103 - 1 - 1 - - - 0322-old - 1 - 1 - - - 0322 - 1 - 1 - - - 0323 - 1 - 1 - - - 0324 - 1 - 1 - - - 0325 - 1 - 1 - - - 0326 - 1 - 1 - - - 331 - 1 - 1 - - - 332 - 1 - 1 - - - 333 - 1 - 1 - - - 334 - 1 - 1 - - - 335 - 1 - 1 - - - branch-simple 3 - 1 - 1 - - - branch-simple 4 - 1 - 1 - - - branch-simple 5 - 1 - 1 - - - branch-simple 6 - 1 - 1 - - - git log filtering 4 - 1 - 1 - - - 336 - 1 - 1 - - - 337 - 1 - 1 - - - 338 - 1 - 1 - - - 339 - 1 - 1 - - - 0316 - 1 - 1 - - - branch-simple 8 - 1 - 1 - - - integration - 1 - 1 - - - star - 1 - 1 - - - dictator - 1 - 1 - - - ch5a1 - 1 - 1 - - - ch5a2 - 1 - 1 - - - ch5a3 - 1 - 1 - - - ch5b1 - 1 - 1 - - - ch5b2 - 1 - 1 - - - ch5b3 - 1 - 1 - - - ch5b4 - 1 - 1 - - - ch5c1 - 1 - 1 - - - ch5c2 - 1 - 1 - - - ch5d1 - 1 - 1 - - - ch5c3b - 1 - 1 - - - ch5d2 - 1 - 1 - - - ch5d3 - 1 - 1 - - - example one 5 - 1 - 1 - - - example one 4 - 1 - 1 - - - 0302 - 1 - 1 - - - ch0602 1 - 1 - 1 - - - 104-5 - 1 - 1 - - - Canvas 10 - 1 - 1 - - - example one 6 - 1 - 1 - - - 0303 - 1 - 1 - - - 0301 - 1 - 1 - - - 0306 - 1 - 1 - - - 201 - 1 - 1 - - - 106 - 1 - 1 - - - 0309 - 1 - 1 - + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 553.00002098083496}} + Class + SolidGraphic + ID + 2 + Style + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 in = 1.00000 in + GraphicsList - 102 - 1 - 1 - + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1362 + + ID + 1374 + Points + + {387.11416367123064, 222.42317937112816} + {353.00282617372017, 260.95738130366988} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1356 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1362 + + ID + 1373 + Points + + {336.05714060517198, 337.8599653694169} + {336.05861354946336, 299.57999413247416} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1367 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1356 + + ID + 1371 + Points + + {404.16302893767329, 162.05999276497019} + {404.30104412098103, 183.80015483641625} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1352 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 331 + Points + + {404.77078828744624, 102.3199819813379} + {404.65064705682693, 125.06001291543441} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 303 + + + + Bounds + {{370.69411251942063, 64.820002915434401}, {68.359397999999999, 36}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0 + g + 0 + r + 0 + + Font + LucidaGrande + NSKern + 0.0 + Size + 10 + + ID + 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\cocoasubrtf190 +{\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\fs20 \cf0 HEAD} + VerticalPad + 0 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1343 + + ID + 1369 + Points + + {244.76005120117432, 260.95267692243203} + {210.50095984778807, 221.92290068864401} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1363 + + + + Bounds + {{296.68456051942059, 338.85996536867663}, {78.743697999999995, 36}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.8 + g + 0.8 + r + 0.8 + + Font + LucidaGrande + Size + 10 + + ID + 1367 + 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\cocoasubrtf190 +{\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 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1363 + + ID + 1364 + Points + + {310.8240085194206, 280.07999414205551} + {286.78180051942059, 280.07999414205551} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1362 + + + + Bounds + {{237.81699851942062, 262.07999414205551}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1363 + 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\cocoasubrtf190 +{\fonttbl\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 + {{312.3240085194206, 262.07999414205551}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1362 + 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\cocoasubrtf190 +{\fonttbl\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} + VerticalPad + 0 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1354 + + ID + 1361 + Points + + {310.8240085194206, 203.30002291543443} + {286.78180051942059, 203.30002291543443} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1357 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1357 + + ID + 1358 + Points + + {378.81000851942065, 203.30002291543443} + {361.28881051942057, 203.30002291543443} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1356 + + + + Bounds + {{312.3240085194206, 185.30002291543443}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1357 + 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\cocoasubrtf190 +{\fonttbl\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} + VerticalPad + 0 + + + + Bounds + {{380.31000851942065, 185.30002291543443}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1356 + 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\cocoasubrtf190 +{\fonttbl\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 M} + VerticalPad + 0 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1343 + + ID + 1355 + Points + + {236.31736739733154, 203.11445506309906} + {218.79543164150149, 202.98559076983744} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1354 + + + + Bounds + {{237.81699851942062, 185.30002291543443}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1354 + 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\cocoasubrtf190 +{\fonttbl\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 + {{369.03130851942063, 125.06001291543441}, {70.022201999999993, 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\cocoasubrtf190 +{\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 + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 1349 + Points + + {100.34600151942062, 202.80002291543443} + {66.239998519420624, 202.80002291543443} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + Pattern + 1 + TailArrow + 0 + + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1344 + + ID + 1348 + Points + + {168.33099851942066, 202.80002291543443} + {150.8107045194206, 202.80002291543443} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1343 + + + + Bounds + {{101.84590251942062, 184.80002291543443}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1344 + 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\cocoasubrtf190 +{\fonttbl\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 + {{169.83099851942063, 184.80002291543443}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1343 + 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\cocoasubrtf190 +{\fonttbl\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 + + + + 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 + undomerge-base + UniqueID + 97 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 553.00002098083496}} + 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 + 1362 + + ID + 1374 + Points + + {387.10963801583222, 222.4230439614214} + {352.989181023009, 260.95697309606857} + + Style + + stroke + + Color + + a + 0.5 + b + 0.382653 + g + 0.382653 + r + 0.382653 + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1356 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1362 + + ID + 1373 + Points + + {336.05641868129891, 337.85996536867663} + {336.05641868129891, 299.57999414205557} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1367 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1357 + + ID + 1371 + Points + + {336.06165021036304, 162.04000851356722} + {336.0676521846745, 183.80002316473914} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1352 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 331 + Points + + {336.78478828744613, 102.29997761751063} + {336.66464705682688, 125.04000855160714} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 303 + + + + Bounds + {{302.70811251942058, 64.799998551607132}, {68.359397999999999, 36}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0 + g + 0 + r + 0 + + Font + LucidaGrande + NSKern + 0.0 + Size + 10 + + ID + 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\cocoasubrtf190 +{\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\fs20 \cf0 HEAD} + VerticalPad + 0 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1343 + + ID + 1369 + Points + + {244.72341710739147, 260.95377523024439} + {210.38956951063741, 221.92623620519399} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1363 + + + + Bounds + {{296.68456051942059, 338.85996536867663}, {78.743697999999995, 36}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.8 + g + 0.8 + r + 0.8 + + Font + LucidaGrande + Size + 10 + + ID + 1367 + 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\cocoasubrtf190 +{\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 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1363 + + ID + 1364 + Points + + {310.8240085194206, 280.07999414205551} + {286.78180051942059, 280.07999414205551} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1362 + + + + Bounds + {{237.81699851942062, 262.07999414205551}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1363 + 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\cocoasubrtf190 +{\fonttbl\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 + {{312.3240085194206, 262.07999414205551}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1362 + 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\cocoasubrtf190 +{\fonttbl\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} + VerticalPad + 0 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1354 + + ID + 1361 + Points + + {310.8240085194206, 203.30002291543443} + {286.78180051942059, 203.30002291543443} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1357 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1357 + + ID + 1358 + Points + + {378.81000851942065, 203.30002291543443} + {361.28881051942057, 203.30002291543443} + + Style + + stroke + + Color + + a + 0.5 + b + 0.382653 + g + 0.382653 + r + 0.382653 + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1356 + + + + Bounds + {{312.3240085194206, 185.30002291543443}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1357 + 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\cocoasubrtf190 +{\fonttbl\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} + VerticalPad + 0 + + + + Bounds + {{380.31000851942065, 185.30002291543443}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Color + + a + 0.5 + w + 0 + + Font + Courier + Size + 12 + + ID + 1356 + Shape + RoundRect + Style + + fill + + Color + + a + 0.5 + b + 0.837205 + g + 0.959184 + r + 0.826135 + + + shadow + + Draws + NO + + stroke + + Color + + a + 0.5 + b + 0.382653 + g + 0.382653 + r + 0.382653 + + Width + 3 + + + Text + + RTFD + + BAtzdHJlYW10eXBlZIHoA4QBQISE + hBJOU0F0dHJpYnV0ZWRTdHJpbmcA + hIQITlNPYmplY3QAhZKEhIQITlNT + dHJpbmcBlIQBKwFNhoQCaUkBAZKE + hIQMTlNEaWN0aW9uYXJ5AJSEAWkD + koSWlgdOU0NvbG9yhpKEhIQHTlND + b2xvcgCUhAFjA4QCZmYAgwAAAD+G + koSWlhBOU1BhcmFncmFwaFN0eWxl + hpKEhIQQTlNQYXJhZ3JhcGhTdHls + ZQCUhARDQ0BTAgCEhIQHTlNBcnJh + eQCUmQyShISECU5TVGV4dFRhYgCU + hAJDZgAchpKEoqEAOIaShKKhAFSG + koSioQBwhpKEoqEAgYwAhpKEoqEA + gagAhpKEoqEAgcQAhpKEoqEAgeAA + hpKEoqEAgfwAhpKEoqEAgRgBhpKE + oqEAgTQBhpKEoqEAgVABhoYAhpKE + lpYGTlNGb250hpKEhIQGTlNGb250 + HpSZGIQFWzI0Y10GAAAAEAAAAP/+ + QwBvAHUAcgBpAGUAcgCEAWYMmwCb + AZsAmwCGhoY= + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 +{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;\red0\green0\blue0;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 M} + VerticalPad + 0 + alpha + + + 0 + 1 + 0.5 + + + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1343 + + ID + 1355 + Points + + {236.31736739733446, 203.1144550623641} + {218.79543164150644, 202.98559076859212} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1354 + + + + Bounds + {{237.81699851942062, 185.30002291543443}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1354 + 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\cocoasubrtf190 +{\fonttbl\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 + {{301.04530851942059, 125.04000855160714}, {70.022201999999993, 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\cocoasubrtf190 +{\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 + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 1349 + Points + + {100.34600151942062, 202.80002291543443} + {66.239998519420624, 202.80002291543443} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + Pattern + 1 + TailArrow + 0 + + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1344 + + ID + 1348 + Points + + {168.33099851942066, 202.80002291543443} + {150.8107045194206, 202.80002291543443} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1343 + + + + Bounds + {{101.84590251942062, 184.80002291543443}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1344 + 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\cocoasubrtf190 +{\fonttbl\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 + {{169.83099851942063, 184.80002291543443}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1343 + 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\cocoasubrtf190 +{\fonttbl\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 + + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 2 + 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 + undomerge-reset + UniqueID + 98 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 553.00002098083496}} + 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 + 1356 + + ID + 1376 + Points + + {453.3170215326079, 203.28324743223976} + {429.27479903079717, 203.26726322416914} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1375 + + + + Bounds + {{454.81701851942063, 185.30002291543443}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + 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\cocoasubrtf190 +{\fonttbl\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 ^M} + VerticalPad + 0 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1362 + + ID + 1374 + Points + + {387.11013585782928, 222.42305885658681} + {352.99068204439311, 260.95701800507766} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1356 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1362 + + ID + 1373 + Points + + {336.05649136145564, 337.85996536868589} + {336.05665625149487, 299.57999414193546} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1367 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1375 + + ID + 1371 + Points + + {478.39463836747512, 162.03997537141834} + {478.21737074850466, 183.80024034121848} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1352 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 331 + Points + + {479.27779828744616, 102.29997761751063} + {479.15765705682691, 125.04000855160714} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 303 + + + + Bounds + {{445.20112251942061, 64.799998551607132}, {68.359397999999999, 36}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0 + g + 0 + r + 0 + + Font + LucidaGrande + NSKern + 0.0 + Size + 10 + + ID + 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\cocoasubrtf190 +{\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\fs20 \cf0 HEAD} + VerticalPad + 0 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1343 + + ID + 1369 + Points + + {244.72733840345489, 260.95365769876952} + {210.40149235170148, 221.92587889328368} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1363 + + + + Bounds + {{296.68456051942059, 338.85996536867663}, {78.743697999999995, 36}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.8 + g + 0.8 + r + 0.8 + + Font + LucidaGrande + Size + 10 + + ID + 1367 + 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\cocoasubrtf190 +{\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 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1363 + + ID + 1364 + Points + + {310.8240085194206, 280.07999414205551} + {286.78180051942059, 280.07999414205551} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1362 + + + + Bounds + {{237.81699851942062, 262.07999414205551}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1363 + 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\cocoasubrtf190 +{\fonttbl\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 + {{312.3240085194206, 262.07999414205551}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1362 + 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\cocoasubrtf190 +{\fonttbl\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} + VerticalPad + 0 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1354 + + ID + 1361 + Points + + {310.8240085194206, 203.30002291543443} + {286.78180051942059, 203.30002291543443} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1357 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1357 + + ID + 1358 + Points + + {378.81000851942065, 203.30002291543443} + {361.28881051942057, 203.30002291543443} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1356 + + + + Bounds + {{312.3240085194206, 185.30002291543443}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1357 + 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\cocoasubrtf190 +{\fonttbl\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} + VerticalPad + 0 + + + + Bounds + {{380.31000851942065, 185.30002291543443}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1356 + 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\cocoasubrtf190 +{\fonttbl\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 M} + VerticalPad + 0 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1343 + + ID + 1355 + Points + + {236.31736739733353, 203.11445506259895} + {218.79543164150485, 202.98559076899005} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1354 + + + + Bounds + {{237.81699851942062, 185.30002291543443}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1354 + 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\cocoasubrtf190 +{\fonttbl\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 + {{443.53831851942061, 125.04000855160714}, {70.022201999999993, 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\cocoasubrtf190 +{\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 + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 1349 + Points + + {100.34600151942062, 202.80002291543443} + {66.239998519420624, 202.80002291543443} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + Pattern + 1 + TailArrow + 0 + + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1344 + + ID + 1348 + Points + + {168.33099851942066, 202.80002291543443} + {150.8107045194206, 202.80002291543443} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1343 + + + + Bounds + {{101.84590251942062, 184.80002291543443}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1344 + 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\cocoasubrtf190 +{\fonttbl\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 + {{169.83099851942063, 184.80002291543443}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1343 + 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\cocoasubrtf190 +{\fonttbl\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 + + + + 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 + undomerge-revert + UniqueID + 99 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 553.00002098083496}} + 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 + 1377 + + ID + 1381 + Points + + {526.82273801008114, 221.59989695006229} + {493, 253} + {428.64203940532133, 272.59150631759769} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1379 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1375 + + ID + 1380 + Points + + {521.30226132219377, 203.41710509314734} + {503.78139891845132, 203.49840503209069} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1379 + + + + Bounds + {{522.80211451942057, 185.30002291543443}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1379 + 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\cocoasubrtf190 +{\fonttbl\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 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1362 + + ID + 1378 + Points + + {378.8102968856104, 280.24407501182844} + {361.28798221504826, 280.3580201528203} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1377 + + + + Bounds + {{380.31000851942065, 262.07999414205551}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1377 + 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\cocoasubrtf190 +{\fonttbl\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 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1356 + + ID + 1376 + Points + + {453.31701872668037, 203.29562399841123} + {429.27480972978697, 203.29143257472151} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1375 + + + + Bounds + {{454.81701851942063, 185.30002291543443}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + 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\cocoasubrtf190 +{\fonttbl\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 ^M} + VerticalPad + 0 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1362 + + ID + 1374 + Points + + {387.10969278059923, 222.42304559994781} + {352.98934614177284, 260.95697803630623} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1356 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1377 + + ID + 1373 + Points + + {403.99817855957093, 338.11999512973171} + {403.90845945195639, 299.57995875339526} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1367 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1379 + + ID + 1371 + Points + + {546.52694306351441, 162.04000847218597} + {546.51827060275025, 183.80002343594168} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1352 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 331 + Points + + {547.26289428744633, 102.29997761751063} + {547.1427530568269, 125.04000855160714} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 303 + + + + Bounds + {{513.18621851942066, 64.799998551607132}, {68.359397999999999, 36}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0 + g + 0 + r + 0 + + Font + LucidaGrande + NSKern + 0.0 + Size + 10 + + ID + 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\cocoasubrtf190 +{\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\fs20 \cf0 HEAD} + VerticalPad + 0 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1343 + + ID + 1369 + Points + + {244.72379986747771, 260.95376375825288} + {210.3907333029355, 221.92620132483682} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1363 + + + + Bounds + {{364.67056051942063, 339.11999242007732}, {78.743697999999995, 36}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.8 + g + 0.8 + r + 0.8 + + Font + LucidaGrande + Size + 10 + + ID + 1367 + 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\cocoasubrtf190 +{\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 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1363 + + ID + 1364 + Points + + {310.8240085194206, 280.07999414205551} + {286.78180051942059, 280.07999414205551} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1362 + + + + Bounds + {{237.81699851942062, 262.07999414205551}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1363 + 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\cocoasubrtf190 +{\fonttbl\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 + {{312.3240085194206, 262.07999414205551}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1362 + 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\cocoasubrtf190 +{\fonttbl\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} + VerticalPad + 0 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1354 + + ID + 1361 + Points + + {310.8240085194206, 203.30002291543443} + {286.78180051942059, 203.30002291543443} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1357 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1357 + + ID + 1358 + Points + + {378.81000851942065, 203.30002291543443} + {361.28881051942057, 203.30002291543443} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1356 + + + + Bounds + {{312.3240085194206, 185.30002291543443}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1357 + 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\cocoasubrtf190 +{\fonttbl\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} + VerticalPad + 0 + + + + Bounds + {{380.31000851942065, 185.30002291543443}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1356 + 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\cocoasubrtf190 +{\fonttbl\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 M} + VerticalPad + 0 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1343 + + ID + 1355 + Points + + {236.31736739733424, 203.11445506242478} + {218.79543164150601, 202.98559076869492} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1354 + + + + Bounds + {{237.81699851942062, 185.30002291543443}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1354 + 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\cocoasubrtf190 +{\fonttbl\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 + {{511.52341451942061, 125.04000855160714}, {70.022201999999993, 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\cocoasubrtf190 +{\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 + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 1349 + Points + + {100.34600151942062, 202.80002291543443} + {66.239998519420624, 202.80002291543443} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + Pattern + 1 + TailArrow + 0 + + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1344 + + ID + 1348 + Points + + {168.33099851942066, 202.80002291543443} + {150.8107045194206, 202.80002291543443} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1343 + + + + Bounds + {{101.84590251942062, 184.80002291543443}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1344 + 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\cocoasubrtf190 +{\fonttbl\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 + {{169.83099851942063, 184.80002291543443}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1343 + 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\cocoasubrtf190 +{\fonttbl\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 + + + + 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 + undomerge-revert2 + UniqueID + 100 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {756, 553.00002098083496}} + 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 + 1379 + + ID + 1383 + Points + + {589.28740274775726, 203.43399632973237} + {571.76636443543669, 203.52702636709409} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1382 + + + + Bounds + {{590.78721051942046, 185.30002291543443}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + 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\cocoasubrtf190 +{\fonttbl\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 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1377 + + ID + 1381 + Points + + {592.14023313742575, 218.04214550263097} + {533, 257} + {429.05506195837205, 275.60339164338205} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1382 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1375 + + ID + 1380 + Points + + {521.30213232541223, 203.34080578283906} + {503.78176938935422, 203.3691237832835} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1379 + + + + Bounds + {{522.80211451942057, 185.30002291543443}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1379 + 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\cocoasubrtf190 +{\fonttbl\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 ^^M} + VerticalPad + 0 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1362 + + ID + 1378 + Points + + {378.81004348929469, 280.1371450937408} + {361.28871009824229, 280.17683066571203} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1377 + + + + Bounds + {{380.31000851942065, 262.07999414205551}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1377 + 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\cocoasubrtf190 +{\fonttbl\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 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1356 + + ID + 1376 + Points + + {453.31701853369259, 203.29886941822335} + {429.27481046519631, 203.29777033058713} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1375 + + + + Bounds + {{454.81701851942063, 185.30002291543443}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + 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\cocoasubrtf190 +{\fonttbl\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 ^M} + VerticalPad + 0 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1362 + + ID + 1374 + Points + + {387.10964404019228, 222.42304414166625} + {352.98919918678297, 260.9569736395166} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1356 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1377 + + ID + 1373 + Points + + {403.99819674508961, 338.11999512750396} + {403.90851452548748, 299.57995878248846} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1367 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1382 + + ID + 1371 + Points + + {614.70414675940572, 162.03996138953676} + {614.91549229467751, 183.80033194526513} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1352 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 331 + Points + + {615.2479902874461, 102.29997761751063} + {615.12784905682668, 125.04000855160714} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 303 + + + + Bounds + {{581.17131451942043, 64.799998551607132}, {68.359397999999999, 36}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0 + g + 0 + r + 0 + + Font + LucidaGrande + NSKern + 0.0 + Size + 10 + + ID + 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\cocoasubrtf190 +{\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\fs20 \cf0 HEAD} + VerticalPad + 0 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1343 + + ID + 1369 + Points + + {244.72341710739147, 260.95377523024439} + {210.38956951063741, 221.92623620519399} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1363 + + + + Bounds + {{364.67056051942063, 339.11999242007732}, {78.743697999999995, 36}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.8 + g + 0.8 + r + 0.8 + + Font + LucidaGrande + Size + 10 + + ID + 1367 + 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\cocoasubrtf190 +{\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 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1363 + + ID + 1364 + Points + + {310.8240085194206, 280.07999414205551} + {286.78180051942059, 280.07999414205551} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1362 + + + + Bounds + {{237.81699851942062, 262.07999414205551}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1363 + 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\cocoasubrtf190 +{\fonttbl\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 + {{312.3240085194206, 262.07999414205551}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1362 + 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\cocoasubrtf190 +{\fonttbl\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} + VerticalPad + 0 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1354 + + ID + 1361 + Points + + {310.8240085194206, 203.30002291543443} + {286.78180051942059, 203.30002291543443} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1357 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1357 + + ID + 1358 + Points + + {378.81000851942065, 203.30002291543443} + {361.28881051942057, 203.30002291543443} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1356 + + + + Bounds + {{312.3240085194206, 185.30002291543443}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1357 + 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\cocoasubrtf190 +{\fonttbl\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} + VerticalPad + 0 + + + + Bounds + {{380.31000851942065, 185.30002291543443}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1356 + 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\cocoasubrtf190 +{\fonttbl\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 M} + VerticalPad + 0 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1343 + + ID + 1355 + Points + + {236.31736739733446, 203.1144550623641} + {218.79543164150644, 202.98559076859212} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1354 + + + + Bounds + {{237.81699851942062, 185.30002291543443}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1354 + 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\cocoasubrtf190 +{\fonttbl\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 + {{579.50851051942038, 125.04000855160714}, {70.022201999999993, 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\cocoasubrtf190 +{\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 + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 1349 + Points + + {100.34600151942062, 202.80002291543443} + {66.239998519420624, 202.80002291543443} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + Pattern + 1 + TailArrow + 0 + + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 1344 + + ID + 1348 + Points + + {168.33099851942066, 202.80002291543443} + {150.8107045194206, 202.80002291543443} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 1343 + + + + Bounds + {{101.84590251942062, 184.80002291543443}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1344 + 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\cocoasubrtf190 +{\fonttbl\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 + {{169.83099851942063, 184.80002291543443}, {47.464801999999999, 36}} + Class + ShapedGraphic + FontInfo + + Font + Courier + Size + 12 + + ID + 1343 + 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\cocoasubrtf190 +{\fonttbl\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 + + + + 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 + undomerge-revert3 + UniqueID + 101 + VPages + 1 + + + SmartAlignmentGuidesActive + YES + SmartDistanceGuidesActive + YES + UseEntirePage + + WindowInfo + + BottomSlabHeight + 497 + CurrentSheet + 91 + Expanded_Canvases + + Frame + {{-0, 4}, {1680, 1024}} + ShowInfo + + ShowRuler + + Sidebar + + SidebarWidth + 318 + SmallIcons + + VisibleRegion + {{-144, -164}, {1045, 882}} + Zoom + 1 + ZoomValues + + + 0519 + 1 + 1 + + + 0520 + 1 + 1 + + + 0522 + 1 + 1 + + + 0521 + 1 + 1 + + + 0523 + 1 + 1 + + + 0524 + 1 + 1 + + + 0525 + 1 + 1 + + + 0526 + 1 + 1 + + + 0527 + 1 + 1 + + + Canvas 11 + 1 + 1 + + + Canvas 12 + 1 + 1 + + + Canvas 13 + 1 + 1 + + + Canvas 14 + 1 + 1 + + + Canvas 15 + 1 + 1 + + + Canvas 16 + 1 + 1 + + + 101 + 1 + 1 + + + 103 + 1 + 1 + + + 0322-old + 1 + 1 + + + 0322 + 1 + 1 + + + 0323 + 1 + 1 + + + 0324 + 1 + 1 + + + 0325 + 1 + 1 + + + 0326 + 1 + 1 + + + 331 + 1 + 1 + + + 332 + 1 + 1 + + + 333 + 1 + 1 + + + 334 + 1 + 1 + + + 335 + 1 + 1 + + + branch-simple 3 + 1 + 1 + + + branch-simple 4 + 1 + 1 + + + branch-simple 5 + 1 + 1 + + + branch-simple 6 + 1 + 1 + + + git log filtering 4 + 1 + 1 + + + 336 + 1 + 1 + + + 337 + 1 + 1 + + + 338 + 1 + 1 + + + 339 + 1 + 1 + + + 0316 + 1 + 1 + + + branch-simple 8 + 1 + 1 + + + integration + 1 + 1 + + + star + 1 + 1 + + + dictator + 1 + 1 + + + ch5a1 + 1 + 1 + + + ch5a2 + 1 + 1 + + + ch5a3 + 1 + 1 + + + ch5b1 + 1 + 1 + + + ch5b2 + 1 + 1 + + + ch5b3 + 1 + 1 + + + ch5b4 + 1 + 1 + + + ch5c1 + 1 + 1 + + + ch5c2 + 1 + 1 + + + ch5d1 + 1 + 1 + + + ch5c3b + 1 + 1 + + + ch5d2 + 1 + 1 + + + ch5d3 + 1 + 1 + + + example one 5 + 1 + 1 + + + example one 4 + 1 + 1 + + + 0302 + 1 + 1 + + + ch0602 1 + 1 + 1 + + + 104-5 + 1 + 1 + + + Canvas 10 + 1 + 1 + + + example one 6 + 1 + 1 + + + 0303 + 1 + 1 + + + 0301 + 1 + 1 + + + 0306 + 1 + 1 + + + 201 + 1 + 1 + + + 106 + 1 + 1 + + + 0309 + 1 + 1 + + + 102 + 1 + 1 + example one 1 @@ -120129,9 +129211,32 @@ this tag } 1 1 + + undomerge-base + 1 + 1 + + + undomerge-reset + 1 + 1 + + + undomerge-revert + 1 + 1 + + + undomerge-revert2 + 1 + 1 + + + undomerge-revert3 + 1 + 1 + - saveQuickLookFiles - YES