]> source.dussan.org Git - archiva.git/commitdiff
fix license headers
authorOlivier Lamy <olamy@apache.org>
Fri, 6 Apr 2012 16:28:59 +0000 (16:28 +0000)
committerOlivier Lamy <olamy@apache.org>
Fri, 6 Apr 2012 16:28:59 +0000 (16:28 +0000)
git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk@1310450 13f79535-47bb-0310-9956-ffa450edef68

14 files changed:
redback-integrations/redback-struts2/redback-struts2-integration/src/main/java/org/codehaus/plexus/redback/struts2/action/RedbackActionSupport.java
redback-integrations/redback-struts2/redback-struts2-integration/src/main/resources/org/extremecomponents/table/resource/extremetableResourceBundle_fr_FR.properties
redback-integrations/redback-struts2/redback-struts2-integration/src/site/apt/cookies.apt [deleted file]
redback-integrations/redback-struts2/redback-struts2-integration/src/site/graffle/PlexusSecurityAuthentication.graffle [deleted file]
redback-integrations/redback-struts2/redback-struts2-integration/src/site/resources/images/PlexusSecurityAuthentication.png [deleted file]
redback-integrations/redback-struts2/redback-struts2-integration/src/test/resources/logback-test.xml
redback-integrations/redback-struts2/redback-struts2-integration/src/test/resources/org/codehaus/plexus/redback/struts2/action/admin/AssignmentsActionTest.xml
redback-integrations/redback-struts2/redback-struts2-integration/src/test/resources/org/codehaus/plexus/redback/struts2/action/admin/SystemInfoActionTest.xml
redback-integrations/redback-struts2/redback-struts2-integration/src/test/resources/org/codehaus/plexus/redback/struts2/action/admin/UserEditActionTest.xml
redback-integrations/redback-struts2/redback-struts2-integration/src/test/resources/org/codehaus/plexus/redback/struts2/interceptor/CustomInterceptorTest.xml
redback-integrations/redback-struts2/redback-struts2-integration/src/test/resources/redback.xml
redback-integrations/redback-struts2/redback-struts2-integration/src/test/resources/struts-security.xml
redback-integrations/redback-struts2/redback-struts2-integration/src/test/resources/struts.properties
redback-integrations/redback-struts2/redback-struts2-integration/src/test/resources/struts.xml

index d3f431ac1303869bf492ee2db97dcdeefdbc7bfb..a181776142f5cee741281c154cb46beeb3e665a4 100644 (file)
@@ -1,5 +1,24 @@
 package org.codehaus.plexus.redback.struts2.action;
 
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
 import java.util.Map;
 
 import org.apache.struts2.interceptor.SessionAware;
index 6245782363688a13db8b2a8832d27b5094ab7dca..18f18b94eeea4b7ec1f71b89f38ef58c613cb75e 100644 (file)
@@ -1,4 +1,17 @@
-statusbar.resultsFound={0} r&eacute;sultats trouv&eacute;s, affichage de {1} &agrave; {2} 
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+statusbar.resultsFound={0} r&eacute;sultats trouv&eacute;s, affichage de {1} &agrave; {2}
 statusbar.noResultsFound=Aucun r&eacute;sultat n'a &eacute;t&eacute; trouv&eacute;.
 
 toolbar.tooltip.firstPage=Première Page
diff --git a/redback-integrations/redback-struts2/redback-struts2-integration/src/site/apt/cookies.apt b/redback-integrations/redback-struts2/redback-struts2-integration/src/site/apt/cookies.apt
deleted file mode 100644 (file)
index f76e38e..0000000
+++ /dev/null
@@ -1,67 +0,0 @@
- -----
- Cookie Handling in Redback Web Integration
- -----
- Brett Porter
- -----
- 29 December 2006
- -----
-
-Cookie Handling in Redback Web Integration
-
-  There are 2 types of cookies used in the web integration:
-
-    * signon (session) cookie: this cookie is required and is set for the duration of the session. It's name is
-      <<<rbkSignon>>>.
-
-    * remember me (permanent) cookie: this cookies is set when the remember me checkbox is checked on log in. It's
-      default duration is 1 year, but this is configurable. It's name is <<<rbkRememberMe>>>.
-
-  Each cookie's value is the UUID of the authentication key in use. Loaded from the database, this authentication key
-  establishes the validity of the session, and the user that is logged in.
-
-  Should the combination of cookies and current session get into an inconsistent state (possible multiple logins, or
-  a missing session cookie), then the user is logged out entirely.
-
-* Single Sign On
-
-  By default, Redback does not use single sign on. The cookies are set on the domain of the request, with the path of
-  the current web application context, meaning that other Redback-enabled web applications in the container will not
-  use the same cookies.
-
-  To share cookies across multiple web applications, the path should be configured to a common base, most often <<</>>>.
-  Place the following in your security configuration properties file:
-
-----
-security.signon.path=/
-security.rememberme.path=/
-----
-
-  It is recommended that the same path be used for both cookies for consistency in single sign on across both techniques.
-
-  Care must be taken to ensure that the same authentication key store is being used by both web applications, otherwise
-  a user will be regularly logged out when they switch applications due to the rules in the previous section.
-
-  It may also be necessary to share cookies across multiple host names, whether they be virtual servers or different
-  servers altogether. This can be done by configuring the cookie to set a domain that is common to all the hosts, for
-  example:
-
------
-security.signon.domain=.codehaus.org
-security.rememberme.domain=.codehaus.org
------
-
-  Care must be taken when setting these values. It is recommended that they be set identically for consistency. In
-  addition, it should be noted that any other Redback-enabled applications on the shared domain will also use these
-  cookies which can lead to the following problems if they are not participating in the single sign on:
-
-    [[1]] If they use a different authnetication key store (or user database), then the user will regularly be logged
-          out from other services due to the rules stated earlier.
-
-    [[2]] It may be impossible to log out (or it may behave inconsistently). This is due to logging out from an
-          application configured to use a more specific domain, which will not remove the more general domain and
-          still receive the existing cookies on future requests (until the authentication key expires or is no longer
-          valid in the database).
-
-  <Note:> It is currently only possible to share across hosts on a common domain. It is not possible to set a cookie
-  that targets an alternative domain, so this would require a shared authentication server to be installed (either
-  consulted via web service, or by a redirect to consult it's own client-side cookie from it's known domain).
diff --git a/redback-integrations/redback-struts2/redback-struts2-integration/src/site/graffle/PlexusSecurityAuthentication.graffle b/redback-integrations/redback-struts2/redback-struts2-integration/src/site/graffle/PlexusSecurityAuthentication.graffle
deleted file mode 100644 (file)
index a9b4958..0000000
+++ /dev/null
@@ -1,3923 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0">
-<dict>
-       <key>ActiveLayerIndex</key>
-       <integer>0</integer>
-       <key>AutoAdjust</key>
-       <true/>
-       <key>CanvasColor</key>
-       <dict>
-               <key>w</key>
-               <string>1</string>
-       </dict>
-       <key>CanvasOrigin</key>
-       <string>{0, 0}</string>
-       <key>CanvasScale</key>
-       <real>1</real>
-       <key>ColumnAlign</key>
-       <integer>1</integer>
-       <key>ColumnSpacing</key>
-       <real>36</real>
-       <key>CreationDate</key>
-       <string>2006-12-29 12:14:59 +1100</string>
-       <key>Creator</key>
-       <string>Brett Porter</string>
-       <key>DisplayScale</key>
-       <string>1 cm = 1 cm</string>
-       <key>GraphDocumentVersion</key>
-       <integer>5</integer>
-       <key>GraphicsList</key>
-       <array>
-               <dict>
-                       <key>Class</key>
-                       <string>LineGraphic</string>
-                       <key>Head</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>575</integer>
-                               <key>Position</key>
-                               <real>0.94658184051513672</real>
-                       </dict>
-                       <key>ID</key>
-                       <integer>609</integer>
-                       <key>Points</key>
-                       <array>
-                               <string>{386.958, 660.491}</string>
-                               <string>{387, 783.448}</string>
-                       </array>
-                       <key>Style</key>
-                       <dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>HeadArrow</key>
-                                       <string>FilledArrow</string>
-                                       <key>LineType</key>
-                                       <integer>1</integer>
-                                       <key>TailArrow</key>
-                                       <string>0</string>
-                               </dict>
-                       </dict>
-                       <key>Tail</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>606</integer>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Bounds</key>
-                       <string>{{373.958, 583}, {26, 14}}</string>
-                       <key>Class</key>
-                       <string>ShapedGraphic</string>
-                       <key>FitText</key>
-                       <string>YES</string>
-                       <key>FontInfo</key>
-                       <dict>
-                               <key>Color</key>
-                               <dict>
-                                       <key>w</key>
-                                       <string>0</string>
-                               </dict>
-                               <key>Font</key>
-                               <string>Helvetica</string>
-                               <key>Size</key>
-                               <real>12</real>
-                       </dict>
-                       <key>ID</key>
-                       <integer>608</integer>
-                       <key>Line</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>607</integer>
-                               <key>Position</key>
-                               <real>0.4341321587562561</real>
-                               <key>RotationType</key>
-                               <integer>0</integer>
-                       </dict>
-                       <key>Shape</key>
-                       <string>Rectangle</string>
-                       <key>Style</key>
-                       <dict>
-                               <key>shadow</key>
-                               <dict>
-                                       <key>Draws</key>
-                                       <string>NO</string>
-                               </dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>Draws</key>
-                                       <string>NO</string>
-                               </dict>
-                       </dict>
-                       <key>Text</key>
-                       <dict>
-                               <key>Text</key>
-                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf0 No}</string>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Class</key>
-                       <string>LineGraphic</string>
-                       <key>Head</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>606</integer>
-                       </dict>
-                       <key>ID</key>
-                       <integer>607</integer>
-                       <key>Points</key>
-                       <array>
-                               <string>{386.958, 571.229}</string>
-                               <string>{386.958, 614.467}</string>
-                       </array>
-                       <key>Style</key>
-                       <dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>HeadArrow</key>
-                                       <string>FilledArrow</string>
-                                       <key>LineType</key>
-                                       <integer>1</integer>
-                                       <key>TailArrow</key>
-                                       <string>0</string>
-                               </dict>
-                       </dict>
-                       <key>Tail</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>588</integer>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Bounds</key>
-                       <string>{{341.958, 614.467}, {90, 46.0236}}</string>
-                       <key>Class</key>
-                       <string>ShapedGraphic</string>
-                       <key>ID</key>
-                       <integer>606</integer>
-                       <key>Magnets</key>
-                       <array>
-                               <string>{0, 1}</string>
-                               <string>{0, -1}</string>
-                               <string>{1, 0}</string>
-                               <string>{-1, 0}</string>
-                       </array>
-                       <key>Shape</key>
-                       <string>Rectangle</string>
-                       <key>Text</key>
-                       <dict>
-                               <key>Text</key>
-                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
-
-\f0\fs20 \cf0 Set the Signon cookie and session data}</string>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Class</key>
-                       <string>Group</string>
-                       <key>Graphics</key>
-                       <array>
-                               <dict>
-                                       <key>Bounds</key>
-                                       <string>{{10, 987.999}, {26, 14}}</string>
-                                       <key>Class</key>
-                                       <string>ShapedGraphic</string>
-                                       <key>FitText</key>
-                                       <string>YES</string>
-                                       <key>FontInfo</key>
-                                       <dict>
-                                               <key>Color</key>
-                                               <dict>
-                                                       <key>w</key>
-                                                       <string>0</string>
-                                               </dict>
-                                               <key>Font</key>
-                                               <string>Helvetica</string>
-                                               <key>Size</key>
-                                               <real>12</real>
-                                       </dict>
-                                       <key>ID</key>
-                                       <integer>410</integer>
-                                       <key>Line</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>411</integer>
-                                               <key>Position</key>
-                                               <real>0.12588189542293549</real>
-                                               <key>RotationType</key>
-                                               <integer>0</integer>
-                                       </dict>
-                                       <key>Shape</key>
-                                       <string>Rectangle</string>
-                                       <key>Style</key>
-                                       <dict>
-                                               <key>shadow</key>
-                                               <dict>
-                                                       <key>Draws</key>
-                                                       <string>NO</string>
-                                               </dict>
-                                               <key>stroke</key>
-                                               <dict>
-                                                       <key>Draws</key>
-                                                       <string>NO</string>
-                                               </dict>
-                                       </dict>
-                                       <key>Text</key>
-                                       <dict>
-                                               <key>Text</key>
-                                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf0 No}</string>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Class</key>
-                                       <string>LineGraphic</string>
-                                       <key>Head</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>433</integer>
-                                       </dict>
-                                       <key>ID</key>
-                                       <integer>411</integer>
-                                       <key>OrthogonalBarAutomatic</key>
-                                       <true/>
-                                       <key>OrthogonalBarPosition</key>
-                                       <real>-1</real>
-                                       <key>Points</key>
-                                       <array>
-                                               <string>{36.6875, 975.343}</string>
-                                               <string>{23, 1013}</string>
-                                               <string>{23, 1172}</string>
-                                               <string>{41.096, 1208.44}</string>
-                                       </array>
-                                       <key>Style</key>
-                                       <dict>
-                                               <key>stroke</key>
-                                               <dict>
-                                                       <key>HeadArrow</key>
-                                                       <string>FilledArrow</string>
-                                                       <key>LineType</key>
-                                                       <integer>2</integer>
-                                                       <key>TailArrow</key>
-                                                       <string>0</string>
-                                               </dict>
-                                       </dict>
-                                       <key>Tail</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>424</integer>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Class</key>
-                                       <string>LineGraphic</string>
-                                       <key>Head</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>424</integer>
-                                               <key>Info</key>
-                                               <integer>2</integer>
-                                       </dict>
-                                       <key>ID</key>
-                                       <integer>412</integer>
-                                       <key>Points</key>
-                                       <array>
-                                               <string>{91.1875, 899}</string>
-                                               <string>{91.1875, 937.343}</string>
-                                       </array>
-                                       <key>Style</key>
-                                       <dict>
-                                               <key>stroke</key>
-                                               <dict>
-                                                       <key>HeadArrow</key>
-                                                       <string>FilledArrow</string>
-                                                       <key>LineType</key>
-                                                       <integer>1</integer>
-                                                       <key>TailArrow</key>
-                                                       <string>0</string>
-                                               </dict>
-                                       </dict>
-                                       <key>Tail</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>434</integer>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Bounds</key>
-                                       <string>{{76.1875, 1361.46}, {30, 14}}</string>
-                                       <key>Class</key>
-                                       <string>ShapedGraphic</string>
-                                       <key>FitText</key>
-                                       <string>YES</string>
-                                       <key>FontInfo</key>
-                                       <dict>
-                                               <key>Color</key>
-                                               <dict>
-                                                       <key>w</key>
-                                                       <string>0</string>
-                                               </dict>
-                                               <key>Font</key>
-                                               <string>Helvetica</string>
-                                               <key>Size</key>
-                                               <real>12</real>
-                                       </dict>
-                                       <key>ID</key>
-                                       <integer>413</integer>
-                                       <key>Line</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>414</integer>
-                                               <key>Position</key>
-                                               <real>0.32852789759635925</real>
-                                               <key>RotationType</key>
-                                               <integer>0</integer>
-                                       </dict>
-                                       <key>Shape</key>
-                                       <string>Rectangle</string>
-                                       <key>Style</key>
-                                       <dict>
-                                               <key>shadow</key>
-                                               <dict>
-                                                       <key>Draws</key>
-                                                       <string>NO</string>
-                                               </dict>
-                                               <key>stroke</key>
-                                               <dict>
-                                                       <key>Draws</key>
-                                                       <string>NO</string>
-                                               </dict>
-                                       </dict>
-                                       <key>Text</key>
-                                       <dict>
-                                               <key>Text</key>
-                                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf0 Yes}</string>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Class</key>
-                                       <string>LineGraphic</string>
-                                       <key>Head</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>415</integer>
-                                       </dict>
-                                       <key>ID</key>
-                                       <integer>414</integer>
-                                       <key>Points</key>
-                                       <array>
-                                               <string>{91.1875, 1357.44}</string>
-                                               <string>{91.1875, 1390.98}</string>
-                                       </array>
-                                       <key>Style</key>
-                                       <dict>
-                                               <key>stroke</key>
-                                               <dict>
-                                                       <key>HeadArrow</key>
-                                                       <string>FilledArrow</string>
-                                                       <key>LineType</key>
-                                                       <integer>1</integer>
-                                                       <key>TailArrow</key>
-                                                       <string>0</string>
-                                               </dict>
-                                       </dict>
-                                       <key>Tail</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>431</integer>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Bounds</key>
-                                       <string>{{46.1875, 1390.98}, {90, 36}}</string>
-                                       <key>Class</key>
-                                       <string>ShapedGraphic</string>
-                                       <key>ID</key>
-                                       <integer>415</integer>
-                                       <key>Magnets</key>
-                                       <array>
-                                               <string>{0, 1}</string>
-                                               <string>{0, -1}</string>
-                                               <string>{1, 0}</string>
-                                               <string>{-1, 0}</string>
-                                       </array>
-                                       <key>Shape</key>
-                                       <string>RoundRect</string>
-                                       <key>Text</key>
-                                       <dict>
-                                               <key>Text</key>
-                                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
-
-\f0\fs20 \cf0 User is authenticated}</string>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Bounds</key>
-                                       <string>{{76.1875, 1143.24}, {30, 14}}</string>
-                                       <key>Class</key>
-                                       <string>ShapedGraphic</string>
-                                       <key>FitText</key>
-                                       <string>YES</string>
-                                       <key>FontInfo</key>
-                                       <dict>
-                                               <key>Color</key>
-                                               <dict>
-                                                       <key>w</key>
-                                                       <string>0</string>
-                                               </dict>
-                                               <key>Font</key>
-                                               <string>Helvetica</string>
-                                               <key>Size</key>
-                                               <real>12</real>
-                                       </dict>
-                                       <key>ID</key>
-                                       <integer>416</integer>
-                                       <key>Line</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>417</integer>
-                                               <key>Position</key>
-                                               <real>0.45166781544685364</real>
-                                               <key>RotationType</key>
-                                               <integer>0</integer>
-                                       </dict>
-                                       <key>Shape</key>
-                                       <string>Rectangle</string>
-                                       <key>Style</key>
-                                       <dict>
-                                               <key>shadow</key>
-                                               <dict>
-                                                       <key>Draws</key>
-                                                       <string>NO</string>
-                                               </dict>
-                                               <key>stroke</key>
-                                               <dict>
-                                                       <key>Draws</key>
-                                                       <string>NO</string>
-                                               </dict>
-                                       </dict>
-                                       <key>Text</key>
-                                       <dict>
-                                               <key>Text</key>
-                                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf0 Yes}</string>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Class</key>
-                                       <string>LineGraphic</string>
-                                       <key>Head</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>433</integer>
-                                               <key>Info</key>
-                                               <integer>2</integer>
-                                       </dict>
-                                       <key>ID</key>
-                                       <integer>417</integer>
-                                       <key>Points</key>
-                                       <array>
-                                               <string>{91.1875, 1128.22}</string>
-                                               <string>{91.1875, 1176.98}</string>
-                                       </array>
-                                       <key>Style</key>
-                                       <dict>
-                                               <key>stroke</key>
-                                               <dict>
-                                                       <key>HeadArrow</key>
-                                                       <string>FilledArrow</string>
-                                                       <key>LineType</key>
-                                                       <integer>1</integer>
-                                                       <key>TailArrow</key>
-                                                       <string>0</string>
-                                               </dict>
-                                       </dict>
-                                       <key>Tail</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>423</integer>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Bounds</key>
-                                       <string>{{76.1875, 1026.75}, {30, 14}}</string>
-                                       <key>Class</key>
-                                       <string>ShapedGraphic</string>
-                                       <key>FitText</key>
-                                       <string>YES</string>
-                                       <key>FontInfo</key>
-                                       <dict>
-                                               <key>Color</key>
-                                               <dict>
-                                                       <key>w</key>
-                                                       <string>0</string>
-                                               </dict>
-                                               <key>Font</key>
-                                               <string>Helvetica</string>
-                                               <key>Size</key>
-                                               <real>12</real>
-                                       </dict>
-                                       <key>ID</key>
-                                       <integer>418</integer>
-                                       <key>Line</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>419</integer>
-                                               <key>Position</key>
-                                               <real>0.38695797324180603</real>
-                                               <key>RotationType</key>
-                                               <integer>0</integer>
-                                       </dict>
-                                       <key>Shape</key>
-                                       <string>Rectangle</string>
-                                       <key>Style</key>
-                                       <dict>
-                                               <key>shadow</key>
-                                               <dict>
-                                                       <key>Draws</key>
-                                                       <string>NO</string>
-                                               </dict>
-                                               <key>stroke</key>
-                                               <dict>
-                                                       <key>Draws</key>
-                                                       <string>NO</string>
-                                               </dict>
-                                       </dict>
-                                       <key>Text</key>
-                                       <dict>
-                                               <key>Text</key>
-                                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf0 Yes}</string>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Class</key>
-                                       <string>LineGraphic</string>
-                                       <key>Head</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>423</integer>
-                                       </dict>
-                                       <key>ID</key>
-                                       <integer>419</integer>
-                                       <key>Points</key>
-                                       <array>
-                                               <string>{91.1875, 1013.84}</string>
-                                               <string>{91.1875, 1065.3}</string>
-                                       </array>
-                                       <key>Style</key>
-                                       <dict>
-                                               <key>stroke</key>
-                                               <dict>
-                                                       <key>HeadArrow</key>
-                                                       <string>FilledArrow</string>
-                                                       <key>LineType</key>
-                                                       <integer>1</integer>
-                                                       <key>TailArrow</key>
-                                                       <string>0</string>
-                                               </dict>
-                                       </dict>
-                                       <key>Tail</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>424</integer>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Bounds</key>
-                                       <string>{{162.753, 1089.76}, {26, 14}}</string>
-                                       <key>Class</key>
-                                       <string>ShapedGraphic</string>
-                                       <key>FitText</key>
-                                       <string>YES</string>
-                                       <key>FontInfo</key>
-                                       <dict>
-                                               <key>Color</key>
-                                               <dict>
-                                                       <key>w</key>
-                                                       <string>0</string>
-                                               </dict>
-                                               <key>Font</key>
-                                               <string>Helvetica</string>
-                                               <key>Size</key>
-                                               <real>12</real>
-                                       </dict>
-                                       <key>ID</key>
-                                       <integer>420</integer>
-                                       <key>Line</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>421</integer>
-                                               <key>Position</key>
-                                               <real>0.10054370760917664</real>
-                                               <key>RotationType</key>
-                                               <integer>0</integer>
-                                       </dict>
-                                       <key>Shape</key>
-                                       <string>Rectangle</string>
-                                       <key>Style</key>
-                                       <dict>
-                                               <key>shadow</key>
-                                               <dict>
-                                                       <key>Draws</key>
-                                                       <string>NO</string>
-                                               </dict>
-                                               <key>stroke</key>
-                                               <dict>
-                                                       <key>Draws</key>
-                                                       <string>NO</string>
-                                               </dict>
-                                       </dict>
-                                       <key>Text</key>
-                                       <dict>
-                                               <key>Text</key>
-                                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf0 No}</string>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Class</key>
-                                       <string>LineGraphic</string>
-                                       <key>Head</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>422</integer>
-                                       </dict>
-                                       <key>ID</key>
-                                       <integer>421</integer>
-                                       <key>OrthogonalBarAutomatic</key>
-                                       <false/>
-                                       <key>OrthogonalBarPosition</key>
-                                       <real>41</real>
-                                       <key>Points</key>
-                                       <array>
-                                               <string>{145.688, 1096.76}</string>
-                                               <string>{243.5, 1297.98}</string>
-                                       </array>
-                                       <key>Style</key>
-                                       <dict>
-                                               <key>stroke</key>
-                                               <dict>
-                                                       <key>HeadArrow</key>
-                                                       <string>FilledArrow</string>
-                                                       <key>LineType</key>
-                                                       <integer>2</integer>
-                                                       <key>TailArrow</key>
-                                                       <string>0</string>
-                                               </dict>
-                                       </dict>
-                                       <key>Tail</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>423</integer>
-                                               <key>Info</key>
-                                               <integer>3</integer>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Bounds</key>
-                                       <string>{{198.5, 1297.98}, {90, 56}}</string>
-                                       <key>Class</key>
-                                       <string>ShapedGraphic</string>
-                                       <key>ID</key>
-                                       <integer>422</integer>
-                                       <key>Magnets</key>
-                                       <array>
-                                               <string>{0, 1}</string>
-                                               <string>{0, -1}</string>
-                                               <string>{1, 0}</string>
-                                               <string>{-1, 0}</string>
-                                       </array>
-                                       <key>Shape</key>
-                                       <string>Rectangle</string>
-                                       <key>Text</key>
-                                       <dict>
-                                               <key>Text</key>
-                                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
-
-\f0\fs20 \cf0 Remove both cookies and clear session}</string>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Bounds</key>
-                                       <string>{{36.6875, 1065.3}, {109, 62.9219}}</string>
-                                       <key>Class</key>
-                                       <string>ShapedGraphic</string>
-                                       <key>ID</key>
-                                       <integer>423</integer>
-                                       <key>Magnets</key>
-                                       <array>
-                                               <string>{0, 1}</string>
-                                               <string>{0, -1}</string>
-                                               <string>{1, 0}</string>
-                                               <string>{-1, 0}</string>
-                                       </array>
-                                       <key>Shape</key>
-                                       <string>Diamond</string>
-                                       <key>Text</key>
-                                       <dict>
-                                               <key>Text</key>
-                                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
-
-\f0\fs20 \cf0 Does username match session?}</string>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Bounds</key>
-                                       <string>{{36.6875, 937.343}, {109, 76}}</string>
-                                       <key>Class</key>
-                                       <string>ShapedGraphic</string>
-                                       <key>ID</key>
-                                       <integer>424</integer>
-                                       <key>Magnets</key>
-                                       <array>
-                                               <string>{0, 1}</string>
-                                               <string>{0, -1}</string>
-                                               <string>{1, 0}</string>
-                                               <string>{-1, 0}</string>
-                                       </array>
-                                       <key>Shape</key>
-                                       <string>Diamond</string>
-                                       <key>Text</key>
-                                       <dict>
-                                               <key>Text</key>
-                                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
-
-\f0\fs20 \cf0 Does Remember Me cookie exist?}</string>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Bounds</key>
-                                       <string>{{151.941, 1318.98}, {26, 14}}</string>
-                                       <key>Class</key>
-                                       <string>ShapedGraphic</string>
-                                       <key>FitText</key>
-                                       <string>YES</string>
-                                       <key>FontInfo</key>
-                                       <dict>
-                                               <key>Color</key>
-                                               <dict>
-                                                       <key>w</key>
-                                                       <string>0</string>
-                                               </dict>
-                                               <key>Font</key>
-                                               <string>Helvetica</string>
-                                               <key>Size</key>
-                                               <real>12</real>
-                                       </dict>
-                                       <key>ID</key>
-                                       <integer>425</integer>
-                                       <key>Line</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>426</integer>
-                                               <key>Position</key>
-                                               <real>0.3645683228969574</real>
-                                               <key>RotationType</key>
-                                               <integer>0</integer>
-                                       </dict>
-                                       <key>Shape</key>
-                                       <string>Rectangle</string>
-                                       <key>Style</key>
-                                       <dict>
-                                               <key>shadow</key>
-                                               <dict>
-                                                       <key>Draws</key>
-                                                       <string>NO</string>
-                                               </dict>
-                                               <key>stroke</key>
-                                               <dict>
-                                                       <key>Draws</key>
-                                                       <string>NO</string>
-                                               </dict>
-                                       </dict>
-                                       <key>Text</key>
-                                       <dict>
-                                               <key>Text</key>
-                                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf0 No}</string>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Class</key>
-                                       <string>LineGraphic</string>
-                                       <key>Head</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>422</integer>
-                                       </dict>
-                                       <key>ID</key>
-                                       <integer>426</integer>
-                                       <key>Points</key>
-                                       <array>
-                                               <string>{145.688, 1325.98}</string>
-                                               <string>{198.5, 1325.98}</string>
-                                       </array>
-                                       <key>Style</key>
-                                       <dict>
-                                               <key>stroke</key>
-                                               <dict>
-                                                       <key>HeadArrow</key>
-                                                       <string>FilledArrow</string>
-                                                       <key>LineType</key>
-                                                       <integer>1</integer>
-                                                       <key>TailArrow</key>
-                                                       <string>0</string>
-                                               </dict>
-                                       </dict>
-                                       <key>Tail</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>431</integer>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Bounds</key>
-                                       <string>{{76.1875, 1250.71}, {30, 14}}</string>
-                                       <key>Class</key>
-                                       <string>ShapedGraphic</string>
-                                       <key>FitText</key>
-                                       <string>YES</string>
-                                       <key>FontInfo</key>
-                                       <dict>
-                                               <key>Color</key>
-                                               <dict>
-                                                       <key>w</key>
-                                                       <string>0</string>
-                                               </dict>
-                                               <key>Font</key>
-                                               <string>Helvetica</string>
-                                               <key>Size</key>
-                                               <real>12</real>
-                                       </dict>
-                                       <key>ID</key>
-                                       <integer>427</integer>
-                                       <key>Line</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>428</integer>
-                                               <key>Position</key>
-                                               <real>0.32603755593299866</real>
-                                               <key>RotationType</key>
-                                               <integer>0</integer>
-                                       </dict>
-                                       <key>Shape</key>
-                                       <string>Rectangle</string>
-                                       <key>Style</key>
-                                       <dict>
-                                               <key>shadow</key>
-                                               <dict>
-                                                       <key>Draws</key>
-                                                       <string>NO</string>
-                                               </dict>
-                                               <key>stroke</key>
-                                               <dict>
-                                                       <key>Draws</key>
-                                                       <string>NO</string>
-                                               </dict>
-                                       </dict>
-                                       <key>Text</key>
-                                       <dict>
-                                               <key>Text</key>
-                                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf0 Yes}</string>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Class</key>
-                                       <string>LineGraphic</string>
-                                       <key>Head</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>431</integer>
-                                       </dict>
-                                       <key>ID</key>
-                                       <integer>428</integer>
-                                       <key>Points</key>
-                                       <array>
-                                               <string>{91.1875, 1239.9}</string>
-                                               <string>{91.1875, 1294.52}</string>
-                                       </array>
-                                       <key>Style</key>
-                                       <dict>
-                                               <key>stroke</key>
-                                               <dict>
-                                                       <key>HeadArrow</key>
-                                                       <string>FilledArrow</string>
-                                                       <key>TailArrow</key>
-                                                       <string>0</string>
-                                               </dict>
-                                       </dict>
-                                       <key>Tail</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>433</integer>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Bounds</key>
-                                       <string>{{158.927, 1201.33}, {26, 14}}</string>
-                                       <key>Class</key>
-                                       <string>ShapedGraphic</string>
-                                       <key>FitText</key>
-                                       <string>YES</string>
-                                       <key>FontInfo</key>
-                                       <dict>
-                                               <key>Color</key>
-                                               <dict>
-                                                       <key>w</key>
-                                                       <string>0</string>
-                                               </dict>
-                                               <key>Font</key>
-                                               <string>Helvetica</string>
-                                               <key>Size</key>
-                                               <real>12</real>
-                                       </dict>
-                                       <key>ID</key>
-                                       <integer>429</integer>
-                                       <key>Line</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>430</integer>
-                                               <key>Position</key>
-                                               <real>0.30323025584220886</real>
-                                               <key>RotationType</key>
-                                               <integer>0</integer>
-                                       </dict>
-                                       <key>Shape</key>
-                                       <string>Rectangle</string>
-                                       <key>Style</key>
-                                       <dict>
-                                               <key>shadow</key>
-                                               <dict>
-                                                       <key>Draws</key>
-                                                       <string>NO</string>
-                                               </dict>
-                                               <key>stroke</key>
-                                               <dict>
-                                                       <key>Draws</key>
-                                                       <string>NO</string>
-                                               </dict>
-                                       </dict>
-                                       <key>Text</key>
-                                       <dict>
-                                               <key>Text</key>
-                                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf0 No}</string>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Class</key>
-                                       <string>LineGraphic</string>
-                                       <key>Head</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>421</integer>
-                                               <key>Position</key>
-                                               <real>0.69908648729324341</real>
-                                       </dict>
-                                       <key>ID</key>
-                                       <integer>430</integer>
-                                       <key>OrthogonalBarAutomatic</key>
-                                       <false/>
-                                       <key>OrthogonalBarPosition</key>
-                                       <real>49</real>
-                                       <key>Points</key>
-                                       <array>
-                                               <string>{140.779, 1208.44}</string>
-                                               <string>{243.5, 1208}</string>
-                                       </array>
-                                       <key>Style</key>
-                                       <dict>
-                                               <key>stroke</key>
-                                               <dict>
-                                                       <key>HeadArrow</key>
-                                                       <string>FilledArrow</string>
-                                                       <key>LineType</key>
-                                                       <integer>2</integer>
-                                                       <key>TailArrow</key>
-                                                       <string>0</string>
-                                               </dict>
-                                       </dict>
-                                       <key>Tail</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>433</integer>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Bounds</key>
-                                       <string>{{36.6875, 1294.52}, {109, 62.9219}}</string>
-                                       <key>Class</key>
-                                       <string>ShapedGraphic</string>
-                                       <key>ID</key>
-                                       <integer>431</integer>
-                                       <key>Magnets</key>
-                                       <array>
-                                               <string>{0, 1}</string>
-                                               <string>{0, -1}</string>
-                                               <string>{1, 0}</string>
-                                               <string>{-1, 0}</string>
-                                       </array>
-                                       <key>Shape</key>
-                                       <string>Diamond</string>
-                                       <key>Text</key>
-                                       <dict>
-                                               <key>Text</key>
-                                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
-
-\f0\fs20 \cf0 Does username match session?}</string>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Bounds</key>
-                                       <string>{{198.5, 1390.98}, {90, 36}}</string>
-                                       <key>Class</key>
-                                       <string>ShapedGraphic</string>
-                                       <key>ID</key>
-                                       <integer>432</integer>
-                                       <key>Magnets</key>
-                                       <array>
-                                               <string>{0, 1}</string>
-                                               <string>{0, -1}</string>
-                                               <string>{1, 0}</string>
-                                               <string>{-1, 0}</string>
-                                       </array>
-                                       <key>Shape</key>
-                                       <string>RoundRect</string>
-                                       <key>Text</key>
-                                       <dict>
-                                               <key>Text</key>
-                                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
-
-\f0\fs20 \cf0 User is not authenticated}</string>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Bounds</key>
-                                       <string>{{41.596, 1176.98}, {99.183, 62.9219}}</string>
-                                       <key>Class</key>
-                                       <string>ShapedGraphic</string>
-                                       <key>ID</key>
-                                       <integer>433</integer>
-                                       <key>Magnets</key>
-                                       <array>
-                                               <string>{0, 1}</string>
-                                               <string>{0, -1}</string>
-                                               <string>{1, 0}</string>
-                                               <string>{-1, 0}</string>
-                                       </array>
-                                       <key>Shape</key>
-                                       <string>Diamond</string>
-                                       <key>Text</key>
-                                       <dict>
-                                               <key>Text</key>
-                                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
-
-\f0\fs20 \cf0 Does Signon cookie exist?}</string>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Bounds</key>
-                                       <string>{{30, 863}, {122.375, 36}}</string>
-                                       <key>Class</key>
-                                       <string>ShapedGraphic</string>
-                                       <key>ID</key>
-                                       <integer>434</integer>
-                                       <key>Magnets</key>
-                                       <array>
-                                               <string>{0, 1}</string>
-                                               <string>{0, -1}</string>
-                                               <string>{1, 0}</string>
-                                               <string>{-1, 0}</string>
-                                       </array>
-                                       <key>Shape</key>
-                                       <string>Subprocess</string>
-                                       <key>Text</key>
-                                       <dict>
-                                               <key>Text</key>
-                                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
-
-\f0\fs20 \cf0 Check for Cookie Consistency}</string>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Class</key>
-                                       <string>LineGraphic</string>
-                                       <key>Head</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>432</integer>
-                                               <key>Info</key>
-                                               <integer>2</integer>
-                                       </dict>
-                                       <key>ID</key>
-                                       <integer>435</integer>
-                                       <key>Points</key>
-                                       <array>
-                                               <string>{243.5, 1353.98}</string>
-                                               <string>{243.5, 1390.98}</string>
-                                       </array>
-                                       <key>Style</key>
-                                       <dict>
-                                               <key>stroke</key>
-                                               <dict>
-                                                       <key>HeadArrow</key>
-                                                       <string>FilledArrow</string>
-                                                       <key>LineType</key>
-                                                       <integer>1</integer>
-                                                       <key>TailArrow</key>
-                                                       <string>0</string>
-                                               </dict>
-                                       </dict>
-                                       <key>Tail</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>422</integer>
-                                               <key>Info</key>
-                                               <integer>1</integer>
-                                       </dict>
-                               </dict>
-                       </array>
-                       <key>ID</key>
-                       <integer>409</integer>
-               </dict>
-               <dict>
-                       <key>Bounds</key>
-                       <string>{{469.307, 431.623}, {26, 14}}</string>
-                       <key>Class</key>
-                       <string>ShapedGraphic</string>
-                       <key>FitText</key>
-                       <string>YES</string>
-                       <key>FontInfo</key>
-                       <dict>
-                               <key>Color</key>
-                               <dict>
-                                       <key>w</key>
-                                       <string>0</string>
-                               </dict>
-                               <key>Font</key>
-                               <string>Helvetica</string>
-                               <key>Size</key>
-                               <real>12</real>
-                       </dict>
-                       <key>ID</key>
-                       <integer>556</integer>
-                       <key>Line</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>557</integer>
-                               <key>Position</key>
-                               <real>0.49461385607719421</real>
-                               <key>RotationType</key>
-                               <integer>0</integer>
-                       </dict>
-                       <key>Shape</key>
-                       <string>Rectangle</string>
-                       <key>Style</key>
-                       <dict>
-                               <key>shadow</key>
-                               <dict>
-                                       <key>Draws</key>
-                                       <string>NO</string>
-                               </dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>Draws</key>
-                                       <string>NO</string>
-                               </dict>
-                       </dict>
-                       <key>Text</key>
-                       <dict>
-                               <key>Text</key>
-                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf0 No}</string>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Class</key>
-                       <string>LineGraphic</string>
-                       <key>Head</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>575</integer>
-                               <key>Position</key>
-                               <real>0.32441818714141846</real>
-                       </dict>
-                       <key>ID</key>
-                       <integer>557</integer>
-                       <key>Points</key>
-                       <array>
-                               <string>{444.928, 438.255}</string>
-                               <string>{520.5, 439}</string>
-                       </array>
-                       <key>Style</key>
-                       <dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>HeadArrow</key>
-                                       <string>FilledArrow</string>
-                                       <key>LineType</key>
-                                       <integer>1</integer>
-                                       <key>TailArrow</key>
-                                       <string>0</string>
-                               </dict>
-                       </dict>
-                       <key>Tail</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>594</integer>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Bounds</key>
-                       <string>{{371.958, 480.534}, {30, 14}}</string>
-                       <key>Class</key>
-                       <string>ShapedGraphic</string>
-                       <key>FitText</key>
-                       <string>YES</string>
-                       <key>FontInfo</key>
-                       <dict>
-                               <key>Color</key>
-                               <dict>
-                                       <key>w</key>
-                                       <string>0</string>
-                               </dict>
-                               <key>Font</key>
-                               <string>Helvetica</string>
-                               <key>Size</key>
-                               <real>12</real>
-                       </dict>
-                       <key>ID</key>
-                       <integer>558</integer>
-                       <key>Line</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>559</integer>
-                               <key>Position</key>
-                               <real>0.3985673189163208</real>
-                               <key>RotationType</key>
-                               <integer>0</integer>
-                       </dict>
-                       <key>Shape</key>
-                       <string>Rectangle</string>
-                       <key>Style</key>
-                       <dict>
-                               <key>shadow</key>
-                               <dict>
-                                       <key>Draws</key>
-                                       <string>NO</string>
-                               </dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>Draws</key>
-                                       <string>NO</string>
-                               </dict>
-                       </dict>
-                       <key>Text</key>
-                       <dict>
-                               <key>Text</key>
-                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf0 Yes}</string>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Class</key>
-                       <string>LineGraphic</string>
-                       <key>Head</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>588</integer>
-                       </dict>
-                       <key>ID</key>
-                       <integer>559</integer>
-                       <key>Points</key>
-                       <array>
-                               <string>{386.958, 471.5}</string>
-                               <string>{386.958, 511.729}</string>
-                       </array>
-                       <key>Style</key>
-                       <dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>HeadArrow</key>
-                                       <string>FilledArrow</string>
-                                       <key>LineType</key>
-                                       <integer>1</integer>
-                                       <key>TailArrow</key>
-                                       <string>0</string>
-                               </dict>
-                       </dict>
-                       <key>Tail</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>594</integer>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Bounds</key>
-                       <string>{{108.5, 431.25}, {26, 14}}</string>
-                       <key>Class</key>
-                       <string>ShapedGraphic</string>
-                       <key>FitText</key>
-                       <string>YES</string>
-                       <key>FontInfo</key>
-                       <dict>
-                               <key>Color</key>
-                               <dict>
-                                       <key>w</key>
-                                       <string>0</string>
-                               </dict>
-                               <key>Font</key>
-                               <string>Helvetica</string>
-                               <key>Size</key>
-                               <real>12</real>
-                       </dict>
-                       <key>ID</key>
-                       <integer>560</integer>
-                       <key>Line</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>561</integer>
-                               <key>Position</key>
-                               <real>0.046677686274051666</real>
-                               <key>RotationType</key>
-                               <integer>0</integer>
-                       </dict>
-                       <key>Shape</key>
-                       <string>Rectangle</string>
-                       <key>Style</key>
-                       <dict>
-                               <key>shadow</key>
-                               <dict>
-                                       <key>Draws</key>
-                                       <string>NO</string>
-                               </dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>Draws</key>
-                                       <string>NO</string>
-                               </dict>
-                       </dict>
-                       <key>Text</key>
-                       <dict>
-                               <key>Text</key>
-                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf0 No}</string>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Class</key>
-                       <string>LineGraphic</string>
-                       <key>Head</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>563</integer>
-                       </dict>
-                       <key>ID</key>
-                       <integer>561</integer>
-                       <key>OrthogonalBarAutomatic</key>
-                       <true/>
-                       <key>OrthogonalBarPosition</key>
-                       <real>-1</real>
-                       <key>Points</key>
-                       <array>
-                               <string>{138.5, 438.25}</string>
-                               <string>{101.5, 765.448}</string>
-                       </array>
-                       <key>Style</key>
-                       <dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>HeadArrow</key>
-                                       <string>FilledArrow</string>
-                                       <key>HopLines</key>
-                                       <true/>
-                                       <key>HopType</key>
-                                       <integer>1</integer>
-                                       <key>LineType</key>
-                                       <integer>2</integer>
-                                       <key>TailArrow</key>
-                                       <string>0</string>
-                               </dict>
-                       </dict>
-                       <key>Tail</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>595</integer>
-                               <key>Info</key>
-                               <integer>4</integer>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Class</key>
-                       <string>LineGraphic</string>
-                       <key>Head</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>596</integer>
-                       </dict>
-                       <key>ID</key>
-                       <integer>562</integer>
-                       <key>Points</key>
-                       <array>
-                               <string>{147, 783.448}</string>
-                               <string>{236.964, 783.448}</string>
-                       </array>
-                       <key>Style</key>
-                       <dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>HeadArrow</key>
-                                       <string>FilledArrow</string>
-                                       <key>LineType</key>
-                                       <integer>1</integer>
-                                       <key>TailArrow</key>
-                                       <string>0</string>
-                               </dict>
-                       </dict>
-                       <key>Tail</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>563</integer>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Bounds</key>
-                       <string>{{56.5, 765.448}, {90, 36}}</string>
-                       <key>Class</key>
-                       <string>ShapedGraphic</string>
-                       <key>ID</key>
-                       <integer>563</integer>
-                       <key>Magnets</key>
-                       <array>
-                               <string>{0, 1}</string>
-                               <string>{0, -1}</string>
-                               <string>{1, 0}</string>
-                               <string>{-1, 0}</string>
-                       </array>
-                       <key>Shape</key>
-                       <string>Rectangle</string>
-                       <key>Text</key>
-                       <dict>
-                               <key>Text</key>
-                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
-
-\f0\fs20 \cf0 Remove Remember Me Cookie}</string>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Bounds</key>
-                       <string>{{180.97, 480.725}, {30, 14}}</string>
-                       <key>Class</key>
-                       <string>ShapedGraphic</string>
-                       <key>FitText</key>
-                       <string>YES</string>
-                       <key>FontInfo</key>
-                       <dict>
-                               <key>Color</key>
-                               <dict>
-                                       <key>w</key>
-                                       <string>0</string>
-                               </dict>
-                               <key>Font</key>
-                               <string>Helvetica</string>
-                               <key>Size</key>
-                               <real>12</real>
-                       </dict>
-                       <key>ID</key>
-                       <integer>564</integer>
-                       <key>Line</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>565</integer>
-                               <key>Position</key>
-                               <real>0.38895115256309509</real>
-                               <key>RotationType</key>
-                               <integer>0</integer>
-                       </dict>
-                       <key>Shape</key>
-                       <string>Rectangle</string>
-                       <key>Style</key>
-                       <dict>
-                               <key>shadow</key>
-                               <dict>
-                                       <key>Draws</key>
-                                       <string>NO</string>
-                               </dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>Draws</key>
-                                       <string>NO</string>
-                               </dict>
-                       </dict>
-                       <key>Text</key>
-                       <dict>
-                               <key>Text</key>
-                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf0 Yes}</string>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Class</key>
-                       <string>LineGraphic</string>
-                       <key>Head</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>592</integer>
-                               <key>Info</key>
-                               <integer>2</integer>
-                       </dict>
-                       <key>ID</key>
-                       <integer>565</integer>
-                       <key>Points</key>
-                       <array>
-                               <string>{195.97, 471.5}</string>
-                               <string>{195.97, 513.214}</string>
-                       </array>
-                       <key>Style</key>
-                       <dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>HeadArrow</key>
-                                       <string>FilledArrow</string>
-                                       <key>LineType</key>
-                                       <integer>1</integer>
-                                       <key>TailArrow</key>
-                                       <string>0</string>
-                               </dict>
-                       </dict>
-                       <key>Tail</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>595</integer>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Class</key>
-                       <string>LineGraphic</string>
-                       <key>Head</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>595</integer>
-                       </dict>
-                       <key>ID</key>
-                       <integer>566</integer>
-                       <key>Points</key>
-                       <array>
-                               <string>{195.97, 378.721}</string>
-                               <string>{195.97, 405}</string>
-                       </array>
-                       <key>Style</key>
-                       <dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>HeadArrow</key>
-                                       <string>FilledArrow</string>
-                                       <key>LineType</key>
-                                       <integer>1</integer>
-                                       <key>TailArrow</key>
-                                       <string>0</string>
-                               </dict>
-                       </dict>
-                       <key>Tail</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>584</integer>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Class</key>
-                       <string>LineGraphic</string>
-                       <key>Head</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>594</integer>
-                       </dict>
-                       <key>ID</key>
-                       <integer>567</integer>
-                       <key>Points</key>
-                       <array>
-                               <string>{386.958, 378.721}</string>
-                               <string>{386.958, 405}</string>
-                       </array>
-                       <key>Style</key>
-                       <dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>HeadArrow</key>
-                                       <string>FilledArrow</string>
-                                       <key>LineType</key>
-                                       <integer>1</integer>
-                                       <key>TailArrow</key>
-                                       <string>0</string>
-                               </dict>
-                       </dict>
-                       <key>Tail</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>582</integer>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Bounds</key>
-                       <string>{{76.4138, 128}, {30, 14}}</string>
-                       <key>Class</key>
-                       <string>ShapedGraphic</string>
-                       <key>FitText</key>
-                       <string>YES</string>
-                       <key>FontInfo</key>
-                       <dict>
-                               <key>Color</key>
-                               <dict>
-                                       <key>w</key>
-                                       <string>0</string>
-                               </dict>
-                               <key>Font</key>
-                               <string>Helvetica</string>
-                               <key>Size</key>
-                               <real>12</real>
-                       </dict>
-                       <key>ID</key>
-                       <integer>568</integer>
-                       <key>Line</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>573</integer>
-                               <key>Position</key>
-                               <real>0.03735530748963356</real>
-                               <key>RotationType</key>
-                               <integer>0</integer>
-                       </dict>
-                       <key>Shape</key>
-                       <string>Rectangle</string>
-                       <key>Style</key>
-                       <dict>
-                               <key>shadow</key>
-                               <dict>
-                                       <key>Draws</key>
-                                       <string>NO</string>
-                               </dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>Draws</key>
-                                       <string>NO</string>
-                               </dict>
-                       </dict>
-                       <key>Text</key>
-                       <dict>
-                               <key>Text</key>
-                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf0 Yes}</string>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Bounds</key>
-                       <string>{{293.234, 550.372}, {30, 14}}</string>
-                       <key>Class</key>
-                       <string>ShapedGraphic</string>
-                       <key>FitText</key>
-                       <string>YES</string>
-                       <key>FontInfo</key>
-                       <dict>
-                               <key>Color</key>
-                               <dict>
-                                       <key>w</key>
-                                       <string>0</string>
-                               </dict>
-                               <key>Font</key>
-                               <string>Helvetica</string>
-                               <key>Size</key>
-                               <real>12</real>
-                       </dict>
-                       <key>ID</key>
-                       <integer>569</integer>
-                       <key>Line</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>570</integer>
-                               <key>Position</key>
-                               <real>0.43641519546508789</real>
-                               <key>RotationType</key>
-                               <integer>0</integer>
-                       </dict>
-                       <key>Shape</key>
-                       <string>Rectangle</string>
-                       <key>Style</key>
-                       <dict>
-                               <key>shadow</key>
-                               <dict>
-                                       <key>Draws</key>
-                                       <string>NO</string>
-                               </dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>Draws</key>
-                                       <string>NO</string>
-                               </dict>
-                       </dict>
-                       <key>Text</key>
-                       <dict>
-                               <key>Text</key>
-                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf0 Yes}</string>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Class</key>
-                       <string>LineGraphic</string>
-                       <key>Head</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>591</integer>
-                               <key>Info</key>
-                               <integer>2</integer>
-                       </dict>
-                       <key>ID</key>
-                       <integer>570</integer>
-                       <key>Points</key>
-                       <array>
-                               <string>{321.22, 541.615}</string>
-                               <string>{291.464, 577.72}</string>
-                       </array>
-                       <key>Style</key>
-                       <dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>HeadArrow</key>
-                                       <string>FilledArrow</string>
-                                       <key>LineType</key>
-                                       <integer>1</integer>
-                                       <key>TailArrow</key>
-                                       <string>0</string>
-                               </dict>
-                       </dict>
-                       <key>Tail</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>588</integer>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Bounds</key>
-                       <string>{{260.343, 551.956}, {30, 14}}</string>
-                       <key>Class</key>
-                       <string>ShapedGraphic</string>
-                       <key>FitText</key>
-                       <string>YES</string>
-                       <key>FontInfo</key>
-                       <dict>
-                               <key>Color</key>
-                               <dict>
-                                       <key>w</key>
-                                       <string>0</string>
-                               </dict>
-                               <key>Font</key>
-                               <string>Helvetica</string>
-                               <key>Size</key>
-                               <real>12</real>
-                       </dict>
-                       <key>ID</key>
-                       <integer>571</integer>
-                       <key>Line</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>572</integer>
-                               <key>Position</key>
-                               <real>0.46397081017494202</real>
-                               <key>RotationType</key>
-                               <integer>0</integer>
-                       </dict>
-                       <key>Shape</key>
-                       <string>Rectangle</string>
-                       <key>Style</key>
-                       <dict>
-                               <key>shadow</key>
-                               <dict>
-                                       <key>Draws</key>
-                                       <string>NO</string>
-                               </dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>Draws</key>
-                                       <string>NO</string>
-                               </dict>
-                       </dict>
-                       <key>Text</key>
-                       <dict>
-                               <key>Text</key>
-                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf0 Yes}</string>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Class</key>
-                       <string>LineGraphic</string>
-                       <key>Head</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>591</integer>
-                       </dict>
-                       <key>ID</key>
-                       <integer>572</integer>
-                       <key>Points</key>
-                       <array>
-                               <string>{261.39, 542.714}</string>
-                               <string>{291.464, 577.72}</string>
-                       </array>
-                       <key>Style</key>
-                       <dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>HeadArrow</key>
-                                       <string>FilledArrow</string>
-                                       <key>LineType</key>
-                                       <integer>1</integer>
-                                       <key>TailArrow</key>
-                                       <string>0</string>
-                               </dict>
-                       </dict>
-                       <key>Tail</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>592</integer>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Class</key>
-                       <string>LineGraphic</string>
-                       <key>Head</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>578</integer>
-                       </dict>
-                       <key>ID</key>
-                       <integer>573</integer>
-                       <key>OrthogonalBarAutomatic</key>
-                       <true/>
-                       <key>OrthogonalBarPosition</key>
-                       <real>-1</real>
-                       <key>Points</key>
-                       <array>
-                               <string>{118.5, 135}</string>
-                               <string>{57.5, 254}</string>
-                               <string>{57.5, 357}</string>
-                               <string>{57.5, 459}</string>
-                               <string>{57.5, 562}</string>
-                               <string>{57.5, 660}</string>
-                               <string>{147.095, 709.5}</string>
-                       </array>
-                       <key>Style</key>
-                       <dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>HeadArrow</key>
-                                       <string>FilledArrow</string>
-                                       <key>LineType</key>
-                                       <integer>2</integer>
-                                       <key>TailArrow</key>
-                                       <string>0</string>
-                               </dict>
-                       </dict>
-                       <key>Tail</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>604</integer>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Bounds</key>
-                       <string>{{473.367, 255.045}, {26, 14}}</string>
-                       <key>Class</key>
-                       <string>ShapedGraphic</string>
-                       <key>FitText</key>
-                       <string>YES</string>
-                       <key>FontInfo</key>
-                       <dict>
-                               <key>Color</key>
-                               <dict>
-                                       <key>w</key>
-                                       <string>0</string>
-                               </dict>
-                               <key>Font</key>
-                               <string>Helvetica</string>
-                               <key>Size</key>
-                               <real>12</real>
-                       </dict>
-                       <key>ID</key>
-                       <integer>574</integer>
-                       <key>Line</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>575</integer>
-                               <key>Position</key>
-                               <real>0.049636110663414001</real>
-                               <key>RotationType</key>
-                               <integer>0</integer>
-                       </dict>
-                       <key>Shape</key>
-                       <string>Rectangle</string>
-                       <key>Style</key>
-                       <dict>
-                               <key>shadow</key>
-                               <dict>
-                                       <key>Draws</key>
-                                       <string>NO</string>
-                               </dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>Draws</key>
-                                       <string>NO</string>
-                               </dict>
-                       </dict>
-                       <key>Text</key>
-                       <dict>
-                               <key>Text</key>
-                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf0 No}</string>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Class</key>
-                       <string>LineGraphic</string>
-                       <key>Head</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>596</integer>
-                               <key>Info</key>
-                               <integer>3</integer>
-                       </dict>
-                       <key>ID</key>
-                       <integer>575</integer>
-                       <key>OrthogonalBarAutomatic</key>
-                       <true/>
-                       <key>OrthogonalBarPosition</key>
-                       <real>-1</real>
-                       <key>Points</key>
-                       <array>
-                               <string>{448.236, 262.045}</string>
-                               <string>{520.5, 453}</string>
-                               <string>{520.5, 556}</string>
-                               <string>{520.5, 654}</string>
-                               <string>{520.5, 753}</string>
-                               <string>{345.964, 783.448}</string>
-                       </array>
-                       <key>Style</key>
-                       <dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>HeadArrow</key>
-                                       <string>FilledArrow</string>
-                                       <key>LineType</key>
-                                       <integer>2</integer>
-                                       <key>TailArrow</key>
-                                       <string>0</string>
-                               </dict>
-                       </dict>
-                       <key>Tail</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>599</integer>
-                               <key>Info</key>
-                               <integer>3</integer>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Class</key>
-                       <string>LineGraphic</string>
-                       <key>Head</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>578</integer>
-                       </dict>
-                       <key>ID</key>
-                       <integer>576</integer>
-                       <key>Points</key>
-                       <array>
-                               <string>{195.97, 660.491}</string>
-                               <string>{195.97, 691.5}</string>
-                       </array>
-                       <key>Style</key>
-                       <dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>HeadArrow</key>
-                                       <string>FilledArrow</string>
-                                       <key>LineType</key>
-                                       <integer>1</integer>
-                                       <key>TailArrow</key>
-                                       <string>0</string>
-                               </dict>
-                       </dict>
-                       <key>Tail</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>593</integer>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Class</key>
-                       <string>LineGraphic</string>
-                       <key>Head</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>596</integer>
-                       </dict>
-                       <key>ID</key>
-                       <integer>577</integer>
-                       <key>OrthogonalBarAutomatic</key>
-                       <true/>
-                       <key>OrthogonalBarPosition</key>
-                       <real>-1</real>
-                       <key>Points</key>
-                       <array>
-                               <string>{245.345, 709.5}</string>
-                               <string>{291.464, 765.448}</string>
-                       </array>
-                       <key>Style</key>
-                       <dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>HeadArrow</key>
-                                       <string>FilledArrow</string>
-                                       <key>LineType</key>
-                                       <integer>2</integer>
-                                       <key>TailArrow</key>
-                                       <string>0</string>
-                               </dict>
-                       </dict>
-                       <key>Tail</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>578</integer>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Bounds</key>
-                       <string>{{147.095, 691.5}, {97.75, 36}}</string>
-                       <key>Class</key>
-                       <string>ShapedGraphic</string>
-                       <key>ID</key>
-                       <integer>578</integer>
-                       <key>Magnets</key>
-                       <array>
-                               <string>{0, 1}</string>
-                               <string>{0, -1}</string>
-                               <string>{1, 0}</string>
-                               <string>{-1, 0}</string>
-                       </array>
-                       <key>Shape</key>
-                       <string>Subprocess</string>
-                       <key>Text</key>
-                       <dict>
-                               <key>Text</key>
-                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
-
-\f0\fs20 \cf0 Check for Cookie Consistency}</string>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Bounds</key>
-                       <string>{{180.911, 305.979}, {30, 14}}</string>
-                       <key>Class</key>
-                       <string>ShapedGraphic</string>
-                       <key>FitText</key>
-                       <string>YES</string>
-                       <key>FontInfo</key>
-                       <dict>
-                               <key>Color</key>
-                               <dict>
-                                       <key>w</key>
-                                       <string>0</string>
-                               </dict>
-                               <key>Font</key>
-                               <string>Helvetica</string>
-                               <key>Size</key>
-                               <real>12</real>
-                       </dict>
-                       <key>ID</key>
-                       <integer>579</integer>
-                       <key>Line</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>583</integer>
-                               <key>Position</key>
-                               <real>0.37075057625770569</real>
-                               <key>RotationType</key>
-                               <integer>0</integer>
-                       </dict>
-                       <key>Shape</key>
-                       <string>Rectangle</string>
-                       <key>Style</key>
-                       <dict>
-                               <key>shadow</key>
-                               <dict>
-                                       <key>Draws</key>
-                                       <string>NO</string>
-                               </dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>Draws</key>
-                                       <string>NO</string>
-                               </dict>
-                       </dict>
-                       <key>Text</key>
-                       <dict>
-                               <key>Text</key>
-                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf0 Yes}</string>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Bounds</key>
-                       <string>{{371.958, 307.383}, {30, 14}}</string>
-                       <key>Class</key>
-                       <string>ShapedGraphic</string>
-                       <key>FitText</key>
-                       <string>YES</string>
-                       <key>FontInfo</key>
-                       <dict>
-                               <key>Color</key>
-                               <dict>
-                                       <key>w</key>
-                                       <string>0</string>
-                               </dict>
-                               <key>Font</key>
-                               <string>Helvetica</string>
-                               <key>Size</key>
-                               <real>12</real>
-                       </dict>
-                       <key>ID</key>
-                       <integer>580</integer>
-                       <key>Line</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>581</integer>
-                               <key>Position</key>
-                               <real>0.40734377503395081</real>
-                               <key>RotationType</key>
-                               <integer>0</integer>
-                       </dict>
-                       <key>Shape</key>
-                       <string>Rectangle</string>
-                       <key>Style</key>
-                       <dict>
-                               <key>shadow</key>
-                               <dict>
-                                       <key>Draws</key>
-                                       <string>NO</string>
-                               </dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>Draws</key>
-                                       <string>NO</string>
-                               </dict>
-                       </dict>
-                       <key>Text</key>
-                       <dict>
-                               <key>Text</key>
-                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf0 Yes}</string>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Class</key>
-                       <string>LineGraphic</string>
-                       <key>Head</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>582</integer>
-                       </dict>
-                       <key>ID</key>
-                       <integer>581</integer>
-                       <key>Points</key>
-                       <array>
-                               <string>{386.958, 295.25}</string>
-                               <string>{386.958, 342.221}</string>
-                       </array>
-                       <key>Style</key>
-                       <dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>HeadArrow</key>
-                                       <string>FilledArrow</string>
-                                       <key>LineType</key>
-                                       <integer>1</integer>
-                                       <key>TailArrow</key>
-                                       <string>0</string>
-                               </dict>
-                       </dict>
-                       <key>Tail</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>599</integer>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Bounds</key>
-                       <string>{{329.488, 342.221}, {114.94, 36}}</string>
-                       <key>Class</key>
-                       <string>ShapedGraphic</string>
-                       <key>ID</key>
-                       <integer>582</integer>
-                       <key>Magnets</key>
-                       <array>
-                               <string>{0, 1}</string>
-                               <string>{0, -1}</string>
-                               <string>{1, 0}</string>
-                               <string>{-1, 0}</string>
-                       </array>
-                       <key>Shape</key>
-                       <string>Subprocess</string>
-                       <key>Text</key>
-                       <dict>
-                               <key>Text</key>
-                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
-
-\f0\fs20 \cf0 Check Authentication}</string>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Class</key>
-                       <string>LineGraphic</string>
-                       <key>Head</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>584</integer>
-                       </dict>
-                       <key>ID</key>
-                       <integer>583</integer>
-                       <key>Points</key>
-                       <array>
-                               <string>{195.876, 295.75}</string>
-                               <string>{195.97, 342.221}</string>
-                       </array>
-                       <key>Style</key>
-                       <dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>HeadArrow</key>
-                                       <string>FilledArrow</string>
-                                       <key>LineType</key>
-                                       <integer>1</integer>
-                                       <key>TailArrow</key>
-                                       <string>0</string>
-                               </dict>
-                       </dict>
-                       <key>Tail</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>602</integer>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Bounds</key>
-                       <string>{{138.5, 342.221}, {114.94, 36}}</string>
-                       <key>Class</key>
-                       <string>ShapedGraphic</string>
-                       <key>ID</key>
-                       <integer>584</integer>
-                       <key>Magnets</key>
-                       <array>
-                               <string>{0, 1}</string>
-                               <string>{0, -1}</string>
-                               <string>{1, 0}</string>
-                               <string>{-1, 0}</string>
-                       </array>
-                       <key>Shape</key>
-                       <string>Subprocess</string>
-                       <key>Text</key>
-                       <dict>
-                               <key>Text</key>
-                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
-
-\f0\fs20 \cf0 Check Authentication}</string>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Bounds</key>
-                       <string>{{182.97, 581.987}, {26, 14}}</string>
-                       <key>Class</key>
-                       <string>ShapedGraphic</string>
-                       <key>FitText</key>
-                       <string>YES</string>
-                       <key>FontInfo</key>
-                       <dict>
-                               <key>Color</key>
-                               <dict>
-                                       <key>w</key>
-                                       <string>0</string>
-                               </dict>
-                               <key>Font</key>
-                               <string>Helvetica</string>
-                               <key>Size</key>
-                               <real>12</real>
-                       </dict>
-                       <key>ID</key>
-                       <integer>586</integer>
-                       <key>Line</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>590</integer>
-                               <key>Position</key>
-                               <real>0.38974812626838684</real>
-                               <key>RotationType</key>
-                               <integer>0</integer>
-                       </dict>
-                       <key>Shape</key>
-                       <string>Rectangle</string>
-                       <key>Style</key>
-                       <dict>
-                               <key>shadow</key>
-                               <dict>
-                                       <key>Draws</key>
-                                       <string>NO</string>
-                               </dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>Draws</key>
-                                       <string>NO</string>
-                               </dict>
-                       </dict>
-                       <key>Text</key>
-                       <dict>
-                               <key>Text</key>
-                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf0 No}</string>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Bounds</key>
-                       <string>{{321.538, 511.729}, {130.84, 59}}</string>
-                       <key>Class</key>
-                       <string>ShapedGraphic</string>
-                       <key>ID</key>
-                       <integer>588</integer>
-                       <key>Magnets</key>
-                       <array>
-                               <string>{0, 1}</string>
-                               <string>{0, -1}</string>
-                               <string>{1, 0}</string>
-                               <string>{-1, 0}</string>
-                       </array>
-                       <key>Shape</key>
-                       <string>Diamond</string>
-                       <key>Text</key>
-                       <dict>
-                               <key>Text</key>
-                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
-
-\f0\fs20 \cf0 Is password change required?}</string>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Class</key>
-                       <string>LineGraphic</string>
-                       <key>Head</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>593</integer>
-                               <key>Info</key>
-                               <integer>2</integer>
-                       </dict>
-                       <key>ID</key>
-                       <integer>590</integer>
-                       <key>Points</key>
-                       <array>
-                               <string>{195.97, 572.714}</string>
-                               <string>{195.97, 614.467}</string>
-                       </array>
-                       <key>Style</key>
-                       <dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>HeadArrow</key>
-                                       <string>FilledArrow</string>
-                                       <key>LineType</key>
-                                       <integer>1</integer>
-                                       <key>TailArrow</key>
-                                       <string>0</string>
-                               </dict>
-                       </dict>
-                       <key>Tail</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>592</integer>
-                               <key>Info</key>
-                               <integer>1</integer>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Bounds</key>
-                       <string>{{253.493, 577.72}, {75.9412, 66.5}}</string>
-                       <key>Class</key>
-                       <string>ShapedGraphic</string>
-                       <key>ID</key>
-                       <integer>591</integer>
-                       <key>Magnets</key>
-                       <array>
-                               <string>{0, 1}</string>
-                               <string>{0, -1}</string>
-                               <string>{1, 0}</string>
-                               <string>{-1, 0}</string>
-                       </array>
-                       <key>Shape</key>
-                       <string>RoundRect</string>
-                       <key>Text</key>
-                       <dict>
-                               <key>Text</key>
-                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
-
-\f0\fs20 \cf0 Send to password change action}</string>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Bounds</key>
-                       <string>{{130.55, 513.214}, {130.84, 59}}</string>
-                       <key>Class</key>
-                       <string>ShapedGraphic</string>
-                       <key>ID</key>
-                       <integer>592</integer>
-                       <key>Magnets</key>
-                       <array>
-                               <string>{0, 1}</string>
-                               <string>{0, -1}</string>
-                               <string>{1, 0}</string>
-                               <string>{-1, 0}</string>
-                       </array>
-                       <key>Shape</key>
-                       <string>Diamond</string>
-                       <key>Text</key>
-                       <dict>
-                               <key>Text</key>
-                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
-
-\f0\fs20 \cf0 Is password change required?}</string>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Bounds</key>
-                       <string>{{150.97, 614.467}, {90, 46.0236}}</string>
-                       <key>Class</key>
-                       <string>ShapedGraphic</string>
-                       <key>ID</key>
-                       <integer>593</integer>
-                       <key>Magnets</key>
-                       <array>
-                               <string>{0, 1}</string>
-                               <string>{0, -1}</string>
-                               <string>{1, 0}</string>
-                               <string>{-1, 0}</string>
-                       </array>
-                       <key>Shape</key>
-                       <string>Rectangle</string>
-                       <key>Text</key>
-                       <dict>
-                               <key>Text</key>
-                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
-
-\f0\fs20 \cf0 Set the Signon cookie and session data}</string>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Bounds</key>
-                       <string>{{329.488, 405}, {114.94, 66.5}}</string>
-                       <key>Class</key>
-                       <string>ShapedGraphic</string>
-                       <key>ID</key>
-                       <integer>594</integer>
-                       <key>Magnets</key>
-                       <array>
-                               <string>{0, 1}</string>
-                               <string>{0, -1}</string>
-                               <string>{1, 0}</string>
-                               <string>{-1, 0}</string>
-                       </array>
-                       <key>Shape</key>
-                       <string>Diamond</string>
-                       <key>Text</key>
-                       <dict>
-                               <key>Text</key>
-                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
-
-\f0\fs20 \cf0 Is successfully authenticated?}</string>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Bounds</key>
-                       <string>{{138.5, 405}, {114.94, 66.5}}</string>
-                       <key>Class</key>
-                       <string>ShapedGraphic</string>
-                       <key>ID</key>
-                       <integer>595</integer>
-                       <key>Magnets</key>
-                       <array>
-                               <string>{0, 1}</string>
-                               <string>{0, -1}</string>
-                               <string>{1, 0}</string>
-                               <string>{-1, 0}</string>
-                       </array>
-                       <key>Shape</key>
-                       <string>Diamond</string>
-                       <key>Text</key>
-                       <dict>
-                               <key>Text</key>
-                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
-
-\f0\fs20 \cf0 Is successfully authenticated?}</string>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Bounds</key>
-                       <string>{{236.964, 765.448}, {109, 36}}</string>
-                       <key>Class</key>
-                       <string>ShapedGraphic</string>
-                       <key>ID</key>
-                       <integer>596</integer>
-                       <key>Magnets</key>
-                       <array>
-                               <string>{0, 1}</string>
-                               <string>{0, -1}</string>
-                               <string>{1, 0}</string>
-                               <string>{-1, 0}</string>
-                       </array>
-                       <key>Shape</key>
-                       <string>RoundRect</string>
-                       <key>Text</key>
-                       <dict>
-                               <key>Text</key>
-                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
-
-\f0\fs20 \cf0 continue with request}</string>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Bounds</key>
-                       <string>{{272.716, 255.019}, {26, 14}}</string>
-                       <key>Class</key>
-                       <string>ShapedGraphic</string>
-                       <key>FitText</key>
-                       <string>YES</string>
-                       <key>FontInfo</key>
-                       <dict>
-                               <key>Color</key>
-                               <dict>
-                                       <key>w</key>
-                                       <string>0</string>
-                               </dict>
-                               <key>Font</key>
-                               <string>Helvetica</string>
-                               <key>Size</key>
-                               <real>12</real>
-                       </dict>
-                       <key>ID</key>
-                       <integer>597</integer>
-                       <key>Line</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>598</integer>
-                               <key>Position</key>
-                               <real>0.41253021359443665</real>
-                               <key>RotationType</key>
-                               <integer>0</integer>
-                       </dict>
-                       <key>Shape</key>
-                       <string>Rectangle</string>
-                       <key>Style</key>
-                       <dict>
-                               <key>shadow</key>
-                               <dict>
-                                       <key>Draws</key>
-                                       <string>NO</string>
-                               </dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>Draws</key>
-                                       <string>NO</string>
-                               </dict>
-                       </dict>
-                       <key>Text</key>
-                       <dict>
-                               <key>Text</key>
-                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf0 No}</string>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Class</key>
-                       <string>LineGraphic</string>
-                       <key>Head</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>599</integer>
-                       </dict>
-                       <key>ID</key>
-                       <integer>598</integer>
-                       <key>Points</key>
-                       <array>
-                               <string>{257.652, 262}</string>
-                               <string>{325.681, 262.045}</string>
-                       </array>
-                       <key>Style</key>
-                       <dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>HeadArrow</key>
-                                       <string>FilledArrow</string>
-                                       <key>LineType</key>
-                                       <integer>1</integer>
-                                       <key>TailArrow</key>
-                                       <string>0</string>
-                               </dict>
-                       </dict>
-                       <key>Tail</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>602</integer>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Bounds</key>
-                       <string>{{325.681, 228.84}, {122.555, 66.41}}</string>
-                       <key>Class</key>
-                       <string>ShapedGraphic</string>
-                       <key>ID</key>
-                       <integer>599</integer>
-                       <key>Magnets</key>
-                       <array>
-                               <string>{0, 1}</string>
-                               <string>{0, -1}</string>
-                               <string>{1, 0}</string>
-                               <string>{-1, 0}</string>
-                       </array>
-                       <key>Shape</key>
-                       <string>Diamond</string>
-                       <key>Text</key>
-                       <dict>
-                               <key>Text</key>
-                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
-
-\f0\fs20 \cf0 Is Remember Me Cookie present?}</string>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Bounds</key>
-                       <string>{{182.875, 193.554}, {26, 14}}</string>
-                       <key>Class</key>
-                       <string>ShapedGraphic</string>
-                       <key>FitText</key>
-                       <string>YES</string>
-                       <key>FontInfo</key>
-                       <dict>
-                               <key>Color</key>
-                               <dict>
-                                       <key>w</key>
-                                       <string>0</string>
-                               </dict>
-                               <key>Font</key>
-                               <string>Helvetica</string>
-                               <key>Size</key>
-                               <real>12</real>
-                       </dict>
-                       <key>ID</key>
-                       <integer>600</integer>
-                       <key>Line</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>601</integer>
-                               <key>Position</key>
-                               <real>0.34807676076889038</real>
-                               <key>RotationType</key>
-                               <integer>0</integer>
-                       </dict>
-                       <key>Shape</key>
-                       <string>Rectangle</string>
-                       <key>Style</key>
-                       <dict>
-                               <key>shadow</key>
-                               <dict>
-                                       <key>Draws</key>
-                                       <string>NO</string>
-                               </dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>Draws</key>
-                                       <string>NO</string>
-                               </dict>
-                       </dict>
-                       <key>Text</key>
-                       <dict>
-                               <key>Text</key>
-                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf0 No}</string>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Class</key>
-                       <string>LineGraphic</string>
-                       <key>Head</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>602</integer>
-                               <key>Info</key>
-                               <integer>2</integer>
-                       </dict>
-                       <key>ID</key>
-                       <integer>601</integer>
-                       <key>Points</key>
-                       <array>
-                               <string>{195.875, 185.5}</string>
-                               <string>{195.874, 228.75}</string>
-                       </array>
-                       <key>Style</key>
-                       <dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>HeadArrow</key>
-                                       <string>FilledArrow</string>
-                                       <key>LineType</key>
-                                       <integer>1</integer>
-                                       <key>TailArrow</key>
-                                       <string>0</string>
-                               </dict>
-                       </dict>
-                       <key>Tail</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>604</integer>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Bounds</key>
-                       <string>{{134.597, 228.75}, {122.555, 66.5}}</string>
-                       <key>Class</key>
-                       <string>ShapedGraphic</string>
-                       <key>ID</key>
-                       <integer>602</integer>
-                       <key>Magnets</key>
-                       <array>
-                               <string>{0, 1}</string>
-                               <string>{0, -1}</string>
-                               <string>{1, 0}</string>
-                               <string>{-1, 0}</string>
-                       </array>
-                       <key>Shape</key>
-                       <string>Diamond</string>
-                       <key>Text</key>
-                       <dict>
-                               <key>Text</key>
-                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
-
-\f0\fs20 \cf0 Is Signon Cookie present?}</string>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Class</key>
-                       <string>LineGraphic</string>
-                       <key>Head</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>604</integer>
-                       </dict>
-                       <key>ID</key>
-                       <integer>603</integer>
-                       <key>Points</key>
-                       <array>
-                               <string>{195.5, 49}</string>
-                               <string>{195.875, 85}</string>
-                       </array>
-                       <key>Style</key>
-                       <dict>
-                               <key>stroke</key>
-                               <dict>
-                                       <key>HeadArrow</key>
-                                       <string>FilledArrow</string>
-                                       <key>LineType</key>
-                                       <integer>1</integer>
-                                       <key>TailArrow</key>
-                                       <string>0</string>
-                               </dict>
-                       </dict>
-                       <key>Tail</key>
-                       <dict>
-                               <key>ID</key>
-                               <integer>605</integer>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Bounds</key>
-                       <string>{{118.5, 85}, {154.75, 100}}</string>
-                       <key>Class</key>
-                       <string>ShapedGraphic</string>
-                       <key>ID</key>
-                       <integer>604</integer>
-                       <key>Magnets</key>
-                       <array>
-                               <string>{0, 1}</string>
-                               <string>{0, -1}</string>
-                               <string>{1, 0}</string>
-                               <string>{-1, 0}</string>
-                       </array>
-                       <key>Shape</key>
-                       <string>Diamond</string>
-                       <key>Text</key>
-                       <dict>
-                               <key>Text</key>
-                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
-
-\f0\fs20 \cf0 Session contains securitySession\
-and user is authenticated}</string>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Bounds</key>
-                       <string>{{138.5, 13}, {114, 36}}</string>
-                       <key>Class</key>
-                       <string>ShapedGraphic</string>
-                       <key>ID</key>
-                       <integer>605</integer>
-                       <key>Magnets</key>
-                       <array>
-                               <string>{0, 1}</string>
-                               <string>{0, -1}</string>
-                               <string>{1, 0}</string>
-                               <string>{-1, 0}</string>
-                       </array>
-                       <key>Shape</key>
-                       <string>RoundRect</string>
-                       <key>Text</key>
-                       <dict>
-                               <key>Text</key>
-                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
-
-\f0\fs20 \cf0 Login Interceptor}</string>
-                       </dict>
-               </dict>
-               <dict>
-                       <key>Class</key>
-                       <string>Group</string>
-                       <key>Graphics</key>
-                       <array>
-                               <dict>
-                                       <key>Class</key>
-                                       <string>LineGraphic</string>
-                                       <key>Head</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>455</integer>
-                                       </dict>
-                                       <key>ID</key>
-                                       <integer>437</integer>
-                                       <key>Points</key>
-                                       <array>
-                                               <string>{359.693, 1059.5}</string>
-                                               <string>{359.693, 1079.39}</string>
-                                       </array>
-                                       <key>Style</key>
-                                       <dict>
-                                               <key>stroke</key>
-                                               <dict>
-                                                       <key>HeadArrow</key>
-                                                       <string>FilledArrow</string>
-                                                       <key>LineType</key>
-                                                       <integer>1</integer>
-                                                       <key>TailArrow</key>
-                                                       <string>0</string>
-                                               </dict>
-                                       </dict>
-                                       <key>Tail</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>444</integer>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Class</key>
-                                       <string>LineGraphic</string>
-                                       <key>Head</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>454</integer>
-                                       </dict>
-                                       <key>ID</key>
-                                       <integer>438</integer>
-                                       <key>Points</key>
-                                       <array>
-                                               <string>{497.598, 1122.92}</string>
-                                               <string>{497.598, 1174.64}</string>
-                                       </array>
-                                       <key>Style</key>
-                                       <dict>
-                                               <key>stroke</key>
-                                               <dict>
-                                                       <key>HeadArrow</key>
-                                                       <string>FilledArrow</string>
-                                                       <key>LineType</key>
-                                                       <integer>1</integer>
-                                                       <key>TailArrow</key>
-                                                       <string>0</string>
-                                               </dict>
-                                       </dict>
-                                       <key>Tail</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>439</integer>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Bounds</key>
-                                       <string>{{452.598, 1086.92}, {90, 36}}</string>
-                                       <key>Class</key>
-                                       <string>ShapedGraphic</string>
-                                       <key>ID</key>
-                                       <integer>439</integer>
-                                       <key>Magnets</key>
-                                       <array>
-                                               <string>{0, 1}</string>
-                                               <string>{0, -1}</string>
-                                               <string>{1, 0}</string>
-                                               <string>{-1, 0}</string>
-                                       </array>
-                                       <key>Shape</key>
-                                       <string>Rectangle</string>
-                                       <key>Text</key>
-                                       <dict>
-                                               <key>Text</key>
-                                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
-
-\f0\fs20 \cf0 Remove cookie}</string>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Bounds</key>
-                                       <string>{{406.826, 944.411}, {26, 14}}</string>
-                                       <key>Class</key>
-                                       <string>ShapedGraphic</string>
-                                       <key>FitText</key>
-                                       <string>YES</string>
-                                       <key>FontInfo</key>
-                                       <dict>
-                                               <key>Color</key>
-                                               <dict>
-                                                       <key>w</key>
-                                                       <string>0</string>
-                                               </dict>
-                                               <key>Font</key>
-                                               <string>Helvetica</string>
-                                               <key>Size</key>
-                                               <real>12</real>
-                                       </dict>
-                                       <key>ID</key>
-                                       <integer>440</integer>
-                                       <key>Line</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>441</integer>
-                                               <key>Position</key>
-                                               <real>0.066134631633758545</real>
-                                               <key>RotationType</key>
-                                               <integer>0</integer>
-                                       </dict>
-                                       <key>Shape</key>
-                                       <string>Rectangle</string>
-                                       <key>Style</key>
-                                       <dict>
-                                               <key>shadow</key>
-                                               <dict>
-                                                       <key>Draws</key>
-                                                       <string>NO</string>
-                                               </dict>
-                                               <key>stroke</key>
-                                               <dict>
-                                                       <key>Draws</key>
-                                                       <string>NO</string>
-                                               </dict>
-                                       </dict>
-                                       <key>Text</key>
-                                       <dict>
-                                               <key>Text</key>
-                                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf0 No}</string>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Class</key>
-                                       <string>LineGraphic</string>
-                                       <key>Head</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>439</integer>
-                                               <key>Info</key>
-                                               <integer>2</integer>
-                                       </dict>
-                                       <key>ID</key>
-                                       <integer>441</integer>
-                                       <key>OrthogonalBarAutomatic</key>
-                                       <true/>
-                                       <key>OrthogonalBarPosition</key>
-                                       <real>35.56500244140625</real>
-                                       <key>Points</key>
-                                       <array>
-                                               <string>{404.693, 951.431}</string>
-                                               <string>{487.723, 951}</string>
-                                               <string>{497.598, 1086.92}</string>
-                                       </array>
-                                       <key>Style</key>
-                                       <dict>
-                                               <key>stroke</key>
-                                               <dict>
-                                                       <key>HeadArrow</key>
-                                                       <string>FilledArrow</string>
-                                                       <key>LineType</key>
-                                                       <integer>2</integer>
-                                                       <key>TailArrow</key>
-                                                       <string>0</string>
-                                               </dict>
-                                       </dict>
-                                       <key>Tail</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>446</integer>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Bounds</key>
-                                       <string>{{344.693, 989.359}, {30, 14}}</string>
-                                       <key>Class</key>
-                                       <string>ShapedGraphic</string>
-                                       <key>FitText</key>
-                                       <string>YES</string>
-                                       <key>FontInfo</key>
-                                       <dict>
-                                               <key>Color</key>
-                                               <dict>
-                                                       <key>w</key>
-                                                       <string>0</string>
-                                               </dict>
-                                               <key>Font</key>
-                                               <string>Helvetica</string>
-                                               <key>Size</key>
-                                               <real>12</real>
-                                       </dict>
-                                       <key>ID</key>
-                                       <integer>442</integer>
-                                       <key>Line</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>443</integer>
-                                               <key>Position</key>
-                                               <real>0.33163771033287048</real>
-                                               <key>RotationType</key>
-                                               <integer>0</integer>
-                                       </dict>
-                                       <key>Shape</key>
-                                       <string>Rectangle</string>
-                                       <key>Style</key>
-                                       <dict>
-                                               <key>shadow</key>
-                                               <dict>
-                                                       <key>Draws</key>
-                                                       <string>NO</string>
-                                               </dict>
-                                               <key>stroke</key>
-                                               <dict>
-                                                       <key>Draws</key>
-                                                       <string>NO</string>
-                                               </dict>
-                                       </dict>
-                                       <key>Text</key>
-                                       <dict>
-                                               <key>Text</key>
-                                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf0 Yes}</string>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Class</key>
-                                       <string>LineGraphic</string>
-                                       <key>Head</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>444</integer>
-                                       </dict>
-                                       <key>ID</key>
-                                       <integer>443</integer>
-                                       <key>Points</key>
-                                       <array>
-                                               <string>{359.693, 982.892}</string>
-                                               <string>{359.693, 1023.5}</string>
-                                       </array>
-                                       <key>Style</key>
-                                       <dict>
-                                               <key>stroke</key>
-                                               <dict>
-                                                       <key>HeadArrow</key>
-                                                       <string>FilledArrow</string>
-                                                       <key>LineType</key>
-                                                       <integer>1</integer>
-                                                       <key>TailArrow</key>
-                                                       <string>0</string>
-                                               </dict>
-                                       </dict>
-                                       <key>Tail</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>446</integer>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Bounds</key>
-                                       <string>{{314.693, 1023.5}, {90, 36}}</string>
-                                       <key>Class</key>
-                                       <string>ShapedGraphic</string>
-                                       <key>ID</key>
-                                       <integer>444</integer>
-                                       <key>Magnets</key>
-                                       <array>
-                                               <string>{0, 1}</string>
-                                               <string>{0, -1}</string>
-                                               <string>{1, 0}</string>
-                                               <string>{-1, 0}</string>
-                                       </array>
-                                       <key>Shape</key>
-                                       <string>Rectangle</string>
-                                       <key>Text</key>
-                                       <dict>
-                                               <key>Text</key>
-                                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
-
-\f0\fs20 \cf0 Get key and principal from database}</string>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Class</key>
-                                       <string>LineGraphic</string>
-                                       <key>Head</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>446</integer>
-                                       </dict>
-                                       <key>ID</key>
-                                       <integer>445</integer>
-                                       <key>Points</key>
-                                       <array>
-                                               <string>{359.693, 899}</string>
-                                               <string>{359.693, 919.97}</string>
-                                       </array>
-                                       <key>Style</key>
-                                       <dict>
-                                               <key>stroke</key>
-                                               <dict>
-                                                       <key>HeadArrow</key>
-                                                       <string>FilledArrow</string>
-                                                       <key>LineType</key>
-                                                       <integer>1</integer>
-                                                       <key>TailArrow</key>
-                                                       <string>0</string>
-                                               </dict>
-                                       </dict>
-                                       <key>Tail</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>456</integer>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Bounds</key>
-                                       <string>{{314.693, 919.97}, {90, 62.9219}}</string>
-                                       <key>Class</key>
-                                       <string>ShapedGraphic</string>
-                                       <key>ID</key>
-                                       <integer>446</integer>
-                                       <key>Magnets</key>
-                                       <array>
-                                               <string>{0, 1}</string>
-                                               <string>{0, -1}</string>
-                                               <string>{1, 0}</string>
-                                               <string>{-1, 0}</string>
-                                       </array>
-                                       <key>Shape</key>
-                                       <string>Diamond</string>
-                                       <key>Text</key>
-                                       <dict>
-                                               <key>Text</key>
-                                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
-
-\f0\fs20 \cf0 Is key in database?}</string>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Bounds</key>
-                                       <string>{{407.287, 1098.06}, {26, 14}}</string>
-                                       <key>Class</key>
-                                       <string>ShapedGraphic</string>
-                                       <key>FitText</key>
-                                       <string>YES</string>
-                                       <key>FontInfo</key>
-                                       <dict>
-                                               <key>Color</key>
-                                               <dict>
-                                                       <key>w</key>
-                                                       <string>0</string>
-                                               </dict>
-                                               <key>Font</key>
-                                               <string>Helvetica</string>
-                                               <key>Size</key>
-                                               <real>12</real>
-                                       </dict>
-                                       <key>ID</key>
-                                       <integer>447</integer>
-                                       <key>Line</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>448</integer>
-                                               <key>Position</key>
-                                               <real>0.32551863789558411</real>
-                                               <key>RotationType</key>
-                                               <integer>0</integer>
-                                       </dict>
-                                       <key>Shape</key>
-                                       <string>Rectangle</string>
-                                       <key>Style</key>
-                                       <dict>
-                                               <key>shadow</key>
-                                               <dict>
-                                                       <key>Draws</key>
-                                                       <string>NO</string>
-                                               </dict>
-                                               <key>stroke</key>
-                                               <dict>
-                                                       <key>Draws</key>
-                                                       <string>NO</string>
-                                               </dict>
-                                       </dict>
-                                       <key>Text</key>
-                                       <dict>
-                                               <key>Text</key>
-                                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf0 No}</string>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Class</key>
-                                       <string>LineGraphic</string>
-                                       <key>Head</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>439</integer>
-                                       </dict>
-                                       <key>ID</key>
-                                       <integer>448</integer>
-                                       <key>Points</key>
-                                       <array>
-                                               <string>{404.693, 1105.13}</string>
-                                               <string>{452.598, 1104.92}</string>
-                                       </array>
-                                       <key>Style</key>
-                                       <dict>
-                                               <key>stroke</key>
-                                               <dict>
-                                                       <key>HeadArrow</key>
-                                                       <string>FilledArrow</string>
-                                                       <key>LineType</key>
-                                                       <integer>1</integer>
-                                                       <key>TailArrow</key>
-                                                       <string>0</string>
-                                               </dict>
-                                       </dict>
-                                       <key>Tail</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>455</integer>
-                                               <key>Info</key>
-                                               <integer>3</integer>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Bounds</key>
-                                       <string>{{344.693, 1141.47}, {30, 14}}</string>
-                                       <key>Class</key>
-                                       <string>ShapedGraphic</string>
-                                       <key>FitText</key>
-                                       <string>YES</string>
-                                       <key>FontInfo</key>
-                                       <dict>
-                                               <key>Color</key>
-                                               <dict>
-                                                       <key>w</key>
-                                                       <string>0</string>
-                                               </dict>
-                                               <key>Font</key>
-                                               <string>Helvetica</string>
-                                               <key>Size</key>
-                                               <real>12</real>
-                                       </dict>
-                                       <key>ID</key>
-                                       <integer>449</integer>
-                                       <key>Line</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>450</integer>
-                                               <key>Position</key>
-                                               <real>0.39361631870269775</real>
-                                               <key>RotationType</key>
-                                               <integer>0</integer>
-                                       </dict>
-                                       <key>Shape</key>
-                                       <string>Rectangle</string>
-                                       <key>Style</key>
-                                       <dict>
-                                               <key>shadow</key>
-                                               <dict>
-                                                       <key>Draws</key>
-                                                       <string>NO</string>
-                                               </dict>
-                                               <key>stroke</key>
-                                               <dict>
-                                                       <key>Draws</key>
-                                                       <string>NO</string>
-                                               </dict>
-                                       </dict>
-                                       <key>Text</key>
-                                       <dict>
-                                               <key>Text</key>
-                                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf0 Yes}</string>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Class</key>
-                                       <string>LineGraphic</string>
-                                       <key>Head</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>453</integer>
-                                       </dict>
-                                       <key>ID</key>
-                                       <integer>450</integer>
-                                       <key>Points</key>
-                                       <array>
-                                               <string>{359.693, 1130.86}</string>
-                                               <string>{359.693, 1175.6}</string>
-                                       </array>
-                                       <key>Style</key>
-                                       <dict>
-                                               <key>stroke</key>
-                                               <dict>
-                                                       <key>HeadArrow</key>
-                                                       <string>FilledArrow</string>
-                                                       <key>LineType</key>
-                                                       <integer>1</integer>
-                                                       <key>TailArrow</key>
-                                                       <string>0</string>
-                                               </dict>
-                                       </dict>
-                                       <key>Tail</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>455</integer>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Class</key>
-                                       <string>LineGraphic</string>
-                                       <key>Head</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>452</integer>
-                                       </dict>
-                                       <key>ID</key>
-                                       <integer>451</integer>
-                                       <key>Points</key>
-                                       <array>
-                                               <string>{359.693, 1232.1}</string>
-                                               <string>{359.693, 1269.18}</string>
-                                       </array>
-                                       <key>Style</key>
-                                       <dict>
-                                               <key>stroke</key>
-                                               <dict>
-                                                       <key>HeadArrow</key>
-                                                       <string>FilledArrow</string>
-                                                       <key>LineType</key>
-                                                       <integer>1</integer>
-                                                       <key>TailArrow</key>
-                                                       <string>0</string>
-                                               </dict>
-                                       </dict>
-                                       <key>Tail</key>
-                                       <dict>
-                                               <key>ID</key>
-                                               <integer>453</integer>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Bounds</key>
-                                       <string>{{314.693, 1269.18}, {90, 36}}</string>
-                                       <key>Class</key>
-                                       <string>ShapedGraphic</string>
-                                       <key>ID</key>
-                                       <integer>452</integer>
-                                       <key>Magnets</key>
-                                       <array>
-                                               <string>{0, 1}</string>
-                                               <string>{0, -1}</string>
-                                               <string>{1, 0}</string>
-                                               <string>{-1, 0}</string>
-                                       </array>
-                                       <key>Shape</key>
-                                       <string>RoundRect</string>
-                                       <key>Text</key>
-                                       <dict>
-                                               <key>Text</key>
-                                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
-
-\f0\fs20 \cf0 User is authenticated}</string>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Bounds</key>
-                                       <string>{{314.693, 1175.6}, {90, 56}}</string>
-                                       <key>Class</key>
-                                       <string>ShapedGraphic</string>
-                                       <key>ID</key>
-                                       <integer>453</integer>
-                                       <key>Magnets</key>
-                                       <array>
-                                               <string>{0, 1}</string>
-                                               <string>{0, -1}</string>
-                                               <string>{1, 0}</string>
-                                               <string>{-1, 0}</string>
-                                       </array>
-                                       <key>Shape</key>
-                                       <string>Rectangle</string>
-                                       <key>Text</key>
-                                       <dict>
-                                               <key>Text</key>
-                                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
-
-\f0\fs20 \cf0 Get user from database and construct security bean}</string>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Bounds</key>
-                                       <string>{{452.598, 1174.64}, {90, 36}}</string>
-                                       <key>Class</key>
-                                       <string>ShapedGraphic</string>
-                                       <key>ID</key>
-                                       <integer>454</integer>
-                                       <key>Magnets</key>
-                                       <array>
-                                               <string>{0, 1}</string>
-                                               <string>{0, -1}</string>
-                                               <string>{1, 0}</string>
-                                               <string>{-1, 0}</string>
-                                       </array>
-                                       <key>Shape</key>
-                                       <string>RoundRect</string>
-                                       <key>Text</key>
-                                       <dict>
-                                               <key>Text</key>
-                                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
-
-\f0\fs20 \cf0 User is not authenticated}</string>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Bounds</key>
-                                       <string>{{314.693, 1079.39}, {90, 51.4727}}</string>
-                                       <key>Class</key>
-                                       <string>ShapedGraphic</string>
-                                       <key>ID</key>
-                                       <integer>455</integer>
-                                       <key>Magnets</key>
-                                       <array>
-                                               <string>{0, 1}</string>
-                                               <string>{0, -1}</string>
-                                               <string>{1, 0}</string>
-                                               <string>{-1, 0}</string>
-                                       </array>
-                                       <key>Shape</key>
-                                       <string>Diamond</string>
-                                       <key>Text</key>
-                                       <dict>
-                                               <key>Text</key>
-                                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
-
-\f0\fs20 \cf0 Is user in database?}</string>
-                                       </dict>
-                               </dict>
-                               <dict>
-                                       <key>Bounds</key>
-                                       <string>{{302.223, 863}, {114.94, 36}}</string>
-                                       <key>Class</key>
-                                       <string>ShapedGraphic</string>
-                                       <key>ID</key>
-                                       <integer>456</integer>
-                                       <key>Magnets</key>
-                                       <array>
-                                               <string>{0, 1}</string>
-                                               <string>{0, -1}</string>
-                                               <string>{1, 0}</string>
-                                               <string>{-1, 0}</string>
-                                       </array>
-                                       <key>Shape</key>
-                                       <string>Subprocess</string>
-                                       <key>Text</key>
-                                       <dict>
-                                               <key>Text</key>
-                                               <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
-
-\f0\fs20 \cf0 Check Authentication}</string>
-                                       </dict>
-                               </dict>
-                       </array>
-                       <key>ID</key>
-                       <integer>436</integer>
-               </dict>
-       </array>
-       <key>GridInfo</key>
-       <dict/>
-       <key>GuidesLocked</key>
-       <string>NO</string>
-       <key>GuidesVisible</key>
-       <string>YES</string>
-       <key>HPages</key>
-       <integer>1</integer>
-       <key>ImageCounter</key>
-       <integer>1</integer>
-       <key>IsPalette</key>
-       <string>NO</string>
-       <key>KeepToScale</key>
-       <false/>
-       <key>Layers</key>
-       <array>
-               <dict>
-                       <key>Lock</key>
-                       <string>NO</string>
-                       <key>Name</key>
-                       <string>Layer 1</string>
-                       <key>Print</key>
-                       <string>YES</string>
-                       <key>View</key>
-                       <string>YES</string>
-               </dict>
-       </array>
-       <key>LayoutInfo</key>
-       <dict/>
-       <key>LinksVisible</key>
-       <string>NO</string>
-       <key>MagnetsVisible</key>
-       <string>NO</string>
-       <key>MasterSheet</key>
-       <string>Master 1</string>
-       <key>MasterSheets</key>
-       <array>
-               <dict>
-                       <key>ActiveLayerIndex</key>
-                       <integer>0</integer>
-                       <key>AutoAdjust</key>
-                       <true/>
-                       <key>CanvasColor</key>
-                       <dict>
-                               <key>w</key>
-                               <string>1</string>
-                       </dict>
-                       <key>CanvasOrigin</key>
-                       <string>{0, 0}</string>
-                       <key>CanvasScale</key>
-                       <real>1</real>
-                       <key>ColumnAlign</key>
-                       <integer>1</integer>
-                       <key>ColumnSpacing</key>
-                       <real>36</real>
-                       <key>DisplayScale</key>
-                       <string>1 cm = 1 cm</string>
-                       <key>GraphicsList</key>
-                       <array/>
-                       <key>GridInfo</key>
-                       <dict/>
-                       <key>HPages</key>
-                       <integer>1</integer>
-                       <key>IsPalette</key>
-                       <string>NO</string>
-                       <key>KeepToScale</key>
-                       <false/>
-                       <key>Layers</key>
-                       <array>
-                               <dict>
-                                       <key>Lock</key>
-                                       <string>NO</string>
-                                       <key>Name</key>
-                                       <string>Layer 1</string>
-                                       <key>Print</key>
-                                       <string>YES</string>
-                                       <key>View</key>
-                                       <string>YES</string>
-                               </dict>
-                       </array>
-                       <key>LayoutInfo</key>
-                       <dict/>
-                       <key>Orientation</key>
-                       <integer>2</integer>
-                       <key>OutlineStyle</key>
-                       <string>Basic</string>
-                       <key>RowAlign</key>
-                       <integer>1</integer>
-                       <key>RowSpacing</key>
-                       <real>36</real>
-                       <key>SheetTitle</key>
-                       <string>Master 1</string>
-                       <key>UniqueID</key>
-                       <integer>1</integer>
-                       <key>VPages</key>
-                       <integer>1</integer>
-               </dict>
-       </array>
-       <key>ModificationDate</key>
-       <string>2006-12-30 16:04:09 +1100</string>
-       <key>Modifier</key>
-       <string>Brett Porter</string>
-       <key>NotesVisible</key>
-       <string>NO</string>
-       <key>Orientation</key>
-       <integer>2</integer>
-       <key>OriginVisible</key>
-       <string>NO</string>
-       <key>OutlineStyle</key>
-       <string>Basic</string>
-       <key>PageBreaks</key>
-       <string>YES</string>
-       <key>PrintInfo</key>
-       <dict>
-               <key>NSBottomMargin</key>
-               <array>
-                       <string>float</string>
-                       <string>0</string>
-               </array>
-               <key>NSLeftMargin</key>
-               <array>
-                       <string>float</string>
-                       <string>0</string>
-               </array>
-               <key>NSPaperSize</key>
-               <array>
-                       <string>size</string>
-                       <string>{595, 842}</string>
-               </array>
-               <key>NSRightMargin</key>
-               <array>
-                       <string>float</string>
-                       <string>0</string>
-               </array>
-               <key>NSTopMargin</key>
-               <array>
-                       <string>float</string>
-                       <string>0</string>
-               </array>
-       </dict>
-       <key>ReadOnly</key>
-       <string>NO</string>
-       <key>RowAlign</key>
-       <integer>1</integer>
-       <key>RowSpacing</key>
-       <real>36</real>
-       <key>SheetTitle</key>
-       <string>Canvas 1</string>
-       <key>SmartAlignmentGuidesActive</key>
-       <string>YES</string>
-       <key>SmartDistanceGuidesActive</key>
-       <string>YES</string>
-       <key>UniqueID</key>
-       <integer>1</integer>
-       <key>UseEntirePage</key>
-       <true/>
-       <key>VPages</key>
-       <integer>2</integer>
-       <key>WindowInfo</key>
-       <dict>
-               <key>CurrentSheet</key>
-               <string>0</string>
-               <key>DrawerOpen</key>
-               <false/>
-               <key>DrawerTab</key>
-               <string>Outline</string>
-               <key>DrawerWidth</key>
-               <real>209</real>
-               <key>FitInWindow</key>
-               <false/>
-               <key>Frame</key>
-               <string>{{52, 63}, {728, 777}}</string>
-               <key>ShowRuler</key>
-               <false/>
-               <key>ShowStatusBar</key>
-               <true/>
-               <key>VisibleRegion</key>
-               <string>{{-68, 251}, {713, 663}}</string>
-               <key>Zoom</key>
-               <string>1</string>
-       </dict>
-</dict>
-</plist>
diff --git a/redback-integrations/redback-struts2/redback-struts2-integration/src/site/resources/images/PlexusSecurityAuthentication.png b/redback-integrations/redback-struts2/redback-struts2-integration/src/site/resources/images/PlexusSecurityAuthentication.png
deleted file mode 100644 (file)
index a77b4b4..0000000
Binary files a/redback-integrations/redback-struts2/redback-struts2-integration/src/site/resources/images/PlexusSecurityAuthentication.png and /dev/null differ
index ec5b7455a6c43d3eabf25db6b34c6792c68210ca..5af77507f2568260b0a25e584402fb3bcf13993e 100755 (executable)
@@ -1,3 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements.  See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership.  The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License.  You may obtain a copy of the License at
+  ~
+  ~  http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  ~ KIND, either express or implied.  See the License for the
+  ~ specific language governing permissions and limitations
+  ~ under the License.
+  -->
 <configuration debug="false">
 
   <appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender">
index 5707d4a8fe7e35eb656abd811e987736921404a2..010af54433b4630d381bf9955e234466d82a0a31 100644 (file)
@@ -1,16 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
 <!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements.  See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership.  The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License.  You may obtain a copy of the License at
   ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
+  ~  http://www.apache.org/licenses/LICENSE-2.0
   ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License.
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  ~ KIND, either express or implied.  See the License for the
+  ~ specific language governing permissions and limitations
+  ~ under the License.
   -->
 
 <component-set>
index 4512e292a633ffccca08dcee0c5811522979d8de..da295542b9bbcac5a806785b91543d4685a187bf 100644 (file)
@@ -1,16 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
 <!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements.  See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership.  The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License.  You may obtain a copy of the License at
   ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
+  ~  http://www.apache.org/licenses/LICENSE-2.0
   ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License.
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  ~ KIND, either express or implied.  See the License for the
+  ~ specific language governing permissions and limitations
+  ~ under the License.
   -->
 
 <component-set>
index 5707d4a8fe7e35eb656abd811e987736921404a2..010af54433b4630d381bf9955e234466d82a0a31 100644 (file)
@@ -1,16 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
 <!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements.  See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership.  The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License.  You may obtain a copy of the License at
   ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
+  ~  http://www.apache.org/licenses/LICENSE-2.0
   ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License.
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  ~ KIND, either express or implied.  See the License for the
+  ~ specific language governing permissions and limitations
+  ~ under the License.
   -->
 
 <component-set>
index b40d7d8d2a6f557ad48d08146dc28ee02d439f08..76444ded236be54b5547232405b3a8c8ba458103 100644 (file)
@@ -1,16 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
 <!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements.  See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership.  The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License.  You may obtain a copy of the License at
   ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
+  ~  http://www.apache.org/licenses/LICENSE-2.0
   ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License.
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  ~ KIND, either express or implied.  See the License for the
+  ~ specific language governing permissions and limitations
+  ~ under the License.
   -->
 
 <component-set>
index 4c867479dfbb0f55b9fb2c4a317ccac505776563..7687263bad97215439e56f4bf8dd6d7f6ae05903 100644 (file)
@@ -1,3 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements.  See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership.  The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License.  You may obtain a copy of the License at
+  ~
+  ~  http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  ~ KIND, either express or implied.  See the License for the
+  ~ specific language governing permissions and limitations
+  ~ under the License.
+  -->
 <redback-role-model>
   <modelVersion>1.0.0</modelVersion>
   <applications>
index 4a5c9ec8c70245780ea084c86c6d059f85ac2112..c4fd136f0e71f44d713c6f3f22635e3546ce3829 100755 (executable)
@@ -1,4 +1,22 @@
-<?xml version="1.0" ?>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements.  See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership.  The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License.  You may obtain a copy of the License at
+  ~
+  ~  http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  ~ KIND, either express or implied.  See the License for the
+  ~ specific language governing permissions and limitations
+  ~ under the License.
+  -->
 <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
     "http://struts.apache.org/dtds/struts-2.0.dtd"> 
 
index 42adebb9aab73616e85312bd347c9135e0573512..b2f834827ef2d7823b1e63ed90309c8f4e55414a 100755 (executable)
@@ -1,3 +1,17 @@
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
 struts.objectFactory = org.apache.struts2.spring.StrutsSpringObjectFactory
 struts.objectFactory.spring.autoWire = type
 
index bb4a3de9bad4ca3b137c2f8bcebbebcc0422c695..c725002cb1119f5fbf8796ba817a89340437c64d 100755 (executable)
@@ -1,3 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements.  See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership.  The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License.  You may obtain a copy of the License at
+  ~
+  ~  http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  ~ KIND, either express or implied.  See the License for the
+  ~ specific language governing permissions and limitations
+  ~ under the License.
+  -->
 <!DOCTYPE struts PUBLIC
     "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
     "http://struts.apache.org/dtds/struts-2.0.dtd">