Welcome to mirror list, hosted at ThFree Co, Russian Federation.

project.pbxproj « Mumble.xcodeproj - github.com/mumble-voip/mumble-iphoneos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 80730f9563dafcf5768e23a7f28606e833c0d688 (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
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 46;
	objects = {

/* Begin PBXBuildFile section */
		1D60589B0D05DD56006BFB54 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B97316FDCFA39411CA2CEA /* main.m */; };
		1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; };
		1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; };
		2801C35B11CA9F1A00E664E8 /* MUPreferencesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2801C35A11CA9F1A00E664E8 /* MUPreferencesViewController.m */; };
		280256381510D70D00178B08 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 280256361510D70D00178B08 /* Localizable.strings */; };
		2802AC0014C9E948000983A5 /* MUDataURL.m in Sources */ = {isa = PBXBuildFile; fileRef = 2802ABFF14C9E948000983A5 /* MUDataURL.m */; };
		2802AC0314CB0131000983A5 /* MUImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2802AC0214CB0131000983A5 /* MUImage.m */; };
		2802AC0614CB024A000983A5 /* MUImageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2802AC0514CB024A000983A5 /* MUImageViewController.m */; };
		2802AC0D14CB2E2B000983A5 /* MUTextMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2802AC0C14CB2E2B000983A5 /* MUTextMessage.m */; };
		280D9ADA13EAFAAE003B64A0 /* MUServerRootViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 280D9AD913EAFAAE003B64A0 /* MUServerRootViewController.m */; };
		2813B1D115EBFDA90049A59A /* MURemoteControlPreferencesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2813B1D015EBFDA90049A59A /* MURemoteControlPreferencesViewController.m */; };
		2822AC0614878AC500E9DB17 /* MUConnectionController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2822AC0514878AC500E9DB17 /* MUConnectionController.m */; };
		28234D5F13F09148006B830D /* talkbutton_off.png in Resources */ = {isa = PBXBuildFile; fileRef = 28234D5B13F09148006B830D /* talkbutton_off.png */; };
		28234D6013F09148006B830D /* talkbutton_off@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28234D5C13F09148006B830D /* talkbutton_off@2x.png */; };
		28234D6113F09148006B830D /* talkbutton_on.png in Resources */ = {isa = PBXBuildFile; fileRef = 28234D5D13F09148006B830D /* talkbutton_on.png */; };
		28234D6213F09148006B830D /* talkbutton_on@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28234D5E13F09148006B830D /* talkbutton_on@2x.png */; };
		282F6A2513620BD5008F555B /* MUCertificateController.m in Sources */ = {isa = PBXBuildFile; fileRef = 282F6A2413620BD5008F555B /* MUCertificateController.m */; };
		283363DB13EF154C00A04F04 /* MUAudioTransmissionPreferencesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 283363DA13EF154C00A04F04 /* MUAudioTransmissionPreferencesViewController.m */; };
		2836767D1525053A0015958E /* MUCertificateChainBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 2836767C1525053A0015958E /* MUCertificateChainBuilder.m */; };
		2838EA0F129316C200035C5D /* MUCertificatePreferencesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2838EA0E129316C200035C5D /* MUCertificatePreferencesViewController.m */; };
		2843040A16BF25590025A783 /* MumbleMenuButton.png in Resources */ = {isa = PBXBuildFile; fileRef = 2843040816BF25590025A783 /* MumbleMenuButton.png */; };
		2843040B16BF25590025A783 /* MumbleMenuButton@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 2843040916BF25590025A783 /* MumbleMenuButton@2x.png */; };
		28451944163463C90027FAB3 /* Default-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28451943163463C90027FAB3 /* Default-568h@2x.png */; };
		2845194816346F5B0027FAB3 /* WelcomeScreenIcon-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 2845194716346F5B0027FAB3 /* WelcomeScreenIcon-568h@2x.png */; };
		2845194A1634849E0027FAB3 /* BackgroundTextureBlackGradient-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 284519491634849E0027FAB3 /* BackgroundTextureBlackGradient-568h@2x.png */; };
		2846C7D616F4A09000739FD8 /* MUServerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2846C7D516F4A08F00739FD8 /* MUServerButton.m */; };
		28529B3B1541C043003DD813 /* certificatecreation.png in Resources */ = {isa = PBXBuildFile; fileRef = 28529B391541C042003DD813 /* certificatecreation.png */; };
		28529B3C1541C043003DD813 /* certificatecreation@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28529B3A1541C042003DD813 /* certificatecreation@2x.png */; };
		2858A580123B9E5700A82155 /* MUCertificateCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2858A57F123B9E5700A82155 /* MUCertificateCell.xib */; };
		2858A5AD123BA08D00A82155 /* MUCertificateCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2858A5AC123BA08D00A82155 /* MUCertificateCell.m */; };
		2858DBA31233E31B000D6F75 /* MUVersionChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2858DBA21233E31B000D6F75 /* MUVersionChecker.m */; };
		285AF26B1840DEE20065E339 /* MUAudioMixerDebugViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 285AF26A1840DEE20065E339 /* MUAudioMixerDebugViewController.m */; };
		285D6B7116BEEFA700F239EB /* MUTextMessageProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = 285D6B7016BEEFA700F239EB /* MUTextMessageProcessor.m */; };
		285D6B7E16BF02E900F239EB /* SenTestingKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 285D6B7D16BF02E900F239EB /* SenTestingKit.framework */; };
		285D6B7F16BF02E900F239EB /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; };
		285D6B8016BF02E900F239EB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; };
		285D6B9016BF03D700F239EB /* MUTextMessageProcessorTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 285D6B7416BF027A00F239EB /* MUTextMessageProcessorTest.m */; };
		285D6BD316BF067400F239EB /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 285D6B8416BF02E900F239EB /* InfoPlist.strings */; };
		285D6BD416BF078E00F239EB /* MUTextMessageProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = 285D6B7016BEEFA700F239EB /* MUTextMessageProcessor.m */; };
		2861C276116BE905002B8514 /* MUApplicationDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 2861C25E116BE905002B8514 /* MUApplicationDelegate.m */; };
		2861C27B116BE905002B8514 /* MUPublicServerList.m in Sources */ = {isa = PBXBuildFile; fileRef = 2861C267116BE905002B8514 /* MUPublicServerList.m */; };
		2861C27C116BE905002B8514 /* MUPublicServerListController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2861C269116BE905002B8514 /* MUPublicServerListController.m */; };
		2861C281116BE905002B8514 /* MUWelcomeScreenPhone.m in Sources */ = {isa = PBXBuildFile; fileRef = 2861C271116BE905002B8514 /* MUWelcomeScreenPhone.m */; };
		2861C2AE116BE9B5002B8514 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2861C2AD116BE9B5002B8514 /* AudioToolbox.framework */; };
		2861C2B2116BE9B7002B8514 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2861C2B1116BE9B7002B8514 /* CFNetwork.framework */; };
		2861C2B6116BE9BA002B8514 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2861C2B5116BE9BA002B8514 /* Security.framework */; };
		286A3CA0158BB17E00C817D1 /* MUAudioSidetonePreferencesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 286A3C9F158BB17E00C817D1 /* MUAudioSidetonePreferencesViewController.m */; };
		286A3CA4158CCF9F00C817D1 /* MUWelcomeScreenPad.m in Sources */ = {isa = PBXBuildFile; fileRef = 286A3CA2158CCF9D00C817D1 /* MUWelcomeScreenPad.m */; };
		286A3CA7158CD05A00C817D1 /* BackgroundTextureBlackGradientPad@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 286A3CA6158CD05A00C817D1 /* BackgroundTextureBlackGradientPad@2x.png */; };
		286A3CA9158CD12E00C817D1 /* LogoBigShadow@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 286A3CA8158CD12E00C817D1 /* LogoBigShadow@2x.png */; };
		286A3CAB158CD55700C817D1 /* LogoBigShadow.png in Resources */ = {isa = PBXBuildFile; fileRef = 286A3CAA158CD55700C817D1 /* LogoBigShadow.png */; };
		286A3CAD158CD5F400C817D1 /* BackgroundTextureBlackGradientPad.png in Resources */ = {isa = PBXBuildFile; fileRef = 286A3CAC158CD5F400C817D1 /* BackgroundTextureBlackGradientPad.png */; };
		286A3CBE158CFDF300C817D1 /* MUPopoverBackgroundView.m in Sources */ = {isa = PBXBuildFile; fileRef = 286A3CBD158CFDF200C817D1 /* MUPopoverBackgroundView.m */; };
		286A3CC1158CFEAB00C817D1 /* _UIPopoverViewBlackBackgroundArrowUp.png in Resources */ = {isa = PBXBuildFile; fileRef = 286A3CBF158CFEAB00C817D1 /* _UIPopoverViewBlackBackgroundArrowUp.png */; };
		286A3CC2158CFEAB00C817D1 /* _UIPopoverViewBlackBackgroundArrowUp@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 286A3CC0158CFEAB00C817D1 /* _UIPopoverViewBlackBackgroundArrowUp@2x.png */; };
		286E9260148452A000B13593 /* MUVoiceActivitySetupViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 286E925F148452A000B13593 /* MUVoiceActivitySetupViewController.m */; };
		287172AB151A041A00153D74 /* certificatecell-intermediate.png in Resources */ = {isa = PBXBuildFile; fileRef = 287172A9151A041A00153D74 /* certificatecell-intermediate.png */; };
		287172AC151A041A00153D74 /* certificatecell-intermediate@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 287172AA151A041A00153D74 /* certificatecell-intermediate@2x.png */; };
		287639F911D29D99009DB8B6 /* MUCertificateCreationProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = 287639F811D29D99009DB8B6 /* MUCertificateCreationProgressView.m */; };
		287639FF11D2A242009DB8B6 /* MUCertificateCreationProgressView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 287639FE11D2A242009DB8B6 /* MUCertificateCreationProgressView.xib */; };
		28763A4511D2AA91009DB8B6 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 28763A4411D2AA91009DB8B6 /* QuartzCore.framework */; };
		2879523714BF519A00567430 /* MUMessagesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2879523614BF519A00567430 /* MUMessagesViewController.m */; };
		2879525E14C0AFAC00567430 /* BlackToolbarPattern.png in Resources */ = {isa = PBXBuildFile; fileRef = 2879525C14C0AFAC00567430 /* BlackToolbarPattern.png */; };
		2879525F14C0AFAC00567430 /* BlackToolbarPattern@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 2879525D14C0AFAC00567430 /* BlackToolbarPattern@2x.png */; };
		2879526C14C202C600567430 /* channelmsg.png in Resources */ = {isa = PBXBuildFile; fileRef = 2879526A14C202C600567430 /* channelmsg.png */; };
		2879526D14C202C600567430 /* channelmsg@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 2879526B14C202C600567430 /* channelmsg@2x.png */; };
		2879527014C2043E00567430 /* usermsg.png in Resources */ = {isa = PBXBuildFile; fileRef = 2879526E14C2043E00567430 /* usermsg.png */; };
		2879527114C2043E00567430 /* usermsg@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 2879526F14C2043E00567430 /* usermsg@2x.png */; };
		2879527D14C248C500567430 /* Balloon_2.png in Resources */ = {isa = PBXBuildFile; fileRef = 2879527B14C248C500567430 /* Balloon_2.png */; };
		2879527E14C248C500567430 /* Balloon_2@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 2879527C14C248C500567430 /* Balloon_2@2x.png */; };
		2879528114C2504C00567430 /* MUMessageBubbleTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2879528014C2504C00567430 /* MUMessageBubbleTableViewCell.m */; };
		2879528414C2687D00567430 /* Balloon_Blue.png in Resources */ = {isa = PBXBuildFile; fileRef = 2879528214C2687D00567430 /* Balloon_Blue.png */; };
		2879528514C2687D00567430 /* Balloon_Blue@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 2879528314C2687D00567430 /* Balloon_Blue@2x.png */; };
		2879528A14C3874C00567430 /* LeftBalloonSelected.png in Resources */ = {isa = PBXBuildFile; fileRef = 2879528614C3874B00567430 /* LeftBalloonSelected.png */; };
		2879528B14C3874C00567430 /* LeftBalloonSelected@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 2879528714C3874B00567430 /* LeftBalloonSelected@2x.png */; };
		2879528C14C3874C00567430 /* RightBalloonSelected.png in Resources */ = {isa = PBXBuildFile; fileRef = 2879528814C3874C00567430 /* RightBalloonSelected.png */; };
		2879528D14C3874C00567430 /* RightBalloonSelected@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 2879528914C3874C00567430 /* RightBalloonSelected@2x.png */; };
		2879528F14C38FC200567430 /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2879528E14C38FC200567430 /* MobileCoreServices.framework */; };
		287952B014C4D67500567430 /* MUMessageRecipientViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 287952AF14C4D67500567430 /* MUMessageRecipientViewController.m */; };
		287A686714C6FB9F008B1BE7 /* GrayCheckmark.png in Resources */ = {isa = PBXBuildFile; fileRef = 287A686514C6FB9F008B1BE7 /* GrayCheckmark.png */; };
		287A686814C6FB9F008B1BE7 /* GrayCheckmark@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 287A686614C6FB9F008B1BE7 /* GrayCheckmark@2x.png */; };
		287A686F14C76E56008B1BE7 /* MUMessageAttachmentViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 287A686E14C76E56008B1BE7 /* MUMessageAttachmentViewController.m */; };
		287A687414C777CC008B1BE7 /* GTMStringEncoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 287A687314C777CC008B1BE7 /* GTMStringEncoding.m */; };
		287BA29011B96C960010E031 /* MUDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = 287BA28F11B96C960010E031 /* MUDatabase.m */; };
		287BA33B11B97C470010E031 /* MUFavouriteServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 287BA33A11B97C470010E031 /* MUFavouriteServer.m */; };
		287BA34011B97EEE0010E031 /* MUFavouriteServerListController.m in Sources */ = {isa = PBXBuildFile; fileRef = 287BA33F11B97EEE0010E031 /* MUFavouriteServerListController.m */; };
		287BA3A611B996D90010E031 /* MUFavouriteServerEditViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 287BA3A511B996D90010E031 /* MUFavouriteServerEditViewController.m */; };
		2882857D18CE39B40034F319 /* MUOperatingSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 2882857C18CE39B40034F319 /* MUOperatingSystem.m */; };
		2882858118CE40C80034F319 /* MUBackgroundView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2882858018CE40C80034F319 /* MUBackgroundView.m */; };
		28851B94147DC97E00088C4F /* MULegalViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 28851B92147DC97D00088C4F /* MULegalViewController.m */; };
		28851B95147DC97E00088C4F /* MULegalViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 28851B93147DC97D00088C4F /* MULegalViewController.xib */; };
		288765FD0DF74451002DB57D /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 288765FC0DF74451002DB57D /* CoreGraphics.framework */; };
		288B55E01252903300563A28 /* MUServerCertificateTrustViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 288B55DF1252903300563A28 /* MUServerCertificateTrustViewController.m */; };
		288D6B60123D08EE00D37EDE /* MUCertificateViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 288D6B5F123D08EE00D37EDE /* MUCertificateViewController.m */; };
		28942D7C12456F9200C63A07 /* MUCertificateCreationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 28942D7B12456F9200C63A07 /* MUCertificateCreationView.m */; };
		28990AB1132FDA540034B406 /* libMumbleKit.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 28990AB0132FDA540034B406 /* libMumbleKit.a */; };
		289CBA18125693040015E58E /* MUServerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 289CBA17125693040015E58E /* MUServerViewController.m */; };
		289D254C11BC28BC00E39F2C /* MULanServerListController.m in Sources */ = {isa = PBXBuildFile; fileRef = 289D254B11BC28BC00E39F2C /* MULanServerListController.m */; };
		28A2AEB914786E6000F3B83F /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = 28A2AEB514786E6000F3B83F /* Default.png */; };
		28A2AEBA14786E6000F3B83F /* Default@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28A2AEB614786E6000F3B83F /* Default@2x.png */; };
		28A2AEBB14786E6000F3B83F /* icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 28A2AEB714786E6000F3B83F /* icon.png */; };
		28A2AEBC14786E6000F3B83F /* icon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28A2AEB814786E6000F3B83F /* icon@2x.png */; };
		28A2AEC114788BE300F3B83F /* MUColor.m in Sources */ = {isa = PBXBuildFile; fileRef = 28A2AEC014788BE300F3B83F /* MUColor.m */; };
		28AD733F0D9D9553002E5188 /* MainWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = 28AD733E0D9D9553002E5188 /* MainWindow.xib */; };
		28ADA303148A3E3B00C55E51 /* MUAudioQualityPreferencesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 28ADA302148A3E3B00C55E51 /* MUAudioQualityPreferencesViewController.m */; };
		28B034961F5354C3008E51C7 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 28B034951F5354C3008E51C7 /* LaunchScreen.storyboard */; };
		28BE998018CFA83800910551 /* BlackToolbarPatterniOS7@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28BE997F18CFA83800910551 /* BlackToolbarPatterniOS7@2x.png */; };
		28BE998218CFA8B900910551 /* BlackToolbarPatterniOS7.png in Resources */ = {isa = PBXBuildFile; fileRef = 28BE998118CFA8B900910551 /* BlackToolbarPatterniOS7.png */; };
		28BE998518CFB96A00910551 /* MUHorizontalFlipTransitionDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 28BE998418CFB96A00910551 /* MUHorizontalFlipTransitionDelegate.m */; };
		28BE998818CFCDE600910551 /* MUServerTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 28BE998718CFCDE600910551 /* MUServerTableViewCell.m */; };
		28BE998A18CFD77400910551 /* Default-iOS7-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28BE998918CFD77400910551 /* Default-iOS7-568h@2x.png */; };
		28BE998E18CFD7DC00910551 /* Default-iOS7@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28BE998D18CFD7DC00910551 /* Default-iOS7@2x.png */; };
		28BE999218CFE1FD00910551 /* icon7@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28BE999118CFE1FD00910551 /* icon7@2x.png */; };
		28BE999918CFED9A00910551 /* Balloon_2_Right.png in Resources */ = {isa = PBXBuildFile; fileRef = 28BE999718CFED9A00910551 /* Balloon_2_Right.png */; };
		28BE999A18CFED9A00910551 /* Balloon_2_Right@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28BE999818CFED9A00910551 /* Balloon_2_Right@2x.png */; };
		28BE999F18CFF03D00910551 /* LeftBalloonSelectedMono.png in Resources */ = {isa = PBXBuildFile; fileRef = 28BE999B18CFF03D00910551 /* LeftBalloonSelectedMono.png */; };
		28BE99A018CFF03D00910551 /* LeftBalloonSelectedMono@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28BE999C18CFF03D00910551 /* LeftBalloonSelectedMono@2x.png */; };
		28BE99A118CFF03D00910551 /* RightBalloonSelectedMono.png in Resources */ = {isa = PBXBuildFile; fileRef = 28BE999D18CFF03D00910551 /* RightBalloonSelectedMono.png */; };
		28BE99A218CFF03D00910551 /* RightBalloonSelectedMono@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28BE999E18CFF03D00910551 /* RightBalloonSelectedMono@2x.png */; };
		28BF81D2139AFFD50078B722 /* MUCertificateDiskImportViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 28BF81D1139AFFD50078B722 /* MUCertificateDiskImportViewController.m */; };
		28C6EF0A11BBF38100E426C8 /* MUCountryServerListController.m in Sources */ = {isa = PBXBuildFile; fileRef = 28C6EF0911BBF38100E426C8 /* MUCountryServerListController.m */; };
		28D963961639B9E4002A9E73 /* iconpad.png in Resources */ = {isa = PBXBuildFile; fileRef = 28D963951639B9E4002A9E73 /* iconpad.png */; };
		28D963981639B9E8002A9E73 /* iconpad@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28D963971639B9E8002A9E73 /* iconpad@2x.png */; };
		28DC1C5C13DE596B0037CDC2 /* authenticated.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C1313DE596B0037CDC2 /* authenticated.png */; };
		28DC1C5D13DE596B0037CDC2 /* authenticated@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C1413DE596B0037CDC2 /* authenticated@2x.png */; };
		28DC1C6513DE596B0037CDC2 /* certificatecell-selected.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C1C13DE596B0037CDC2 /* certificatecell-selected.png */; };
		28DC1C6613DE596B0037CDC2 /* certificatecell-selected@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C1D13DE596B0037CDC2 /* certificatecell-selected@2x.png */; };
		28DC1C6713DE596B0037CDC2 /* certificatecell.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C1E13DE596B0037CDC2 /* certificatecell.png */; };
		28DC1C6813DE596B0037CDC2 /* certificatecell@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C1F13DE596B0037CDC2 /* certificatecell@2x.png */; };
		28DC1C6913DE596B0037CDC2 /* channel.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C2013DE596B0037CDC2 /* channel.png */; };
		28DC1C6B13DE596B0037CDC2 /* channel@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C2213DE596B0037CDC2 /* channel@2x.png */; };
		28DC1C7013DE596B0037CDC2 /* Continents.plist in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C2713DE596B0037CDC2 /* Continents.plist */; };
		28DC1C7213DE596B0037CDC2 /* Countries.plist in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C2913DE596B0037CDC2 /* Countries.plist */; };
		28DC1C7313DE596B0037CDC2 /* deafened_self.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C2A13DE596B0037CDC2 /* deafened_self.png */; };
		28DC1C7413DE596B0037CDC2 /* deafened_self@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C2B13DE596B0037CDC2 /* deafened_self@2x.png */; };
		28DC1C7513DE596B0037CDC2 /* deafened_server.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C2C13DE596B0037CDC2 /* deafened_server.png */; };
		28DC1C7613DE596B0037CDC2 /* deafened_server@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C2D13DE596B0037CDC2 /* deafened_server@2x.png */; };
		28DC1C7B13DE596B0037CDC2 /* down.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C3213DE596B0037CDC2 /* down.png */; };
		28DC1C7C13DE596B0037CDC2 /* down@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C3313DE596B0037CDC2 /* down@2x.png */; };
		28DC1C8313DE596B0037CDC2 /* Legal.html in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C3A13DE596B0037CDC2 /* Legal.html */; };
		28DC1C8413DE596B0037CDC2 /* muted_local.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C3B13DE596B0037CDC2 /* muted_local.png */; };
		28DC1C8513DE596B0037CDC2 /* muted_local@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C3C13DE596B0037CDC2 /* muted_local@2x.png */; };
		28DC1C8613DE596B0037CDC2 /* muted_self.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C3D13DE596B0037CDC2 /* muted_self.png */; };
		28DC1C8713DE596B0037CDC2 /* muted_self@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C3E13DE596B0037CDC2 /* muted_self@2x.png */; };
		28DC1C8813DE596B0037CDC2 /* muted_server.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C3F13DE596B0037CDC2 /* muted_server.png */; };
		28DC1C8913DE596B0037CDC2 /* muted_server@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C4013DE596B0037CDC2 /* muted_server@2x.png */; };
		28DC1C8A13DE596B0037CDC2 /* muted_suppressed.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C4113DE596B0037CDC2 /* muted_suppressed.png */; };
		28DC1C8B13DE596B0037CDC2 /* muted_suppressed@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C4213DE596B0037CDC2 /* muted_suppressed@2x.png */; };
		28DC1C8F13DE596B0037CDC2 /* priorityspeaker.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C4613DE596B0037CDC2 /* priorityspeaker.png */; };
		28DC1C9013DE596B0037CDC2 /* priorityspeaker@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C4713DE596B0037CDC2 /* priorityspeaker@2x.png */; };
		28DC1C9713DE596B0037CDC2 /* talking_alt.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C4E13DE596B0037CDC2 /* talking_alt.png */; };
		28DC1C9913DE596B0037CDC2 /* talking_alt@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C5013DE596B0037CDC2 /* talking_alt@2x.png */; };
		28DC1C9A13DE596B0037CDC2 /* talking_off.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C5113DE596B0037CDC2 /* talking_off.png */; };
		28DC1C9C13DE596B0037CDC2 /* talking_off@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C5313DE596B0037CDC2 /* talking_off@2x.png */; };
		28DC1C9D13DE596B0037CDC2 /* talking_on.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C5413DE596B0037CDC2 /* talking_on.png */; };
		28DC1C9F13DE596B0037CDC2 /* talking_on@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C5613DE596B0037CDC2 /* talking_on@2x.png */; };
		28DC1CA013DE596B0037CDC2 /* talking_whisper.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C5713DE596B0037CDC2 /* talking_whisper.png */; };
		28DC1CA213DE596B0037CDC2 /* talking_whisper@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C5913DE596B0037CDC2 /* talking_whisper@2x.png */; };
		28DC1CA313DE596B0037CDC2 /* up.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C5A13DE596B0037CDC2 /* up.png */; };
		28DC1CA413DE596B0037CDC2 /* up@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28DC1C5B13DE596B0037CDC2 /* up@2x.png */; };
		28EF155D14D8738C008A35A4 /* MUMessagesDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = 28EF155C14D8738C008A35A4 /* MUMessagesDatabase.m */; };
		28F019911364585C00E402F6 /* MUServerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 28F019901364585B00E402F6 /* MUServerCell.m */; };
		28F04B2214898A7100C90909 /* MUAdvancedAudioPreferencesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 28F04B2114898A7100C90909 /* MUAdvancedAudioPreferencesViewController.m */; };
		28F0835F147F102F00DC126F /* publist.xml in Resources */ = {isa = PBXBuildFile; fileRef = 28F0835E147F102F00DC126F /* publist.xml */; };
		28F08362147F263C00DC126F /* MUAudioBarView.m in Sources */ = {isa = PBXBuildFile; fileRef = 28F08361147F263B00DC126F /* MUAudioBarView.m */; };
		28F08365147F369200DC126F /* MUAudioBarViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 28F08364147F369200DC126F /* MUAudioBarViewCell.m */; };
		28F79C69147966840003B8BA /* WelcomeScreenIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 28F79C68147966840003B8BA /* WelcomeScreenIcon.png */; };
		28F79C6B147968C60003B8BA /* WelcomeScreenIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28F79C6A147968C60003B8BA /* WelcomeScreenIcon@2x.png */; };
		28F79C6D14796B2F0003B8BA /* libsqlite3.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 28F79C6C14796B2E0003B8BA /* libsqlite3.dylib */; };
		28F79C70147973D60003B8BA /* MUUserStateAcessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 28F79C6F147973D50003B8BA /* MUUserStateAcessoryView.m */; };
		28F79C73147991490003B8BA /* MUAccessTokenViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 28F79C72147991480003B8BA /* MUAccessTokenViewController.m */; };
		28F79CA11479C2180003B8BA /* BackgroundTextureBlackGradient@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28F79CA01479C2180003B8BA /* BackgroundTextureBlackGradient@2x.png */; };
		28F79CA31479C23F0003B8BA /* BackgroundTextureBlackGradient.png in Resources */ = {isa = PBXBuildFile; fileRef = 28F79CA21479C23F0003B8BA /* BackgroundTextureBlackGradient.png */; };
		28F79CA61479D7E80003B8BA /* MUTableViewHeaderLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 28F79CA51479D7E60003B8BA /* MUTableViewHeaderLabel.m */; };
		28F79CA9147AB62B0003B8BA /* MUNotificationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 28F79CA8147AB6280003B8BA /* MUNotificationController.m */; };
		28F9174811B946250030D649 /* FMDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = 28F9174211B946250030D649 /* FMDatabase.m */; };
		28F9174911B946250030D649 /* FMDatabaseAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 28F9174411B946250030D649 /* FMDatabaseAdditions.m */; };
		28F9174B11B946250030D649 /* FMResultSet.m in Sources */ = {isa = PBXBuildFile; fileRef = 28F9174711B946250030D649 /* FMResultSet.m */; };
		28F9E1BF15EBDF2400D52001 /* MURemoteControlServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 28F9E1BE15EBDF2400D52001 /* MURemoteControlServer.m */; };
		28FAA35F14D74C1600F6D711 /* SmallMumbleIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 28FAA35D14D74C1600F6D711 /* SmallMumbleIcon.png */; };
		28FAA36014D74C1600F6D711 /* SmallMumbleIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 28FAA35E14D74C1600F6D711 /* SmallMumbleIcon@2x.png */; };
		28FAA36414D7551600F6D711 /* MKNumberBadgeView.m in Sources */ = {isa = PBXBuildFile; fileRef = 28FAA36314D7551600F6D711 /* MKNumberBadgeView.m */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
		28990A8D132FD9CC0034B406 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 2861C28E116BE91B002B8514 /* MumbleKit.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 28BCF2C1132AE3B40003AEC1;
			remoteInfo = "MumbleKit (iOS)";
		};
		28990A8F132FD9CC0034B406 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 2861C28E116BE91B002B8514 /* MumbleKit.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 2845A71A132D9B2F0034D631;
			remoteInfo = "MumbleKit (Mac)";
		};
		28990AAE132FDA4B0034B406 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 2861C28E116BE91B002B8514 /* MumbleKit.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 28BCF2C0132AE3B40003AEC1;
			remoteInfo = "MumbleKit (iOS)";
		};
/* End PBXContainerItemProxy section */

/* Begin PBXFileReference section */
		1D30AB110D05D00D00671497 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
		1D6058910D05DD3D006BFB54 /* Mumble.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Mumble.app; sourceTree = BUILT_PRODUCTS_DIR; };
		1DF5F4DF0D08C38300B7A737 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
		2801C35911CA9F1A00E664E8 /* MUPreferencesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUPreferencesViewController.h; sourceTree = "<group>"; };
		2801C35A11CA9F1A00E664E8 /* MUPreferencesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUPreferencesViewController.m; sourceTree = "<group>"; };
		280256371510D70D00178B08 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = Localizable.strings; sourceTree = "<group>"; };
		2802563B1510DDCA00178B08 /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = Localizable.strings; sourceTree = "<group>"; };
		2802ABFE14C9E948000983A5 /* MUDataURL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUDataURL.h; sourceTree = "<group>"; };
		2802ABFF14C9E948000983A5 /* MUDataURL.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUDataURL.m; sourceTree = "<group>"; };
		2802AC0114CB0130000983A5 /* MUImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUImage.h; sourceTree = "<group>"; };
		2802AC0214CB0131000983A5 /* MUImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUImage.m; sourceTree = "<group>"; };
		2802AC0414CB024A000983A5 /* MUImageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUImageViewController.h; sourceTree = "<group>"; };
		2802AC0514CB024A000983A5 /* MUImageViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUImageViewController.m; sourceTree = "<group>"; };
		2802AC0B14CB2E2A000983A5 /* MUTextMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUTextMessage.h; sourceTree = "<group>"; };
		2802AC0C14CB2E2B000983A5 /* MUTextMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUTextMessage.m; sourceTree = "<group>"; };
		280D9AD813EAFAAE003B64A0 /* MUServerRootViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUServerRootViewController.h; sourceTree = "<group>"; };
		280D9AD913EAFAAE003B64A0 /* MUServerRootViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUServerRootViewController.m; sourceTree = "<group>"; };
		2813B1CF15EBFDA90049A59A /* MURemoteControlPreferencesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MURemoteControlPreferencesViewController.h; sourceTree = "<group>"; };
		2813B1D015EBFDA90049A59A /* MURemoteControlPreferencesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MURemoteControlPreferencesViewController.m; sourceTree = "<group>"; };
		2822AC0414878AC500E9DB17 /* MUConnectionController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUConnectionController.h; sourceTree = "<group>"; };
		2822AC0514878AC500E9DB17 /* MUConnectionController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUConnectionController.m; sourceTree = "<group>"; };
		28234D5B13F09148006B830D /* talkbutton_off.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = talkbutton_off.png; path = Resources/talkbutton_off.png; sourceTree = "<group>"; };
		28234D5C13F09148006B830D /* talkbutton_off@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "talkbutton_off@2x.png"; path = "Resources/talkbutton_off@2x.png"; sourceTree = "<group>"; };
		28234D5D13F09148006B830D /* talkbutton_on.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = talkbutton_on.png; path = Resources/talkbutton_on.png; sourceTree = "<group>"; };
		28234D5E13F09148006B830D /* talkbutton_on@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "talkbutton_on@2x.png"; path = "Resources/talkbutton_on@2x.png"; sourceTree = "<group>"; };
		282F6A2313620BD5008F555B /* MUCertificateController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUCertificateController.h; sourceTree = "<group>"; };
		282F6A2413620BD5008F555B /* MUCertificateController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUCertificateController.m; sourceTree = "<group>"; };
		283363D913EF154C00A04F04 /* MUAudioTransmissionPreferencesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUAudioTransmissionPreferencesViewController.h; sourceTree = "<group>"; };
		283363DA13EF154C00A04F04 /* MUAudioTransmissionPreferencesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUAudioTransmissionPreferencesViewController.m; sourceTree = "<group>"; };
		2836767B1525053A0015958E /* MUCertificateChainBuilder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUCertificateChainBuilder.h; sourceTree = "<group>"; };
		2836767C1525053A0015958E /* MUCertificateChainBuilder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUCertificateChainBuilder.m; sourceTree = "<group>"; };
		2838EA0D129316C200035C5D /* MUCertificatePreferencesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUCertificatePreferencesViewController.h; sourceTree = "<group>"; };
		2838EA0E129316C200035C5D /* MUCertificatePreferencesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUCertificatePreferencesViewController.m; sourceTree = "<group>"; };
		2843040816BF25590025A783 /* MumbleMenuButton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = MumbleMenuButton.png; path = Resources/MumbleMenuButton.png; sourceTree = "<group>"; };
		2843040916BF25590025A783 /* MumbleMenuButton@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "MumbleMenuButton@2x.png"; path = "Resources/MumbleMenuButton@2x.png"; sourceTree = "<group>"; };
		28451943163463C90027FAB3 /* Default-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-568h@2x.png"; sourceTree = "<group>"; };
		2845194716346F5B0027FAB3 /* WelcomeScreenIcon-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "WelcomeScreenIcon-568h@2x.png"; path = "Resources/WelcomeScreenIcon-568h@2x.png"; sourceTree = "<group>"; };
		284519491634849E0027FAB3 /* BackgroundTextureBlackGradient-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "BackgroundTextureBlackGradient-568h@2x.png"; path = "Resources/BackgroundTextureBlackGradient-568h@2x.png"; sourceTree = "<group>"; };
		2846C7D416F4A08F00739FD8 /* MUServerButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUServerButton.h; sourceTree = "<group>"; };
		2846C7D516F4A08F00739FD8 /* MUServerButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUServerButton.m; sourceTree = "<group>"; };
		28529B391541C042003DD813 /* certificatecreation.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = certificatecreation.png; path = Resources/certificatecreation.png; sourceTree = "<group>"; };
		28529B3A1541C042003DD813 /* certificatecreation@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "certificatecreation@2x.png"; path = "Resources/certificatecreation@2x.png"; sourceTree = "<group>"; };
		2858A57F123B9E5700A82155 /* MUCertificateCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MUCertificateCell.xib; sourceTree = "<group>"; };
		2858A5AB123BA08D00A82155 /* MUCertificateCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUCertificateCell.h; sourceTree = "<group>"; };
		2858A5AC123BA08D00A82155 /* MUCertificateCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUCertificateCell.m; sourceTree = "<group>"; };
		2858DBA11233E31B000D6F75 /* MUVersionChecker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUVersionChecker.h; sourceTree = "<group>"; };
		2858DBA21233E31B000D6F75 /* MUVersionChecker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUVersionChecker.m; sourceTree = "<group>"; };
		285AF2691840DEE20065E339 /* MUAudioMixerDebugViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUAudioMixerDebugViewController.h; sourceTree = "<group>"; };
		285AF26A1840DEE20065E339 /* MUAudioMixerDebugViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUAudioMixerDebugViewController.m; sourceTree = "<group>"; };
		285D6B6F16BEEFA700F239EB /* MUTextMessageProcessor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUTextMessageProcessor.h; sourceTree = "<group>"; };
		285D6B7016BEEFA700F239EB /* MUTextMessageProcessor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUTextMessageProcessor.m; sourceTree = "<group>"; };
		285D6B7316BF027A00F239EB /* MUTextMessageProcessorTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MUTextMessageProcessorTest.h; path = Tests/MUTextMessageProcessorTest.h; sourceTree = "<group>"; };
		285D6B7416BF027A00F239EB /* MUTextMessageProcessorTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MUTextMessageProcessorTest.m; path = Tests/MUTextMessageProcessorTest.m; sourceTree = "<group>"; };
		285D6B7C16BF02E900F239EB /* MumbleTests.octest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = MumbleTests.octest; sourceTree = BUILT_PRODUCTS_DIR; };
		285D6B7D16BF02E900F239EB /* SenTestingKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SenTestingKit.framework; path = Library/Frameworks/SenTestingKit.framework; sourceTree = DEVELOPER_DIR; };
		285D6B8316BF02E900F239EB /* MumbleTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "MumbleTests-Info.plist"; path = "Tests/MumbleTests-Info.plist"; sourceTree = SOURCE_ROOT; };
		285D6B8516BF02E900F239EB /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		285D6B8A16BF02E900F239EB /* MumbleTests.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MumbleTests.pch; path = Tests/MumbleTests.pch; sourceTree = SOURCE_ROOT; };
		285E2A60150D729B008AE185 /* AppStore.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = AppStore.xcconfig; path = BuildConfig/AppStore.xcconfig; sourceTree = "<group>"; };
		285E2A61150D729B008AE185 /* Base.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Base.xcconfig; path = BuildConfig/Base.xcconfig; sourceTree = "<group>"; };
		285E2A62150D729B008AE185 /* BetaDist.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = BetaDist.xcconfig; path = BuildConfig/BetaDist.xcconfig; sourceTree = "<group>"; };
		285E2A63150D729B008AE185 /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = BuildConfig/Debug.xcconfig; sourceTree = "<group>"; };
		285E2A64150D729B008AE185 /* Release.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = BuildConfig/Release.xcconfig; sourceTree = "<group>"; };
		2861C25D116BE905002B8514 /* MUApplicationDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUApplicationDelegate.h; sourceTree = "<group>"; };
		2861C25E116BE905002B8514 /* MUApplicationDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUApplicationDelegate.m; sourceTree = "<group>"; };
		2861C25F116BE905002B8514 /* MUCountryServerListController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUCountryServerListController.h; sourceTree = "<group>"; };
		2861C266116BE905002B8514 /* MUPublicServerList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUPublicServerList.h; sourceTree = "<group>"; };
		2861C267116BE905002B8514 /* MUPublicServerList.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUPublicServerList.m; sourceTree = "<group>"; };
		2861C268116BE905002B8514 /* MUPublicServerListController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUPublicServerListController.h; sourceTree = "<group>"; };
		2861C269116BE905002B8514 /* MUPublicServerListController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUPublicServerListController.m; sourceTree = "<group>"; };
		2861C270116BE905002B8514 /* MUWelcomeScreenPhone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUWelcomeScreenPhone.h; sourceTree = "<group>"; };
		2861C271116BE905002B8514 /* MUWelcomeScreenPhone.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUWelcomeScreenPhone.m; sourceTree = "<group>"; };
		2861C28E116BE91B002B8514 /* MumbleKit.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = MumbleKit.xcodeproj; path = MumbleKit/MumbleKit.xcodeproj; sourceTree = "<group>"; };
		2861C2AD116BE9B5002B8514 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
		2861C2B1116BE9B7002B8514 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
		2861C2B5116BE9BA002B8514 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
		286A3C9E158BB17E00C817D1 /* MUAudioSidetonePreferencesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUAudioSidetonePreferencesViewController.h; sourceTree = "<group>"; };
		286A3C9F158BB17E00C817D1 /* MUAudioSidetonePreferencesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUAudioSidetonePreferencesViewController.m; sourceTree = "<group>"; };
		286A3CA1158CCF9D00C817D1 /* MUWelcomeScreenPad.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUWelcomeScreenPad.h; sourceTree = "<group>"; };
		286A3CA2158CCF9D00C817D1 /* MUWelcomeScreenPad.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUWelcomeScreenPad.m; sourceTree = "<group>"; };
		286A3CA6158CD05A00C817D1 /* BackgroundTextureBlackGradientPad@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "BackgroundTextureBlackGradientPad@2x.png"; path = "Resources/BackgroundTextureBlackGradientPad@2x.png"; sourceTree = "<group>"; };
		286A3CA8158CD12E00C817D1 /* LogoBigShadow@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "LogoBigShadow@2x.png"; path = "Resources/LogoBigShadow@2x.png"; sourceTree = "<group>"; };
		286A3CAA158CD55700C817D1 /* LogoBigShadow.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = LogoBigShadow.png; path = Resources/LogoBigShadow.png; sourceTree = "<group>"; };
		286A3CAC158CD5F400C817D1 /* BackgroundTextureBlackGradientPad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = BackgroundTextureBlackGradientPad.png; path = Resources/BackgroundTextureBlackGradientPad.png; sourceTree = "<group>"; };
		286A3CAE158CEB5A00C817D1 /* MainWindow~iPad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = "MainWindow~iPad.xib"; sourceTree = "<group>"; };
		286A3CBC158CFDF000C817D1 /* MUPopoverBackgroundView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUPopoverBackgroundView.h; sourceTree = "<group>"; };
		286A3CBD158CFDF200C817D1 /* MUPopoverBackgroundView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUPopoverBackgroundView.m; sourceTree = "<group>"; };
		286A3CBF158CFEAB00C817D1 /* _UIPopoverViewBlackBackgroundArrowUp.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = _UIPopoverViewBlackBackgroundArrowUp.png; path = Resources/Apple/_UIPopoverViewBlackBackgroundArrowUp.png; sourceTree = "<group>"; };
		286A3CC0158CFEAB00C817D1 /* _UIPopoverViewBlackBackgroundArrowUp@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "_UIPopoverViewBlackBackgroundArrowUp@2x.png"; path = "Resources/Apple/_UIPopoverViewBlackBackgroundArrowUp@2x.png"; sourceTree = "<group>"; };
		286E925E148452A000B13593 /* MUVoiceActivitySetupViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUVoiceActivitySetupViewController.h; sourceTree = "<group>"; };
		286E925F148452A000B13593 /* MUVoiceActivitySetupViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUVoiceActivitySetupViewController.m; sourceTree = "<group>"; };
		287172A9151A041A00153D74 /* certificatecell-intermediate.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "certificatecell-intermediate.png"; path = "Resources/certificatecell-intermediate.png"; sourceTree = "<group>"; };
		287172AA151A041A00153D74 /* certificatecell-intermediate@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "certificatecell-intermediate@2x.png"; path = "Resources/certificatecell-intermediate@2x.png"; sourceTree = "<group>"; };
		287639F711D29D99009DB8B6 /* MUCertificateCreationProgressView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUCertificateCreationProgressView.h; sourceTree = "<group>"; };
		287639F811D29D99009DB8B6 /* MUCertificateCreationProgressView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUCertificateCreationProgressView.m; sourceTree = "<group>"; };
		287639FE11D2A242009DB8B6 /* MUCertificateCreationProgressView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MUCertificateCreationProgressView.xib; sourceTree = "<group>"; };
		28763A4411D2AA91009DB8B6 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
		2879523514BF519A00567430 /* MUMessagesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUMessagesViewController.h; sourceTree = "<group>"; };
		2879523614BF519A00567430 /* MUMessagesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUMessagesViewController.m; sourceTree = "<group>"; };
		2879525C14C0AFAC00567430 /* BlackToolbarPattern.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = BlackToolbarPattern.png; path = Resources/BlackToolbarPattern.png; sourceTree = "<group>"; };
		2879525D14C0AFAC00567430 /* BlackToolbarPattern@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "BlackToolbarPattern@2x.png"; path = "Resources/BlackToolbarPattern@2x.png"; sourceTree = "<group>"; };
		2879526A14C202C600567430 /* channelmsg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = channelmsg.png; path = Resources/channelmsg.png; sourceTree = "<group>"; };
		2879526B14C202C600567430 /* channelmsg@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "channelmsg@2x.png"; path = "Resources/channelmsg@2x.png"; sourceTree = "<group>"; };
		2879526E14C2043E00567430 /* usermsg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = usermsg.png; path = Resources/usermsg.png; sourceTree = "<group>"; };
		2879526F14C2043E00567430 /* usermsg@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "usermsg@2x.png"; path = "Resources/usermsg@2x.png"; sourceTree = "<group>"; };
		2879527B14C248C500567430 /* Balloon_2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Balloon_2.png; path = Resources/Apple/Balloon_2.png; sourceTree = "<group>"; };
		2879527C14C248C500567430 /* Balloon_2@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Balloon_2@2x.png"; path = "Resources/Apple/Balloon_2@2x.png"; sourceTree = "<group>"; };
		2879527F14C2504B00567430 /* MUMessageBubbleTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUMessageBubbleTableViewCell.h; sourceTree = "<group>"; };
		2879528014C2504C00567430 /* MUMessageBubbleTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUMessageBubbleTableViewCell.m; sourceTree = "<group>"; };
		2879528214C2687D00567430 /* Balloon_Blue.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Balloon_Blue.png; path = Resources/Apple/Balloon_Blue.png; sourceTree = "<group>"; };
		2879528314C2687D00567430 /* Balloon_Blue@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Balloon_Blue@2x.png"; path = "Resources/Apple/Balloon_Blue@2x.png"; sourceTree = "<group>"; };
		2879528614C3874B00567430 /* LeftBalloonSelected.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = LeftBalloonSelected.png; path = Resources/Apple/LeftBalloonSelected.png; sourceTree = "<group>"; };
		2879528714C3874B00567430 /* LeftBalloonSelected@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "LeftBalloonSelected@2x.png"; path = "Resources/Apple/LeftBalloonSelected@2x.png"; sourceTree = "<group>"; };
		2879528814C3874C00567430 /* RightBalloonSelected.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = RightBalloonSelected.png; path = Resources/Apple/RightBalloonSelected.png; sourceTree = "<group>"; };
		2879528914C3874C00567430 /* RightBalloonSelected@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "RightBalloonSelected@2x.png"; path = "Resources/Apple/RightBalloonSelected@2x.png"; sourceTree = "<group>"; };
		2879528E14C38FC200567430 /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
		287952AE14C4D67500567430 /* MUMessageRecipientViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUMessageRecipientViewController.h; sourceTree = "<group>"; };
		287952AF14C4D67500567430 /* MUMessageRecipientViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUMessageRecipientViewController.m; sourceTree = "<group>"; };
		287A686514C6FB9F008B1BE7 /* GrayCheckmark.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = GrayCheckmark.png; path = Resources/Apple/GrayCheckmark.png; sourceTree = "<group>"; };
		287A686614C6FB9F008B1BE7 /* GrayCheckmark@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "GrayCheckmark@2x.png"; path = "Resources/Apple/GrayCheckmark@2x.png"; sourceTree = "<group>"; };
		287A686D14C76E55008B1BE7 /* MUMessageAttachmentViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUMessageAttachmentViewController.h; sourceTree = "<group>"; };
		287A686E14C76E56008B1BE7 /* MUMessageAttachmentViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUMessageAttachmentViewController.m; sourceTree = "<group>"; };
		287A687114C777CC008B1BE7 /* GTMDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GTMDefines.h; sourceTree = "<group>"; };
		287A687214C777CC008B1BE7 /* GTMStringEncoding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GTMStringEncoding.h; sourceTree = "<group>"; };
		287A687314C777CC008B1BE7 /* GTMStringEncoding.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GTMStringEncoding.m; sourceTree = "<group>"; };
		287BA28E11B96C960010E031 /* MUDatabase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUDatabase.h; sourceTree = "<group>"; };
		287BA28F11B96C960010E031 /* MUDatabase.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUDatabase.m; sourceTree = "<group>"; };
		287BA33911B97C470010E031 /* MUFavouriteServer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUFavouriteServer.h; sourceTree = "<group>"; };
		287BA33A11B97C470010E031 /* MUFavouriteServer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUFavouriteServer.m; sourceTree = "<group>"; };
		287BA33E11B97EEE0010E031 /* MUFavouriteServerListController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUFavouriteServerListController.h; sourceTree = "<group>"; };
		287BA33F11B97EEE0010E031 /* MUFavouriteServerListController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUFavouriteServerListController.m; sourceTree = "<group>"; };
		287BA3A411B996D90010E031 /* MUFavouriteServerEditViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUFavouriteServerEditViewController.h; sourceTree = "<group>"; };
		287BA3A511B996D90010E031 /* MUFavouriteServerEditViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUFavouriteServerEditViewController.m; sourceTree = "<group>"; };
		2882857B18CE39B40034F319 /* MUOperatingSystem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUOperatingSystem.h; sourceTree = "<group>"; };
		2882857C18CE39B40034F319 /* MUOperatingSystem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUOperatingSystem.m; sourceTree = "<group>"; };
		2882857F18CE40C80034F319 /* MUBackgroundView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUBackgroundView.h; sourceTree = "<group>"; };
		2882858018CE40C80034F319 /* MUBackgroundView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUBackgroundView.m; sourceTree = "<group>"; };
		28851B91147DC97D00088C4F /* MULegalViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MULegalViewController.h; sourceTree = "<group>"; };
		28851B92147DC97D00088C4F /* MULegalViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MULegalViewController.m; sourceTree = "<group>"; };
		28851B93147DC97D00088C4F /* MULegalViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MULegalViewController.xib; sourceTree = "<group>"; };
		288765FC0DF74451002DB57D /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
		288B55DE1252903300563A28 /* MUServerCertificateTrustViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUServerCertificateTrustViewController.h; sourceTree = "<group>"; };
		288B55DF1252903300563A28 /* MUServerCertificateTrustViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUServerCertificateTrustViewController.m; sourceTree = "<group>"; };
		288D6B5E123D08EE00D37EDE /* MUCertificateViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUCertificateViewController.h; sourceTree = "<group>"; };
		288D6B5F123D08EE00D37EDE /* MUCertificateViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUCertificateViewController.m; sourceTree = "<group>"; };
		28942D7A12456F9200C63A07 /* MUCertificateCreationView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUCertificateCreationView.h; sourceTree = "<group>"; };
		28942D7B12456F9200C63A07 /* MUCertificateCreationView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUCertificateCreationView.m; sourceTree = "<group>"; };
		28990AB0132FDA540034B406 /* libMumbleKit.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libMumbleKit.a; sourceTree = BUILT_PRODUCTS_DIR; };
		289CBA16125693040015E58E /* MUServerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUServerViewController.h; sourceTree = "<group>"; };
		289CBA17125693040015E58E /* MUServerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUServerViewController.m; sourceTree = "<group>"; };
		289D254A11BC28BC00E39F2C /* MULanServerListController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MULanServerListController.h; sourceTree = "<group>"; };
		289D254B11BC28BC00E39F2C /* MULanServerListController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MULanServerListController.m; sourceTree = "<group>"; };
		28A2AEB514786E6000F3B83F /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = "<group>"; };
		28A2AEB614786E6000F3B83F /* Default@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default@2x.png"; sourceTree = "<group>"; };
		28A2AEB714786E6000F3B83F /* icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = icon.png; sourceTree = "<group>"; };
		28A2AEB814786E6000F3B83F /* icon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon@2x.png"; sourceTree = "<group>"; };
		28A2AEBF14788BE300F3B83F /* MUColor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUColor.h; sourceTree = "<group>"; };
		28A2AEC014788BE300F3B83F /* MUColor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUColor.m; sourceTree = "<group>"; };
		28AD733E0D9D9553002E5188 /* MainWindow.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = MainWindow.xib; path = ../MainWindow.xib; sourceTree = "<group>"; };
		28ADA301148A3E3B00C55E51 /* MUAudioQualityPreferencesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUAudioQualityPreferencesViewController.h; sourceTree = "<group>"; };
		28ADA302148A3E3B00C55E51 /* MUAudioQualityPreferencesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUAudioQualityPreferencesViewController.m; sourceTree = "<group>"; };
		28B034951F5354C3008E51C7 /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = LaunchScreen.storyboard; sourceTree = "<group>"; };
		28BE997F18CFA83800910551 /* BlackToolbarPatterniOS7@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "BlackToolbarPatterniOS7@2x.png"; path = "Resources/BlackToolbarPatterniOS7@2x.png"; sourceTree = "<group>"; };
		28BE998118CFA8B900910551 /* BlackToolbarPatterniOS7.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = BlackToolbarPatterniOS7.png; path = Resources/BlackToolbarPatterniOS7.png; sourceTree = "<group>"; };
		28BE998318CFB96A00910551 /* MUHorizontalFlipTransitionDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUHorizontalFlipTransitionDelegate.h; sourceTree = "<group>"; };
		28BE998418CFB96A00910551 /* MUHorizontalFlipTransitionDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUHorizontalFlipTransitionDelegate.m; sourceTree = "<group>"; };
		28BE998618CFCDE600910551 /* MUServerTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUServerTableViewCell.h; sourceTree = "<group>"; };
		28BE998718CFCDE600910551 /* MUServerTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUServerTableViewCell.m; sourceTree = "<group>"; };
		28BE998918CFD77400910551 /* Default-iOS7-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-iOS7-568h@2x.png"; sourceTree = "<group>"; };
		28BE998D18CFD7DC00910551 /* Default-iOS7@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-iOS7@2x.png"; sourceTree = "<group>"; };
		28BE999118CFE1FD00910551 /* icon7@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon7@2x.png"; sourceTree = "<group>"; };
		28BE999718CFED9A00910551 /* Balloon_2_Right.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Balloon_2_Right.png; path = Resources/Apple/Balloon_2_Right.png; sourceTree = "<group>"; };
		28BE999818CFED9A00910551 /* Balloon_2_Right@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Balloon_2_Right@2x.png"; path = "Resources/Apple/Balloon_2_Right@2x.png"; sourceTree = "<group>"; };
		28BE999B18CFF03D00910551 /* LeftBalloonSelectedMono.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = LeftBalloonSelectedMono.png; path = Resources/Apple/LeftBalloonSelectedMono.png; sourceTree = "<group>"; };
		28BE999C18CFF03D00910551 /* LeftBalloonSelectedMono@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "LeftBalloonSelectedMono@2x.png"; path = "Resources/Apple/LeftBalloonSelectedMono@2x.png"; sourceTree = "<group>"; };
		28BE999D18CFF03D00910551 /* RightBalloonSelectedMono.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = RightBalloonSelectedMono.png; path = Resources/Apple/RightBalloonSelectedMono.png; sourceTree = "<group>"; };
		28BE999E18CFF03D00910551 /* RightBalloonSelectedMono@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "RightBalloonSelectedMono@2x.png"; path = "Resources/Apple/RightBalloonSelectedMono@2x.png"; sourceTree = "<group>"; };
		28BF81D0139AFFD50078B722 /* MUCertificateDiskImportViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUCertificateDiskImportViewController.h; sourceTree = "<group>"; };
		28BF81D1139AFFD50078B722 /* MUCertificateDiskImportViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUCertificateDiskImportViewController.m; sourceTree = "<group>"; };
		28C6EF0911BBF38100E426C8 /* MUCountryServerListController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUCountryServerListController.m; sourceTree = "<group>"; };
		28D963951639B9E4002A9E73 /* iconpad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = iconpad.png; sourceTree = "<group>"; };
		28D963971639B9E8002A9E73 /* iconpad@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "iconpad@2x.png"; sourceTree = "<group>"; };
		28DC1C1313DE596B0037CDC2 /* authenticated.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = authenticated.png; path = Resources/authenticated.png; sourceTree = "<group>"; };
		28DC1C1413DE596B0037CDC2 /* authenticated@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "authenticated@2x.png"; path = "Resources/authenticated@2x.png"; sourceTree = "<group>"; };
		28DC1C1613DE596B0037CDC2 /* certificate16.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = certificate16.png; path = Resources/certificate16.png; sourceTree = "<group>"; };
		28DC1C1713DE596B0037CDC2 /* certificate32.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = certificate32.png; path = Resources/certificate32.png; sourceTree = "<group>"; };
		28DC1C1813DE596B0037CDC2 /* certificate64.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = certificate64.png; path = Resources/certificate64.png; sourceTree = "<group>"; };
		28DC1C1913DE596B0037CDC2 /* certificate128.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = certificate128.png; path = Resources/certificate128.png; sourceTree = "<group>"; };
		28DC1C1A13DE596B0037CDC2 /* certificate256.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = certificate256.png; path = Resources/certificate256.png; sourceTree = "<group>"; };
		28DC1C1B13DE596B0037CDC2 /* certificate512.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = certificate512.png; path = Resources/certificate512.png; sourceTree = "<group>"; };
		28DC1C1C13DE596B0037CDC2 /* certificatecell-selected.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "certificatecell-selected.png"; path = "Resources/certificatecell-selected.png"; sourceTree = "<group>"; };
		28DC1C1D13DE596B0037CDC2 /* certificatecell-selected@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "certificatecell-selected@2x.png"; path = "Resources/certificatecell-selected@2x.png"; sourceTree = "<group>"; };
		28DC1C1E13DE596B0037CDC2 /* certificatecell.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = certificatecell.png; path = Resources/certificatecell.png; sourceTree = "<group>"; };
		28DC1C1F13DE596B0037CDC2 /* certificatecell@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "certificatecell@2x.png"; path = "Resources/certificatecell@2x.png"; sourceTree = "<group>"; };
		28DC1C2013DE596B0037CDC2 /* channel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = channel.png; path = Resources/channel.png; sourceTree = "<group>"; };
		28DC1C2213DE596B0037CDC2 /* channel@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "channel@2x.png"; path = "Resources/channel@2x.png"; sourceTree = "<group>"; };
		28DC1C2713DE596B0037CDC2 /* Continents.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Continents.plist; path = Resources/Continents.plist; sourceTree = "<group>"; };
		28DC1C2913DE596B0037CDC2 /* Countries.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Countries.plist; path = Resources/Countries.plist; sourceTree = "<group>"; };
		28DC1C2A13DE596B0037CDC2 /* deafened_self.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = deafened_self.png; path = Resources/deafened_self.png; sourceTree = "<group>"; };
		28DC1C2B13DE596B0037CDC2 /* deafened_self@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "deafened_self@2x.png"; path = "Resources/deafened_self@2x.png"; sourceTree = "<group>"; };
		28DC1C2C13DE596B0037CDC2 /* deafened_server.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = deafened_server.png; path = Resources/deafened_server.png; sourceTree = "<group>"; };
		28DC1C2D13DE596B0037CDC2 /* deafened_server@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "deafened_server@2x.png"; path = "Resources/deafened_server@2x.png"; sourceTree = "<group>"; };
		28DC1C3213DE596B0037CDC2 /* down.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = down.png; path = Resources/down.png; sourceTree = "<group>"; };
		28DC1C3313DE596B0037CDC2 /* down@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "down@2x.png"; path = "Resources/down@2x.png"; sourceTree = "<group>"; };
		28DC1C3A13DE596B0037CDC2 /* Legal.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = Legal.html; path = Resources/Legal.html; sourceTree = "<group>"; };
		28DC1C3B13DE596B0037CDC2 /* muted_local.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = muted_local.png; path = Resources/muted_local.png; sourceTree = "<group>"; };
		28DC1C3C13DE596B0037CDC2 /* muted_local@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "muted_local@2x.png"; path = "Resources/muted_local@2x.png"; sourceTree = "<group>"; };
		28DC1C3D13DE596B0037CDC2 /* muted_self.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = muted_self.png; path = Resources/muted_self.png; sourceTree = "<group>"; };
		28DC1C3E13DE596B0037CDC2 /* muted_self@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "muted_self@2x.png"; path = "Resources/muted_self@2x.png"; sourceTree = "<group>"; };
		28DC1C3F13DE596B0037CDC2 /* muted_server.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = muted_server.png; path = Resources/muted_server.png; sourceTree = "<group>"; };
		28DC1C4013DE596B0037CDC2 /* muted_server@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "muted_server@2x.png"; path = "Resources/muted_server@2x.png"; sourceTree = "<group>"; };
		28DC1C4113DE596B0037CDC2 /* muted_suppressed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = muted_suppressed.png; path = Resources/muted_suppressed.png; sourceTree = "<group>"; };
		28DC1C4213DE596B0037CDC2 /* muted_suppressed@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "muted_suppressed@2x.png"; path = "Resources/muted_suppressed@2x.png"; sourceTree = "<group>"; };
		28DC1C4613DE596B0037CDC2 /* priorityspeaker.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = priorityspeaker.png; path = Resources/priorityspeaker.png; sourceTree = "<group>"; };
		28DC1C4713DE596B0037CDC2 /* priorityspeaker@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "priorityspeaker@2x.png"; path = "Resources/priorityspeaker@2x.png"; sourceTree = "<group>"; };
		28DC1C4913DE596B0037CDC2 /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = README; path = Resources/README; sourceTree = "<group>"; };
		28DC1C4E13DE596B0037CDC2 /* talking_alt.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = talking_alt.png; path = Resources/talking_alt.png; sourceTree = "<group>"; };
		28DC1C5013DE596B0037CDC2 /* talking_alt@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "talking_alt@2x.png"; path = "Resources/talking_alt@2x.png"; sourceTree = "<group>"; };
		28DC1C5113DE596B0037CDC2 /* talking_off.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = talking_off.png; path = Resources/talking_off.png; sourceTree = "<group>"; };
		28DC1C5313DE596B0037CDC2 /* talking_off@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "talking_off@2x.png"; path = "Resources/talking_off@2x.png"; sourceTree = "<group>"; };
		28DC1C5413DE596B0037CDC2 /* talking_on.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = talking_on.png; path = Resources/talking_on.png; sourceTree = "<group>"; };
		28DC1C5613DE596B0037CDC2 /* talking_on@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "talking_on@2x.png"; path = "Resources/talking_on@2x.png"; sourceTree = "<group>"; };
		28DC1C5713DE596B0037CDC2 /* talking_whisper.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = talking_whisper.png; path = Resources/talking_whisper.png; sourceTree = "<group>"; };
		28DC1C5913DE596B0037CDC2 /* talking_whisper@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "talking_whisper@2x.png"; path = "Resources/talking_whisper@2x.png"; sourceTree = "<group>"; };
		28DC1C5A13DE596B0037CDC2 /* up.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = up.png; path = Resources/up.png; sourceTree = "<group>"; };
		28DC1C5B13DE596B0037CDC2 /* up@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "up@2x.png"; path = "Resources/up@2x.png"; sourceTree = "<group>"; };
		28EF155B14D8738C008A35A4 /* MUMessagesDatabase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUMessagesDatabase.h; sourceTree = "<group>"; };
		28EF155C14D8738C008A35A4 /* MUMessagesDatabase.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUMessagesDatabase.m; sourceTree = "<group>"; };
		28F0198F1364585B00E402F6 /* MUServerCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUServerCell.h; sourceTree = "<group>"; };
		28F019901364585B00E402F6 /* MUServerCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUServerCell.m; sourceTree = "<group>"; };
		28F04B2014898A7100C90909 /* MUAdvancedAudioPreferencesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUAdvancedAudioPreferencesViewController.h; sourceTree = "<group>"; };
		28F04B2114898A7100C90909 /* MUAdvancedAudioPreferencesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUAdvancedAudioPreferencesViewController.m; sourceTree = "<group>"; };
		28F0835E147F102F00DC126F /* publist.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; name = publist.xml; path = Resources/publist.xml; sourceTree = "<group>"; };
		28F08360147F263B00DC126F /* MUAudioBarView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUAudioBarView.h; sourceTree = "<group>"; };
		28F08361147F263B00DC126F /* MUAudioBarView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUAudioBarView.m; sourceTree = "<group>"; };
		28F08363147F369100DC126F /* MUAudioBarViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUAudioBarViewCell.h; sourceTree = "<group>"; };
		28F08364147F369200DC126F /* MUAudioBarViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUAudioBarViewCell.m; sourceTree = "<group>"; };
		28F79C68147966840003B8BA /* WelcomeScreenIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = WelcomeScreenIcon.png; path = Resources/WelcomeScreenIcon.png; sourceTree = "<group>"; };
		28F79C6A147968C60003B8BA /* WelcomeScreenIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "WelcomeScreenIcon@2x.png"; path = "Resources/WelcomeScreenIcon@2x.png"; sourceTree = "<group>"; };
		28F79C6C14796B2E0003B8BA /* libsqlite3.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libsqlite3.dylib; path = usr/lib/libsqlite3.dylib; sourceTree = SDKROOT; };
		28F79C6E147973D40003B8BA /* MUUserStateAcessoryView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUUserStateAcessoryView.h; sourceTree = "<group>"; };
		28F79C6F147973D50003B8BA /* MUUserStateAcessoryView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUUserStateAcessoryView.m; sourceTree = "<group>"; };
		28F79C71147991480003B8BA /* MUAccessTokenViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUAccessTokenViewController.h; sourceTree = "<group>"; };
		28F79C72147991480003B8BA /* MUAccessTokenViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUAccessTokenViewController.m; sourceTree = "<group>"; };
		28F79CA01479C2180003B8BA /* BackgroundTextureBlackGradient@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "BackgroundTextureBlackGradient@2x.png"; path = "Resources/BackgroundTextureBlackGradient@2x.png"; sourceTree = "<group>"; };
		28F79CA21479C23F0003B8BA /* BackgroundTextureBlackGradient.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = BackgroundTextureBlackGradient.png; path = Resources/BackgroundTextureBlackGradient.png; sourceTree = "<group>"; };
		28F79CA41479D7E00003B8BA /* MUTableViewHeaderLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUTableViewHeaderLabel.h; sourceTree = "<group>"; };
		28F79CA51479D7E60003B8BA /* MUTableViewHeaderLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUTableViewHeaderLabel.m; sourceTree = "<group>"; };
		28F79CA7147AB6260003B8BA /* MUNotificationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUNotificationController.h; sourceTree = "<group>"; };
		28F79CA8147AB6280003B8BA /* MUNotificationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MUNotificationController.m; sourceTree = "<group>"; };
		28F9174111B946250030D649 /* FMDatabase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FMDatabase.h; path = Dependencies/fmdb/src/FMDatabase.h; sourceTree = "<group>"; };
		28F9174211B946250030D649 /* FMDatabase.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FMDatabase.m; path = Dependencies/fmdb/src/FMDatabase.m; sourceTree = "<group>"; };
		28F9174311B946250030D649 /* FMDatabaseAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FMDatabaseAdditions.h; path = Dependencies/fmdb/src/FMDatabaseAdditions.h; sourceTree = "<group>"; };
		28F9174411B946250030D649 /* FMDatabaseAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FMDatabaseAdditions.m; path = Dependencies/fmdb/src/FMDatabaseAdditions.m; sourceTree = "<group>"; };
		28F9174611B946250030D649 /* FMResultSet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FMResultSet.h; path = Dependencies/fmdb/src/FMResultSet.h; sourceTree = "<group>"; };
		28F9174711B946250030D649 /* FMResultSet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FMResultSet.m; path = Dependencies/fmdb/src/FMResultSet.m; sourceTree = "<group>"; };
		28F9E1BD15EBDF2400D52001 /* MURemoteControlServer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MURemoteControlServer.h; sourceTree = "<group>"; };
		28F9E1BE15EBDF2400D52001 /* MURemoteControlServer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MURemoteControlServer.m; sourceTree = "<group>"; };
		28FAA35D14D74C1600F6D711 /* SmallMumbleIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = SmallMumbleIcon.png; path = Resources/SmallMumbleIcon.png; sourceTree = "<group>"; };
		28FAA35E14D74C1600F6D711 /* SmallMumbleIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "SmallMumbleIcon@2x.png"; path = "Resources/SmallMumbleIcon@2x.png"; sourceTree = "<group>"; };
		28FAA36214D7551600F6D711 /* MKNumberBadgeView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MKNumberBadgeView.h; path = Dependencies/MKNumberBadgeView/MKNumberBadgeView.h; sourceTree = "<group>"; };
		28FAA36314D7551600F6D711 /* MKNumberBadgeView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MKNumberBadgeView.m; path = Dependencies/MKNumberBadgeView/MKNumberBadgeView.m; sourceTree = "<group>"; };
		29B97316FDCFA39411CA2CEA /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = Source/main.m; sourceTree = "<group>"; };
		32CA4F630368D1EE00C91783 /* Mumble.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Mumble.pch; path = Source/Mumble.pch; sourceTree = "<group>"; };
		8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = Source/Info.plist; plistStructureDefinitionIdentifier = "com.apple.xcode.plist.structure-definition.iphone.info-plist"; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		1D60588F0D05DD3D006BFB54 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				2879528F14C38FC200567430 /* MobileCoreServices.framework in Frameworks */,
				28F79C6D14796B2F0003B8BA /* libsqlite3.dylib in Frameworks */,
				28990AB1132FDA540034B406 /* libMumbleKit.a in Frameworks */,
				1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */,
				1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */,
				288765FD0DF74451002DB57D /* CoreGraphics.framework in Frameworks */,
				2861C2AE116BE9B5002B8514 /* AudioToolbox.framework in Frameworks */,
				2861C2B2116BE9B7002B8514 /* CFNetwork.framework in Frameworks */,
				2861C2B6116BE9BA002B8514 /* Security.framework in Frameworks */,
				28763A4511D2AA91009DB8B6 /* QuartzCore.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		285D6B7816BF02E900F239EB /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				285D6B7E16BF02E900F239EB /* SenTestingKit.framework in Frameworks */,
				285D6B7F16BF02E900F239EB /* UIKit.framework in Frameworks */,
				285D6B8016BF02E900F239EB /* Foundation.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		080E96DDFE201D6D7F000001 /* Classes */ = {
			isa = PBXGroup;
			children = (
				2872F7C4124668880078C0B1 /* Certificates */,
				28BF8E1C11D93A1900B72770 /* Database */,
				2838EA0C1293165700035C5D /* Preferences */,
				28AD733E0D9D9553002E5188 /* MainWindow.xib */,
				286A3CAE158CEB5A00C817D1 /* MainWindow~iPad.xib */,
				28B034951F5354C3008E51C7 /* LaunchScreen.storyboard */,
				2882857B18CE39B40034F319 /* MUOperatingSystem.h */,
				2882857C18CE39B40034F319 /* MUOperatingSystem.m */,
				2861C25D116BE905002B8514 /* MUApplicationDelegate.h */,
				2861C25E116BE905002B8514 /* MUApplicationDelegate.m */,
				2861C25F116BE905002B8514 /* MUCountryServerListController.h */,
				28C6EF0911BBF38100E426C8 /* MUCountryServerListController.m */,
				2861C266116BE905002B8514 /* MUPublicServerList.h */,
				2861C267116BE905002B8514 /* MUPublicServerList.m */,
				2861C268116BE905002B8514 /* MUPublicServerListController.h */,
				2861C269116BE905002B8514 /* MUPublicServerListController.m */,
				2861C270116BE905002B8514 /* MUWelcomeScreenPhone.h */,
				2861C271116BE905002B8514 /* MUWelcomeScreenPhone.m */,
				286A3CA1158CCF9D00C817D1 /* MUWelcomeScreenPad.h */,
				286A3CA2158CCF9D00C817D1 /* MUWelcomeScreenPad.m */,
				287BA33E11B97EEE0010E031 /* MUFavouriteServerListController.h */,
				287BA33F11B97EEE0010E031 /* MUFavouriteServerListController.m */,
				287BA3A411B996D90010E031 /* MUFavouriteServerEditViewController.h */,
				287BA3A511B996D90010E031 /* MUFavouriteServerEditViewController.m */,
				289D254A11BC28BC00E39F2C /* MULanServerListController.h */,
				289D254B11BC28BC00E39F2C /* MULanServerListController.m */,
				2858DBA11233E31B000D6F75 /* MUVersionChecker.h */,
				2858DBA21233E31B000D6F75 /* MUVersionChecker.m */,
				288B55DE1252903300563A28 /* MUServerCertificateTrustViewController.h */,
				288B55DF1252903300563A28 /* MUServerCertificateTrustViewController.m */,
				28F0198F1364585B00E402F6 /* MUServerCell.h */,
				28F019901364585B00E402F6 /* MUServerCell.m */,
				2846C7D416F4A08F00739FD8 /* MUServerButton.h */,
				2846C7D516F4A08F00739FD8 /* MUServerButton.m */,
				280D9AD813EAFAAE003B64A0 /* MUServerRootViewController.h */,
				280D9AD913EAFAAE003B64A0 /* MUServerRootViewController.m */,
				289CBA16125693040015E58E /* MUServerViewController.h */,
				289CBA17125693040015E58E /* MUServerViewController.m */,
				28BE998618CFCDE600910551 /* MUServerTableViewCell.h */,
				28BE998718CFCDE600910551 /* MUServerTableViewCell.m */,
				28A2AEBF14788BE300F3B83F /* MUColor.h */,
				28A2AEC014788BE300F3B83F /* MUColor.m */,
				28F79C6E147973D40003B8BA /* MUUserStateAcessoryView.h */,
				28F79C6F147973D50003B8BA /* MUUserStateAcessoryView.m */,
				28F79C71147991480003B8BA /* MUAccessTokenViewController.h */,
				28F79C72147991480003B8BA /* MUAccessTokenViewController.m */,
				28F79CA41479D7E00003B8BA /* MUTableViewHeaderLabel.h */,
				28F79CA51479D7E60003B8BA /* MUTableViewHeaderLabel.m */,
				28F79CA7147AB6260003B8BA /* MUNotificationController.h */,
				28F79CA8147AB6280003B8BA /* MUNotificationController.m */,
				28851B91147DC97D00088C4F /* MULegalViewController.h */,
				28851B92147DC97D00088C4F /* MULegalViewController.m */,
				28851B93147DC97D00088C4F /* MULegalViewController.xib */,
				28F08360147F263B00DC126F /* MUAudioBarView.h */,
				28F08361147F263B00DC126F /* MUAudioBarView.m */,
				28F08363147F369100DC126F /* MUAudioBarViewCell.h */,
				28F08364147F369200DC126F /* MUAudioBarViewCell.m */,
				2822AC0414878AC500E9DB17 /* MUConnectionController.h */,
				2822AC0514878AC500E9DB17 /* MUConnectionController.m */,
				2879523514BF519A00567430 /* MUMessagesViewController.h */,
				2879523614BF519A00567430 /* MUMessagesViewController.m */,
				2879527F14C2504B00567430 /* MUMessageBubbleTableViewCell.h */,
				2879528014C2504C00567430 /* MUMessageBubbleTableViewCell.m */,
				287952AE14C4D67500567430 /* MUMessageRecipientViewController.h */,
				287952AF14C4D67500567430 /* MUMessageRecipientViewController.m */,
				287A686D14C76E55008B1BE7 /* MUMessageAttachmentViewController.h */,
				287A686E14C76E56008B1BE7 /* MUMessageAttachmentViewController.m */,
				2802ABFE14C9E948000983A5 /* MUDataURL.h */,
				2802ABFF14C9E948000983A5 /* MUDataURL.m */,
				2802AC0114CB0130000983A5 /* MUImage.h */,
				2802AC0214CB0131000983A5 /* MUImage.m */,
				2802AC0414CB024A000983A5 /* MUImageViewController.h */,
				2802AC0514CB024A000983A5 /* MUImageViewController.m */,
				2802AC0B14CB2E2A000983A5 /* MUTextMessage.h */,
				2802AC0C14CB2E2B000983A5 /* MUTextMessage.m */,
				28EF155B14D8738C008A35A4 /* MUMessagesDatabase.h */,
				28EF155C14D8738C008A35A4 /* MUMessagesDatabase.m */,
				286A3CBC158CFDF000C817D1 /* MUPopoverBackgroundView.h */,
				286A3CBD158CFDF200C817D1 /* MUPopoverBackgroundView.m */,
				28F9E1BD15EBDF2400D52001 /* MURemoteControlServer.h */,
				28F9E1BE15EBDF2400D52001 /* MURemoteControlServer.m */,
				285D6B6F16BEEFA700F239EB /* MUTextMessageProcessor.h */,
				285D6B7016BEEFA700F239EB /* MUTextMessageProcessor.m */,
				285AF2691840DEE20065E339 /* MUAudioMixerDebugViewController.h */,
				285AF26A1840DEE20065E339 /* MUAudioMixerDebugViewController.m */,
				2882857F18CE40C80034F319 /* MUBackgroundView.h */,
				2882858018CE40C80034F319 /* MUBackgroundView.m */,
				28BE998318CFB96A00910551 /* MUHorizontalFlipTransitionDelegate.h */,
				28BE998418CFB96A00910551 /* MUHorizontalFlipTransitionDelegate.m */,
			);
			name = Classes;
			path = Source/Classes;
			sourceTree = "<group>";
		};
		19C28FACFE9D520D11CA2CBB /* Products */ = {
			isa = PBXGroup;
			children = (
				1D6058910D05DD3D006BFB54 /* Mumble.app */,
				285D6B7C16BF02E900F239EB /* MumbleTests.octest */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		280256351510D70D00178B08 /* en.lproj */ = {
			isa = PBXGroup;
			children = (
				280256361510D70D00178B08 /* Localizable.strings */,
			);
			name = en.lproj;
			path = Resources/en.lproj;
			sourceTree = "<group>";
		};
		280256391510DDCA00178B08 /* da.lproj */ = {
			isa = PBXGroup;
			children = (
				2802563A1510DDCA00178B08 /* Localizable.strings */,
			);
			name = da.lproj;
			path = Resources/da.lproj;
			sourceTree = "<group>";
		};
		2838EA0C1293165700035C5D /* Preferences */ = {
			isa = PBXGroup;
			children = (
				2801C35911CA9F1A00E664E8 /* MUPreferencesViewController.h */,
				2801C35A11CA9F1A00E664E8 /* MUPreferencesViewController.m */,
				2838EA0D129316C200035C5D /* MUCertificatePreferencesViewController.h */,
				2838EA0E129316C200035C5D /* MUCertificatePreferencesViewController.m */,
				283363D913EF154C00A04F04 /* MUAudioTransmissionPreferencesViewController.h */,
				283363DA13EF154C00A04F04 /* MUAudioTransmissionPreferencesViewController.m */,
				286E925E148452A000B13593 /* MUVoiceActivitySetupViewController.h */,
				286E925F148452A000B13593 /* MUVoiceActivitySetupViewController.m */,
				28F04B2014898A7100C90909 /* MUAdvancedAudioPreferencesViewController.h */,
				28F04B2114898A7100C90909 /* MUAdvancedAudioPreferencesViewController.m */,
				28ADA301148A3E3B00C55E51 /* MUAudioQualityPreferencesViewController.h */,
				28ADA302148A3E3B00C55E51 /* MUAudioQualityPreferencesViewController.m */,
				286A3C9E158BB17E00C817D1 /* MUAudioSidetonePreferencesViewController.h */,
				286A3C9F158BB17E00C817D1 /* MUAudioSidetonePreferencesViewController.m */,
				2813B1CF15EBFDA90049A59A /* MURemoteControlPreferencesViewController.h */,
				2813B1D015EBFDA90049A59A /* MURemoteControlPreferencesViewController.m */,
			);
			name = Preferences;
			sourceTree = "<group>";
		};
		285D6B7616BF028700F239EB /* Tests */ = {
			isa = PBXGroup;
			children = (
				285D6B7316BF027A00F239EB /* MUTextMessageProcessorTest.h */,
				285D6B7416BF027A00F239EB /* MUTextMessageProcessorTest.m */,
				285D6B8216BF02E900F239EB /* Supporting Files */,
			);
			name = Tests;
			sourceTree = "<group>";
		};
		285D6B8216BF02E900F239EB /* Supporting Files */ = {
			isa = PBXGroup;
			children = (
				285D6B8316BF02E900F239EB /* MumbleTests-Info.plist */,
				285D6B8416BF02E900F239EB /* InfoPlist.strings */,
				285D6B8A16BF02E900F239EB /* MumbleTests.pch */,
			);
			name = "Supporting Files";
			path = MumbleTests;
			sourceTree = "<group>";
		};
		285E2A5F150D7287008AE185 /* Build Configuration */ = {
			isa = PBXGroup;
			children = (
				285E2A60150D729B008AE185 /* AppStore.xcconfig */,
				285E2A61150D729B008AE185 /* Base.xcconfig */,
				285E2A62150D729B008AE185 /* BetaDist.xcconfig */,
				285E2A63150D729B008AE185 /* Debug.xcconfig */,
				285E2A64150D729B008AE185 /* Release.xcconfig */,
			);
			name = "Build Configuration";
			sourceTree = "<group>";
		};
		2861C28C116BE90B002B8514 /* Dependencies */ = {
			isa = PBXGroup;
			children = (
				28FAA36114D7550E00F6D711 /* MKNumberBadgeView */,
				287A687014C777CC008B1BE7 /* gtm */,
				28F9173911B9460D0030D649 /* fmdb */,
				2861C28E116BE91B002B8514 /* MumbleKit.xcodeproj */,
			);
			name = Dependencies;
			sourceTree = "<group>";
		};
		2861C28F116BE91B002B8514 /* Products */ = {
			isa = PBXGroup;
			children = (
				28990A8E132FD9CC0034B406 /* libMumbleKit.a */,
				28990A90132FD9CC0034B406 /* MumbleKit.framework */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		2872F7C4124668880078C0B1 /* Certificates */ = {
			isa = PBXGroup;
			children = (
				287639F711D29D99009DB8B6 /* MUCertificateCreationProgressView.h */,
				287639F811D29D99009DB8B6 /* MUCertificateCreationProgressView.m */,
				287639FE11D2A242009DB8B6 /* MUCertificateCreationProgressView.xib */,
				2858A5AB123BA08D00A82155 /* MUCertificateCell.h */,
				2858A5AC123BA08D00A82155 /* MUCertificateCell.m */,
				2858A57F123B9E5700A82155 /* MUCertificateCell.xib */,
				288D6B5E123D08EE00D37EDE /* MUCertificateViewController.h */,
				288D6B5F123D08EE00D37EDE /* MUCertificateViewController.m */,
				28942D7A12456F9200C63A07 /* MUCertificateCreationView.h */,
				28942D7B12456F9200C63A07 /* MUCertificateCreationView.m */,
				282F6A2313620BD5008F555B /* MUCertificateController.h */,
				282F6A2413620BD5008F555B /* MUCertificateController.m */,
				2836767B1525053A0015958E /* MUCertificateChainBuilder.h */,
				2836767C1525053A0015958E /* MUCertificateChainBuilder.m */,
				28BF81D0139AFFD50078B722 /* MUCertificateDiskImportViewController.h */,
				28BF81D1139AFFD50078B722 /* MUCertificateDiskImportViewController.m */,
			);
			name = Certificates;
			sourceTree = "<group>";
		};
		2879527A14C248B700567430 /* Apple */ = {
			isa = PBXGroup;
			children = (
				287A686514C6FB9F008B1BE7 /* GrayCheckmark.png */,
				287A686614C6FB9F008B1BE7 /* GrayCheckmark@2x.png */,
				2879528614C3874B00567430 /* LeftBalloonSelected.png */,
				2879528714C3874B00567430 /* LeftBalloonSelected@2x.png */,
				2879528814C3874C00567430 /* RightBalloonSelected.png */,
				2879528914C3874C00567430 /* RightBalloonSelected@2x.png */,
				2879527B14C248C500567430 /* Balloon_2.png */,
				2879527C14C248C500567430 /* Balloon_2@2x.png */,
				2879528214C2687D00567430 /* Balloon_Blue.png */,
				2879528314C2687D00567430 /* Balloon_Blue@2x.png */,
				28BE999718CFED9A00910551 /* Balloon_2_Right.png */,
				28BE999818CFED9A00910551 /* Balloon_2_Right@2x.png */,
				28BE999B18CFF03D00910551 /* LeftBalloonSelectedMono.png */,
				28BE999C18CFF03D00910551 /* LeftBalloonSelectedMono@2x.png */,
				28BE999D18CFF03D00910551 /* RightBalloonSelectedMono.png */,
				28BE999E18CFF03D00910551 /* RightBalloonSelectedMono@2x.png */,
			);
			name = Apple;
			sourceTree = "<group>";
		};
		287A687014C777CC008B1BE7 /* gtm */ = {
			isa = PBXGroup;
			children = (
				287A687114C777CC008B1BE7 /* GTMDefines.h */,
				287A687214C777CC008B1BE7 /* GTMStringEncoding.h */,
				287A687314C777CC008B1BE7 /* GTMStringEncoding.m */,
			);
			name = gtm;
			path = Dependencies/gtm;
			sourceTree = "<group>";
		};
		28BF8E1C11D93A1900B72770 /* Database */ = {
			isa = PBXGroup;
			children = (
				287BA28E11B96C960010E031 /* MUDatabase.h */,
				287BA28F11B96C960010E031 /* MUDatabase.m */,
				287BA33911B97C470010E031 /* MUFavouriteServer.h */,
				287BA33A11B97C470010E031 /* MUFavouriteServer.m */,
			);
			name = Database;
			sourceTree = "<group>";
		};
		28DC1C1213DE59120037CDC2 /* Resources */ = {
			isa = PBXGroup;
			children = (
				280256351510D70D00178B08 /* en.lproj */,
				280256391510DDCA00178B08 /* da.lproj */,
				2879527A14C248B700567430 /* Apple */,
				28FAA35D14D74C1600F6D711 /* SmallMumbleIcon.png */,
				28FAA35E14D74C1600F6D711 /* SmallMumbleIcon@2x.png */,
				286A3CAA158CD55700C817D1 /* LogoBigShadow.png */,
				286A3CA8158CD12E00C817D1 /* LogoBigShadow@2x.png */,
				2879525C14C0AFAC00567430 /* BlackToolbarPattern.png */,
				2879525D14C0AFAC00567430 /* BlackToolbarPattern@2x.png */,
				28F79C68147966840003B8BA /* WelcomeScreenIcon.png */,
				28F79C6A147968C60003B8BA /* WelcomeScreenIcon@2x.png */,
				2845194716346F5B0027FAB3 /* WelcomeScreenIcon-568h@2x.png */,
				28A2AEB514786E6000F3B83F /* Default.png */,
				28A2AEB614786E6000F3B83F /* Default@2x.png */,
				28BE998D18CFD7DC00910551 /* Default-iOS7@2x.png */,
				28451943163463C90027FAB3 /* Default-568h@2x.png */,
				28BE998918CFD77400910551 /* Default-iOS7-568h@2x.png */,
				28A2AEB714786E6000F3B83F /* icon.png */,
				28A2AEB814786E6000F3B83F /* icon@2x.png */,
				28BE999118CFE1FD00910551 /* icon7@2x.png */,
				28D963951639B9E4002A9E73 /* iconpad.png */,
				28D963971639B9E8002A9E73 /* iconpad@2x.png */,
				28F79CA21479C23F0003B8BA /* BackgroundTextureBlackGradient.png */,
				28F79CA01479C2180003B8BA /* BackgroundTextureBlackGradient@2x.png */,
				284519491634849E0027FAB3 /* BackgroundTextureBlackGradient-568h@2x.png */,
				286A3CAC158CD5F400C817D1 /* BackgroundTextureBlackGradientPad.png */,
				286A3CA6158CD05A00C817D1 /* BackgroundTextureBlackGradientPad@2x.png */,
				28234D5B13F09148006B830D /* talkbutton_off.png */,
				28234D5C13F09148006B830D /* talkbutton_off@2x.png */,
				28234D5D13F09148006B830D /* talkbutton_on.png */,
				28234D5E13F09148006B830D /* talkbutton_on@2x.png */,
				28DC1C1313DE596B0037CDC2 /* authenticated.png */,
				28DC1C1413DE596B0037CDC2 /* authenticated@2x.png */,
				28DC1C1613DE596B0037CDC2 /* certificate16.png */,
				28DC1C1713DE596B0037CDC2 /* certificate32.png */,
				28DC1C1813DE596B0037CDC2 /* certificate64.png */,
				28DC1C1913DE596B0037CDC2 /* certificate128.png */,
				28DC1C1A13DE596B0037CDC2 /* certificate256.png */,
				28DC1C1B13DE596B0037CDC2 /* certificate512.png */,
				28529B391541C042003DD813 /* certificatecreation.png */,
				28529B3A1541C042003DD813 /* certificatecreation@2x.png */,
				28DC1C1C13DE596B0037CDC2 /* certificatecell-selected.png */,
				28DC1C1D13DE596B0037CDC2 /* certificatecell-selected@2x.png */,
				287172A9151A041A00153D74 /* certificatecell-intermediate.png */,
				287172AA151A041A00153D74 /* certificatecell-intermediate@2x.png */,
				28DC1C1E13DE596B0037CDC2 /* certificatecell.png */,
				28DC1C1F13DE596B0037CDC2 /* certificatecell@2x.png */,
				28DC1C2013DE596B0037CDC2 /* channel.png */,
				2879526A14C202C600567430 /* channelmsg.png */,
				2879526B14C202C600567430 /* channelmsg@2x.png */,
				2879526E14C2043E00567430 /* usermsg.png */,
				2879526F14C2043E00567430 /* usermsg@2x.png */,
				28DC1C2213DE596B0037CDC2 /* channel@2x.png */,
				28F0835E147F102F00DC126F /* publist.xml */,
				28DC1C2713DE596B0037CDC2 /* Continents.plist */,
				28DC1C2913DE596B0037CDC2 /* Countries.plist */,
				28DC1C2A13DE596B0037CDC2 /* deafened_self.png */,
				28DC1C2B13DE596B0037CDC2 /* deafened_self@2x.png */,
				28DC1C2C13DE596B0037CDC2 /* deafened_server.png */,
				28DC1C2D13DE596B0037CDC2 /* deafened_server@2x.png */,
				28DC1C3213DE596B0037CDC2 /* down.png */,
				28DC1C3313DE596B0037CDC2 /* down@2x.png */,
				28DC1C3A13DE596B0037CDC2 /* Legal.html */,
				28DC1C3B13DE596B0037CDC2 /* muted_local.png */,
				28DC1C3C13DE596B0037CDC2 /* muted_local@2x.png */,
				28DC1C3D13DE596B0037CDC2 /* muted_self.png */,
				28DC1C3E13DE596B0037CDC2 /* muted_self@2x.png */,
				28DC1C3F13DE596B0037CDC2 /* muted_server.png */,
				28DC1C4013DE596B0037CDC2 /* muted_server@2x.png */,
				28DC1C4113DE596B0037CDC2 /* muted_suppressed.png */,
				28DC1C4213DE596B0037CDC2 /* muted_suppressed@2x.png */,
				28DC1C4613DE596B0037CDC2 /* priorityspeaker.png */,
				28DC1C4713DE596B0037CDC2 /* priorityspeaker@2x.png */,
				28DC1C4913DE596B0037CDC2 /* README */,
				28DC1C4E13DE596B0037CDC2 /* talking_alt.png */,
				28DC1C5013DE596B0037CDC2 /* talking_alt@2x.png */,
				28DC1C5113DE596B0037CDC2 /* talking_off.png */,
				28DC1C5313DE596B0037CDC2 /* talking_off@2x.png */,
				28DC1C5413DE596B0037CDC2 /* talking_on.png */,
				28DC1C5613DE596B0037CDC2 /* talking_on@2x.png */,
				28DC1C5713DE596B0037CDC2 /* talking_whisper.png */,
				28DC1C5913DE596B0037CDC2 /* talking_whisper@2x.png */,
				28DC1C5A13DE596B0037CDC2 /* up.png */,
				28DC1C5B13DE596B0037CDC2 /* up@2x.png */,
				286A3CBF158CFEAB00C817D1 /* _UIPopoverViewBlackBackgroundArrowUp.png */,
				286A3CC0158CFEAB00C817D1 /* _UIPopoverViewBlackBackgroundArrowUp@2x.png */,
				2843040816BF25590025A783 /* MumbleMenuButton.png */,
				2843040916BF25590025A783 /* MumbleMenuButton@2x.png */,
				28BE998118CFA8B900910551 /* BlackToolbarPatterniOS7.png */,
				28BE997F18CFA83800910551 /* BlackToolbarPatterniOS7@2x.png */,
			);
			name = Resources;
			sourceTree = "<group>";
		};
		28F9173911B9460D0030D649 /* fmdb */ = {
			isa = PBXGroup;
			children = (
				28F9174111B946250030D649 /* FMDatabase.h */,
				28F9174211B946250030D649 /* FMDatabase.m */,
				28F9174311B946250030D649 /* FMDatabaseAdditions.h */,
				28F9174411B946250030D649 /* FMDatabaseAdditions.m */,
				28F9174611B946250030D649 /* FMResultSet.h */,
				28F9174711B946250030D649 /* FMResultSet.m */,
			);
			name = fmdb;
			sourceTree = "<group>";
		};
		28FAA36114D7550E00F6D711 /* MKNumberBadgeView */ = {
			isa = PBXGroup;
			children = (
				28FAA36214D7551600F6D711 /* MKNumberBadgeView.h */,
				28FAA36314D7551600F6D711 /* MKNumberBadgeView.m */,
			);
			name = MKNumberBadgeView;
			sourceTree = "<group>";
		};
		29B97314FDCFA39411CA2CEA /* CustomTemplate */ = {
			isa = PBXGroup;
			children = (
				2861C28C116BE90B002B8514 /* Dependencies */,
				080E96DDFE201D6D7F000001 /* Classes */,
				285D6B7616BF028700F239EB /* Tests */,
				29B97315FDCFA39411CA2CEA /* Other Sources */,
				28DC1C1213DE59120037CDC2 /* Resources */,
				29B97323FDCFA39411CA2CEA /* Frameworks */,
				19C28FACFE9D520D11CA2CBB /* Products */,
				285E2A5F150D7287008AE185 /* Build Configuration */,
			);
			name = CustomTemplate;
			sourceTree = "<group>";
		};
		29B97315FDCFA39411CA2CEA /* Other Sources */ = {
			isa = PBXGroup;
			children = (
				8D1107310486CEB800E47090 /* Info.plist */,
				32CA4F630368D1EE00C91783 /* Mumble.pch */,
				29B97316FDCFA39411CA2CEA /* main.m */,
			);
			name = "Other Sources";
			sourceTree = "<group>";
		};
		29B97323FDCFA39411CA2CEA /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				28990AB0132FDA540034B406 /* libMumbleKit.a */,
				28F79C6C14796B2E0003B8BA /* libsqlite3.dylib */,
				2879528E14C38FC200567430 /* MobileCoreServices.framework */,
				28763A4411D2AA91009DB8B6 /* QuartzCore.framework */,
				2861C2B1116BE9B7002B8514 /* CFNetwork.framework */,
				2861C2B5116BE9BA002B8514 /* Security.framework */,
				2861C2AD116BE9B5002B8514 /* AudioToolbox.framework */,
				1DF5F4DF0D08C38300B7A737 /* UIKit.framework */,
				1D30AB110D05D00D00671497 /* Foundation.framework */,
				288765FC0DF74451002DB57D /* CoreGraphics.framework */,
				285D6B7D16BF02E900F239EB /* SenTestingKit.framework */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
		1D6058900D05DD3D006BFB54 /* Mumble */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "Mumble" */;
			buildPhases = (
				1D60588D0D05DD3D006BFB54 /* Resources */,
				1D60588E0D05DD3D006BFB54 /* Sources */,
				1D60588F0D05DD3D006BFB54 /* Frameworks */,
				2830A26311CEA89100970A41 /* Info.plist Extras */,
			);
			buildRules = (
			);
			dependencies = (
				28990AAF132FDA4B0034B406 /* PBXTargetDependency */,
			);
			name = Mumble;
			productName = Mumble;
			productReference = 1D6058910D05DD3D006BFB54 /* Mumble.app */;
			productType = "com.apple.product-type.application";
		};
		285D6B7B16BF02E900F239EB /* MumbleTests */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 285D6B8B16BF02E900F239EB /* Build configuration list for PBXNativeTarget "MumbleTests" */;
			buildPhases = (
				285D6B7716BF02E900F239EB /* Sources */,
				285D6B7816BF02E900F239EB /* Frameworks */,
				285D6B7916BF02E900F239EB /* Resources */,
				285D6B7A16BF02E900F239EB /* ShellScript */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = MumbleTests;
			productName = MumbleTests;
			productReference = 285D6B7C16BF02E900F239EB /* MumbleTests.octest */;
			productType = "com.apple.product-type.bundle.ocunit-test";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		29B97313FDCFA39411CA2CEA /* Project object */ = {
			isa = PBXProject;
			attributes = {
				LastTestingUpgradeCheck = 0700;
				LastUpgradeCheck = 0510;
				TargetAttributes = {
					1D6058900D05DD3D006BFB54 = {
						DevelopmentTeam = CXBDCLUHDT;
					};
				};
			};
			buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "Mumble" */;
			compatibilityVersion = "Xcode 3.2";
			developmentRegion = English;
			hasScannedForEncodings = 1;
			knownRegions = (
				English,
				Japanese,
				French,
				German,
				en,
				da,
			);
			mainGroup = 29B97314FDCFA39411CA2CEA /* CustomTemplate */;
			projectDirPath = "";
			projectReferences = (
				{
					ProductGroup = 2861C28F116BE91B002B8514 /* Products */;
					ProjectRef = 2861C28E116BE91B002B8514 /* MumbleKit.xcodeproj */;
				},
			);
			projectRoot = "";
			targets = (
				1D6058900D05DD3D006BFB54 /* Mumble */,
				285D6B7B16BF02E900F239EB /* MumbleTests */,
			);
		};
/* End PBXProject section */

/* Begin PBXReferenceProxy section */
		28990A8E132FD9CC0034B406 /* libMumbleKit.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libMumbleKit.a;
			remoteRef = 28990A8D132FD9CC0034B406 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		28990A90132FD9CC0034B406 /* MumbleKit.framework */ = {
			isa = PBXReferenceProxy;
			fileType = wrapper.framework;
			path = MumbleKit.framework;
			remoteRef = 28990A8F132FD9CC0034B406 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
/* End PBXReferenceProxy section */

/* Begin PBXResourcesBuildPhase section */
		1D60588D0D05DD3D006BFB54 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				28AD733F0D9D9553002E5188 /* MainWindow.xib in Resources */,
				28BE999918CFED9A00910551 /* Balloon_2_Right.png in Resources */,
				287639FF11D2A242009DB8B6 /* MUCertificateCreationProgressView.xib in Resources */,
				2858A580123B9E5700A82155 /* MUCertificateCell.xib in Resources */,
				28DC1C5C13DE596B0037CDC2 /* authenticated.png in Resources */,
				28DC1C5D13DE596B0037CDC2 /* authenticated@2x.png in Resources */,
				28DC1C6513DE596B0037CDC2 /* certificatecell-selected.png in Resources */,
				28DC1C6613DE596B0037CDC2 /* certificatecell-selected@2x.png in Resources */,
				28DC1C6713DE596B0037CDC2 /* certificatecell.png in Resources */,
				28BE998E18CFD7DC00910551 /* Default-iOS7@2x.png in Resources */,
				28DC1C6813DE596B0037CDC2 /* certificatecell@2x.png in Resources */,
				28DC1C6913DE596B0037CDC2 /* channel.png in Resources */,
				28DC1C6B13DE596B0037CDC2 /* channel@2x.png in Resources */,
				28DC1C7013DE596B0037CDC2 /* Continents.plist in Resources */,
				28DC1C7213DE596B0037CDC2 /* Countries.plist in Resources */,
				28DC1C7313DE596B0037CDC2 /* deafened_self.png in Resources */,
				28DC1C7413DE596B0037CDC2 /* deafened_self@2x.png in Resources */,
				28DC1C7513DE596B0037CDC2 /* deafened_server.png in Resources */,
				28DC1C7613DE596B0037CDC2 /* deafened_server@2x.png in Resources */,
				28DC1C7B13DE596B0037CDC2 /* down.png in Resources */,
				28DC1C7C13DE596B0037CDC2 /* down@2x.png in Resources */,
				28DC1C8313DE596B0037CDC2 /* Legal.html in Resources */,
				28DC1C8413DE596B0037CDC2 /* muted_local.png in Resources */,
				28DC1C8513DE596B0037CDC2 /* muted_local@2x.png in Resources */,
				28DC1C8613DE596B0037CDC2 /* muted_self.png in Resources */,
				28DC1C8713DE596B0037CDC2 /* muted_self@2x.png in Resources */,
				28BE99A218CFF03D00910551 /* RightBalloonSelectedMono@2x.png in Resources */,
				28DC1C8813DE596B0037CDC2 /* muted_server.png in Resources */,
				28DC1C8913DE596B0037CDC2 /* muted_server@2x.png in Resources */,
				28DC1C8A13DE596B0037CDC2 /* muted_suppressed.png in Resources */,
				28DC1C8B13DE596B0037CDC2 /* muted_suppressed@2x.png in Resources */,
				28DC1C8F13DE596B0037CDC2 /* priorityspeaker.png in Resources */,
				28DC1C9013DE596B0037CDC2 /* priorityspeaker@2x.png in Resources */,
				28DC1C9713DE596B0037CDC2 /* talking_alt.png in Resources */,
				28DC1C9913DE596B0037CDC2 /* talking_alt@2x.png in Resources */,
				28DC1C9A13DE596B0037CDC2 /* talking_off.png in Resources */,
				28DC1C9C13DE596B0037CDC2 /* talking_off@2x.png in Resources */,
				28BE998A18CFD77400910551 /* Default-iOS7-568h@2x.png in Resources */,
				28DC1C9D13DE596B0037CDC2 /* talking_on.png in Resources */,
				28BE99A118CFF03D00910551 /* RightBalloonSelectedMono.png in Resources */,
				28BE998018CFA83800910551 /* BlackToolbarPatterniOS7@2x.png in Resources */,
				28DC1C9F13DE596B0037CDC2 /* talking_on@2x.png in Resources */,
				28DC1CA013DE596B0037CDC2 /* talking_whisper.png in Resources */,
				28DC1CA213DE596B0037CDC2 /* talking_whisper@2x.png in Resources */,
				28DC1CA313DE596B0037CDC2 /* up.png in Resources */,
				28DC1CA413DE596B0037CDC2 /* up@2x.png in Resources */,
				28234D5F13F09148006B830D /* talkbutton_off.png in Resources */,
				28234D6013F09148006B830D /* talkbutton_off@2x.png in Resources */,
				28234D6113F09148006B830D /* talkbutton_on.png in Resources */,
				28234D6213F09148006B830D /* talkbutton_on@2x.png in Resources */,
				28A2AEB914786E6000F3B83F /* Default.png in Resources */,
				28A2AEBA14786E6000F3B83F /* Default@2x.png in Resources */,
				28A2AEBB14786E6000F3B83F /* icon.png in Resources */,
				28A2AEBC14786E6000F3B83F /* icon@2x.png in Resources */,
				28F79C69147966840003B8BA /* WelcomeScreenIcon.png in Resources */,
				28F79C6B147968C60003B8BA /* WelcomeScreenIcon@2x.png in Resources */,
				28F79CA11479C2180003B8BA /* BackgroundTextureBlackGradient@2x.png in Resources */,
				28F79CA31479C23F0003B8BA /* BackgroundTextureBlackGradient.png in Resources */,
				28851B95147DC97E00088C4F /* MULegalViewController.xib in Resources */,
				28BE998218CFA8B900910551 /* BlackToolbarPatterniOS7.png in Resources */,
				28F0835F147F102F00DC126F /* publist.xml in Resources */,
				2879525E14C0AFAC00567430 /* BlackToolbarPattern.png in Resources */,
				2879525F14C0AFAC00567430 /* BlackToolbarPattern@2x.png in Resources */,
				2879526C14C202C600567430 /* channelmsg.png in Resources */,
				2879526D14C202C600567430 /* channelmsg@2x.png in Resources */,
				2879527014C2043E00567430 /* usermsg.png in Resources */,
				28BE999F18CFF03D00910551 /* LeftBalloonSelectedMono.png in Resources */,
				2879527114C2043E00567430 /* usermsg@2x.png in Resources */,
				2879527D14C248C500567430 /* Balloon_2.png in Resources */,
				2879527E14C248C500567430 /* Balloon_2@2x.png in Resources */,
				2879528414C2687D00567430 /* Balloon_Blue.png in Resources */,
				28BE99A018CFF03D00910551 /* LeftBalloonSelectedMono@2x.png in Resources */,
				28BE999A18CFED9A00910551 /* Balloon_2_Right@2x.png in Resources */,
				2879528514C2687D00567430 /* Balloon_Blue@2x.png in Resources */,
				2879528A14C3874C00567430 /* LeftBalloonSelected.png in Resources */,
				28B034961F5354C3008E51C7 /* LaunchScreen.storyboard in Resources */,
				2879528B14C3874C00567430 /* LeftBalloonSelected@2x.png in Resources */,
				2879528C14C3874C00567430 /* RightBalloonSelected.png in Resources */,
				2879528D14C3874C00567430 /* RightBalloonSelected@2x.png in Resources */,
				287A686714C6FB9F008B1BE7 /* GrayCheckmark.png in Resources */,
				287A686814C6FB9F008B1BE7 /* GrayCheckmark@2x.png in Resources */,
				28FAA35F14D74C1600F6D711 /* SmallMumbleIcon.png in Resources */,
				28FAA36014D74C1600F6D711 /* SmallMumbleIcon@2x.png in Resources */,
				280256381510D70D00178B08 /* Localizable.strings in Resources */,
				287172AB151A041A00153D74 /* certificatecell-intermediate.png in Resources */,
				287172AC151A041A00153D74 /* certificatecell-intermediate@2x.png in Resources */,
				28529B3B1541C043003DD813 /* certificatecreation.png in Resources */,
				28529B3C1541C043003DD813 /* certificatecreation@2x.png in Resources */,
				286A3CA7158CD05A00C817D1 /* BackgroundTextureBlackGradientPad@2x.png in Resources */,
				286A3CA9158CD12E00C817D1 /* LogoBigShadow@2x.png in Resources */,
				286A3CAB158CD55700C817D1 /* LogoBigShadow.png in Resources */,
				286A3CAD158CD5F400C817D1 /* BackgroundTextureBlackGradientPad.png in Resources */,
				286A3CC1158CFEAB00C817D1 /* _UIPopoverViewBlackBackgroundArrowUp.png in Resources */,
				286A3CC2158CFEAB00C817D1 /* _UIPopoverViewBlackBackgroundArrowUp@2x.png in Resources */,
				28451944163463C90027FAB3 /* Default-568h@2x.png in Resources */,
				2845194816346F5B0027FAB3 /* WelcomeScreenIcon-568h@2x.png in Resources */,
				2845194A1634849E0027FAB3 /* BackgroundTextureBlackGradient-568h@2x.png in Resources */,
				28D963961639B9E4002A9E73 /* iconpad.png in Resources */,
				28BE999218CFE1FD00910551 /* icon7@2x.png in Resources */,
				28D963981639B9E8002A9E73 /* iconpad@2x.png in Resources */,
				2843040A16BF25590025A783 /* MumbleMenuButton.png in Resources */,
				2843040B16BF25590025A783 /* MumbleMenuButton@2x.png in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		285D6B7916BF02E900F239EB /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				285D6BD316BF067400F239EB /* InfoPlist.strings in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXResourcesBuildPhase section */

/* Begin PBXShellScriptBuildPhase section */
		2830A26311CEA89100970A41 /* Info.plist Extras */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			name = "Info.plist Extras";
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "PLIST=\"${TARGET_BUILD_DIR}/Mumble.app/Info\"\n\nexport PATH=\"$PATH:$HOME/.local/bin\"\ncd \"${PROJECT_DIR}\"\n\n# Git revision\ngitrev=$(git show HEAD | grep commit | sed 's,commit\\ ,,' | head -c12)\ndefaults write \"${PLIST}\" MumbleGitRevision -string \"${gitrev}\"\n\n# Build date\nbuilddate=$(python -B -c 'import datetime; print datetime.datetime.utcnow().strftime(\"%Y-%m-%dT%H:%M:%SZ\")')\ndefaults write \"${PLIST}\" MumbleBuildDate -date \"${builddate}\"";
		};
		285D6B7A16BF02E900F239EB /* ShellScript */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "# Run the unit tests in this test bundle.\n\"${SYSTEM_DEVELOPER_DIR}/Tools/RunUnitTests\"\n";
		};
/* End PBXShellScriptBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		1D60588E0D05DD3D006BFB54 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				1D60589B0D05DD56006BFB54 /* main.m in Sources */,
				2861C276116BE905002B8514 /* MUApplicationDelegate.m in Sources */,
				2861C27B116BE905002B8514 /* MUPublicServerList.m in Sources */,
				2861C27C116BE905002B8514 /* MUPublicServerListController.m in Sources */,
				2861C281116BE905002B8514 /* MUWelcomeScreenPhone.m in Sources */,
				28F9174811B946250030D649 /* FMDatabase.m in Sources */,
				28F9174911B946250030D649 /* FMDatabaseAdditions.m in Sources */,
				28F9174B11B946250030D649 /* FMResultSet.m in Sources */,
				287BA29011B96C960010E031 /* MUDatabase.m in Sources */,
				287BA33B11B97C470010E031 /* MUFavouriteServer.m in Sources */,
				287BA34011B97EEE0010E031 /* MUFavouriteServerListController.m in Sources */,
				287BA3A611B996D90010E031 /* MUFavouriteServerEditViewController.m in Sources */,
				28C6EF0A11BBF38100E426C8 /* MUCountryServerListController.m in Sources */,
				289D254C11BC28BC00E39F2C /* MULanServerListController.m in Sources */,
				2801C35B11CA9F1A00E664E8 /* MUPreferencesViewController.m in Sources */,
				287639F911D29D99009DB8B6 /* MUCertificateCreationProgressView.m in Sources */,
				2858DBA31233E31B000D6F75 /* MUVersionChecker.m in Sources */,
				2858A5AD123BA08D00A82155 /* MUCertificateCell.m in Sources */,
				2882858118CE40C80034F319 /* MUBackgroundView.m in Sources */,
				288D6B60123D08EE00D37EDE /* MUCertificateViewController.m in Sources */,
				28942D7C12456F9200C63A07 /* MUCertificateCreationView.m in Sources */,
				288B55E01252903300563A28 /* MUServerCertificateTrustViewController.m in Sources */,
				289CBA18125693040015E58E /* MUServerViewController.m in Sources */,
				2838EA0F129316C200035C5D /* MUCertificatePreferencesViewController.m in Sources */,
				282F6A2513620BD5008F555B /* MUCertificateController.m in Sources */,
				28F019911364585C00E402F6 /* MUServerCell.m in Sources */,
				28BF81D2139AFFD50078B722 /* MUCertificateDiskImportViewController.m in Sources */,
				280D9ADA13EAFAAE003B64A0 /* MUServerRootViewController.m in Sources */,
				283363DB13EF154C00A04F04 /* MUAudioTransmissionPreferencesViewController.m in Sources */,
				28A2AEC114788BE300F3B83F /* MUColor.m in Sources */,
				28F79C70147973D60003B8BA /* MUUserStateAcessoryView.m in Sources */,
				28F79C73147991490003B8BA /* MUAccessTokenViewController.m in Sources */,
				28F79CA61479D7E80003B8BA /* MUTableViewHeaderLabel.m in Sources */,
				28F79CA9147AB62B0003B8BA /* MUNotificationController.m in Sources */,
				28851B94147DC97E00088C4F /* MULegalViewController.m in Sources */,
				28F08362147F263C00DC126F /* MUAudioBarView.m in Sources */,
				28F08365147F369200DC126F /* MUAudioBarViewCell.m in Sources */,
				286E9260148452A000B13593 /* MUVoiceActivitySetupViewController.m in Sources */,
				28BE998818CFCDE600910551 /* MUServerTableViewCell.m in Sources */,
				2822AC0614878AC500E9DB17 /* MUConnectionController.m in Sources */,
				28F04B2214898A7100C90909 /* MUAdvancedAudioPreferencesViewController.m in Sources */,
				28ADA303148A3E3B00C55E51 /* MUAudioQualityPreferencesViewController.m in Sources */,
				2879523714BF519A00567430 /* MUMessagesViewController.m in Sources */,
				2879528114C2504C00567430 /* MUMessageBubbleTableViewCell.m in Sources */,
				287952B014C4D67500567430 /* MUMessageRecipientViewController.m in Sources */,
				287A686F14C76E56008B1BE7 /* MUMessageAttachmentViewController.m in Sources */,
				287A687414C777CC008B1BE7 /* GTMStringEncoding.m in Sources */,
				2802AC0014C9E948000983A5 /* MUDataURL.m in Sources */,
				2802AC0314CB0131000983A5 /* MUImage.m in Sources */,
				2802AC0614CB024A000983A5 /* MUImageViewController.m in Sources */,
				2802AC0D14CB2E2B000983A5 /* MUTextMessage.m in Sources */,
				285AF26B1840DEE20065E339 /* MUAudioMixerDebugViewController.m in Sources */,
				28FAA36414D7551600F6D711 /* MKNumberBadgeView.m in Sources */,
				28EF155D14D8738C008A35A4 /* MUMessagesDatabase.m in Sources */,
				28BE998518CFB96A00910551 /* MUHorizontalFlipTransitionDelegate.m in Sources */,
				2882857D18CE39B40034F319 /* MUOperatingSystem.m in Sources */,
				2836767D1525053A0015958E /* MUCertificateChainBuilder.m in Sources */,
				286A3CA0158BB17E00C817D1 /* MUAudioSidetonePreferencesViewController.m in Sources */,
				286A3CA4158CCF9F00C817D1 /* MUWelcomeScreenPad.m in Sources */,
				286A3CBE158CFDF300C817D1 /* MUPopoverBackgroundView.m in Sources */,
				28F9E1BF15EBDF2400D52001 /* MURemoteControlServer.m in Sources */,
				2813B1D115EBFDA90049A59A /* MURemoteControlPreferencesViewController.m in Sources */,
				285D6B7116BEEFA700F239EB /* MUTextMessageProcessor.m in Sources */,
				2846C7D616F4A09000739FD8 /* MUServerButton.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		285D6B7716BF02E900F239EB /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				285D6BD416BF078E00F239EB /* MUTextMessageProcessor.m in Sources */,
				285D6B9016BF03D700F239EB /* MUTextMessageProcessorTest.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXTargetDependency section */
		28990AAF132FDA4B0034B406 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = "MumbleKit (iOS)";
			targetProxy = 28990AAE132FDA4B0034B406 /* PBXContainerItemProxy */;
		};
/* End PBXTargetDependency section */

/* Begin PBXVariantGroup section */
		280256361510D70D00178B08 /* Localizable.strings */ = {
			isa = PBXVariantGroup;
			children = (
				280256371510D70D00178B08 /* en */,
			);
			name = Localizable.strings;
			sourceTree = "<group>";
		};
		2802563A1510DDCA00178B08 /* Localizable.strings */ = {
			isa = PBXVariantGroup;
			children = (
				2802563B1510DDCA00178B08 /* da */,
			);
			name = Localizable.strings;
			sourceTree = "<group>";
		};
		285D6B8416BF02E900F239EB /* InfoPlist.strings */ = {
			isa = PBXVariantGroup;
			children = (
				285D6B8516BF02E900F239EB /* en */,
			);
			name = InfoPlist.strings;
			path = Tests;
			sourceTree = SOURCE_ROOT;
		};
/* End PBXVariantGroup section */

/* Begin XCBuildConfiguration section */
		1D6058940D05DD3E006BFB54 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CODE_SIGN_IDENTITY = "iPhone Developer";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				PROVISIONING_PROFILE = "";
				TARGETED_DEVICE_FAMILY = 1;
			};
			name = Debug;
		};
		1D6058950D05DD3E006BFB54 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CODE_SIGN_IDENTITY = "iPhone Developer";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				PROVISIONING_PROFILE = "";
				TARGETED_DEVICE_FAMILY = 1;
			};
			name = Release;
		};
		285D6B8C16BF02E900F239EB /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				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;
				COPY_PHASE_STRIP = NO;
				FRAMEWORK_SEARCH_PATHS = (
					"\"$(SDKROOT)/Developer/Library/Frameworks\"",
					"\"$(DEVELOPER_LIBRARY_DIR)/Frameworks\"",
				);
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = Tests/MumbleTests.pch;
				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;
				INFOPLIST_FILE = "Tests/MumbleTests-Info.plist";
				ONLY_ACTIVE_ARCH = YES;
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = iphoneos;
				WRAPPER_EXTENSION = octest;
			};
			name = Debug;
		};
		285D6B8D16BF02E900F239EB /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				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;
				COPY_PHASE_STRIP = YES;
				FRAMEWORK_SEARCH_PATHS = (
					"\"$(SDKROOT)/Developer/Library/Frameworks\"",
					"\"$(DEVELOPER_LIBRARY_DIR)/Frameworks\"",
				);
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = Tests/MumbleTests.pch;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				INFOPLIST_FILE = "Tests/MumbleTests-Info.plist";
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = iphoneos;
				VALIDATE_PRODUCT = YES;
				WRAPPER_EXTENSION = octest;
			};
			name = Release;
		};
		285D6B8E16BF02E900F239EB /* AppStore */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				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;
				COPY_PHASE_STRIP = YES;
				FRAMEWORK_SEARCH_PATHS = (
					"\"$(SDKROOT)/Developer/Library/Frameworks\"",
					"\"$(DEVELOPER_LIBRARY_DIR)/Frameworks\"",
				);
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = Tests/MumbleTests.pch;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				INFOPLIST_FILE = "Tests/MumbleTests-Info.plist";
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = iphoneos;
				VALIDATE_PRODUCT = YES;
				WRAPPER_EXTENSION = octest;
			};
			name = AppStore;
		};
		285D6B8F16BF02E900F239EB /* BetaDist */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				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;
				COPY_PHASE_STRIP = YES;
				FRAMEWORK_SEARCH_PATHS = (
					"\"$(SDKROOT)/Developer/Library/Frameworks\"",
					"\"$(DEVELOPER_LIBRARY_DIR)/Frameworks\"",
				);
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = Tests/MumbleTests.pch;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				INFOPLIST_FILE = "Tests/MumbleTests-Info.plist";
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = iphoneos;
				VALIDATE_PRODUCT = YES;
				WRAPPER_EXTENSION = octest;
			};
			name = BetaDist;
		};
		2887C8891454C4C2009B3576 /* AppStore */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 285E2A60150D729B008AE185 /* AppStore.xcconfig */;
			buildSettings = {
			};
			name = AppStore;
		};
		2887C88A1454C4C2009B3576 /* AppStore */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CODE_SIGN_IDENTITY = "iPhone Developer";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				PROVISIONING_PROFILE = "";
				TARGETED_DEVICE_FAMILY = 1;
			};
			name = AppStore;
		};
		28BC1E7A1227155500C03FCF /* BetaDist */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 285E2A62150D729B008AE185 /* BetaDist.xcconfig */;
			buildSettings = {
			};
			name = BetaDist;
		};
		28BC1E7B1227155500C03FCF /* BetaDist */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CODE_SIGN_IDENTITY = "iPhone Developer";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				PROVISIONING_PROFILE = "";
				TARGETED_DEVICE_FAMILY = 1;
			};
			name = BetaDist;
		};
		C01FCF4F08A954540054247B /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 285E2A63150D729B008AE185 /* Debug.xcconfig */;
			buildSettings = {
				ONLY_ACTIVE_ARCH = YES;
			};
			name = Debug;
		};
		C01FCF5008A954540054247B /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 285E2A64150D729B008AE185 /* Release.xcconfig */;
			buildSettings = {
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "Mumble" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				1D6058940D05DD3E006BFB54 /* Debug */,
				1D6058950D05DD3E006BFB54 /* Release */,
				2887C88A1454C4C2009B3576 /* AppStore */,
				28BC1E7B1227155500C03FCF /* BetaDist */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		285D6B8B16BF02E900F239EB /* Build configuration list for PBXNativeTarget "MumbleTests" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				285D6B8C16BF02E900F239EB /* Debug */,
				285D6B8D16BF02E900F239EB /* Release */,
				285D6B8E16BF02E900F239EB /* AppStore */,
				285D6B8F16BF02E900F239EB /* BetaDist */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		C01FCF4E08A954540054247B /* Build configuration list for PBXProject "Mumble" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				C01FCF4F08A954540054247B /* Debug */,
				C01FCF5008A954540054247B /* Release */,
				2887C8891454C4C2009B3576 /* AppStore */,
				28BC1E7A1227155500C03FCF /* BetaDist */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = 29B97313FDCFA39411CA2CEA /* Project object */;
}