summaryrefslogblamecommitdiffstatshomepage
path: root/src/mame/layout/j6mono6010.lay
blob: 3b0705a023909d80705e93f85117f9d6c2b355ba (plain) (tree)
1
2
3
4
5
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
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
                                       



                                                               




























































                                                                              
                                       






























































































































                                                                              
                                   


























































































                                                                              
                                       


















                                                                              
                                       


































































                                                                              
                                       


















                                                                              
                                      






























































































































































































































































































































































































































































































































































































                                                                              
                                       


































                                                                              
                                   


































































































                                                                              
                                   










































































                                                                              
                                       


















                                                                              
                                       


























































































                                                                              
                                   


































































                                                                              
                                   










































                                                                              
                                    










































                                                                              
                                   










































































                                                                              
                                       


































                                                                              
                                       










































                                                                              
                                       


















































                                                                              
                                       


















                                                                              
                                       





















                                                                              
                                                                    

                                
                                                                    



                                                
                                                                    

                                
                                                                    

                                 

                                                                              



                                                       
                                                                    

                                
                                                                    



                                                
                                                                    

                                
                                                                    

                                 

                                                                              



                                                       
                                                                    

                                
                                                                    



                                                
                                                                    

                                
                                                                    

                                 

                                                                              



                                                       
                                                                    

                                
                                                                    



                                                
                                                                    

                                
                                                                    

                                 

                                                                              

























































































































































































                                                                              


















































































































































































































































                                                                              
                                             


















                                                                              
                                                    


















                                                                              
                                                 


















                                                                              
                                            


















                                                                              
                                          


















                                                                              
                                                 


















                                                                              
                                                  


















                                                                              
                                                 














































































































































































                                                                              
                                   



















































































































































                                                                                                                                                                                                                                                                                                                     







                                                                                                                                                    
                  



                                                                              
                       


                                                                              

                       



                                                                              
                       


                                                                              

                       


                                                                 


                                                                              

                                              
                                                                 
                       
                  






                                                                    
                  






                                                                    
                  






                                                                    
                  






                                                                    
                  






                                                                    
                  








                                                                                      















                                                                    








                                                                                      


































                                                                 






                                                                         
                                                                 

                                                                                            
                                                                 

                                                                                            
                                                                 

                                                                                            





                                                                         
                                                                 

                                                                                            
                                                                 

                                                                                            
                                                                 

                                                                                            





                                                                         
                                                                 

                                                                                            
                                                                 

                                                                                            
                                                                 

                                                                                            





                                                                         
                                                                 

                                                                                             





                                                                         
                                                                 

                                                                                            



























































































































































































































































































































































































































































































































                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        








































































































































































































































                                                                                                                  

                                                                    
                                                          


                                                                                                   












                                                                                



                                                                        
 


                                                                              


                                                                              


                                                                              


                                                                              


                                                                              


                                                                              


                                                                              


                                                                              


                                                                              


                                                                              


                                                                               


                                                                               


                                                                               


                                                                               


                                                                               


                                                                         


                                                                               


                                                                               


                                                                               


                                                                               


                                                                       


                                                                               


                                                                               


                                                                               


                                                                               


                                                                               


                                                                               


                                                                               


                                                                               


                                                                               


                                                                               


                                                                               


                                                                               


                                                                       


                                                                               


                                                                               


                                                                               


                                                                               


                                                                               


                                                                               


                                                                               


                                                                               


                                                                               


                                                                               


                                                                               


                                                                               


                                                                               


                                                                               


                                                                           


                                                                           


                                                                           


                                                                           


                                                                           


                                                                           


                                                                           


                                                                           


                                                                           


                                                                           


                                                                           


                                                                               


                                                                               


                                                                               


                                                                               


                                                                               


                                                                           


                                                                           


                                                                           


                                                                           


                                                                           


                                                                           


                                                                           


                                                                           


                                                                           


                                                                           


                                                                           


                                                                               


                                                                               


                                                                               


                                                                               


                                                                               


                                                                           


                                                                           


                                                                           


                                                                           


                                                                           


                                                                           


                                                                           


                                                                           


                                                                           


                                                                           


                                                                           


                                                                               


                                                                               


                                                                               


                                                                               


                                                                               


                                                                           


                                                                           


                                                                           


                                                                           


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                                


                                                                                


                                                                                


                                                                                


                                                                                


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                                


                                                                                


                                                                                


                                                                                


                                                                                


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                                


                                                                                


                                                                                


                                                                                


                                                                                


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                                


                                                                                


                                                                                


                                                                                


                                                                                


                                                                                


                                                                            


                                                                            


                                                                            


                                                                                


                                                                                


                                                                                


                                                                                


                                                                                


                                                                                


                                                                                


                                                                                


                                                                                


                                                                                


                                                                                


                                                                                


                                                                                


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                                


                                                                                


                                                                                


                                                                                


                                                                                


                                                                                


                                                                                


                                                                          


                                                                          


                                                                          


                                                                          


                                                                                


                                                                                


                                                                            


                                                                                


                                                                                


                                                                            


                                                                                


                                                                                


                                                                            


                                                                                


                                                                                


                                                                                


                                                                          


                                                                          


                                                                                


                                                                                


                                                                                


                                                                            


                                                                                


                                                                                


                                                                            


                                                                                


                                                                                


                                                                            


                                                                                


                                                                                


                                                                                


                                                                                


                                                                            


                                                                                


                                                                                


                                                                            


                                                                            


                                                                            


                                                                                


                                                                                


                                                                                


                                                                                


                                                                            


                                                                            


                                                                            


                                                                            


                                                                                


                                                                                


                                                                            


                                                                            


                                                                            


                                                                                


                                                                                


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                            


                                                                                












                                                                                                


                                                                                                                          


                                                                                                                          


                                                                                                                          


                                                                                                                          


                                                                                                                          


                                                                                                                          


                                                                                                                          


                                                                                                                          


                                                                                                                          


                                                                                                                          


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                               


                                                                                                               


                                                                                                               


                                                                                                               


                                                                                                               


                                                                                                               


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           


                                                                                                                           












                                                                                                    
                                   


                                                                         


                                                                                
 


                                                                          
                                                                

                                                                                             
                                                                

                                                                                              
                                                                

                                                                                              





                                                                          
                                                                

                                                                                             
                                                                

                                                                                              
                                                                

                                                                                              





                                                                          
                                                                 

                                                                                             
                                                                 

                                                                                              
                                                                 

                                                                                              





                                                                          
                                                                 

                                                                                              





                                                                          
                                                                 

                                                                                              


































                                                                                        
<?xml version="1.0" encoding="UTF-8" ?>
<!--  ****************************************************  -->
<!--  * This MAME layout file was generated by MFME2MAME *  -->
<!--  * Please visit mfme2mame.org for more information. *  -->
<!--  ****************************************************  -->
<mamelayout version="2">
	<element name="backdrop_colour">
		<rect>
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_96_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_96_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="Chance">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Card">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_90_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_90_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_89_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_89_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string=" £2.20">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_65_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_65_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
	</element>
	<element name="lamp_64_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_64_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
	</element>
	<element name="lamp_66_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_66_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<text string="Jail">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_88_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_88_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="FREE">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Parking">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_100_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_100_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_98_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_98_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_112_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_112_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="£3">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_113_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_113_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_114_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_114_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<text string="Go To">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="JAIL">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_105_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_105_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_103_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_103_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_102_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_102_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string=" £2.60">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_104_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_104_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string=" £2.80">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_106_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_106_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="Water">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Works">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_101_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_101_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.00"/>
		</rect>
		<text string="Train">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Station">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_97_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_97_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string=" £2.20">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_99_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_99_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="£2.40">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_178_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_178_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.13"/>
		</rect>
		<text string="Win">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Series">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_177_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_177_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<text string="Win">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Series">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_176_1_border" defstate="0">
		<rect state="1">
			<color red="0.25" green="0.13" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.03" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_176_1" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.13" green="0.06" blue="0.00"/>
		</rect>
		<text string="Win">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Series">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_180_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_180_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="Win">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Series">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_181_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_181_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Win">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Series">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_182_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_182_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.00"/>
		</rect>
		<text string="Win">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Series">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_179_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_179_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.00"/>
		</rect>
		<text string="Win">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Series">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_183_1_border" defstate="0">
		<rect state="1">
			<color red="0.13" green="0.00" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.03" green="0.00" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_183_1" defstate="0">
		<rect state="1">
			<color red="0.25" green="0.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.00" blue="0.13"/>
		</rect>
		<text string="Win">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Series">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_58_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_58_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.00"/>
		</rect>
		<text string="99 Nudges">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_57_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_57_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.00"/>
		</rect>
		<text string="16 nudges">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_56_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_56_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.00"/>
		</rect>
		<text string="12 nudges">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_55_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_55_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.00"/>
		</rect>
		<text string="8 nudges">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_49_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_49_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.00"/>
		</rect>
		<text string="1 nudge">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_50_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_50_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.00"/>
		</rect>
		<text string="2 nudges">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_51_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_51_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.00"/>
		</rect>
		<text string="3 nudges">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_52_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_52_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.00"/>
		</rect>
		<text string="4 nudges">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_53_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_53_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.00"/>
		</rect>
		<text string="5 nudges">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_54_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_54_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.00"/>
		</rect>
		<text string="6 nudges">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_87_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_87_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Nudge">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Pot">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_48_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_48_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.00"/>
		</rect>
		<text string=" Train">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string=" Station">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_134_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_134_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.00"/>
		</rect>
		<text string="GO !!">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_137_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_137_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="Community">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Chest">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_138_1_border" defstate="0">
		<rect state="1">
			<color red="0.25" green="0.13" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.03" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_138_1" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.13" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_144_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_144_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="60p">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_135_1_border" defstate="0">
		<rect state="1">
			<color red="0.25" green="0.13" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.03" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_135_1" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.13" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_136_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_136_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="40p">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_153_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_153_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string=" £1.20">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_152_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_152_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
	</element>
	<element name="lamp_151_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_151_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="£1">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_150_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_150_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
	</element>
	<element name="lamp_145_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_145_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="Income">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Tax">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_146_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_146_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.00"/>
		</rect>
		<text string="Train">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Station">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_147_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_147_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
	</element>
	<element name="lamp_148_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_148_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="£1">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_149_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_149_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="Chance">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Card">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_115_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_115_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_117_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_117_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_118_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_118_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string=" £3.60">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_116_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_116_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string=" £3.20">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_119_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_119_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="Community">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Chest">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_132_1_border" defstate="0">
		<rect state="1">
			<color red="0.13" green="0.00" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.03" green="0.00" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_132_1" defstate="0">
		<rect state="1">
			<color red="0.25" green="0.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.00" blue="0.13"/>
		</rect>
	</element>
	<element name="lamp_129_1_border" defstate="0">
		<rect state="1">
			<color red="0.13" green="0.00" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.03" green="0.00" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_129_1" defstate="0">
		<rect state="1">
			<color red="0.25" green="0.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.00" blue="0.13"/>
		</rect>
	</element>
	<element name="lamp_120_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_120_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_121_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_121_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="£4">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_122_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_122_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.00"/>
		</rect>
		<text string="Train">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Station">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_128_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_128_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="Chance">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Card">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_130_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_130_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="£5">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_131_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_131_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="Super">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Tax">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_133_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_133_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="£10">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_82_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_82_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="Community">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Chest">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_85_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_85_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="£2">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_86_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_86_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_69_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_69_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="Electric">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Company">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_84_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_84_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_83_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_83_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string=" £1.80">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_81_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_81_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_80_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_80_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string=" £1.80">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_74_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_74_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.00"/>
		</rect>
		<text string="Train">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Station">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_72_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_72_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string=" £1.60">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_73_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_73_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.13"/>
		</rect>
	</element>
	<element name="lamp_71_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_71_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.13"/>
		</rect>
	</element>
	<element name="lamp_70_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_70_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string=" £1.40">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_67_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_67_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string=" £1.40">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_68_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_68_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.13"/>
		</rect>
	</element>
	<element name="lamp_230_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_230_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="4">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_231_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_231_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="3">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_232_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_232_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="2">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_233_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_233_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="1">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_229_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_229_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Nudge">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Now !">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_234_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_234_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="LOSE">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_235_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_235_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Rapid Cash">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_236_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_236_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Skill Fruit">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_237_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_237_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Crazy Reels">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_240_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_240_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="10 Nudges">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_241_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_241_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="HI LO CASH">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_242_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_242_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Win Series">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_243_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_243_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Monopoly">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_161_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_161_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Get Out Of">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="JAIL  Free">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_253_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_253_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Trail">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Held">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_252_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_252_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="y">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_251_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_251_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="l">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_250_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_250_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="o">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_249_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_249_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="p">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_248_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_248_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="o">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_247_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_247_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="n">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_246_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_246_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="o">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_245_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_245_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="M">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_228_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_228_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="LOSE">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_198_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_198_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.13"/>
		</rect>
		<text string="£1 3x Cherry">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_201_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_201_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.13"/>
		</rect>
		<text string=" £1.20 3x Mixed Bar">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_204_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_204_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.13"/>
		</rect>
		<text string=" £1.60 3x Grapes">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_213_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_213_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.13"/>
		</rect>
		<text string="£2 3x Melon">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_216_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_216_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.13"/>
		</rect>
		<text string="£3 3x JPM">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_219_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_219_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.13"/>
		</rect>
		<text string="£4 3x Single Bar">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_227_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_227_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.13"/>
		</rect>
		<text string="£10 3x Triple Bar">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_224_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_224_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.13"/>
		</rect>
		<text string="£5 3x Double Bar">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_160_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_160_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.00"/>
		</rect>
		<text string="REPEAT">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_162_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_162_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="SPIN">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_184_1_border" defstate="0">
		<rect state="1">
			<color red="0.25" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.06" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_184_1" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.13" green="0.13" blue="0.25"/>
		</rect>
		<text string="Play">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Monopoly!">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="colour_button_154_border">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="colour_button_154">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.00"/>
		</rect>
		<text string=" START">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="colour_button_155_border">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="colour_button_155">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="HOLD">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="NUDGE">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="colour_button_156_border">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="colour_button_156">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="HOLD   HI">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="NUDGE">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="colour_button_157_border">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="colour_button_157">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="HOLD   LO">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="NUDGE">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="colour_button_158_border">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="colour_button_158">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.00"/>
		</rect>
		<text string="£1">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="colour_button_159_border">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="colour_button_159">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.00"/>
		</rect>
		<text string="CANCEL">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="COLLECT">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="colour_button_160_border">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="colour_button_160">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<text string=" EXCHANGE">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="reel_background">
		<rect>
			<color red="1.0" green="1.0" blue="1.0"/>
		</rect>
	</element>
	<element name="reel0" defstate="0">
		<reel reelreversed="0" stateoffset="-5461" numsymbolsvisible="3" symbollist="Triple Bar,Melon,JPM,Single Bar(2),Cherry,JPM(3),Grapes,Cherry,Melon,Double Bar(1),Melon,Grapes,Cherry,Single Bar(2),Grapes,Cherry(1)">
			<color red="0.0" green="0.0" blue="0.0"/>
		</reel>
	</element>
	<element name="reel1" defstate="0">
		<reel reelreversed="0" stateoffset="-5461" numsymbolsvisible="3" symbollist="Triple Bar,Melon,Gem,Double Bar(3),Cherry,JPM(3),Grapes,Cherry,Melon,Single Bar(2),Monopoly,Grapes,Cherry(1),Double Bar,Grapes,Cherry(1)">
			<color red="0.0" green="0.0" blue="0.0"/>
		</reel>
	</element>
	<element name="reel2" defstate="0">
		<reel reelreversed="0" stateoffset="-5461" numsymbolsvisible="3" symbollist="Triple Bar,Melon(2),JPM,Single Bar,Cherry(4),JPM,Grapes,Cherry(1),Melon,Double Bar(2),Melon,Grapes,Cherry,Single Bar,Grapes,Cherry(3)">
			<color red="0.0" green="0.0" blue="0.0"/>
		</reel>
	</element>
	<element name="reel3" defstate="0">
		<reel reelreversed="1" stateoffset="-5461" numsymbolsvisible="1" symbollist="Go to Jail,Go to Mayfair,Go Back,Get Out of Jail,8 or More to Continue,Skill Nudge,Boost,Go To Next Station,Skill,Double or Chance,Bankrupt,Go To Jail,Extra Nudges,Pay Super Tax,Take a Trip,Go back to Old Kent Road">
			<color red="0.0" green="0.0" blue="0.0"/>
		</reel>
	</element>
	<element name="reel4" defstate="0">
		<reel reelreversed="0" stateoffset="-1365" numsymbolsvisible="1" symbollist="6+6,5+6,6+4,6+3,3+5,4+3,3+3,2+3,3+1,1+2,1+1,1">
			<color red="0.0" green="0.0" blue="0.0"/>
		</reel>
	</element>
	<element name="led_background">
		<rect>
			<color red="0.4" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="led_on">
		<rect state="1">
			<color red="1.0" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="led_dot_on">
		<disk state="1">
			<color red="1.0" green="0.0" blue="0.0"/>
		</disk>
	</element>
	<element name="led_off">
		<rect state="0">
			<color red="0.5" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="led_dot_off">
		<disk state="0">
			<color red="0.5" green="0.0" blue="0.0"/>
		</disk>
	</element>
	<element name="led_digit_rect_black">
		<rect>
			<color red="0.0" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="led_digit_rect_red">
		<rect>
			<color red="1.0" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="led_digit_rect_green">
		<rect>
			<color red="0.0" green="1.0" blue="0.0"/>
		</rect>
	</element>
	<element name="led_digit_rect_blue">
		<rect>
			<color red="0.0" green="0.0" blue="1.0"/>
		</rect>
	</element>
	<element name="led_digit_red">
		<led7seg>
			<color red="1.0" green="0.0" blue="0.0"/>
		</led7seg>
	</element>
	<element name="led_digit_green">
		<led7seg>
			<color red="0.0" green="1.0" blue="0.0"/>
		</led7seg>
	</element>
	<element name="led_digit_blue">
		<led7seg>
			<color red="0.0" green="0.5" blue="1.0"/>
		</led7seg>
	</element>
	<element name="vfd0">
		<led16segsc>
			<color red="0.0" green="1.0" blue="1.0"/>
		</led16segsc>
	</element>
	<element name="vfd0_background">
		<rect>
			<color red="0.0" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="reel_lamp" defstate="0">
		<rect> <color red="0.40" green="0.40" blue="0.40"/> </rect>
		<disk state="1"> <bounds xc="0.5" yc="0.5" width="1.0"      height="1.0"/>      <color red="0.50" green="0.50" blue="0.50"/> </disk>
		<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.916667" height="0.916667"/> <color red="0.60" green="0.60" blue="0.60"/> </disk>
		<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.833333" height="0.833333"/> <color red="0.70" green="0.70" blue="0.70"/> </disk>
		<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.75"     height="0.75"/>     <color red="0.80" green="0.80" blue="0.80"/> </disk>
		<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.666667" height="0.666667"/> <color red="0.90" green="0.90" blue="0.90"/> </disk>
		<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.583333" height="0.583333"/> <color red="1.00" green="1.00" blue="1.00"/> </disk>
	</element>
	<element name="label_89">
		<text string="Win">
			<color red="1.0" green="1.0" blue="1.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Line">
			<color red="1.0" green="1.0" blue="1.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="label_90">
		<text string="Win">
			<color red="1.0" green="1.0" blue="1.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Line">
			<color red="1.0" green="1.0" blue="1.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="label_150">
		<text string="1 - 12">
			<color red="1.0" green="1.0" blue="1.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="debug_backdrop_colour">
		<rect>
			<color red="0.0" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="debug_lamp_standard">
		<rect state="0">
			<color red="0.00" green="0.20" blue="0.00"/>
		</rect>
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
	</element>
	<element name="debug_lamp_reel">
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.20"/>
		</rect>
		<rect state="1">
			<color red="0.00" green="0.00" blue="1.00"/>
		</rect>
	</element>
	<element name="debug_lamp_segment">
		<rect state="0">
			<color red="0.20" green="0.00" blue="0.00"/>
		</rect>
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="debug_lamp_button">
		<rect state="0">
			<color red="0.20" green="0.20" blue="0.00"/>
		</rect>
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
	</element>
	<element name="debug_lamp_unreferenced">
		<rect state="0">
			<color red="0.20" green="0.20" blue="0.20"/>
		</rect>
		<rect state="1">
			<color red="1.00" green="1.00" blue="1.00"/>
		</rect>
	</element>
	<repeat count="256">
		<param name="n" start="0" increment="1"/>
		<element name="debug_lamp_label_~n~">
			<text string="~n~">
				<color red="0.0" green="0.0" blue="0.0"/>
				<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
			</text>
		</element>
	</repeat>
	<element name="debug_button_standard">
		<rect state="0">
			<color red="0.20" green="0.20" blue="0.00"/>
		</rect>
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
	</element>
	<element name="debug_button_unreferenced">
		<rect state="0">
			<color red="0.20" green="0.20" blue="0.20"/>
		</rect>
		<rect state="1">
			<color red="1.00" green="1.00" blue="1.00"/>
		</rect>
	</element>
	<repeat count="64">
		<param name="n" start="0" increment="1"/>
		<element name="debug_button_label_~n~">
			<text string="~n~">
				<color red="0.0" green="0.0" blue="0.0"/>
				<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
			</text>
		</element>
	</repeat>
	<element name="debug_vfd">
		<led16segsc>
			<color red="0.0" green="1.0" blue="1.0"/>
		</led16segsc>
	</element>
	<element name="debug_stepper_value" defstate="0">
		<simplecounter maxstate="999" digits="3">
			<color red="1.0" green="1.0" blue="1.0"/>
		</simplecounter>
	</element>
	<element name="debug_reel_symbol_count_0">
		<text string="16">
			<color red="1.0" green="1.0" blue="1.0"/>
		</text>
	</element>
	<element name="debug_reel_symbol_count_1">
		<text string="16">
			<color red="1.0" green="1.0" blue="1.0"/>
		</text>
	</element>
	<element name="debug_reel_symbol_count_2">
		<text string="16">
			<color red="1.0" green="1.0" blue="1.0"/>
		</text>
	</element>
	<element name="debug_reel_symbol_count_3">
		<text string="16">
			<color red="1.0" green="1.0" blue="1.0"/>
		</text>
	</element>
	<element name="debug_reel_symbol_count_4">
		<text string="12">
			<color red="1.0" green="1.0" blue="1.0"/>
		</text>
	</element>
	<view name="AWP Simulated Video">
		<element ref="backdrop_colour">
			<bounds x="0" y="0" width="792" height="646"/>
		</element>
		<element ref="reel_background">
			<bounds x="275" y="415" width="80" height="190"/>
		</element>
		<element name="lamp-2" ref="reel_lamp" state="0">
			<bounds x="275.0000" y="415.0000" width="80.0000" height="63.3333"/>
		</element>
		<element name="lamp-2" ref="reel_lamp" state="0">
			<bounds x="275.0000" y="478.3333" width="80.0000" height="63.3333"/>
		</element>
		<element name="lamp-2" ref="reel_lamp" state="0">
			<bounds x="275.0000" y="541.6667" width="80.0000" height="63.3333"/>
		</element>
		<element name="sreel1" ref="reel0" state="0">
			<bounds x="275" y="415" width="80" height="190"/>
		</element>
		<element ref="reel_background">
			<bounds x="357" y="415" width="80" height="190"/>
		</element>
		<element name="lamp-2" ref="reel_lamp" state="0">
			<bounds x="357.0000" y="415.0000" width="80.0000" height="63.3333"/>
		</element>
		<element name="lamp-2" ref="reel_lamp" state="0">
			<bounds x="357.0000" y="478.3333" width="80.0000" height="63.3333"/>
		</element>
		<element name="lamp-2" ref="reel_lamp" state="0">
			<bounds x="357.0000" y="541.6667" width="80.0000" height="63.3333"/>
		</element>
		<element name="sreel2" ref="reel1" state="0">
			<bounds x="357" y="415" width="80" height="190"/>
		</element>
		<element ref="reel_background">
			<bounds x="439" y="415" width="80" height="190"/>
		</element>
		<element name="lamp-2" ref="reel_lamp" state="0">
			<bounds x="439.0000" y="415.0000" width="80.0000" height="63.3333"/>
		</element>
		<element name="lamp-2" ref="reel_lamp" state="0">
			<bounds x="439.0000" y="478.3333" width="80.0000" height="63.3333"/>
		</element>
		<element name="lamp-2" ref="reel_lamp" state="0">
			<bounds x="439.0000" y="541.6667" width="80.0000" height="63.3333"/>
		</element>
		<element name="sreel3" ref="reel2" state="0">
			<bounds x="439" y="415" width="80" height="190"/>
		</element>
		<element ref="reel_background">
			<bounds x="180" y="135" width="180" height="80"/>
		</element>
		<element name="lamp20" ref="reel_lamp" state="0">
			<bounds x="180.0000" y="135.0000" width="180.0000" height="80.0000"/>
		</element>
		<element name="sreel4" ref="reel3" state="0">
			<bounds x="180" y="135" width="180" height="80"/>
		</element>
		<element ref="reel_background">
			<bounds x="377" y="135" width="90" height="80"/>
		</element>
		<element name="lamp33" ref="reel_lamp" state="0">
			<bounds x="377.0000" y="135.0000" width="90.0000" height="80.0000"/>
		</element>
		<element name="sreel5" ref="reel4" state="0">
			<bounds x="377" y="135" width="90" height="80"/>
		</element>
		<element name="lamp96" ref="lamp_96_1_border" state="0">
			<bounds x="218" y="3" width="50" height="48"/>
		</element>
		<element name="lamp96" ref="lamp_96_1" state="0">
			<bounds x="220" y="5" width="46" height="44"/>
		</element>
		<element name="lamp90" ref="lamp_90_1_border" state="0">
			<bounds x="172" y="35" width="46" height="16"/>
		</element>
		<element name="lamp90" ref="lamp_90_1" state="0">
			<bounds x="174" y="37" width="42" height="12"/>
		</element>
		<element name="lamp89" ref="lamp_89_1_border" state="0">
			<bounds x="172" y="3" width="46" height="32"/>
		</element>
		<element name="lamp89" ref="lamp_89_1" state="0">
			<bounds x="174" y="5" width="42" height="28"/>
		</element>
		<element name="lamp65" ref="lamp_65_1_border" state="0">
			<bounds x="124" y="362" width="48" height="18"/>
		</element>
		<element name="lamp65" ref="lamp_65_1" state="0">
			<bounds x="126" y="364" width="44" height="14"/>
		</element>
		<element name="lamp64" ref="lamp_64_1_border" state="0">
			<bounds x="106" y="334" width="18" height="46"/>
		</element>
		<element name="lamp64" ref="lamp_64_1" state="0">
			<bounds x="108" y="336" width="14" height="42"/>
		</element>
		<element name="lamp66" ref="lamp_66_1_border" state="0">
			<bounds x="124" y="334" width="48" height="28"/>
		</element>
		<element name="lamp66" ref="lamp_66_1" state="0">
			<bounds x="126" y="336" width="44" height="24"/>
		</element>
		<element name="lamp88" ref="lamp_88_1_border" state="0">
			<bounds x="106" y="3" width="66" height="44"/>
		</element>
		<element name="lamp88" ref="lamp_88_1" state="0">
			<bounds x="108" y="5" width="62" height="40"/>
		</element>
		<element name="lamp100" ref="lamp_100_1_border" state="0">
			<bounds x="314" y="35" width="46" height="16"/>
		</element>
		<element name="lamp100" ref="lamp_100_1" state="0">
			<bounds x="316" y="37" width="42" height="12"/>
		</element>
		<element name="lamp98" ref="lamp_98_1_border" state="0">
			<bounds x="268" y="35" width="46" height="16"/>
		</element>
		<element name="lamp98" ref="lamp_98_1" state="0">
			<bounds x="270" y="37" width="42" height="12"/>
		</element>
		<element name="lamp112" ref="lamp_112_1_border" state="0">
			<bounds x="546" y="3" width="46" height="32"/>
		</element>
		<element name="lamp112" ref="lamp_112_1" state="0">
			<bounds x="548" y="5" width="42" height="28"/>
		</element>
		<element name="lamp113" ref="lamp_113_1_border" state="0">
			<bounds x="546" y="35" width="46" height="16"/>
		</element>
		<element name="lamp113" ref="lamp_113_1" state="0">
			<bounds x="548" y="37" width="42" height="12"/>
		</element>
		<element name="lamp114" ref="lamp_114_1_border" state="0">
			<bounds x="592" y="3" width="66" height="44"/>
		</element>
		<element name="lamp114" ref="lamp_114_1" state="0">
			<bounds x="594" y="5" width="62" height="40"/>
		</element>
		<element name="lamp105" ref="lamp_105_1_border" state="0">
			<bounds x="454" y="35" width="46" height="16"/>
		</element>
		<element name="lamp105" ref="lamp_105_1" state="0">
			<bounds x="456" y="37" width="42" height="12"/>
		</element>
		<element name="lamp103" ref="lamp_103_1_border" state="0">
			<bounds x="408" y="35" width="46" height="16"/>
		</element>
		<element name="lamp103" ref="lamp_103_1" state="0">
			<bounds x="410" y="37" width="42" height="12"/>
		</element>
		<element name="lamp102" ref="lamp_102_1_border" state="0">
			<bounds x="408" y="3" width="46" height="32"/>
		</element>
		<element name="lamp102" ref="lamp_102_1" state="0">
			<bounds x="410" y="5" width="42" height="28"/>
		</element>
		<element name="lamp104" ref="lamp_104_1_border" state="0">
			<bounds x="454" y="3" width="46" height="32"/>
		</element>
		<element name="lamp104" ref="lamp_104_1" state="0">
			<bounds x="456" y="5" width="42" height="28"/>
		</element>
		<element name="lamp106" ref="lamp_106_1_border" state="0">
			<bounds x="500" y="3" width="46" height="48"/>
		</element>
		<element name="lamp106" ref="lamp_106_1" state="0">
			<bounds x="502" y="5" width="42" height="44"/>
		</element>
		<element name="lamp101" ref="lamp_101_1_border" state="0">
			<bounds x="360" y="3" width="48" height="48"/>
		</element>
		<element name="lamp101" ref="lamp_101_1" state="0">
			<bounds x="362" y="5" width="44" height="44"/>
		</element>
		<element name="lamp97" ref="lamp_97_1_border" state="0">
			<bounds x="268" y="3" width="46" height="32"/>
		</element>
		<element name="lamp97" ref="lamp_97_1" state="0">
			<bounds x="270" y="5" width="42" height="28"/>
		</element>
		<element name="lamp99" ref="lamp_99_1_border" state="0">
			<bounds x="314" y="3" width="46" height="32"/>
		</element>
		<element name="lamp99" ref="lamp_99_1" state="0">
			<bounds x="316" y="5" width="42" height="28"/>
		</element>
		<element name="lamp178" ref="lamp_178_1_border" state="0">
			<bounds x="698" y="173" width="58" height="34"/>
		</element>
		<element name="lamp178" ref="lamp_178_1" state="0">
			<bounds x="700" y="175" width="54" height="30"/>
		</element>
		<element name="lamp177" ref="lamp_177_1_border" state="0">
			<bounds x="698" y="207" width="58" height="34"/>
		</element>
		<element name="lamp177" ref="lamp_177_1" state="0">
			<bounds x="700" y="209" width="54" height="30"/>
		</element>
		<element name="lamp176" ref="lamp_176_1_border" state="0">
			<bounds x="698" y="241" width="58" height="34"/>
		</element>
		<element name="lamp176" ref="lamp_176_1" state="0">
			<bounds x="700" y="243" width="54" height="30"/>
		</element>
		<element name="lamp180" ref="lamp_180_1_border" state="0">
			<bounds x="698" y="105" width="58" height="34"/>
		</element>
		<element name="lamp180" ref="lamp_180_1" state="0">
			<bounds x="700" y="107" width="54" height="30"/>
		</element>
		<element name="lamp181" ref="lamp_181_1_border" state="0">
			<bounds x="698" y="71" width="58" height="34"/>
		</element>
		<element name="lamp181" ref="lamp_181_1" state="0">
			<bounds x="700" y="73" width="54" height="30"/>
		</element>
		<element name="lamp182" ref="lamp_182_1_border" state="0">
			<bounds x="698" y="37" width="58" height="34"/>
		</element>
		<element name="lamp182" ref="lamp_182_1" state="0">
			<bounds x="700" y="39" width="54" height="30"/>
		</element>
		<element name="lamp179" ref="lamp_179_1_border" state="0">
			<bounds x="698" y="139" width="58" height="34"/>
		</element>
		<element name="lamp179" ref="lamp_179_1" state="0">
			<bounds x="700" y="141" width="54" height="30"/>
		</element>
		<element name="lamp183" ref="lamp_183_1_border" state="0">
			<bounds x="698" y="3" width="58" height="34"/>
		</element>
		<element name="lamp183" ref="lamp_183_1" state="0">
			<bounds x="700" y="5" width="54" height="30"/>
		</element>
		<element name="lamp58" ref="lamp_58_1_border" state="0">
			<bounds x="19" y="37" width="74" height="22"/>
		</element>
		<element name="lamp58" ref="lamp_58_1" state="0">
			<bounds x="21" y="39" width="70" height="18"/>
		</element>
		<element name="lamp57" ref="lamp_57_1_border" state="0">
			<bounds x="19" y="59" width="74" height="22"/>
		</element>
		<element name="lamp57" ref="lamp_57_1" state="0">
			<bounds x="21" y="61" width="70" height="18"/>
		</element>
		<element name="lamp56" ref="lamp_56_1_border" state="0">
			<bounds x="19" y="81" width="74" height="22"/>
		</element>
		<element name="lamp56" ref="lamp_56_1" state="0">
			<bounds x="21" y="83" width="70" height="18"/>
		</element>
		<element name="lamp55" ref="lamp_55_1_border" state="0">
			<bounds x="19" y="103" width="74" height="22"/>
		</element>
		<element name="lamp55" ref="lamp_55_1" state="0">
			<bounds x="21" y="105" width="70" height="18"/>
		</element>
		<element name="lamp49" ref="lamp_49_1_border" state="0">
			<bounds x="19" y="235" width="74" height="22"/>
		</element>
		<element name="lamp49" ref="lamp_49_1" state="0">
			<bounds x="21" y="237" width="70" height="18"/>
		</element>
		<element name="lamp50" ref="lamp_50_1_border" state="0">
			<bounds x="19" y="213" width="74" height="22"/>
		</element>
		<element name="lamp50" ref="lamp_50_1" state="0">
			<bounds x="21" y="215" width="70" height="18"/>
		</element>
		<element name="lamp51" ref="lamp_51_1_border" state="0">
			<bounds x="19" y="191" width="74" height="22"/>
		</element>
		<element name="lamp51" ref="lamp_51_1" state="0">
			<bounds x="21" y="193" width="70" height="18"/>
		</element>
		<element name="lamp52" ref="lamp_52_1_border" state="0">
			<bounds x="19" y="169" width="74" height="22"/>
		</element>
		<element name="lamp52" ref="lamp_52_1" state="0">
			<bounds x="21" y="171" width="70" height="18"/>
		</element>
		<element name="lamp53" ref="lamp_53_1_border" state="0">
			<bounds x="19" y="147" width="74" height="22"/>
		</element>
		<element name="lamp53" ref="lamp_53_1" state="0">
			<bounds x="21" y="149" width="70" height="18"/>
		</element>
		<element name="lamp54" ref="lamp_54_1_border" state="0">
			<bounds x="19" y="125" width="74" height="22"/>
		</element>
		<element name="lamp54" ref="lamp_54_1" state="0">
			<bounds x="21" y="127" width="70" height="18"/>
		</element>
		<element name="lamp87" ref="lamp_87_1_border" state="0">
			<bounds x="20" y="3" width="72" height="34"/>
		</element>
		<element name="lamp87" ref="lamp_87_1" state="0">
			<bounds x="22" y="5" width="68" height="30"/>
		</element>
		<element name="lamp48" ref="lamp_48_1_border" state="0">
			<bounds x="15" y="257" width="82" height="38"/>
		</element>
		<element name="lamp48" ref="lamp_48_1" state="0">
			<bounds x="17" y="259" width="78" height="34"/>
		</element>
		<element name="lamp134" ref="lamp_134_1_border" state="0">
			<bounds x="593" y="335" width="64" height="45"/>
		</element>
		<element name="lamp134" ref="lamp_134_1" state="0">
			<bounds x="595" y="337" width="60" height="41"/>
		</element>
		<element name="lamp137" ref="lamp_137_1_border" state="0">
			<bounds x="505" y="332" width="42" height="48"/>
		</element>
		<element name="lamp137" ref="lamp_137_1" state="0">
			<bounds x="507" y="334" width="38" height="44"/>
		</element>
		<element name="lamp138" ref="lamp_138_1_border" state="0">
			<bounds x="459" y="332" width="46" height="16"/>
		</element>
		<element name="lamp138" ref="lamp_138_1" state="0">
			<bounds x="461" y="334" width="42" height="12"/>
		</element>
		<element name="lamp144" ref="lamp_144_1_border" state="0">
			<bounds x="459" y="348" width="46" height="32"/>
		</element>
		<element name="lamp144" ref="lamp_144_1" state="0">
			<bounds x="461" y="350" width="42" height="28"/>
		</element>
		<element name="lamp135" ref="lamp_135_1_border" state="0">
			<bounds x="547" y="332" width="46" height="16"/>
		</element>
		<element name="lamp135" ref="lamp_135_1" state="0">
			<bounds x="549" y="334" width="42" height="12"/>
		</element>
		<element name="lamp136" ref="lamp_136_1_border" state="0">
			<bounds x="547" y="348" width="46" height="32"/>
		</element>
		<element name="lamp136" ref="lamp_136_1" state="0">
			<bounds x="549" y="350" width="42" height="28"/>
		</element>
		<element name="lamp153" ref="lamp_153_1_border" state="0">
			<bounds x="172" y="348" width="46" height="32"/>
		</element>
		<element name="lamp153" ref="lamp_153_1" state="0">
			<bounds x="174" y="350" width="42" height="28"/>
		</element>
		<element name="lamp152" ref="lamp_152_1_border" state="0">
			<bounds x="172" y="332" width="46" height="16"/>
		</element>
		<element name="lamp152" ref="lamp_152_1" state="0">
			<bounds x="174" y="334" width="42" height="12"/>
		</element>
		<element name="lamp151" ref="lamp_151_1_border" state="0">
			<bounds x="218" y="348" width="46" height="32"/>
		</element>
		<element name="lamp151" ref="lamp_151_1" state="0">
			<bounds x="220" y="350" width="42" height="28"/>
		</element>
		<element name="lamp150" ref="lamp_150_1_border" state="0">
			<bounds x="218" y="332" width="46" height="16"/>
		</element>
		<element name="lamp150" ref="lamp_150_1" state="0">
			<bounds x="220" y="334" width="42" height="12"/>
		</element>
		<element name="lamp145" ref="lamp_145_1_border" state="0">
			<bounds x="408" y="332" width="51" height="48"/>
		</element>
		<element name="lamp145" ref="lamp_145_1" state="0">
			<bounds x="410" y="334" width="47" height="44"/>
		</element>
		<element name="lamp146" ref="lamp_146_1_border" state="0">
			<bounds x="360" y="332" width="48" height="48"/>
		</element>
		<element name="lamp146" ref="lamp_146_1" state="0">
			<bounds x="362" y="334" width="44" height="44"/>
		</element>
		<element name="lamp147" ref="lamp_147_1_border" state="0">
			<bounds x="314" y="332" width="46" height="16"/>
		</element>
		<element name="lamp147" ref="lamp_147_1" state="0">
			<bounds x="316" y="334" width="42" height="12"/>
		</element>
		<element name="lamp148" ref="lamp_148_1_border" state="0">
			<bounds x="314" y="348" width="46" height="32"/>
		</element>
		<element name="lamp148" ref="lamp_148_1" state="0">
			<bounds x="316" y="350" width="42" height="28"/>
		</element>
		<element name="lamp149" ref="lamp_149_1_border" state="0">
			<bounds x="264" y="332" width="50" height="48"/>
		</element>
		<element name="lamp149" ref="lamp_149_1" state="0">
			<bounds x="266" y="334" width="46" height="44"/>
		</element>
		<element name="lamp115" ref="lamp_115_1_border" state="0">
			<bounds x="593" y="47" width="18" height="32"/>
		</element>
		<element name="lamp115" ref="lamp_115_1" state="0">
			<bounds x="595" y="49" width="14" height="28"/>
		</element>
		<element name="lamp117" ref="lamp_117_1_border" state="0">
			<bounds x="593" y="79" width="18" height="32"/>
		</element>
		<element name="lamp117" ref="lamp_117_1" state="0">
			<bounds x="595" y="81" width="14" height="28"/>
		</element>
		<element name="lamp118" ref="lamp_118_1_border" state="0">
			<bounds x="611" y="79" width="46" height="32"/>
		</element>
		<element name="lamp118" ref="lamp_118_1" state="0">
			<bounds x="613" y="81" width="42" height="28"/>
		</element>
		<element name="lamp116" ref="lamp_116_1_border" state="0">
			<bounds x="611" y="47" width="46" height="32"/>
		</element>
		<element name="lamp116" ref="lamp_116_1" state="0">
			<bounds x="613" y="49" width="42" height="28"/>
		</element>
		<element name="lamp119" ref="lamp_119_1_border" state="0">
			<bounds x="593" y="111" width="64" height="32"/>
		</element>
		<element name="lamp119" ref="lamp_119_1" state="0">
			<bounds x="595" y="113" width="60" height="28"/>
		</element>
		<element name="lamp132" ref="lamp_132_1_border" state="0">
			<bounds x="593" y="303" width="18" height="32"/>
		</element>
		<element name="lamp132" ref="lamp_132_1" state="0">
			<bounds x="595" y="305" width="14" height="28"/>
		</element>
		<element name="lamp129" ref="lamp_129_1_border" state="0">
			<bounds x="593" y="239" width="18" height="32"/>
		</element>
		<element name="lamp129" ref="lamp_129_1" state="0">
			<bounds x="595" y="241" width="14" height="28"/>
		</element>
		<element name="lamp120" ref="lamp_120_1_border" state="0">
			<bounds x="593" y="143" width="18" height="32"/>
		</element>
		<element name="lamp120" ref="lamp_120_1" state="0">
			<bounds x="595" y="145" width="14" height="28"/>
		</element>
		<element name="lamp121" ref="lamp_121_1_border" state="0">
			<bounds x="611" y="143" width="46" height="32"/>
		</element>
		<element name="lamp121" ref="lamp_121_1" state="0">
			<bounds x="613" y="145" width="42" height="28"/>
		</element>
		<element name="lamp122" ref="lamp_122_1_border" state="0">
			<bounds x="593" y="175" width="64" height="32"/>
		</element>
		<element name="lamp122" ref="lamp_122_1" state="0">
			<bounds x="595" y="177" width="60" height="28"/>
		</element>
		<element name="lamp128" ref="lamp_128_1_border" state="0">
			<bounds x="593" y="207" width="64" height="32"/>
		</element>
		<element name="lamp128" ref="lamp_128_1" state="0">
			<bounds x="595" y="209" width="60" height="28"/>
		</element>
		<element name="lamp130" ref="lamp_130_1_border" state="0">
			<bounds x="611" y="239" width="46" height="32"/>
		</element>
		<element name="lamp130" ref="lamp_130_1" state="0">
			<bounds x="613" y="241" width="42" height="28"/>
		</element>
		<element name="lamp131" ref="lamp_131_1_border" state="0">
			<bounds x="593" y="271" width="64" height="32"/>
		</element>
		<element name="lamp131" ref="lamp_131_1" state="0">
			<bounds x="595" y="273" width="60" height="28"/>
		</element>
		<element name="lamp133" ref="lamp_133_1_border" state="0">
			<bounds x="611" y="303" width="46" height="32"/>
		</element>
		<element name="lamp133" ref="lamp_133_1" state="0">
			<bounds x="613" y="305" width="42" height="28"/>
		</element>
		<element name="lamp82" ref="lamp_82_1_border" state="0">
			<bounds x="106" y="111" width="64" height="32"/>
		</element>
		<element name="lamp82" ref="lamp_82_1" state="0">
			<bounds x="108" y="113" width="60" height="28"/>
		</element>
		<element name="lamp85" ref="lamp_85_1_border" state="0">
			<bounds x="106" y="47" width="46" height="32"/>
		</element>
		<element name="lamp85" ref="lamp_85_1" state="0">
			<bounds x="108" y="49" width="42" height="28"/>
		</element>
		<element name="lamp86" ref="lamp_86_1_border" state="0">
			<bounds x="152" y="47" width="18" height="32"/>
		</element>
		<element name="lamp86" ref="lamp_86_1" state="0">
			<bounds x="154" y="49" width="14" height="28"/>
		</element>
		<element name="lamp69" ref="lamp_69_1_border" state="0">
			<bounds x="106" y="270" width="64" height="32"/>
		</element>
		<element name="lamp69" ref="lamp_69_1" state="0">
			<bounds x="108" y="272" width="60" height="28"/>
		</element>
		<element name="lamp84" ref="lamp_84_1_border" state="0">
			<bounds x="152" y="79" width="18" height="32"/>
		</element>
		<element name="lamp84" ref="lamp_84_1" state="0">
			<bounds x="154" y="81" width="14" height="28"/>
		</element>
		<element name="lamp83" ref="lamp_83_1_border" state="0">
			<bounds x="106" y="79" width="46" height="32"/>
		</element>
		<element name="lamp83" ref="lamp_83_1" state="0">
			<bounds x="108" y="81" width="42" height="28"/>
		</element>
		<element name="lamp81" ref="lamp_81_1_border" state="0">
			<bounds x="152" y="143" width="18" height="32"/>
		</element>
		<element name="lamp81" ref="lamp_81_1" state="0">
			<bounds x="154" y="145" width="14" height="28"/>
		</element>
		<element name="lamp80" ref="lamp_80_1_border" state="0">
			<bounds x="106" y="143" width="46" height="32"/>
		</element>
		<element name="lamp80" ref="lamp_80_1" state="0">
			<bounds x="108" y="145" width="42" height="28"/>
		</element>
		<element name="lamp74" ref="lamp_74_1_border" state="0">
			<bounds x="106" y="175" width="64" height="32"/>
		</element>
		<element name="lamp74" ref="lamp_74_1" state="0">
			<bounds x="108" y="177" width="60" height="28"/>
		</element>
		<element name="lamp72" ref="lamp_72_1_border" state="0">
			<bounds x="106" y="207" width="46" height="32"/>
		</element>
		<element name="lamp72" ref="lamp_72_1" state="0">
			<bounds x="108" y="209" width="42" height="28"/>
		</element>
		<element name="lamp73" ref="lamp_73_1_border" state="0">
			<bounds x="152" y="207" width="18" height="32"/>
		</element>
		<element name="lamp73" ref="lamp_73_1" state="0">
			<bounds x="154" y="209" width="14" height="28"/>
		</element>
		<element name="lamp71" ref="lamp_71_1_border" state="0">
			<bounds x="152" y="239" width="18" height="32"/>
		</element>
		<element name="lamp71" ref="lamp_71_1" state="0">
			<bounds x="154" y="241" width="14" height="28"/>
		</element>
		<element name="lamp70" ref="lamp_70_1_border" state="0">
			<bounds x="106" y="239" width="46" height="32"/>
		</element>
		<element name="lamp70" ref="lamp_70_1" state="0">
			<bounds x="108" y="241" width="42" height="28"/>
		</element>
		<element name="lamp67" ref="lamp_67_1_border" state="0">
			<bounds x="106" y="302" width="46" height="32"/>
		</element>
		<element name="lamp67" ref="lamp_67_1" state="0">
			<bounds x="108" y="304" width="42" height="28"/>
		</element>
		<element name="lamp68" ref="lamp_68_1_border" state="0">
			<bounds x="152" y="302" width="18" height="32"/>
		</element>
		<element name="lamp68" ref="lamp_68_1" state="0">
			<bounds x="154" y="304" width="14" height="28"/>
		</element>
		<element name="lamp230" ref="lamp_230_1_border" state="0">
			<bounds x="212" y="530" width="37" height="47"/>
		</element>
		<element name="lamp230" ref="lamp_230_1" state="0">
			<bounds x="214" y="532" width="33" height="43"/>
		</element>
		<element name="lamp231" ref="lamp_231_1_border" state="0">
			<bounds x="175" y="530" width="37" height="47"/>
		</element>
		<element name="lamp231" ref="lamp_231_1" state="0">
			<bounds x="177" y="532" width="33" height="43"/>
		</element>
		<element name="lamp232" ref="lamp_232_1_border" state="0">
			<bounds x="138" y="530" width="37" height="47"/>
		</element>
		<element name="lamp232" ref="lamp_232_1" state="0">
			<bounds x="140" y="532" width="33" height="43"/>
		</element>
		<element name="lamp233" ref="lamp_233_1_border" state="0">
			<bounds x="101" y="530" width="37" height="47"/>
		</element>
		<element name="lamp233" ref="lamp_233_1" state="0">
			<bounds x="103" y="532" width="33" height="43"/>
		</element>
		<element name="lamp229" ref="lamp_229_1_border" state="0">
			<bounds x="151" y="498" width="52" height="32"/>
		</element>
		<element name="lamp229" ref="lamp_229_1" state="0">
			<bounds x="153" y="500" width="48" height="28"/>
		</element>
		<element name="lamp234" ref="lamp_234_1_border" state="0">
			<bounds x="50" y="540" width="50" height="26"/>
		</element>
		<element name="lamp234" ref="lamp_234_1" state="0">
			<bounds x="52" y="542" width="46" height="22"/>
		</element>
		<element name="lamp235" ref="lamp_235_1_border" state="0">
			<bounds x="12" y="497" width="88" height="22"/>
		</element>
		<element name="lamp235" ref="lamp_235_1" state="0">
			<bounds x="14" y="499" width="84" height="18"/>
		</element>
		<element name="lamp236" ref="lamp_236_1_border" state="0">
			<bounds x="12" y="475" width="88" height="22"/>
		</element>
		<element name="lamp236" ref="lamp_236_1" state="0">
			<bounds x="14" y="477" width="84" height="18"/>
		</element>
		<element name="lamp237" ref="lamp_237_1_border" state="0">
			<bounds x="12" y="453" width="88" height="22"/>
		</element>
		<element name="lamp237" ref="lamp_237_1" state="0">
			<bounds x="14" y="455" width="84" height="18"/>
		</element>
		<element name="lamp240" ref="lamp_240_1_border" state="0">
			<bounds x="12" y="431" width="88" height="22"/>
		</element>
		<element name="lamp240" ref="lamp_240_1" state="0">
			<bounds x="14" y="433" width="84" height="18"/>
		</element>
		<element name="lamp241" ref="lamp_241_1_border" state="0">
			<bounds x="12" y="409" width="88" height="22"/>
		</element>
		<element name="lamp241" ref="lamp_241_1" state="0">
			<bounds x="14" y="411" width="84" height="18"/>
		</element>
		<element name="lamp242" ref="lamp_242_1_border" state="0">
			<bounds x="12" y="387" width="88" height="22"/>
		</element>
		<element name="lamp242" ref="lamp_242_1" state="0">
			<bounds x="14" y="389" width="84" height="18"/>
		</element>
		<element name="lamp243" ref="lamp_243_1_border" state="0">
			<bounds x="12" y="360" width="88" height="22"/>
		</element>
		<element name="lamp243" ref="lamp_243_1" state="0">
			<bounds x="14" y="362" width="84" height="18"/>
		</element>
		<element name="lamp161" ref="lamp_161_1_border" state="0">
			<bounds x="223" y="215" width="92" height="32"/>
		</element>
		<element name="lamp161" ref="lamp_161_1" state="0">
			<bounds x="225" y="217" width="88" height="28"/>
		</element>
		<element name="lamp253" ref="lamp_253_1_border" state="0">
			<bounds x="222" y="277" width="42" height="32"/>
		</element>
		<element name="lamp253" ref="lamp_253_1" state="0">
			<bounds x="224" y="279" width="38" height="28"/>
		</element>
		<element name="lamp252" ref="lamp_252_1_border" state="0">
			<bounds x="502" y="276" width="34" height="34"/>
		</element>
		<element name="lamp252" ref="lamp_252_1" state="0">
			<bounds x="504" y="278" width="30" height="30"/>
		</element>
		<element name="lamp251" ref="lamp_251_1_border" state="0">
			<bounds x="468" y="276" width="34" height="34"/>
		</element>
		<element name="lamp251" ref="lamp_251_1" state="0">
			<bounds x="470" y="278" width="30" height="30"/>
		</element>
		<element name="lamp250" ref="lamp_250_1_border" state="0">
			<bounds x="434" y="276" width="34" height="34"/>
		</element>
		<element name="lamp250" ref="lamp_250_1" state="0">
			<bounds x="436" y="278" width="30" height="30"/>
		</element>
		<element name="lamp249" ref="lamp_249_1_border" state="0">
			<bounds x="400" y="276" width="34" height="34"/>
		</element>
		<element name="lamp249" ref="lamp_249_1" state="0">
			<bounds x="402" y="278" width="30" height="30"/>
		</element>
		<element name="lamp248" ref="lamp_248_1_border" state="0">
			<bounds x="366" y="276" width="34" height="34"/>
		</element>
		<element name="lamp248" ref="lamp_248_1" state="0">
			<bounds x="368" y="278" width="30" height="30"/>
		</element>
		<element name="lamp247" ref="lamp_247_1_border" state="0">
			<bounds x="332" y="276" width="34" height="34"/>
		</element>
		<element name="lamp247" ref="lamp_247_1" state="0">
			<bounds x="334" y="278" width="30" height="30"/>
		</element>
		<element name="lamp246" ref="lamp_246_1_border" state="0">
			<bounds x="298" y="276" width="34" height="34"/>
		</element>
		<element name="lamp246" ref="lamp_246_1" state="0">
			<bounds x="300" y="278" width="30" height="30"/>
		</element>
		<element name="lamp245" ref="lamp_245_1_border" state="0">
			<bounds x="264" y="276" width="34" height="34"/>
		</element>
		<element name="lamp245" ref="lamp_245_1" state="0">
			<bounds x="266" y="278" width="30" height="30"/>
		</element>
		<element name="lamp228" ref="lamp_228_1_border" state="0">
			<bounds x="545" y="570" width="52" height="27"/>
		</element>
		<element name="lamp228" ref="lamp_228_1" state="0">
			<bounds x="547" y="572" width="48" height="23"/>
		</element>
		<element name="lamp198" ref="lamp_198_1_border" state="0">
			<bounds x="597" y="570" width="118" height="27"/>
		</element>
		<element name="lamp198" ref="lamp_198_1" state="0">
			<bounds x="599" y="572" width="108" height="23"/>
		</element>
		<element name="lamp201" ref="lamp_201_1_border" state="0">
			<bounds x="597" y="543" width="118" height="27"/>
		</element>
		<element name="lamp201" ref="lamp_201_1" state="0">
			<bounds x="599" y="545" width="108" height="23"/>
		</element>
		<element name="lamp204" ref="lamp_204_1_border" state="0">
			<bounds x="597" y="516" width="118" height="27"/>
		</element>
		<element name="lamp204" ref="lamp_204_1" state="0">
			<bounds x="599" y="518" width="108" height="23"/>
		</element>
		<element name="lamp213" ref="lamp_213_1_border" state="0">
			<bounds x="597" y="489" width="118" height="27"/>
		</element>
		<element name="lamp213" ref="lamp_213_1" state="0">
			<bounds x="599" y="491" width="108" height="23"/>
		</element>
		<element name="lamp216" ref="lamp_216_1_border" state="0">
			<bounds x="597" y="462" width="118" height="27"/>
		</element>
		<element name="lamp216" ref="lamp_216_1" state="0">
			<bounds x="599" y="464" width="108" height="23"/>
		</element>
		<element name="lamp219" ref="lamp_219_1_border" state="0">
			<bounds x="597" y="435" width="118" height="27"/>
		</element>
		<element name="lamp219" ref="lamp_219_1" state="0">
			<bounds x="599" y="437" width="108" height="23"/>
		</element>
		<element name="lamp227" ref="lamp_227_1_border" state="0">
			<bounds x="597" y="381" width="118" height="27"/>
		</element>
		<element name="lamp227" ref="lamp_227_1" state="0">
			<bounds x="599" y="383" width="108" height="23"/>
		</element>
		<element name="lamp224" ref="lamp_224_1_border" state="0">
			<bounds x="597" y="408" width="118" height="27"/>
		</element>
		<element name="lamp224" ref="lamp_224_1" state="0">
			<bounds x="599" y="410" width="108" height="23"/>
		</element>
		<element name="lamp160" ref="lamp_160_1_border" state="0">
			<bounds x="220" y="93" width="102" height="28"/>
		</element>
		<element name="lamp160" ref="lamp_160_1" state="0">
			<bounds x="222" y="95" width="98" height="24"/>
		</element>
		<element name="lamp162" ref="lamp_162_1_border" state="0">
			<bounds x="374" y="93" width="102" height="28"/>
		</element>
		<element name="lamp162" ref="lamp_162_1" state="0">
			<bounds x="376" y="95" width="98" height="24"/>
		</element>
		<element name="lamp184" ref="lamp_184_1_border" state="0">
			<bounds x="469" y="162" width="72" height="34"/>
		</element>
		<element name="lamp184" ref="lamp_184_1" state="0">
			<bounds x="471" y="164" width="68" height="30"/>
		</element>
		<element name="lamp192" ref="colour_button_154_border" state="0" inputtag="J9_0" inputmask="0x01">
			<bounds x="614" y="606" width="80" height="38"/>
		</element>
		<element name="lamp192" ref="colour_button_154" state="0" inputtag="J9_0" inputmask="0x01">
			<bounds x="616" y="608" width="76" height="34"/>
		</element>
		<element name="lamp208" ref="colour_button_155_border" state="0" inputtag="J9_0" inputmask="0x10">
			<bounds x="274" y="606" width="82" height="38"/>
		</element>
		<element name="lamp208" ref="colour_button_155" state="0" inputtag="J9_0" inputmask="0x10">
			<bounds x="276" y="608" width="78" height="34"/>
		</element>
		<element name="lamp195" ref="colour_button_156_border" state="0" inputtag="J9_0" inputmask="0x08">
			<bounds x="356" y="606" width="82" height="38"/>
		</element>
		<element name="lamp195" ref="colour_button_156" state="0" inputtag="J9_0" inputmask="0x08">
			<bounds x="358" y="608" width="78" height="34"/>
		</element>
		<element name="lamp194" ref="colour_button_157_border" state="0" inputtag="J9_0" inputmask="0x04">
			<bounds x="438" y="606" width="82" height="38"/>
		</element>
		<element name="lamp194" ref="colour_button_157" state="0" inputtag="J9_0" inputmask="0x04">
			<bounds x="440" y="608" width="78" height="34"/>
		</element>
		<element name="lamp15" ref="colour_button_158_border" state="0" inputtag="COINS" inputmask="0x01">
			<bounds x="739" y="611" width="42" height="27"/>
		</element>
		<element name="lamp15" ref="colour_button_158" state="0" inputtag="COINS" inputmask="0x01">
			<bounds x="741" y="613" width="38" height="23"/>
		</element>
		<element name="lamp209" ref="colour_button_159_border" state="0" inputtag="J9_0" inputmask="0x20">
			<bounds x="189" y="606" width="78" height="38"/>
		</element>
		<element name="lamp209" ref="colour_button_159" state="0" inputtag="J9_0" inputmask="0x20">
			<bounds x="191" y="608" width="74" height="34"/>
		</element>
		<element name="lamp193" ref="colour_button_160_border" state="0" inputtag="J9_0" inputmask="0x02">
			<bounds x="528" y="606" width="78" height="38"/>
		</element>
		<element name="lamp193" ref="colour_button_160" state="0" inputtag="J9_0" inputmask="0x02">
			<bounds x="530" y="608" width="74" height="34"/>
		</element>
		<element ref="vfd0_background">
			<bounds x="260" y="383" width="272" height="30"/>
		</element>
		<repeat count="16">
			<param name="i" start="0" increment="1"/>
			<param name="x" start="260" increment="17"/>
			<element name="vfd~i~" ref="vfd0">
				<animate name="vfdduty0"/>
				<color state="0" red="0.00" green="1.00" blue="1.00" alpha="0.0"/>
				<color state="31" red="0.00" green="1.00" blue="1.00" alpha="1.0"/>
				<bounds x="~x~" y="383" width="17" height="30"/>
			</element>
		</repeat>
		<element name="label89" ref="label_89">
			<bounds x="521" y="496" width="25" height="26"/>
		</element>
		<element name="label90" ref="label_90">
			<bounds x="248" y="496" width="25" height="26"/>
		</element>
		<element name="label150" ref="label_150">
			<bounds x="396" y="220" width="49" height="22"/>
		</element>
	</view>
	<view name="MFME2MAME Debug">
		<element ref="debug_backdrop_colour">
			<bounds x="0" y="0" width="1920" height="1080"/>
		</element>

		<element name="lamp0" ref="debug_lamp_unreferenced" state="0">
			<bounds x="32" y="32" width="60" height="60"/>
		</element>
		<element name="lamp1" ref="debug_lamp_unreferenced" state="0">
			<bounds x="96" y="32" width="60" height="60"/>
		</element>
		<element name="lamp2" ref="debug_lamp_unreferenced" state="0">
			<bounds x="160" y="32" width="60" height="60"/>
		</element>
		<element name="lamp3" ref="debug_lamp_unreferenced" state="0">
			<bounds x="224" y="32" width="60" height="60"/>
		</element>
		<element name="lamp4" ref="debug_lamp_unreferenced" state="0">
			<bounds x="288" y="32" width="60" height="60"/>
		</element>
		<element name="lamp5" ref="debug_lamp_unreferenced" state="0">
			<bounds x="352" y="32" width="60" height="60"/>
		</element>
		<element name="lamp6" ref="debug_lamp_unreferenced" state="0">
			<bounds x="416" y="32" width="60" height="60"/>
		</element>
		<element name="lamp7" ref="debug_lamp_unreferenced" state="0">
			<bounds x="480" y="32" width="60" height="60"/>
		</element>
		<element name="lamp8" ref="debug_lamp_unreferenced" state="0">
			<bounds x="544" y="32" width="60" height="60"/>
		</element>
		<element name="lamp9" ref="debug_lamp_unreferenced" state="0">
			<bounds x="608" y="32" width="60" height="60"/>
		</element>
		<element name="lamp10" ref="debug_lamp_unreferenced" state="0">
			<bounds x="672" y="32" width="60" height="60"/>
		</element>
		<element name="lamp11" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="32" width="60" height="60"/>
		</element>
		<element name="lamp12" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="32" width="60" height="60"/>
		</element>
		<element name="lamp13" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="32" width="60" height="60"/>
		</element>
		<element name="lamp14" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="32" width="60" height="60"/>
		</element>
		<element name="lamp15" ref="debug_lamp_button" state="0">
			<bounds x="992" y="32" width="60" height="60"/>
		</element>
		<element name="lamp16" ref="debug_lamp_unreferenced" state="0">
			<bounds x="32" y="96" width="60" height="60"/>
		</element>
		<element name="lamp17" ref="debug_lamp_unreferenced" state="0">
			<bounds x="96" y="96" width="60" height="60"/>
		</element>
		<element name="lamp18" ref="debug_lamp_unreferenced" state="0">
			<bounds x="160" y="96" width="60" height="60"/>
		</element>
		<element name="lamp19" ref="debug_lamp_unreferenced" state="0">
			<bounds x="224" y="96" width="60" height="60"/>
		</element>
		<element name="lamp20" ref="debug_lamp_reel" state="0">
			<bounds x="288" y="96" width="60" height="60"/>
		</element>
		<element name="lamp21" ref="debug_lamp_unreferenced" state="0">
			<bounds x="352" y="96" width="60" height="60"/>
		</element>
		<element name="lamp22" ref="debug_lamp_unreferenced" state="0">
			<bounds x="416" y="96" width="60" height="60"/>
		</element>
		<element name="lamp23" ref="debug_lamp_unreferenced" state="0">
			<bounds x="480" y="96" width="60" height="60"/>
		</element>
		<element name="lamp24" ref="debug_lamp_unreferenced" state="0">
			<bounds x="544" y="96" width="60" height="60"/>
		</element>
		<element name="lamp25" ref="debug_lamp_unreferenced" state="0">
			<bounds x="608" y="96" width="60" height="60"/>
		</element>
		<element name="lamp26" ref="debug_lamp_unreferenced" state="0">
			<bounds x="672" y="96" width="60" height="60"/>
		</element>
		<element name="lamp27" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="96" width="60" height="60"/>
		</element>
		<element name="lamp28" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="96" width="60" height="60"/>
		</element>
		<element name="lamp29" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="96" width="60" height="60"/>
		</element>
		<element name="lamp30" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="96" width="60" height="60"/>
		</element>
		<element name="lamp31" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="96" width="60" height="60"/>
		</element>
		<element name="lamp32" ref="debug_lamp_unreferenced" state="0">
			<bounds x="32" y="160" width="60" height="60"/>
		</element>
		<element name="lamp33" ref="debug_lamp_reel" state="0">
			<bounds x="96" y="160" width="60" height="60"/>
		</element>
		<element name="lamp34" ref="debug_lamp_unreferenced" state="0">
			<bounds x="160" y="160" width="60" height="60"/>
		</element>
		<element name="lamp35" ref="debug_lamp_unreferenced" state="0">
			<bounds x="224" y="160" width="60" height="60"/>
		</element>
		<element name="lamp36" ref="debug_lamp_unreferenced" state="0">
			<bounds x="288" y="160" width="60" height="60"/>
		</element>
		<element name="lamp37" ref="debug_lamp_unreferenced" state="0">
			<bounds x="352" y="160" width="60" height="60"/>
		</element>
		<element name="lamp38" ref="debug_lamp_unreferenced" state="0">
			<bounds x="416" y="160" width="60" height="60"/>
		</element>
		<element name="lamp39" ref="debug_lamp_unreferenced" state="0">
			<bounds x="480" y="160" width="60" height="60"/>
		</element>
		<element name="lamp40" ref="debug_lamp_unreferenced" state="0">
			<bounds x="544" y="160" width="60" height="60"/>
		</element>
		<element name="lamp41" ref="debug_lamp_unreferenced" state="0">
			<bounds x="608" y="160" width="60" height="60"/>
		</element>
		<element name="lamp42" ref="debug_lamp_unreferenced" state="0">
			<bounds x="672" y="160" width="60" height="60"/>
		</element>
		<element name="lamp43" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="160" width="60" height="60"/>
		</element>
		<element name="lamp44" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="160" width="60" height="60"/>
		</element>
		<element name="lamp45" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="160" width="60" height="60"/>
		</element>
		<element name="lamp46" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="160" width="60" height="60"/>
		</element>
		<element name="lamp47" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="160" width="60" height="60"/>
		</element>
		<element name="lamp48" ref="debug_lamp_standard" state="0">
			<bounds x="32" y="224" width="60" height="60"/>
		</element>
		<element name="lamp49" ref="debug_lamp_standard" state="0">
			<bounds x="96" y="224" width="60" height="60"/>
		</element>
		<element name="lamp50" ref="debug_lamp_standard" state="0">
			<bounds x="160" y="224" width="60" height="60"/>
		</element>
		<element name="lamp51" ref="debug_lamp_standard" state="0">
			<bounds x="224" y="224" width="60" height="60"/>
		</element>
		<element name="lamp52" ref="debug_lamp_standard" state="0">
			<bounds x="288" y="224" width="60" height="60"/>
		</element>
		<element name="lamp53" ref="debug_lamp_standard" state="0">
			<bounds x="352" y="224" width="60" height="60"/>
		</element>
		<element name="lamp54" ref="debug_lamp_standard" state="0">
			<bounds x="416" y="224" width="60" height="60"/>
		</element>
		<element name="lamp55" ref="debug_lamp_standard" state="0">
			<bounds x="480" y="224" width="60" height="60"/>
		</element>
		<element name="lamp56" ref="debug_lamp_standard" state="0">
			<bounds x="544" y="224" width="60" height="60"/>
		</element>
		<element name="lamp57" ref="debug_lamp_standard" state="0">
			<bounds x="608" y="224" width="60" height="60"/>
		</element>
		<element name="lamp58" ref="debug_lamp_standard" state="0">
			<bounds x="672" y="224" width="60" height="60"/>
		</element>
		<element name="lamp59" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="224" width="60" height="60"/>
		</element>
		<element name="lamp60" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="224" width="60" height="60"/>
		</element>
		<element name="lamp61" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="224" width="60" height="60"/>
		</element>
		<element name="lamp62" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="224" width="60" height="60"/>
		</element>
		<element name="lamp63" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="224" width="60" height="60"/>
		</element>
		<element name="lamp64" ref="debug_lamp_standard" state="0">
			<bounds x="32" y="288" width="60" height="60"/>
		</element>
		<element name="lamp65" ref="debug_lamp_standard" state="0">
			<bounds x="96" y="288" width="60" height="60"/>
		</element>
		<element name="lamp66" ref="debug_lamp_standard" state="0">
			<bounds x="160" y="288" width="60" height="60"/>
		</element>
		<element name="lamp67" ref="debug_lamp_standard" state="0">
			<bounds x="224" y="288" width="60" height="60"/>
		</element>
		<element name="lamp68" ref="debug_lamp_standard" state="0">
			<bounds x="288" y="288" width="60" height="60"/>
		</element>
		<element name="lamp69" ref="debug_lamp_standard" state="0">
			<bounds x="352" y="288" width="60" height="60"/>
		</element>
		<element name="lamp70" ref="debug_lamp_standard" state="0">
			<bounds x="416" y="288" width="60" height="60"/>
		</element>
		<element name="lamp71" ref="debug_lamp_standard" state="0">
			<bounds x="480" y="288" width="60" height="60"/>
		</element>
		<element name="lamp72" ref="debug_lamp_standard" state="0">
			<bounds x="544" y="288" width="60" height="60"/>
		</element>
		<element name="lamp73" ref="debug_lamp_standard" state="0">
			<bounds x="608" y="288" width="60" height="60"/>
		</element>
		<element name="lamp74" ref="debug_lamp_standard" state="0">
			<bounds x="672" y="288" width="60" height="60"/>
		</element>
		<element name="lamp75" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="288" width="60" height="60"/>
		</element>
		<element name="lamp76" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="288" width="60" height="60"/>
		</element>
		<element name="lamp77" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="288" width="60" height="60"/>
		</element>
		<element name="lamp78" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="288" width="60" height="60"/>
		</element>
		<element name="lamp79" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="288" width="60" height="60"/>
		</element>
		<element name="lamp80" ref="debug_lamp_standard" state="0">
			<bounds x="32" y="352" width="60" height="60"/>
		</element>
		<element name="lamp81" ref="debug_lamp_standard" state="0">
			<bounds x="96" y="352" width="60" height="60"/>
		</element>
		<element name="lamp82" ref="debug_lamp_standard" state="0">
			<bounds x="160" y="352" width="60" height="60"/>
		</element>
		<element name="lamp83" ref="debug_lamp_standard" state="0">
			<bounds x="224" y="352" width="60" height="60"/>
		</element>
		<element name="lamp84" ref="debug_lamp_standard" state="0">
			<bounds x="288" y="352" width="60" height="60"/>
		</element>
		<element name="lamp85" ref="debug_lamp_standard" state="0">
			<bounds x="352" y="352" width="60" height="60"/>
		</element>
		<element name="lamp86" ref="debug_lamp_standard" state="0">
			<bounds x="416" y="352" width="60" height="60"/>
		</element>
		<element name="lamp87" ref="debug_lamp_standard" state="0">
			<bounds x="480" y="352" width="60" height="60"/>
		</element>
		<element name="lamp88" ref="debug_lamp_standard" state="0">
			<bounds x="544" y="352" width="60" height="60"/>
		</element>
		<element name="lamp89" ref="debug_lamp_standard" state="0">
			<bounds x="608" y="352" width="60" height="60"/>
		</element>
		<element name="lamp90" ref="debug_lamp_standard" state="0">
			<bounds x="672" y="352" width="60" height="60"/>
		</element>
		<element name="lamp91" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="352" width="60" height="60"/>
		</element>
		<element name="lamp92" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="352" width="60" height="60"/>
		</element>
		<element name="lamp93" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="352" width="60" height="60"/>
		</element>
		<element name="lamp94" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="352" width="60" height="60"/>
		</element>
		<element name="lamp95" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="352" width="60" height="60"/>
		</element>
		<element name="lamp96" ref="debug_lamp_standard" state="0">
			<bounds x="32" y="416" width="60" height="60"/>
		</element>
		<element name="lamp97" ref="debug_lamp_standard" state="0">
			<bounds x="96" y="416" width="60" height="60"/>
		</element>
		<element name="lamp98" ref="debug_lamp_standard" state="0">
			<bounds x="160" y="416" width="60" height="60"/>
		</element>
		<element name="lamp99" ref="debug_lamp_standard" state="0">
			<bounds x="224" y="416" width="60" height="60"/>
		</element>
		<element name="lamp100" ref="debug_lamp_standard" state="0">
			<bounds x="288" y="416" width="60" height="60"/>
		</element>
		<element name="lamp101" ref="debug_lamp_standard" state="0">
			<bounds x="352" y="416" width="60" height="60"/>
		</element>
		<element name="lamp102" ref="debug_lamp_standard" state="0">
			<bounds x="416" y="416" width="60" height="60"/>
		</element>
		<element name="lamp103" ref="debug_lamp_standard" state="0">
			<bounds x="480" y="416" width="60" height="60"/>
		</element>
		<element name="lamp104" ref="debug_lamp_standard" state="0">
			<bounds x="544" y="416" width="60" height="60"/>
		</element>
		<element name="lamp105" ref="debug_lamp_standard" state="0">
			<bounds x="608" y="416" width="60" height="60"/>
		</element>
		<element name="lamp106" ref="debug_lamp_standard" state="0">
			<bounds x="672" y="416" width="60" height="60"/>
		</element>
		<element name="lamp107" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="416" width="60" height="60"/>
		</element>
		<element name="lamp108" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="416" width="60" height="60"/>
		</element>
		<element name="lamp109" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="416" width="60" height="60"/>
		</element>
		<element name="lamp110" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="416" width="60" height="60"/>
		</element>
		<element name="lamp111" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="416" width="60" height="60"/>
		</element>
		<element name="lamp112" ref="debug_lamp_standard" state="0">
			<bounds x="32" y="480" width="60" height="60"/>
		</element>
		<element name="lamp113" ref="debug_lamp_standard" state="0">
			<bounds x="96" y="480" width="60" height="60"/>
		</element>
		<element name="lamp114" ref="debug_lamp_standard" state="0">
			<bounds x="160" y="480" width="60" height="60"/>
		</element>
		<element name="lamp115" ref="debug_lamp_standard" state="0">
			<bounds x="224" y="480" width="60" height="60"/>
		</element>
		<element name="lamp116" ref="debug_lamp_standard" state="0">
			<bounds x="288" y="480" width="60" height="60"/>
		</element>
		<element name="lamp117" ref="debug_lamp_standard" state="0">
			<bounds x="352" y="480" width="60" height="60"/>
		</element>
		<element name="lamp118" ref="debug_lamp_standard" state="0">
			<bounds x="416" y="480" width="60" height="60"/>
		</element>
		<element name="lamp119" ref="debug_lamp_standard" state="0">
			<bounds x="480" y="480" width="60" height="60"/>
		</element>
		<element name="lamp120" ref="debug_lamp_standard" state="0">
			<bounds x="544" y="480" width="60" height="60"/>
		</element>
		<element name="lamp121" ref="debug_lamp_standard" state="0">
			<bounds x="608" y="480" width="60" height="60"/>
		</element>
		<element name="lamp122" ref="debug_lamp_standard" state="0">
			<bounds x="672" y="480" width="60" height="60"/>
		</element>
		<element name="lamp123" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="480" width="60" height="60"/>
		</element>
		<element name="lamp124" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="480" width="60" height="60"/>
		</element>
		<element name="lamp125" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="480" width="60" height="60"/>
		</element>
		<element name="lamp126" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="480" width="60" height="60"/>
		</element>
		<element name="lamp127" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="480" width="60" height="60"/>
		</element>
		<element name="lamp128" ref="debug_lamp_standard" state="0">
			<bounds x="32" y="544" width="60" height="60"/>
		</element>
		<element name="lamp129" ref="debug_lamp_standard" state="0">
			<bounds x="96" y="544" width="60" height="60"/>
		</element>
		<element name="lamp130" ref="debug_lamp_standard" state="0">
			<bounds x="160" y="544" width="60" height="60"/>
		</element>
		<element name="lamp131" ref="debug_lamp_standard" state="0">
			<bounds x="224" y="544" width="60" height="60"/>
		</element>
		<element name="lamp132" ref="debug_lamp_standard" state="0">
			<bounds x="288" y="544" width="60" height="60"/>
		</element>
		<element name="lamp133" ref="debug_lamp_standard" state="0">
			<bounds x="352" y="544" width="60" height="60"/>
		</element>
		<element name="lamp134" ref="debug_lamp_standard" state="0">
			<bounds x="416" y="544" width="60" height="60"/>
		</element>
		<element name="lamp135" ref="debug_lamp_standard" state="0">
			<bounds x="480" y="544" width="60" height="60"/>
		</element>
		<element name="lamp136" ref="debug_lamp_standard" state="0">
			<bounds x="544" y="544" width="60" height="60"/>
		</element>
		<element name="lamp137" ref="debug_lamp_standard" state="0">
			<bounds x="608" y="544" width="60" height="60"/>
		</element>
		<element name="lamp138" ref="debug_lamp_standard" state="0">
			<bounds x="672" y="544" width="60" height="60"/>
		</element>
		<element name="lamp139" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="544" width="60" height="60"/>
		</element>
		<element name="lamp140" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="544" width="60" height="60"/>
		</element>
		<element name="lamp141" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="544" width="60" height="60"/>
		</element>
		<element name="lamp142" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="544" width="60" height="60"/>
		</element>
		<element name="lamp143" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="544" width="60" height="60"/>
		</element>
		<element name="lamp144" ref="debug_lamp_standard" state="0">
			<bounds x="32" y="608" width="60" height="60"/>
		</element>
		<element name="lamp145" ref="debug_lamp_standard" state="0">
			<bounds x="96" y="608" width="60" height="60"/>
		</element>
		<element name="lamp146" ref="debug_lamp_standard" state="0">
			<bounds x="160" y="608" width="60" height="60"/>
		</element>
		<element name="lamp147" ref="debug_lamp_standard" state="0">
			<bounds x="224" y="608" width="60" height="60"/>
		</element>
		<element name="lamp148" ref="debug_lamp_standard" state="0">
			<bounds x="288" y="608" width="60" height="60"/>
		</element>
		<element name="lamp149" ref="debug_lamp_standard" state="0">
			<bounds x="352" y="608" width="60" height="60"/>
		</element>
		<element name="lamp150" ref="debug_lamp_standard" state="0">
			<bounds x="416" y="608" width="60" height="60"/>
		</element>
		<element name="lamp151" ref="debug_lamp_standard" state="0">
			<bounds x="480" y="608" width="60" height="60"/>
		</element>
		<element name="lamp152" ref="debug_lamp_standard" state="0">
			<bounds x="544" y="608" width="60" height="60"/>
		</element>
		<element name="lamp153" ref="debug_lamp_standard" state="0">
			<bounds x="608" y="608" width="60" height="60"/>
		</element>
		<element name="lamp154" ref="debug_lamp_unreferenced" state="0">
			<bounds x="672" y="608" width="60" height="60"/>
		</element>
		<element name="lamp155" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="608" width="60" height="60"/>
		</element>
		<element name="lamp156" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="608" width="60" height="60"/>
		</element>
		<element name="lamp157" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="608" width="60" height="60"/>
		</element>
		<element name="lamp158" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="608" width="60" height="60"/>
		</element>
		<element name="lamp159" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="608" width="60" height="60"/>
		</element>
		<element name="lamp160" ref="debug_lamp_standard" state="0">
			<bounds x="32" y="672" width="60" height="60"/>
		</element>
		<element name="lamp161" ref="debug_lamp_standard" state="0">
			<bounds x="96" y="672" width="60" height="60"/>
		</element>
		<element name="lamp162" ref="debug_lamp_standard" state="0">
			<bounds x="160" y="672" width="60" height="60"/>
		</element>
		<element name="lamp163" ref="debug_lamp_unreferenced" state="0">
			<bounds x="224" y="672" width="60" height="60"/>
		</element>
		<element name="lamp164" ref="debug_lamp_unreferenced" state="0">
			<bounds x="288" y="672" width="60" height="60"/>
		</element>
		<element name="lamp165" ref="debug_lamp_unreferenced" state="0">
			<bounds x="352" y="672" width="60" height="60"/>
		</element>
		<element name="lamp166" ref="debug_lamp_unreferenced" state="0">
			<bounds x="416" y="672" width="60" height="60"/>
		</element>
		<element name="lamp167" ref="debug_lamp_unreferenced" state="0">
			<bounds x="480" y="672" width="60" height="60"/>
		</element>
		<element name="lamp168" ref="debug_lamp_unreferenced" state="0">
			<bounds x="544" y="672" width="60" height="60"/>
		</element>
		<element name="lamp169" ref="debug_lamp_unreferenced" state="0">
			<bounds x="608" y="672" width="60" height="60"/>
		</element>
		<element name="lamp170" ref="debug_lamp_unreferenced" state="0">
			<bounds x="672" y="672" width="60" height="60"/>
		</element>
		<element name="lamp171" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="672" width="60" height="60"/>
		</element>
		<element name="lamp172" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="672" width="60" height="60"/>
		</element>
		<element name="lamp173" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="672" width="60" height="60"/>
		</element>
		<element name="lamp174" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="672" width="60" height="60"/>
		</element>
		<element name="lamp175" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="672" width="60" height="60"/>
		</element>
		<element name="lamp176" ref="debug_lamp_standard" state="0">
			<bounds x="32" y="736" width="60" height="60"/>
		</element>
		<element name="lamp177" ref="debug_lamp_standard" state="0">
			<bounds x="96" y="736" width="60" height="60"/>
		</element>
		<element name="lamp178" ref="debug_lamp_standard" state="0">
			<bounds x="160" y="736" width="60" height="60"/>
		</element>
		<element name="lamp179" ref="debug_lamp_standard" state="0">
			<bounds x="224" y="736" width="60" height="60"/>
		</element>
		<element name="lamp180" ref="debug_lamp_standard" state="0">
			<bounds x="288" y="736" width="60" height="60"/>
		</element>
		<element name="lamp181" ref="debug_lamp_standard" state="0">
			<bounds x="352" y="736" width="60" height="60"/>
		</element>
		<element name="lamp182" ref="debug_lamp_standard" state="0">
			<bounds x="416" y="736" width="60" height="60"/>
		</element>
		<element name="lamp183" ref="debug_lamp_standard" state="0">
			<bounds x="480" y="736" width="60" height="60"/>
		</element>
		<element name="lamp184" ref="debug_lamp_standard" state="0">
			<bounds x="544" y="736" width="60" height="60"/>
		</element>
		<element name="lamp185" ref="debug_lamp_unreferenced" state="0">
			<bounds x="608" y="736" width="60" height="60"/>
		</element>
		<element name="lamp186" ref="debug_lamp_unreferenced" state="0">
			<bounds x="672" y="736" width="60" height="60"/>
		</element>
		<element name="lamp187" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="736" width="60" height="60"/>
		</element>
		<element name="lamp188" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="736" width="60" height="60"/>
		</element>
		<element name="lamp189" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="736" width="60" height="60"/>
		</element>
		<element name="lamp190" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="736" width="60" height="60"/>
		</element>
		<element name="lamp191" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="736" width="60" height="60"/>
		</element>
		<element name="lamp192" ref="debug_lamp_button" state="0">
			<bounds x="32" y="800" width="60" height="60"/>
		</element>
		<element name="lamp193" ref="debug_lamp_button" state="0">
			<bounds x="96" y="800" width="60" height="60"/>
		</element>
		<element name="lamp194" ref="debug_lamp_button" state="0">
			<bounds x="160" y="800" width="60" height="60"/>
		</element>
		<element name="lamp195" ref="debug_lamp_button" state="0">
			<bounds x="224" y="800" width="60" height="60"/>
		</element>
		<element name="lamp196" ref="debug_lamp_unreferenced" state="0">
			<bounds x="288" y="800" width="60" height="60"/>
		</element>
		<element name="lamp197" ref="debug_lamp_unreferenced" state="0">
			<bounds x="352" y="800" width="60" height="60"/>
		</element>
		<element name="lamp198" ref="debug_lamp_standard" state="0">
			<bounds x="416" y="800" width="60" height="60"/>
		</element>
		<element name="lamp199" ref="debug_lamp_unreferenced" state="0">
			<bounds x="480" y="800" width="60" height="60"/>
		</element>
		<element name="lamp200" ref="debug_lamp_unreferenced" state="0">
			<bounds x="544" y="800" width="60" height="60"/>
		</element>
		<element name="lamp201" ref="debug_lamp_standard" state="0">
			<bounds x="608" y="800" width="60" height="60"/>
		</element>
		<element name="lamp202" ref="debug_lamp_unreferenced" state="0">
			<bounds x="672" y="800" width="60" height="60"/>
		</element>
		<element name="lamp203" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="800" width="60" height="60"/>
		</element>
		<element name="lamp204" ref="debug_lamp_standard" state="0">
			<bounds x="800" y="800" width="60" height="60"/>
		</element>
		<element name="lamp205" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="800" width="60" height="60"/>
		</element>
		<element name="lamp206" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="800" width="60" height="60"/>
		</element>
		<element name="lamp207" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="800" width="60" height="60"/>
		</element>
		<element name="lamp208" ref="debug_lamp_button" state="0">
			<bounds x="32" y="864" width="60" height="60"/>
		</element>
		<element name="lamp209" ref="debug_lamp_button" state="0">
			<bounds x="96" y="864" width="60" height="60"/>
		</element>
		<element name="lamp210" ref="debug_lamp_unreferenced" state="0">
			<bounds x="160" y="864" width="60" height="60"/>
		</element>
		<element name="lamp211" ref="debug_lamp_unreferenced" state="0">
			<bounds x="224" y="864" width="60" height="60"/>
		</element>
		<element name="lamp212" ref="debug_lamp_unreferenced" state="0">
			<bounds x="288" y="864" width="60" height="60"/>
		</element>
		<element name="lamp213" ref="debug_lamp_standard" state="0">
			<bounds x="352" y="864" width="60" height="60"/>
		</element>
		<element name="lamp214" ref="debug_lamp_unreferenced" state="0">
			<bounds x="416" y="864" width="60" height="60"/>
		</element>
		<element name="lamp215" ref="debug_lamp_unreferenced" state="0">
			<bounds x="480" y="864" width="60" height="60"/>
		</element>
		<element name="lamp216" ref="debug_lamp_standard" state="0">
			<bounds x="544" y="864" width="60" height="60"/>
		</element>
		<element name="lamp217" ref="debug_lamp_unreferenced" state="0">
			<bounds x="608" y="864" width="60" height="60"/>
		</element>
		<element name="lamp218" ref="debug_lamp_unreferenced" state="0">
			<bounds x="672" y="864" width="60" height="60"/>
		</element>
		<element name="lamp219" ref="debug_lamp_standard" state="0">
			<bounds x="736" y="864" width="60" height="60"/>
		</element>
		<element name="lamp220" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="864" width="60" height="60"/>
		</element>
		<element name="lamp221" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="864" width="60" height="60"/>
		</element>
		<element name="lamp222" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="864" width="60" height="60"/>
		</element>
		<element name="lamp223" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="864" width="60" height="60"/>
		</element>
		<element name="lamp224" ref="debug_lamp_standard" state="0">
			<bounds x="32" y="928" width="60" height="60"/>
		</element>
		<element name="lamp225" ref="debug_lamp_unreferenced" state="0">
			<bounds x="96" y="928" width="60" height="60"/>
		</element>
		<element name="lamp226" ref="debug_lamp_unreferenced" state="0">
			<bounds x="160" y="928" width="60" height="60"/>
		</element>
		<element name="lamp227" ref="debug_lamp_standard" state="0">
			<bounds x="224" y="928" width="60" height="60"/>
		</element>
		<element name="lamp228" ref="debug_lamp_standard" state="0">
			<bounds x="288" y="928" width="60" height="60"/>
		</element>
		<element name="lamp229" ref="debug_lamp_standard" state="0">
			<bounds x="352" y="928" width="60" height="60"/>
		</element>
		<element name="lamp230" ref="debug_lamp_unreferenced" state="0">
			<bounds x="416" y="928" width="60" height="60"/>
		</element>
		<element name="lamp231" ref="debug_lamp_unreferenced" state="0">
			<bounds x="480" y="928" width="60" height="60"/>
		</element>
		<element name="lamp232" ref="debug_lamp_unreferenced" state="0">
			<bounds x="544" y="928" width="60" height="60"/>
		</element>
		<element name="lamp233" ref="debug_lamp_unreferenced" state="0">
			<bounds x="608" y="928" width="60" height="60"/>
		</element>
		<element name="lamp234" ref="debug_lamp_standard" state="0">
			<bounds x="672" y="928" width="60" height="60"/>
		</element>
		<element name="lamp235" ref="debug_lamp_standard" state="0">
			<bounds x="736" y="928" width="60" height="60"/>
		</element>
		<element name="lamp236" ref="debug_lamp_standard" state="0">
			<bounds x="800" y="928" width="60" height="60"/>
		</element>
		<element name="lamp237" ref="debug_lamp_standard" state="0">
			<bounds x="864" y="928" width="60" height="60"/>
		</element>
		<element name="lamp238" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="928" width="60" height="60"/>
		</element>
		<element name="lamp239" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="928" width="60" height="60"/>
		</element>
		<element name="lamp240" ref="debug_lamp_standard" state="0">
			<bounds x="32" y="992" width="60" height="60"/>
		</element>
		<element name="lamp241" ref="debug_lamp_standard" state="0">
			<bounds x="96" y="992" width="60" height="60"/>
		</element>
		<element name="lamp242" ref="debug_lamp_standard" state="0">
			<bounds x="160" y="992" width="60" height="60"/>
		</element>
		<element name="lamp243" ref="debug_lamp_unreferenced" state="0">
			<bounds x="224" y="992" width="60" height="60"/>
		</element>
		<element name="lamp244" ref="debug_lamp_unreferenced" state="0">
			<bounds x="288" y="992" width="60" height="60"/>
		</element>
		<element name="lamp245" ref="debug_lamp_standard" state="0">
			<bounds x="352" y="992" width="60" height="60"/>
		</element>
		<element name="lamp246" ref="debug_lamp_standard" state="0">
			<bounds x="416" y="992" width="60" height="60"/>
		</element>
		<element name="lamp247" ref="debug_lamp_standard" state="0">
			<bounds x="480" y="992" width="60" height="60"/>
		</element>
		<element name="lamp248" ref="debug_lamp_standard" state="0">
			<bounds x="544" y="992" width="60" height="60"/>
		</element>
		<element name="lamp249" ref="debug_lamp_standard" state="0">
			<bounds x="608" y="992" width="60" height="60"/>
		</element>
		<element name="lamp250" ref="debug_lamp_standard" state="0">
			<bounds x="672" y="992" width="60" height="60"/>
		</element>
		<element name="lamp251" ref="debug_lamp_standard" state="0">
			<bounds x="736" y="992" width="60" height="60"/>
		</element>
		<element name="lamp252" ref="debug_lamp_standard" state="0">
			<bounds x="800" y="992" width="60" height="60"/>
		</element>
		<element name="lamp253" ref="debug_lamp_standard" state="0">
			<bounds x="864" y="992" width="60" height="60"/>
		</element>
		<element name="lamp254" ref="debug_lamp_standard" state="0">
			<bounds x="928" y="992" width="60" height="60"/>
		</element>
		<element name="lamp255" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="992" width="60" height="60"/>
		</element>

		<repeat count="16">
			<param name="s" start="0" increment="16" />
			<param name="y" start="47" increment="64" />
			<repeat count="16">
				<param name="n" start="~s~" increment="1" />
				<param name="x" start="47" increment="64" />
				<element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~">
					<bounds x="~x~" y="~y~" width="30" height="30"/>
				</element>
			</repeat>
		</repeat>

		<element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01">
			<bounds x="1100" y="660" width="80" height="44"/>
		</element>
		<element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02">
			<bounds x="1184" y="660" width="80" height="44"/>
		</element>
		<element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04">
			<bounds x="1268" y="660" width="80" height="44"/>
		</element>
		<element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08">
			<bounds x="1352" y="660" width="80" height="44"/>
		</element>
		<element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10">
			<bounds x="1436" y="660" width="80" height="44"/>
		</element>
		<element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20">
			<bounds x="1520" y="660" width="80" height="44"/>
		</element>
		<element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40">
			<bounds x="1604" y="660" width="80" height="44"/>
		</element>
		<element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80">
			<bounds x="1688" y="660" width="80" height="44"/>
		</element>
		<element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01">
			<bounds x="1100" y="708" width="80" height="44"/>
		</element>
		<element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02">
			<bounds x="1184" y="708" width="80" height="44"/>
		</element>
		<element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04">
			<bounds x="1268" y="708" width="80" height="44"/>
		</element>
		<element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08">
			<bounds x="1352" y="708" width="80" height="44"/>
		</element>
		<element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10">
			<bounds x="1436" y="708" width="80" height="44"/>
		</element>
		<element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20">
			<bounds x="1520" y="708" width="80" height="44"/>
		</element>
		<element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40">
			<bounds x="1604" y="708" width="80" height="44"/>
		</element>
		<element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80">
			<bounds x="1688" y="708" width="80" height="44"/>
		</element>
		<element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01">
			<bounds x="1100" y="756" width="80" height="44"/>
		</element>
		<element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02">
			<bounds x="1184" y="756" width="80" height="44"/>
		</element>
		<element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04">
			<bounds x="1268" y="756" width="80" height="44"/>
		</element>
		<element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08">
			<bounds x="1352" y="756" width="80" height="44"/>
		</element>
		<element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10">
			<bounds x="1436" y="756" width="80" height="44"/>
		</element>
		<element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20">
			<bounds x="1520" y="756" width="80" height="44"/>
		</element>
		<element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40">
			<bounds x="1604" y="756" width="80" height="44"/>
		</element>
		<element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80">
			<bounds x="1688" y="756" width="80" height="44"/>
		</element>
		<element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01">
			<bounds x="1100" y="804" width="80" height="44"/>
		</element>
		<element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02">
			<bounds x="1184" y="804" width="80" height="44"/>
		</element>
		<element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04">
			<bounds x="1268" y="804" width="80" height="44"/>
		</element>
		<element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08">
			<bounds x="1352" y="804" width="80" height="44"/>
		</element>
		<element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10">
			<bounds x="1436" y="804" width="80" height="44"/>
		</element>
		<element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20">
			<bounds x="1520" y="804" width="80" height="44"/>
		</element>
		<element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40">
			<bounds x="1604" y="804" width="80" height="44"/>
		</element>
		<element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80">
			<bounds x="1688" y="804" width="80" height="44"/>
		</element>
		<element name="debug_button_32" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01">
			<bounds x="1100" y="852" width="80" height="44"/>
		</element>
		<element name="debug_button_33" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02">
			<bounds x="1184" y="852" width="80" height="44"/>
		</element>
		<element name="debug_button_34" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04">
			<bounds x="1268" y="852" width="80" height="44"/>
		</element>
		<element name="debug_button_35" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08">
			<bounds x="1352" y="852" width="80" height="44"/>
		</element>
		<element name="debug_button_36" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10">
			<bounds x="1436" y="852" width="80" height="44"/>
		</element>
		<element name="debug_button_37" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20">
			<bounds x="1520" y="852" width="80" height="44"/>
		</element>
		<element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40">
			<bounds x="1604" y="852" width="80" height="44"/>
		</element>
		<element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80">
			<bounds x="1688" y="852" width="80" height="44"/>
		</element>
		<element name="lamp192" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01">
			<bounds x="1100" y="900" width="80" height="44"/>
		</element>
		<element name="lamp193" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02">
			<bounds x="1184" y="900" width="80" height="44"/>
		</element>
		<element name="lamp194" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04">
			<bounds x="1268" y="900" width="80" height="44"/>
		</element>
		<element name="lamp195" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08">
			<bounds x="1352" y="900" width="80" height="44"/>
		</element>
		<element name="lamp208" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10">
			<bounds x="1436" y="900" width="80" height="44"/>
		</element>
		<element name="lamp209" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20">
			<bounds x="1520" y="900" width="80" height="44"/>
		</element>
		<element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40">
			<bounds x="1604" y="900" width="80" height="44"/>
		</element>
		<element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80">
			<bounds x="1688" y="900" width="80" height="44"/>
		</element>
		<element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01">
			<bounds x="1100" y="948" width="80" height="44"/>
		</element>
		<element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02">
			<bounds x="1184" y="948" width="80" height="44"/>
		</element>
		<element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04">
			<bounds x="1268" y="948" width="80" height="44"/>
		</element>
		<element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08">
			<bounds x="1352" y="948" width="80" height="44"/>
		</element>
		<element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10">
			<bounds x="1436" y="948" width="80" height="44"/>
		</element>
		<element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20">
			<bounds x="1520" y="948" width="80" height="44"/>
		</element>
		<element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40">
			<bounds x="1604" y="948" width="80" height="44"/>
		</element>
		<element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80">
			<bounds x="1688" y="948" width="80" height="44"/>
		</element>
		<element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01">
			<bounds x="1100" y="996" width="80" height="44"/>
		</element>
		<element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02">
			<bounds x="1184" y="996" width="80" height="44"/>
		</element>
		<element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04">
			<bounds x="1268" y="996" width="80" height="44"/>
		</element>
		<element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08">
			<bounds x="1352" y="996" width="80" height="44"/>
		</element>
		<element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10">
			<bounds x="1436" y="996" width="80" height="44"/>
		</element>
		<element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20">
			<bounds x="1520" y="996" width="80" height="44"/>
		</element>
		<element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40">
			<bounds x="1604" y="996" width="80" height="44"/>
		</element>
		<element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80">
			<bounds x="1688" y="996" width="80" height="44"/>
		</element>

		<repeat count="8">
			<param name="s" start="0" increment="8" />
			<param name="y" start="671" increment="48" />
			<repeat count="8">
				<param name="n" start="~s~" increment="1" />
				<param name="x" start="1120" increment="84" />
				<element name="debug_button_label_~n~" ref="debug_button_label_~n~">
					<bounds x="~x~" y="~y~" width="40" height="22"/>
				</element>
			</repeat>
		</repeat>

		<repeat count="16">
			<param name="n" start="0" increment="1" />
			<param name="x" start="1150" increment="32" />
			<element name="vfd~n~" ref="debug_vfd" state="0">
				<bounds x="~x~" y="600" width="32" height="48"/>
			</element>
		</repeat>

		<element ref="reel_background">
			<bounds x="1100" y="32" width="120" height="240"/>
		</element>
		<element name="lamp2" ref="reel_lamp" state="0">
			<bounds x="1100.0000" y="32.0000" width="120.0000" height="80.0000"/>
		</element>
		<element name="lamp1" ref="reel_lamp" state="0">
			<bounds x="1100.0000" y="112.0000" width="120.0000" height="80.0000"/>
		</element>
		<element name="lamp0" ref="reel_lamp" state="0">
			<bounds x="1100.0000" y="192.0000" width="120.0000" height="80.0000"/>
		</element>
		<element name="sreel1" ref="reel0" state="0">
			<bounds x="1100" y="32" width="120" height="240"/>
		</element>
		<element ref="reel_background">
			<bounds x="1240" y="32" width="120" height="240"/>
		</element>
		<element name="lamp5" ref="reel_lamp" state="0">
			<bounds x="1240.0000" y="32.0000" width="120.0000" height="80.0000"/>
		</element>
		<element name="lamp4" ref="reel_lamp" state="0">
			<bounds x="1240.0000" y="112.0000" width="120.0000" height="80.0000"/>
		</element>
		<element name="lamp3" ref="reel_lamp" state="0">
			<bounds x="1240.0000" y="192.0000" width="120.0000" height="80.0000"/>
		</element>
		<element name="sreel2" ref="reel1" state="0">
			<bounds x="1240" y="32" width="120" height="240"/>
		</element>
		<element ref="reel_background">
			<bounds x="1380" y="32" width="120" height="240"/>
		</element>
		<element name="lamp18" ref="reel_lamp" state="0">
			<bounds x="1380.0000" y="32.0000" width="120.0000" height="80.0000"/>
		</element>
		<element name="lamp17" ref="reel_lamp" state="0">
			<bounds x="1380.0000" y="112.0000" width="120.0000" height="80.0000"/>
		</element>
		<element name="lamp16" ref="reel_lamp" state="0">
			<bounds x="1380.0000" y="192.0000" width="120.0000" height="80.0000"/>
		</element>
		<element name="sreel3" ref="reel2" state="0">
			<bounds x="1380" y="32" width="120" height="240"/>
		</element>
		<element ref="reel_background">
			<bounds x="1520" y="32" width="120" height="240"/>
		</element>
		<element name="lamp20" ref="reel_lamp" state="0">
			<bounds x="1520.0000" y="32.0000" width="120.0000" height="240.0000"/>
		</element>
		<element name="sreel4" ref="reel3" state="0">
			<bounds x="1520" y="32" width="120" height="240"/>
		</element>
		<element ref="reel_background">
			<bounds x="1660" y="32" width="120" height="240"/>
		</element>
		<element name="lamp33" ref="reel_lamp" state="0">
			<bounds x="1660.0000" y="32.0000" width="120.0000" height="240.0000"/>
		</element>
		<element name="sreel5" ref="reel4" state="0">
			<bounds x="1660" y="32" width="120" height="240"/>
		</element>
		<element name="reel1" ref="debug_stepper_value">
			<bounds x="1100" y="272" width="50" height="30"/>
		</element>
		<element name="reel2" ref="debug_stepper_value">
			<bounds x="1240" y="272" width="50" height="30"/>
		</element>
		<element name="reel3" ref="debug_stepper_value">
			<bounds x="1380" y="272" width="50" height="30"/>
		</element>
		<element name="reel4" ref="debug_stepper_value">
			<bounds x="1520" y="272" width="50" height="30"/>
		</element>
		<element name="reel5" ref="debug_stepper_value">
			<bounds x="1660" y="272" width="50" height="30"/>
		</element>
		<element name="debug_reel_symbol_count" ref="debug_reel_symbol_count_0">
			<bounds x="1180" y="272" width="50" height="30"/>
		</element>
		<element name="debug_reel_symbol_count" ref="debug_reel_symbol_count_1">
			<bounds x="1320" y="272" width="50" height="30"/>
		</element>
		<element name="debug_reel_symbol_count" ref="debug_reel_symbol_count_2">
			<bounds x="1460" y="272" width="50" height="30"/>
		</element>
		<element name="debug_reel_symbol_count" ref="debug_reel_symbol_count_3">
			<bounds x="1600" y="272" width="50" height="30"/>
		</element>
		<element name="debug_reel_symbol_count" ref="debug_reel_symbol_count_4">
			<bounds x="1740" y="272" width="50" height="30"/>
		</element>
	</view>
</mamelayout>