summaryrefslogtreecommitdiff
path: root/ios/iosremote/iosremote.xcodeproj/project.pbxproj
blob: a89d46a721e5ca10acf8eb409dfcc393db39c4e7 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 46;
	objects = {

/* Begin PBXBuildFile section */
		5711026C1794127E007D343B /* libTestFlight.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 571102681794127E007D343B /* libTestFlight.a */; };
		5711026D1794127E007D343B /* README.md in Resources */ = {isa = PBXBuildFile; fileRef = 571102691794127E007D343B /* README.md */; };
		5711026E1794127E007D343B /* release_notes.md in Resources */ = {isa = PBXBuildFile; fileRef = 5711026A1794127E007D343B /* release_notes.md */; };
		571102701794128E007D343B /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 5711026F1794128E007D343B /* libz.dylib */; };
		571BFAD1178AADA200EF1BDB /* more_icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 571BFAD0178AADA200EF1BDB /* more_icon.png */; };
		571D4807178B2F080063D93B /* timer_clear_btn.png in Resources */ = {isa = PBXBuildFile; fileRef = 571D4805178B2F080063D93B /* timer_clear_btn.png */; };
		571D4808178B2F080063D93B /* timer_start_btn.png in Resources */ = {isa = PBXBuildFile; fileRef = 571D4806178B2F080063D93B /* timer_start_btn.png */; };
		5753DD901781EA0300DB71BB /* ServerListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5753DD8F1781EA0300DB71BB /* ServerListViewController.m */; };
		5753DD9917834D7100DB71BB /* NewServerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5753DD9817834D7100DB71BB /* NewServerViewController.m */; };
		57701742178B0A6900B99793 /* SlideShowSwipeInList~iphone.m in Sources */ = {isa = PBXBuildFile; fileRef = 57701741178B0A6900B99793 /* SlideShowSwipeInList~iphone.m */; };
		57867A571787385800EBBE52 /* SlideShowViewController~iphone.m in Sources */ = {isa = PBXBuildFile; fileRef = 57867A561787385800EBBE52 /* SlideShowViewController~iphone.m */; };
		57867A5A1787510700EBBE52 /* pushed_next_button.png in Resources */ = {isa = PBXBuildFile; fileRef = 57867A581787510700EBBE52 /* pushed_next_button.png */; };
		57867A5B1787510700EBBE52 /* released_next_button.png in Resources */ = {isa = PBXBuildFile; fileRef = 57867A591787510700EBBE52 /* released_next_button.png */; };
		57867A5E178752CD00EBBE52 /* pushed_previous_button.png in Resources */ = {isa = PBXBuildFile; fileRef = 57867A5C178752CD00EBBE52 /* pushed_previous_button.png */; };
		57867A5F178752CD00EBBE52 /* released_previous_button.png in Resources */ = {isa = PBXBuildFile; fileRef = 57867A5D178752CD00EBBE52 /* released_previous_button.png */; };
		57AEEDAF17895B67007F4F97 /* pointer.png in Resources */ = {isa = PBXBuildFile; fileRef = 57AEEDAE17895B67007F4F97 /* pointer.png */; };
		57AEEDB117895BF5007F4F97 /* pointer_pushed.png in Resources */ = {isa = PBXBuildFile; fileRef = 57AEEDB017895BF5007F4F97 /* pointer_pushed.png */; };
		57AEEDB517899BB4007F4F97 /* slide_finished.png in Resources */ = {isa = PBXBuildFile; fileRef = 57AEEDB417899BB4007F4F97 /* slide_finished.png */; };
		57B152991764703500EECC67 /* NSString+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = 57B152981764703500EECC67 /* NSString+Base64.m */; };
		57B1529F176486C300EECC67 /* CommandTransmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 57B1529E176486C300EECC67 /* CommandTransmitter.m */; };
		57B7625D17621E42007703F6 /* SlideShow.m in Sources */ = {isa = PBXBuildFile; fileRef = 57B7625C17621E42007703F6 /* SlideShow.m */; };
		57C6E3F3175E06E800E8BC5F /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 57C6E3F2175E06E800E8BC5F /* UIKit.framework */; };
		57C6E3F5175E06E800E8BC5F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 57C6E3F4175E06E800E8BC5F /* Foundation.framework */; };
		57C6E3F7175E06E800E8BC5F /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 57C6E3F6175E06E800E8BC5F /* CoreGraphics.framework */; };
		57C6E3FD175E06E800E8BC5F /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 57C6E3FB175E06E800E8BC5F /* InfoPlist.strings */; };
		57C6E3FF175E06E800E8BC5F /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 57C6E3FE175E06E800E8BC5F /* main.m */; };
		57C6E403175E06E800E8BC5F /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 57C6E402175E06E800E8BC5F /* AppDelegate.m */; };
		57C6E405175E06E800E8BC5F /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = 57C6E404175E06E800E8BC5F /* Default.png */; };
		57C6E407175E06E800E8BC5F /* Default@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 57C6E406175E06E800E8BC5F /* Default@2x.png */; };
		57C6E409175E06E800E8BC5F /* Default-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 57C6E408175E06E800E8BC5F /* Default-568h@2x.png */; };
		57C6E42E175E076900E8BC5F /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 57C6E427175E076900E8BC5F /* Client.m */; };
		57C6E42F175E076900E8BC5F /* CommunicationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 57C6E429175E076900E8BC5F /* CommunicationManager.m */; };
		57C6E430175E076900E8BC5F /* CommandInterpreter.m in Sources */ = {isa = PBXBuildFile; fileRef = 57C6E42B175E076900E8BC5F /* CommandInterpreter.m */; };
		57C6E431175E076900E8BC5F /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 57C6E42D175E076900E8BC5F /* Server.m */; };
		57CC48C6178B42A400075DE4 /* timer_pause_btn.png in Resources */ = {isa = PBXBuildFile; fileRef = 57CC48C4178B42A400075DE4 /* timer_pause_btn.png */; };
		57CFED9917838FDC00E82E05 /* EditableTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 57CFED9817838FDC00E82E05 /* EditableTableViewCell.m */; };
		57DC7007178D84490050FC58 /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 57DC7006178D84490050FC58 /* CoreMotion.framework */; };
		57DC7012178E16A40050FC58 /* UIView+FadeInFadeOut.m in Sources */ = {isa = PBXBuildFile; fileRef = 57DC7011178E16A40050FC58 /* UIView+FadeInFadeOut.m */; };
		57DF0A85178FFFAB008B2D3D /* iPhone_autosize.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 57DF0A83178FFFAB008B2D3D /* iPhone_autosize.storyboard */; };
		57FE71E31785C61400B50125 /* PinValidationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 57FE71E21785C61400B50125 /* PinValidationViewController.m */; };
		57FE71E917861A9000B50125 /* SlideShowPreviewViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 57FE71E817861A9000B50125 /* SlideShowPreviewViewController.m */; };
		8C0323AB17A943720037432E /* UIImageView+setImageAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C0323AA17A943720037432E /* UIImageView+setImageAnimated.m */; };
		8C06B31D17B7EC83002F5CF8 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 8C06B31B17B7EC83002F5CF8 /* Localizable.strings */; };
		8C06B31E17B7ED1E002F5CF8 /* iPad_autosize.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 8C06B32017B7ED1E002F5CF8 /* iPad_autosize.storyboard */; };
		8C0C879317F4C46E003CE6B2 /* WalkThroughPageViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 8C0C879217F4C46E003CE6B2 /* WalkThroughPageViewController.xib */; };
		8C0DC83A17A4177C0099E5AE /* nextButton_pressed.png in Resources */ = {isa = PBXBuildFile; fileRef = 8C0DC83617A4177C0099E5AE /* nextButton_pressed.png */; };
		8C0DC83B17A4177C0099E5AE /* nextButton_pressed@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8C0DC83717A4177C0099E5AE /* nextButton_pressed@2x.png */; };
		8C0DC83C17A4177C0099E5AE /* previousButton_pressed.png in Resources */ = {isa = PBXBuildFile; fileRef = 8C0DC83817A4177C0099E5AE /* previousButton_pressed.png */; };
		8C0DC83D17A4177C0099E5AE /* previousButton_pressed@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8C0DC83917A4177C0099E5AE /* previousButton_pressed@2x.png */; };
		8C0DC84217A4185A0099E5AE /* nextButton_normal.png in Resources */ = {isa = PBXBuildFile; fileRef = 8C0DC83E17A4185A0099E5AE /* nextButton_normal.png */; };
		8C0DC84317A4185A0099E5AE /* nextButton_normal@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8C0DC83F17A4185A0099E5AE /* nextButton_normal@2x.png */; };
		8C0DC84417A4185A0099E5AE /* previousButton_normal.png in Resources */ = {isa = PBXBuildFile; fileRef = 8C0DC84017A4185A0099E5AE /* previousButton_normal.png */; };
		8C0DC84517A4185A0099E5AE /* previousButton_normal@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8C0DC84117A4185A0099E5AE /* previousButton_normal@2x.png */; };
		8C0DC85117A512250099E5AE /* AppDelegate~ipad.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C0DC85017A512250099E5AE /* AppDelegate~ipad.m */; };
		8C10780318947B9D0062E0E7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 8C10780218947B9D0062E0E7 /* Images.xcassets */; };
		8C19F41D17B00899005BDB61 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8C19F41C17B00899005BDB61 /* SystemConfiguration.framework */; };
		8C19F41F17B02A8A005BDB61 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8C19F41E17B02A8A005BDB61 /* QuartzCore.framework */; };
		8C19F42417B02C7A005BDB61 /* PopoverView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C19F42117B02AA9005BDB61 /* PopoverView.m */; };
		8C19F42717B04E7C005BDB61 /* navBarBackground@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8C19F42517B04E7C005BDB61 /* navBarBackground@2x.png */; };
		8C19F42817B04E7C005BDB61 /* navBarBackground.png in Resources */ = {isa = PBXBuildFile; fileRef = 8C19F42617B04E7C005BDB61 /* navBarBackground.png */; };
		8C19F42F17B05089005BDB61 /* LibONavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C19F42E17B05089005BDB61 /* LibONavigationController.m */; };
		8C19F43317B056B3005BDB61 /* navBarButtonNormal@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8C19F43217B056B3005BDB61 /* navBarButtonNormal@2x.png */; };
		8C19F43617B10D49005BDB61 /* UIViewController+LibOStyling.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C19F43517B10D49005BDB61 /* UIViewController+LibOStyling.m */; };
		8C19F43917B145AD005BDB61 /* backButton.png in Resources */ = {isa = PBXBuildFile; fileRef = 8C19F43717B145AD005BDB61 /* backButton.png */; };
		8C19F43A17B145AD005BDB61 /* backButton@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8C19F43817B145AD005BDB61 /* backButton@2x.png */; };
		8C19F43E17B1D935005BDB61 /* add.png in Resources */ = {isa = PBXBuildFile; fileRef = 8C19F43C17B1D935005BDB61 /* add.png */; };
		8C19F44A17B1FEFE005BDB61 /* gear_transparent_bg.png in Resources */ = {isa = PBXBuildFile; fileRef = 8C19F44817B1FEFD005BDB61 /* gear_transparent_bg.png */; };
		8C19F44B17B1FEFE005BDB61 /* gear_transparent_bg@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8C19F44917B1FEFE005BDB61 /* gear_transparent_bg@2x.png */; };
		8C19F44D17B20427005BDB61 /* add@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8C19F44C17B20426005BDB61 /* add@2x.png */; };
		8C23B46917DA158C00FB4DE6 /* UIView+Shadowing.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C23B46817DA158C00FB4DE6 /* UIView+Shadowing.m */; };
		8C23B46C17DB3B8600FB4DE6 /* timer_settime_btn.png in Resources */ = {isa = PBXBuildFile; fileRef = 8C23B46A17DB3B8600FB4DE6 /* timer_settime_btn.png */; };
		8C23B46D17DB3B8600FB4DE6 /* timer_settime_btn@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8C23B46B17DB3B8600FB4DE6 /* timer_settime_btn@2x.png */; };
		8C23B47017DB419300FB4DE6 /* Timer.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C23B46F17DB419300FB4DE6 /* Timer.m */; };
		8C26E5C617A5539D007DA4B7 /* UserDefaults.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8C26E5C517A5539D007DA4B7 /* UserDefaults.plist */; };
		8C26E5C917A5731D007DA4B7 /* AutoDismissKeyboardNavigationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C26E5C817A5731D007DA4B7 /* AutoDismissKeyboardNavigationViewController.m */; };
		8C26E5D017A58703007DA4B7 /* HorizontalSlideCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C26E5CF17A58703007DA4B7 /* HorizontalSlideCell.m */; };
		8C26E5D717A68154007DA4B7 /* StopWatch.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C26E5D617A68154007DA4B7 /* StopWatch.m */; };
		8C2937B017E8348D00C3B887 /* libreoffice_logo.png in Resources */ = {isa = PBXBuildFile; fileRef = 8C2937AF17E8348D00C3B887 /* libreoffice_logo.png */; };
		8C2937B317E8374B00C3B887 /* SWRevealViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C2937B217E8374B00C3B887 /* SWRevealViewController.m */; };
		8C2937BD17E837BA00C3B887 /* Default-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8C2937BA17E837BA00C3B887 /* Default-568h@2x.png */; };
		8C2937BE17E837BA00C3B887 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = 8C2937BB17E837BA00C3B887 /* Default.png */; };
		8C2937BF17E837BA00C3B887 /* Default@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8C2937BC17E837BA00C3B887 /* Default@2x.png */; };
		8C2937C517E9C40D00C3B887 /* ServerListViewController~ipad.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C2937C417E9C40C00C3B887 /* ServerListViewController~ipad.m */; };
		8C3A648817DCBE9E004A77D9 /* timer_clear_btn_dark.png in Resources */ = {isa = PBXBuildFile; fileRef = 8C3A648117DCBE9E004A77D9 /* timer_clear_btn_dark.png */; };
		8C3A648A17DCBE9E004A77D9 /* timer_pause_btn_dark.png in Resources */ = {isa = PBXBuildFile; fileRef = 8C3A648317DCBE9E004A77D9 /* timer_pause_btn_dark.png */; };
		8C3A648B17DCBE9E004A77D9 /* timer_pause_btn_dark@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8C3A648417DCBE9E004A77D9 /* timer_pause_btn_dark@2x.png */; };
		8C3A648C17DCBE9E004A77D9 /* timer_settime_btn_dark.png in Resources */ = {isa = PBXBuildFile; fileRef = 8C3A648517DCBE9E004A77D9 /* timer_settime_btn_dark.png */; };
		8C3A648D17DCBE9E004A77D9 /* timer_settime_btn_dark@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8C3A648617DCBE9E004A77D9 /* timer_settime_btn_dark@2x.png */; };
		8C3A648E17DCBE9E004A77D9 /* timer_start_btn_dark.png in Resources */ = {isa = PBXBuildFile; fileRef = 8C3A648717DCBE9E004A77D9 /* timer_start_btn_dark.png */; };
		8C408A8218001DF00095D80F /* UIImage+imageWithColor.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C408A8118001DF00095D80F /* UIImage+imageWithColor.m */; };
		8C8C7FB017EDA9330022A6BD /* UINavigationController+Theme.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C8C7FAF17EDA9330022A6BD /* UINavigationController+Theme.m */; };
		8C8C7FB317EDAFD20022A6BD /* more_ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = 8C8C7FB117EDAFD20022A6BD /* more_ipad.png */; };
		8C8C7FB417EDAFD20022A6BD /* more_ipad@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8C8C7FB217EDAFD20022A6BD /* more_ipad@2x.png */; };
		8C94E69617CF7BF000B4848D /* WTPairingScreenshot.png in Resources */ = {isa = PBXBuildFile; fileRef = 8C94E69517CF7BF000B4848D /* WTPairingScreenshot.png */; };
		8CAD658517A2E84A00CFB661 /* MainSplitViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CAD658417A2E84A00CFB661 /* MainSplitViewController.m */; };
		8CAD658817A2EDB200CFB661 /* SlideShowPreviewViewController~ipad.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CAD658717A2EDB200CFB661 /* SlideShowPreviewViewController~ipad.m */; };
		8CAD658C17A2F02000CFB661 /* SlideShowPreviewViewController~iphone.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CAD658B17A2F02000CFB661 /* SlideShowPreviewViewController~iphone.m */; };
		8CAD659517A3C2D400CFB661 /* BasePresentationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CAD659417A3C2D400CFB661 /* BasePresentationViewController.m */; };
		8CAD65A017A3F76300CFB661 /* SlideShowSwipeInList~ipad.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CAD659F17A3F76300CFB661 /* SlideShowSwipeInList~ipad.m */; };
		8CAF3DDF17D0DFFD00F931E5 /* WTcontrol~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = 8CAF3DDD17D0DFFD00F931E5 /* WTcontrol~ipad.png */; };
		8CAF3DE017D0DFFD00F931E5 /* WTcontrol~iphone.png in Resources */ = {isa = PBXBuildFile; fileRef = 8CAF3DDE17D0DFFD00F931E5 /* WTcontrol~iphone.png */; };
		8CBF9DEB17DDBFA70044D949 /* IASKAppSettingsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CBF9DC417DDBFA70044D949 /* IASKAppSettingsViewController.m */; };
		8CBF9DEC17DDBFA70044D949 /* IASKAppSettingsWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CBF9DC617DDBFA70044D949 /* IASKAppSettingsWebViewController.m */; };
		8CBF9DED17DDBFA70044D949 /* IASKSpecifierValuesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CBF9DC817DDBFA70044D949 /* IASKSpecifierValuesViewController.m */; };
		8CBF9DEE17DDBFA70044D949 /* IASKSettingsReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CBF9DCC17DDBFA70044D949 /* IASKSettingsReader.m */; };
		8CBF9DEF17DDBFA70044D949 /* IASKSettingsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CBF9DCE17DDBFA70044D949 /* IASKSettingsStore.m */; };
		8CBF9DF017DDBFA70044D949 /* IASKSettingsStoreFile.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CBF9DD017DDBFA70044D949 /* IASKSettingsStoreFile.m */; };
		8CBF9DF117DDBFA70044D949 /* IASKSettingsStoreUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CBF9DD217DDBFA70044D949 /* IASKSettingsStoreUserDefaults.m */; };
		8CBF9DF217DDBFA70044D949 /* IASKSpecifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CBF9DD417DDBFA70044D949 /* IASKSpecifier.m */; };
		8CBF9DF317DDBFA70044D949 /* IASKPSSliderSpecifierViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CBF9DD717DDBFA70044D949 /* IASKPSSliderSpecifierViewCell.m */; };
		8CBF9DF417DDBFA70044D949 /* IASKPSTextFieldSpecifierViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CBF9DD917DDBFA70044D949 /* IASKPSTextFieldSpecifierViewCell.m */; };
		8CBF9DF517DDBFA70044D949 /* IASKPSTitleValueSpecifierViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CBF9DDB17DDBFA70044D949 /* IASKPSTitleValueSpecifierViewCell.m */; };
		8CBF9DF617DDBFA70044D949 /* IASKPSToggleSwitchSpecifierViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CBF9DDD17DDBFA70044D949 /* IASKPSToggleSwitchSpecifierViewCell.m */; };
		8CBF9DF717DDBFA70044D949 /* IASKSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CBF9DDF17DDBFA70044D949 /* IASKSlider.m */; };
		8CBF9DF817DDBFA70044D949 /* IASKSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CBF9DE117DDBFA70044D949 /* IASKSwitch.m */; };
		8CBF9DF917DDBFA70044D949 /* IASKTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CBF9DE317DDBFA70044D949 /* IASKTextField.m */; };
		8CBF9DFA17DDBFA70044D949 /* IASKAppSettingsView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 8CBF9DE517DDBFA70044D949 /* IASKAppSettingsView.xib */; };
		8CBF9DFB17DDBFA70044D949 /* IASKAppSettingsWebView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 8CBF9DE617DDBFA70044D949 /* IASKAppSettingsWebView.xib */; };
		8CBF9DFC17DDBFA70044D949 /* IASKPSSliderSpecifierViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 8CBF9DE717DDBFA70044D949 /* IASKPSSliderSpecifierViewCell.xib */; };
		8CBF9DFD17DDBFA70044D949 /* IASKPSTextFieldSpecifierViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 8CBF9DE817DDBFA70044D949 /* IASKPSTextFieldSpecifierViewCell.xib */; };
		8CBF9DFE17DDBFA70044D949 /* IASKPSToggleSwitchSpecifierViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 8CBF9DE917DDBFA70044D949 /* IASKPSToggleSwitchSpecifierViewCell.xib */; };
		8CBF9DFF17DDBFA70044D949 /* IASKSpecifierValuesView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 8CBF9DEA17DDBFA70044D949 /* IASKSpecifierValuesView.xib */; };
		8CBF9E0117DDC1A80044D949 /* MessageUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8CBF9E0017DDC1A80044D949 /* MessageUI.framework */; };
		8CBF9E0317DDD2230044D949 /* Settings.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 8CBF9E0217DDD2230044D949 /* Settings.bundle */; };
		8CBF9E0517DE022F0044D949 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8CBF9E0417DE022F0044D949 /* AudioToolbox.framework */; };
		8CBF9E0817DE79EB0044D949 /* AboutViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CBF9E0717DE79EB0044D949 /* AboutViewController.m */; };
		8CBF9E0A17E103B50044D949 /* licenses.html in Resources */ = {isa = PBXBuildFile; fileRef = 8CBF9E0917E103B40044D949 /* licenses.html */; };
		8CD6EC6817CBBAF40071827A /* WalkThroughPageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CD6EC6617CBBAF40071827A /* WalkThroughPageViewController.m */; };
		8CD6EC6917CBBAF40071827A /* WalkThroughPageViewControllerWithHint.xib in Resources */ = {isa = PBXBuildFile; fileRef = 8CD6EC6717CBBAF40071827A /* WalkThroughPageViewControllerWithHint.xib */; };
		8CD6EC7017CC3FA00071827A /* WalkThroughContainerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CD6EC6F17CC3FA00071827A /* WalkThroughContainerViewController.m */; };
		8CD6EC7717CE31560071827A /* forwardButton.png in Resources */ = {isa = PBXBuildFile; fileRef = 8CD6EC7517CE31550071827A /* forwardButton.png */; };
		8CD6EC7817CE31560071827A /* forwardButton@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8CD6EC7617CE31550071827A /* forwardButton@2x.png */; };
		8CD6EC7B17CE358B0071827A /* buttonBackground.png in Resources */ = {isa = PBXBuildFile; fileRef = 8CD6EC7917CE358B0071827A /* buttonBackground.png */; };
		8CD6EC7C17CE358B0071827A /* buttonBackground@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8CD6EC7A17CE358B0071827A /* buttonBackground@2x.png */; };
		8CD6EC7E17CF2CE70071827A /* WTconnection.png in Resources */ = {isa = PBXBuildFile; fileRef = 8CD6EC7D17CF2CE70071827A /* WTconnection.png */; };
		8CD6EC8017CF35A70071827A /* WTConnectionHotspot.png in Resources */ = {isa = PBXBuildFile; fileRef = 8CD6EC7F17CF35A70071827A /* WTConnectionHotspot.png */; };
		8CD6EC8217CF40200071827A /* WTconnecting.png in Resources */ = {isa = PBXBuildFile; fileRef = 8CD6EC8117CF40200071827A /* WTconnecting.png */; };
		8CD6EC8417CF46930071827A /* WTPairing.png in Resources */ = {isa = PBXBuildFile; fileRef = 8CD6EC8317CF46930071827A /* WTPairing.png */; };
		8CD6EC8817CF4ABA0071827A /* WalkThroughPageViewMainImageController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 8CD6EC8717CF4ABA0071827A /* WalkThroughPageViewMainImageController.xib */; };
		BE9EBD071765BF0800283FD2 /* CoreImage.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BE9EBD061765BF0800283FD2 /* CoreImage.framework */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
		571102681794127E007D343B /* libTestFlight.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libTestFlight.a; sourceTree = "<group>"; };
		571102691794127E007D343B /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README.md; sourceTree = "<group>"; };
		5711026A1794127E007D343B /* release_notes.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = release_notes.md; sourceTree = "<group>"; };
		5711026B1794127E007D343B /* TestFlight.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestFlight.h; sourceTree = "<group>"; };
		5711026F1794128E007D343B /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; };
		571BFAD0178AADA200EF1BDB /* more_icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = more_icon.png; sourceTree = "<group>"; };
		571D4805178B2F080063D93B /* timer_clear_btn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = timer_clear_btn.png; sourceTree = "<group>"; };
		571D4806178B2F080063D93B /* timer_start_btn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = timer_start_btn.png; sourceTree = "<group>"; };
		5753DD8E1781EA0300DB71BB /* ServerListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ServerListViewController.h; path = iosremote/Classes/ServerListViewController.h; sourceTree = "<group>"; };
		5753DD8F1781EA0300DB71BB /* ServerListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ServerListViewController.m; path = iosremote/Classes/ServerListViewController.m; sourceTree = "<group>"; };
		5753DD9717834D7100DB71BB /* NewServerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NewServerViewController.h; path = iosremote/Classes/NewServerViewController.h; sourceTree = "<group>"; };
		5753DD9817834D7100DB71BB /* NewServerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NewServerViewController.m; path = iosremote/Classes/NewServerViewController.m; sourceTree = "<group>"; };
		57701740178B0A6800B99793 /* SlideShowSwipeInList~iphone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "SlideShowSwipeInList~iphone.h"; path = "iosremote/Classes/SlideShowSwipeInList~iphone.h"; sourceTree = "<group>"; };
		57701741178B0A6900B99793 /* SlideShowSwipeInList~iphone.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "SlideShowSwipeInList~iphone.m"; path = "iosremote/Classes/SlideShowSwipeInList~iphone.m"; sourceTree = "<group>"; };
		57867A551787385800EBBE52 /* SlideShowViewController~iphone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "SlideShowViewController~iphone.h"; path = "iosremote/Classes/SlideShowViewController~iphone.h"; sourceTree = "<group>"; };
		57867A561787385800EBBE52 /* SlideShowViewController~iphone.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "SlideShowViewController~iphone.m"; path = "iosremote/Classes/SlideShowViewController~iphone.m"; sourceTree = "<group>"; };
		57867A581787510700EBBE52 /* pushed_next_button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = pushed_next_button.png; sourceTree = "<group>"; };
		57867A591787510700EBBE52 /* released_next_button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = released_next_button.png; sourceTree = "<group>"; };
		57867A5C178752CD00EBBE52 /* pushed_previous_button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = pushed_previous_button.png; sourceTree = "<group>"; };
		57867A5D178752CD00EBBE52 /* released_previous_button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = released_previous_button.png; sourceTree = "<group>"; };
		57AEEDAE17895B67007F4F97 /* pointer.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = pointer.png; sourceTree = "<group>"; };
		57AEEDB017895BF5007F4F97 /* pointer_pushed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = pointer_pushed.png; sourceTree = "<group>"; };
		57AEEDB417899BB4007F4F97 /* slide_finished.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = slide_finished.png; sourceTree = "<group>"; };
		57B152971764703500EECC67 /* NSString+Base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSString+Base64.h"; path = "iosremote/Categories/NSString+Base64.h"; sourceTree = "<group>"; };
		57B152981764703500EECC67 /* NSString+Base64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSString+Base64.m"; path = "iosremote/Categories/NSString+Base64.m"; sourceTree = "<group>"; };
		57B1529D176486C300EECC67 /* CommandTransmitter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommandTransmitter.h; path = iosremote/Communication/CommandTransmitter.h; sourceTree = "<group>"; };
		57B1529E176486C300EECC67 /* CommandTransmitter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommandTransmitter.m; path = iosremote/Communication/CommandTransmitter.m; sourceTree = "<group>"; };
		57B7625B17621E42007703F6 /* SlideShow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SlideShow.h; path = iosremote/Communication/SlideShow.h; sourceTree = "<group>"; };
		57B7625C17621E42007703F6 /* SlideShow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SlideShow.m; path = iosremote/Communication/SlideShow.m; sourceTree = "<group>"; };
		57C6E3EF175E06E800E8BC5F /* Impress.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Impress.app; sourceTree = BUILT_PRODUCTS_DIR; };
		57C6E3F2175E06E800E8BC5F /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
		57C6E3F4175E06E800E8BC5F /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
		57C6E3F6175E06E800E8BC5F /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
		57C6E3FA175E06E800E8BC5F /* iosremote-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "iosremote-Info.plist"; sourceTree = "<group>"; };
		57C6E3FC175E06E800E8BC5F /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		57C6E3FE175E06E800E8BC5F /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
		57C6E400175E06E800E8BC5F /* iosremote-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "iosremote-Prefix.pch"; sourceTree = "<group>"; };
		57C6E401175E06E800E8BC5F /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = iosremote/Classes/AppDelegate.h; sourceTree = "<group>"; };
		57C6E402175E06E800E8BC5F /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = iosremote/Classes/AppDelegate.m; sourceTree = "<group>"; };
		57C6E404175E06E800E8BC5F /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = "<group>"; };
		57C6E406175E06E800E8BC5F /* Default@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default@2x.png"; sourceTree = "<group>"; };
		57C6E408175E06E800E8BC5F /* Default-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-568h@2x.png"; sourceTree = "<group>"; };
		57C6E426175E076900E8BC5F /* Client.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Client.h; path = iosremote/Communication/Client.h; sourceTree = "<group>"; };
		57C6E427175E076900E8BC5F /* Client.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Client.m; path = iosremote/Communication/Client.m; sourceTree = "<group>"; };
		57C6E428175E076900E8BC5F /* CommunicationManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; name = CommunicationManager.h; path = iosremote/Communication/CommunicationManager.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
		57C6E429175E076900E8BC5F /* CommunicationManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; name = CommunicationManager.m; path = iosremote/Communication/CommunicationManager.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
		57C6E42A175E076900E8BC5F /* CommandInterpreter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommandInterpreter.h; path = iosremote/Communication/CommandInterpreter.h; sourceTree = "<group>"; };
		57C6E42B175E076900E8BC5F /* CommandInterpreter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommandInterpreter.m; path = iosremote/Communication/CommandInterpreter.m; sourceTree = "<group>"; };
		57C6E42C175E076900E8BC5F /* Server.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Server.h; path = iosremote/Communication/Server.h; sourceTree = "<group>"; };
		57C6E42D175E076900E8BC5F /* Server.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Server.m; path = iosremote/Communication/Server.m; sourceTree = "<group>"; };
		57CC48C4178B42A400075DE4 /* timer_pause_btn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = timer_pause_btn.png; sourceTree = "<group>"; };
		57CFED9717838FDC00E82E05 /* EditableTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EditableTableViewCell.h; path = iosremote/Classes/EditableTableViewCell.h; sourceTree = "<group>"; };
		57CFED9817838FDC00E82E05 /* EditableTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EditableTableViewCell.m; path = iosremote/Classes/EditableTableViewCell.m; sourceTree = "<group>"; };
		57DC7006178D84490050FC58 /* CoreMotion.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMotion.framework; path = System/Library/Frameworks/CoreMotion.framework; sourceTree = SDKROOT; };
		57DC7010178E16A40050FC58 /* UIView+FadeInFadeOut.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIView+FadeInFadeOut.h"; path = "iosremote/Categories/UIView+FadeInFadeOut.h"; sourceTree = "<group>"; };
		57DC7011178E16A40050FC58 /* UIView+FadeInFadeOut.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIView+FadeInFadeOut.m"; path = "iosremote/Categories/UIView+FadeInFadeOut.m"; sourceTree = "<group>"; };
		57DF0A84178FFFAB008B2D3D /* en */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = en; path = en.lproj/iPhone_autoSize.storyboard; sourceTree = "<group>"; };
		57FE71E11785C61300B50125 /* PinValidationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PinValidationViewController.h; path = iosremote/Classes/PinValidationViewController.h; sourceTree = "<group>"; };
		57FE71E21785C61400B50125 /* PinValidationViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PinValidationViewController.m; path = iosremote/Classes/PinValidationViewController.m; sourceTree = "<group>"; };
		57FE71E717861A9000B50125 /* SlideShowPreviewViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SlideShowPreviewViewController.h; path = iosremote/Classes/SlideShowPreviewViewController.h; sourceTree = "<group>"; };
		57FE71E817861A9000B50125 /* SlideShowPreviewViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SlideShowPreviewViewController.m; path = iosremote/Classes/SlideShowPreviewViewController.m; sourceTree = "<group>"; };
		8C0323A917A943720037432E /* UIImageView+setImageAnimated.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIImageView+setImageAnimated.h"; path = "iosremote/Categories/UIImageView+setImageAnimated.h"; sourceTree = "<group>"; };
		8C0323AA17A943720037432E /* UIImageView+setImageAnimated.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+setImageAnimated.m"; path = "iosremote/Categories/UIImageView+setImageAnimated.m"; sourceTree = "<group>"; };
		8C06B31C17B7EC83002F5CF8 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = iosremote/en.lproj/Localizable.strings; sourceTree = "<group>"; };
		8C06B31F17B7ED1E002F5CF8 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = en; path = en.lproj/iPad_autosize.storyboard; sourceTree = "<group>"; };
		8C06B32117B7ED2A002F5CF8 /* fr */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = fr; path = fr.lproj/iPhone_autoSize.storyboard; sourceTree = "<group>"; };
		8C06B32217B7ED2A002F5CF8 /* fr */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = fr; path = fr.lproj/iPad_autosize.storyboard; sourceTree = "<group>"; };
		8C06B32317B7ED2B002F5CF8 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = "<group>"; };
		8C06B32417B7ED2B002F5CF8 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		8C06B32517B7ED33002F5CF8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = "zh-Hans"; path = "zh-Hans.lproj/iPhone_autoSize.storyboard"; sourceTree = "<group>"; };
		8C06B32617B7ED33002F5CF8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = "zh-Hans"; path = "zh-Hans.lproj/iPad_autosize.storyboard"; sourceTree = "<group>"; };
		8C06B32717B7ED33002F5CF8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
		8C06B32817B7ED33002F5CF8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
		8C0C879217F4C46E003CE6B2 /* WalkThroughPageViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = WalkThroughPageViewController.xib; path = iosremote/Views/WalkThroughPageViewController.xib; sourceTree = "<group>"; };
		8C0DC83617A4177C0099E5AE /* nextButton_pressed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = nextButton_pressed.png; sourceTree = "<group>"; };
		8C0DC83717A4177C0099E5AE /* nextButton_pressed@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "nextButton_pressed@2x.png"; sourceTree = "<group>"; };
		8C0DC83817A4177C0099E5AE /* previousButton_pressed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = previousButton_pressed.png; sourceTree = "<group>"; };
		8C0DC83917A4177C0099E5AE /* previousButton_pressed@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "previousButton_pressed@2x.png"; sourceTree = "<group>"; };
		8C0DC83E17A4185A0099E5AE /* nextButton_normal.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = nextButton_normal.png; sourceTree = "<group>"; };
		8C0DC83F17A4185A0099E5AE /* nextButton_normal@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "nextButton_normal@2x.png"; sourceTree = "<group>"; };
		8C0DC84017A4185A0099E5AE /* previousButton_normal.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = previousButton_normal.png; sourceTree = "<group>"; };
		8C0DC84117A4185A0099E5AE /* previousButton_normal@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "previousButton_normal@2x.png"; sourceTree = "<group>"; };
		8C0DC84F17A512250099E5AE /* AppDelegate~ipad.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "AppDelegate~ipad.h"; path = "iosremote/Classes/AppDelegate~ipad.h"; sourceTree = "<group>"; };
		8C0DC85017A512250099E5AE /* AppDelegate~ipad.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "AppDelegate~ipad.m"; path = "iosremote/Classes/AppDelegate~ipad.m"; sourceTree = "<group>"; };
		8C10780218947B9D0062E0E7 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = Impress/Images.xcassets; sourceTree = "<group>"; };
		8C19F41C17B00899005BDB61 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
		8C19F41E17B02A8A005BDB61 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
		8C19F42017B02AA9005BDB61 /* PopoverView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = PopoverView.h; path = PopoverView/PopoverView.h; sourceTree = "<group>"; };
		8C19F42117B02AA9005BDB61 /* PopoverView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = PopoverView.m; path = PopoverView/PopoverView.m; sourceTree = "<group>"; };
		8C19F42217B02C2E005BDB61 /* PopoverView_Configuration.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = PopoverView_Configuration.h; path = PopoverView/PopoverView_Configuration.h; sourceTree = "<group>"; };
		8C19F42317B02C2E005BDB61 /* PopoverViewCompatibility.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = PopoverViewCompatibility.h; path = PopoverView/PopoverViewCompatibility.h; sourceTree = "<group>"; };
		8C19F42517B04E7C005BDB61 /* navBarBackground@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "navBarBackground@2x.png"; sourceTree = "<group>"; };
		8C19F42617B04E7C005BDB61 /* navBarBackground.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = navBarBackground.png; sourceTree = "<group>"; };
		8C19F42D17B05089005BDB61 /* LibONavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LibONavigationController.h; path = iosremote/Classes/LibONavigationController.h; sourceTree = "<group>"; };
		8C19F42E17B05089005BDB61 /* LibONavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = LibONavigationController.m; path = iosremote/Classes/LibONavigationController.m; sourceTree = "<group>"; };
		8C19F43217B056B3005BDB61 /* navBarButtonNormal@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "navBarButtonNormal@2x.png"; sourceTree = "<group>"; };
		8C19F43417B10D48005BDB61 /* UIViewController+LibOStyling.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIViewController+LibOStyling.h"; path = "iosremote/Categories/UIViewController+LibOStyling.h"; sourceTree = "<group>"; };
		8C19F43517B10D49005BDB61 /* UIViewController+LibOStyling.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIViewController+LibOStyling.m"; path = "iosremote/Categories/UIViewController+LibOStyling.m"; sourceTree = "<group>"; };
		8C19F43717B145AD005BDB61 /* backButton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = backButton.png; sourceTree = "<group>"; };
		8C19F43817B145AD005BDB61 /* backButton@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "backButton@2x.png"; sourceTree = "<group>"; };
		8C19F43C17B1D935005BDB61 /* add.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = add.png; sourceTree = "<group>"; };
		8C19F44817B1FEFD005BDB61 /* gear_transparent_bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = gear_transparent_bg.png; sourceTree = "<group>"; };
		8C19F44917B1FEFE005BDB61 /* gear_transparent_bg@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "gear_transparent_bg@2x.png"; sourceTree = "<group>"; };
		8C19F44C17B20426005BDB61 /* add@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "add@2x.png"; sourceTree = "<group>"; };
		8C23B46717DA158C00FB4DE6 /* UIView+Shadowing.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIView+Shadowing.h"; path = "iosremote/Categories/UIView+Shadowing.h"; sourceTree = "<group>"; };
		8C23B46817DA158C00FB4DE6 /* UIView+Shadowing.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIView+Shadowing.m"; path = "iosremote/Categories/UIView+Shadowing.m"; sourceTree = "<group>"; };
		8C23B46A17DB3B8600FB4DE6 /* timer_settime_btn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = timer_settime_btn.png; sourceTree = "<group>"; };
		8C23B46B17DB3B8600FB4DE6 /* timer_settime_btn@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "timer_settime_btn@2x.png"; sourceTree = "<group>"; };
		8C23B46E17DB419300FB4DE6 /* Timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Timer.h; path = iosremote/Classes/Timer.h; sourceTree = "<group>"; };
		8C23B46F17DB419300FB4DE6 /* Timer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Timer.m; path = iosremote/Classes/Timer.m; sourceTree = "<group>"; };
		8C26E5C517A5539D007DA4B7 /* UserDefaults.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = UserDefaults.plist; path = ../UserDefaults.plist; sourceTree = "<group>"; };
		8C26E5C717A5731D007DA4B7 /* AutoDismissKeyboardNavigationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AutoDismissKeyboardNavigationViewController.h; path = iosremote/Categories/AutoDismissKeyboardNavigationViewController.h; sourceTree = "<group>"; };
		8C26E5C817A5731D007DA4B7 /* AutoDismissKeyboardNavigationViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AutoDismissKeyboardNavigationViewController.m; path = iosremote/Categories/AutoDismissKeyboardNavigationViewController.m; sourceTree = "<group>"; };
		8C26E5CA17A57C20007DA4B7 /* ControlVariables.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ControlVariables.h; path = iosremote/Classes/ControlVariables.h; sourceTree = "<group>"; };
		8C26E5CE17A58703007DA4B7 /* HorizontalSlideCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HorizontalSlideCell.h; path = iosremote/Classes/HorizontalSlideCell.h; sourceTree = "<group>"; };
		8C26E5CF17A58703007DA4B7 /* HorizontalSlideCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HorizontalSlideCell.m; path = iosremote/Classes/HorizontalSlideCell.m; sourceTree = "<group>"; };
		8C26E5D517A68154007DA4B7 /* StopWatch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = StopWatch.h; path = iosremote/Classes/StopWatch.h; sourceTree = "<group>"; };
		8C26E5D617A68154007DA4B7 /* StopWatch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = StopWatch.m; path = iosremote/Classes/StopWatch.m; sourceTree = "<group>"; };
		8C2937AF17E8348D00C3B887 /* libreoffice_logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = libreoffice_logo.png; sourceTree = "<group>"; };
		8C2937B117E8374B00C3B887 /* SWRevealViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SWRevealViewController.h; path = SWRevealViewController/SWRevealViewController.h; sourceTree = SOURCE_ROOT; };
		8C2937B217E8374B00C3B887 /* SWRevealViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SWRevealViewController.m; path = SWRevealViewController/SWRevealViewController.m; sourceTree = SOURCE_ROOT; };
		8C2937BA17E837BA00C3B887 /* Default-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Default-568h@2x.png"; path = "iosremote/Default-568h@2x.png"; sourceTree = SOURCE_ROOT; };
		8C2937BB17E837BA00C3B887 /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Default.png; path = iosremote/Default.png; sourceTree = SOURCE_ROOT; };
		8C2937BC17E837BA00C3B887 /* Default@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Default@2x.png"; path = "iosremote/Default@2x.png"; sourceTree = SOURCE_ROOT; };
		8C2937C317E9C40C00C3B887 /* ServerListViewController~ipad.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ServerListViewController~ipad.h"; sourceTree = "<group>"; };
		8C2937C417E9C40C00C3B887 /* ServerListViewController~ipad.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "ServerListViewController~ipad.m"; sourceTree = "<group>"; };
		8C3A648117DCBE9E004A77D9 /* timer_clear_btn_dark.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = timer_clear_btn_dark.png; sourceTree = "<group>"; };
		8C3A648317DCBE9E004A77D9 /* timer_pause_btn_dark.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = timer_pause_btn_dark.png; sourceTree = "<group>"; };
		8C3A648417DCBE9E004A77D9 /* timer_pause_btn_dark@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "timer_pause_btn_dark@2x.png"; sourceTree = "<group>"; };
		8C3A648517DCBE9E004A77D9 /* timer_settime_btn_dark.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = timer_settime_btn_dark.png; sourceTree = "<group>"; };
		8C3A648617DCBE9E004A77D9 /* timer_settime_btn_dark@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "timer_settime_btn_dark@2x.png"; sourceTree = "<group>"; };
		8C3A648717DCBE9E004A77D9 /* timer_start_btn_dark.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = timer_start_btn_dark.png; sourceTree = "<group>"; };
		8C408A8018001DF00095D80F /* UIImage+imageWithColor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIImage+imageWithColor.h"; path = "iosremote/Categories/UIImage+imageWithColor.h"; sourceTree = "<group>"; };
		8C408A8118001DF00095D80F /* UIImage+imageWithColor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIImage+imageWithColor.m"; path = "iosremote/Categories/UIImage+imageWithColor.m"; sourceTree = "<group>"; };
		8C8C7FAE17EDA9330022A6BD /* UINavigationController+Theme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UINavigationController+Theme.h"; path = "iosremote/Categories/UINavigationController+Theme.h"; sourceTree = "<group>"; };
		8C8C7FAF17EDA9330022A6BD /* UINavigationController+Theme.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UINavigationController+Theme.m"; path = "iosremote/Categories/UINavigationController+Theme.m"; sourceTree = "<group>"; };
		8C8C7FB117EDAFD20022A6BD /* more_ipad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = more_ipad.png; sourceTree = "<group>"; };
		8C8C7FB217EDAFD20022A6BD /* more_ipad@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "more_ipad@2x.png"; sourceTree = "<group>"; };
		8C94E69517CF7BF000B4848D /* WTPairingScreenshot.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = WTPairingScreenshot.png; sourceTree = "<group>"; };
		8CAD658317A2E84A00CFB661 /* MainSplitViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MainSplitViewController.h; path = iosremote/Classes/MainSplitViewController.h; sourceTree = "<group>"; };
		8CAD658417A2E84A00CFB661 /* MainSplitViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MainSplitViewController.m; path = iosremote/Classes/MainSplitViewController.m; sourceTree = "<group>"; };
		8CAD658617A2EDB200CFB661 /* SlideShowPreviewViewController~ipad.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "SlideShowPreviewViewController~ipad.h"; path = "iosremote/Classes/SlideShowPreviewViewController~ipad.h"; sourceTree = "<group>"; };
		8CAD658717A2EDB200CFB661 /* SlideShowPreviewViewController~ipad.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "SlideShowPreviewViewController~ipad.m"; path = "iosremote/Classes/SlideShowPreviewViewController~ipad.m"; sourceTree = "<group>"; };
		8CAD658A17A2F02000CFB661 /* SlideShowPreviewViewController~iphone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "SlideShowPreviewViewController~iphone.h"; path = "iosremote/Classes/SlideShowPreviewViewController~iphone.h"; sourceTree = "<group>"; };
		8CAD658B17A2F02000CFB661 /* SlideShowPreviewViewController~iphone.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "SlideShowPreviewViewController~iphone.m"; path = "iosremote/Classes/SlideShowPreviewViewController~iphone.m"; sourceTree = "<group>"; };
		8CAD659317A3C2D400CFB661 /* BasePresentationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BasePresentationViewController.h; path = iosremote/Classes/BasePresentationViewController.h; sourceTree = "<group>"; };
		8CAD659417A3C2D400CFB661 /* BasePresentationViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = BasePresentationViewController.m; path = iosremote/Classes/BasePresentationViewController.m; sourceTree = "<group>"; };
		8CAD659E17A3F76300CFB661 /* SlideShowSwipeInList~ipad.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "SlideShowSwipeInList~ipad.h"; path = "iosremote/Classes/SlideShowSwipeInList~ipad.h"; sourceTree = "<group>"; };
		8CAD659F17A3F76300CFB661 /* SlideShowSwipeInList~ipad.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "SlideShowSwipeInList~ipad.m"; path = "iosremote/Classes/SlideShowSwipeInList~ipad.m"; sourceTree = "<group>"; };
		8CAF3DDD17D0DFFD00F931E5 /* WTcontrol~ipad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "WTcontrol~ipad.png"; sourceTree = "<group>"; };
		8CAF3DDE17D0DFFD00F931E5 /* WTcontrol~iphone.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "WTcontrol~iphone.png"; sourceTree = "<group>"; };
		8CBF9DC317DDBFA70044D949 /* IASKAppSettingsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKAppSettingsViewController.h; sourceTree = "<group>"; };
		8CBF9DC417DDBFA70044D949 /* IASKAppSettingsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKAppSettingsViewController.m; sourceTree = "<group>"; };
		8CBF9DC517DDBFA70044D949 /* IASKAppSettingsWebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKAppSettingsWebViewController.h; sourceTree = "<group>"; };
		8CBF9DC617DDBFA70044D949 /* IASKAppSettingsWebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKAppSettingsWebViewController.m; sourceTree = "<group>"; };
		8CBF9DC717DDBFA70044D949 /* IASKSpecifierValuesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSpecifierValuesViewController.h; sourceTree = "<group>"; };
		8CBF9DC817DDBFA70044D949 /* IASKSpecifierValuesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSpecifierValuesViewController.m; sourceTree = "<group>"; };
		8CBF9DC917DDBFA70044D949 /* IASKViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKViewController.h; sourceTree = "<group>"; };
		8CBF9DCB17DDBFA70044D949 /* IASKSettingsReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSettingsReader.h; sourceTree = "<group>"; };
		8CBF9DCC17DDBFA70044D949 /* IASKSettingsReader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSettingsReader.m; sourceTree = "<group>"; };
		8CBF9DCD17DDBFA70044D949 /* IASKSettingsStore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSettingsStore.h; sourceTree = "<group>"; };
		8CBF9DCE17DDBFA70044D949 /* IASKSettingsStore.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSettingsStore.m; sourceTree = "<group>"; };
		8CBF9DCF17DDBFA70044D949 /* IASKSettingsStoreFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSettingsStoreFile.h; sourceTree = "<group>"; };
		8CBF9DD017DDBFA70044D949 /* IASKSettingsStoreFile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSettingsStoreFile.m; sourceTree = "<group>"; };
		8CBF9DD117DDBFA70044D949 /* IASKSettingsStoreUserDefaults.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSettingsStoreUserDefaults.h; sourceTree = "<group>"; };
		8CBF9DD217DDBFA70044D949 /* IASKSettingsStoreUserDefaults.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSettingsStoreUserDefaults.m; sourceTree = "<group>"; };
		8CBF9DD317DDBFA70044D949 /* IASKSpecifier.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSpecifier.h; sourceTree = "<group>"; };
		8CBF9DD417DDBFA70044D949 /* IASKSpecifier.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSpecifier.m; sourceTree = "<group>"; };
		8CBF9DD617DDBFA70044D949 /* IASKPSSliderSpecifierViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKPSSliderSpecifierViewCell.h; sourceTree = "<group>"; };
		8CBF9DD717DDBFA70044D949 /* IASKPSSliderSpecifierViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKPSSliderSpecifierViewCell.m; sourceTree = "<group>"; };
		8CBF9DD817DDBFA70044D949 /* IASKPSTextFieldSpecifierViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKPSTextFieldSpecifierViewCell.h; sourceTree = "<group>"; };
		8CBF9DD917DDBFA70044D949 /* IASKPSTextFieldSpecifierViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKPSTextFieldSpecifierViewCell.m; sourceTree = "<group>"; };
		8CBF9DDA17DDBFA70044D949 /* IASKPSTitleValueSpecifierViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKPSTitleValueSpecifierViewCell.h; sourceTree = "<group>"; };
		8CBF9DDB17DDBFA70044D949 /* IASKPSTitleValueSpecifierViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKPSTitleValueSpecifierViewCell.m; sourceTree = "<group>"; };
		8CBF9DDC17DDBFA70044D949 /* IASKPSToggleSwitchSpecifierViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKPSToggleSwitchSpecifierViewCell.h; sourceTree = "<group>"; };
		8CBF9DDD17DDBFA70044D949 /* IASKPSToggleSwitchSpecifierViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKPSToggleSwitchSpecifierViewCell.m; sourceTree = "<group>"; };
		8CBF9DDE17DDBFA70044D949 /* IASKSlider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSlider.h; sourceTree = "<group>"; };
		8CBF9DDF17DDBFA70044D949 /* IASKSlider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSlider.m; sourceTree = "<group>"; };
		8CBF9DE017DDBFA70044D949 /* IASKSwitch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSwitch.h; sourceTree = "<group>"; };
		8CBF9DE117DDBFA70044D949 /* IASKSwitch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSwitch.m; sourceTree = "<group>"; };
		8CBF9DE217DDBFA70044D949 /* IASKTextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKTextField.h; sourceTree = "<group>"; };
		8CBF9DE317DDBFA70044D949 /* IASKTextField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKTextField.m; sourceTree = "<group>"; };
		8CBF9DE517DDBFA70044D949 /* IASKAppSettingsView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = IASKAppSettingsView.xib; sourceTree = "<group>"; };
		8CBF9DE617DDBFA70044D949 /* IASKAppSettingsWebView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = IASKAppSettingsWebView.xib; sourceTree = "<group>"; };
		8CBF9DE717DDBFA70044D949 /* IASKPSSliderSpecifierViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = IASKPSSliderSpecifierViewCell.xib; sourceTree = "<group>"; };
		8CBF9DE817DDBFA70044D949 /* IASKPSTextFieldSpecifierViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = IASKPSTextFieldSpecifierViewCell.xib; sourceTree = "<group>"; };
		8CBF9DE917DDBFA70044D949 /* IASKPSToggleSwitchSpecifierViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = IASKPSToggleSwitchSpecifierViewCell.xib; sourceTree = "<group>"; };
		8CBF9DEA17DDBFA70044D949 /* IASKSpecifierValuesView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = IASKSpecifierValuesView.xib; sourceTree = "<group>"; };
		8CBF9E0017DDC1A80044D949 /* MessageUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MessageUI.framework; path = System/Library/Frameworks/MessageUI.framework; sourceTree = SDKROOT; };
		8CBF9E0217DDD2230044D949 /* Settings.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = Settings.bundle; path = ../Settings.bundle; sourceTree = "<group>"; };
		8CBF9E0417DE022F0044D949 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
		8CBF9E0617DE79EB0044D949 /* AboutViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AboutViewController.h; path = iosremote/Classes/AboutViewController.h; sourceTree = "<group>"; };
		8CBF9E0717DE79EB0044D949 /* AboutViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AboutViewController.m; path = iosremote/Classes/AboutViewController.m; sourceTree = "<group>"; };
		8CBF9E0917E103B40044D949 /* licenses.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = licenses.html; sourceTree = "<group>"; };
		8CD6EC6517CBBAF40071827A /* WalkThroughPageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WalkThroughPageViewController.h; path = iosremote/Classes/WalkThroughPageViewController.h; sourceTree = "<group>"; };
		8CD6EC6617CBBAF40071827A /* WalkThroughPageViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WalkThroughPageViewController.m; path = iosremote/Classes/WalkThroughPageViewController.m; sourceTree = "<group>"; };
		8CD6EC6717CBBAF40071827A /* WalkThroughPageViewControllerWithHint.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = WalkThroughPageViewControllerWithHint.xib; path = iosremote/Views/WalkThroughPageViewControllerWithHint.xib; sourceTree = "<group>"; };
		8CD6EC6E17CC3FA00071827A /* WalkThroughContainerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WalkThroughContainerViewController.h; path = iosremote/Classes/WalkThroughContainerViewController.h; sourceTree = "<group>"; };
		8CD6EC6F17CC3FA00071827A /* WalkThroughContainerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WalkThroughContainerViewController.m; path = iosremote/Classes/WalkThroughContainerViewController.m; sourceTree = "<group>"; };
		8CD6EC7517CE31550071827A /* forwardButton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = forwardButton.png; sourceTree = "<group>"; };
		8CD6EC7617CE31550071827A /* forwardButton@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "forwardButton@2x.png"; sourceTree = "<group>"; };
		8CD6EC7917CE358B0071827A /* buttonBackground.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = buttonBackground.png; sourceTree = "<group>"; };
		8CD6EC7A17CE358B0071827A /* buttonBackground@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "buttonBackground@2x.png"; sourceTree = "<group>"; };
		8CD6EC7D17CF2CE70071827A /* WTconnection.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = WTconnection.png; sourceTree = "<group>"; };
		8CD6EC7F17CF35A70071827A /* WTConnectionHotspot.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = WTConnectionHotspot.png; sourceTree = "<group>"; };
		8CD6EC8117CF40200071827A /* WTconnecting.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = WTconnecting.png; sourceTree = "<group>"; };
		8CD6EC8317CF46930071827A /* WTPairing.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = WTPairing.png; sourceTree = "<group>"; };
		8CD6EC8717CF4ABA0071827A /* WalkThroughPageViewMainImageController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = WalkThroughPageViewMainImageController.xib; path = iosremote/Views/WalkThroughPageViewMainImageController.xib; sourceTree = "<group>"; };
		AC16521D1894A34700F19AF0 /* de */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = de; path = de.lproj/iPhone_autoSize.storyboard; sourceTree = "<group>"; };
		AC16521E1894A34700F19AF0 /* de */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = de; path = de.lproj/iPad_autosize.storyboard; sourceTree = "<group>"; };
		AC16521F1894A34800F19AF0 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
		AC1652201894A34800F19AF0 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		AC1652261894A4CC00F19AF0 /* ar */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = ar; path = ar.lproj/iPhone_autoSize.storyboard; sourceTree = "<group>"; };
		AC1652271894A4CC00F19AF0 /* ar */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = ar; path = ar.lproj/iPad_autosize.storyboard; sourceTree = "<group>"; };
		AC1652281894A4CC00F19AF0 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/Localizable.strings; sourceTree = "<group>"; };
		AC1652291894A4CC00F19AF0 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		AC16522A1894A52200F19AF0 /* cs */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = cs; path = cs.lproj/iPhone_autoSize.storyboard; sourceTree = "<group>"; };
		AC16522B1894A52200F19AF0 /* cs */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = cs; path = cs.lproj/iPad_autosize.storyboard; sourceTree = "<group>"; };
		AC16522C1894A52200F19AF0 /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/Localizable.strings; sourceTree = "<group>"; };
		AC16522D1894A52300F19AF0 /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		AC16522E1894A52A00F19AF0 /* ca */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = ca; path = ca.lproj/iPhone_autoSize.storyboard; sourceTree = "<group>"; };
		AC16522F1894A52A00F19AF0 /* ca */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = ca; path = ca.lproj/iPad_autosize.storyboard; sourceTree = "<group>"; };
		AC1652301894A52A00F19AF0 /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/Localizable.strings; sourceTree = "<group>"; };
		AC1652311894A52A00F19AF0 /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		AC1652321894A53600F19AF0 /* da */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = da; path = da.lproj/iPhone_autoSize.storyboard; sourceTree = "<group>"; };
		AC1652331894A53700F19AF0 /* da */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = da; path = da.lproj/iPad_autosize.storyboard; sourceTree = "<group>"; };
		AC1652341894A53700F19AF0 /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/Localizable.strings; sourceTree = "<group>"; };
		AC1652351894A53700F19AF0 /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		AC1652361894A54500F19AF0 /* el */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = el; path = el.lproj/iPhone_autoSize.storyboard; sourceTree = "<group>"; };
		AC1652371894A54500F19AF0 /* el */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = el; path = el.lproj/iPad_autosize.storyboard; sourceTree = "<group>"; };
		AC1652381894A54500F19AF0 /* el */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = el; path = el.lproj/Localizable.strings; sourceTree = "<group>"; };
		AC1652391894A54500F19AF0 /* el */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = el; path = el.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		AC16523A1894A55A00F19AF0 /* tr */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = tr; path = tr.lproj/iPhone_autoSize.storyboard; sourceTree = "<group>"; };
		AC16523B1894A55A00F19AF0 /* tr */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = tr; path = tr.lproj/iPad_autosize.storyboard; sourceTree = "<group>"; };
		AC16523C1894A55B00F19AF0 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = "<group>"; };
		AC16523D1894A55B00F19AF0 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		AC16523E1894A57600F19AF0 /* es */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = es; path = es.lproj/iPhone_autoSize.storyboard; sourceTree = "<group>"; };
		AC16523F1894A57700F19AF0 /* es */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = es; path = es.lproj/iPad_autosize.storyboard; sourceTree = "<group>"; };
		AC1652401894A57700F19AF0 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
		AC1652411894A57700F19AF0 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		AC1652421894A58200F19AF0 /* fi */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = fi; path = fi.lproj/iPhone_autoSize.storyboard; sourceTree = "<group>"; };
		AC1652431894A58200F19AF0 /* fi */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = fi; path = fi.lproj/iPad_autosize.storyboard; sourceTree = "<group>"; };
		AC1652441894A58200F19AF0 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/Localizable.strings; sourceTree = "<group>"; };
		AC1652451894A58300F19AF0 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		AC1652461894A65600F19AF0 /* hu */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = hu; path = hu.lproj/iPhone_autoSize.storyboard; sourceTree = "<group>"; };
		AC1652471894A65600F19AF0 /* hu */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = hu; path = hu.lproj/iPad_autosize.storyboard; sourceTree = "<group>"; };
		AC1652481894A65600F19AF0 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Localizable.strings; sourceTree = "<group>"; };
		AC1652491894A65600F19AF0 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		AC16524A1894A66200F19AF0 /* it */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = it; path = it.lproj/iPhone_autoSize.storyboard; sourceTree = "<group>"; };
		AC16524B1894A66200F19AF0 /* it */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = it; path = it.lproj/iPad_autosize.storyboard; sourceTree = "<group>"; };
		AC16524C1894A66300F19AF0 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = "<group>"; };
		AC16524D1894A66300F19AF0 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		AC16524E1894A67100F19AF0 /* nb */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = nb; path = nb.lproj/iPhone_autoSize.storyboard; sourceTree = "<group>"; };
		AC16524F1894A67100F19AF0 /* nb */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = nb; path = nb.lproj/iPad_autosize.storyboard; sourceTree = "<group>"; };
		AC1652501894A67100F19AF0 /* nb */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nb; path = nb.lproj/Localizable.strings; sourceTree = "<group>"; };
		AC1652511894A67200F19AF0 /* nb */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nb; path = nb.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		AC1652521894A67900F19AF0 /* nl */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = nl; path = nl.lproj/iPhone_autoSize.storyboard; sourceTree = "<group>"; };
		AC1652531894A67900F19AF0 /* nl */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = nl; path = nl.lproj/iPad_autosize.storyboard; sourceTree = "<group>"; };
		AC1652541894A67A00F19AF0 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
		AC1652551894A67A00F19AF0 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		AC1652561894A68900F19AF0 /* pl */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = pl; path = pl.lproj/iPhone_autoSize.storyboard; sourceTree = "<group>"; };
		AC1652571894A68A00F19AF0 /* pl */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = pl; path = pl.lproj/iPad_autosize.storyboard; sourceTree = "<group>"; };
		AC1652581894A68A00F19AF0 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = "<group>"; };
		AC1652591894A68A00F19AF0 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		AC16525A1894A6A800F19AF0 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = "pt-BR"; path = "pt-BR.lproj/iPhone_autoSize.storyboard"; sourceTree = "<group>"; };
		AC16525B1894A6A800F19AF0 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = "pt-BR"; path = "pt-BR.lproj/iPad_autosize.storyboard"; sourceTree = "<group>"; };
		AC16525C1894A6A900F19AF0 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = "<group>"; };
		AC16525D1894A6A900F19AF0 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
		AC16525E1894A6B200F19AF0 /* pt */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = pt; path = pt.lproj/iPhone_autoSize.storyboard; sourceTree = "<group>"; };
		AC16525F1894A6B200F19AF0 /* pt */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = pt; path = pt.lproj/iPad_autosize.storyboard; sourceTree = "<group>"; };
		AC1652601894A6B200F19AF0 /* pt */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pt; path = pt.lproj/Localizable.strings; sourceTree = "<group>"; };
		AC1652611894A6B300F19AF0 /* pt */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pt; path = pt.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		AC1652621894A6C900F19AF0 /* ru */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = ru; path = ru.lproj/iPhone_autoSize.storyboard; sourceTree = "<group>"; };
		AC1652631894A6C900F19AF0 /* ru */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = ru; path = ru.lproj/iPad_autosize.storyboard; sourceTree = "<group>"; };
		AC1652641894A6C900F19AF0 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = "<group>"; };
		AC1652651894A6C900F19AF0 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		AC1652661894A6EC00F19AF0 /* sl */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = sl; path = sl.lproj/iPhone_autoSize.storyboard; sourceTree = "<group>"; };
		AC1652671894A6EC00F19AF0 /* sl */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = sl; path = sl.lproj/iPad_autosize.storyboard; sourceTree = "<group>"; };
		AC1652681894A6EC00F19AF0 /* sl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sl; path = sl.lproj/Localizable.strings; sourceTree = "<group>"; };
		AC1652691894A6EC00F19AF0 /* sl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sl; path = sl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		AC16526A1894A6F300F19AF0 /* sv */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = sv; path = sv.lproj/iPhone_autoSize.storyboard; sourceTree = "<group>"; };
		AC16526B1894A6F300F19AF0 /* sv */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = sv; path = sv.lproj/iPad_autosize.storyboard; sourceTree = "<group>"; };
		AC16526C1894A6F300F19AF0 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = "<group>"; };
		AC16526D1894A6F300F19AF0 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		AC16526E1894A70000F19AF0 /* uk */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = uk; path = uk.lproj/iPhone_autoSize.storyboard; sourceTree = "<group>"; };
		AC16526F1894A70000F19AF0 /* uk */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = uk; path = uk.lproj/iPad_autosize.storyboard; sourceTree = "<group>"; };
		AC1652701894A70000F19AF0 /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/Localizable.strings; sourceTree = "<group>"; };
		AC1652711894A70100F19AF0 /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		AC6566491894A89F00745A6D /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = "zh-Hant"; path = "zh-Hant.lproj/iPhone_autoSize.storyboard"; sourceTree = "<group>"; };
		AC65664A1894A8A000745A6D /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = "zh-Hant"; path = "zh-Hant.lproj/iPad_autosize.storyboard"; sourceTree = "<group>"; };
		AC65664B1894A8A000745A6D /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/Localizable.strings"; sourceTree = "<group>"; };
		AC65664C1894A8A000745A6D /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
		BE9EBD061765BF0800283FD2 /* CoreImage.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreImage.framework; path = System/Library/Frameworks/CoreImage.framework; sourceTree = SDKROOT; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		57C6E3EC175E06E800E8BC5F /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				8CBF9E0517DE022F0044D949 /* AudioToolbox.framework in Frameworks */,
				8CBF9E0117DDC1A80044D949 /* MessageUI.framework in Frameworks */,
				8C19F41F17B02A8A005BDB61 /* QuartzCore.framework in Frameworks */,
				8C19F41D17B00899005BDB61 /* SystemConfiguration.framework in Frameworks */,
				571102701794128E007D343B /* libz.dylib in Frameworks */,
				57DC7007178D84490050FC58 /* CoreMotion.framework in Frameworks */,
				BE9EBD071765BF0800283FD2 /* CoreImage.framework in Frameworks */,
				57C6E3F3175E06E800E8BC5F /* UIKit.framework in Frameworks */,
				57C6E3F5175E06E800E8BC5F /* Foundation.framework in Frameworks */,
				57C6E3F7175E06E800E8BC5F /* CoreGraphics.framework in Frameworks */,
				5711026C1794127E007D343B /* libTestFlight.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		571102671794127E007D343B /* TestFlightSDK1.2.6 */ = {
			isa = PBXGroup;
			children = (
				5711026F1794128E007D343B /* libz.dylib */,
				571102681794127E007D343B /* libTestFlight.a */,
				571102691794127E007D343B /* README.md */,
				5711026A1794127E007D343B /* release_notes.md */,
				5711026B1794127E007D343B /* TestFlight.h */,
			);
			path = TestFlightSDK1.2.6;
			sourceTree = "<group>";
		};
		57701736178AC83E00B99793 /* SWRevealViewController */ = {
			isa = PBXGroup;
			children = (
				8C2937B117E8374B00C3B887 /* SWRevealViewController.h */,
				8C2937B217E8374B00C3B887 /* SWRevealViewController.m */,
			);
			name = SWRevealViewController;
			path = iosremote/SWRevealViewController;
			sourceTree = "<group>";
		};
		57AEEDAA1788D7B2007F4F97 /* Ressources */ = {
			isa = PBXGroup;
			children = (
				8CBF9E0917E103B40044D949 /* licenses.html */,
				8C06B31A17B7EC6C002F5CF8 /* localizations */,
				8C06B31917B7EC62002F5CF8 /* assets */,
			);
			name = Ressources;
			sourceTree = "<group>";
		};
		57C6E3E6175E06E800E8BC5F = {
			isa = PBXGroup;
			children = (
				8C10780218947B9D0062E0E7 /* Images.xcassets */,
				8C1A170217A28AB900B4BB3C /* Shared */,
				8C1A170917A28E6500B4BB3C /* iPhone */,
				8C1A170817A28E5E00B4BB3C /* iPad */,
				57AEEDAA1788D7B2007F4F97 /* Ressources */,
				57C6E3F1175E06E800E8BC5F /* Frameworks */,
				57C6E3F0175E06E800E8BC5F /* Products */,
				57C6E3F9175E06E800E8BC5F /* Supporting Files */,
			);
			sourceTree = "<group>";
		};
		57C6E3F0175E06E800E8BC5F /* Products */ = {
			isa = PBXGroup;
			children = (
				57C6E3EF175E06E800E8BC5F /* Impress.app */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		57C6E3F1175E06E800E8BC5F /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				57C6E3F2175E06E800E8BC5F /* UIKit.framework */,
				57C6E3F4175E06E800E8BC5F /* Foundation.framework */,
				57C6E3F6175E06E800E8BC5F /* CoreGraphics.framework */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
		57C6E3F9175E06E800E8BC5F /* Supporting Files */ = {
			isa = PBXGroup;
			children = (
				8CBF9E0217DDD2230044D949 /* Settings.bundle */,
				57C6E3FA175E06E800E8BC5F /* iosremote-Info.plist */,
				8C26E5C517A5539D007DA4B7 /* UserDefaults.plist */,
				57C6E3FB175E06E800E8BC5F /* InfoPlist.strings */,
				57C6E3FE175E06E800E8BC5F /* main.m */,
				57C6E400175E06E800E8BC5F /* iosremote-Prefix.pch */,
				57C6E404175E06E800E8BC5F /* Default.png */,
				57C6E406175E06E800E8BC5F /* Default@2x.png */,
				57C6E408175E06E800E8BC5F /* Default-568h@2x.png */,
			);
			name = "Supporting Files";
			path = iosremote;
			sourceTree = "<group>";
		};
		8C06B31917B7EC62002F5CF8 /* assets */ = {
			isa = PBXGroup;
			children = (
				8C8C7FB117EDAFD20022A6BD /* more_ipad.png */,
				8C8C7FB217EDAFD20022A6BD /* more_ipad@2x.png */,
				8C2937BA17E837BA00C3B887 /* Default-568h@2x.png */,
				8C2937BB17E837BA00C3B887 /* Default.png */,
				8C2937BC17E837BA00C3B887 /* Default@2x.png */,
				8C2937AF17E8348D00C3B887 /* libreoffice_logo.png */,
				8C3A648117DCBE9E004A77D9 /* timer_clear_btn_dark.png */,
				8C3A648317DCBE9E004A77D9 /* timer_pause_btn_dark.png */,
				8C3A648417DCBE9E004A77D9 /* timer_pause_btn_dark@2x.png */,
				8C3A648517DCBE9E004A77D9 /* timer_settime_btn_dark.png */,
				8C3A648617DCBE9E004A77D9 /* timer_settime_btn_dark@2x.png */,
				8C3A648717DCBE9E004A77D9 /* timer_start_btn_dark.png */,
				8C23B46A17DB3B8600FB4DE6 /* timer_settime_btn.png */,
				8C23B46B17DB3B8600FB4DE6 /* timer_settime_btn@2x.png */,
				8CAF3DDD17D0DFFD00F931E5 /* WTcontrol~ipad.png */,
				8CAF3DDE17D0DFFD00F931E5 /* WTcontrol~iphone.png */,
				8C94E69517CF7BF000B4848D /* WTPairingScreenshot.png */,
				8CD6EC8317CF46930071827A /* WTPairing.png */,
				8CD6EC8117CF40200071827A /* WTconnecting.png */,
				8CD6EC7F17CF35A70071827A /* WTConnectionHotspot.png */,
				8CD6EC7D17CF2CE70071827A /* WTconnection.png */,
				8CD6EC7917CE358B0071827A /* buttonBackground.png */,
				8CD6EC7A17CE358B0071827A /* buttonBackground@2x.png */,
				8CD6EC7517CE31550071827A /* forwardButton.png */,
				8CD6EC7617CE31550071827A /* forwardButton@2x.png */,
				8C19F44C17B20426005BDB61 /* add@2x.png */,
				8C19F44817B1FEFD005BDB61 /* gear_transparent_bg.png */,
				8C19F44917B1FEFE005BDB61 /* gear_transparent_bg@2x.png */,
				8C19F43C17B1D935005BDB61 /* add.png */,
				8C19F43717B145AD005BDB61 /* backButton.png */,
				8C19F43817B145AD005BDB61 /* backButton@2x.png */,
				8C19F43217B056B3005BDB61 /* navBarButtonNormal@2x.png */,
				8C19F42517B04E7C005BDB61 /* navBarBackground@2x.png */,
				8C19F42617B04E7C005BDB61 /* navBarBackground.png */,
				8C0DC83E17A4185A0099E5AE /* nextButton_normal.png */,
				8C0DC83F17A4185A0099E5AE /* nextButton_normal@2x.png */,
				8C0DC84017A4185A0099E5AE /* previousButton_normal.png */,
				8C0DC84117A4185A0099E5AE /* previousButton_normal@2x.png */,
				8C0DC83617A4177C0099E5AE /* nextButton_pressed.png */,
				8C0DC83717A4177C0099E5AE /* nextButton_pressed@2x.png */,
				8C0DC83817A4177C0099E5AE /* previousButton_pressed.png */,
				8C0DC83917A4177C0099E5AE /* previousButton_pressed@2x.png */,
				57CC48C4178B42A400075DE4 /* timer_pause_btn.png */,
				571BFAD0178AADA200EF1BDB /* more_icon.png */,
				57AEEDB417899BB4007F4F97 /* slide_finished.png */,
				57AEEDB017895BF5007F4F97 /* pointer_pushed.png */,
				57AEEDAE17895B67007F4F97 /* pointer.png */,
				57867A581787510700EBBE52 /* pushed_next_button.png */,
				57867A591787510700EBBE52 /* released_next_button.png */,
				57867A5C178752CD00EBBE52 /* pushed_previous_button.png */,
				57867A5D178752CD00EBBE52 /* released_previous_button.png */,
				571D4805178B2F080063D93B /* timer_clear_btn.png */,
				571D4806178B2F080063D93B /* timer_start_btn.png */,
			);
			name = assets;
			path = iosremote/Ressources;
			sourceTree = "<group>";
		};
		8C06B31A17B7EC6C002F5CF8 /* localizations */ = {
			isa = PBXGroup;
			children = (
				8C06B31B17B7EC83002F5CF8 /* Localizable.strings */,
			);
			name = localizations;
			sourceTree = "<group>";
		};
		8C0DC84E17A511C60099E5AE /* Application */ = {
			isa = PBXGroup;
			children = (
				8C0DC84F17A512250099E5AE /* AppDelegate~ipad.h */,
				8C0DC85017A512250099E5AE /* AppDelegate~ipad.m */,
			);
			name = Application;
			sourceTree = "<group>";
		};
		8C1A170217A28AB900B4BB3C /* Shared */ = {
			isa = PBXGroup;
			children = (
				8CD6EC6A17CBBAFF0071827A /* Views */,
				8C1A170717A28DE800B4BB3C /* Models */,
				8C1A170617A28DDF00B4BB3C /* Support */,
				8C1A170517A28B0E00B4BB3C /* Library */,
				8C1A170417A28AFD00B4BB3C /* Controllers */,
				8C1A170317A28AC900B4BB3C /* Application */,
			);
			indentWidth = 4;
			name = Shared;
			sourceTree = "<group>";
			tabWidth = 4;
		};
		8C1A170317A28AC900B4BB3C /* Application */ = {
			isa = PBXGroup;
			children = (
				57C6E401175E06E800E8BC5F /* AppDelegate.h */,
				57C6E402175E06E800E8BC5F /* AppDelegate.m */,
			);
			name = Application;
			sourceTree = "<group>";
		};
		8C1A170417A28AFD00B4BB3C /* Controllers */ = {
			isa = PBXGroup;
			children = (
				57FE71E717861A9000B50125 /* SlideShowPreviewViewController.h */,
				57FE71E817861A9000B50125 /* SlideShowPreviewViewController.m */,
				8CD6EC6517CBBAF40071827A /* WalkThroughPageViewController.h */,
				8CD6EC6617CBBAF40071827A /* WalkThroughPageViewController.m */,
				8CD6EC6E17CC3FA00071827A /* WalkThroughContainerViewController.h */,
				8CD6EC6F17CC3FA00071827A /* WalkThroughContainerViewController.m */,
				57FE71E11785C61300B50125 /* PinValidationViewController.h */,
				57FE71E21785C61400B50125 /* PinValidationViewController.m */,
				5753DD9717834D7100DB71BB /* NewServerViewController.h */,
				5753DD9817834D7100DB71BB /* NewServerViewController.m */,
				5753DD8E1781EA0300DB71BB /* ServerListViewController.h */,
				5753DD8F1781EA0300DB71BB /* ServerListViewController.m */,
				8CBF9E0617DE79EB0044D949 /* AboutViewController.h */,
				8CBF9E0717DE79EB0044D949 /* AboutViewController.m */,
			);
			name = Controllers;
			sourceTree = "<group>";
		};
		8C1A170517A28B0E00B4BB3C /* Library */ = {
			isa = PBXGroup;
			children = (
				8CBF9E0417DE022F0044D949 /* AudioToolbox.framework */,
				8CBF9E0017DDC1A80044D949 /* MessageUI.framework */,
				8C19F41E17B02A8A005BDB61 /* QuartzCore.framework */,
				8C19F41C17B00899005BDB61 /* SystemConfiguration.framework */,
				BE9EBD061765BF0800283FD2 /* CoreImage.framework */,
				57DC7006178D84490050FC58 /* CoreMotion.framework */,
				8CBF9E1017E1247D0044D949 /* WEPopoverView */,
				8CBF9DC117DDBFA70044D949 /* InAppSettingsKit */,
				571102671794127E007D343B /* TestFlightSDK1.2.6 */,
				57701736178AC83E00B99793 /* SWRevealViewController */,
			);
			name = Library;
			sourceTree = "<group>";
		};
		8C1A170617A28DDF00B4BB3C /* Support */ = {
			isa = PBXGroup;
			children = (
				8C8C7FAE17EDA9330022A6BD /* UINavigationController+Theme.h */,
				8C8C7FAF17EDA9330022A6BD /* UINavigationController+Theme.m */,
				57B152971764703500EECC67 /* NSString+Base64.h */,
				57B152981764703500EECC67 /* NSString+Base64.m */,
				57CFED9717838FDC00E82E05 /* EditableTableViewCell.h */,
				57CFED9817838FDC00E82E05 /* EditableTableViewCell.m */,
				8C26E5C717A5731D007DA4B7 /* AutoDismissKeyboardNavigationViewController.h */,
				8C26E5C817A5731D007DA4B7 /* AutoDismissKeyboardNavigationViewController.m */,
				8C26E5CA17A57C20007DA4B7 /* ControlVariables.h */,
				8C26E5CE17A58703007DA4B7 /* HorizontalSlideCell.h */,
				8C26E5CF17A58703007DA4B7 /* HorizontalSlideCell.m */,
				8C0323A917A943720037432E /* UIImageView+setImageAnimated.h */,
				8C0323AA17A943720037432E /* UIImageView+setImageAnimated.m */,
				8C23B46717DA158C00FB4DE6 /* UIView+Shadowing.h */,
				8C23B46817DA158C00FB4DE6 /* UIView+Shadowing.m */,
				57DC7010178E16A40050FC58 /* UIView+FadeInFadeOut.h */,
				57DC7011178E16A40050FC58 /* UIView+FadeInFadeOut.m */,
				8C19F42D17B05089005BDB61 /* LibONavigationController.h */,
				8C19F42E17B05089005BDB61 /* LibONavigationController.m */,
				8C19F43417B10D48005BDB61 /* UIViewController+LibOStyling.h */,
				8C19F43517B10D49005BDB61 /* UIViewController+LibOStyling.m */,
				8C408A8018001DF00095D80F /* UIImage+imageWithColor.h */,
				8C408A8118001DF00095D80F /* UIImage+imageWithColor.m */,
			);
			name = Support;
			sourceTree = "<group>";
		};
		8C1A170717A28DE800B4BB3C /* Models */ = {
			isa = PBXGroup;
			children = (
				8C26E5D517A68154007DA4B7 /* StopWatch.h */,
				8C26E5D617A68154007DA4B7 /* StopWatch.m */,
				57C6E426175E076900E8BC5F /* Client.h */,
				57C6E427175E076900E8BC5F /* Client.m */,
				57C6E428175E076900E8BC5F /* CommunicationManager.h */,
				57C6E429175E076900E8BC5F /* CommunicationManager.m */,
				57C6E42A175E076900E8BC5F /* CommandInterpreter.h */,
				57C6E42B175E076900E8BC5F /* CommandInterpreter.m */,
				57C6E42C175E076900E8BC5F /* Server.h */,
				57C6E42D175E076900E8BC5F /* Server.m */,
				57B7625B17621E42007703F6 /* SlideShow.h */,
				57B7625C17621E42007703F6 /* SlideShow.m */,
				57B1529D176486C300EECC67 /* CommandTransmitter.h */,
				57B1529E176486C300EECC67 /* CommandTransmitter.m */,
				8C23B46E17DB419300FB4DE6 /* Timer.h */,
				8C23B46F17DB419300FB4DE6 /* Timer.m */,
			);
			name = Models;
			sourceTree = "<group>";
		};
		8C1A170817A28E5E00B4BB3C /* iPad */ = {
			isa = PBXGroup;
			children = (
				8C0DC84E17A511C60099E5AE /* Application */,
				8CAD658217A2E81F00CFB661 /* Controllers */,
				8C06B32017B7ED1E002F5CF8 /* iPad_autosize.storyboard */,
			);
			name = iPad;
			sourceTree = "<group>";
		};
		8C1A170917A28E6500B4BB3C /* iPhone */ = {
			isa = PBXGroup;
			children = (
				8CAD658917A2F00500CFB661 /* Controllers */,
				57DF0A83178FFFAB008B2D3D /* iPhone_autosize.storyboard */,
			);
			name = iPhone;
			sourceTree = "<group>";
		};
		8CAD658217A2E81F00CFB661 /* Controllers */ = {
			isa = PBXGroup;
			children = (
				8C2937C317E9C40C00C3B887 /* ServerListViewController~ipad.h */,
				8C2937C417E9C40C00C3B887 /* ServerListViewController~ipad.m */,
				8CAD658317A2E84A00CFB661 /* MainSplitViewController.h */,
				8CAD658417A2E84A00CFB661 /* MainSplitViewController.m */,
				8CAD658617A2EDB200CFB661 /* SlideShowPreviewViewController~ipad.h */,
				8CAD658717A2EDB200CFB661 /* SlideShowPreviewViewController~ipad.m */,
				8CAD659317A3C2D400CFB661 /* BasePresentationViewController.h */,
				8CAD659417A3C2D400CFB661 /* BasePresentationViewController.m */,
				8CAD659E17A3F76300CFB661 /* SlideShowSwipeInList~ipad.h */,
				8CAD659F17A3F76300CFB661 /* SlideShowSwipeInList~ipad.m */,
			);
			name = Controllers;
			sourceTree = "<group>";
		};
		8CAD658917A2F00500CFB661 /* Controllers */ = {
			isa = PBXGroup;
			children = (
				57867A551787385800EBBE52 /* SlideShowViewController~iphone.h */,
				57867A561787385800EBBE52 /* SlideShowViewController~iphone.m */,
				57701740178B0A6800B99793 /* SlideShowSwipeInList~iphone.h */,
				57701741178B0A6900B99793 /* SlideShowSwipeInList~iphone.m */,
				8CAD658A17A2F02000CFB661 /* SlideShowPreviewViewController~iphone.h */,
				8CAD658B17A2F02000CFB661 /* SlideShowPreviewViewController~iphone.m */,
			);
			name = Controllers;
			sourceTree = "<group>";
		};
		8CBF9DC117DDBFA70044D949 /* InAppSettingsKit */ = {
			isa = PBXGroup;
			children = (
				8CBF9DC217DDBFA70044D949 /* Controllers */,
				8CBF9DCA17DDBFA70044D949 /* Models */,
				8CBF9DD517DDBFA70044D949 /* Views */,
				8CBF9DE417DDBFA70044D949 /* Xibs */,
			);
			path = InAppSettingsKit;
			sourceTree = "<group>";
		};
		8CBF9DC217DDBFA70044D949 /* Controllers */ = {
			isa = PBXGroup;
			children = (
				8CBF9DC317DDBFA70044D949 /* IASKAppSettingsViewController.h */,
				8CBF9DC417DDBFA70044D949 /* IASKAppSettingsViewController.m */,
				8CBF9DC517DDBFA70044D949 /* IASKAppSettingsWebViewController.h */,
				8CBF9DC617DDBFA70044D949 /* IASKAppSettingsWebViewController.m */,
				8CBF9DC717DDBFA70044D949 /* IASKSpecifierValuesViewController.h */,
				8CBF9DC817DDBFA70044D949 /* IASKSpecifierValuesViewController.m */,
				8CBF9DC917DDBFA70044D949 /* IASKViewController.h */,
			);
			path = Controllers;
			sourceTree = "<group>";
		};
		8CBF9DCA17DDBFA70044D949 /* Models */ = {
			isa = PBXGroup;
			children = (
				8CBF9DCB17DDBFA70044D949 /* IASKSettingsReader.h */,
				8CBF9DCC17DDBFA70044D949 /* IASKSettingsReader.m */,
				8CBF9DCD17DDBFA70044D949 /* IASKSettingsStore.h */,
				8CBF9DCE17DDBFA70044D949 /* IASKSettingsStore.m */,
				8CBF9DCF17DDBFA70044D949 /* IASKSettingsStoreFile.h */,
				8CBF9DD017DDBFA70044D949 /* IASKSettingsStoreFile.m */,
				8CBF9DD117DDBFA70044D949 /* IASKSettingsStoreUserDefaults.h */,
				8CBF9DD217DDBFA70044D949 /* IASKSettingsStoreUserDefaults.m */,
				8CBF9DD317DDBFA70044D949 /* IASKSpecifier.h */,
				8CBF9DD417DDBFA70044D949 /* IASKSpecifier.m */,
			);
			path = Models;
			sourceTree = "<group>";
		};
		8CBF9DD517DDBFA70044D949 /* Views */ = {
			isa = PBXGroup;
			children = (
				8CBF9DD617DDBFA70044D949 /* IASKPSSliderSpecifierViewCell.h */,
				8CBF9DD717DDBFA70044D949 /* IASKPSSliderSpecifierViewCell.m */,
				8CBF9DD817DDBFA70044D949 /* IASKPSTextFieldSpecifierViewCell.h */,
				8CBF9DD917DDBFA70044D949 /* IASKPSTextFieldSpecifierViewCell.m */,
				8CBF9DDA17DDBFA70044D949 /* IASKPSTitleValueSpecifierViewCell.h */,
				8CBF9DDB17DDBFA70044D949 /* IASKPSTitleValueSpecifierViewCell.m */,
				8CBF9DDC17DDBFA70044D949 /* IASKPSToggleSwitchSpecifierViewCell.h */,
				8CBF9DDD17DDBFA70044D949 /* IASKPSToggleSwitchSpecifierViewCell.m */,
				8CBF9DDE17DDBFA70044D949 /* IASKSlider.h */,
				8CBF9DDF17DDBFA70044D949 /* IASKSlider.m */,
				8CBF9DE017DDBFA70044D949 /* IASKSwitch.h */,
				8CBF9DE117DDBFA70044D949 /* IASKSwitch.m */,
				8CBF9DE217DDBFA70044D949 /* IASKTextField.h */,
				8CBF9DE317DDBFA70044D949 /* IASKTextField.m */,
			);
			path = Views;
			sourceTree = "<group>";
		};
		8CBF9DE417DDBFA70044D949 /* Xibs */ = {
			isa = PBXGroup;
			children = (
				8CBF9DE517DDBFA70044D949 /* IASKAppSettingsView.xib */,
				8CBF9DE617DDBFA70044D949 /* IASKAppSettingsWebView.xib */,
				8CBF9DE717DDBFA70044D949 /* IASKPSSliderSpecifierViewCell.xib */,
				8CBF9DE817DDBFA70044D949 /* IASKPSTextFieldSpecifierViewCell.xib */,
				8CBF9DE917DDBFA70044D949 /* IASKPSToggleSwitchSpecifierViewCell.xib */,
				8CBF9DEA17DDBFA70044D949 /* IASKSpecifierValuesView.xib */,
			);
			path = Xibs;
			sourceTree = "<group>";
		};
		8CBF9E1017E1247D0044D949 /* WEPopoverView */ = {
			isa = PBXGroup;
			children = (
				8C19F42017B02AA9005BDB61 /* PopoverView.h */,
				8C19F42217B02C2E005BDB61 /* PopoverView_Configuration.h */,
				8C19F42317B02C2E005BDB61 /* PopoverViewCompatibility.h */,
				8C19F42117B02AA9005BDB61 /* PopoverView.m */,
			);
			name = WEPopoverView;
			sourceTree = "<group>";
		};
		8CD6EC6A17CBBAFF0071827A /* Views */ = {
			isa = PBXGroup;
			children = (
				8C0C879217F4C46E003CE6B2 /* WalkThroughPageViewController.xib */,
				8CD6EC8717CF4ABA0071827A /* WalkThroughPageViewMainImageController.xib */,
				8CD6EC6717CBBAF40071827A /* WalkThroughPageViewControllerWithHint.xib */,
			);
			name = Views;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
		57C6E3EE175E06E800E8BC5F /* Impress */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 57C6E415175E06E800E8BC5F /* Build configuration list for PBXNativeTarget "Impress" */;
			buildPhases = (
				57C6E3EB175E06E800E8BC5F /* Sources */,
				57C6E3EC175E06E800E8BC5F /* Frameworks */,
				57C6E3ED175E06E800E8BC5F /* Resources */,
				8C06B32917B7F1C0002F5CF8 /* ShellScript */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = Impress;
			productName = iosremote;
			productReference = 57C6E3EF175E06E800E8BC5F /* Impress.app */;
			productType = "com.apple.product-type.application";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		57C6E3E7175E06E800E8BC5F /* Project object */ = {
			isa = PBXProject;
			attributes = {
				CLASSPREFIX = libreoffice.sdremote;
				LastUpgradeCheck = 0500;
				ORGANIZATIONNAME = libreoffice;
			};
			buildConfigurationList = 57C6E3EA175E06E800E8BC5F /* Build configuration list for PBXProject "iosremote" */;
			compatibilityVersion = "Xcode 3.2";
			developmentRegion = English;
			hasScannedForEncodings = 0;
			knownRegions = (
				en,
				fr,
				"zh-Hans",
				de,
				ar,
				cs,
				ca,
				da,
				el,
				tr,
				es,
				fi,
				hu,
				it,
				nb,
				nl,
				pl,
				"pt-BR",
				pt,
				ru,
				sl,
				sv,
				uk,
				"zh-Hant",
			);
			mainGroup = 57C6E3E6175E06E800E8BC5F;
			productRefGroup = 57C6E3F0175E06E800E8BC5F /* Products */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				57C6E3EE175E06E800E8BC5F /* Impress */,
			);
		};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
		57C6E3ED175E06E800E8BC5F /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				57C6E3FD175E06E800E8BC5F /* InfoPlist.strings in Resources */,
				8C10780318947B9D0062E0E7 /* Images.xcassets in Resources */,
				57C6E405175E06E800E8BC5F /* Default.png in Resources */,
				57C6E407175E06E800E8BC5F /* Default@2x.png in Resources */,
				57C6E409175E06E800E8BC5F /* Default-568h@2x.png in Resources */,
				8C0C879317F4C46E003CE6B2 /* WalkThroughPageViewController.xib in Resources */,
				57867A5A1787510700EBBE52 /* pushed_next_button.png in Resources */,
				57867A5B1787510700EBBE52 /* released_next_button.png in Resources */,
				57867A5E178752CD00EBBE52 /* pushed_previous_button.png in Resources */,
				57867A5F178752CD00EBBE52 /* released_previous_button.png in Resources */,
				57AEEDAF17895B67007F4F97 /* pointer.png in Resources */,
				57AEEDB117895BF5007F4F97 /* pointer_pushed.png in Resources */,
				57AEEDB517899BB4007F4F97 /* slide_finished.png in Resources */,
				571BFAD1178AADA200EF1BDB /* more_icon.png in Resources */,
				571D4807178B2F080063D93B /* timer_clear_btn.png in Resources */,
				571D4808178B2F080063D93B /* timer_start_btn.png in Resources */,
				57CC48C6178B42A400075DE4 /* timer_pause_btn.png in Resources */,
				57DF0A85178FFFAB008B2D3D /* iPhone_autosize.storyboard in Resources */,
				5711026D1794127E007D343B /* README.md in Resources */,
				5711026E1794127E007D343B /* release_notes.md in Resources */,
				8C06B31E17B7ED1E002F5CF8 /* iPad_autosize.storyboard in Resources */,
				8C0DC83A17A4177C0099E5AE /* nextButton_pressed.png in Resources */,
				8C0DC83B17A4177C0099E5AE /* nextButton_pressed@2x.png in Resources */,
				8C0DC83C17A4177C0099E5AE /* previousButton_pressed.png in Resources */,
				8C0DC83D17A4177C0099E5AE /* previousButton_pressed@2x.png in Resources */,
				8C0DC84217A4185A0099E5AE /* nextButton_normal.png in Resources */,
				8C0DC84317A4185A0099E5AE /* nextButton_normal@2x.png in Resources */,
				8C8C7FB417EDAFD20022A6BD /* more_ipad@2x.png in Resources */,
				8C0DC84417A4185A0099E5AE /* previousButton_normal.png in Resources */,
				8C0DC84517A4185A0099E5AE /* previousButton_normal@2x.png in Resources */,
				8C26E5C617A5539D007DA4B7 /* UserDefaults.plist in Resources */,
				8C19F42717B04E7C005BDB61 /* navBarBackground@2x.png in Resources */,
				8C19F42817B04E7C005BDB61 /* navBarBackground.png in Resources */,
				8C19F43317B056B3005BDB61 /* navBarButtonNormal@2x.png in Resources */,
				8C19F43917B145AD005BDB61 /* backButton.png in Resources */,
				8C19F43A17B145AD005BDB61 /* backButton@2x.png in Resources */,
				8C19F43E17B1D935005BDB61 /* add.png in Resources */,
				8C19F44A17B1FEFE005BDB61 /* gear_transparent_bg.png in Resources */,
				8C19F44B17B1FEFE005BDB61 /* gear_transparent_bg@2x.png in Resources */,
				8C19F44D17B20427005BDB61 /* add@2x.png in Resources */,
				8C06B31D17B7EC83002F5CF8 /* Localizable.strings in Resources */,
				8CD6EC6917CBBAF40071827A /* WalkThroughPageViewControllerWithHint.xib in Resources */,
				8CD6EC7717CE31560071827A /* forwardButton.png in Resources */,
				8CD6EC7817CE31560071827A /* forwardButton@2x.png in Resources */,
				8CD6EC7B17CE358B0071827A /* buttonBackground.png in Resources */,
				8CD6EC7C17CE358B0071827A /* buttonBackground@2x.png in Resources */,
				8CD6EC7E17CF2CE70071827A /* WTconnection.png in Resources */,
				8CD6EC8017CF35A70071827A /* WTConnectionHotspot.png in Resources */,
				8CD6EC8217CF40200071827A /* WTconnecting.png in Resources */,
				8CD6EC8417CF46930071827A /* WTPairing.png in Resources */,
				8CD6EC8817CF4ABA0071827A /* WalkThroughPageViewMainImageController.xib in Resources */,
				8C94E69617CF7BF000B4848D /* WTPairingScreenshot.png in Resources */,
				8CAF3DDF17D0DFFD00F931E5 /* WTcontrol~ipad.png in Resources */,
				8CAF3DE017D0DFFD00F931E5 /* WTcontrol~iphone.png in Resources */,
				8C23B46C17DB3B8600FB4DE6 /* timer_settime_btn.png in Resources */,
				8C23B46D17DB3B8600FB4DE6 /* timer_settime_btn@2x.png in Resources */,
				8C3A648817DCBE9E004A77D9 /* timer_clear_btn_dark.png in Resources */,
				8C3A648A17DCBE9E004A77D9 /* timer_pause_btn_dark.png in Resources */,
				8C3A648B17DCBE9E004A77D9 /* timer_pause_btn_dark@2x.png in Resources */,
				8C3A648C17DCBE9E004A77D9 /* timer_settime_btn_dark.png in Resources */,
				8C8C7FB317EDAFD20022A6BD /* more_ipad.png in Resources */,
				8C3A648D17DCBE9E004A77D9 /* timer_settime_btn_dark@2x.png in Resources */,
				8C3A648E17DCBE9E004A77D9 /* timer_start_btn_dark.png in Resources */,
				8CBF9DFA17DDBFA70044D949 /* IASKAppSettingsView.xib in Resources */,
				8CBF9DFB17DDBFA70044D949 /* IASKAppSettingsWebView.xib in Resources */,
				8CBF9DFC17DDBFA70044D949 /* IASKPSSliderSpecifierViewCell.xib in Resources */,
				8CBF9DFD17DDBFA70044D949 /* IASKPSTextFieldSpecifierViewCell.xib in Resources */,
				8CBF9DFE17DDBFA70044D949 /* IASKPSToggleSwitchSpecifierViewCell.xib in Resources */,
				8CBF9DFF17DDBFA70044D949 /* IASKSpecifierValuesView.xib in Resources */,
				8CBF9E0317DDD2230044D949 /* Settings.bundle in Resources */,
				8CBF9E0A17E103B50044D949 /* licenses.html in Resources */,
				8C2937B017E8348D00C3B887 /* libreoffice_logo.png in Resources */,
				8C2937BD17E837BA00C3B887 /* Default-568h@2x.png in Resources */,
				8C2937BE17E837BA00C3B887 /* Default.png in Resources */,
				8C2937BF17E837BA00C3B887 /* Default@2x.png in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXResourcesBuildPhase section */

/* Begin PBXShellScriptBuildPhase section */
		8C06B32917B7F1C0002F5CF8 /* ShellScript */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "python ${PROJECT_DIR}/localize.py --mainIdiom=en --mainStoryboard=${PROJECT_DIR}/iosremote/en.lproj/iPhone_autoSize.storyboard fr zh-Hans\n\npython ${PROJECT_DIR}/localize.py --mainIdiom=en --mainStoryboard=${PROJECT_DIR}/en.lproj/iPad_autosize.storyboard fr zh-Hans";
		};
/* End PBXShellScriptBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		57C6E3EB175E06E800E8BC5F /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				8C19F42417B02C7A005BDB61 /* PopoverView.m in Sources */,
				57C6E3FF175E06E800E8BC5F /* main.m in Sources */,
				57C6E403175E06E800E8BC5F /* AppDelegate.m in Sources */,
				57C6E42E175E076900E8BC5F /* Client.m in Sources */,
				57C6E42F175E076900E8BC5F /* CommunicationManager.m in Sources */,
				57C6E430175E076900E8BC5F /* CommandInterpreter.m in Sources */,
				57C6E431175E076900E8BC5F /* Server.m in Sources */,
				57B7625D17621E42007703F6 /* SlideShow.m in Sources */,
				57B152991764703500EECC67 /* NSString+Base64.m in Sources */,
				57B1529F176486C300EECC67 /* CommandTransmitter.m in Sources */,
				5753DD901781EA0300DB71BB /* ServerListViewController.m in Sources */,
				5753DD9917834D7100DB71BB /* NewServerViewController.m in Sources */,
				57CFED9917838FDC00E82E05 /* EditableTableViewCell.m in Sources */,
				57FE71E31785C61400B50125 /* PinValidationViewController.m in Sources */,
				57FE71E917861A9000B50125 /* SlideShowPreviewViewController.m in Sources */,
				8C408A8218001DF00095D80F /* UIImage+imageWithColor.m in Sources */,
				8C8C7FB017EDA9330022A6BD /* UINavigationController+Theme.m in Sources */,
				57867A571787385800EBBE52 /* SlideShowViewController~iphone.m in Sources */,
				57701742178B0A6900B99793 /* SlideShowSwipeInList~iphone.m in Sources */,
				57DC7012178E16A40050FC58 /* UIView+FadeInFadeOut.m in Sources */,
				8CAD658517A2E84A00CFB661 /* MainSplitViewController.m in Sources */,
				8CAD658817A2EDB200CFB661 /* SlideShowPreviewViewController~ipad.m in Sources */,
				8CAD658C17A2F02000CFB661 /* SlideShowPreviewViewController~iphone.m in Sources */,
				8CAD659517A3C2D400CFB661 /* BasePresentationViewController.m in Sources */,
				8CAD65A017A3F76300CFB661 /* SlideShowSwipeInList~ipad.m in Sources */,
				8C0DC85117A512250099E5AE /* AppDelegate~ipad.m in Sources */,
				8C26E5C917A5731D007DA4B7 /* AutoDismissKeyboardNavigationViewController.m in Sources */,
				8C26E5D017A58703007DA4B7 /* HorizontalSlideCell.m in Sources */,
				8C26E5D717A68154007DA4B7 /* StopWatch.m in Sources */,
				8C0323AB17A943720037432E /* UIImageView+setImageAnimated.m in Sources */,
				8C19F42F17B05089005BDB61 /* LibONavigationController.m in Sources */,
				8C19F43617B10D49005BDB61 /* UIViewController+LibOStyling.m in Sources */,
				8CD6EC6817CBBAF40071827A /* WalkThroughPageViewController.m in Sources */,
				8CD6EC7017CC3FA00071827A /* WalkThroughContainerViewController.m in Sources */,
				8C23B46917DA158C00FB4DE6 /* UIView+Shadowing.m in Sources */,
				8C23B47017DB419300FB4DE6 /* Timer.m in Sources */,
				8CBF9DEB17DDBFA70044D949 /* IASKAppSettingsViewController.m in Sources */,
				8CBF9DEC17DDBFA70044D949 /* IASKAppSettingsWebViewController.m in Sources */,
				8CBF9DED17DDBFA70044D949 /* IASKSpecifierValuesViewController.m in Sources */,
				8CBF9DEE17DDBFA70044D949 /* IASKSettingsReader.m in Sources */,
				8CBF9DEF17DDBFA70044D949 /* IASKSettingsStore.m in Sources */,
				8CBF9DF017DDBFA70044D949 /* IASKSettingsStoreFile.m in Sources */,
				8CBF9DF117DDBFA70044D949 /* IASKSettingsStoreUserDefaults.m in Sources */,
				8CBF9DF217DDBFA70044D949 /* IASKSpecifier.m in Sources */,
				8CBF9DF317DDBFA70044D949 /* IASKPSSliderSpecifierViewCell.m in Sources */,
				8CBF9DF417DDBFA70044D949 /* IASKPSTextFieldSpecifierViewCell.m in Sources */,
				8CBF9DF517DDBFA70044D949 /* IASKPSTitleValueSpecifierViewCell.m in Sources */,
				8CBF9DF617DDBFA70044D949 /* IASKPSToggleSwitchSpecifierViewCell.m in Sources */,
				8CBF9DF717DDBFA70044D949 /* IASKSlider.m in Sources */,
				8CBF9DF817DDBFA70044D949 /* IASKSwitch.m in Sources */,
				8CBF9DF917DDBFA70044D949 /* IASKTextField.m in Sources */,
				8CBF9E0817DE79EB0044D949 /* AboutViewController.m in Sources */,
				8C2937B317E8374B00C3B887 /* SWRevealViewController.m in Sources */,
				8C2937C517E9C40D00C3B887 /* ServerListViewController~ipad.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXVariantGroup section */
		57C6E3FB175E06E800E8BC5F /* InfoPlist.strings */ = {
			isa = PBXVariantGroup;
			children = (
				57C6E3FC175E06E800E8BC5F /* en */,
				8C06B32417B7ED2B002F5CF8 /* fr */,
				8C06B32817B7ED33002F5CF8 /* zh-Hans */,
				AC1652201894A34800F19AF0 /* de */,
				AC1652291894A4CC00F19AF0 /* ar */,
				AC16522D1894A52300F19AF0 /* cs */,
				AC1652311894A52A00F19AF0 /* ca */,
				AC1652351894A53700F19AF0 /* da */,
				AC1652391894A54500F19AF0 /* el */,
				AC16523D1894A55B00F19AF0 /* tr */,
				AC1652411894A57700F19AF0 /* es */,
				AC1652451894A58300F19AF0 /* fi */,
				AC1652491894A65600F19AF0 /* hu */,
				AC16524D1894A66300F19AF0 /* it */,
				AC1652511894A67200F19AF0 /* nb */,
				AC1652551894A67A00F19AF0 /* nl */,
				AC1652591894A68A00F19AF0 /* pl */,
				AC16525D1894A6A900F19AF0 /* pt-BR */,
				AC1652611894A6B300F19AF0 /* pt */,
				AC1652651894A6C900F19AF0 /* ru */,
				AC1652691894A6EC00F19AF0 /* sl */,
				AC16526D1894A6F300F19AF0 /* sv */,
				AC1652711894A70100F19AF0 /* uk */,
				AC65664C1894A8A000745A6D /* zh-Hant */,
			);
			name = InfoPlist.strings;
			sourceTree = "<group>";
		};
		57DF0A83178FFFAB008B2D3D /* iPhone_autosize.storyboard */ = {
			isa = PBXVariantGroup;
			children = (
				57DF0A84178FFFAB008B2D3D /* en */,
				8C06B32117B7ED2A002F5CF8 /* fr */,
				8C06B32517B7ED33002F5CF8 /* zh-Hans */,
				AC16521D1894A34700F19AF0 /* de */,
				AC1652261894A4CC00F19AF0 /* ar */,
				AC16522A1894A52200F19AF0 /* cs */,
				AC16522E1894A52A00F19AF0 /* ca */,
				AC1652321894A53600F19AF0 /* da */,
				AC1652361894A54500F19AF0 /* el */,
				AC16523A1894A55A00F19AF0 /* tr */,
				AC16523E1894A57600F19AF0 /* es */,
				AC1652421894A58200F19AF0 /* fi */,
				AC1652461894A65600F19AF0 /* hu */,
				AC16524A1894A66200F19AF0 /* it */,
				AC16524E1894A67100F19AF0 /* nb */,
				AC1652521894A67900F19AF0 /* nl */,
				AC1652561894A68900F19AF0 /* pl */,
				AC16525A1894A6A800F19AF0 /* pt-BR */,
				AC16525E1894A6B200F19AF0 /* pt */,
				AC1652621894A6C900F19AF0 /* ru */,
				AC1652661894A6EC00F19AF0 /* sl */,
				AC16526A1894A6F300F19AF0 /* sv */,
				AC16526E1894A70000F19AF0 /* uk */,
				AC6566491894A89F00745A6D /* zh-Hant */,
			);
			name = iPhone_autosize.storyboard;
			path = iosremote;
			sourceTree = "<group>";
		};
		8C06B31B17B7EC83002F5CF8 /* Localizable.strings */ = {
			isa = PBXVariantGroup;
			children = (
				8C06B31C17B7EC83002F5CF8 /* en */,
				8C06B32317B7ED2B002F5CF8 /* fr */,
				8C06B32717B7ED33002F5CF8 /* zh-Hans */,
				AC16521F1894A34800F19AF0 /* de */,
				AC1652281894A4CC00F19AF0 /* ar */,
				AC16522C1894A52200F19AF0 /* cs */,
				AC1652301894A52A00F19AF0 /* ca */,
				AC1652341894A53700F19AF0 /* da */,
				AC1652381894A54500F19AF0 /* el */,
				AC16523C1894A55B00F19AF0 /* tr */,
				AC1652401894A57700F19AF0 /* es */,
				AC1652441894A58200F19AF0 /* fi */,
				AC1652481894A65600F19AF0 /* hu */,
				AC16524C1894A66300F19AF0 /* it */,
				AC1652501894A67100F19AF0 /* nb */,
				AC1652541894A67A00F19AF0 /* nl */,
				AC1652581894A68A00F19AF0 /* pl */,
				AC16525C1894A6A900F19AF0 /* pt-BR */,
				AC1652601894A6B200F19AF0 /* pt */,
				AC1652641894A6C900F19AF0 /* ru */,
				AC1652681894A6EC00F19AF0 /* sl */,
				AC16526C1894A6F300F19AF0 /* sv */,
				AC1652701894A70000F19AF0 /* uk */,
				AC65664B1894A8A000745A6D /* zh-Hant */,
			);
			name = Localizable.strings;
			sourceTree = "<group>";
		};
		8C06B32017B7ED1E002F5CF8 /* iPad_autosize.storyboard */ = {
			isa = PBXVariantGroup;
			children = (
				8C06B31F17B7ED1E002F5CF8 /* en */,
				8C06B32217B7ED2A002F5CF8 /* fr */,
				8C06B32617B7ED33002F5CF8 /* zh-Hans */,
				AC16521E1894A34700F19AF0 /* de */,
				AC1652271894A4CC00F19AF0 /* ar */,
				AC16522B1894A52200F19AF0 /* cs */,
				AC16522F1894A52A00F19AF0 /* ca */,
				AC1652331894A53700F19AF0 /* da */,
				AC1652371894A54500F19AF0 /* el */,
				AC16523B1894A55A00F19AF0 /* tr */,
				AC16523F1894A57700F19AF0 /* es */,
				AC1652431894A58200F19AF0 /* fi */,
				AC1652471894A65600F19AF0 /* hu */,
				AC16524B1894A66200F19AF0 /* it */,
				AC16524F1894A67100F19AF0 /* nb */,
				AC1652531894A67900F19AF0 /* nl */,
				AC1652571894A68A00F19AF0 /* pl */,
				AC16525B1894A6A800F19AF0 /* pt-BR */,
				AC16525F1894A6B200F19AF0 /* pt */,
				AC1652631894A6C900F19AF0 /* ru */,
				AC1652671894A6EC00F19AF0 /* sl */,
				AC16526B1894A6F300F19AF0 /* sv */,
				AC16526F1894A70000F19AF0 /* uk */,
				AC65664A1894A8A000745A6D /* zh-Hant */,
			);
			name = iPad_autosize.storyboard;
			sourceTree = "<group>";
		};
/* End PBXVariantGroup section */

/* Begin XCBuildConfiguration section */
		57C6E413175E06E800E8BC5F /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				CODE_SIGN_IDENTITY = "iPhone Developer";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				COPY_PHASE_STRIP = NO;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				GCC_SYMBOLS_PRIVATE_EXTERN = NO;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 5.0;
				ONLY_ACTIVE_ARCH = YES;
				PROVISIONING_PROFILE = "";
				SDKROOT = iphoneos;
				TARGETED_DEVICE_FAMILY = "1,2";
			};
			name = Debug;
		};
		57C6E414175E06E800E8BC5F /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				CODE_SIGN_IDENTITY = "iPhone Distribution";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
				COPY_PHASE_STRIP = YES;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 5.0;
				OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
				PROVISIONING_PROFILE = "";
				"PROVISIONING_PROFILE[sdk=iphoneos*]" = "";
				SDKROOT = iphoneos;
				TARGETED_DEVICE_FAMILY = "1,2";
				VALIDATE_PRODUCT = YES;
			};
			name = Release;
		};
		57C6E416175E06E800E8BC5F /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
				ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "iosremote/iosremote-Prefix.pch";
				INFOPLIST_FILE = "iosremote/iosremote-Info.plist";
				IPHONEOS_DEPLOYMENT_TARGET = 5.0;
				LIBRARY_SEARCH_PATHS = (
					"$(inherited)",
					"\"$(SRCROOT)/TestFlightSDK1.2.6\"",
				);
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = iphoneos;
				TARGETED_DEVICE_FAMILY = "1,2";
				WRAPPER_EXTENSION = app;
			};
			name = Debug;
		};
		57C6E417175E06E800E8BC5F /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
				ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
				CODE_SIGN_IDENTITY = "iPhone Distribution: Siqi Liu (ECNT5P5MTW)";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution: Siqi Liu (ECNT5P5MTW)";
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "iosremote/iosremote-Prefix.pch";
				INFOPLIST_FILE = "iosremote/iosremote-Info.plist";
				IPHONEOS_DEPLOYMENT_TARGET = 5.0;
				LIBRARY_SEARCH_PATHS = (
					"$(inherited)",
					"\"$(SRCROOT)/TestFlightSDK1.2.6\"",
				);
				PRODUCT_NAME = "$(TARGET_NAME)";
				PROVISIONING_PROFILE = "AC7C4315-5B31-4056-8955-9B861DCF5F75";
				"PROVISIONING_PROFILE[sdk=iphoneos*]" = "AC7C4315-5B31-4056-8955-9B861DCF5F75";
				SDKROOT = iphoneos;
				TARGETED_DEVICE_FAMILY = "1,2";
				WRAPPER_EXTENSION = app;
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		57C6E3EA175E06E800E8BC5F /* Build configuration list for PBXProject "iosremote" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				57C6E413175E06E800E8BC5F /* Debug */,
				57C6E414175E06E800E8BC5F /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		57C6E415175E06E800E8BC5F /* Build configuration list for PBXNativeTarget "Impress" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				57C6E416175E06E800E8BC5F /* Debug */,
				57C6E417175E06E800E8BC5F /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = 57C6E3E7175E06E800E8BC5F /* Project object */;
}