-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathimages.qrc
2972 lines (2972 loc) · 147 KB
/
images.qrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<RCC>
<qresource prefix="/">
<file>images/black/x18/add.png</file>
<file>images/black/x18/add@2x.png</file>
<file>images/black/x18/add@3x.png</file>
<file>images/black/x18/add@4x.png</file>
<file>images/black/x18/archive.png</file>
<file>images/black/x18/archive@2x.png</file>
<file>images/black/x18/archive@3x.png</file>
<file>images/black/x18/archive@4x.png</file>
<file>images/black/x18/arrow_back.png</file>
<file>images/black/x18/arrow_back@2x.png</file>
<file>images/black/x18/arrow_back@3x.png</file>
<file>images/black/x18/arrow_back@4x.png</file>
<file>images/black/x18/arrow_forward.png</file>
<file>images/black/x18/arrow_forward@2x.png</file>
<file>images/black/x18/arrow_forward@3x.png</file>
<file>images/black/x18/arrow_forward@4x.png</file>
<file>images/black/x18/aspect_ratio.png</file>
<file>images/black/x18/aspect_ratio@2x.png</file>
<file>images/black/x18/aspect_ratio@3x.png</file>
<file>images/black/x18/aspect_ratio@4x.png</file>
<file>images/black/x18/az.png</file>
<file>images/black/x18/az@2x.png</file>
<file>images/black/x18/az@3x.png</file>
<file>images/black/x18/az@4x.png</file>
<file>images/black/x18/block.png</file>
<file>images/black/x18/block@2x.png</file>
<file>images/black/x18/block@3x.png</file>
<file>images/black/x18/block@4x.png</file>
<file>images/black/x18/bluetooth.png</file>
<file>images/black/x18/bluetooth@2x.png</file>
<file>images/black/x18/bluetooth@3x.png</file>
<file>images/black/x18/bluetooth@4x.png</file>
<file>images/black/x18/bluetooth_off.png</file>
<file>images/black/x18/bluetooth_off@2x.png</file>
<file>images/black/x18/bluetooth_off@3x.png</file>
<file>images/black/x18/bluetooth_off@4x.png</file>
<file>images/black/x18/break.png</file>
<file>images/black/x18/break@2x.png</file>
<file>images/black/x18/break@3x.png</file>
<file>images/black/x18/break@4x.png</file>
<file>images/black/x18/bus.png</file>
<file>images/black/x18/bus@2x.png</file>
<file>images/black/x18/bus@3x.png</file>
<file>images/black/x18/bus@4x.png</file>
<file>images/black/x18/business.png</file>
<file>images/black/x18/business@2x.png</file>
<file>images/black/x18/business@3x.png</file>
<file>images/black/x18/business@4x.png</file>
<file>images/black/x18/calendar.png</file>
<file>images/black/x18/calendar@2x.png</file>
<file>images/black/x18/calendar@3x.png</file>
<file>images/black/x18/calendar@4x.png</file>
<file>images/black/x18/call.png</file>
<file>images/black/x18/call@2x.png</file>
<file>images/black/x18/call@3x.png</file>
<file>images/black/x18/call@4x.png</file>
<file>images/black/x18/camera.png</file>
<file>images/black/x18/camera@2x.png</file>
<file>images/black/x18/camera@3x.png</file>
<file>images/black/x18/camera@4x.png</file>
<file>images/black/x18/car.png</file>
<file>images/black/x18/car@2x.png</file>
<file>images/black/x18/car@3x.png</file>
<file>images/black/x18/car@4x.png</file>
<file>images/black/x18/chart.png</file>
<file>images/black/x18/chart@2x.png</file>
<file>images/black/x18/chart@3x.png</file>
<file>images/black/x18/chart@4x.png</file>
<file>images/black/x18/clear.png</file>
<file>images/black/x18/clear@2x.png</file>
<file>images/black/x18/clear@3x.png</file>
<file>images/black/x18/clear@4x.png</file>
<file>images/black/x18/code.png</file>
<file>images/black/x18/code@2x.png</file>
<file>images/black/x18/code@3x.png</file>
<file>images/black/x18/code@4x.png</file>
<file>images/black/x18/colors.png</file>
<file>images/black/x18/colors@2x.png</file>
<file>images/black/x18/colors@3x.png</file>
<file>images/black/x18/colors@4x.png</file>
<file>images/black/x18/create.png</file>
<file>images/black/x18/create@2x.png</file>
<file>images/black/x18/create@3x.png</file>
<file>images/black/x18/create@4x.png</file>
<file>images/black/x18/day.png</file>
<file>images/black/x18/day@2x.png</file>
<file>images/black/x18/day@3x.png</file>
<file>images/black/x18/day@4x.png</file>
<file>images/black/x18/delete_sweep.png</file>
<file>images/black/x18/delete_sweep@2x.png</file>
<file>images/black/x18/delete_sweep@3x.png</file>
<file>images/black/x18/delete_sweep@4x.png</file>
<file>images/black/x18/description.png</file>
<file>images/black/x18/description@2x.png</file>
<file>images/black/x18/description@3x.png</file>
<file>images/black/x18/description@4x.png</file>
<file>images/black/x18/directions.png</file>
<file>images/black/x18/directions@2x.png</file>
<file>images/black/x18/directions@3x.png</file>
<file>images/black/x18/directions@4x.png</file>
<file>images/black/x18/done.png</file>
<file>images/black/x18/done@2x.png</file>
<file>images/black/x18/done@3x.png</file>
<file>images/black/x18/done@4x.png</file>
<file>images/black/x18/done_all.png</file>
<file>images/black/x18/done_all@2x.png</file>
<file>images/black/x18/done_all@3x.png</file>
<file>images/black/x18/done_all@4x.png</file>
<file>images/black/x18/download.png</file>
<file>images/black/x18/download@2x.png</file>
<file>images/black/x18/download@3x.png</file>
<file>images/black/x18/download@4x.png</file>
<file>images/black/x18/error.png</file>
<file>images/black/x18/error@2x.png</file>
<file>images/black/x18/error@3x.png</file>
<file>images/black/x18/error@4x.png</file>
<file>images/black/x18/flight.png</file>
<file>images/black/x18/flight@2x.png</file>
<file>images/black/x18/flight@3x.png</file>
<file>images/black/x18/flight@4x.png</file>
<file>images/black/x18/florist.png</file>
<file>images/black/x18/florist@2x.png</file>
<file>images/black/x18/florist@3x.png</file>
<file>images/black/x18/florist@4x.png</file>
<file>images/black/x18/folder.png</file>
<file>images/black/x18/folder@2x.png</file>
<file>images/black/x18/folder@3x.png</file>
<file>images/black/x18/folder@4x.png</file>
<file>images/black/x18/folder_fav.png</file>
<file>images/black/x18/folder_fav@2x.png</file>
<file>images/black/x18/folder_fav@3x.png</file>
<file>images/black/x18/folder_fav@4x.png</file>
<file>images/black/x18/folder_new.png</file>
<file>images/black/x18/folder_new@2x.png</file>
<file>images/black/x18/folder_new@3x.png</file>
<file>images/black/x18/folder_new@4x.png</file>
<file>images/black/x18/folder_open.png</file>
<file>images/black/x18/folder_open@2x.png</file>
<file>images/black/x18/folder_open@3x.png</file>
<file>images/black/x18/folder_open@4x.png</file>
<file>images/black/x18/folder_shared.png</file>
<file>images/black/x18/folder_shared@2x.png</file>
<file>images/black/x18/folder_shared@3x.png</file>
<file>images/black/x18/folder_shared@4x.png</file>
<file>images/black/x18/form.png</file>
<file>images/black/x18/form@2x.png</file>
<file>images/black/x18/form@3x.png</file>
<file>images/black/x18/form@4x.png</file>
<file>images/black/x18/goto.png</file>
<file>images/black/x18/goto@2x.png</file>
<file>images/black/x18/goto@3x.png</file>
<file>images/black/x18/goto@4x.png</file>
<file>images/black/x18/group.png</file>
<file>images/black/x18/group@2x.png</file>
<file>images/black/x18/group@3x.png</file>
<file>images/black/x18/group@4x.png</file>
<file>images/black/x18/help.png</file>
<file>images/black/x18/help@2x.png</file>
<file>images/black/x18/help@3x.png</file>
<file>images/black/x18/help@4x.png</file>
<file>images/black/x18/history.png</file>
<file>images/black/x18/history@2x.png</file>
<file>images/black/x18/history@3x.png</file>
<file>images/black/x18/history@4x.png</file>
<file>images/black/x18/home.png</file>
<file>images/black/x18/home@2x.png</file>
<file>images/black/x18/home@3x.png</file>
<file>images/black/x18/home@4x.png</file>
<file>images/black/x18/hotel.png</file>
<file>images/black/x18/hotel@2x.png</file>
<file>images/black/x18/hotel@3x.png</file>
<file>images/black/x18/hotel@4x.png</file>
<file>images/black/x18/image.png</file>
<file>images/black/x18/image@2x.png</file>
<file>images/black/x18/image@3x.png</file>
<file>images/black/x18/image@4x.png</file>
<file>images/black/x18/info.png</file>
<file>images/black/x18/info@2x.png</file>
<file>images/black/x18/info@3x.png</file>
<file>images/black/x18/info@4x.png</file>
<file>images/black/x18/key.png</file>
<file>images/black/x18/key@2x.png</file>
<file>images/black/x18/key@3x.png</file>
<file>images/black/x18/key@4x.png</file>
<file>images/black/x18/list.png</file>
<file>images/black/x18/list@2x.png</file>
<file>images/black/x18/list@3x.png</file>
<file>images/black/x18/list@4x.png</file>
<file>images/black/x18/lunch.png</file>
<file>images/black/x18/lunch@2x.png</file>
<file>images/black/x18/lunch@3x.png</file>
<file>images/black/x18/lunch@4x.png</file>
<file>images/black/x18/mail.png</file>
<file>images/black/x18/mail@2x.png</file>
<file>images/black/x18/mail@3x.png</file>
<file>images/black/x18/mail@4x.png</file>
<file>images/black/x18/menu.png</file>
<file>images/black/x18/menu@2x.png</file>
<file>images/black/x18/menu@3x.png</file>
<file>images/black/x18/menu@4x.png</file>
<file>images/black/x18/movies.png</file>
<file>images/black/x18/movies@2x.png</file>
<file>images/black/x18/movies@3x.png</file>
<file>images/black/x18/movies@4x.png</file>
<file>images/black/x18/my_location.png</file>
<file>images/black/x18/my_location@2x.png</file>
<file>images/black/x18/my_location@3x.png</file>
<file>images/black/x18/my_location@4x.png</file>
<file>images/black/x18/new.png</file>
<file>images/black/x18/new@2x.png</file>
<file>images/black/x18/new@3x.png</file>
<file>images/black/x18/new@4x.png</file>
<file>images/black/x18/party_event.png</file>
<file>images/black/x18/party_event@2x.png</file>
<file>images/black/x18/party_event@3x.png</file>
<file>images/black/x18/party_event@4x.png</file>
<file>images/black/x18/pdf.png</file>
<file>images/black/x18/pdf@2x.png</file>
<file>images/black/x18/pdf@3x.png</file>
<file>images/black/x18/pdf@4x.png</file>
<file>images/black/x18/person.png</file>
<file>images/black/x18/person@2x.png</file>
<file>images/black/x18/person@3x.png</file>
<file>images/black/x18/person@4x.png</file>
<file>images/black/x18/pin.png</file>
<file>images/black/x18/pin@2x.png</file>
<file>images/black/x18/pin@3x.png</file>
<file>images/black/x18/pin@4x.png</file>
<file>images/black/x18/play.png</file>
<file>images/black/x18/play@2x.png</file>
<file>images/black/x18/play@3x.png</file>
<file>images/black/x18/play@4x.png</file>
<file>images/black/x18/printer.png</file>
<file>images/black/x18/printer@2x.png</file>
<file>images/black/x18/printer@3x.png</file>
<file>images/black/x18/printer@4x.png</file>
<file>images/black/x18/refresh.png</file>
<file>images/black/x18/refresh@2x.png</file>
<file>images/black/x18/refresh@3x.png</file>
<file>images/black/x18/refresh@4x.png</file>
<file>images/black/x18/remove.png</file>
<file>images/black/x18/remove@2x.png</file>
<file>images/black/x18/remove@3x.png</file>
<file>images/black/x18/remove@4x.png</file>
<file>images/black/x18/schedule.png</file>
<file>images/black/x18/schedule@2x.png</file>
<file>images/black/x18/schedule@3x.png</file>
<file>images/black/x18/schedule@4x.png</file>
<file>images/black/x18/schedule_list.png</file>
<file>images/black/x18/schedule_list@2x.png</file>
<file>images/black/x18/schedule_list@3x.png</file>
<file>images/black/x18/schedule_list@4x.png</file>
<file>images/black/x18/schedule_my.png</file>
<file>images/black/x18/schedule_my@2x.png</file>
<file>images/black/x18/schedule_my@3x.png</file>
<file>images/black/x18/schedule_my@4x.png</file>
<file>images/black/x18/schedule_sametime.png</file>
<file>images/black/x18/schedule_sametime@2x.png</file>
<file>images/black/x18/schedule_sametime@3x.png</file>
<file>images/black/x18/schedule_sametime@4x.png</file>
<file>images/black/x18/search.png</file>
<file>images/black/x18/search@2x.png</file>
<file>images/black/x18/search@3x.png</file>
<file>images/black/x18/search@4x.png</file>
<file>images/black/x18/send.png</file>
<file>images/black/x18/send@2x.png</file>
<file>images/black/x18/send@3x.png</file>
<file>images/black/x18/send@4x.png</file>
<file>images/black/x18/settings.png</file>
<file>images/black/x18/settings@2x.png</file>
<file>images/black/x18/settings@3x.png</file>
<file>images/black/x18/settings@4x.png</file>
<file>images/black/x18/signal.png</file>
<file>images/black/x18/signal@2x.png</file>
<file>images/black/x18/signal@3x.png</file>
<file>images/black/x18/signal@4x.png</file>
<file>images/black/x18/sms.png</file>
<file>images/black/x18/sms@2x.png</file>
<file>images/black/x18/sms@3x.png</file>
<file>images/black/x18/sms@4x.png</file>
<file>images/black/x18/speaker.png</file>
<file>images/black/x18/speaker@2x.png</file>
<file>images/black/x18/speaker@3x.png</file>
<file>images/black/x18/speaker@4x.png</file>
<file>images/black/x18/stars.png</file>
<file>images/black/x18/stars@2x.png</file>
<file>images/black/x18/stars@3x.png</file>
<file>images/black/x18/stars@4x.png</file>
<file>images/black/x18/stop.png</file>
<file>images/black/x18/stop@2x.png</file>
<file>images/black/x18/stop@3x.png</file>
<file>images/black/x18/stop@4x.png</file>
<file>images/black/x18/subway.png</file>
<file>images/black/x18/subway@2x.png</file>
<file>images/black/x18/subway@3x.png</file>
<file>images/black/x18/subway@4x.png</file>
<file>images/black/x18/sunny.png</file>
<file>images/black/x18/sunny@2x.png</file>
<file>images/black/x18/sunny@3x.png</file>
<file>images/black/x18/sunny@4x.png</file>
<file>images/black/x18/supervisor.png</file>
<file>images/black/x18/supervisor@2x.png</file>
<file>images/black/x18/supervisor@3x.png</file>
<file>images/black/x18/supervisor@4x.png</file>
<file>images/black/x18/tag.png</file>
<file>images/black/x18/tag@2x.png</file>
<file>images/black/x18/tag@3x.png</file>
<file>images/black/x18/tag@4x.png</file>
<file>images/black/x18/takeoff.png</file>
<file>images/black/x18/takeoff@2x.png</file>
<file>images/black/x18/takeoff@3x.png</file>
<file>images/black/x18/takeoff@4x.png</file>
<file>images/black/x18/team_member.png</file>
<file>images/black/x18/team_member@2x.png</file>
<file>images/black/x18/team_member@3x.png</file>
<file>images/black/x18/team_member@4x.png</file>
<file>images/black/x18/time.png</file>
<file>images/black/x18/time@2x.png</file>
<file>images/black/x18/time@3x.png</file>
<file>images/black/x18/time@4x.png</file>
<file>images/black/x18/today.png</file>
<file>images/black/x18/today@2x.png</file>
<file>images/black/x18/today@3x.png</file>
<file>images/black/x18/today@4x.png</file>
<file>images/black/x18/truck.png</file>
<file>images/black/x18/truck@2x.png</file>
<file>images/black/x18/truck@3x.png</file>
<file>images/black/x18/truck@4x.png</file>
<file>images/black/x18/upload.png</file>
<file>images/black/x18/upload@2x.png</file>
<file>images/black/x18/upload@3x.png</file>
<file>images/black/x18/upload@4x.png</file>
<file>images/black/x18/venue.png</file>
<file>images/black/x18/venue@2x.png</file>
<file>images/black/x18/venue@3x.png</file>
<file>images/black/x18/venue@4x.png</file>
<file>images/black/x18/videocam.png</file>
<file>images/black/x18/videocam@2x.png</file>
<file>images/black/x18/videocam@3x.png</file>
<file>images/black/x18/videocam@4x.png</file>
<file>images/black/x18/week.png</file>
<file>images/black/x18/week@2x.png</file>
<file>images/black/x18/week@3x.png</file>
<file>images/black/x18/week@4x.png</file>
<file>images/black/x18/work.png</file>
<file>images/black/x18/work@2x.png</file>
<file>images/black/x18/work@3x.png</file>
<file>images/black/x18/work@4x.png</file>
<file>images/black/x18/zoom_in.png</file>
<file>images/black/x18/zoom_in@2x.png</file>
<file>images/black/x18/zoom_in@3x.png</file>
<file>images/black/x18/zoom_in@4x.png</file>
<file>images/black/x18/zoom_out.png</file>
<file>images/black/x18/zoom_out@2x.png</file>
<file>images/black/x18/zoom_out@3x.png</file>
<file>images/black/x18/zoom_out@4x.png</file>
<file>images/black/x36/add.png</file>
<file>images/black/x36/add@2x.png</file>
<file>images/black/x36/add@3x.png</file>
<file>images/black/x36/add@4x.png</file>
<file>images/black/x36/archive.png</file>
<file>images/black/x36/archive@2x.png</file>
<file>images/black/x36/archive@3x.png</file>
<file>images/black/x36/archive@4x.png</file>
<file>images/black/x36/arrow_back.png</file>
<file>images/black/x36/arrow_back@2x.png</file>
<file>images/black/x36/arrow_back@3x.png</file>
<file>images/black/x36/arrow_back@4x.png</file>
<file>images/black/x36/arrow_forward.png</file>
<file>images/black/x36/arrow_forward@2x.png</file>
<file>images/black/x36/arrow_forward@3x.png</file>
<file>images/black/x36/arrow_forward@4x.png</file>
<file>images/black/x36/aspect_ratio.png</file>
<file>images/black/x36/aspect_ratio@2x.png</file>
<file>images/black/x36/aspect_ratio@3x.png</file>
<file>images/black/x36/aspect_ratio@4x.png</file>
<file>images/black/x36/az.png</file>
<file>images/black/x36/az@2x.png</file>
<file>images/black/x36/az@3x.png</file>
<file>images/black/x36/az@4x.png</file>
<file>images/black/x36/block.png</file>
<file>images/black/x36/block@2x.png</file>
<file>images/black/x36/block@3x.png</file>
<file>images/black/x36/block@4x.png</file>
<file>images/black/x36/bluetooth.png</file>
<file>images/black/x36/bluetooth@2x.png</file>
<file>images/black/x36/bluetooth@3x.png</file>
<file>images/black/x36/bluetooth@4x.png</file>
<file>images/black/x36/bluetooth_off.png</file>
<file>images/black/x36/bluetooth_off@2x.png</file>
<file>images/black/x36/bluetooth_off@3x.png</file>
<file>images/black/x36/bluetooth_off@4x.png</file>
<file>images/black/x36/break.png</file>
<file>images/black/x36/break@2x.png</file>
<file>images/black/x36/break@3x.png</file>
<file>images/black/x36/break@4x.png</file>
<file>images/black/x36/bus.png</file>
<file>images/black/x36/bus@2x.png</file>
<file>images/black/x36/bus@3x.png</file>
<file>images/black/x36/bus@4x.png</file>
<file>images/black/x36/business.png</file>
<file>images/black/x36/business@2x.png</file>
<file>images/black/x36/business@3x.png</file>
<file>images/black/x36/business@4x.png</file>
<file>images/black/x36/calendar.png</file>
<file>images/black/x36/calendar@2x.png</file>
<file>images/black/x36/calendar@3x.png</file>
<file>images/black/x36/calendar@4x.png</file>
<file>images/black/x36/call.png</file>
<file>images/black/x36/call@2x.png</file>
<file>images/black/x36/call@3x.png</file>
<file>images/black/x36/call@4x.png</file>
<file>images/black/x36/camera.png</file>
<file>images/black/x36/camera@2x.png</file>
<file>images/black/x36/camera@3x.png</file>
<file>images/black/x36/camera@4x.png</file>
<file>images/black/x36/car.png</file>
<file>images/black/x36/car@2x.png</file>
<file>images/black/x36/car@3x.png</file>
<file>images/black/x36/car@4x.png</file>
<file>images/black/x36/chart.png</file>
<file>images/black/x36/chart@2x.png</file>
<file>images/black/x36/chart@3x.png</file>
<file>images/black/x36/chart@4x.png</file>
<file>images/black/x36/clear.png</file>
<file>images/black/x36/clear@2x.png</file>
<file>images/black/x36/clear@3x.png</file>
<file>images/black/x36/clear@4x.png</file>
<file>images/black/x36/code.png</file>
<file>images/black/x36/code@2x.png</file>
<file>images/black/x36/code@3x.png</file>
<file>images/black/x36/code@4x.png</file>
<file>images/black/x36/colors.png</file>
<file>images/black/x36/colors@2x.png</file>
<file>images/black/x36/colors@3x.png</file>
<file>images/black/x36/colors@4x.png</file>
<file>images/black/x36/create.png</file>
<file>images/black/x36/create@2x.png</file>
<file>images/black/x36/create@3x.png</file>
<file>images/black/x36/create@4x.png</file>
<file>images/black/x36/day.png</file>
<file>images/black/x36/day@2x.png</file>
<file>images/black/x36/day@3x.png</file>
<file>images/black/x36/day@4x.png</file>
<file>images/black/x36/delete_sweep.png</file>
<file>images/black/x36/delete_sweep@2x.png</file>
<file>images/black/x36/delete_sweep@3x.png</file>
<file>images/black/x36/delete_sweep@4x.png</file>
<file>images/black/x36/description.png</file>
<file>images/black/x36/description@2x.png</file>
<file>images/black/x36/description@3x.png</file>
<file>images/black/x36/description@4x.png</file>
<file>images/black/x36/directions.png</file>
<file>images/black/x36/directions@2x.png</file>
<file>images/black/x36/directions@3x.png</file>
<file>images/black/x36/directions@4x.png</file>
<file>images/black/x36/done.png</file>
<file>images/black/x36/done@2x.png</file>
<file>images/black/x36/done@3x.png</file>
<file>images/black/x36/done@4x.png</file>
<file>images/black/x36/done_all.png</file>
<file>images/black/x36/done_all@2x.png</file>
<file>images/black/x36/done_all@3x.png</file>
<file>images/black/x36/done_all@4x.png</file>
<file>images/black/x36/download.png</file>
<file>images/black/x36/download@2x.png</file>
<file>images/black/x36/download@3x.png</file>
<file>images/black/x36/download@4x.png</file>
<file>images/black/x36/error.png</file>
<file>images/black/x36/error@2x.png</file>
<file>images/black/x36/error@3x.png</file>
<file>images/black/x36/error@4x.png</file>
<file>images/black/x36/flight.png</file>
<file>images/black/x36/flight@2x.png</file>
<file>images/black/x36/flight@3x.png</file>
<file>images/black/x36/flight@4x.png</file>
<file>images/black/x36/florist.png</file>
<file>images/black/x36/florist@2x.png</file>
<file>images/black/x36/florist@3x.png</file>
<file>images/black/x36/florist@4x.png</file>
<file>images/black/x36/folder.png</file>
<file>images/black/x36/folder@2x.png</file>
<file>images/black/x36/folder@3x.png</file>
<file>images/black/x36/folder@4x.png</file>
<file>images/black/x36/folder_fav.png</file>
<file>images/black/x36/folder_fav@2x.png</file>
<file>images/black/x36/folder_fav@3x.png</file>
<file>images/black/x36/folder_fav@4x.png</file>
<file>images/black/x36/folder_new.png</file>
<file>images/black/x36/folder_new@2x.png</file>
<file>images/black/x36/folder_new@3x.png</file>
<file>images/black/x36/folder_new@4x.png</file>
<file>images/black/x36/folder_open.png</file>
<file>images/black/x36/folder_open@2x.png</file>
<file>images/black/x36/folder_open@3x.png</file>
<file>images/black/x36/folder_open@4x.png</file>
<file>images/black/x36/folder_shared.png</file>
<file>images/black/x36/folder_shared@2x.png</file>
<file>images/black/x36/folder_shared@3x.png</file>
<file>images/black/x36/folder_shared@4x.png</file>
<file>images/black/x36/form.png</file>
<file>images/black/x36/form@2x.png</file>
<file>images/black/x36/form@3x.png</file>
<file>images/black/x36/form@4x.png</file>
<file>images/black/x36/goto.png</file>
<file>images/black/x36/goto@2x.png</file>
<file>images/black/x36/goto@3x.png</file>
<file>images/black/x36/goto@4x.png</file>
<file>images/black/x36/group.png</file>
<file>images/black/x36/group@2x.png</file>
<file>images/black/x36/group@3x.png</file>
<file>images/black/x36/group@4x.png</file>
<file>images/black/x36/help.png</file>
<file>images/black/x36/help@2x.png</file>
<file>images/black/x36/help@3x.png</file>
<file>images/black/x36/help@4x.png</file>
<file>images/black/x36/history.png</file>
<file>images/black/x36/history@2x.png</file>
<file>images/black/x36/history@3x.png</file>
<file>images/black/x36/history@4x.png</file>
<file>images/black/x36/home.png</file>
<file>images/black/x36/home@2x.png</file>
<file>images/black/x36/home@3x.png</file>
<file>images/black/x36/home@4x.png</file>
<file>images/black/x36/hotel.png</file>
<file>images/black/x36/hotel@2x.png</file>
<file>images/black/x36/hotel@3x.png</file>
<file>images/black/x36/hotel@4x.png</file>
<file>images/black/x36/image.png</file>
<file>images/black/x36/image@2x.png</file>
<file>images/black/x36/image@3x.png</file>
<file>images/black/x36/image@4x.png</file>
<file>images/black/x36/info.png</file>
<file>images/black/x36/info@2x.png</file>
<file>images/black/x36/info@3x.png</file>
<file>images/black/x36/info@4x.png</file>
<file>images/black/x36/key.png</file>
<file>images/black/x36/key@2x.png</file>
<file>images/black/x36/key@3x.png</file>
<file>images/black/x36/key@4x.png</file>
<file>images/black/x36/list.png</file>
<file>images/black/x36/list@2x.png</file>
<file>images/black/x36/list@3x.png</file>
<file>images/black/x36/list@4x.png</file>
<file>images/black/x36/lunch.png</file>
<file>images/black/x36/lunch@2x.png</file>
<file>images/black/x36/lunch@3x.png</file>
<file>images/black/x36/lunch@4x.png</file>
<file>images/black/x36/mail.png</file>
<file>images/black/x36/mail@2x.png</file>
<file>images/black/x36/mail@3x.png</file>
<file>images/black/x36/mail@4x.png</file>
<file>images/black/x36/menu.png</file>
<file>images/black/x36/menu@2x.png</file>
<file>images/black/x36/menu@3x.png</file>
<file>images/black/x36/menu@4x.png</file>
<file>images/black/x36/movies.png</file>
<file>images/black/x36/movies@2x.png</file>
<file>images/black/x36/movies@3x.png</file>
<file>images/black/x36/movies@4x.png</file>
<file>images/black/x36/my_location.png</file>
<file>images/black/x36/my_location@2x.png</file>
<file>images/black/x36/my_location@3x.png</file>
<file>images/black/x36/my_location@4x.png</file>
<file>images/black/x36/new.png</file>
<file>images/black/x36/new@2x.png</file>
<file>images/black/x36/new@3x.png</file>
<file>images/black/x36/new@4x.png</file>
<file>images/black/x36/party_event.png</file>
<file>images/black/x36/party_event@2x.png</file>
<file>images/black/x36/party_event@3x.png</file>
<file>images/black/x36/party_event@4x.png</file>
<file>images/black/x36/pdf.png</file>
<file>images/black/x36/pdf@2x.png</file>
<file>images/black/x36/pdf@3x.png</file>
<file>images/black/x36/pdf@4x.png</file>
<file>images/black/x36/person.png</file>
<file>images/black/x36/person@2x.png</file>
<file>images/black/x36/person@3x.png</file>
<file>images/black/x36/person@4x.png</file>
<file>images/black/x36/pin.png</file>
<file>images/black/x36/pin@2x.png</file>
<file>images/black/x36/pin@3x.png</file>
<file>images/black/x36/pin@4x.png</file>
<file>images/black/x36/play.png</file>
<file>images/black/x36/play@2x.png</file>
<file>images/black/x36/play@3x.png</file>
<file>images/black/x36/play@4x.png</file>
<file>images/black/x36/printer.png</file>
<file>images/black/x36/printer@2x.png</file>
<file>images/black/x36/printer@3x.png</file>
<file>images/black/x36/printer@4x.png</file>
<file>images/black/x36/refresh.png</file>
<file>images/black/x36/refresh@2x.png</file>
<file>images/black/x36/refresh@3x.png</file>
<file>images/black/x36/refresh@4x.png</file>
<file>images/black/x36/remove.png</file>
<file>images/black/x36/remove@2x.png</file>
<file>images/black/x36/remove@3x.png</file>
<file>images/black/x36/remove@4x.png</file>
<file>images/black/x36/schedule.png</file>
<file>images/black/x36/schedule@2x.png</file>
<file>images/black/x36/schedule@3x.png</file>
<file>images/black/x36/schedule@4x.png</file>
<file>images/black/x36/schedule_list.png</file>
<file>images/black/x36/schedule_list@2x.png</file>
<file>images/black/x36/schedule_list@3x.png</file>
<file>images/black/x36/schedule_list@4x.png</file>
<file>images/black/x36/schedule_my.png</file>
<file>images/black/x36/schedule_my@2x.png</file>
<file>images/black/x36/schedule_my@3x.png</file>
<file>images/black/x36/schedule_my@4x.png</file>
<file>images/black/x36/schedule_sametime.png</file>
<file>images/black/x36/schedule_sametime@2x.png</file>
<file>images/black/x36/schedule_sametime@3x.png</file>
<file>images/black/x36/schedule_sametime@4x.png</file>
<file>images/black/x36/search.png</file>
<file>images/black/x36/search@2x.png</file>
<file>images/black/x36/search@3x.png</file>
<file>images/black/x36/search@4x.png</file>
<file>images/black/x36/send.png</file>
<file>images/black/x36/send@2x.png</file>
<file>images/black/x36/send@3x.png</file>
<file>images/black/x36/send@4x.png</file>
<file>images/black/x36/settings.png</file>
<file>images/black/x36/settings@2x.png</file>
<file>images/black/x36/settings@3x.png</file>
<file>images/black/x36/settings@4x.png</file>
<file>images/black/x36/signal.png</file>
<file>images/black/x36/signal@2x.png</file>
<file>images/black/x36/signal@3x.png</file>
<file>images/black/x36/signal@4x.png</file>
<file>images/black/x36/sms.png</file>
<file>images/black/x36/sms@2x.png</file>
<file>images/black/x36/sms@3x.png</file>
<file>images/black/x36/sms@4x.png</file>
<file>images/black/x36/speaker.png</file>
<file>images/black/x36/speaker@2x.png</file>
<file>images/black/x36/speaker@3x.png</file>
<file>images/black/x36/speaker@4x.png</file>
<file>images/black/x36/stars.png</file>
<file>images/black/x36/stars@2x.png</file>
<file>images/black/x36/stars@3x.png</file>
<file>images/black/x36/stars@4x.png</file>
<file>images/black/x36/stop.png</file>
<file>images/black/x36/stop@2x.png</file>
<file>images/black/x36/stop@3x.png</file>
<file>images/black/x36/stop@4x.png</file>
<file>images/black/x36/subway.png</file>
<file>images/black/x36/subway@2x.png</file>
<file>images/black/x36/subway@3x.png</file>
<file>images/black/x36/subway@4x.png</file>
<file>images/black/x36/sunny.png</file>
<file>images/black/x36/sunny@2x.png</file>
<file>images/black/x36/sunny@3x.png</file>
<file>images/black/x36/sunny@4x.png</file>
<file>images/black/x36/supervisor.png</file>
<file>images/black/x36/supervisor@2x.png</file>
<file>images/black/x36/supervisor@3x.png</file>
<file>images/black/x36/supervisor@4x.png</file>
<file>images/black/x36/tag.png</file>
<file>images/black/x36/tag@2x.png</file>
<file>images/black/x36/tag@3x.png</file>
<file>images/black/x36/tag@4x.png</file>
<file>images/black/x36/takeoff.png</file>
<file>images/black/x36/takeoff@2x.png</file>
<file>images/black/x36/takeoff@3x.png</file>
<file>images/black/x36/takeoff@4x.png</file>
<file>images/black/x36/team_member.png</file>
<file>images/black/x36/team_member@2x.png</file>
<file>images/black/x36/team_member@3x.png</file>
<file>images/black/x36/team_member@4x.png</file>
<file>images/black/x36/time.png</file>
<file>images/black/x36/time@2x.png</file>
<file>images/black/x36/time@3x.png</file>
<file>images/black/x36/time@4x.png</file>
<file>images/black/x36/today.png</file>
<file>images/black/x36/today@2x.png</file>
<file>images/black/x36/today@3x.png</file>
<file>images/black/x36/today@4x.png</file>
<file>images/black/x36/truck.png</file>
<file>images/black/x36/truck@2x.png</file>
<file>images/black/x36/truck@3x.png</file>
<file>images/black/x36/truck@4x.png</file>
<file>images/black/x36/upload.png</file>
<file>images/black/x36/upload@2x.png</file>
<file>images/black/x36/upload@3x.png</file>
<file>images/black/x36/upload@4x.png</file>
<file>images/black/x36/venue.png</file>
<file>images/black/x36/venue@2x.png</file>
<file>images/black/x36/venue@3x.png</file>
<file>images/black/x36/venue@4x.png</file>
<file>images/black/x36/videocam.png</file>
<file>images/black/x36/videocam@2x.png</file>
<file>images/black/x36/videocam@3x.png</file>
<file>images/black/x36/videocam@4x.png</file>
<file>images/black/x36/week.png</file>
<file>images/black/x36/week@2x.png</file>
<file>images/black/x36/week@3x.png</file>
<file>images/black/x36/week@4x.png</file>
<file>images/black/x36/work.png</file>
<file>images/black/x36/work@2x.png</file>
<file>images/black/x36/work@3x.png</file>
<file>images/black/x36/work@4x.png</file>
<file>images/black/x36/zoom_in.png</file>
<file>images/black/x36/zoom_in@2x.png</file>
<file>images/black/x36/zoom_in@3x.png</file>
<file>images/black/x36/zoom_in@4x.png</file>
<file>images/black/x36/zoom_out.png</file>
<file>images/black/x36/zoom_out@2x.png</file>
<file>images/black/x36/zoom_out@3x.png</file>
<file>images/black/x36/zoom_out@4x.png</file>
<file>images/black/x48/add.png</file>
<file>images/black/x48/add@2x.png</file>
<file>images/black/x48/add@3x.png</file>
<file>images/black/x48/add@4x.png</file>
<file>images/black/x48/archive.png</file>
<file>images/black/x48/archive@2x.png</file>
<file>images/black/x48/archive@3x.png</file>
<file>images/black/x48/archive@4x.png</file>
<file>images/black/x48/arrow_back.png</file>
<file>images/black/x48/arrow_back@2x.png</file>
<file>images/black/x48/arrow_back@3x.png</file>
<file>images/black/x48/arrow_back@4x.png</file>
<file>images/black/x48/arrow_forward.png</file>
<file>images/black/x48/arrow_forward@2x.png</file>
<file>images/black/x48/arrow_forward@3x.png</file>
<file>images/black/x48/arrow_forward@4x.png</file>
<file>images/black/x48/aspect_ratio.png</file>
<file>images/black/x48/aspect_ratio@2x.png</file>
<file>images/black/x48/aspect_ratio@3x.png</file>
<file>images/black/x48/aspect_ratio@4x.png</file>
<file>images/black/x48/az.png</file>
<file>images/black/x48/az@2x.png</file>
<file>images/black/x48/az@3x.png</file>
<file>images/black/x48/az@4x.png</file>
<file>images/black/x48/block.png</file>
<file>images/black/x48/block@2x.png</file>
<file>images/black/x48/block@3x.png</file>
<file>images/black/x48/block@4x.png</file>
<file>images/black/x48/bluetooth.png</file>
<file>images/black/x48/bluetooth@2x.png</file>
<file>images/black/x48/bluetooth@3x.png</file>
<file>images/black/x48/bluetooth@4x.png</file>
<file>images/black/x48/bluetooth_off.png</file>
<file>images/black/x48/bluetooth_off@2x.png</file>
<file>images/black/x48/bluetooth_off@3x.png</file>
<file>images/black/x48/bluetooth_off@4x.png</file>
<file>images/black/x48/break.png</file>
<file>images/black/x48/break@2x.png</file>
<file>images/black/x48/break@3x.png</file>
<file>images/black/x48/break@4x.png</file>
<file>images/black/x48/bus.png</file>
<file>images/black/x48/bus@2x.png</file>
<file>images/black/x48/bus@3x.png</file>
<file>images/black/x48/bus@4x.png</file>
<file>images/black/x48/business.png</file>
<file>images/black/x48/business@2x.png</file>
<file>images/black/x48/business@3x.png</file>
<file>images/black/x48/business@4x.png</file>
<file>images/black/x48/calendar.png</file>
<file>images/black/x48/calendar@2x.png</file>
<file>images/black/x48/calendar@3x.png</file>
<file>images/black/x48/calendar@4x.png</file>
<file>images/black/x48/call.png</file>
<file>images/black/x48/call@2x.png</file>
<file>images/black/x48/call@3x.png</file>
<file>images/black/x48/call@4x.png</file>
<file>images/black/x48/camera.png</file>
<file>images/black/x48/camera@2x.png</file>
<file>images/black/x48/camera@3x.png</file>
<file>images/black/x48/camera@4x.png</file>
<file>images/black/x48/car.png</file>
<file>images/black/x48/car@2x.png</file>
<file>images/black/x48/car@3x.png</file>
<file>images/black/x48/car@4x.png</file>
<file>images/black/x48/chart.png</file>
<file>images/black/x48/chart@2x.png</file>
<file>images/black/x48/chart@3x.png</file>
<file>images/black/x48/chart@4x.png</file>
<file>images/black/x48/clear.png</file>
<file>images/black/x48/clear@2x.png</file>
<file>images/black/x48/clear@3x.png</file>
<file>images/black/x48/clear@4x.png</file>
<file>images/black/x48/code.png</file>
<file>images/black/x48/code@2x.png</file>
<file>images/black/x48/code@3x.png</file>
<file>images/black/x48/code@4x.png</file>
<file>images/black/x48/colors.png</file>
<file>images/black/x48/colors@2x.png</file>
<file>images/black/x48/colors@3x.png</file>
<file>images/black/x48/colors@4x.png</file>
<file>images/black/x48/create.png</file>
<file>images/black/x48/create@2x.png</file>
<file>images/black/x48/create@3x.png</file>
<file>images/black/x48/create@4x.png</file>
<file>images/black/x48/day.png</file>
<file>images/black/x48/day@2x.png</file>
<file>images/black/x48/day@3x.png</file>
<file>images/black/x48/day@4x.png</file>
<file>images/black/x48/delete_sweep.png</file>
<file>images/black/x48/delete_sweep@2x.png</file>
<file>images/black/x48/delete_sweep@3x.png</file>
<file>images/black/x48/delete_sweep@4x.png</file>
<file>images/black/x48/description.png</file>
<file>images/black/x48/description@2x.png</file>
<file>images/black/x48/description@3x.png</file>
<file>images/black/x48/description@4x.png</file>
<file>images/black/x48/directions.png</file>
<file>images/black/x48/directions@2x.png</file>
<file>images/black/x48/directions@3x.png</file>
<file>images/black/x48/directions@4.png</file>
<file>images/black/x48/done.png</file>
<file>images/black/x48/done@2x.png</file>
<file>images/black/x48/done@3x.png</file>
<file>images/black/x48/done@4x.png</file>
<file>images/black/x48/done_all.png</file>
<file>images/black/x48/done_all@2x.png</file>
<file>images/black/x48/done_all@3x.png</file>
<file>images/black/x48/done_all@4x.png</file>
<file>images/black/x48/download.png</file>
<file>images/black/x48/download@2x.png</file>
<file>images/black/x48/download@3x.png</file>
<file>images/black/x48/download@4x.png</file>
<file>images/black/x48/error.png</file>
<file>images/black/x48/error@2x.png</file>
<file>images/black/x48/error@3x.png</file>
<file>images/black/x48/error@4x.png</file>
<file>images/black/x48/flight.png</file>
<file>images/black/x48/flight@2x.png</file>
<file>images/black/x48/flight@3x.png</file>
<file>images/black/x48/flight@4x.png</file>
<file>images/black/x48/florist.png</file>
<file>images/black/x48/florist@2x.png</file>
<file>images/black/x48/florist@3x.png</file>
<file>images/black/x48/florist@4x.png</file>
<file>images/black/x48/folder.png</file>
<file>images/black/x48/folder@2x.png</file>
<file>images/black/x48/folder@3x.png</file>
<file>images/black/x48/folder@4x.png</file>
<file>images/black/x48/folder_fav.png</file>
<file>images/black/x48/folder_fav@2x.png</file>
<file>images/black/x48/folder_fav@3x.png</file>
<file>images/black/x48/folder_fav@4x.png</file>
<file>images/black/x48/folder_new.png</file>
<file>images/black/x48/folder_new@2x.png</file>
<file>images/black/x48/folder_new@3x.png</file>
<file>images/black/x48/folder_new@4x.png</file>
<file>images/black/x48/folder_open.png</file>
<file>images/black/x48/folder_open@2x.png</file>
<file>images/black/x48/folder_open@3x.png</file>
<file>images/black/x48/folder_open@4x.png</file>
<file>images/black/x48/folder_shared.png</file>
<file>images/black/x48/folder_shared@2x.png</file>
<file>images/black/x48/folder_shared@3x.png</file>
<file>images/black/x48/folder_shared@4x.png</file>
<file>images/black/x48/form.png</file>
<file>images/black/x48/form@2x.png</file>
<file>images/black/x48/form@3x.png</file>
<file>images/black/x48/form@4x.png</file>
<file>images/black/x48/goto.png</file>
<file>images/black/x48/goto@2x.png</file>
<file>images/black/x48/goto@3x.png</file>
<file>images/black/x48/goto@4x.png</file>
<file>images/black/x48/group.png</file>
<file>images/black/x48/group@2x.png</file>
<file>images/black/x48/group@3x.png</file>
<file>images/black/x48/group@4x.png</file>
<file>images/black/x48/help.png</file>
<file>images/black/x48/help@2x.png</file>
<file>images/black/x48/help@3x.png</file>
<file>images/black/x48/help@4x.png</file>
<file>images/black/x48/history.png</file>
<file>images/black/x48/history@2x.png</file>
<file>images/black/x48/history@3x.png</file>
<file>images/black/x48/history@4x.png</file>
<file>images/black/x48/home.png</file>
<file>images/black/x48/home@2x.png</file>
<file>images/black/x48/home@3x.png</file>
<file>images/black/x48/home@4x.png</file>
<file>images/black/x48/hotel.png</file>
<file>images/black/x48/hotel@2x.png</file>
<file>images/black/x48/hotel@3x.png</file>
<file>images/black/x48/hotel@4x.png</file>
<file>images/black/x48/image.png</file>
<file>images/black/x48/image@2x.png</file>
<file>images/black/x48/image@3x.png</file>
<file>images/black/x48/image@4x.png</file>
<file>images/black/x48/info.png</file>
<file>images/black/x48/info@2x.png</file>
<file>images/black/x48/info@3x.png</file>
<file>images/black/x48/info@4x.png</file>
<file>images/black/x48/key.png</file>
<file>images/black/x48/key@2x.png</file>
<file>images/black/x48/key@3x.png</file>
<file>images/black/x48/key@4x.png</file>
<file>images/black/x48/list.png</file>
<file>images/black/x48/list@2x.png</file>
<file>images/black/x48/list@3x.png</file>
<file>images/black/x48/list@4x.png</file>
<file>images/black/x48/lunch.png</file>
<file>images/black/x48/lunch@2x.png</file>
<file>images/black/x48/lunch@3x.png</file>
<file>images/black/x48/lunch@4x.png</file>
<file>images/black/x48/mail.png</file>
<file>images/black/x48/mail@2x.png</file>
<file>images/black/x48/mail@3x.png</file>
<file>images/black/x48/mail@4x.png</file>
<file>images/black/x48/menu.png</file>
<file>images/black/x48/menu@2x.png</file>
<file>images/black/x48/menu@3x.png</file>
<file>images/black/x48/menu@4x.png</file>
<file>images/black/x48/movies.png</file>
<file>images/black/x48/movies@2x.png</file>
<file>images/black/x48/movies@3x.png</file>
<file>images/black/x48/movies@4x.png</file>
<file>images/black/x48/my_location.png</file>
<file>images/black/x48/my_location@2x.png</file>
<file>images/black/x48/my_location@3x.png</file>
<file>images/black/x48/my_location@4x.png</file>
<file>images/black/x48/new.png</file>
<file>images/black/x48/new@2x.png</file>
<file>images/black/x48/new@3x.png</file>
<file>images/black/x48/new@4x.png</file>
<file>images/black/x48/party_event.png</file>
<file>images/black/x48/party_event@2x.png</file>
<file>images/black/x48/party_event@3x.png</file>
<file>images/black/x48/party_event@4x.png</file>
<file>images/black/x48/pdf.png</file>
<file>images/black/x48/pdf@2x.png</file>
<file>images/black/x48/pdf@3x.png</file>
<file>images/black/x48/pdf@4x.png</file>
<file>images/black/x48/person.png</file>
<file>images/black/x48/person@2x.png</file>
<file>images/black/x48/person@3x.png</file>
<file>images/black/x48/person@4x.png</file>
<file>images/black/x48/pin.png</file>
<file>images/black/x48/pin@2x.png</file>
<file>images/black/x48/pin@3x.png</file>
<file>images/black/x48/pin@4x.png</file>
<file>images/black/x48/play.png</file>
<file>images/black/x48/play@2x.png</file>
<file>images/black/x48/play@3x.png</file>
<file>images/black/x48/play@4x.png</file>
<file>images/black/x48/printer.png</file>
<file>images/black/x48/printer@2x.png</file>
<file>images/black/x48/printer@3x.png</file>
<file>images/black/x48/printer@4x.png</file>
<file>images/black/x48/refresh.png</file>
<file>images/black/x48/refresh@2x.png</file>
<file>images/black/x48/refresh@3x.png</file>
<file>images/black/x48/refresh@4x.png</file>
<file>images/black/x48/remove.png</file>
<file>images/black/x48/remove@2x.png</file>
<file>images/black/x48/remove@3x.png</file>
<file>images/black/x48/remove@4x.png</file>
<file>images/black/x48/schedule.png</file>
<file>images/black/x48/schedule@2x.png</file>
<file>images/black/x48/schedule@3x.png</file>
<file>images/black/x48/schedule@4x.png</file>
<file>images/black/x48/schedule_list.png</file>
<file>images/black/x48/schedule_list@2x.png</file>
<file>images/black/x48/schedule_list@3x.png</file>
<file>images/black/x48/schedule_list@4x.png</file>
<file>images/black/x48/schedule_my.png</file>
<file>images/black/x48/schedule_my@2x.png</file>
<file>images/black/x48/schedule_my@3x.png</file>
<file>images/black/x48/schedule_my@4x.png</file>
<file>images/black/x48/schedule_sametime.png</file>
<file>images/black/x48/schedule_sametime@2x.png</file>
<file>images/black/x48/schedule_sametime@3x.png</file>
<file>images/black/x48/schedule_sametime@4x.png</file>
<file>images/black/x48/search.png</file>
<file>images/black/x48/search@2x.png</file>
<file>images/black/x48/search@3x.png</file>
<file>images/black/x48/search@4x.png</file>
<file>images/black/x48/send.png</file>
<file>images/black/x48/send@2x.png</file>
<file>images/black/x48/send@3x.png</file>
<file>images/black/x48/send@4x.png</file>
<file>images/black/x48/settings.png</file>
<file>images/black/x48/settings@2x.png</file>
<file>images/black/x48/settings@3x.png</file>
<file>images/black/x48/settings@4x.png</file>
<file>images/black/x48/signal.png</file>
<file>images/black/x48/signal@2x.png</file>
<file>images/black/x48/signal@3x.png</file>
<file>images/black/x48/signal@4x.png</file>
<file>images/black/x48/sms.png</file>
<file>images/black/x48/sms@2x.png</file>
<file>images/black/x48/sms@3x.png</file>
<file>images/black/x48/sms@4x.png</file>
<file>images/black/x48/speaker.png</file>
<file>images/black/x48/speaker@2x.png</file>
<file>images/black/x48/speaker@3x.png</file>
<file>images/black/x48/speaker@4x.png</file>
<file>images/black/x48/stars.png</file>
<file>images/black/x48/stars@2x.png</file>