pirate_game 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,30 @@
1
+ ##
2
+ # A renewer that expires when its timeout is up
3
+
4
+ class PirateGame::TimeoutRenewer
5
+
6
+ include DRbUndumped
7
+
8
+ ##
9
+ # The timeout for the renewer (after first renewal)
10
+
11
+ attr_reader :timeout
12
+
13
+ ##
14
+ # Creates a renewer that will expire after the +timeout+ passes.
15
+
16
+ def initialize timeout
17
+ @timeout = timeout
18
+ @renew = true
19
+ end
20
+
21
+ def renew # :nodoc:
22
+ return true unless @renew
23
+
24
+ @renew = false
25
+
26
+ @timeout
27
+ end
28
+
29
+ end
30
+
@@ -0,0 +1,46 @@
1
+ class PirateGame::Wave < PirateGame::WavingItem
2
+
3
+ COLORS = PirateGame::Boot::BLUE_COLORS + PirateGame::Boot::GREEN_COLORS
4
+
5
+ OFFSET = 210
6
+ SIZE = 40
7
+
8
+ def initialize shoes, top
9
+ super rand(40), SIZE, 5
10
+
11
+ @shoes = shoes
12
+ @top = top + OFFSET
13
+ @arcs = []
14
+ @clear = @shoes.rgb 0, 0, 0, 0
15
+ end
16
+
17
+ def animate frame
18
+ top_offset, left_offset = waving_offset frame
19
+
20
+ @arcs.each do |arc, top, left|
21
+ arc.move top + top_offset, left + left_offset
22
+ end
23
+ end
24
+
25
+ def draw
26
+ for i in (-3..12) do
27
+ for j in [0,2,4] do
28
+ color_index = (@seed + j) % COLORS.size
29
+ @shoes.fill @clear
30
+ @shoes.stroke COLORS[color_index]
31
+ @shoes.strokewidth 3
32
+ arc_dif = (j/360.0)*Shoes::TWO_PI
33
+
34
+ top = i * SIZE - j
35
+ left = @top + j
36
+
37
+ arc = @shoes.arc(i * SIZE - j, @top + j, SIZE + j, SIZE + j,
38
+ 0 + arc_dif, Shoes::PI - arc_dif)
39
+
40
+ @arcs << [arc, top, left]
41
+ end
42
+ end
43
+ end
44
+
45
+ end
46
+
@@ -0,0 +1,17 @@
1
+ class PirateGame::WavingItem
2
+
3
+ attr_accessor :speed
4
+
5
+ def initialize seed, delta_x, delta_y
6
+
7
+ @seed = seed
8
+ @delta_x = delta_x
9
+ @delta_y = delta_y
10
+ @speed = :normal
11
+ end
12
+
13
+ def waving_offset frame
14
+ top_offset, left_offset =
15
+ PirateGame::Boot.waving_offset frame, @seed, @delta_x, @delta_y, @speed
16
+ end
17
+ end
@@ -0,0 +1,2689 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>ActiveLayerIndex</key>
6
+ <integer>0</integer>
7
+ <key>ApplicationVersion</key>
8
+ <array>
9
+ <string>com.omnigroup.OmniGrafflePro</string>
10
+ <string>139.18.0.187838</string>
11
+ </array>
12
+ <key>AutoAdjust</key>
13
+ <true/>
14
+ <key>BackgroundGraphic</key>
15
+ <dict>
16
+ <key>Bounds</key>
17
+ <string>{{0, 0}, {1151.9999980926514, 1466}}</string>
18
+ <key>Class</key>
19
+ <string>SolidGraphic</string>
20
+ <key>ID</key>
21
+ <integer>2</integer>
22
+ <key>Style</key>
23
+ <dict>
24
+ <key>shadow</key>
25
+ <dict>
26
+ <key>Draws</key>
27
+ <string>NO</string>
28
+ </dict>
29
+ <key>stroke</key>
30
+ <dict>
31
+ <key>Draws</key>
32
+ <string>NO</string>
33
+ </dict>
34
+ </dict>
35
+ </dict>
36
+ <key>BaseZoom</key>
37
+ <integer>0</integer>
38
+ <key>CanvasOrigin</key>
39
+ <string>{0, 0}</string>
40
+ <key>ColumnAlign</key>
41
+ <integer>1</integer>
42
+ <key>ColumnSpacing</key>
43
+ <real>36</real>
44
+ <key>CreationDate</key>
45
+ <string>2013-10-08 20:31:06 +0000</string>
46
+ <key>Creator</key>
47
+ <string>Davy Stevenson</string>
48
+ <key>DisplayScale</key>
49
+ <string>1 0/72 in = 1.0000 in</string>
50
+ <key>GraphDocumentVersion</key>
51
+ <integer>8</integer>
52
+ <key>GraphicsList</key>
53
+ <array>
54
+ <dict>
55
+ <key>Bounds</key>
56
+ <string>{{581.64583195273656, 539.38987034371235}, {88, 24}}</string>
57
+ <key>Class</key>
58
+ <string>ShapedGraphic</string>
59
+ <key>FitText</key>
60
+ <string>YES</string>
61
+ <key>Flow</key>
62
+ <string>Resize</string>
63
+ <key>FontInfo</key>
64
+ <dict>
65
+ <key>Color</key>
66
+ <dict>
67
+ <key>w</key>
68
+ <string>0</string>
69
+ </dict>
70
+ <key>Font</key>
71
+ <string>Helvetica</string>
72
+ <key>Size</key>
73
+ <real>12</real>
74
+ </dict>
75
+ <key>ID</key>
76
+ <integer>76</integer>
77
+ <key>Line</key>
78
+ <dict>
79
+ <key>ID</key>
80
+ <integer>75</integer>
81
+ <key>Position</key>
82
+ <real>0.42957261204719543</real>
83
+ <key>RotationType</key>
84
+ <integer>0</integer>
85
+ </dict>
86
+ <key>Shape</key>
87
+ <string>Rectangle</string>
88
+ <key>Style</key>
89
+ <dict>
90
+ <key>shadow</key>
91
+ <dict>
92
+ <key>Draws</key>
93
+ <string>NO</string>
94
+ </dict>
95
+ <key>stroke</key>
96
+ <dict>
97
+ <key>Draws</key>
98
+ <string>NO</string>
99
+ </dict>
100
+ </dict>
101
+ <key>Text</key>
102
+ <dict>
103
+ <key>Text</key>
104
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
105
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
106
+ {\colortbl;\red255\green255\blue255;}
107
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
108
+
109
+ \f0\fs24 \cf0 action watcher}</string>
110
+ </dict>
111
+ <key>Wrap</key>
112
+ <string>NO</string>
113
+ </dict>
114
+ <dict>
115
+ <key>Class</key>
116
+ <string>LineGraphic</string>
117
+ <key>Head</key>
118
+ <dict>
119
+ <key>ID</key>
120
+ <integer>37</integer>
121
+ </dict>
122
+ <key>ID</key>
123
+ <integer>75</integer>
124
+ <key>Points</key>
125
+ <array>
126
+ <string>{565.96227309783444, 579.93748753221769}</string>
127
+ <string>{624.03904480091819, 556}</string>
128
+ <string>{605, 531}</string>
129
+ <string>{558.03796235930531, 568.1895905015906}</string>
130
+ </array>
131
+ <key>Style</key>
132
+ <dict>
133
+ <key>stroke</key>
134
+ <dict>
135
+ <key>HeadArrow</key>
136
+ <string>FilledArrow</string>
137
+ <key>Legacy</key>
138
+ <true/>
139
+ <key>LineType</key>
140
+ <integer>1</integer>
141
+ <key>TailArrow</key>
142
+ <string>0</string>
143
+ </dict>
144
+ </dict>
145
+ <key>Tail</key>
146
+ <dict>
147
+ <key>ID</key>
148
+ <integer>37</integer>
149
+ </dict>
150
+ </dict>
151
+ <dict>
152
+ <key>Bounds</key>
153
+ <string>{{410, 19.31036376953125}, {149, 28}}</string>
154
+ <key>Class</key>
155
+ <string>ShapedGraphic</string>
156
+ <key>FitText</key>
157
+ <string>YES</string>
158
+ <key>Flow</key>
159
+ <string>Resize</string>
160
+ <key>ID</key>
161
+ <integer>74</integer>
162
+ <key>Shape</key>
163
+ <string>Rectangle</string>
164
+ <key>Style</key>
165
+ <dict>
166
+ <key>fill</key>
167
+ <dict>
168
+ <key>Draws</key>
169
+ <string>NO</string>
170
+ </dict>
171
+ <key>shadow</key>
172
+ <dict>
173
+ <key>Draws</key>
174
+ <string>NO</string>
175
+ </dict>
176
+ <key>stroke</key>
177
+ <dict>
178
+ <key>Draws</key>
179
+ <string>NO</string>
180
+ </dict>
181
+ </dict>
182
+ <key>Text</key>
183
+ <dict>
184
+ <key>Pad</key>
185
+ <integer>0</integer>
186
+ <key>Text</key>
187
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
188
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
189
+ {\colortbl;\red255\green255\blue255;\red7\green0\blue255;}
190
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
191
+
192
+ \f0\fs24 \cf0 Implemented: \cf2 blue text\
193
+ \cf0 Not Implemented: black text}</string>
194
+ <key>VerticalPad</key>
195
+ <integer>0</integer>
196
+ </dict>
197
+ <key>Wrap</key>
198
+ <string>NO</string>
199
+ </dict>
200
+ <dict>
201
+ <key>Bounds</key>
202
+ <string>{{300.37166504761268, 930.30092587995136}, {70, 38}}</string>
203
+ <key>Class</key>
204
+ <string>ShapedGraphic</string>
205
+ <key>FitText</key>
206
+ <string>YES</string>
207
+ <key>Flow</key>
208
+ <string>Resize</string>
209
+ <key>FontInfo</key>
210
+ <dict>
211
+ <key>Color</key>
212
+ <dict>
213
+ <key>w</key>
214
+ <string>0</string>
215
+ </dict>
216
+ <key>Font</key>
217
+ <string>Helvetica</string>
218
+ <key>Size</key>
219
+ <real>12</real>
220
+ </dict>
221
+ <key>ID</key>
222
+ <integer>73</integer>
223
+ <key>Line</key>
224
+ <dict>
225
+ <key>ID</key>
226
+ <integer>72</integer>
227
+ <key>Position</key>
228
+ <real>0.7108842134475708</real>
229
+ <key>RotationType</key>
230
+ <integer>0</integer>
231
+ </dict>
232
+ <key>Shape</key>
233
+ <string>Rectangle</string>
234
+ <key>Style</key>
235
+ <dict>
236
+ <key>shadow</key>
237
+ <dict>
238
+ <key>Draws</key>
239
+ <string>NO</string>
240
+ </dict>
241
+ <key>stroke</key>
242
+ <dict>
243
+ <key>Draws</key>
244
+ <string>NO</string>
245
+ </dict>
246
+ </dict>
247
+ <key>Text</key>
248
+ <dict>
249
+ <key>Text</key>
250
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
251
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
252
+ {\colortbl;\red255\green255\blue255;\red27\green0\blue220;}
253
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
254
+
255
+ \f0\fs24 \cf2 DRb msg\
256
+ start_stage}</string>
257
+ </dict>
258
+ <key>Wrap</key>
259
+ <string>NO</string>
260
+ </dict>
261
+ <dict>
262
+ <key>Class</key>
263
+ <string>LineGraphic</string>
264
+ <key>ID</key>
265
+ <integer>72</integer>
266
+ <key>Points</key>
267
+ <array>
268
+ <string>{467.64441636909555, 860.96723172808595}</string>
269
+ <string>{332.7703206691798, 951}</string>
270
+ <string>{282, 982}</string>
271
+ </array>
272
+ <key>Style</key>
273
+ <dict>
274
+ <key>stroke</key>
275
+ <dict>
276
+ <key>HeadArrow</key>
277
+ <string>FilledArrow</string>
278
+ <key>Legacy</key>
279
+ <true/>
280
+ <key>LineType</key>
281
+ <integer>1</integer>
282
+ <key>TailArrow</key>
283
+ <string>0</string>
284
+ </dict>
285
+ </dict>
286
+ <key>Tail</key>
287
+ <dict>
288
+ <key>ID</key>
289
+ <integer>52</integer>
290
+ </dict>
291
+ </dict>
292
+ <dict>
293
+ <key>Bounds</key>
294
+ <string>{{297.47989511654777, 634.07088974901831}, {109, 38}}</string>
295
+ <key>Class</key>
296
+ <string>ShapedGraphic</string>
297
+ <key>FitText</key>
298
+ <string>YES</string>
299
+ <key>Flow</key>
300
+ <string>Resize</string>
301
+ <key>FontInfo</key>
302
+ <dict>
303
+ <key>Color</key>
304
+ <dict>
305
+ <key>w</key>
306
+ <string>0</string>
307
+ </dict>
308
+ <key>Font</key>
309
+ <string>Helvetica</string>
310
+ <key>Size</key>
311
+ <real>12</real>
312
+ </dict>
313
+ <key>ID</key>
314
+ <integer>71</integer>
315
+ <key>Line</key>
316
+ <dict>
317
+ <key>ID</key>
318
+ <integer>70</integer>
319
+ <key>Position</key>
320
+ <real>0.53802531957626343</real>
321
+ <key>RotationType</key>
322
+ <integer>0</integer>
323
+ </dict>
324
+ <key>Shape</key>
325
+ <string>Rectangle</string>
326
+ <key>Style</key>
327
+ <dict>
328
+ <key>shadow</key>
329
+ <dict>
330
+ <key>Draws</key>
331
+ <string>NO</string>
332
+ </dict>
333
+ <key>stroke</key>
334
+ <dict>
335
+ <key>Draws</key>
336
+ <string>NO</string>
337
+ </dict>
338
+ </dict>
339
+ <key>Text</key>
340
+ <dict>
341
+ <key>Text</key>
342
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
343
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
344
+ {\colortbl;\red255\green255\blue255;}
345
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
346
+
347
+ \f0\fs24 \cf0 global event\
348
+ (ie. navy ship raid)}</string>
349
+ </dict>
350
+ <key>Wrap</key>
351
+ <string>NO</string>
352
+ </dict>
353
+ <dict>
354
+ <key>Class</key>
355
+ <string>LineGraphic</string>
356
+ <key>Head</key>
357
+ <dict>
358
+ <key>ID</key>
359
+ <integer>33</integer>
360
+ </dict>
361
+ <key>ID</key>
362
+ <integer>70</integer>
363
+ <key>Points</key>
364
+ <array>
365
+ <string>{471.02698396236025, 615.76237235778751}</string>
366
+ <string>{362.32313341893877, 653}</string>
367
+ <string>{245.98896529983418, 628.14578192228646}</string>
368
+ </array>
369
+ <key>Style</key>
370
+ <dict>
371
+ <key>stroke</key>
372
+ <dict>
373
+ <key>HeadArrow</key>
374
+ <string>FilledArrow</string>
375
+ <key>Legacy</key>
376
+ <true/>
377
+ <key>LineType</key>
378
+ <integer>1</integer>
379
+ <key>TailArrow</key>
380
+ <string>0</string>
381
+ </dict>
382
+ </dict>
383
+ <key>Tail</key>
384
+ <dict>
385
+ <key>ID</key>
386
+ <integer>37</integer>
387
+ </dict>
388
+ </dict>
389
+ <dict>
390
+ <key>Bounds</key>
391
+ <string>{{259.69209861265267, 571.19684040417314}, {73, 24}}</string>
392
+ <key>Class</key>
393
+ <string>ShapedGraphic</string>
394
+ <key>FitText</key>
395
+ <string>YES</string>
396
+ <key>Flow</key>
397
+ <string>Resize</string>
398
+ <key>FontInfo</key>
399
+ <dict>
400
+ <key>Color</key>
401
+ <dict>
402
+ <key>w</key>
403
+ <string>0</string>
404
+ </dict>
405
+ <key>Font</key>
406
+ <string>Helvetica</string>
407
+ <key>Size</key>
408
+ <real>12</real>
409
+ </dict>
410
+ <key>ID</key>
411
+ <integer>69</integer>
412
+ <key>Line</key>
413
+ <dict>
414
+ <key>ID</key>
415
+ <integer>68</integer>
416
+ <key>Position</key>
417
+ <real>0.46170890331268311</real>
418
+ <key>RotationType</key>
419
+ <integer>0</integer>
420
+ </dict>
421
+ <key>Shape</key>
422
+ <string>Rectangle</string>
423
+ <key>Style</key>
424
+ <dict>
425
+ <key>shadow</key>
426
+ <dict>
427
+ <key>Draws</key>
428
+ <string>NO</string>
429
+ </dict>
430
+ <key>stroke</key>
431
+ <dict>
432
+ <key>Draws</key>
433
+ <string>NO</string>
434
+ </dict>
435
+ </dict>
436
+ <key>Text</key>
437
+ <dict>
438
+ <key>Text</key>
439
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
440
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
441
+ {\colortbl;\red255\green255\blue255;}
442
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
443
+
444
+ \f0\fs24 \cf0 action timer}</string>
445
+ </dict>
446
+ <key>Wrap</key>
447
+ <string>NO</string>
448
+ </dict>
449
+ <dict>
450
+ <key>Class</key>
451
+ <string>LineGraphic</string>
452
+ <key>Head</key>
453
+ <dict>
454
+ <key>ID</key>
455
+ <integer>34</integer>
456
+ </dict>
457
+ <key>ID</key>
458
+ <integer>68</integer>
459
+ <key>Points</key>
460
+ <array>
461
+ <string>{235, 605}</string>
462
+ <string>{289.5, 605}</string>
463
+ <string>{289.5, 556}</string>
464
+ <string>{234.9506925599492, 582.20505945649495}</string>
465
+ </array>
466
+ <key>Style</key>
467
+ <dict>
468
+ <key>stroke</key>
469
+ <dict>
470
+ <key>HeadArrow</key>
471
+ <string>FilledArrow</string>
472
+ <key>Legacy</key>
473
+ <true/>
474
+ <key>LineType</key>
475
+ <integer>1</integer>
476
+ <key>TailArrow</key>
477
+ <string>0</string>
478
+ </dict>
479
+ </dict>
480
+ <key>Tail</key>
481
+ <dict>
482
+ <key>ID</key>
483
+ <integer>34</integer>
484
+ </dict>
485
+ </dict>
486
+ <dict>
487
+ <key>Bounds</key>
488
+ <string>{{628.53899623736993, 635.59522235290535}, {67, 38}}</string>
489
+ <key>Class</key>
490
+ <string>ShapedGraphic</string>
491
+ <key>FitText</key>
492
+ <string>YES</string>
493
+ <key>Flow</key>
494
+ <string>Resize</string>
495
+ <key>FontInfo</key>
496
+ <dict>
497
+ <key>Color</key>
498
+ <dict>
499
+ <key>w</key>
500
+ <string>0</string>
501
+ </dict>
502
+ <key>Font</key>
503
+ <string>Helvetica</string>
504
+ <key>Size</key>
505
+ <real>12</real>
506
+ </dict>
507
+ <key>ID</key>
508
+ <integer>67</integer>
509
+ <key>Line</key>
510
+ <dict>
511
+ <key>ID</key>
512
+ <integer>66</integer>
513
+ <key>Position</key>
514
+ <real>0.47544863820075989</real>
515
+ <key>RotationType</key>
516
+ <integer>0</integer>
517
+ </dict>
518
+ <key>Shape</key>
519
+ <string>Rectangle</string>
520
+ <key>Style</key>
521
+ <dict>
522
+ <key>shadow</key>
523
+ <dict>
524
+ <key>Draws</key>
525
+ <string>NO</string>
526
+ </dict>
527
+ <key>stroke</key>
528
+ <dict>
529
+ <key>Draws</key>
530
+ <string>NO</string>
531
+ </dict>
532
+ </dict>
533
+ <key>Text</key>
534
+ <dict>
535
+ <key>Text</key>
536
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
537
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
538
+ {\colortbl;\red255\green255\blue255;\red27\green0\blue220;}
539
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
540
+
541
+ \f0\fs24 \cf2 DRb msg\
542
+ end_game}</string>
543
+ </dict>
544
+ <key>Wrap</key>
545
+ <string>NO</string>
546
+ </dict>
547
+ <dict>
548
+ <key>Class</key>
549
+ <string>LineGraphic</string>
550
+ <key>Head</key>
551
+ <dict>
552
+ <key>ID</key>
553
+ <integer>63</integer>
554
+ </dict>
555
+ <key>ID</key>
556
+ <integer>66</integer>
557
+ <key>Points</key>
558
+ <array>
559
+ <string>{565.96679481883041, 617.71939461384045}</string>
560
+ <string>{768.03320893688419, 695.27946057304507}</string>
561
+ </array>
562
+ <key>Style</key>
563
+ <dict>
564
+ <key>stroke</key>
565
+ <dict>
566
+ <key>HeadArrow</key>
567
+ <string>FilledArrow</string>
568
+ <key>Legacy</key>
569
+ <true/>
570
+ <key>LineType</key>
571
+ <integer>1</integer>
572
+ <key>TailArrow</key>
573
+ <string>0</string>
574
+ </dict>
575
+ </dict>
576
+ <key>Tail</key>
577
+ <dict>
578
+ <key>ID</key>
579
+ <integer>37</integer>
580
+ </dict>
581
+ </dict>
582
+ <dict>
583
+ <key>Bounds</key>
584
+ <string>{{773, 773.5}, {100, 14}}</string>
585
+ <key>Class</key>
586
+ <string>ShapedGraphic</string>
587
+ <key>FitText</key>
588
+ <string>YES</string>
589
+ <key>Flow</key>
590
+ <string>Resize</string>
591
+ <key>ID</key>
592
+ <integer>65</integer>
593
+ <key>Shape</key>
594
+ <string>Rectangle</string>
595
+ <key>Style</key>
596
+ <dict>
597
+ <key>fill</key>
598
+ <dict>
599
+ <key>Draws</key>
600
+ <string>NO</string>
601
+ </dict>
602
+ <key>shadow</key>
603
+ <dict>
604
+ <key>Draws</key>
605
+ <string>NO</string>
606
+ </dict>
607
+ <key>stroke</key>
608
+ <dict>
609
+ <key>Draws</key>
610
+ <string>NO</string>
611
+ </dict>
612
+ </dict>
613
+ <key>Text</key>
614
+ <dict>
615
+ <key>Pad</key>
616
+ <integer>0</integer>
617
+ <key>Text</key>
618
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
619
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
620
+ {\colortbl;\red255\green255\blue255;}
621
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
622
+
623
+ \f0\fs24 \cf0 display game stats}</string>
624
+ <key>VerticalPad</key>
625
+ <integer>0</integer>
626
+ </dict>
627
+ <key>Wrap</key>
628
+ <string>NO</string>
629
+ </dict>
630
+ <dict>
631
+ <key>Bounds</key>
632
+ <string>{{778.5, 639.5}, {60, 14}}</string>
633
+ <key>Class</key>
634
+ <string>ShapedGraphic</string>
635
+ <key>FitText</key>
636
+ <string>YES</string>
637
+ <key>Flow</key>
638
+ <string>Resize</string>
639
+ <key>ID</key>
640
+ <integer>64</integer>
641
+ <key>Shape</key>
642
+ <string>Rectangle</string>
643
+ <key>Style</key>
644
+ <dict>
645
+ <key>fill</key>
646
+ <dict>
647
+ <key>Draws</key>
648
+ <string>NO</string>
649
+ </dict>
650
+ <key>shadow</key>
651
+ <dict>
652
+ <key>Draws</key>
653
+ <string>NO</string>
654
+ </dict>
655
+ <key>stroke</key>
656
+ <dict>
657
+ <key>Draws</key>
658
+ <string>NO</string>
659
+ </dict>
660
+ </dict>
661
+ <key>Text</key>
662
+ <dict>
663
+ <key>Pad</key>
664
+ <integer>0</integer>
665
+ <key>Text</key>
666
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
667
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
668
+ {\colortbl;\red255\green255\blue255;}
669
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
670
+
671
+ \f0\b\fs24 \cf0 End Game}</string>
672
+ <key>VerticalPad</key>
673
+ <integer>0</integer>
674
+ </dict>
675
+ <key>Wrap</key>
676
+ <string>NO</string>
677
+ </dict>
678
+ <dict>
679
+ <key>Bounds</key>
680
+ <string>{{768.5, 682.5}, {94, 62}}</string>
681
+ <key>Class</key>
682
+ <string>ShapedGraphic</string>
683
+ <key>ID</key>
684
+ <integer>63</integer>
685
+ <key>Shape</key>
686
+ <string>Rectangle</string>
687
+ <key>Text</key>
688
+ <dict>
689
+ <key>Text</key>
690
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
691
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
692
+ {\colortbl;\red255\green255\blue255;}
693
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
694
+
695
+ \f0\fs24 \cf0 Client}</string>
696
+ </dict>
697
+ </dict>
698
+ <dict>
699
+ <key>Bounds</key>
700
+ <string>{{779.5, 695.5}, {94, 62}}</string>
701
+ <key>Class</key>
702
+ <string>ShapedGraphic</string>
703
+ <key>ID</key>
704
+ <integer>62</integer>
705
+ <key>Shape</key>
706
+ <string>Rectangle</string>
707
+ <key>Text</key>
708
+ <dict>
709
+ <key>Text</key>
710
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
711
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
712
+ {\colortbl;\red255\green255\blue255;}
713
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
714
+
715
+ \f0\fs24 \cf0 Client}</string>
716
+ </dict>
717
+ </dict>
718
+ <dict>
719
+ <key>Bounds</key>
720
+ <string>{{315.93130616735158, 820.0014758793011}, {75, 38}}</string>
721
+ <key>Class</key>
722
+ <string>ShapedGraphic</string>
723
+ <key>FitText</key>
724
+ <string>YES</string>
725
+ <key>Flow</key>
726
+ <string>Resize</string>
727
+ <key>FontInfo</key>
728
+ <dict>
729
+ <key>Color</key>
730
+ <dict>
731
+ <key>w</key>
732
+ <string>0</string>
733
+ </dict>
734
+ <key>Font</key>
735
+ <string>Helvetica</string>
736
+ <key>Size</key>
737
+ <real>12</real>
738
+ </dict>
739
+ <key>ID</key>
740
+ <integer>57</integer>
741
+ <key>Line</key>
742
+ <dict>
743
+ <key>ID</key>
744
+ <integer>56</integer>
745
+ <key>Position</key>
746
+ <real>0.49525028467178345</real>
747
+ <key>RotationType</key>
748
+ <integer>0</integer>
749
+ </dict>
750
+ <key>Shape</key>
751
+ <string>Rectangle</string>
752
+ <key>Style</key>
753
+ <dict>
754
+ <key>shadow</key>
755
+ <dict>
756
+ <key>Draws</key>
757
+ <string>NO</string>
758
+ </dict>
759
+ <key>stroke</key>
760
+ <dict>
761
+ <key>Draws</key>
762
+ <string>NO</string>
763
+ </dict>
764
+ </dict>
765
+ <key>Text</key>
766
+ <dict>
767
+ <key>Text</key>
768
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
769
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
770
+ {\colortbl;\red255\green255\blue255;}
771
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
772
+
773
+ \f0\fs24 \cf0 start cmd\
774
+ [:start,nil,nil]}</string>
775
+ </dict>
776
+ <key>Wrap</key>
777
+ <string>NO</string>
778
+ </dict>
779
+ <dict>
780
+ <key>Class</key>
781
+ <string>LineGraphic</string>
782
+ <key>Head</key>
783
+ <dict>
784
+ <key>ID</key>
785
+ <integer>52</integer>
786
+ </dict>
787
+ <key>ID</key>
788
+ <integer>56</integer>
789
+ <key>Points</key>
790
+ <array>
791
+ <string>{241.99916651330452, 845.44360476655868}</string>
792
+ <string>{467.00083355504353, 832.4357800632838}</string>
793
+ </array>
794
+ <key>Style</key>
795
+ <dict>
796
+ <key>stroke</key>
797
+ <dict>
798
+ <key>HeadArrow</key>
799
+ <string>FilledArrow</string>
800
+ <key>Legacy</key>
801
+ <true/>
802
+ <key>LineType</key>
803
+ <integer>1</integer>
804
+ <key>TailArrow</key>
805
+ <string>0</string>
806
+ </dict>
807
+ </dict>
808
+ <key>Tail</key>
809
+ <dict>
810
+ <key>ID</key>
811
+ <integer>48</integer>
812
+ </dict>
813
+ </dict>
814
+ <dict>
815
+ <key>Bounds</key>
816
+ <string>{{307.65686002768643, 709.71394481945993}, {85, 38}}</string>
817
+ <key>Class</key>
818
+ <string>ShapedGraphic</string>
819
+ <key>FitText</key>
820
+ <string>YES</string>
821
+ <key>Flow</key>
822
+ <string>Resize</string>
823
+ <key>FontInfo</key>
824
+ <dict>
825
+ <key>Color</key>
826
+ <dict>
827
+ <key>w</key>
828
+ <string>0</string>
829
+ </dict>
830
+ <key>Font</key>
831
+ <string>Helvetica</string>
832
+ <key>Size</key>
833
+ <real>12</real>
834
+ </dict>
835
+ <key>ID</key>
836
+ <integer>55</integer>
837
+ <key>Line</key>
838
+ <dict>
839
+ <key>ID</key>
840
+ <integer>54</integer>
841
+ <key>Position</key>
842
+ <real>0.52616673707962036</real>
843
+ <key>RotationType</key>
844
+ <integer>0</integer>
845
+ </dict>
846
+ <key>Shape</key>
847
+ <string>Rectangle</string>
848
+ <key>Style</key>
849
+ <dict>
850
+ <key>shadow</key>
851
+ <dict>
852
+ <key>Draws</key>
853
+ <string>NO</string>
854
+ </dict>
855
+ <key>stroke</key>
856
+ <dict>
857
+ <key>Draws</key>
858
+ <string>NO</string>
859
+ </dict>
860
+ </dict>
861
+ <key>Text</key>
862
+ <dict>
863
+ <key>Text</key>
864
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
865
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
866
+ {\colortbl;\red255\green255\blue255;\red27\green0\blue220;}
867
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
868
+
869
+ \f0\fs24 \cf2 DRb msg\
870
+ return_to_pub}</string>
871
+ </dict>
872
+ <key>Wrap</key>
873
+ <string>NO</string>
874
+ </dict>
875
+ <dict>
876
+ <key>Class</key>
877
+ <string>LineGraphic</string>
878
+ <key>Head</key>
879
+ <dict>
880
+ <key>ID</key>
881
+ <integer>48</integer>
882
+ </dict>
883
+ <key>ID</key>
884
+ <integer>54</integer>
885
+ <key>Points</key>
886
+ <array>
887
+ <string>{477.71579775190474, 630.80443960863374}</string>
888
+ <string>{235.28515982863391, 816.88519749586283}</string>
889
+ </array>
890
+ <key>Style</key>
891
+ <dict>
892
+ <key>stroke</key>
893
+ <dict>
894
+ <key>HeadArrow</key>
895
+ <string>FilledArrow</string>
896
+ <key>Legacy</key>
897
+ <true/>
898
+ <key>LineType</key>
899
+ <integer>1</integer>
900
+ <key>TailArrow</key>
901
+ <string>0</string>
902
+ </dict>
903
+ </dict>
904
+ <key>Tail</key>
905
+ <dict>
906
+ <key>ID</key>
907
+ <integer>37</integer>
908
+ </dict>
909
+ </dict>
910
+ <dict>
911
+ <key>Bounds</key>
912
+ <string>{{451, 869.68963256128654}, {127, 42}}</string>
913
+ <key>Class</key>
914
+ <string>ShapedGraphic</string>
915
+ <key>FitText</key>
916
+ <string>YES</string>
917
+ <key>Flow</key>
918
+ <string>Resize</string>
919
+ <key>ID</key>
920
+ <integer>53</integer>
921
+ <key>Shape</key>
922
+ <string>Rectangle</string>
923
+ <key>Style</key>
924
+ <dict>
925
+ <key>fill</key>
926
+ <dict>
927
+ <key>Draws</key>
928
+ <string>NO</string>
929
+ </dict>
930
+ <key>shadow</key>
931
+ <dict>
932
+ <key>Draws</key>
933
+ <string>NO</string>
934
+ </dict>
935
+ <key>stroke</key>
936
+ <dict>
937
+ <key>Draws</key>
938
+ <string>NO</string>
939
+ </dict>
940
+ </dict>
941
+ <key>Text</key>
942
+ <dict>
943
+ <key>Pad</key>
944
+ <integer>0</integer>
945
+ <key>Text</key>
946
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
947
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
948
+ {\colortbl;\red255\green255\blue255;\red27\green0\blue220;}
949
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
950
+
951
+ \f0\fs24 \cf2 display stage rundown\
952
+ \cf0 \
953
+ \cf2 no registrations allowed}</string>
954
+ <key>VerticalPad</key>
955
+ <integer>0</integer>
956
+ </dict>
957
+ <key>Wrap</key>
958
+ <string>NO</string>
959
+ </dict>
960
+ <dict>
961
+ <key>Bounds</key>
962
+ <string>{{467.5, 798.68963256128654}, {94, 62}}</string>
963
+ <key>Class</key>
964
+ <string>ShapedGraphic</string>
965
+ <key>ID</key>
966
+ <integer>52</integer>
967
+ <key>Shape</key>
968
+ <string>Rectangle</string>
969
+ <key>Text</key>
970
+ <dict>
971
+ <key>Text</key>
972
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
973
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
974
+ {\colortbl;\red255\green255\blue255;}
975
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
976
+
977
+ \f0\fs24 \cf0 GM}</string>
978
+ </dict>
979
+ </dict>
980
+ <dict>
981
+ <key>Bounds</key>
982
+ <string>{{149.5, 895.18963256128654}, {83, 14}}</string>
983
+ <key>Class</key>
984
+ <string>ShapedGraphic</string>
985
+ <key>FitText</key>
986
+ <string>YES</string>
987
+ <key>Flow</key>
988
+ <string>Resize</string>
989
+ <key>ID</key>
990
+ <integer>51</integer>
991
+ <key>Shape</key>
992
+ <string>Rectangle</string>
993
+ <key>Style</key>
994
+ <dict>
995
+ <key>fill</key>
996
+ <dict>
997
+ <key>Draws</key>
998
+ <string>NO</string>
999
+ </dict>
1000
+ <key>shadow</key>
1001
+ <dict>
1002
+ <key>Draws</key>
1003
+ <string>NO</string>
1004
+ </dict>
1005
+ <key>stroke</key>
1006
+ <dict>
1007
+ <key>Draws</key>
1008
+ <string>NO</string>
1009
+ </dict>
1010
+ </dict>
1011
+ <key>Text</key>
1012
+ <dict>
1013
+ <key>Pad</key>
1014
+ <integer>0</integer>
1015
+ <key>Text</key>
1016
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
1017
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
1018
+ {\colortbl;\red255\green255\blue255;}
1019
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
1020
+
1021
+ \f0\fs24 \cf0 start next stage}</string>
1022
+ <key>VerticalPad</key>
1023
+ <integer>0</integer>
1024
+ </dict>
1025
+ <key>Wrap</key>
1026
+ <string>NO</string>
1027
+ </dict>
1028
+ <dict>
1029
+ <key>Bounds</key>
1030
+ <string>{{179.5, 769.37926512257309}, {23, 14}}</string>
1031
+ <key>Class</key>
1032
+ <string>ShapedGraphic</string>
1033
+ <key>FitText</key>
1034
+ <string>YES</string>
1035
+ <key>Flow</key>
1036
+ <string>Resize</string>
1037
+ <key>ID</key>
1038
+ <integer>50</integer>
1039
+ <key>Shape</key>
1040
+ <string>Rectangle</string>
1041
+ <key>Style</key>
1042
+ <dict>
1043
+ <key>fill</key>
1044
+ <dict>
1045
+ <key>Draws</key>
1046
+ <string>NO</string>
1047
+ </dict>
1048
+ <key>shadow</key>
1049
+ <dict>
1050
+ <key>Draws</key>
1051
+ <string>NO</string>
1052
+ </dict>
1053
+ <key>stroke</key>
1054
+ <dict>
1055
+ <key>Draws</key>
1056
+ <string>NO</string>
1057
+ </dict>
1058
+ </dict>
1059
+ <key>Text</key>
1060
+ <dict>
1061
+ <key>Pad</key>
1062
+ <integer>0</integer>
1063
+ <key>Text</key>
1064
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
1065
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
1066
+ {\colortbl;\red255\green255\blue255;}
1067
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
1068
+
1069
+ \f0\b\fs24 \cf0 Pub}</string>
1070
+ <key>VerticalPad</key>
1071
+ <integer>0</integer>
1072
+ </dict>
1073
+ <key>Wrap</key>
1074
+ <string>NO</string>
1075
+ </dict>
1076
+ <dict>
1077
+ <key>Bounds</key>
1078
+ <string>{{136.5, 804.18963256128654}, {94, 62}}</string>
1079
+ <key>Class</key>
1080
+ <string>ShapedGraphic</string>
1081
+ <key>ID</key>
1082
+ <integer>49</integer>
1083
+ <key>Shape</key>
1084
+ <string>Rectangle</string>
1085
+ <key>Text</key>
1086
+ <dict>
1087
+ <key>Text</key>
1088
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
1089
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
1090
+ {\colortbl;\red255\green255\blue255;}
1091
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
1092
+
1093
+ \f0\fs24 \cf0 Client}</string>
1094
+ </dict>
1095
+ </dict>
1096
+ <dict>
1097
+ <key>Bounds</key>
1098
+ <string>{{147.5, 817.18963256128654}, {94, 62}}</string>
1099
+ <key>Class</key>
1100
+ <string>ShapedGraphic</string>
1101
+ <key>ID</key>
1102
+ <integer>48</integer>
1103
+ <key>Shape</key>
1104
+ <string>Rectangle</string>
1105
+ <key>Text</key>
1106
+ <dict>
1107
+ <key>Text</key>
1108
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
1109
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
1110
+ {\colortbl;\red255\green255\blue255;}
1111
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
1112
+
1113
+ \f0\fs24 \cf0 Client}</string>
1114
+ </dict>
1115
+ </dict>
1116
+ <dict>
1117
+ <key>Bounds</key>
1118
+ <string>{{596.10942656769259, 585.75681935825253}, {70, 24}}</string>
1119
+ <key>Class</key>
1120
+ <string>ShapedGraphic</string>
1121
+ <key>FitText</key>
1122
+ <string>YES</string>
1123
+ <key>Flow</key>
1124
+ <string>Resize</string>
1125
+ <key>FontInfo</key>
1126
+ <dict>
1127
+ <key>Color</key>
1128
+ <dict>
1129
+ <key>w</key>
1130
+ <string>0</string>
1131
+ </dict>
1132
+ <key>Font</key>
1133
+ <string>Helvetica</string>
1134
+ <key>Size</key>
1135
+ <real>12</real>
1136
+ </dict>
1137
+ <key>ID</key>
1138
+ <integer>47</integer>
1139
+ <key>Line</key>
1140
+ <dict>
1141
+ <key>ID</key>
1142
+ <integer>46</integer>
1143
+ <key>Position</key>
1144
+ <real>0.51966011524200439</real>
1145
+ <key>RotationType</key>
1146
+ <integer>0</integer>
1147
+ </dict>
1148
+ <key>Shape</key>
1149
+ <string>Rectangle</string>
1150
+ <key>Style</key>
1151
+ <dict>
1152
+ <key>shadow</key>
1153
+ <dict>
1154
+ <key>Draws</key>
1155
+ <string>NO</string>
1156
+ </dict>
1157
+ <key>stroke</key>
1158
+ <dict>
1159
+ <key>Draws</key>
1160
+ <string>NO</string>
1161
+ </dict>
1162
+ </dict>
1163
+ <key>Text</key>
1164
+ <dict>
1165
+ <key>Text</key>
1166
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
1167
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
1168
+ {\colortbl;\red255\green255\blue255;}
1169
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
1170
+
1171
+ \f0\fs24 \cf0 stage timer}</string>
1172
+ </dict>
1173
+ <key>Wrap</key>
1174
+ <string>NO</string>
1175
+ </dict>
1176
+ <dict>
1177
+ <key>Class</key>
1178
+ <string>LineGraphic</string>
1179
+ <key>Head</key>
1180
+ <dict>
1181
+ <key>ID</key>
1182
+ <integer>37</integer>
1183
+ </dict>
1184
+ <key>ID</key>
1185
+ <integer>46</integer>
1186
+ <key>Points</key>
1187
+ <array>
1188
+ <string>{565.99326488433144, 607.37511895508294}</string>
1189
+ <string>{624.0389944223441, 617}</string>
1190
+ <string>{624.03904480091819, 585}</string>
1191
+ <string>{565.99534676044527, 592.97461852316803}</string>
1192
+ </array>
1193
+ <key>Style</key>
1194
+ <dict>
1195
+ <key>stroke</key>
1196
+ <dict>
1197
+ <key>HeadArrow</key>
1198
+ <string>FilledArrow</string>
1199
+ <key>Legacy</key>
1200
+ <true/>
1201
+ <key>LineType</key>
1202
+ <integer>1</integer>
1203
+ <key>TailArrow</key>
1204
+ <string>0</string>
1205
+ </dict>
1206
+ </dict>
1207
+ <key>Tail</key>
1208
+ <dict>
1209
+ <key>ID</key>
1210
+ <integer>37</integer>
1211
+ </dict>
1212
+ </dict>
1213
+ <dict>
1214
+ <key>Bounds</key>
1215
+ <string>{{3.4046223128589759, 595.05680555338756}, {106, 38}}</string>
1216
+ <key>Class</key>
1217
+ <string>ShapedGraphic</string>
1218
+ <key>FitText</key>
1219
+ <string>YES</string>
1220
+ <key>Flow</key>
1221
+ <string>Resize</string>
1222
+ <key>FontInfo</key>
1223
+ <dict>
1224
+ <key>Color</key>
1225
+ <dict>
1226
+ <key>w</key>
1227
+ <string>0</string>
1228
+ </dict>
1229
+ <key>Font</key>
1230
+ <string>Helvetica</string>
1231
+ <key>Size</key>
1232
+ <real>12</real>
1233
+ </dict>
1234
+ <key>ID</key>
1235
+ <integer>45</integer>
1236
+ <key>Line</key>
1237
+ <dict>
1238
+ <key>ID</key>
1239
+ <integer>43</integer>
1240
+ <key>Position</key>
1241
+ <real>0.56444680690765381</real>
1242
+ <key>RotationType</key>
1243
+ <integer>0</integer>
1244
+ </dict>
1245
+ <key>Shape</key>
1246
+ <string>Rectangle</string>
1247
+ <key>Style</key>
1248
+ <dict>
1249
+ <key>shadow</key>
1250
+ <dict>
1251
+ <key>Draws</key>
1252
+ <string>NO</string>
1253
+ </dict>
1254
+ <key>stroke</key>
1255
+ <dict>
1256
+ <key>Draws</key>
1257
+ <string>NO</string>
1258
+ </dict>
1259
+ </dict>
1260
+ <key>Text</key>
1261
+ <dict>
1262
+ <key>Text</key>
1263
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
1264
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
1265
+ {\colortbl;\red255\green255\blue255;\red27\green0\blue220;}
1266
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
1267
+
1268
+ \f0\fs24 \cf2 TS msg\
1269
+ [:btn, str, uri, time]}</string>
1270
+ </dict>
1271
+ <key>Wrap</key>
1272
+ <string>NO</string>
1273
+ </dict>
1274
+ <dict>
1275
+ <key>Class</key>
1276
+ <string>LineGraphic</string>
1277
+ <key>Head</key>
1278
+ <dict>
1279
+ <key>ID</key>
1280
+ <integer>34</integer>
1281
+ </dict>
1282
+ <key>ID</key>
1283
+ <integer>43</integer>
1284
+ <key>Points</key>
1285
+ <array>
1286
+ <string>{151.02863887991282, 634.7975585501847}</string>
1287
+ <string>{68.5, 664}</string>
1288
+ <string>{64, 588}</string>
1289
+ <string>{140.00467072361783, 598.46218139515383}</string>
1290
+ </array>
1291
+ <key>Style</key>
1292
+ <dict>
1293
+ <key>stroke</key>
1294
+ <dict>
1295
+ <key>HeadArrow</key>
1296
+ <string>FilledArrow</string>
1297
+ <key>Legacy</key>
1298
+ <true/>
1299
+ <key>LineType</key>
1300
+ <integer>1</integer>
1301
+ <key>TailArrow</key>
1302
+ <string>0</string>
1303
+ </dict>
1304
+ </dict>
1305
+ <key>Tail</key>
1306
+ <dict>
1307
+ <key>ID</key>
1308
+ <integer>33</integer>
1309
+ </dict>
1310
+ </dict>
1311
+ <dict>
1312
+ <key>Bounds</key>
1313
+ <string>{{306.188964753081, 588.32273831690441}, {154, 38}}</string>
1314
+ <key>Class</key>
1315
+ <string>ShapedGraphic</string>
1316
+ <key>FitText</key>
1317
+ <string>YES</string>
1318
+ <key>Flow</key>
1319
+ <string>Resize</string>
1320
+ <key>FontInfo</key>
1321
+ <dict>
1322
+ <key>Color</key>
1323
+ <dict>
1324
+ <key>w</key>
1325
+ <string>0</string>
1326
+ </dict>
1327
+ <key>Font</key>
1328
+ <string>Helvetica</string>
1329
+ <key>Size</key>
1330
+ <real>12</real>
1331
+ </dict>
1332
+ <key>ID</key>
1333
+ <integer>42</integer>
1334
+ <key>Line</key>
1335
+ <dict>
1336
+ <key>ID</key>
1337
+ <integer>41</integer>
1338
+ <key>Position</key>
1339
+ <real>0.60972791910171509</real>
1340
+ <key>RotationType</key>
1341
+ <integer>0</integer>
1342
+ </dict>
1343
+ <key>Shape</key>
1344
+ <string>Rectangle</string>
1345
+ <key>Style</key>
1346
+ <dict>
1347
+ <key>shadow</key>
1348
+ <dict>
1349
+ <key>Draws</key>
1350
+ <string>NO</string>
1351
+ </dict>
1352
+ <key>stroke</key>
1353
+ <dict>
1354
+ <key>Draws</key>
1355
+ <string>NO</string>
1356
+ </dict>
1357
+ </dict>
1358
+ <key>Text</key>
1359
+ <dict>
1360
+ <key>Text</key>
1361
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
1362
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
1363
+ {\colortbl;\red255\green255\blue255;\red7\green0\blue255;}
1364
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
1365
+
1366
+ \f0\fs24 \cf2 TS msg\
1367
+ [:action, str, uri, timestamp]}</string>
1368
+ </dict>
1369
+ <key>Wrap</key>
1370
+ <string>NO</string>
1371
+ </dict>
1372
+ <dict>
1373
+ <key>Class</key>
1374
+ <string>LineGraphic</string>
1375
+ <key>Head</key>
1376
+ <dict>
1377
+ <key>ID</key>
1378
+ <integer>37</integer>
1379
+ </dict>
1380
+ <key>ID</key>
1381
+ <integer>41</integer>
1382
+ <key>Points</key>
1383
+ <array>
1384
+ <string>{245.99916651330452, 615.25397220527213}</string>
1385
+ <string>{471.00083355504353, 602.24614750199726}</string>
1386
+ </array>
1387
+ <key>Style</key>
1388
+ <dict>
1389
+ <key>stroke</key>
1390
+ <dict>
1391
+ <key>HeadArrow</key>
1392
+ <string>FilledArrow</string>
1393
+ <key>Legacy</key>
1394
+ <true/>
1395
+ <key>LineType</key>
1396
+ <integer>1</integer>
1397
+ <key>TailArrow</key>
1398
+ <string>0</string>
1399
+ </dict>
1400
+ </dict>
1401
+ <key>Tail</key>
1402
+ <dict>
1403
+ <key>ID</key>
1404
+ <integer>33</integer>
1405
+ </dict>
1406
+ </dict>
1407
+ <dict>
1408
+ <key>Bounds</key>
1409
+ <string>{{323.31321874566527, 462.15428047256364}, {70, 38}}</string>
1410
+ <key>Class</key>
1411
+ <string>ShapedGraphic</string>
1412
+ <key>FitText</key>
1413
+ <string>YES</string>
1414
+ <key>Flow</key>
1415
+ <string>Resize</string>
1416
+ <key>FontInfo</key>
1417
+ <dict>
1418
+ <key>Color</key>
1419
+ <dict>
1420
+ <key>w</key>
1421
+ <string>0</string>
1422
+ </dict>
1423
+ <key>Font</key>
1424
+ <string>Helvetica</string>
1425
+ <key>Size</key>
1426
+ <real>12</real>
1427
+ </dict>
1428
+ <key>ID</key>
1429
+ <integer>40</integer>
1430
+ <key>Line</key>
1431
+ <dict>
1432
+ <key>ID</key>
1433
+ <integer>39</integer>
1434
+ <key>Position</key>
1435
+ <real>0.4662901759147644</real>
1436
+ <key>RotationType</key>
1437
+ <integer>0</integer>
1438
+ </dict>
1439
+ <key>Shape</key>
1440
+ <string>Rectangle</string>
1441
+ <key>Style</key>
1442
+ <dict>
1443
+ <key>shadow</key>
1444
+ <dict>
1445
+ <key>Draws</key>
1446
+ <string>NO</string>
1447
+ </dict>
1448
+ <key>stroke</key>
1449
+ <dict>
1450
+ <key>Draws</key>
1451
+ <string>NO</string>
1452
+ </dict>
1453
+ </dict>
1454
+ <key>Text</key>
1455
+ <dict>
1456
+ <key>Text</key>
1457
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
1458
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
1459
+ {\colortbl;\red255\green255\blue255;\red27\green0\blue220;}
1460
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
1461
+
1462
+ \f0\fs24 \cf2 DRb msg\
1463
+ start_stage}</string>
1464
+ </dict>
1465
+ <key>Wrap</key>
1466
+ <string>NO</string>
1467
+ </dict>
1468
+ <dict>
1469
+ <key>Class</key>
1470
+ <string>LineGraphic</string>
1471
+ <key>Head</key>
1472
+ <dict>
1473
+ <key>ID</key>
1474
+ <integer>34</integer>
1475
+ </dict>
1476
+ <key>ID</key>
1477
+ <integer>39</integer>
1478
+ <key>Points</key>
1479
+ <array>
1480
+ <string>{469.83900830292595, 400.29349469305077}</string>
1481
+ <string>{230.66221385627, 573.7065107851887}</string>
1482
+ </array>
1483
+ <key>Style</key>
1484
+ <dict>
1485
+ <key>stroke</key>
1486
+ <dict>
1487
+ <key>HeadArrow</key>
1488
+ <string>FilledArrow</string>
1489
+ <key>Legacy</key>
1490
+ <true/>
1491
+ <key>LineType</key>
1492
+ <integer>1</integer>
1493
+ <key>TailArrow</key>
1494
+ <string>0</string>
1495
+ </dict>
1496
+ </dict>
1497
+ <key>Tail</key>
1498
+ <dict>
1499
+ <key>ID</key>
1500
+ <integer>11</integer>
1501
+ </dict>
1502
+ </dict>
1503
+ <dict>
1504
+ <key>Bounds</key>
1505
+ <string>{{455, 639.5}, {127, 42}}</string>
1506
+ <key>Class</key>
1507
+ <string>ShapedGraphic</string>
1508
+ <key>FitText</key>
1509
+ <string>YES</string>
1510
+ <key>Flow</key>
1511
+ <string>Resize</string>
1512
+ <key>ID</key>
1513
+ <integer>38</integer>
1514
+ <key>Shape</key>
1515
+ <string>Rectangle</string>
1516
+ <key>Style</key>
1517
+ <dict>
1518
+ <key>fill</key>
1519
+ <dict>
1520
+ <key>Draws</key>
1521
+ <string>NO</string>
1522
+ </dict>
1523
+ <key>shadow</key>
1524
+ <dict>
1525
+ <key>Draws</key>
1526
+ <string>NO</string>
1527
+ </dict>
1528
+ <key>stroke</key>
1529
+ <dict>
1530
+ <key>Draws</key>
1531
+ <string>NO</string>
1532
+ </dict>
1533
+ </dict>
1534
+ <key>Text</key>
1535
+ <dict>
1536
+ <key>Pad</key>
1537
+ <integer>0</integer>
1538
+ <key>Text</key>
1539
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
1540
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
1541
+ {\colortbl;\red255\green255\blue255;\red27\green0\blue220;}
1542
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
1543
+
1544
+ \f0\fs24 \cf2 display stage stats\
1545
+ \cf0 \
1546
+ \cf2 no registrations allowed}</string>
1547
+ <key>VerticalPad</key>
1548
+ <integer>0</integer>
1549
+ </dict>
1550
+ <key>Wrap</key>
1551
+ <string>NO</string>
1552
+ </dict>
1553
+ <dict>
1554
+ <key>Bounds</key>
1555
+ <string>{{471.5, 568.5}, {94, 62}}</string>
1556
+ <key>Class</key>
1557
+ <string>ShapedGraphic</string>
1558
+ <key>ID</key>
1559
+ <integer>37</integer>
1560
+ <key>Shape</key>
1561
+ <string>Rectangle</string>
1562
+ <key>Text</key>
1563
+ <dict>
1564
+ <key>Text</key>
1565
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
1566
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
1567
+ {\colortbl;\red255\green255\blue255;}
1568
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
1569
+
1570
+ \f0\fs24 \cf0 GM}</string>
1571
+ </dict>
1572
+ </dict>
1573
+ <dict>
1574
+ <key>Bounds</key>
1575
+ <string>{{144.5, 665}, {101, 28}}</string>
1576
+ <key>Class</key>
1577
+ <string>ShapedGraphic</string>
1578
+ <key>FitText</key>
1579
+ <string>YES</string>
1580
+ <key>Flow</key>
1581
+ <string>Resize</string>
1582
+ <key>ID</key>
1583
+ <integer>36</integer>
1584
+ <key>Shape</key>
1585
+ <string>Rectangle</string>
1586
+ <key>Style</key>
1587
+ <dict>
1588
+ <key>fill</key>
1589
+ <dict>
1590
+ <key>Draws</key>
1591
+ <string>NO</string>
1592
+ </dict>
1593
+ <key>shadow</key>
1594
+ <dict>
1595
+ <key>Draws</key>
1596
+ <string>NO</string>
1597
+ </dict>
1598
+ <key>stroke</key>
1599
+ <dict>
1600
+ <key>Draws</key>
1601
+ <string>NO</string>
1602
+ </dict>
1603
+ </dict>
1604
+ <key>Text</key>
1605
+ <dict>
1606
+ <key>Pad</key>
1607
+ <integer>0</integer>
1608
+ <key>Text</key>
1609
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
1610
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
1611
+ {\colortbl;\red255\green255\blue255;\red27\green0\blue220;}
1612
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
1613
+
1614
+ \f0\fs24 \cf2 get bridge from gm\
1615
+ display btns}</string>
1616
+ <key>VerticalPad</key>
1617
+ <integer>0</integer>
1618
+ </dict>
1619
+ <key>Wrap</key>
1620
+ <string>NO</string>
1621
+ </dict>
1622
+ <dict>
1623
+ <key>Bounds</key>
1624
+ <string>{{164, 531}, {33, 14}}</string>
1625
+ <key>Class</key>
1626
+ <string>ShapedGraphic</string>
1627
+ <key>FitText</key>
1628
+ <string>YES</string>
1629
+ <key>Flow</key>
1630
+ <string>Resize</string>
1631
+ <key>ID</key>
1632
+ <integer>35</integer>
1633
+ <key>Shape</key>
1634
+ <string>Rectangle</string>
1635
+ <key>Style</key>
1636
+ <dict>
1637
+ <key>fill</key>
1638
+ <dict>
1639
+ <key>Draws</key>
1640
+ <string>NO</string>
1641
+ </dict>
1642
+ <key>shadow</key>
1643
+ <dict>
1644
+ <key>Draws</key>
1645
+ <string>NO</string>
1646
+ </dict>
1647
+ <key>stroke</key>
1648
+ <dict>
1649
+ <key>Draws</key>
1650
+ <string>NO</string>
1651
+ </dict>
1652
+ </dict>
1653
+ <key>Text</key>
1654
+ <dict>
1655
+ <key>Pad</key>
1656
+ <integer>0</integer>
1657
+ <key>Text</key>
1658
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
1659
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
1660
+ {\colortbl;\red255\green255\blue255;}
1661
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
1662
+
1663
+ \f0\b\fs24 \cf0 Stage}</string>
1664
+ <key>VerticalPad</key>
1665
+ <integer>0</integer>
1666
+ </dict>
1667
+ <key>Wrap</key>
1668
+ <string>NO</string>
1669
+ </dict>
1670
+ <dict>
1671
+ <key>Bounds</key>
1672
+ <string>{{140.5, 574}, {94, 62}}</string>
1673
+ <key>Class</key>
1674
+ <string>ShapedGraphic</string>
1675
+ <key>ID</key>
1676
+ <integer>34</integer>
1677
+ <key>Shape</key>
1678
+ <string>Rectangle</string>
1679
+ <key>Text</key>
1680
+ <dict>
1681
+ <key>Text</key>
1682
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
1683
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
1684
+ {\colortbl;\red255\green255\blue255;}
1685
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
1686
+
1687
+ \f0\fs24 \cf0 Client}</string>
1688
+ </dict>
1689
+ </dict>
1690
+ <dict>
1691
+ <key>Bounds</key>
1692
+ <string>{{151.5, 587}, {94, 62}}</string>
1693
+ <key>Class</key>
1694
+ <string>ShapedGraphic</string>
1695
+ <key>ID</key>
1696
+ <integer>33</integer>
1697
+ <key>Shape</key>
1698
+ <string>Rectangle</string>
1699
+ <key>Text</key>
1700
+ <dict>
1701
+ <key>Text</key>
1702
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
1703
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
1704
+ {\colortbl;\red255\green255\blue255;}
1705
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
1706
+
1707
+ \f0\fs24 \cf0 Client}</string>
1708
+ </dict>
1709
+ </dict>
1710
+ <dict>
1711
+ <key>Bounds</key>
1712
+ <string>{{467, 409}, {92, 28}}</string>
1713
+ <key>Class</key>
1714
+ <string>ShapedGraphic</string>
1715
+ <key>FitText</key>
1716
+ <string>YES</string>
1717
+ <key>Flow</key>
1718
+ <string>Resize</string>
1719
+ <key>ID</key>
1720
+ <integer>32</integer>
1721
+ <key>Shape</key>
1722
+ <string>Rectangle</string>
1723
+ <key>Style</key>
1724
+ <dict>
1725
+ <key>fill</key>
1726
+ <dict>
1727
+ <key>Draws</key>
1728
+ <string>NO</string>
1729
+ </dict>
1730
+ <key>shadow</key>
1731
+ <dict>
1732
+ <key>Draws</key>
1733
+ <string>NO</string>
1734
+ </dict>
1735
+ <key>stroke</key>
1736
+ <dict>
1737
+ <key>Draws</key>
1738
+ <string>NO</string>
1739
+ </dict>
1740
+ </dict>
1741
+ <key>Text</key>
1742
+ <dict>
1743
+ <key>Pad</key>
1744
+ <integer>0</integer>
1745
+ <key>Text</key>
1746
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
1747
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
1748
+ {\colortbl;\red255\green255\blue255;}
1749
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
1750
+
1751
+ \f0\fs24 \cf0 wait for start cmd\
1752
+ from each user}</string>
1753
+ <key>VerticalPad</key>
1754
+ <integer>0</integer>
1755
+ </dict>
1756
+ <key>Wrap</key>
1757
+ <string>NO</string>
1758
+ </dict>
1759
+ <dict>
1760
+ <key>Bounds</key>
1761
+ <string>{{287.21227705478668, 350}, {126, 38}}</string>
1762
+ <key>Class</key>
1763
+ <string>ShapedGraphic</string>
1764
+ <key>FitText</key>
1765
+ <string>YES</string>
1766
+ <key>Flow</key>
1767
+ <string>Resize</string>
1768
+ <key>FontInfo</key>
1769
+ <dict>
1770
+ <key>Color</key>
1771
+ <dict>
1772
+ <key>w</key>
1773
+ <string>0</string>
1774
+ </dict>
1775
+ <key>Font</key>
1776
+ <string>Helvetica</string>
1777
+ <key>Size</key>
1778
+ <real>12</real>
1779
+ </dict>
1780
+ <key>ID</key>
1781
+ <integer>31</integer>
1782
+ <key>Line</key>
1783
+ <dict>
1784
+ <key>ID</key>
1785
+ <integer>30</integer>
1786
+ <key>Position</key>
1787
+ <real>0.48301470279693604</real>
1788
+ <key>RotationType</key>
1789
+ <integer>0</integer>
1790
+ </dict>
1791
+ <key>Shape</key>
1792
+ <string>Rectangle</string>
1793
+ <key>Style</key>
1794
+ <dict>
1795
+ <key>shadow</key>
1796
+ <dict>
1797
+ <key>Draws</key>
1798
+ <string>NO</string>
1799
+ </dict>
1800
+ <key>stroke</key>
1801
+ <dict>
1802
+ <key>Draws</key>
1803
+ <string>NO</string>
1804
+ </dict>
1805
+ </dict>
1806
+ <key>Text</key>
1807
+ <dict>
1808
+ <key>Text</key>
1809
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
1810
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
1811
+ {\colortbl;\red255\green255\blue255;}
1812
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
1813
+
1814
+ \f0\fs24 \cf0 TS msg\
1815
+ [:start, uri, timestamp]}</string>
1816
+ </dict>
1817
+ <key>Wrap</key>
1818
+ <string>NO</string>
1819
+ </dict>
1820
+ <dict>
1821
+ <key>Class</key>
1822
+ <string>LineGraphic</string>
1823
+ <key>Head</key>
1824
+ <dict>
1825
+ <key>ID</key>
1826
+ <integer>11</integer>
1827
+ </dict>
1828
+ <key>ID</key>
1829
+ <integer>30</integer>
1830
+ <key>Points</key>
1831
+ <array>
1832
+ <string>{242.5, 369}</string>
1833
+ <string>{353, 369}</string>
1834
+ <string>{465.5, 369}</string>
1835
+ </array>
1836
+ <key>Style</key>
1837
+ <dict>
1838
+ <key>stroke</key>
1839
+ <dict>
1840
+ <key>HeadArrow</key>
1841
+ <string>FilledArrow</string>
1842
+ <key>Legacy</key>
1843
+ <true/>
1844
+ <key>LineType</key>
1845
+ <integer>1</integer>
1846
+ <key>TailArrow</key>
1847
+ <string>0</string>
1848
+ </dict>
1849
+ </dict>
1850
+ <key>Tail</key>
1851
+ <dict>
1852
+ <key>ID</key>
1853
+ <integer>10</integer>
1854
+ </dict>
1855
+ </dict>
1856
+ <dict>
1857
+ <key>Class</key>
1858
+ <string>LineGraphic</string>
1859
+ <key>Head</key>
1860
+ <dict>
1861
+ <key>ID</key>
1862
+ <integer>12</integer>
1863
+ </dict>
1864
+ <key>ID</key>
1865
+ <integer>27</integer>
1866
+ <key>Points</key>
1867
+ <array>
1868
+ <string>{463.565960157181, 196.12588822815644}</string>
1869
+ <string>{231.434039842819, 328.87411177184362}</string>
1870
+ </array>
1871
+ <key>Style</key>
1872
+ <dict>
1873
+ <key>stroke</key>
1874
+ <dict>
1875
+ <key>HeadArrow</key>
1876
+ <string>FilledArrow</string>
1877
+ <key>Legacy</key>
1878
+ <true/>
1879
+ <key>LineType</key>
1880
+ <integer>1</integer>
1881
+ <key>TailArrow</key>
1882
+ <string>0</string>
1883
+ </dict>
1884
+ </dict>
1885
+ <key>Tail</key>
1886
+ <dict>
1887
+ <key>ID</key>
1888
+ <integer>3</integer>
1889
+ </dict>
1890
+ </dict>
1891
+ <dict>
1892
+ <key>Bounds</key>
1893
+ <string>{{101, 416}, {181, 70}}</string>
1894
+ <key>Class</key>
1895
+ <string>ShapedGraphic</string>
1896
+ <key>FitText</key>
1897
+ <string>YES</string>
1898
+ <key>Flow</key>
1899
+ <string>Resize</string>
1900
+ <key>ID</key>
1901
+ <integer>26</integer>
1902
+ <key>Shape</key>
1903
+ <string>Rectangle</string>
1904
+ <key>Style</key>
1905
+ <dict>
1906
+ <key>fill</key>
1907
+ <dict>
1908
+ <key>Draws</key>
1909
+ <string>NO</string>
1910
+ </dict>
1911
+ <key>shadow</key>
1912
+ <dict>
1913
+ <key>Draws</key>
1914
+ <string>NO</string>
1915
+ </dict>
1916
+ <key>stroke</key>
1917
+ <dict>
1918
+ <key>Draws</key>
1919
+ <string>NO</string>
1920
+ </dict>
1921
+ </dict>
1922
+ <key>Text</key>
1923
+ <dict>
1924
+ <key>Pad</key>
1925
+ <integer>0</integer>
1926
+ <key>Text</key>
1927
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
1928
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
1929
+ {\colortbl;\red255\green255\blue255;\red7\green0\blue255;}
1930
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
1931
+
1932
+ \f0\fs24 \cf2 display registered users\
1933
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
1934
+ \cf0 start button\
1935
+ \
1936
+ stretch:\
1937
+ display which users have started?}</string>
1938
+ <key>VerticalPad</key>
1939
+ <integer>0</integer>
1940
+ </dict>
1941
+ <key>Wrap</key>
1942
+ <string>NO</string>
1943
+ </dict>
1944
+ <dict>
1945
+ <key>Bounds</key>
1946
+ <string>{{140.5, 288}, {87, 28}}</string>
1947
+ <key>Class</key>
1948
+ <string>ShapedGraphic</string>
1949
+ <key>FitText</key>
1950
+ <string>YES</string>
1951
+ <key>Flow</key>
1952
+ <string>Resize</string>
1953
+ <key>ID</key>
1954
+ <integer>24</integer>
1955
+ <key>Shape</key>
1956
+ <string>Rectangle</string>
1957
+ <key>Style</key>
1958
+ <dict>
1959
+ <key>fill</key>
1960
+ <dict>
1961
+ <key>Draws</key>
1962
+ <string>NO</string>
1963
+ </dict>
1964
+ <key>shadow</key>
1965
+ <dict>
1966
+ <key>Draws</key>
1967
+ <string>NO</string>
1968
+ </dict>
1969
+ <key>stroke</key>
1970
+ <dict>
1971
+ <key>Draws</key>
1972
+ <string>NO</string>
1973
+ </dict>
1974
+ </dict>
1975
+ <key>Text</key>
1976
+ <dict>
1977
+ <key>Pad</key>
1978
+ <integer>0</integer>
1979
+ <key>Text</key>
1980
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
1981
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
1982
+ {\colortbl;\red255\green255\blue255;}
1983
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
1984
+
1985
+ \f0\b\fs24 \cf0 Waiting Room /\
1986
+ Pub?}</string>
1987
+ <key>VerticalPad</key>
1988
+ <integer>0</integer>
1989
+ </dict>
1990
+ <key>Wrap</key>
1991
+ <string>NO</string>
1992
+ </dict>
1993
+ <dict>
1994
+ <key>Bounds</key>
1995
+ <string>{{447.5, 211}, {127, 14}}</string>
1996
+ <key>Class</key>
1997
+ <string>ShapedGraphic</string>
1998
+ <key>FitText</key>
1999
+ <string>YES</string>
2000
+ <key>Flow</key>
2001
+ <string>Resize</string>
2002
+ <key>ID</key>
2003
+ <integer>21</integer>
2004
+ <key>Shape</key>
2005
+ <string>Rectangle</string>
2006
+ <key>Style</key>
2007
+ <dict>
2008
+ <key>fill</key>
2009
+ <dict>
2010
+ <key>Draws</key>
2011
+ <string>NO</string>
2012
+ </dict>
2013
+ <key>shadow</key>
2014
+ <dict>
2015
+ <key>Draws</key>
2016
+ <string>NO</string>
2017
+ </dict>
2018
+ <key>stroke</key>
2019
+ <dict>
2020
+ <key>Draws</key>
2021
+ <string>NO</string>
2022
+ </dict>
2023
+ </dict>
2024
+ <key>Text</key>
2025
+ <dict>
2026
+ <key>Pad</key>
2027
+ <integer>0</integer>
2028
+ <key>Text</key>
2029
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
2030
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
2031
+ {\colortbl;\red255\green255\blue255;\red7\green0\blue255;}
2032
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
2033
+
2034
+ \f0\fs24 \cf2 display registered users}</string>
2035
+ <key>VerticalPad</key>
2036
+ <integer>0</integer>
2037
+ </dict>
2038
+ <key>Wrap</key>
2039
+ <string>NO</string>
2040
+ </dict>
2041
+ <dict>
2042
+ <key>Bounds</key>
2043
+ <string>{{129, 146}, {101, 98}}</string>
2044
+ <key>Class</key>
2045
+ <string>ShapedGraphic</string>
2046
+ <key>FitText</key>
2047
+ <string>YES</string>
2048
+ <key>Flow</key>
2049
+ <string>Resize</string>
2050
+ <key>ID</key>
2051
+ <integer>18</integer>
2052
+ <key>Shape</key>
2053
+ <string>Rectangle</string>
2054
+ <key>Style</key>
2055
+ <dict>
2056
+ <key>fill</key>
2057
+ <dict>
2058
+ <key>Draws</key>
2059
+ <string>NO</string>
2060
+ </dict>
2061
+ <key>shadow</key>
2062
+ <dict>
2063
+ <key>Draws</key>
2064
+ <string>NO</string>
2065
+ </dict>
2066
+ <key>stroke</key>
2067
+ <dict>
2068
+ <key>Draws</key>
2069
+ <string>NO</string>
2070
+ </dict>
2071
+ </dict>
2072
+ <key>Text</key>
2073
+ <dict>
2074
+ <key>Pad</key>
2075
+ <integer>0</integer>
2076
+ <key>Text</key>
2077
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
2078
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
2079
+ {\colortbl;\red255\green255\blue255;\red7\green0\blue255;}
2080
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
2081
+
2082
+ \f0\fs24 \cf2 choose name\
2083
+ choose game\
2084
+ - refresh\
2085
+ register with game\
2086
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
2087
+ \cf0 \
2088
+ stretch:\
2089
+ character selection}</string>
2090
+ <key>VerticalPad</key>
2091
+ <integer>0</integer>
2092
+ </dict>
2093
+ <key>Wrap</key>
2094
+ <string>NO</string>
2095
+ </dict>
2096
+ <dict>
2097
+ <key>Bounds</key>
2098
+ <string>{{140.5, 48}, {85, 14}}</string>
2099
+ <key>Class</key>
2100
+ <string>ShapedGraphic</string>
2101
+ <key>FitText</key>
2102
+ <string>YES</string>
2103
+ <key>Flow</key>
2104
+ <string>Resize</string>
2105
+ <key>ID</key>
2106
+ <integer>17</integer>
2107
+ <key>Shape</key>
2108
+ <string>Rectangle</string>
2109
+ <key>Style</key>
2110
+ <dict>
2111
+ <key>fill</key>
2112
+ <dict>
2113
+ <key>Draws</key>
2114
+ <string>NO</string>
2115
+ </dict>
2116
+ <key>shadow</key>
2117
+ <dict>
2118
+ <key>Draws</key>
2119
+ <string>NO</string>
2120
+ </dict>
2121
+ <key>stroke</key>
2122
+ <dict>
2123
+ <key>Draws</key>
2124
+ <string>NO</string>
2125
+ </dict>
2126
+ </dict>
2127
+ <key>Text</key>
2128
+ <dict>
2129
+ <key>Pad</key>
2130
+ <integer>0</integer>
2131
+ <key>Text</key>
2132
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
2133
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
2134
+ {\colortbl;\red255\green255\blue255;}
2135
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
2136
+
2137
+ \f0\b\fs24 \cf0 Launch screen}</string>
2138
+ <key>VerticalPad</key>
2139
+ <integer>0</integer>
2140
+ </dict>
2141
+ <key>Wrap</key>
2142
+ <string>NO</string>
2143
+ </dict>
2144
+ <dict>
2145
+ <key>Bounds</key>
2146
+ <string>{{311.32313376144157, 122.4303717998676}, {51, 24}}</string>
2147
+ <key>Class</key>
2148
+ <string>ShapedGraphic</string>
2149
+ <key>FitText</key>
2150
+ <string>YES</string>
2151
+ <key>Flow</key>
2152
+ <string>Resize</string>
2153
+ <key>FontInfo</key>
2154
+ <dict>
2155
+ <key>Color</key>
2156
+ <dict>
2157
+ <key>w</key>
2158
+ <string>0</string>
2159
+ </dict>
2160
+ <key>Font</key>
2161
+ <string>Helvetica</string>
2162
+ <key>Size</key>
2163
+ <real>12</real>
2164
+ </dict>
2165
+ <key>ID</key>
2166
+ <integer>14</integer>
2167
+ <key>Line</key>
2168
+ <dict>
2169
+ <key>ID</key>
2170
+ <integer>13</integer>
2171
+ <key>Position</key>
2172
+ <real>0.45515695214271545</real>
2173
+ <key>RotationType</key>
2174
+ <integer>0</integer>
2175
+ </dict>
2176
+ <key>Shape</key>
2177
+ <string>Rectangle</string>
2178
+ <key>Style</key>
2179
+ <dict>
2180
+ <key>shadow</key>
2181
+ <dict>
2182
+ <key>Draws</key>
2183
+ <string>NO</string>
2184
+ </dict>
2185
+ <key>stroke</key>
2186
+ <dict>
2187
+ <key>Draws</key>
2188
+ <string>NO</string>
2189
+ </dict>
2190
+ </dict>
2191
+ <key>Text</key>
2192
+ <dict>
2193
+ <key>Text</key>
2194
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
2195
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
2196
+ {\colortbl;\red255\green255\blue255;\red7\green0\blue255;}
2197
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
2198
+
2199
+ \f0\fs24 \cf2 register}</string>
2200
+ </dict>
2201
+ <key>Wrap</key>
2202
+ <string>NO</string>
2203
+ </dict>
2204
+ <dict>
2205
+ <key>Class</key>
2206
+ <string>LineGraphic</string>
2207
+ <key>Head</key>
2208
+ <dict>
2209
+ <key>ID</key>
2210
+ <integer>3</integer>
2211
+ </dict>
2212
+ <key>ID</key>
2213
+ <integer>13</integer>
2214
+ <key>Points</key>
2215
+ <array>
2216
+ <string>{230.9904339057299, 113.42552845897957}</string>
2217
+ <string>{463.50956682787756, 159.57410037907167}</string>
2218
+ </array>
2219
+ <key>Style</key>
2220
+ <dict>
2221
+ <key>stroke</key>
2222
+ <dict>
2223
+ <key>HeadArrow</key>
2224
+ <string>FilledArrow</string>
2225
+ <key>Legacy</key>
2226
+ <true/>
2227
+ <key>LineType</key>
2228
+ <integer>1</integer>
2229
+ <key>TailArrow</key>
2230
+ <string>0</string>
2231
+ </dict>
2232
+ </dict>
2233
+ <key>Tail</key>
2234
+ <dict>
2235
+ <key>ID</key>
2236
+ <integer>1</integer>
2237
+ </dict>
2238
+ </dict>
2239
+ <dict>
2240
+ <key>Bounds</key>
2241
+ <string>{{137, 325}, {94, 62}}</string>
2242
+ <key>Class</key>
2243
+ <string>ShapedGraphic</string>
2244
+ <key>ID</key>
2245
+ <integer>12</integer>
2246
+ <key>Shape</key>
2247
+ <string>Rectangle</string>
2248
+ <key>Text</key>
2249
+ <dict>
2250
+ <key>Text</key>
2251
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
2252
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
2253
+ {\colortbl;\red255\green255\blue255;}
2254
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
2255
+
2256
+ \f0\fs24 \cf0 Client}</string>
2257
+ </dict>
2258
+ </dict>
2259
+ <dict>
2260
+ <key>Bounds</key>
2261
+ <string>{{466, 338}, {94, 62}}</string>
2262
+ <key>Class</key>
2263
+ <string>ShapedGraphic</string>
2264
+ <key>ID</key>
2265
+ <integer>11</integer>
2266
+ <key>Shape</key>
2267
+ <string>Rectangle</string>
2268
+ <key>Text</key>
2269
+ <dict>
2270
+ <key>Text</key>
2271
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
2272
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
2273
+ {\colortbl;\red255\green255\blue255;}
2274
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
2275
+
2276
+ \f0\fs24 \cf0 GM}</string>
2277
+ </dict>
2278
+ </dict>
2279
+ <dict>
2280
+ <key>Bounds</key>
2281
+ <string>{{148, 338}, {94, 62}}</string>
2282
+ <key>Class</key>
2283
+ <string>ShapedGraphic</string>
2284
+ <key>ID</key>
2285
+ <integer>10</integer>
2286
+ <key>Shape</key>
2287
+ <string>Rectangle</string>
2288
+ <key>Text</key>
2289
+ <dict>
2290
+ <key>Text</key>
2291
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
2292
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
2293
+ {\colortbl;\red255\green255\blue255;}
2294
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
2295
+
2296
+ \f0\fs24 \cf0 Client}</string>
2297
+ </dict>
2298
+ </dict>
2299
+ <dict>
2300
+ <key>Bounds</key>
2301
+ <string>{{572.1289910375674, 143.30635623250981}, {82, 24}}</string>
2302
+ <key>Class</key>
2303
+ <string>ShapedGraphic</string>
2304
+ <key>FitText</key>
2305
+ <string>YES</string>
2306
+ <key>Flow</key>
2307
+ <string>Resize</string>
2308
+ <key>FontInfo</key>
2309
+ <dict>
2310
+ <key>Color</key>
2311
+ <dict>
2312
+ <key>w</key>
2313
+ <string>0</string>
2314
+ </dict>
2315
+ <key>Font</key>
2316
+ <string>Helvetica</string>
2317
+ <key>Size</key>
2318
+ <real>12</real>
2319
+ </dict>
2320
+ <key>ID</key>
2321
+ <integer>8</integer>
2322
+ <key>Line</key>
2323
+ <dict>
2324
+ <key>ID</key>
2325
+ <integer>7</integer>
2326
+ <key>Position</key>
2327
+ <real>0.27626538276672363</real>
2328
+ <key>RotationType</key>
2329
+ <integer>0</integer>
2330
+ </dict>
2331
+ <key>Shape</key>
2332
+ <string>Rectangle</string>
2333
+ <key>Style</key>
2334
+ <dict>
2335
+ <key>shadow</key>
2336
+ <dict>
2337
+ <key>Draws</key>
2338
+ <string>NO</string>
2339
+ </dict>
2340
+ <key>stroke</key>
2341
+ <dict>
2342
+ <key>Draws</key>
2343
+ <string>NO</string>
2344
+ </dict>
2345
+ </dict>
2346
+ <key>Text</key>
2347
+ <dict>
2348
+ <key>Text</key>
2349
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
2350
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
2351
+ {\colortbl;\red255\green255\blue255;\red7\green0\blue255;}
2352
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
2353
+
2354
+ \f0\fs24 \cf2 wait for users}</string>
2355
+ </dict>
2356
+ <key>Wrap</key>
2357
+ <string>NO</string>
2358
+ </dict>
2359
+ <dict>
2360
+ <key>Class</key>
2361
+ <string>LineGraphic</string>
2362
+ <key>Head</key>
2363
+ <dict>
2364
+ <key>ID</key>
2365
+ <integer>3</integer>
2366
+ </dict>
2367
+ <key>ID</key>
2368
+ <integer>7</integer>
2369
+ <key>Points</key>
2370
+ <array>
2371
+ <string>{558.49729988621061, 164.04376001187367}</string>
2372
+ <string>{626, 157}</string>
2373
+ <string>{618, 200}</string>
2374
+ <string>{558.48025056041206, 182.75596044273618}</string>
2375
+ </array>
2376
+ <key>Style</key>
2377
+ <dict>
2378
+ <key>stroke</key>
2379
+ <dict>
2380
+ <key>HeadArrow</key>
2381
+ <string>FilledArrow</string>
2382
+ <key>Legacy</key>
2383
+ <true/>
2384
+ <key>LineType</key>
2385
+ <integer>1</integer>
2386
+ <key>TailArrow</key>
2387
+ <string>0</string>
2388
+ </dict>
2389
+ </dict>
2390
+ <key>Tail</key>
2391
+ <dict>
2392
+ <key>ID</key>
2393
+ <integer>3</integer>
2394
+ </dict>
2395
+ </dict>
2396
+ <dict>
2397
+ <key>Bounds</key>
2398
+ <string>{{253.72304673288687, 73.554156625334272}, {72, 24}}</string>
2399
+ <key>Class</key>
2400
+ <string>ShapedGraphic</string>
2401
+ <key>FitText</key>
2402
+ <string>YES</string>
2403
+ <key>Flow</key>
2404
+ <string>Resize</string>
2405
+ <key>FontInfo</key>
2406
+ <dict>
2407
+ <key>Color</key>
2408
+ <dict>
2409
+ <key>w</key>
2410
+ <string>0</string>
2411
+ </dict>
2412
+ <key>Font</key>
2413
+ <string>Helvetica</string>
2414
+ <key>Size</key>
2415
+ <real>12</real>
2416
+ </dict>
2417
+ <key>ID</key>
2418
+ <integer>6</integer>
2419
+ <key>Line</key>
2420
+ <dict>
2421
+ <key>ID</key>
2422
+ <integer>5</integer>
2423
+ <key>Position</key>
2424
+ <real>0.40715456008911133</real>
2425
+ <key>RotationType</key>
2426
+ <integer>0</integer>
2427
+ </dict>
2428
+ <key>Shape</key>
2429
+ <string>Rectangle</string>
2430
+ <key>Style</key>
2431
+ <dict>
2432
+ <key>shadow</key>
2433
+ <dict>
2434
+ <key>Draws</key>
2435
+ <string>NO</string>
2436
+ </dict>
2437
+ <key>stroke</key>
2438
+ <dict>
2439
+ <key>Draws</key>
2440
+ <string>NO</string>
2441
+ </dict>
2442
+ </dict>
2443
+ <key>Text</key>
2444
+ <dict>
2445
+ <key>Text</key>
2446
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
2447
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
2448
+ {\colortbl;\red255\green255\blue255;\red7\green0\blue255;}
2449
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
2450
+
2451
+ \f0\fs24 \cf2 wait for GM}</string>
2452
+ </dict>
2453
+ <key>Wrap</key>
2454
+ <string>NO</string>
2455
+ </dict>
2456
+ <dict>
2457
+ <key>Class</key>
2458
+ <string>LineGraphic</string>
2459
+ <key>Head</key>
2460
+ <dict>
2461
+ <key>ID</key>
2462
+ <integer>1</integer>
2463
+ </dict>
2464
+ <key>ID</key>
2465
+ <integer>5</integer>
2466
+ <key>Points</key>
2467
+ <array>
2468
+ <string>{230.99989374511918, 103.02062074752331}</string>
2469
+ <string>{280.5, 102}</string>
2470
+ <string>{290.5, 54}</string>
2471
+ <string>{230.95298334766417, 81.825708716044787}</string>
2472
+ </array>
2473
+ <key>Style</key>
2474
+ <dict>
2475
+ <key>stroke</key>
2476
+ <dict>
2477
+ <key>HeadArrow</key>
2478
+ <string>FilledArrow</string>
2479
+ <key>Legacy</key>
2480
+ <true/>
2481
+ <key>LineType</key>
2482
+ <integer>1</integer>
2483
+ <key>TailArrow</key>
2484
+ <string>0</string>
2485
+ </dict>
2486
+ </dict>
2487
+ <key>Tail</key>
2488
+ <dict>
2489
+ <key>ID</key>
2490
+ <integer>1</integer>
2491
+ </dict>
2492
+ </dict>
2493
+ <dict>
2494
+ <key>Bounds</key>
2495
+ <string>{{464, 138}, {94, 62}}</string>
2496
+ <key>Class</key>
2497
+ <string>ShapedGraphic</string>
2498
+ <key>ID</key>
2499
+ <integer>3</integer>
2500
+ <key>Shape</key>
2501
+ <string>Rectangle</string>
2502
+ <key>Text</key>
2503
+ <dict>
2504
+ <key>Text</key>
2505
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
2506
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
2507
+ {\colortbl;\red255\green255\blue255;}
2508
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
2509
+
2510
+ \f0\fs24 \cf0 GM}</string>
2511
+ </dict>
2512
+ </dict>
2513
+ <dict>
2514
+ <key>Bounds</key>
2515
+ <string>{{136.5, 73}, {94, 62}}</string>
2516
+ <key>Class</key>
2517
+ <string>ShapedGraphic</string>
2518
+ <key>ID</key>
2519
+ <integer>1</integer>
2520
+ <key>Shape</key>
2521
+ <string>Rectangle</string>
2522
+ <key>Text</key>
2523
+ <dict>
2524
+ <key>Text</key>
2525
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390
2526
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
2527
+ {\colortbl;\red255\green255\blue255;}
2528
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
2529
+
2530
+ \f0\fs24 \cf0 Client}</string>
2531
+ </dict>
2532
+ </dict>
2533
+ </array>
2534
+ <key>GridInfo</key>
2535
+ <dict/>
2536
+ <key>GuidesLocked</key>
2537
+ <string>NO</string>
2538
+ <key>GuidesVisible</key>
2539
+ <string>YES</string>
2540
+ <key>HPages</key>
2541
+ <integer>2</integer>
2542
+ <key>ImageCounter</key>
2543
+ <integer>1</integer>
2544
+ <key>KeepToScale</key>
2545
+ <false/>
2546
+ <key>Layers</key>
2547
+ <array>
2548
+ <dict>
2549
+ <key>Lock</key>
2550
+ <string>NO</string>
2551
+ <key>Name</key>
2552
+ <string>Layer 1</string>
2553
+ <key>Print</key>
2554
+ <string>YES</string>
2555
+ <key>View</key>
2556
+ <string>YES</string>
2557
+ </dict>
2558
+ </array>
2559
+ <key>LayoutInfo</key>
2560
+ <dict>
2561
+ <key>Animate</key>
2562
+ <string>NO</string>
2563
+ <key>circoMinDist</key>
2564
+ <real>18</real>
2565
+ <key>circoSeparation</key>
2566
+ <real>0.0</real>
2567
+ <key>layoutEngine</key>
2568
+ <string>dot</string>
2569
+ <key>neatoSeparation</key>
2570
+ <real>0.0</real>
2571
+ <key>twopiSeparation</key>
2572
+ <real>0.0</real>
2573
+ </dict>
2574
+ <key>LinksVisible</key>
2575
+ <string>NO</string>
2576
+ <key>MagnetsVisible</key>
2577
+ <string>NO</string>
2578
+ <key>MasterSheets</key>
2579
+ <array/>
2580
+ <key>ModificationDate</key>
2581
+ <string>2013-11-03 22:21:01 +0000</string>
2582
+ <key>Modifier</key>
2583
+ <string>Davy Stevenson</string>
2584
+ <key>NotesVisible</key>
2585
+ <string>NO</string>
2586
+ <key>Orientation</key>
2587
+ <integer>2</integer>
2588
+ <key>OriginVisible</key>
2589
+ <string>NO</string>
2590
+ <key>PageBreaks</key>
2591
+ <string>YES</string>
2592
+ <key>PrintInfo</key>
2593
+ <dict>
2594
+ <key>NSBottomMargin</key>
2595
+ <array>
2596
+ <string>float</string>
2597
+ <string>41</string>
2598
+ </array>
2599
+ <key>NSHorizonalPagination</key>
2600
+ <array>
2601
+ <string>coded</string>
2602
+ <string>BAtzdHJlYW10eXBlZIHoA4QBQISEhAhOU051bWJlcgCEhAdOU1ZhbHVlAISECE5TT2JqZWN0AIWEASqEhAFxlwCG</string>
2603
+ </array>
2604
+ <key>NSLeftMargin</key>
2605
+ <array>
2606
+ <string>float</string>
2607
+ <string>18</string>
2608
+ </array>
2609
+ <key>NSPaperSize</key>
2610
+ <array>
2611
+ <string>size</string>
2612
+ <string>{611.99999904632568, 792}</string>
2613
+ </array>
2614
+ <key>NSPrintReverseOrientation</key>
2615
+ <array>
2616
+ <string>int</string>
2617
+ <string>0</string>
2618
+ </array>
2619
+ <key>NSRightMargin</key>
2620
+ <array>
2621
+ <string>float</string>
2622
+ <string>18</string>
2623
+ </array>
2624
+ <key>NSTopMargin</key>
2625
+ <array>
2626
+ <string>float</string>
2627
+ <string>18</string>
2628
+ </array>
2629
+ </dict>
2630
+ <key>PrintOnePage</key>
2631
+ <false/>
2632
+ <key>ReadOnly</key>
2633
+ <string>NO</string>
2634
+ <key>RowAlign</key>
2635
+ <integer>1</integer>
2636
+ <key>RowSpacing</key>
2637
+ <real>36</real>
2638
+ <key>SheetTitle</key>
2639
+ <string>Canvas 1</string>
2640
+ <key>SmartAlignmentGuidesActive</key>
2641
+ <string>YES</string>
2642
+ <key>SmartDistanceGuidesActive</key>
2643
+ <string>YES</string>
2644
+ <key>UniqueID</key>
2645
+ <integer>1</integer>
2646
+ <key>UseEntirePage</key>
2647
+ <false/>
2648
+ <key>VPages</key>
2649
+ <integer>2</integer>
2650
+ <key>WindowInfo</key>
2651
+ <dict>
2652
+ <key>CurrentSheet</key>
2653
+ <integer>0</integer>
2654
+ <key>ExpandedCanvases</key>
2655
+ <array>
2656
+ <dict>
2657
+ <key>name</key>
2658
+ <string>Canvas 1</string>
2659
+ </dict>
2660
+ </array>
2661
+ <key>Frame</key>
2662
+ <string>{{77, 61}, {1269, 817}}</string>
2663
+ <key>ListView</key>
2664
+ <true/>
2665
+ <key>OutlineWidth</key>
2666
+ <integer>142</integer>
2667
+ <key>RightSidebar</key>
2668
+ <false/>
2669
+ <key>ShowRuler</key>
2670
+ <true/>
2671
+ <key>Sidebar</key>
2672
+ <true/>
2673
+ <key>SidebarWidth</key>
2674
+ <integer>120</integer>
2675
+ <key>VisibleRegion</key>
2676
+ <string>{{0, 1}, {1134, 678}}</string>
2677
+ <key>Zoom</key>
2678
+ <real>1</real>
2679
+ <key>ZoomValues</key>
2680
+ <array>
2681
+ <array>
2682
+ <string>Canvas 1</string>
2683
+ <real>1</real>
2684
+ <real>1</real>
2685
+ </array>
2686
+ </array>
2687
+ </dict>
2688
+ </dict>
2689
+ </plist>