-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.xml
1024 lines (1024 loc) · 79.4 KB
/
config.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<smsplit>
<capture method="WINDOWCAPTURE">
<screencapture x="0" y="0" width="640" height="480"/>
<windowcapture windowTitle="obs64" x="0" y="0" width="640" height="480"/>
</capture>
<splitters method="LIVESPLIT">
<livesplit host="127.0.0.1" port="16834" timeout="1000"/>
<hotkeysplit itemSplitKeycode="0" delay="20"/>
</splitters>
<debug capture="false"/>
<itemboxes matching="true">
<itembox name="{Start Game}" duration="2000">
<rectangle x="18.827047602791207" y="14.528147345020198" width="60.0" height="2.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="18.827047602791207" y="56.594953190531676" width="60.0" height="2.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="18.827047602791207" y="68.70351268948784" width="60.0" height="2.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="18.827047602791207" y="85.63044379595965" width="60.0" height="2.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="6.977015839848022" y="23.91197324000274" width="5.0" height="3.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="6.977015839848022" y="37.48191060952257" width="5.0" height="3.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="6.977015839848022" y="49.068549440420284" width="5.0" height="3.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="6.977015839848022" y="62.53410267632843" width="5.0" height="3.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="6.977015839848022" y="76.93911311474179" width="5.0" height="3.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="71.78951583984802" y="31.53201499365619" width="15.0" height="10.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="1.0" y="92.59673315649545" width="5.0" height="3.0" r="0" g="0" b="0" tolerance="50"
invert="false"/>
<rectangle x="8.227015839848022" y="92.59673315649545" width="20.0" height="3.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="31.742640839848022" y="92.59673315649545" width="5.0" height="3.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="38.22701583984802" y="92.59673315649545" width="15.0" height="3.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="57.21139083984802" y="92.59673315649545" width="5.0" height="3.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="63.77389083984802" y="92.59673315649545" width="20.0" height="3.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="90.2" y="92.59673315649545" width="5.0" height="3.0" r="0" g="0" b="0" tolerance="50"
invert="false"/>
<rectangle x="88.43014083984802" y="18.170845891359743" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="91.24264083984802" y="39.67397741536809" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="78.66451583984802" y="78.81802751975222" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="3.742640839848022" y="39.5695932817564" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="22.570765839848022" y="72.03305883499232" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<action name="{Star Game}" matching="CONTAINS_INSENSITIVE" action="STARTTIMER"/>
</itembox>
<itembox name="Energy Tank" duration="4000">
<rectangle x="23.676390479910836" y="50.41118434255476" width="50.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="24.24479310389713" y="56.92523670409976" width="50.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="27.960970293683697" y="53.29558373937346" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="49.921935314109106" y="53.14669405446054" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="65.75197019548824" y="53.474334505771886" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="47.891068316464676" y="51.14631460930043" width="1.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="35.23365877479978" y="53.43436195340499" width="1.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="42.6351761222242" y="53.48192657335124" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="56.71026860227896" y="53.69995284743148" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="5.377734287050345" y="42.5229801644896" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="4.373040752351102" y="60.833333333333336" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<action name="Energy Tank" matching="CONTAINS_INSENSITIVE" action="SPLIT"/>
</itembox>
<itembox name="Reserve Tank" duration="4000">
<rectangle x="24.064343163538872" y="49.350813076336884" width="50.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="24.181513057981647" y="56.99931311478849" width="50.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="24.829206627369512" y="53.062893273873314" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="49.74499906303752" y="53.37815317697398" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="65.68115019011783" y="53.27177489666439" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="44.8015286326666" y="50.99981766361831" width="1.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="31.37336558532505" y="53.4284147675611" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="56.49239366120603" y="53.40204633933628" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="5.441014332965821" y="46.18487698986976" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="5.940438871473354" y="61.041666666666664" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<action name="Reserve Tank" matching="CONTAINS_INSENSITIVE" action="SPLIT"/>
</itembox>
<itembox name="Missile" duration="4000">
<rectangle x="11.915966386554622" y="46.82271623187605" width="75.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="12.363198840002543" y="64.55107575323059" width="75.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="38.517094557946876" y="58.05773820704114" width="10.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="17.97030654611285" y="57.79739906102718" width="10.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="37.473856559288926" y="49.69636575183926" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="62.598379764658056" y="49.53681904902628" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="30.65520569313741" y="56.577559708407996" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="6.4646945738582176" y="43.00284228350266" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="8.134796238244519" y="72.76729559748429" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<action name="Missile" matching="CONTAINS_INSENSITIVE" action="SPLIT"/>
</itembox>
<itembox name="Super Missile" duration="4000">
<rectangle x="11.430332981877264" y="46.4606341428628" width="75.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="12.550874702244151" y="63.67355147135557" width="75.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="42.089219704316605" y="56.75007188623023" width="20.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="10.676660143293187" y="57.371955742336226" width="20.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="64.02742792587091" y="49.446405690212906" width="1.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="69.23313803875405" y="48.91283568083698" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="25.005746440947103" y="49.182298078664346" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="32.17995605726753" y="58.383025962202986" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="6.0227056235819845" y="41.095186260280585" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="4.815029702627342" y="67.8722181906144" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<action name="Super Missile" matching="CONTAINS_INSENSITIVE" action="SPLIT"/>
</itembox>
<itembox name="Power Bomb" duration="4000">
<rectangle x="11.596698828679727" y="46.378288010194346" width="75.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="11.569168149833658" y="64.47962269066831" width="75.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="31.836601131429333" y="58.020605448103105" width="20.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="12.410393869123364" y="58.145350045641045" width="12.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="30.91586349217075" y="49.659450331283374" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="66.10783019145406" y="49.2137955492406" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="26.206890582798533" y="55.81806923056996" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="5.063767354570686" y="41.54908345393151" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="5.0" y="67.70833333333333" width="90.0" height="1.0" r="0" g="0" b="0" tolerance="50"
invert="true"/>
<action name="Power Bomb" matching="CONTAINS_INSENSITIVE" action="SPLIT"/>
</itembox>
<itembox name="Morphing Ball" duration="4000">
<rectangle x="24.344877533040723" y="50.4845691629626" width="50.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="24.337278252583456" y="57.21649964351926" width="50.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="24.824353920720256" y="53.523270446499744" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="53.37614314695291" y="53.300053167146956" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="67.32484747049232" y="53.330944286889995" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="28.71007598366443" y="53.336845293419145" width="1.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="38.0903462977295" y="53.27995964458663" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="58.659402834817" y="53.78896815612745" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="2.9906129306015075" y="45.21740445089502" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="4.9819879111172725" y="61.65971214320271" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<action name="Morphing Ball" matching="CONTAINS_INSENSITIVE" action="SPLIT"/>
</itembox>
<itembox name="Bombs" duration="4000">
<rectangle x="15.23747306821246" y="45.12010861760807" width="75.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="15.149395336424902" y="64.97099383213131" width="75.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="33.27882786315464" y="49.4313755709345" width="10.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="56.804239423646344" y="49.50038124608635" width="10.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="20.939519368661802" y="58.36575665605476" width="10.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="14.831239094536759" y="56.54881162679081" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="24.03238443620598" y="61.18152344158839" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="7.3174382055702765" y="38.45627147000078" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="7.093179588840949" y="72.96904096834264" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<action name="Bombs" matching="CONTAINS_INSENSITIVE" action="SPLIT"/>
</itembox>
<itembox name="Speed Booster" duration="4000">
<rectangle x="12.435060622044436" y="46.29167472224694" width="75.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="11.86352644696247" y="63.25258789687554" width="75.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="11.854754342205574" y="58.22504634567919" width="75.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="25.0410147002917" y="49.33069327337339" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="68.82803715674854" y="49.10959742536887" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="44.89218140350474" y="49.521342832193" width="1.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="31.917031150381" y="49.10648039007063" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="6.770624159705253" y="41.044983116256624" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="5.470219435736677" y="67.5" width="90.0" height="1.0" r="0" g="0" b="0" tolerance="50"
invert="true"/>
<action name="Speed Booster" matching="CONTAINS_INSENSITIVE" action="SPLIT"/>
</itembox>
<itembox name="Space Jump" duration="4000">
<rectangle x="24.86904119122478" y="49.796613221434534" width="50.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="24.89500794360044" y="56.79298104631154" width="50.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="27.937498884320767" y="53.051435443341035" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="46.77124356044316" y="53.22175935135519" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="62.668293750205336" y="53.26180461616413" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="34.16226701894899" y="53.20950461289991" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="52.53865212754183" y="53.19633260616262" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="3.4033967781068917" y="44.974674384949346" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="7.037617554858933" y="64.58333333333334" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<action name="Space Jump" matching="CONTAINS_INSENSITIVE" action="SPLIT"/>
</itembox>
<itembox name="Hi-jump Boots" duration="4000">
<rectangle x="23.89226433727488" y="50.49890866856586" width="50.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="23.99021099426959" y="56.71168173875393" width="50.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="34.187753918138974" y="52.382036857930444" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="49.97009610741924" y="53.03481434794354" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="68.78536472028063" y="52.878003125122646" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="28.21172993642855" y="53.027845542186995" width="1.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="28.60449205651603" y="54.004679257650004" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="63.898803802148976" y="54.10555142280203" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="3.415320754977831" y="46.31210805595755" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="4.460656060663658" y="60.83333333333333" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<action name="Hi-jump Boots" matching="CONTAINS_INSENSITIVE" action="SPLIT"/>
</itembox>
<itembox name="Varia Suit" duration="4000">
<rectangle x="25.609279352476836" y="50.748283916580505" width="50.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="25.210769146792586" y="56.32742148633581" width="50.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="28.10673426123302" y="53.19607336730284" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="47.157679734961015" y="53.44889615664165" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="61.94869374225856" y="53.461704080597364" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="35.50424575471422" y="52.64486919974452" width="1.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="38.642832485574814" y="52.10753079452815" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="51.540999077164344" y="52.39346378101625" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="4.501550078802893" y="47.08544992743106" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="5.7554685741007034" y="62.38056361877117" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<action name="Varia Suit" matching="CONTAINS_INSENSITIVE" action="SPLIT"/>
</itembox>
<itembox name="Gravity Suit" duration="4000">
<rectangle x="22.24023274472794" y="49.226061246621356" width="50.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="23.01520987099641" y="56.80866355596888" width="50.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="24.60903123980396" y="53.20128483287147" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="49.773696505603226" y="53.20279241033102" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="64.74237992601847" y="52.91493527452652" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="29.913513424594708" y="53.433316520192356" width="1.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="37.63170149425711" y="52.29556853553418" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="55.95826374068035" y="52.52206591325533" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="5.98692510014412" y="44.992161119150985" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="5.313479623824449" y="61.04166666666667" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<action name="Gravity Suit" matching="CONTAINS_INSENSITIVE" action="SPLIT"/>
</itembox>
<itembox name="Spring Ball" duration="4000">
<rectangle x="23.187671646636204" y="49.14247974300356" width="50.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="23.345970620720784" y="56.889568782902344" width="50.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="28.30407414231641" y="53.051869142018944" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="50.14241966997598" y="53.15959833738976" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="64.14544162922589" y="52.97013068944855" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="32.80595827255954" y="53.53560880918673" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="56.02508849130598" y="53.21119974020458" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="6.514345062609518" y="44.63910998552822" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="5.626959247648905" y="60.625" width="90.0" height="1.0" r="0" g="0" b="0" tolerance="50"
invert="true"/>
<action name="Spring Ball" matching="CONTAINS_INSENSITIVE" action="SPLIT"/>
</itembox>
<itembox name="Screw Attack" duration="4000">
<rectangle x="23.187671646636204" y="49.86606874445074" width="50.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="23.125463454237867" y="56.600133182323475" width="50.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="24.728263571106073" y="52.92463807593115" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="43.66960115290396" y="53.01488053710033" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="65.38207899862378" y="52.87154168800138" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="29.938155429468715" y="53.147584207160676" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="57.237877906961984" y="53.93478874165175" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="4.970794897229146" y="45.21798118668596" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="5.626959247648905" y="60.625" width="90.0" height="1.0" r="0" g="0" b="0" tolerance="50"
invert="true"/>
<action name="Screw Attack" matching="CONTAINS_INSENSITIVE" action="SPLIT"/>
</itembox>
<itembox name="Charge Beam" duration="4000">
<rectangle x="25.95543930306328" y="49.08099038547505" width="50.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="25.44225062827406" y="56.194626039322564" width="50.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="28.152320821043364" y="53.03533753125631" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="49.78900244653724" y="53.32140043014892" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="66.1388223486678" y="53.41400629012764" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="32.74396950258405" y="53.50417452845253" width="0.5" height="0.5" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="36.83772461616705" y="53.615950719899416" width="1.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="41.46352437903502" y="53.32546289020132" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="57.00573613722071" y="53.31742548646481" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="7.232806248809304" y="44.76324383164006" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="7.073641732624388" y="60.15693033381713" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<action name="Charge Beam" matching="CONTAINS_INSENSITIVE" action="SPLIT"/>
</itembox>
<itembox name="Ice Beam" duration="4000">
<rectangle x="22.995289912581462" y="50.10504540728106" width="50.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="23.213078762550424" y="56.20446436578083" width="50.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="32.162711800821654" y="52.9785691039764" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="43.79314290579213" y="53.005331782375855" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="59.393346284281634" y="53.306272829931714" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="38.638928794279664" y="52.96884661707781" width="1.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="54.135078255543974" y="53.47233567950977" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="47.83505464840853" y="53.42615369057156" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="4.9070275426584615" y="45.38018572117704" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="6.253918495297803" y="60.833333333333336" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<action name="Ice Beam" matching="CONTAINS_INSENSITIVE" action="SPLIT"/>
</itembox>
<itembox name="Wave Beam" duration="4000">
<rectangle x="24.23638349282515" y="49.96136377722536" width="50.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="24.358263459285993" y="56.20450277028904" width="50.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="31.14888129252676" y="52.82627150215671" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="46.53320419940731" y="53.0360191969285" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="62.83043847349182" y="52.8270169994839" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="37.068721533480904" y="52.97977616882152" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="53.26227516546697" y="53.54506947969269" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="5.690726602219591" y="44.14134105161602" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="5.0" y="70.0" width="90.0" height="1.0" r="0" g="0" b="0" tolerance="50" invert="true"/>
<action name="Wave Beam" matching="CONTAINS_INSENSITIVE" action="SPLIT"/>
</itembox>
<itembox name="Spazer" duration="4000">
<rectangle x="25.619766358820193" y="48.17329601140392" width="50.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="25.32650988753332" y="56.23165334124364" width="50.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="34.547335152410405" y="53.28885459263997" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="69.09918653765354" y="52.59809187769546" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="56.719501200264204" y="53.14765362355181" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="44.010303234909614" y="53.69057127940046" width="1.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="38.0992677131331" y="53.06151356986637" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="49.56811046834507" y="53.37742112032892" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="3.550892810751833" y="44.55491049830672" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="5.285249138364016" y="62.013183357522976" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<action name="Spazer" matching="CONTAINS_INSENSITIVE" action="SPLIT"/>
</itembox>
<itembox name="Plasma Beam" duration="4000">
<rectangle x="23.628815988072336" y="49.238244689516975" width="50.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="23.468148180833182" y="56.89449004274486" width="50.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="27.837860368565018" y="53.34087121616152" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="49.94916763000381" y="53.24748894767562" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="66.1368731140469" y="53.207102320329014" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="35.68016026526489" y="52.976657153312885" width="1.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="56.27026049307029" y="53.4291403113047" width="1.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="60.15779459072113" y="53.33093540135086" width="1.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="4.814055085316916" y="45.17185238784371" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="4.8432601880877755" y="61.24999999999999" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<action name="Plasma Beam" matching="CONTAINS_INSENSITIVE" action="SPLIT"/>
</itembox>
<itembox name="Grappling Beam" duration="4000">
<rectangle x="11.887540177575282" y="46.72782802789474" width="75.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="13.183052497626687" y="64.32998363053636" width="75.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="32.6042145123881" y="58.00436761595315" width="20.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="13.572085355983248" y="58.052352316596895" width="10.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="45.50213257766549" y="48.983430452465726" width="1.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="72.37293803816439" y="49.546670821223316" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="24.9344789592751" y="49.338337487889994" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="25.939897187644853" y="57.800247306390425" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="5.51670566440745" y="42.38241678726482" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="4.779492833517089" y="71.19904727448143" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<action name="Grappling Beam" matching="CONTAINS_INSENSITIVE" action="SPLIT"/>
</itembox>
<itembox name="X-ray Scope" duration="4000">
<rectangle x="9.844435465217067" y="46.37044675536568" width="75.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="11.998388514398847" y="63.67985268181811" width="75.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="32.05492535770613" y="58.205651503074634" width="20.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="11.936910404930387" y="54.64464220040483" width="20.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="50.92040770811838" y="49.391191771119054" width="1.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="68.68065185090875" y="49.64482629623421" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="30.91512941061331" y="49.41651976014937" width="3.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="false"/>
<rectangle x="25.8453779545698" y="56.92043143529438" width="5.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="4.23600142396478" y="42.411058851905445" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<rectangle x="4.924308668558371" y="73.22509647853353" width="90.0" height="1.0" r="0" g="0" b="0"
tolerance="50" invert="true"/>
<action name="X-ray Scope" matching="CONTAINS_INSENSITIVE" action="SPLIT"/>
</itembox>
<itembox name="Elevator (Up)" duration="200">
<rectangle x="1.1104972375690636" y="15.532656023222062" width="30.0" height="50.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="69.11049723756906" y="15.532656023222062" width="30.0" height="50.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="81.51049723756907" y="0.3326560232220608" width="16.0" height="0.8" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="81.51049723756907" y="3.832656023222061" width="16.0" height="0.8" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="81.51049723756907" y="7.43265602322206" width="16.0" height="0.8" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="81.51049723756907" y="11.032656023222062" width="16.0" height="0.8" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="81.51049723756907" y="0.3326560232220608" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="84.61049723756906" y="0.3326560232220608" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="87.81049723756907" y="0.3326560232220608" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="90.91049723756906" y="0.3326560232220608" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="94.11049723756906" y="0.3326560232220608" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="97.21049723756906" y="0.3326560232220608" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="82.41049723756906" y="1.3326560232220608" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="85.51049723756907" y="1.3326560232220608" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="88.71049723756906" y="1.3326560232220608" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="91.91049723756906" y="1.3326560232220608" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="95.01049723756907" y="1.3326560232220608" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="82.41049723756906" y="5.13265602322206" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="85.51049723756907" y="5.13265602322206" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="88.71049723756906" y="5.13265602322206" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="91.91049723756906" y="5.13265602322206" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="95.01049723756907" y="5.13265602322206" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="82.41049723756906" y="8.732656023222061" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="85.51049723756907" y="8.732656023222061" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="88.71049723756906" y="8.732656023222061" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="91.91049723756906" y="8.732656023222061" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="95.01049723756907" y="8.732656023222061" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<action name="Elevator (Up)" matching="CONTAINS_INSENSITIVE" action="SPLIT"/>
</itembox>
<itembox name="Lower Norfair Elevator (Down)" duration="500">
<rectangle x="1.0" y="18.0" width="98.0" height="50.0" r="0" g="0" b="0" tolerance="30" invert="false"/>
<rectangle x="81.28974641675855" y="0.3397973950795947" width="16.0" height="0.8" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="81.28974641675855" y="3.8397973950795965" width="16.0" height="0.8" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="81.28974641675855" y="7.439797395079594" width="16.0" height="0.8" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="81.28974641675855" y="11.039797395079596" width="16.0" height="0.8" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="81.28974641675855" y="0.3397973950795947" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="84.38974641675854" y="0.3397973950795947" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="87.58974641675854" y="0.3397973950795947" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="90.68974641675854" y="0.3397973950795947" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="93.88974641675854" y="0.3397973950795947" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="96.98974641675854" y="0.3397973950795947" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="82.18974641675854" y="1.3397973950795947" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="85.28974641675855" y="1.3397973950795947" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="88.48974641675854" y="1.3397973950795947" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="91.68974641675854" y="1.3397973950795947" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="94.78974641675855" y="1.3397973950795947" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="82.18974641675854" y="5.139797395079594" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="85.28974641675855" y="5.139797395079594" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="88.48974641675854" y="5.139797395079594" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="91.68974641675854" y="5.139797395079594" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="94.78974641675855" y="5.139797395079594" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="82.18974641675854" y="8.739797395079595" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="85.28974641675855" y="8.739797395079595" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="88.48974641675854" y="8.739797395079595" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="91.68974641675854" y="8.739797395079595" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="94.78974641675855" y="8.739797395079595" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<action name="Lower Norfair Elevator (Down)" matching="CONTAINS_INSENSITIVE" action="SPLIT"/>
</itembox>
<itembox name="Blue Crateria Elevator (Down)" duration="500">
<rectangle x="1.1104972375690494" y="15.53265602322206" width="98.0" height="50.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="81.51049723756906" y="0.3326560232220608" width="16.0" height="0.8" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="81.51049723756906" y="3.832656023222061" width="16.0" height="0.8" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="81.51049723756906" y="7.432656023222061" width="16.0" height="0.8" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="81.51049723756906" y="11.03265602322206" width="16.0" height="0.8" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="81.51049723756906" y="0.3326560232220608" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="84.61049723756905" y="0.3326560232220608" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="87.81049723756905" y="0.3326560232220608" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="90.91049723756905" y="0.3326560232220608" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="94.11049723756905" y="0.3326560232220608" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="97.21049723756904" y="0.3326560232220608" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="82.41049723756905" y="1.3326560232220608" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="85.51049723756906" y="1.3326560232220608" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="88.71049723756904" y="1.3326560232220608" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="91.91049723756905" y="1.3326560232220608" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="95.01049723756906" y="1.3326560232220608" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="82.41049723756905" y="5.132656023222061" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="85.51049723756906" y="5.132656023222061" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="88.71049723756904" y="5.132656023222061" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="91.91049723756905" y="5.132656023222061" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="95.01049723756906" y="5.132656023222061" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="82.41049723756905" y="8.73265602322206" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="85.51049723756906" y="8.73265602322206" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="88.71049723756904" y="8.73265602322206" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="91.91049723756905" y="8.73265602322206" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="95.01049723756906" y="8.73265602322206" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<action name="Blue Crateria Elevator (Down)" matching="CONTAINS_INSENSITIVE" action="SPLIT"/>
</itembox>
<itembox name="Green Brinstar/Norfair Elevator (Down)" duration="500">
<rectangle x="1.1104972375690636" y="15.387518142235123" width="98.0" height="50.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="81.51049723756907" y="0.18751814223512397" width="16.0" height="0.8" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="81.51049723756907" y="3.687518142235124" width="16.0" height="0.8" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="81.51049723756907" y="7.287518142235125" width="16.0" height="0.8" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="81.51049723756907" y="10.887518142235123" width="16.0" height="0.8" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="81.51049723756907" y="0.18751814223512397" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="84.61049723756909" y="0.18751814223512397" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="87.81049723756908" y="0.18751814223512397" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="90.91049723756905" y="0.18751814223512397" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="94.11049723756909" y="0.18751814223512397" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="97.21049723756906" y="0.18751814223512397" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="82.41049723756905" y="1.187518142235124" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="85.51049723756907" y="1.187518142235124" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="88.71049723756906" y="1.187518142235124" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="91.91049723756905" y="1.187518142235124" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="95.01049723756907" y="1.187518142235124" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="82.41049723756905" y="4.987518142235121" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="85.51049723756907" y="4.987518142235121" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="88.71049723756906" y="4.987518142235121" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="91.91049723756905" y="4.987518142235121" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="95.01049723756907" y="4.987518142235121" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="82.41049723756905" y="8.587518142235123" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="85.51049723756907" y="8.587518142235123" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<action name="Green Brinstar/Norfair Elevator (Down)" matching="CONTAINS_INSENSITIVE" action="SPLIT"/>
</itembox>
<itembox name="Red Brinstar Elevator (Down)" duration="500">
<rectangle x="1.0" y="18.0" width="98.0" height="50.0" r="0" g="0" b="0" tolerance="30" invert="false"/>
<rectangle x="81.1794928335171" y="0.3397973950795947" width="16.0" height="0.8" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="81.1794928335171" y="3.8397973950795947" width="16.0" height="0.8" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="81.1794928335171" y="7.439797395079594" width="16.0" height="0.8" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="81.28974641675856" y="11.184515195369032" width="16.0" height="0.8" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="81.1794928335171" y="0.3397973950795947" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="84.2794928335171" y="0.3397973950795947" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="87.4794928335171" y="0.3397973950795947" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="90.5794928335171" y="0.3397973950795947" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="93.7794928335171" y="0.3397973950795947" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="96.87949283351709" y="0.3397973950795947" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="82.0794928335171" y="1.3397973950795947" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="85.1794928335171" y="1.3397973950795947" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="88.37949283351709" y="1.3397973950795947" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="91.5794928335171" y="1.3397973950795947" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="94.6794928335171" y="1.3397973950795947" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="82.0794928335171" y="5.1397973950795945" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="85.1794928335171" y="5.1397973950795945" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="88.37949283351709" y="5.1397973950795945" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="91.5794928335171" y="5.1397973950795945" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="94.6794928335171" y="5.1397973950795945" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="82.0794928335171" y="8.739797395079595" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="85.1794928335171" y="8.739797395079595" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="88.37949283351709" y="8.739797395079595" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="91.5794928335171" y="8.739797395079595" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="94.6794928335171" y="8.739797395079595" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<action name="Red Brinstar Elevator (Down)" matching="CONTAINS_INSENSITIVE" action="SPLIT"/>
</itembox>
<itembox name="Boss" duration="500">
<rectangle x="1.220994475138113" y="15.677793904208993" width="98.0" height="20.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="1.220994475138113" y="76.67779390420898" width="98.0" height="20.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="81.06972655893084" y="0.3330761039195602" width="16.0" height="0.8" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="81.06972655893084" y="3.83307610391956" width="16.0" height="0.8" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="81.06972655893084" y="7.433076103919557" width="16.0" height="0.8" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="81.06972655893084" y="11.033076103919559" width="16.0" height="0.8" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="81.06972655893084" y="0.3330761039195602" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="84.16972655893083" y="0.3330761039195602" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="87.36972655893084" y="0.3330761039195602" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="90.46972655893083" y="0.3330761039195602" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="93.66972655893083" y="0.3330761039195602" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="96.76972655893083" y="0.3330761039195602" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="81.96972655893083" y="1.3330761039195602" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="85.06972655893084" y="1.3330761039195602" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="88.26972655893083" y="1.3330761039195602" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="91.46972655893083" y="1.3330761039195602" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="94.56972655893084" y="1.3330761039195602" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="81.96972655893083" y="5.133076103919559" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="85.06972655893084" y="5.133076103919559" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="88.26972655893083" y="5.133076103919559" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="91.46972655893083" y="5.133076103919559" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="94.56972655893084" y="5.133076103919559" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="81.96972655893083" y="8.733076103919561" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="85.06972655893084" y="8.733076103919561" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="88.26972655893083" y="8.733076103919561" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="91.46972655893083" y="8.733076103919561" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="94.56972655893084" y="8.733076103919561" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<action name="Boss" matching="CONTAINS_INSENSITIVE" action="SPLIT"/>
</itembox>
<itembox name="Lower Norfair Exit" duration="500">
<rectangle x="1.0" y="18.0" width="98.0" height="20.0" r="0" g="0" b="0" tolerance="30" invert="false"/>
<rectangle x="81.4" y="0.3397973950795947" width="16.0" height="0.8" r="0" g="0" b="0" tolerance="30"
invert="true"/>
<rectangle x="81.4" y="3.8397973950795947" width="16.0" height="0.8" r="0" g="0" b="0" tolerance="30"
invert="true"/>
<rectangle x="81.4" y="7.439797395079595" width="16.0" height="0.8" r="0" g="0" b="0" tolerance="30"
invert="true"/>
<rectangle x="81.4" y="11.039797395079592" width="16.0" height="0.8" r="0" g="0" b="0" tolerance="30"
invert="true"/>
<rectangle x="81.4" y="0.3397973950795947" width="0.7" height="11.6" r="0" g="0" b="0" tolerance="30"
invert="true"/>
<rectangle x="84.5" y="0.3397973950795947" width="0.7" height="11.6" r="0" g="0" b="0" tolerance="30"
invert="true"/>
<rectangle x="87.7" y="0.3397973950795947" width="0.7" height="11.6" r="0" g="0" b="0" tolerance="30"
invert="true"/>
<rectangle x="90.8" y="0.3397973950795947" width="0.7" height="11.6" r="0" g="0" b="0" tolerance="30"
invert="true"/>
<rectangle x="94.0" y="0.3397973950795947" width="0.7" height="11.6" r="0" g="0" b="0" tolerance="30"
invert="true"/>
<rectangle x="97.1" y="0.3397973950795947" width="0.7" height="11.6" r="0" g="0" b="0" tolerance="30"
invert="true"/>
<rectangle x="82.3" y="1.3397973950795947" width="2.0" height="2.0" r="0" g="0" b="0" tolerance="30"
invert="false"/>
<rectangle x="85.4" y="1.3397973950795947" width="2.0" height="2.0" r="0" g="0" b="0" tolerance="30"
invert="false"/>
<rectangle x="88.6" y="1.3397973950795947" width="2.0" height="2.0" r="0" g="0" b="0" tolerance="30"
invert="true"/>
<rectangle x="91.8" y="1.3397973950795947" width="2.0" height="2.0" r="0" g="0" b="0" tolerance="30"
invert="true"/>
<rectangle x="94.9" y="1.3397973950795947" width="2.0" height="2.0" r="0" g="0" b="0" tolerance="30"
invert="true"/>
<rectangle x="82.3" y="5.1397973950795945" width="2.0" height="2.0" r="0" g="0" b="0" tolerance="30"
invert="false"/>
<rectangle x="85.4" y="5.1397973950795945" width="2.0" height="2.0" r="0" g="0" b="0" tolerance="30"
invert="false"/>
<rectangle x="88.6" y="5.1397973950795945" width="2.0" height="2.0" r="0" g="0" b="0" tolerance="30"
invert="true"/>
<rectangle x="91.8" y="5.1397973950795945" width="2.0" height="2.0" r="0" g="0" b="0" tolerance="30"
invert="false"/>
<rectangle x="94.9" y="5.1397973950795945" width="2.0" height="2.0" r="0" g="0" b="0" tolerance="30"
invert="false"/>
<rectangle x="82.3" y="8.739797395079592" width="2.0" height="2.0" r="0" g="0" b="0" tolerance="30"
invert="true"/>
<rectangle x="85.4" y="8.739797395079592" width="2.0" height="2.0" r="0" g="0" b="0" tolerance="30"
invert="true"/>
<rectangle x="88.6" y="8.739797395079592" width="2.0" height="2.0" r="0" g="0" b="0" tolerance="30"
invert="true"/>
<rectangle x="91.8" y="8.739797395079592" width="2.0" height="2.0" r="0" g="0" b="0" tolerance="30"
invert="false"/>
<rectangle x="94.9" y="8.739797395079592" width="2.0" height="2.0" r="0" g="0" b="0" tolerance="30"
invert="false"/>
<action name="Lower Norfair Exit" matching="CONTAINS_INSENSITIVE" action="SPLIT"/>
</itembox>
<itembox name="Maridia Entrance" duration="500">
<rectangle x="1.0" y="18.0" width="30.0" height="20.0" r="0" g="0" b="0" tolerance="30" invert="false"/>
<rectangle x="81.28974641675856" y="0.3397973950795947" width="16.0" height="0.8" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="81.28974641675856" y="3.8397973950795947" width="16.0" height="0.8" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="81.28974641675856" y="7.4397973950795935" width="16.0" height="0.8" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="81.28974641675856" y="11.0397973950796" width="16.0" height="0.8" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="81.28974641675856" y="0.3397973950795947" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="84.38974641675856" y="0.3397973950795947" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="87.58974641675856" y="0.3397973950795947" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="90.68974641675855" y="0.3397973950795947" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="93.88974641675856" y="0.3397973950795947" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="96.98974641675855" y="0.3397973950795947" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="82.18974641675855" y="1.3397973950795947" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="85.28974641675856" y="1.3397973950795947" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="88.48974641675855" y="1.3397973950795947" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="91.68974641675855" y="1.3397973950795947" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="94.78974641675856" y="1.3397973950795947" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="82.18974641675855" y="5.1397973950795945" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="85.28974641675856" y="5.1397973950795945" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="88.48974641675855" y="5.1397973950795945" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="91.68974641675855" y="5.1397973950795945" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="94.78974641675856" y="5.1397973950795945" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="82.18974641675855" y="8.739797395079599" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="85.28974641675856" y="8.739797395079599" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="88.48974641675855" y="8.739797395079599" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="91.68974641675855" y="8.739797395079599" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="94.78974641675856" y="8.739797395079599" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<action name="Maridia Entrance" matching="CONTAINS_INSENSITIVE" action="SPLIT"/>
</itembox>
<itembox name="Golden Four" duration="500">
<rectangle x="1.0" y="18.0" width="98.0" height="20.0" r="0" g="0" b="0" tolerance="30" invert="false"/>
<rectangle x="81.28974641675856" y="0.3397973950795947" width="16.0" height="0.8" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="81.28974641675856" y="3.839797395079594" width="16.0" height="0.8" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="81.28974641675856" y="7.439797395079595" width="16.0" height="0.8" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="81.28974641675856" y="11.039797395079592" width="16.0" height="0.8" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="81.28974641675856" y="0.3397973950795947" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="84.38974641675856" y="0.3397973950795947" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="87.58974641675856" y="0.3397973950795947" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="90.68974641675855" y="0.3397973950795947" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="93.88974641675856" y="0.3397973950795947" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="96.98974641675855" y="0.3397973950795947" width="0.7" height="11.6" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="82.18974641675855" y="1.3397973950795947" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="85.28974641675856" y="1.3397973950795947" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="88.48974641675855" y="1.3397973950795947" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="91.68974641675855" y="1.3397973950795947" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="94.78974641675856" y="1.3397973950795947" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="false"/>
<rectangle x="82.18974641675855" y="5.1397973950795945" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="85.28974641675856" y="5.1397973950795945" width="2.0" height="2.0" r="0" g="0" b="0"
tolerance="30" invert="true"/>
<rectangle x="88.48974641675855" y="5.1397973950795945" width="2.0" height="2.0" r="0" g="0" b="0"