单军华
2018-07-11 a8297afeff989f07a0d54dadfec7b34799a9c5dd
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
// !$*UTF8*$!
{
    archiveVersion = 1;
    classes = {
    };
    objectVersion = 50;
    objects = {
 
/* Begin PBXBuildFile section */
        3CA5725F0D118E6B7A171E0A /* libPods-screendisplay.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 321BB08FDBCFE5EE52765180 /* libPods-screendisplay.a */; };
        8957370320F595BB00A23C3B /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 8957370220F595BB00A23C3B /* AppDelegate.m */; };
        8957371120F595BD00A23C3B /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 8957371020F595BD00A23C3B /* main.m */; };
        8957373A20F59B0F00A23C3B /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 8957371920F59B0F00A23C3B /* Assets.xcassets */; };
        8957373B20F59B0F00A23C3B /* map_top_bar_bk@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8957371B20F59B0F00A23C3B /* map_top_bar_bk@2x.png */; };
        8957373C20F59B0F00A23C3B /* map_segment_normal.png in Resources */ = {isa = PBXBuildFile; fileRef = 8957371C20F59B0F00A23C3B /* map_segment_normal.png */; };
        8957373D20F59B0F00A23C3B /* detail_pregress.png in Resources */ = {isa = PBXBuildFile; fileRef = 8957371D20F59B0F00A23C3B /* detail_pregress.png */; };
        8957373E20F59B0F00A23C3B /* deatil_line.png in Resources */ = {isa = PBXBuildFile; fileRef = 8957371E20F59B0F00A23C3B /* deatil_line.png */; };
        8957373F20F59B0F00A23C3B /* poi_3.png in Resources */ = {isa = PBXBuildFile; fileRef = 8957371F20F59B0F00A23C3B /* poi_3.png */; };
        8957374020F59B0F00A23C3B /* poi_2.png in Resources */ = {isa = PBXBuildFile; fileRef = 8957372020F59B0F00A23C3B /* poi_2.png */; };
        8957374120F59B0F00A23C3B /* map_segment_four.png in Resources */ = {isa = PBXBuildFile; fileRef = 8957372120F59B0F00A23C3B /* map_segment_four.png */; };
        8957374220F59B0F00A23C3B /* poi_1.png in Resources */ = {isa = PBXBuildFile; fileRef = 8957372220F59B0F00A23C3B /* poi_1.png */; };
        8957374320F59B0F00A23C3B /* icon_circle.png in Resources */ = {isa = PBXBuildFile; fileRef = 8957372320F59B0F00A23C3B /* icon_circle.png */; };
        8957374420F59B0F00A23C3B /* map_segment_two.png in Resources */ = {isa = PBXBuildFile; fileRef = 8957372420F59B0F00A23C3B /* map_segment_two.png */; };
        8957374520F59B0F00A23C3B /* map_close.png in Resources */ = {isa = PBXBuildFile; fileRef = 8957372520F59B0F00A23C3B /* map_close.png */; };
        8957374620F59B0F00A23C3B /* map_segment_three.png in Resources */ = {isa = PBXBuildFile; fileRef = 8957372620F59B0F00A23C3B /* map_segment_three.png */; };
        8957374720F59B0F00A23C3B /* dynamic_back.png in Resources */ = {isa = PBXBuildFile; fileRef = 8957372720F59B0F00A23C3B /* dynamic_back.png */; };
        8957374820F59B0F00A23C3B /* detail_back.png in Resources */ = {isa = PBXBuildFile; fileRef = 8957372820F59B0F00A23C3B /* detail_back.png */; };
        8957374920F59B0F00A23C3B /* icon_arrow.png in Resources */ = {isa = PBXBuildFile; fileRef = 8957372920F59B0F00A23C3B /* icon_arrow.png */; };
        8957374A20F59B0F00A23C3B /* map_Airbubbles@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8957372A20F59B0F00A23C3B /* map_Airbubbles@2x.png */; };
        8957374B20F59B0F00A23C3B /* map_segment_one.png in Resources */ = {isa = PBXBuildFile; fileRef = 8957372B20F59B0F00A23C3B /* map_segment_one.png */; };
        8957374C20F59B0F00A23C3B /* bg1.png in Resources */ = {isa = PBXBuildFile; fileRef = 8957372C20F59B0F00A23C3B /* bg1.png */; };
        8957374D20F59B0F00A23C3B /* map_back@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8957372D20F59B0F00A23C3B /* map_back@2x.png */; };
        8957374E20F59B0F00A23C3B /* map_background.png in Resources */ = {isa = PBXBuildFile; fileRef = 8957372E20F59B0F00A23C3B /* map_background.png */; };
        8957374F20F59B0F00A23C3B /* detail_right_btn.png in Resources */ = {isa = PBXBuildFile; fileRef = 8957372F20F59B0F00A23C3B /* detail_right_btn.png */; };
        8957375020F59B0F00A23C3B /* intro_0.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 8957373120F59B0F00A23C3B /* intro_0.jpg */; };
        8957375120F59B0F00A23C3B /* intro_1.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 8957373220F59B0F00A23C3B /* intro_1.jpg */; };
        8957375220F59B0F00A23C3B /* intro_3.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 8957373320F59B0F00A23C3B /* intro_3.jpg */; };
        8957375320F59B0F00A23C3B /* intro_2.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 8957373420F59B0F00A23C3B /* intro_2.jpg */; };
        8957375420F59B0F00A23C3B /* login_background.png in Resources */ = {isa = PBXBuildFile; fileRef = 8957373620F59B0F00A23C3B /* login_background.png */; };
        8957375520F59B0F00A23C3B /* login_user_login_btnbk.png in Resources */ = {isa = PBXBuildFile; fileRef = 8957373720F59B0F00A23C3B /* login_user_login_btnbk.png */; };
        8957375620F59B0F00A23C3B /* login_app_logo.png in Resources */ = {isa = PBXBuildFile; fileRef = 8957373820F59B0F00A23C3B /* login_app_logo.png */; };
        8957375720F59B0F00A23C3B /* login_account_pwd_bk.png in Resources */ = {isa = PBXBuildFile; fileRef = 8957373920F59B0F00A23C3B /* login_account_pwd_bk.png */; };
        89C5B38620F59D220013EAA8 /* TWConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B38320F59D220013EAA8 /* TWConst.m */; };
        89C5B38D20F59E350013EAA8 /* DateUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B38820F59E350013EAA8 /* DateUtil.m */; };
        89C5B38E20F59E350013EAA8 /* StringUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B38C20F59E350013EAA8 /* StringUtil.m */; };
        89C5B45020F59E5E0013EAA8 /* LMJNewViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B39020F59E5E0013EAA8 /* LMJNewViewController.m */; };
        89C5B45120F59E5E0013EAA8 /* LMJCasesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B39120F59E5E0013EAA8 /* LMJCasesViewController.m */; };
        89C5B45220F59E5E0013EAA8 /* LMJTabBarController.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B39220F59E5E0013EAA8 /* LMJTabBarController.m */; };
        89C5B45320F59E5E0013EAA8 /* LMJMessageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B39320F59E5E0013EAA8 /* LMJMessageViewController.m */; };
        89C5B45420F59E5E0013EAA8 /* LMJHomeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B39420F59E5E0013EAA8 /* LMJHomeViewController.m */; };
        89C5B45520F59E5E0013EAA8 /* JHRadarChart.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B39E20F59E5E0013EAA8 /* JHRadarChart.m */; };
        89C5B45620F59E5E0013EAA8 /* JHPieChart.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3A020F59E5E0013EAA8 /* JHPieChart.m */; };
        89C5B45720F59E5E0013EAA8 /* JHWaveChart.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3A220F59E5E0013EAA8 /* JHWaveChart.m */; };
        89C5B45820F59E5E0013EAA8 /* JHTableDataRowModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3A320F59E5E0013EAA8 /* JHTableDataRowModel.m */; };
        89C5B45920F59E5E0013EAA8 /* JHColumnChart.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3A720F59E5E0013EAA8 /* JHColumnChart.m */; };
        89C5B45A20F59E5E0013EAA8 /* JHChart.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3A820F59E5E0013EAA8 /* JHChart.m */; };
        89C5B45B20F59E5E0013EAA8 /* JHRingChart.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3AA20F59E5E0013EAA8 /* JHRingChart.m */; };
        89C5B45C20F59E5E0013EAA8 /* JHLineChart.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3AB20F59E5E0013EAA8 /* JHLineChart.m */; };
        89C5B45D20F59E5E0013EAA8 /* JHShowInfoView.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3AE20F59E5E0013EAA8 /* JHShowInfoView.m */; };
        89C5B45E20F59E5E0013EAA8 /* JHPieItemsView.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3B120F59E5E0013EAA8 /* JHPieItemsView.m */; };
        89C5B45F20F59E5E0013EAA8 /* JHPieForeBGView.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3B220F59E5E0013EAA8 /* JHPieForeBGView.m */; };
        89C5B46020F59E5E0013EAA8 /* JHTableChart.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3B320F59E5E0013EAA8 /* JHTableChart.m */; };
        89C5B46120F59E5E0013EAA8 /* NSObject+CustomIndex.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3B820F59E5E0013EAA8 /* NSObject+CustomIndex.m */; };
        89C5B46220F59E5E0013EAA8 /* DetailDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3BA20F59E5E0013EAA8 /* DetailDataViewController.m */; };
        89C5B46320F59E5E0013EAA8 /* MonitoringMapViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3BF20F59E5E0013EAA8 /* MonitoringMapViewController.m */; };
        89C5B46420F59E5E0013EAA8 /* DynamicViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3C020F59E5E0013EAA8 /* DynamicViewController.m */; };
        89C5B46520F59E5E0013EAA8 /* MyAnimatedAnnotationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3C120F59E5E0013EAA8 /* MyAnimatedAnnotationView.m */; };
        89C5B46620F59E5E0013EAA8 /* DetailModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3C420F59E5E0013EAA8 /* DetailModel.m */; };
        89C5B46720F59E5E0013EAA8 /* DynamicModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3C620F59E5E0013EAA8 /* DynamicModel.m */; };
        89C5B46820F59E5E0013EAA8 /* DeviceModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3C720F59E5E0013EAA8 /* DeviceModel.m */; };
        89C5B46920F59E5E0013EAA8 /* DetailItemCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3CB20F59E5E0013EAA8 /* DetailItemCell.m */; };
        89C5B46A20F59E5E0013EAA8 /* DynamicService.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3CE20F59E5E0013EAA8 /* DynamicService.m */; };
        89C5B46B20F59E5E0013EAA8 /* DetailService.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3D020F59E5E0013EAA8 /* DetailService.m */; };
        89C5B46C20F59E5E0013EAA8 /* DevicesService.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3D220F59E5E0013EAA8 /* DevicesService.m */; };
        89C5B46D20F59E5E0013EAA8 /* PPHTTPRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3D520F59E5E0013EAA8 /* PPHTTPRequest.m */; };
        89C5B46E20F59E5E0013EAA8 /* PPNetworkHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3D720F59E5E0013EAA8 /* PPNetworkHelper.m */; };
        89C5B46F20F59E5E0013EAA8 /* PPInterfacedConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3D920F59E5E0013EAA8 /* PPInterfacedConst.m */; };
        89C5B47020F59E5E0013EAA8 /* Global.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3DD20F59E5E0013EAA8 /* Global.m */; };
        89C5B47120F59E5E0013EAA8 /* BaseHTTPRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3DE20F59E5E0013EAA8 /* BaseHTTPRequest.m */; };
        89C5B47220F59E5E0013EAA8 /* PPNetworkCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3DF20F59E5E0013EAA8 /* PPNetworkCache.m */; };
        89C5B47320F59E5E0013EAA8 /* NetworkDemo.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3E120F59E5E0013EAA8 /* NetworkDemo.m */; };
        89C5B47420F59E5E0013EAA8 /* LoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3E520F59E5E0013EAA8 /* LoginViewController.m */; };
        89C5B47520F59E5E0013EAA8 /* CommonReqModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3E820F59E5E0013EAA8 /* CommonReqModel.m */; };
        89C5B47620F59E5E0013EAA8 /* UserModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3E920F59E5E0013EAA8 /* UserModel.m */; };
        89C5B47720F59E5E0013EAA8 /* LoginSevice.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3EE20F59E5E0013EAA8 /* LoginSevice.m */; };
        89C5B47820F59E5E0013EAA8 /* LMJIntroductoryPagesView.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3F420F59E5E0013EAA8 /* LMJIntroductoryPagesView.m */; };
        89C5B47920F59E5E0013EAA8 /* LMJIntroductoryPagesHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3F520F59E5E0013EAA8 /* LMJIntroductoryPagesHelper.m */; };
        89C5B47A20F59E5E0013EAA8 /* LMJEventTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3F820F59E5E0013EAA8 /* LMJEventTool.m */; };
        89C5B47B20F59E5E0013EAA8 /* TDTouchID.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3F920F59E5E0013EAA8 /* TDTouchID.m */; };
        89C5B47C20F59E5E0013EAA8 /* YYFPSLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B3FC20F59E5E0013EAA8 /* YYFPSLabel.m */; };
        89C5B47E20F59E5E0013EAA8 /* PresentAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B40020F59E5E0013EAA8 /* PresentAnimator.m */; };
        89C5B47F20F59E5E0013EAA8 /* LMJEasyBlankPageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B40120F59E5E0013EAA8 /* LMJEasyBlankPageView.m */; };
        89C5B48020F59E5E0013EAA8 /* UIImageView+FitNet.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B40220F59E5E0013EAA8 /* UIImageView+FitNet.m */; };
        89C5B48120F59E5E0013EAA8 /* AdvertiseView.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B40420F59E5E0013EAA8 /* AdvertiseView.m */; };
        89C5B48220F59E5E0013EAA8 /* AdvertiseHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B40520F59E5E0013EAA8 /* AdvertiseHelper.m */; };
        89C5B48320F59E5E0013EAA8 /* UIView+GestureCallback.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B40B20F59E5E0013EAA8 /* UIView+GestureCallback.m */; };
        89C5B48420F59E5E0013EAA8 /* UITextView+WZB.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B40D20F59E5E0013EAA8 /* UITextView+WZB.m */; };
        89C5B48520F59E5E0013EAA8 /* NullSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B40E20F59E5E0013EAA8 /* NullSafe.m */; };
        89C5B48620F59E5E0013EAA8 /* NSDecimalNumber+Addtion.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B41120F59E5E0013EAA8 /* NSDecimalNumber+Addtion.m */; };
        89C5B48720F59E5E0013EAA8 /* UIButton+LMJ.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B41220F59E5E0013EAA8 /* UIButton+LMJ.m */; };
        89C5B48820F59E5E0013EAA8 /* UIColor+Random.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B41320F59E5E0013EAA8 /* UIColor+Random.m */; };
        89C5B48920F59E5E0013EAA8 /* MBProgressHUD+LMJ.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B41420F59E5E0013EAA8 /* MBProgressHUD+LMJ.m */; };
        89C5B48A20F59E5E0013EAA8 /* UIWindow+CurrentViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B41620F59E5E0013EAA8 /* UIWindow+CurrentViewController.m */; };
        89C5B48B20F59E5E0013EAA8 /* UIView+LMJNjHuFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B41920F59E5E0013EAA8 /* UIView+LMJNjHuFrame.m */; };
        89C5B48C20F59E5E0013EAA8 /* GradientProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B41C20F59E5E0013EAA8 /* GradientProgressView.m */; };
        89C5B48D20F59E5E0013EAA8 /* LMJElementsFlowLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B42120F59E5E0013EAA8 /* LMJElementsFlowLayout.m */; };
        89C5B48E20F59E5E0013EAA8 /* LMJNormalRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B42320F59E5E0013EAA8 /* LMJNormalRefreshHeader.m */; };
        89C5B48F20F59E5E0013EAA8 /* LMJHorizontalFlowLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B42420F59E5E0013EAA8 /* LMJHorizontalFlowLayout.m */; };
        89C5B49020F59E5E0013EAA8 /* LMJVerticalFlowLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B42620F59E5E0013EAA8 /* LMJVerticalFlowLayout.m */; };
        89C5B49120F59E5E0013EAA8 /* LMJAutoRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B42720F59E5E0013EAA8 /* LMJAutoRefreshFooter.m */; };
        89C5B49220F59E5E0013EAA8 /* LMJNavigationBar.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B42A20F59E5E0013EAA8 /* LMJNavigationBar.m */; };
        89C5B49320F59E5E0013EAA8 /* LMJSettingCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B42D20F59E5E0013EAA8 /* LMJSettingCell.m */; };
        89C5B49420F59E5E0013EAA8 /* LMJBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B43220F59E5E0013EAA8 /* LMJBaseViewController.m */; };
        89C5B49520F59E5E0013EAA8 /* LMJRequestBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B43320F59E5E0013EAA8 /* LMJRequestBaseViewController.m */; };
        89C5B49620F59E5E0013EAA8 /* LMJRefreshTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B43520F59E5E0013EAA8 /* LMJRefreshTableViewController.m */; };
        89C5B49720F59E5E0013EAA8 /* LMJStaticTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B43620F59E5E0013EAA8 /* LMJStaticTableViewController.m */; };
        89C5B49820F59E5E0013EAA8 /* LMJTextViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B43720F59E5E0013EAA8 /* LMJTextViewController.m */; };
        89C5B49920F59E5E0013EAA8 /* LMJWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B43820F59E5E0013EAA8 /* LMJWebViewController.m */; };
        89C5B49A20F59E5E0013EAA8 /* LMJRefreshCollectionViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B43A20F59E5E0013EAA8 /* LMJRefreshCollectionViewController.m */; };
        89C5B49B20F59E5E0013EAA8 /* LMJNavUIBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B43C20F59E5E0013EAA8 /* LMJNavUIBaseViewController.m */; };
        89C5B49C20F59E5E0013EAA8 /* LMJCollectionViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B43D20F59E5E0013EAA8 /* LMJCollectionViewController.m */; };
        89C5B49D20F59E5E0013EAA8 /* LMJTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B44020F59E5E0013EAA8 /* LMJTableViewController.m */; };
        89C5B49E20F59E5E0013EAA8 /* LMJNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B44220F59E5E0013EAA8 /* LMJNavigationController.m */; };
        89C5B49F20F59E5E0013EAA8 /* LMJItemSection.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B44A20F59E5E0013EAA8 /* LMJItemSection.m */; };
        89C5B4A020F59E5E0013EAA8 /* BaseReqModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B44B20F59E5E0013EAA8 /* BaseReqModel.m */; };
        89C5B4A120F59E5E0013EAA8 /* BaseResModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B44C20F59E5E0013EAA8 /* BaseResModel.m */; };
        89C5B4A220F59E5E0013EAA8 /* LMJWordItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B44D20F59E5E0013EAA8 /* LMJWordItem.m */; };
        89C5B4A320F59E5E0013EAA8 /* LMJWordArrowItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C5B44F20F59E5E0013EAA8 /* LMJWordArrowItem.m */; };
        89D30A7520F5AE5800BE0ECA /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 89D30A7420F5AE5700BE0ECA /* CoreLocation.framework */; };
        89D30A7720F5AE5E00BE0ECA /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 89D30A7620F5AE5E00BE0ECA /* QuartzCore.framework */; };
        89D30A7920F5AE6400BE0ECA /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 89D30A7820F5AE6400BE0ECA /* OpenGLES.framework */; };
        89D30A7B20F5AE6B00BE0ECA /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 89D30A7A20F5AE6B00BE0ECA /* SystemConfiguration.framework */; };
        89D30A7D20F5AE7200BE0ECA /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 89D30A7C20F5AE7200BE0ECA /* CoreGraphics.framework */; };
        89D30A7F20F5AE8500BE0ECA /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 89D30A7E20F5AE8500BE0ECA /* Security.framework */; };
        89D30A8120F5AE9000BE0ECA /* libsqlite3.0.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 89D30A8020F5AE9000BE0ECA /* libsqlite3.0.tbd */; };
        89D30A8320F5AE9700BE0ECA /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 89D30A8220F5AE9700BE0ECA /* CoreTelephony.framework */; };
        89D30A8520F5AEA000BE0ECA /* libstdc++.6.0.9.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 89D30A8420F5AEA000BE0ECA /* libstdc++.6.0.9.tbd */; };
        89D30A9020F5AF7000BE0ECA /* BaiduMapAPI_Base.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 89D30A8820F5AF5D00BE0ECA /* BaiduMapAPI_Base.framework */; };
        89D30A9120F5AF7C00BE0ECA /* BaiduMapAPI_Cloud.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 89D30A8920F5AF5D00BE0ECA /* BaiduMapAPI_Cloud.framework */; };
        89D30A9220F5AF7C00BE0ECA /* BaiduMapAPI_Location.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 89D30A8F20F5AF5D00BE0ECA /* BaiduMapAPI_Location.framework */; };
        89D30A9320F5AF7C00BE0ECA /* BaiduMapAPI_Map.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 89D30A8A20F5AF5D00BE0ECA /* BaiduMapAPI_Map.framework */; };
        89D30A9420F5AF7C00BE0ECA /* BaiduMapAPI_Radar.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 89D30A8E20F5AF5D00BE0ECA /* BaiduMapAPI_Radar.framework */; };
        89D30A9520F5AF7C00BE0ECA /* BaiduMapAPI_Search.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 89D30A8620F5AF5D00BE0ECA /* BaiduMapAPI_Search.framework */; };
        89D30A9620F5AF7C00BE0ECA /* BaiduMapAPI_Utils.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 89D30A8720F5AF5D00BE0ECA /* BaiduMapAPI_Utils.framework */; };
        89D30A9720F5AF8800BE0ECA /* libcrypto.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 89D30A8C20F5AF5D00BE0ECA /* libcrypto.a */; };
        89D30A9820F5AF8800BE0ECA /* libssl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 89D30A8D20F5AF5D00BE0ECA /* libssl.a */; };
        89D30A9D20F5B32700BE0ECA /* JXTAlertController.m in Sources */ = {isa = PBXBuildFile; fileRef = 89D30A9C20F5B32600BE0ECA /* JXTAlertController.m */; };
/* End PBXBuildFile section */
 
/* Begin PBXFileReference section */
        0301D6CDCA500FA2E0FB7669 /* Pods-screendisplay.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-screendisplay.release.xcconfig"; path = "Pods/Target Support Files/Pods-screendisplay/Pods-screendisplay.release.xcconfig"; sourceTree = "<group>"; };
        2603E50D5F53F13AC6A578A2 /* Pods-testdemo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-testdemo.release.xcconfig"; path = "Pods/Target Support Files/Pods-testdemo/Pods-testdemo.release.xcconfig"; sourceTree = "<group>"; };
        321BB08FDBCFE5EE52765180 /* libPods-screendisplay.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-screendisplay.a"; sourceTree = BUILT_PRODUCTS_DIR; };
        47EB781C30DC01554A142ACC /* Pods-testdemo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-testdemo.debug.xcconfig"; path = "Pods/Target Support Files/Pods-testdemo/Pods-testdemo.debug.xcconfig"; sourceTree = "<group>"; };
        895736FE20F595BB00A23C3B /* screendisplay.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = screendisplay.app; sourceTree = BUILT_PRODUCTS_DIR; };
        8957370120F595BB00A23C3B /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
        8957370220F595BB00A23C3B /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
        8957370F20F595BC00A23C3B /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
        8957371020F595BD00A23C3B /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
        8957371920F59B0F00A23C3B /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
        8957371B20F59B0F00A23C3B /* map_top_bar_bk@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "map_top_bar_bk@2x.png"; sourceTree = "<group>"; };
        8957371C20F59B0F00A23C3B /* map_segment_normal.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = map_segment_normal.png; sourceTree = "<group>"; };
        8957371D20F59B0F00A23C3B /* detail_pregress.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = detail_pregress.png; sourceTree = "<group>"; };
        8957371E20F59B0F00A23C3B /* deatil_line.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = deatil_line.png; sourceTree = "<group>"; };
        8957371F20F59B0F00A23C3B /* poi_3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = poi_3.png; sourceTree = "<group>"; };
        8957372020F59B0F00A23C3B /* poi_2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = poi_2.png; sourceTree = "<group>"; };
        8957372120F59B0F00A23C3B /* map_segment_four.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = map_segment_four.png; sourceTree = "<group>"; };
        8957372220F59B0F00A23C3B /* poi_1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = poi_1.png; sourceTree = "<group>"; };
        8957372320F59B0F00A23C3B /* icon_circle.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = icon_circle.png; sourceTree = "<group>"; };
        8957372420F59B0F00A23C3B /* map_segment_two.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = map_segment_two.png; sourceTree = "<group>"; };
        8957372520F59B0F00A23C3B /* map_close.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = map_close.png; sourceTree = "<group>"; };
        8957372620F59B0F00A23C3B /* map_segment_three.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = map_segment_three.png; sourceTree = "<group>"; };
        8957372720F59B0F00A23C3B /* dynamic_back.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = dynamic_back.png; sourceTree = "<group>"; };
        8957372820F59B0F00A23C3B /* detail_back.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = detail_back.png; sourceTree = "<group>"; };
        8957372920F59B0F00A23C3B /* icon_arrow.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = icon_arrow.png; sourceTree = "<group>"; };
        8957372A20F59B0F00A23C3B /* map_Airbubbles@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "map_Airbubbles@2x.png"; sourceTree = "<group>"; };
        8957372B20F59B0F00A23C3B /* map_segment_one.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = map_segment_one.png; sourceTree = "<group>"; };
        8957372C20F59B0F00A23C3B /* bg1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = bg1.png; sourceTree = "<group>"; };
        8957372D20F59B0F00A23C3B /* map_back@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "map_back@2x.png"; sourceTree = "<group>"; };
        8957372E20F59B0F00A23C3B /* map_background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = map_background.png; sourceTree = "<group>"; };
        8957372F20F59B0F00A23C3B /* detail_right_btn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = detail_right_btn.png; sourceTree = "<group>"; };
        8957373120F59B0F00A23C3B /* intro_0.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = intro_0.jpg; sourceTree = "<group>"; };
        8957373220F59B0F00A23C3B /* intro_1.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = intro_1.jpg; sourceTree = "<group>"; };
        8957373320F59B0F00A23C3B /* intro_3.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = intro_3.jpg; sourceTree = "<group>"; };
        8957373420F59B0F00A23C3B /* intro_2.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = intro_2.jpg; sourceTree = "<group>"; };
        8957373620F59B0F00A23C3B /* login_background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = login_background.png; sourceTree = "<group>"; };
        8957373720F59B0F00A23C3B /* login_user_login_btnbk.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = login_user_login_btnbk.png; sourceTree = "<group>"; };
        8957373820F59B0F00A23C3B /* login_app_logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = login_app_logo.png; sourceTree = "<group>"; };
        8957373920F59B0F00A23C3B /* login_account_pwd_bk.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = login_account_pwd_bk.png; sourceTree = "<group>"; };
        89C5B38320F59D220013EAA8 /* TWConst.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TWConst.m; sourceTree = "<group>"; };
        89C5B38420F59D220013EAA8 /* CommonHeader.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommonHeader.pch; sourceTree = "<group>"; };
        89C5B38520F59D220013EAA8 /* TWConst.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TWConst.h; sourceTree = "<group>"; };
        89C5B38820F59E350013EAA8 /* DateUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DateUtil.m; sourceTree = "<group>"; };
        89C5B38920F59E350013EAA8 /* StringUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StringUtil.h; sourceTree = "<group>"; };
        89C5B38A20F59E350013EAA8 /* DateUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DateUtil.h; sourceTree = "<group>"; };
        89C5B38B20F59E350013EAA8 /* Utility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Utility.h; sourceTree = "<group>"; };
        89C5B38C20F59E350013EAA8 /* StringUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StringUtil.m; sourceTree = "<group>"; };
        89C5B39020F59E5E0013EAA8 /* LMJNewViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMJNewViewController.m; sourceTree = "<group>"; };
        89C5B39120F59E5E0013EAA8 /* LMJCasesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMJCasesViewController.m; sourceTree = "<group>"; };
        89C5B39220F59E5E0013EAA8 /* LMJTabBarController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMJTabBarController.m; sourceTree = "<group>"; };
        89C5B39320F59E5E0013EAA8 /* LMJMessageViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMJMessageViewController.m; sourceTree = "<group>"; };
        89C5B39420F59E5E0013EAA8 /* LMJHomeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMJHomeViewController.m; sourceTree = "<group>"; };
        89C5B39520F59E5E0013EAA8 /* LMJNewViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMJNewViewController.h; sourceTree = "<group>"; };
        89C5B39620F59E5E0013EAA8 /* LMJHomeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMJHomeViewController.h; sourceTree = "<group>"; };
        89C5B39720F59E5E0013EAA8 /* LMJMessageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMJMessageViewController.h; sourceTree = "<group>"; };
        89C5B39820F59E5E0013EAA8 /* LMJTabBarController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMJTabBarController.h; sourceTree = "<group>"; };
        89C5B39920F59E5E0013EAA8 /* LMJCasesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMJCasesViewController.h; sourceTree = "<group>"; };
        89C5B39C20F59E5E0013EAA8 /* JHLineChart.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JHLineChart.h; sourceTree = "<group>"; };
        89C5B39D20F59E5E0013EAA8 /* JHRingChart.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JHRingChart.h; sourceTree = "<group>"; };
        89C5B39E20F59E5E0013EAA8 /* JHRadarChart.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JHRadarChart.m; sourceTree = "<group>"; };
        89C5B39F20F59E5E0013EAA8 /* JHChartHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JHChartHeader.h; sourceTree = "<group>"; };
        89C5B3A020F59E5E0013EAA8 /* JHPieChart.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JHPieChart.m; sourceTree = "<group>"; };
        89C5B3A120F59E5E0013EAA8 /* JHShowInfoView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JHShowInfoView.h; sourceTree = "<group>"; };
        89C5B3A220F59E5E0013EAA8 /* JHWaveChart.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JHWaveChart.m; sourceTree = "<group>"; };
        89C5B3A320F59E5E0013EAA8 /* JHTableDataRowModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JHTableDataRowModel.m; sourceTree = "<group>"; };
        89C5B3A420F59E5E0013EAA8 /* JHTableChart.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JHTableChart.h; sourceTree = "<group>"; };
        89C5B3A520F59E5E0013EAA8 /* JHPieForeBGView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JHPieForeBGView.h; sourceTree = "<group>"; };
        89C5B3A620F59E5E0013EAA8 /* JHPieItemsView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JHPieItemsView.h; sourceTree = "<group>"; };
        89C5B3A720F59E5E0013EAA8 /* JHColumnChart.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JHColumnChart.m; sourceTree = "<group>"; };
        89C5B3A820F59E5E0013EAA8 /* JHChart.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JHChart.m; sourceTree = "<group>"; };
        89C5B3A920F59E5E0013EAA8 /* JHRadarChart.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JHRadarChart.h; sourceTree = "<group>"; };
        89C5B3AA20F59E5E0013EAA8 /* JHRingChart.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JHRingChart.m; sourceTree = "<group>"; };
        89C5B3AB20F59E5E0013EAA8 /* JHLineChart.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JHLineChart.m; sourceTree = "<group>"; };
        89C5B3AC20F59E5E0013EAA8 /* JHTableDataRowModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JHTableDataRowModel.h; sourceTree = "<group>"; };
        89C5B3AD20F59E5E0013EAA8 /* JHWaveChart.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JHWaveChart.h; sourceTree = "<group>"; };
        89C5B3AE20F59E5E0013EAA8 /* JHShowInfoView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JHShowInfoView.m; sourceTree = "<group>"; };
        89C5B3AF20F59E5E0013EAA8 /* JHPieChart.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JHPieChart.h; sourceTree = "<group>"; };
        89C5B3B020F59E5E0013EAA8 /* JHColumnChart.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JHColumnChart.h; sourceTree = "<group>"; };
        89C5B3B120F59E5E0013EAA8 /* JHPieItemsView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JHPieItemsView.m; sourceTree = "<group>"; };
        89C5B3B220F59E5E0013EAA8 /* JHPieForeBGView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JHPieForeBGView.m; sourceTree = "<group>"; };
        89C5B3B320F59E5E0013EAA8 /* JHTableChart.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JHTableChart.m; sourceTree = "<group>"; };
        89C5B3B420F59E5E0013EAA8 /* JHChart.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JHChart.h; sourceTree = "<group>"; };
        89C5B3B720F59E5E0013EAA8 /* NSObject+CustomIndex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+CustomIndex.h"; sourceTree = "<group>"; };
        89C5B3B820F59E5E0013EAA8 /* NSObject+CustomIndex.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+CustomIndex.m"; sourceTree = "<group>"; };
        89C5B3BA20F59E5E0013EAA8 /* DetailDataViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DetailDataViewController.m; sourceTree = "<group>"; };
        89C5B3BB20F59E5E0013EAA8 /* DynamicViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DynamicViewController.h; sourceTree = "<group>"; };
        89C5B3BC20F59E5E0013EAA8 /* MonitoringMapViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MonitoringMapViewController.h; sourceTree = "<group>"; };
        89C5B3BD20F59E5E0013EAA8 /* MyAnimatedAnnotationView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyAnimatedAnnotationView.h; sourceTree = "<group>"; };
        89C5B3BE20F59E5E0013EAA8 /* DetailDataViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DetailDataViewController.h; sourceTree = "<group>"; };
        89C5B3BF20F59E5E0013EAA8 /* MonitoringMapViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MonitoringMapViewController.m; sourceTree = "<group>"; };
        89C5B3C020F59E5E0013EAA8 /* DynamicViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DynamicViewController.m; sourceTree = "<group>"; };
        89C5B3C120F59E5E0013EAA8 /* MyAnimatedAnnotationView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyAnimatedAnnotationView.m; sourceTree = "<group>"; };
        89C5B3C320F59E5E0013EAA8 /* DynamicModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DynamicModel.h; sourceTree = "<group>"; };
        89C5B3C420F59E5E0013EAA8 /* DetailModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DetailModel.m; sourceTree = "<group>"; };
        89C5B3C520F59E5E0013EAA8 /* DeviceModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceModel.h; sourceTree = "<group>"; };
        89C5B3C620F59E5E0013EAA8 /* DynamicModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DynamicModel.m; sourceTree = "<group>"; };
        89C5B3C720F59E5E0013EAA8 /* DeviceModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeviceModel.m; sourceTree = "<group>"; };
        89C5B3C820F59E5E0013EAA8 /* DetailModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DetailModel.h; sourceTree = "<group>"; };
        89C5B3CA20F59E5E0013EAA8 /* DetailItemCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DetailItemCell.h; sourceTree = "<group>"; };
        89C5B3CB20F59E5E0013EAA8 /* DetailItemCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DetailItemCell.m; sourceTree = "<group>"; };
        89C5B3CD20F59E5E0013EAA8 /* DetailService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DetailService.h; sourceTree = "<group>"; };
        89C5B3CE20F59E5E0013EAA8 /* DynamicService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DynamicService.m; sourceTree = "<group>"; };
        89C5B3CF20F59E5E0013EAA8 /* DevicesService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DevicesService.h; sourceTree = "<group>"; };
        89C5B3D020F59E5E0013EAA8 /* DetailService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DetailService.m; sourceTree = "<group>"; };
        89C5B3D120F59E5E0013EAA8 /* DynamicService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DynamicService.h; sourceTree = "<group>"; };
        89C5B3D220F59E5E0013EAA8 /* DevicesService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DevicesService.m; sourceTree = "<group>"; };
        89C5B3D420F59E5E0013EAA8 /* NetworkDemo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NetworkDemo.h; sourceTree = "<group>"; };
        89C5B3D520F59E5E0013EAA8 /* PPHTTPRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PPHTTPRequest.m; sourceTree = "<group>"; };
        89C5B3D720F59E5E0013EAA8 /* PPNetworkHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PPNetworkHelper.m; sourceTree = "<group>"; };
        89C5B3D820F59E5E0013EAA8 /* Global.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Global.h; sourceTree = "<group>"; };
        89C5B3D920F59E5E0013EAA8 /* PPInterfacedConst.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PPInterfacedConst.m; sourceTree = "<group>"; };
        89C5B3DA20F59E5E0013EAA8 /* PPNetworkCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PPNetworkCache.h; sourceTree = "<group>"; };
        89C5B3DB20F59E5E0013EAA8 /* BaseHTTPRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BaseHTTPRequest.h; sourceTree = "<group>"; };
        89C5B3DC20F59E5E0013EAA8 /* PPNetworkHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PPNetworkHelper.h; sourceTree = "<group>"; };
        89C5B3DD20F59E5E0013EAA8 /* Global.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Global.m; sourceTree = "<group>"; };
        89C5B3DE20F59E5E0013EAA8 /* BaseHTTPRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BaseHTTPRequest.m; sourceTree = "<group>"; };
        89C5B3DF20F59E5E0013EAA8 /* PPNetworkCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PPNetworkCache.m; sourceTree = "<group>"; };
        89C5B3E020F59E5E0013EAA8 /* PPInterfacedConst.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PPInterfacedConst.h; sourceTree = "<group>"; };
        89C5B3E120F59E5E0013EAA8 /* NetworkDemo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NetworkDemo.m; sourceTree = "<group>"; };
        89C5B3E220F59E5E0013EAA8 /* PPHTTPRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PPHTTPRequest.h; sourceTree = "<group>"; };
        89C5B3E520F59E5E0013EAA8 /* LoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginViewController.m; sourceTree = "<group>"; };
        89C5B3E620F59E5E0013EAA8 /* LoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginViewController.h; sourceTree = "<group>"; };
        89C5B3E820F59E5E0013EAA8 /* CommonReqModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CommonReqModel.m; sourceTree = "<group>"; };
        89C5B3E920F59E5E0013EAA8 /* UserModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserModel.m; sourceTree = "<group>"; };
        89C5B3EA20F59E5E0013EAA8 /* CommonReqModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommonReqModel.h; sourceTree = "<group>"; };
        89C5B3EB20F59E5E0013EAA8 /* UserModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserModel.h; sourceTree = "<group>"; };
        89C5B3ED20F59E5E0013EAA8 /* LoginSevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginSevice.h; sourceTree = "<group>"; };
        89C5B3EE20F59E5E0013EAA8 /* LoginSevice.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginSevice.m; sourceTree = "<group>"; };
        89C5B3F020F59E5E0013EAA8 /* YYFPSLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYFPSLabel.h; sourceTree = "<group>"; };
        89C5B3F120F59E5E0013EAA8 /* PresentAnimator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PresentAnimator.h; sourceTree = "<group>"; };
        89C5B3F320F59E5E0013EAA8 /* LMJIntroductoryPagesHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMJIntroductoryPagesHelper.h; sourceTree = "<group>"; };
        89C5B3F420F59E5E0013EAA8 /* LMJIntroductoryPagesView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMJIntroductoryPagesView.m; sourceTree = "<group>"; };
        89C5B3F520F59E5E0013EAA8 /* LMJIntroductoryPagesHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMJIntroductoryPagesHelper.m; sourceTree = "<group>"; };
        89C5B3F620F59E5E0013EAA8 /* LMJIntroductoryPagesView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMJIntroductoryPagesView.h; sourceTree = "<group>"; };
        89C5B3F820F59E5E0013EAA8 /* LMJEventTool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMJEventTool.m; sourceTree = "<group>"; };
        89C5B3F920F59E5E0013EAA8 /* TDTouchID.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TDTouchID.m; sourceTree = "<group>"; };
        89C5B3FA20F59E5E0013EAA8 /* UIImageView+FitNet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+FitNet.h"; sourceTree = "<group>"; };
        89C5B3FB20F59E5E0013EAA8 /* LMJEasyBlankPageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMJEasyBlankPageView.h; sourceTree = "<group>"; };
        89C5B3FC20F59E5E0013EAA8 /* YYFPSLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYFPSLabel.m; sourceTree = "<group>"; };
        89C5B3FD20F59E5E0013EAA8 /* LMJEventTool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMJEventTool.h; sourceTree = "<group>"; };
        89C5B3FE20F59E5E0013EAA8 /* TDTouchID.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TDTouchID.h; sourceTree = "<group>"; };
        89C5B40020F59E5E0013EAA8 /* PresentAnimator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PresentAnimator.m; sourceTree = "<group>"; };
        89C5B40120F59E5E0013EAA8 /* LMJEasyBlankPageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMJEasyBlankPageView.m; sourceTree = "<group>"; };
        89C5B40220F59E5E0013EAA8 /* UIImageView+FitNet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+FitNet.m"; sourceTree = "<group>"; };
        89C5B40420F59E5E0013EAA8 /* AdvertiseView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AdvertiseView.m; sourceTree = "<group>"; };
        89C5B40520F59E5E0013EAA8 /* AdvertiseHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AdvertiseHelper.m; sourceTree = "<group>"; };
        89C5B40620F59E5E0013EAA8 /* AdvertiseHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AdvertiseHelper.h; sourceTree = "<group>"; };
        89C5B40720F59E5E0013EAA8 /* AdvertiseView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AdvertiseView.h; sourceTree = "<group>"; };
        89C5B40920F59E5E0013EAA8 /* UIWindow+CurrentViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIWindow+CurrentViewController.h"; sourceTree = "<group>"; };
        89C5B40B20F59E5E0013EAA8 /* UIView+GestureCallback.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+GestureCallback.m"; sourceTree = "<group>"; };
        89C5B40C20F59E5E0013EAA8 /* NSDecimalNumber+Addtion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDecimalNumber+Addtion.h"; sourceTree = "<group>"; };
        89C5B40D20F59E5E0013EAA8 /* UITextView+WZB.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITextView+WZB.m"; sourceTree = "<group>"; };
        89C5B40E20F59E5E0013EAA8 /* NullSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NullSafe.m; sourceTree = "<group>"; };
        89C5B40F20F59E5E0013EAA8 /* UIView+GestureCallback.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+GestureCallback.h"; sourceTree = "<group>"; };
        89C5B41020F59E5E0013EAA8 /* UITextView+WZB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITextView+WZB.h"; sourceTree = "<group>"; };
        89C5B41120F59E5E0013EAA8 /* NSDecimalNumber+Addtion.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDecimalNumber+Addtion.m"; sourceTree = "<group>"; };
        89C5B41220F59E5E0013EAA8 /* UIButton+LMJ.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+LMJ.m"; sourceTree = "<group>"; };
        89C5B41320F59E5E0013EAA8 /* UIColor+Random.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+Random.m"; sourceTree = "<group>"; };
        89C5B41420F59E5E0013EAA8 /* MBProgressHUD+LMJ.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "MBProgressHUD+LMJ.m"; sourceTree = "<group>"; };
        89C5B41520F59E5E0013EAA8 /* UIView+LMJNjHuFrame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+LMJNjHuFrame.h"; sourceTree = "<group>"; };
        89C5B41620F59E5E0013EAA8 /* UIWindow+CurrentViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIWindow+CurrentViewController.m"; sourceTree = "<group>"; };
        89C5B41720F59E5E0013EAA8 /* UIButton+LMJ.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+LMJ.h"; sourceTree = "<group>"; };
        89C5B41820F59E5E0013EAA8 /* UIColor+Random.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+Random.h"; sourceTree = "<group>"; };
        89C5B41920F59E5E0013EAA8 /* UIView+LMJNjHuFrame.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+LMJNjHuFrame.m"; sourceTree = "<group>"; };
        89C5B41B20F59E5E0013EAA8 /* GradientProgressView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GradientProgressView.h; sourceTree = "<group>"; };
        89C5B41C20F59E5E0013EAA8 /* GradientProgressView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GradientProgressView.m; sourceTree = "<group>"; };
        89C5B41D20F59E5E0013EAA8 /* MBProgressHUD+LMJ.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD+LMJ.h"; sourceTree = "<group>"; };
        89C5B42020F59E5E0013EAA8 /* LMJAutoRefreshFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMJAutoRefreshFooter.h; sourceTree = "<group>"; };
        89C5B42120F59E5E0013EAA8 /* LMJElementsFlowLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMJElementsFlowLayout.m; sourceTree = "<group>"; };
        89C5B42220F59E5E0013EAA8 /* LMJNavigationBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMJNavigationBar.h; sourceTree = "<group>"; };
        89C5B42320F59E5E0013EAA8 /* LMJNormalRefreshHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMJNormalRefreshHeader.m; sourceTree = "<group>"; };
        89C5B42420F59E5E0013EAA8 /* LMJHorizontalFlowLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMJHorizontalFlowLayout.m; sourceTree = "<group>"; };
        89C5B42520F59E5E0013EAA8 /* LMJSettingCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMJSettingCell.h; sourceTree = "<group>"; };
        89C5B42620F59E5E0013EAA8 /* LMJVerticalFlowLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMJVerticalFlowLayout.m; sourceTree = "<group>"; };
        89C5B42720F59E5E0013EAA8 /* LMJAutoRefreshFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMJAutoRefreshFooter.m; sourceTree = "<group>"; };
        89C5B42820F59E5E0013EAA8 /* LMJHorizontalFlowLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMJHorizontalFlowLayout.h; sourceTree = "<group>"; };
        89C5B42920F59E5E0013EAA8 /* LMJNormalRefreshHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMJNormalRefreshHeader.h; sourceTree = "<group>"; };
        89C5B42A20F59E5E0013EAA8 /* LMJNavigationBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMJNavigationBar.m; sourceTree = "<group>"; };
        89C5B42B20F59E5E0013EAA8 /* LMJElementsFlowLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMJElementsFlowLayout.h; sourceTree = "<group>"; };
        89C5B42C20F59E5E0013EAA8 /* LMJVerticalFlowLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMJVerticalFlowLayout.h; sourceTree = "<group>"; };
        89C5B42D20F59E5E0013EAA8 /* LMJSettingCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMJSettingCell.m; sourceTree = "<group>"; };
        89C5B42F20F59E5E0013EAA8 /* LMJRefreshCollectionViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMJRefreshCollectionViewController.h; sourceTree = "<group>"; };
        89C5B43020F59E5E0013EAA8 /* LMJNavUIBaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMJNavUIBaseViewController.h; sourceTree = "<group>"; };
        89C5B43120F59E5E0013EAA8 /* LMJCollectionViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMJCollectionViewController.h; sourceTree = "<group>"; };
        89C5B43220F59E5E0013EAA8 /* LMJBaseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMJBaseViewController.m; sourceTree = "<group>"; };
        89C5B43320F59E5E0013EAA8 /* LMJRequestBaseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMJRequestBaseViewController.m; sourceTree = "<group>"; };
        89C5B43420F59E5E0013EAA8 /* LMJTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMJTableViewController.h; sourceTree = "<group>"; };
        89C5B43520F59E5E0013EAA8 /* LMJRefreshTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMJRefreshTableViewController.m; sourceTree = "<group>"; };
        89C5B43620F59E5E0013EAA8 /* LMJStaticTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMJStaticTableViewController.m; sourceTree = "<group>"; };
        89C5B43720F59E5E0013EAA8 /* LMJTextViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMJTextViewController.m; sourceTree = "<group>"; };
        89C5B43820F59E5E0013EAA8 /* LMJWebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMJWebViewController.m; sourceTree = "<group>"; };
        89C5B43920F59E5E0013EAA8 /* LMJNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMJNavigationController.h; sourceTree = "<group>"; };
        89C5B43A20F59E5E0013EAA8 /* LMJRefreshCollectionViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMJRefreshCollectionViewController.m; sourceTree = "<group>"; };
        89C5B43B20F59E5E0013EAA8 /* LMJBaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMJBaseViewController.h; sourceTree = "<group>"; };
        89C5B43C20F59E5E0013EAA8 /* LMJNavUIBaseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMJNavUIBaseViewController.m; sourceTree = "<group>"; };
        89C5B43D20F59E5E0013EAA8 /* LMJCollectionViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMJCollectionViewController.m; sourceTree = "<group>"; };
        89C5B43E20F59E5E0013EAA8 /* LMJStaticTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMJStaticTableViewController.h; sourceTree = "<group>"; };
        89C5B43F20F59E5E0013EAA8 /* LMJRefreshTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMJRefreshTableViewController.h; sourceTree = "<group>"; };
        89C5B44020F59E5E0013EAA8 /* LMJTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMJTableViewController.m; sourceTree = "<group>"; };
        89C5B44120F59E5E0013EAA8 /* LMJRequestBaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMJRequestBaseViewController.h; sourceTree = "<group>"; };
        89C5B44220F59E5E0013EAA8 /* LMJNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMJNavigationController.m; sourceTree = "<group>"; };
        89C5B44320F59E5E0013EAA8 /* LMJWebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMJWebViewController.h; sourceTree = "<group>"; };
        89C5B44420F59E5E0013EAA8 /* LMJTextViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMJTextViewController.h; sourceTree = "<group>"; };
        89C5B44620F59E5E0013EAA8 /* BaseReqModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BaseReqModel.h; sourceTree = "<group>"; };
        89C5B44720F59E5E0013EAA8 /* LMJWordItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMJWordItem.h; sourceTree = "<group>"; };
        89C5B44820F59E5E0013EAA8 /* BaseResModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BaseResModel.h; sourceTree = "<group>"; };
        89C5B44920F59E5E0013EAA8 /* LMJWordArrowItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMJWordArrowItem.h; sourceTree = "<group>"; };
        89C5B44A20F59E5E0013EAA8 /* LMJItemSection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMJItemSection.m; sourceTree = "<group>"; };
        89C5B44B20F59E5E0013EAA8 /* BaseReqModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BaseReqModel.m; sourceTree = "<group>"; };
        89C5B44C20F59E5E0013EAA8 /* BaseResModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BaseResModel.m; sourceTree = "<group>"; };
        89C5B44D20F59E5E0013EAA8 /* LMJWordItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMJWordItem.m; sourceTree = "<group>"; };
        89C5B44E20F59E5E0013EAA8 /* LMJItemSection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMJItemSection.h; sourceTree = "<group>"; };
        89C5B44F20F59E5E0013EAA8 /* LMJWordArrowItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMJWordArrowItem.m; sourceTree = "<group>"; };
        89D30A7420F5AE5700BE0ECA /* CoreLocation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = System/Library/Frameworks/CoreLocation.framework; sourceTree = SDKROOT; };
        89D30A7620F5AE5E00BE0ECA /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
        89D30A7820F5AE6400BE0ECA /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
        89D30A7A20F5AE6B00BE0ECA /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
        89D30A7C20F5AE7200BE0ECA /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
        89D30A7E20F5AE8500BE0ECA /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
        89D30A8020F5AE9000BE0ECA /* libsqlite3.0.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.0.tbd; path = usr/lib/libsqlite3.0.tbd; sourceTree = SDKROOT; };
        89D30A8220F5AE9700BE0ECA /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = System/Library/Frameworks/CoreTelephony.framework; sourceTree = SDKROOT; };
        89D30A8420F5AEA000BE0ECA /* libstdc++.6.0.9.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libstdc++.6.0.9.tbd"; path = "usr/lib/libstdc++.6.0.9.tbd"; sourceTree = SDKROOT; };
        89D30A8620F5AF5D00BE0ECA /* BaiduMapAPI_Search.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = BaiduMapAPI_Search.framework; path = Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Search.framework; sourceTree = "<group>"; };
        89D30A8720F5AF5D00BE0ECA /* BaiduMapAPI_Utils.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = BaiduMapAPI_Utils.framework; path = Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Utils.framework; sourceTree = "<group>"; };
        89D30A8820F5AF5D00BE0ECA /* BaiduMapAPI_Base.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = BaiduMapAPI_Base.framework; path = Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Base.framework; sourceTree = "<group>"; };
        89D30A8920F5AF5D00BE0ECA /* BaiduMapAPI_Cloud.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = BaiduMapAPI_Cloud.framework; path = Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Cloud.framework; sourceTree = "<group>"; };
        89D30A8A20F5AF5D00BE0ECA /* BaiduMapAPI_Map.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = BaiduMapAPI_Map.framework; path = Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Map.framework; sourceTree = "<group>"; };
        89D30A8C20F5AF5D00BE0ECA /* libcrypto.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libcrypto.a; sourceTree = "<group>"; };
        89D30A8D20F5AF5D00BE0ECA /* libssl.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libssl.a; sourceTree = "<group>"; };
        89D30A8E20F5AF5D00BE0ECA /* BaiduMapAPI_Radar.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = BaiduMapAPI_Radar.framework; path = Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Radar.framework; sourceTree = "<group>"; };
        89D30A8F20F5AF5D00BE0ECA /* BaiduMapAPI_Location.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = BaiduMapAPI_Location.framework; path = Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Location.framework; sourceTree = "<group>"; };
        89D30A9B20F5B32600BE0ECA /* JXTAlertController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXTAlertController.h; sourceTree = "<group>"; };
        89D30A9C20F5B32600BE0ECA /* JXTAlertController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXTAlertController.m; sourceTree = "<group>"; };
        E5AFA907421A40B4894FD370 /* Pods-screendisplay.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-screendisplay.debug.xcconfig"; path = "Pods/Target Support Files/Pods-screendisplay/Pods-screendisplay.debug.xcconfig"; sourceTree = "<group>"; };
        E775E4EF9937B4792FE662EA /* libPods-testdemo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-testdemo.a"; sourceTree = BUILT_PRODUCTS_DIR; };
/* End PBXFileReference section */
 
/* Begin PBXFrameworksBuildPhase section */
        895736FB20F595BB00A23C3B /* Frameworks */ = {
            isa = PBXFrameworksBuildPhase;
            buildActionMask = 2147483647;
            files = (
                89D30A9720F5AF8800BE0ECA /* libcrypto.a in Frameworks */,
                89D30A9820F5AF8800BE0ECA /* libssl.a in Frameworks */,
                89D30A9120F5AF7C00BE0ECA /* BaiduMapAPI_Cloud.framework in Frameworks */,
                89D30A9220F5AF7C00BE0ECA /* BaiduMapAPI_Location.framework in Frameworks */,
                89D30A9320F5AF7C00BE0ECA /* BaiduMapAPI_Map.framework in Frameworks */,
                89D30A9420F5AF7C00BE0ECA /* BaiduMapAPI_Radar.framework in Frameworks */,
                89D30A9520F5AF7C00BE0ECA /* BaiduMapAPI_Search.framework in Frameworks */,
                89D30A9620F5AF7C00BE0ECA /* BaiduMapAPI_Utils.framework in Frameworks */,
                89D30A9020F5AF7000BE0ECA /* BaiduMapAPI_Base.framework in Frameworks */,
                89D30A8520F5AEA000BE0ECA /* libstdc++.6.0.9.tbd in Frameworks */,
                89D30A8320F5AE9700BE0ECA /* CoreTelephony.framework in Frameworks */,
                89D30A8120F5AE9000BE0ECA /* libsqlite3.0.tbd in Frameworks */,
                89D30A7F20F5AE8500BE0ECA /* Security.framework in Frameworks */,
                89D30A7D20F5AE7200BE0ECA /* CoreGraphics.framework in Frameworks */,
                89D30A7B20F5AE6B00BE0ECA /* SystemConfiguration.framework in Frameworks */,
                89D30A7920F5AE6400BE0ECA /* OpenGLES.framework in Frameworks */,
                89D30A7720F5AE5E00BE0ECA /* QuartzCore.framework in Frameworks */,
                89D30A7520F5AE5800BE0ECA /* CoreLocation.framework in Frameworks */,
                3CA5725F0D118E6B7A171E0A /* libPods-screendisplay.a in Frameworks */,
            );
            runOnlyForDeploymentPostprocessing = 0;
        };
/* End PBXFrameworksBuildPhase section */
 
/* Begin PBXGroup section */
        2D9EE0FE9F3B5171B3C9B1C8 /* Pods */ = {
            isa = PBXGroup;
            children = (
                47EB781C30DC01554A142ACC /* Pods-testdemo.debug.xcconfig */,
                2603E50D5F53F13AC6A578A2 /* Pods-testdemo.release.xcconfig */,
                E5AFA907421A40B4894FD370 /* Pods-screendisplay.debug.xcconfig */,
                0301D6CDCA500FA2E0FB7669 /* Pods-screendisplay.release.xcconfig */,
            );
            name = Pods;
            sourceTree = "<group>";
        };
        895736F520F595BB00A23C3B = {
            isa = PBXGroup;
            children = (
                8957370020F595BB00A23C3B /* screendisplay */,
                895736FF20F595BB00A23C3B /* Products */,
                2D9EE0FE9F3B5171B3C9B1C8 /* Pods */,
                BEAF72AC33688D081B7670BF /* Frameworks */,
            );
            sourceTree = "<group>";
        };
        895736FF20F595BB00A23C3B /* Products */ = {
            isa = PBXGroup;
            children = (
                895736FE20F595BB00A23C3B /* screendisplay.app */,
            );
            name = Products;
            sourceTree = "<group>";
        };
        8957370020F595BB00A23C3B /* screendisplay */ = {
            isa = PBXGroup;
            children = (
                8957370120F595BB00A23C3B /* AppDelegate.h */,
                8957370220F595BB00A23C3B /* AppDelegate.m */,
                89C5B38120F59C780013EAA8 /* Classes */,
                8957371820F59B0F00A23C3B /* Resources */,
                89C5B38220F59CD40013EAA8 /* Supporting Files */,
            );
            path = screendisplay;
            sourceTree = "<group>";
        };
        8957371820F59B0F00A23C3B /* Resources */ = {
            isa = PBXGroup;
            children = (
                8957371920F59B0F00A23C3B /* Assets.xcassets */,
                8957371A20F59B0F00A23C3B /* MonitoringMap */,
                8957373020F59B0F00A23C3B /* Beginner's guide */,
                8957373520F59B0F00A23C3B /* Login */,
            );
            path = Resources;
            sourceTree = "<group>";
        };
        8957371A20F59B0F00A23C3B /* MonitoringMap */ = {
            isa = PBXGroup;
            children = (
                8957371B20F59B0F00A23C3B /* map_top_bar_bk@2x.png */,
                8957371C20F59B0F00A23C3B /* map_segment_normal.png */,
                8957371D20F59B0F00A23C3B /* detail_pregress.png */,
                8957371E20F59B0F00A23C3B /* deatil_line.png */,
                8957371F20F59B0F00A23C3B /* poi_3.png */,
                8957372020F59B0F00A23C3B /* poi_2.png */,
                8957372120F59B0F00A23C3B /* map_segment_four.png */,
                8957372220F59B0F00A23C3B /* poi_1.png */,
                8957372320F59B0F00A23C3B /* icon_circle.png */,
                8957372420F59B0F00A23C3B /* map_segment_two.png */,
                8957372520F59B0F00A23C3B /* map_close.png */,
                8957372620F59B0F00A23C3B /* map_segment_three.png */,
                8957372720F59B0F00A23C3B /* dynamic_back.png */,
                8957372820F59B0F00A23C3B /* detail_back.png */,
                8957372920F59B0F00A23C3B /* icon_arrow.png */,
                8957372A20F59B0F00A23C3B /* map_Airbubbles@2x.png */,
                8957372B20F59B0F00A23C3B /* map_segment_one.png */,
                8957372C20F59B0F00A23C3B /* bg1.png */,
                8957372D20F59B0F00A23C3B /* map_back@2x.png */,
                8957372E20F59B0F00A23C3B /* map_background.png */,
                8957372F20F59B0F00A23C3B /* detail_right_btn.png */,
            );
            path = MonitoringMap;
            sourceTree = "<group>";
        };
        8957373020F59B0F00A23C3B /* Beginner's guide */ = {
            isa = PBXGroup;
            children = (
                8957373120F59B0F00A23C3B /* intro_0.jpg */,
                8957373220F59B0F00A23C3B /* intro_1.jpg */,
                8957373320F59B0F00A23C3B /* intro_3.jpg */,
                8957373420F59B0F00A23C3B /* intro_2.jpg */,
            );
            path = "Beginner's guide";
            sourceTree = "<group>";
        };
        8957373520F59B0F00A23C3B /* Login */ = {
            isa = PBXGroup;
            children = (
                8957373620F59B0F00A23C3B /* login_background.png */,
                8957373720F59B0F00A23C3B /* login_user_login_btnbk.png */,
                8957373820F59B0F00A23C3B /* login_app_logo.png */,
                8957373920F59B0F00A23C3B /* login_account_pwd_bk.png */,
            );
            path = Login;
            sourceTree = "<group>";
        };
        89C5B38120F59C780013EAA8 /* Classes */ = {
            isa = PBXGroup;
            children = (
                89C5B3E320F59E5E0013EAA8 /* 登录 */,
                89C5B3B520F59E5E0013EAA8 /* 检测 */,
                89C5B41E20F59E5E0013EAA8 /* Base */,
                89C5B40820F59E5E0013EAA8 /* Category */,
                89C5B3EF20F59E5E0013EAA8 /* Helpers */,
                89C5B38F20F59E5E0013EAA8 /* Main */,
                89C5B3D320F59E5E0013EAA8 /* Network */,
                89C5B39A20F59E5E0013EAA8 /* ThirdClass */,
                89C5B38720F59E350013EAA8 /* Utility */,
            );
            path = Classes;
            sourceTree = "<group>";
        };
        89C5B38220F59CD40013EAA8 /* Supporting Files */ = {
            isa = PBXGroup;
            children = (
                89C5B38420F59D220013EAA8 /* CommonHeader.pch */,
                89C5B38520F59D220013EAA8 /* TWConst.h */,
                89C5B38320F59D220013EAA8 /* TWConst.m */,
                8957370F20F595BC00A23C3B /* Info.plist */,
                8957371020F595BD00A23C3B /* main.m */,
            );
            path = "Supporting Files";
            sourceTree = "<group>";
        };
        89C5B38720F59E350013EAA8 /* Utility */ = {
            isa = PBXGroup;
            children = (
                89C5B38820F59E350013EAA8 /* DateUtil.m */,
                89C5B38920F59E350013EAA8 /* StringUtil.h */,
                89C5B38A20F59E350013EAA8 /* DateUtil.h */,
                89C5B38B20F59E350013EAA8 /* Utility.h */,
                89C5B38C20F59E350013EAA8 /* StringUtil.m */,
            );
            path = Utility;
            sourceTree = "<group>";
        };
        89C5B38F20F59E5E0013EAA8 /* Main */ = {
            isa = PBXGroup;
            children = (
                89C5B39020F59E5E0013EAA8 /* LMJNewViewController.m */,
                89C5B39120F59E5E0013EAA8 /* LMJCasesViewController.m */,
                89C5B39220F59E5E0013EAA8 /* LMJTabBarController.m */,
                89C5B39320F59E5E0013EAA8 /* LMJMessageViewController.m */,
                89C5B39420F59E5E0013EAA8 /* LMJHomeViewController.m */,
                89C5B39520F59E5E0013EAA8 /* LMJNewViewController.h */,
                89C5B39620F59E5E0013EAA8 /* LMJHomeViewController.h */,
                89C5B39720F59E5E0013EAA8 /* LMJMessageViewController.h */,
                89C5B39820F59E5E0013EAA8 /* LMJTabBarController.h */,
                89C5B39920F59E5E0013EAA8 /* LMJCasesViewController.h */,
            );
            path = Main;
            sourceTree = "<group>";
        };
        89C5B39A20F59E5E0013EAA8 /* ThirdClass */ = {
            isa = PBXGroup;
            children = (
                89C5B39B20F59E5E0013EAA8 /* JHChart */,
            );
            path = ThirdClass;
            sourceTree = "<group>";
        };
        89C5B39B20F59E5E0013EAA8 /* JHChart */ = {
            isa = PBXGroup;
            children = (
                89C5B39C20F59E5E0013EAA8 /* JHLineChart.h */,
                89C5B39D20F59E5E0013EAA8 /* JHRingChart.h */,
                89C5B39E20F59E5E0013EAA8 /* JHRadarChart.m */,
                89C5B39F20F59E5E0013EAA8 /* JHChartHeader.h */,
                89C5B3A020F59E5E0013EAA8 /* JHPieChart.m */,
                89C5B3A120F59E5E0013EAA8 /* JHShowInfoView.h */,
                89C5B3A220F59E5E0013EAA8 /* JHWaveChart.m */,
                89C5B3A320F59E5E0013EAA8 /* JHTableDataRowModel.m */,
                89C5B3A420F59E5E0013EAA8 /* JHTableChart.h */,
                89C5B3A520F59E5E0013EAA8 /* JHPieForeBGView.h */,
                89C5B3A620F59E5E0013EAA8 /* JHPieItemsView.h */,
                89C5B3A720F59E5E0013EAA8 /* JHColumnChart.m */,
                89C5B3A820F59E5E0013EAA8 /* JHChart.m */,
                89C5B3A920F59E5E0013EAA8 /* JHRadarChart.h */,
                89C5B3AA20F59E5E0013EAA8 /* JHRingChart.m */,
                89C5B3AB20F59E5E0013EAA8 /* JHLineChart.m */,
                89C5B3AC20F59E5E0013EAA8 /* JHTableDataRowModel.h */,
                89C5B3AD20F59E5E0013EAA8 /* JHWaveChart.h */,
                89C5B3AE20F59E5E0013EAA8 /* JHShowInfoView.m */,
                89C5B3AF20F59E5E0013EAA8 /* JHPieChart.h */,
                89C5B3B020F59E5E0013EAA8 /* JHColumnChart.h */,
                89C5B3B120F59E5E0013EAA8 /* JHPieItemsView.m */,
                89C5B3B220F59E5E0013EAA8 /* JHPieForeBGView.m */,
                89C5B3B320F59E5E0013EAA8 /* JHTableChart.m */,
                89C5B3B420F59E5E0013EAA8 /* JHChart.h */,
            );
            path = JHChart;
            sourceTree = "<group>";
        };
        89C5B3B520F59E5E0013EAA8 /* 检测 */ = {
            isa = PBXGroup;
            children = (
                89C5B3B620F59E5E0013EAA8 /* Other */,
                89C5B3B920F59E5E0013EAA8 /* Controller */,
                89C5B3C220F59E5E0013EAA8 /* Model */,
                89C5B3C920F59E5E0013EAA8 /* View */,
                89C5B3CC20F59E5E0013EAA8 /* Service */,
            );
            path = "检测";
            sourceTree = "<group>";
        };
        89C5B3B620F59E5E0013EAA8 /* Other */ = {
            isa = PBXGroup;
            children = (
                89C5B3B720F59E5E0013EAA8 /* NSObject+CustomIndex.h */,
                89C5B3B820F59E5E0013EAA8 /* NSObject+CustomIndex.m */,
            );
            path = Other;
            sourceTree = "<group>";
        };
        89C5B3B920F59E5E0013EAA8 /* Controller */ = {
            isa = PBXGroup;
            children = (
                89C5B3BA20F59E5E0013EAA8 /* DetailDataViewController.m */,
                89C5B3BB20F59E5E0013EAA8 /* DynamicViewController.h */,
                89C5B3BC20F59E5E0013EAA8 /* MonitoringMapViewController.h */,
                89C5B3BD20F59E5E0013EAA8 /* MyAnimatedAnnotationView.h */,
                89C5B3BE20F59E5E0013EAA8 /* DetailDataViewController.h */,
                89C5B3BF20F59E5E0013EAA8 /* MonitoringMapViewController.m */,
                89C5B3C020F59E5E0013EAA8 /* DynamicViewController.m */,
                89C5B3C120F59E5E0013EAA8 /* MyAnimatedAnnotationView.m */,
            );
            path = Controller;
            sourceTree = "<group>";
        };
        89C5B3C220F59E5E0013EAA8 /* Model */ = {
            isa = PBXGroup;
            children = (
                89C5B3C320F59E5E0013EAA8 /* DynamicModel.h */,
                89C5B3C420F59E5E0013EAA8 /* DetailModel.m */,
                89C5B3C520F59E5E0013EAA8 /* DeviceModel.h */,
                89C5B3C620F59E5E0013EAA8 /* DynamicModel.m */,
                89C5B3C720F59E5E0013EAA8 /* DeviceModel.m */,
                89C5B3C820F59E5E0013EAA8 /* DetailModel.h */,
            );
            path = Model;
            sourceTree = "<group>";
        };
        89C5B3C920F59E5E0013EAA8 /* View */ = {
            isa = PBXGroup;
            children = (
                89C5B3CA20F59E5E0013EAA8 /* DetailItemCell.h */,
                89C5B3CB20F59E5E0013EAA8 /* DetailItemCell.m */,
            );
            path = View;
            sourceTree = "<group>";
        };
        89C5B3CC20F59E5E0013EAA8 /* Service */ = {
            isa = PBXGroup;
            children = (
                89C5B3CD20F59E5E0013EAA8 /* DetailService.h */,
                89C5B3CE20F59E5E0013EAA8 /* DynamicService.m */,
                89C5B3CF20F59E5E0013EAA8 /* DevicesService.h */,
                89C5B3D020F59E5E0013EAA8 /* DetailService.m */,
                89C5B3D120F59E5E0013EAA8 /* DynamicService.h */,
                89C5B3D220F59E5E0013EAA8 /* DevicesService.m */,
            );
            path = Service;
            sourceTree = "<group>";
        };
        89C5B3D320F59E5E0013EAA8 /* Network */ = {
            isa = PBXGroup;
            children = (
                89C5B3D420F59E5E0013EAA8 /* NetworkDemo.h */,
                89C5B3D520F59E5E0013EAA8 /* PPHTTPRequest.m */,
                89C5B3D620F59E5E0013EAA8 /* PPNetworkHelper */,
                89C5B3E120F59E5E0013EAA8 /* NetworkDemo.m */,
                89C5B3E220F59E5E0013EAA8 /* PPHTTPRequest.h */,
            );
            path = Network;
            sourceTree = "<group>";
        };
        89C5B3D620F59E5E0013EAA8 /* PPNetworkHelper */ = {
            isa = PBXGroup;
            children = (
                89C5B3D720F59E5E0013EAA8 /* PPNetworkHelper.m */,
                89C5B3D820F59E5E0013EAA8 /* Global.h */,
                89C5B3D920F59E5E0013EAA8 /* PPInterfacedConst.m */,
                89C5B3DA20F59E5E0013EAA8 /* PPNetworkCache.h */,
                89C5B3DB20F59E5E0013EAA8 /* BaseHTTPRequest.h */,
                89C5B3DC20F59E5E0013EAA8 /* PPNetworkHelper.h */,
                89C5B3DD20F59E5E0013EAA8 /* Global.m */,
                89C5B3DE20F59E5E0013EAA8 /* BaseHTTPRequest.m */,
                89C5B3DF20F59E5E0013EAA8 /* PPNetworkCache.m */,
                89C5B3E020F59E5E0013EAA8 /* PPInterfacedConst.h */,
            );
            path = PPNetworkHelper;
            sourceTree = "<group>";
        };
        89C5B3E320F59E5E0013EAA8 /* 登录 */ = {
            isa = PBXGroup;
            children = (
                89C5B3E420F59E5E0013EAA8 /* Controller */,
                89C5B3E720F59E5E0013EAA8 /* Model */,
                89C5B3EC20F59E5E0013EAA8 /* Service */,
            );
            path = "登录";
            sourceTree = "<group>";
        };
        89C5B3E420F59E5E0013EAA8 /* Controller */ = {
            isa = PBXGroup;
            children = (
                89C5B3E520F59E5E0013EAA8 /* LoginViewController.m */,
                89C5B3E620F59E5E0013EAA8 /* LoginViewController.h */,
            );
            path = Controller;
            sourceTree = "<group>";
        };
        89C5B3E720F59E5E0013EAA8 /* Model */ = {
            isa = PBXGroup;
            children = (
                89C5B3E820F59E5E0013EAA8 /* CommonReqModel.m */,
                89C5B3E920F59E5E0013EAA8 /* UserModel.m */,
                89C5B3EA20F59E5E0013EAA8 /* CommonReqModel.h */,
                89C5B3EB20F59E5E0013EAA8 /* UserModel.h */,
            );
            path = Model;
            sourceTree = "<group>";
        };
        89C5B3EC20F59E5E0013EAA8 /* Service */ = {
            isa = PBXGroup;
            children = (
                89C5B3ED20F59E5E0013EAA8 /* LoginSevice.h */,
                89C5B3EE20F59E5E0013EAA8 /* LoginSevice.m */,
            );
            path = Service;
            sourceTree = "<group>";
        };
        89C5B3EF20F59E5E0013EAA8 /* Helpers */ = {
            isa = PBXGroup;
            children = (
                89D30A9B20F5B32600BE0ECA /* JXTAlertController.h */,
                89D30A9C20F5B32600BE0ECA /* JXTAlertController.m */,
                89C5B40320F59E5E0013EAA8 /* 广告页 */,
                89C5B3F220F59E5E0013EAA8 /* 欢迎页 */,
                89C5B3FB20F59E5E0013EAA8 /* LMJEasyBlankPageView.h */,
                89C5B40120F59E5E0013EAA8 /* LMJEasyBlankPageView.m */,
                89C5B3FD20F59E5E0013EAA8 /* LMJEventTool.h */,
                89C5B3F820F59E5E0013EAA8 /* LMJEventTool.m */,
                89C5B3F120F59E5E0013EAA8 /* PresentAnimator.h */,
                89C5B40020F59E5E0013EAA8 /* PresentAnimator.m */,
                89C5B3FE20F59E5E0013EAA8 /* TDTouchID.h */,
                89C5B3F920F59E5E0013EAA8 /* TDTouchID.m */,
                89C5B3FA20F59E5E0013EAA8 /* UIImageView+FitNet.h */,
                89C5B40220F59E5E0013EAA8 /* UIImageView+FitNet.m */,
                89C5B3F020F59E5E0013EAA8 /* YYFPSLabel.h */,
                89C5B3FC20F59E5E0013EAA8 /* YYFPSLabel.m */,
            );
            path = Helpers;
            sourceTree = "<group>";
        };
        89C5B3F220F59E5E0013EAA8 /* 欢迎页 */ = {
            isa = PBXGroup;
            children = (
                89C5B3F320F59E5E0013EAA8 /* LMJIntroductoryPagesHelper.h */,
                89C5B3F420F59E5E0013EAA8 /* LMJIntroductoryPagesView.m */,
                89C5B3F520F59E5E0013EAA8 /* LMJIntroductoryPagesHelper.m */,
                89C5B3F620F59E5E0013EAA8 /* LMJIntroductoryPagesView.h */,
            );
            path = "欢迎页";
            sourceTree = "<group>";
        };
        89C5B40320F59E5E0013EAA8 /* 广告页 */ = {
            isa = PBXGroup;
            children = (
                89C5B40420F59E5E0013EAA8 /* AdvertiseView.m */,
                89C5B40520F59E5E0013EAA8 /* AdvertiseHelper.m */,
                89C5B40620F59E5E0013EAA8 /* AdvertiseHelper.h */,
                89C5B40720F59E5E0013EAA8 /* AdvertiseView.h */,
            );
            path = "广告页";
            sourceTree = "<group>";
        };
        89C5B40820F59E5E0013EAA8 /* Category */ = {
            isa = PBXGroup;
            children = (
                89C5B40920F59E5E0013EAA8 /* UIWindow+CurrentViewController.h */,
                89C5B40A20F59E5E0013EAA8 /* ThirdCategory */,
                89C5B41220F59E5E0013EAA8 /* UIButton+LMJ.m */,
                89C5B41320F59E5E0013EAA8 /* UIColor+Random.m */,
                89C5B41420F59E5E0013EAA8 /* MBProgressHUD+LMJ.m */,
                89C5B41520F59E5E0013EAA8 /* UIView+LMJNjHuFrame.h */,
                89C5B41620F59E5E0013EAA8 /* UIWindow+CurrentViewController.m */,
                89C5B41720F59E5E0013EAA8 /* UIButton+LMJ.h */,
                89C5B41820F59E5E0013EAA8 /* UIColor+Random.h */,
                89C5B41920F59E5E0013EAA8 /* UIView+LMJNjHuFrame.m */,
                89C5B41A20F59E5E0013EAA8 /* ProgressView */,
                89C5B41D20F59E5E0013EAA8 /* MBProgressHUD+LMJ.h */,
            );
            path = Category;
            sourceTree = "<group>";
        };
        89C5B40A20F59E5E0013EAA8 /* ThirdCategory */ = {
            isa = PBXGroup;
            children = (
                89C5B40B20F59E5E0013EAA8 /* UIView+GestureCallback.m */,
                89C5B40C20F59E5E0013EAA8 /* NSDecimalNumber+Addtion.h */,
                89C5B40D20F59E5E0013EAA8 /* UITextView+WZB.m */,
                89C5B40E20F59E5E0013EAA8 /* NullSafe.m */,
                89C5B40F20F59E5E0013EAA8 /* UIView+GestureCallback.h */,
                89C5B41020F59E5E0013EAA8 /* UITextView+WZB.h */,
                89C5B41120F59E5E0013EAA8 /* NSDecimalNumber+Addtion.m */,
            );
            path = ThirdCategory;
            sourceTree = "<group>";
        };
        89C5B41A20F59E5E0013EAA8 /* ProgressView */ = {
            isa = PBXGroup;
            children = (
                89C5B41B20F59E5E0013EAA8 /* GradientProgressView.h */,
                89C5B41C20F59E5E0013EAA8 /* GradientProgressView.m */,
            );
            path = ProgressView;
            sourceTree = "<group>";
        };
        89C5B41E20F59E5E0013EAA8 /* Base */ = {
            isa = PBXGroup;
            children = (
                89C5B41F20F59E5E0013EAA8 /* BaseView */,
                89C5B42E20F59E5E0013EAA8 /* BaseControllers */,
                89C5B44520F59E5E0013EAA8 /* BaseModels */,
            );
            path = Base;
            sourceTree = "<group>";
        };
        89C5B41F20F59E5E0013EAA8 /* BaseView */ = {
            isa = PBXGroup;
            children = (
                89C5B42020F59E5E0013EAA8 /* LMJAutoRefreshFooter.h */,
                89C5B42120F59E5E0013EAA8 /* LMJElementsFlowLayout.m */,
                89C5B42220F59E5E0013EAA8 /* LMJNavigationBar.h */,
                89C5B42320F59E5E0013EAA8 /* LMJNormalRefreshHeader.m */,
                89C5B42420F59E5E0013EAA8 /* LMJHorizontalFlowLayout.m */,
                89C5B42520F59E5E0013EAA8 /* LMJSettingCell.h */,
                89C5B42620F59E5E0013EAA8 /* LMJVerticalFlowLayout.m */,
                89C5B42720F59E5E0013EAA8 /* LMJAutoRefreshFooter.m */,
                89C5B42820F59E5E0013EAA8 /* LMJHorizontalFlowLayout.h */,
                89C5B42920F59E5E0013EAA8 /* LMJNormalRefreshHeader.h */,
                89C5B42A20F59E5E0013EAA8 /* LMJNavigationBar.m */,
                89C5B42B20F59E5E0013EAA8 /* LMJElementsFlowLayout.h */,
                89C5B42C20F59E5E0013EAA8 /* LMJVerticalFlowLayout.h */,
                89C5B42D20F59E5E0013EAA8 /* LMJSettingCell.m */,
            );
            path = BaseView;
            sourceTree = "<group>";
        };
        89C5B42E20F59E5E0013EAA8 /* BaseControllers */ = {
            isa = PBXGroup;
            children = (
                89C5B42F20F59E5E0013EAA8 /* LMJRefreshCollectionViewController.h */,
                89C5B43020F59E5E0013EAA8 /* LMJNavUIBaseViewController.h */,
                89C5B43120F59E5E0013EAA8 /* LMJCollectionViewController.h */,
                89C5B43220F59E5E0013EAA8 /* LMJBaseViewController.m */,
                89C5B43320F59E5E0013EAA8 /* LMJRequestBaseViewController.m */,
                89C5B43420F59E5E0013EAA8 /* LMJTableViewController.h */,
                89C5B43520F59E5E0013EAA8 /* LMJRefreshTableViewController.m */,
                89C5B43620F59E5E0013EAA8 /* LMJStaticTableViewController.m */,
                89C5B43720F59E5E0013EAA8 /* LMJTextViewController.m */,
                89C5B43820F59E5E0013EAA8 /* LMJWebViewController.m */,
                89C5B43920F59E5E0013EAA8 /* LMJNavigationController.h */,
                89C5B43A20F59E5E0013EAA8 /* LMJRefreshCollectionViewController.m */,
                89C5B43B20F59E5E0013EAA8 /* LMJBaseViewController.h */,
                89C5B43C20F59E5E0013EAA8 /* LMJNavUIBaseViewController.m */,
                89C5B43D20F59E5E0013EAA8 /* LMJCollectionViewController.m */,
                89C5B43E20F59E5E0013EAA8 /* LMJStaticTableViewController.h */,
                89C5B43F20F59E5E0013EAA8 /* LMJRefreshTableViewController.h */,
                89C5B44020F59E5E0013EAA8 /* LMJTableViewController.m */,
                89C5B44120F59E5E0013EAA8 /* LMJRequestBaseViewController.h */,
                89C5B44220F59E5E0013EAA8 /* LMJNavigationController.m */,
                89C5B44320F59E5E0013EAA8 /* LMJWebViewController.h */,
                89C5B44420F59E5E0013EAA8 /* LMJTextViewController.h */,
            );
            path = BaseControllers;
            sourceTree = "<group>";
        };
        89C5B44520F59E5E0013EAA8 /* BaseModels */ = {
            isa = PBXGroup;
            children = (
                89C5B44620F59E5E0013EAA8 /* BaseReqModel.h */,
                89C5B44720F59E5E0013EAA8 /* LMJWordItem.h */,
                89C5B44820F59E5E0013EAA8 /* BaseResModel.h */,
                89C5B44920F59E5E0013EAA8 /* LMJWordArrowItem.h */,
                89C5B44A20F59E5E0013EAA8 /* LMJItemSection.m */,
                89C5B44B20F59E5E0013EAA8 /* BaseReqModel.m */,
                89C5B44C20F59E5E0013EAA8 /* BaseResModel.m */,
                89C5B44D20F59E5E0013EAA8 /* LMJWordItem.m */,
                89C5B44E20F59E5E0013EAA8 /* LMJItemSection.h */,
                89C5B44F20F59E5E0013EAA8 /* LMJWordArrowItem.m */,
            );
            path = BaseModels;
            sourceTree = "<group>";
        };
        89D30A8B20F5AF5D00BE0ECA /* thirdlibs */ = {
            isa = PBXGroup;
            children = (
                89D30A8C20F5AF5D00BE0ECA /* libcrypto.a */,
                89D30A8D20F5AF5D00BE0ECA /* libssl.a */,
            );
            name = thirdlibs;
            path = Pods/BaiduMapKit/BaiduMapKit/thirdlibs;
            sourceTree = "<group>";
        };
        BEAF72AC33688D081B7670BF /* Frameworks */ = {
            isa = PBXGroup;
            children = (
                89D30A8820F5AF5D00BE0ECA /* BaiduMapAPI_Base.framework */,
                89D30A8920F5AF5D00BE0ECA /* BaiduMapAPI_Cloud.framework */,
                89D30A8F20F5AF5D00BE0ECA /* BaiduMapAPI_Location.framework */,
                89D30A8A20F5AF5D00BE0ECA /* BaiduMapAPI_Map.framework */,
                89D30A8E20F5AF5D00BE0ECA /* BaiduMapAPI_Radar.framework */,
                89D30A8620F5AF5D00BE0ECA /* BaiduMapAPI_Search.framework */,
                89D30A8720F5AF5D00BE0ECA /* BaiduMapAPI_Utils.framework */,
                89D30A8B20F5AF5D00BE0ECA /* thirdlibs */,
                89D30A8420F5AEA000BE0ECA /* libstdc++.6.0.9.tbd */,
                89D30A8220F5AE9700BE0ECA /* CoreTelephony.framework */,
                89D30A8020F5AE9000BE0ECA /* libsqlite3.0.tbd */,
                89D30A7E20F5AE8500BE0ECA /* Security.framework */,
                89D30A7C20F5AE7200BE0ECA /* CoreGraphics.framework */,
                89D30A7A20F5AE6B00BE0ECA /* SystemConfiguration.framework */,
                89D30A7820F5AE6400BE0ECA /* OpenGLES.framework */,
                89D30A7620F5AE5E00BE0ECA /* QuartzCore.framework */,
                89D30A7420F5AE5700BE0ECA /* CoreLocation.framework */,
                E775E4EF9937B4792FE662EA /* libPods-testdemo.a */,
                321BB08FDBCFE5EE52765180 /* libPods-screendisplay.a */,
            );
            name = Frameworks;
            sourceTree = "<group>";
        };
/* End PBXGroup section */
 
/* Begin PBXNativeTarget section */
        895736FD20F595BB00A23C3B /* screendisplay */ = {
            isa = PBXNativeTarget;
            buildConfigurationList = 8957371420F595BD00A23C3B /* Build configuration list for PBXNativeTarget "screendisplay" */;
            buildPhases = (
                CE9ED8B1058B03A1C0F75E28 /* [CP] Check Pods Manifest.lock */,
                895736FA20F595BB00A23C3B /* Sources */,
                895736FB20F595BB00A23C3B /* Frameworks */,
                895736FC20F595BB00A23C3B /* Resources */,
                FE97960805A155300EA8E9F6 /* [CP] Copy Pods Resources */,
            );
            buildRules = (
            );
            dependencies = (
            );
            name = screendisplay;
            productName = testdemo;
            productReference = 895736FE20F595BB00A23C3B /* screendisplay.app */;
            productType = "com.apple.product-type.application";
        };
/* End PBXNativeTarget section */
 
/* Begin PBXProject section */
        895736F620F595BB00A23C3B /* Project object */ = {
            isa = PBXProject;
            attributes = {
                LastUpgradeCheck = 0940;
                ORGANIZATIONNAME = "单军华";
                TargetAttributes = {
                    895736FD20F595BB00A23C3B = {
                        CreatedOnToolsVersion = 9.4.1;
                    };
                };
            };
            buildConfigurationList = 895736F920F595BB00A23C3B /* Build configuration list for PBXProject "screendisplay" */;
            compatibilityVersion = "Xcode 9.3";
            developmentRegion = en;
            hasScannedForEncodings = 0;
            knownRegions = (
                en,
                Base,
            );
            mainGroup = 895736F520F595BB00A23C3B;
            productRefGroup = 895736FF20F595BB00A23C3B /* Products */;
            projectDirPath = "";
            projectRoot = "";
            targets = (
                895736FD20F595BB00A23C3B /* screendisplay */,
            );
        };
/* End PBXProject section */
 
/* Begin PBXResourcesBuildPhase section */
        895736FC20F595BB00A23C3B /* Resources */ = {
            isa = PBXResourcesBuildPhase;
            buildActionMask = 2147483647;
            files = (
                8957375220F59B0F00A23C3B /* intro_3.jpg in Resources */,
                8957373C20F59B0F00A23C3B /* map_segment_normal.png in Resources */,
                8957374F20F59B0F00A23C3B /* detail_right_btn.png in Resources */,
                8957375720F59B0F00A23C3B /* login_account_pwd_bk.png in Resources */,
                8957375420F59B0F00A23C3B /* login_background.png in Resources */,
                8957374B20F59B0F00A23C3B /* map_segment_one.png in Resources */,
                8957374C20F59B0F00A23C3B /* bg1.png in Resources */,
                8957374520F59B0F00A23C3B /* map_close.png in Resources */,
                8957373A20F59B0F00A23C3B /* Assets.xcassets in Resources */,
                8957374820F59B0F00A23C3B /* detail_back.png in Resources */,
                8957374120F59B0F00A23C3B /* map_segment_four.png in Resources */,
                8957374D20F59B0F00A23C3B /* map_back@2x.png in Resources */,
                8957374E20F59B0F00A23C3B /* map_background.png in Resources */,
                8957375620F59B0F00A23C3B /* login_app_logo.png in Resources */,
                8957373E20F59B0F00A23C3B /* deatil_line.png in Resources */,
                8957373F20F59B0F00A23C3B /* poi_3.png in Resources */,
                8957374720F59B0F00A23C3B /* dynamic_back.png in Resources */,
                8957375020F59B0F00A23C3B /* intro_0.jpg in Resources */,
                8957375320F59B0F00A23C3B /* intro_2.jpg in Resources */,
                8957374A20F59B0F00A23C3B /* map_Airbubbles@2x.png in Resources */,
                8957374420F59B0F00A23C3B /* map_segment_two.png in Resources */,
                8957373D20F59B0F00A23C3B /* detail_pregress.png in Resources */,
                8957374220F59B0F00A23C3B /* poi_1.png in Resources */,
                8957374320F59B0F00A23C3B /* icon_circle.png in Resources */,
                8957375520F59B0F00A23C3B /* login_user_login_btnbk.png in Resources */,
                8957373B20F59B0F00A23C3B /* map_top_bar_bk@2x.png in Resources */,
                8957375120F59B0F00A23C3B /* intro_1.jpg in Resources */,
                8957374020F59B0F00A23C3B /* poi_2.png in Resources */,
                8957374920F59B0F00A23C3B /* icon_arrow.png in Resources */,
                8957374620F59B0F00A23C3B /* map_segment_three.png in Resources */,
            );
            runOnlyForDeploymentPostprocessing = 0;
        };
/* End PBXResourcesBuildPhase section */
 
/* Begin PBXShellScriptBuildPhase section */
        CE9ED8B1058B03A1C0F75E28 /* [CP] Check Pods Manifest.lock */ = {
            isa = PBXShellScriptBuildPhase;
            buildActionMask = 2147483647;
            files = (
            );
            inputPaths = (
                "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
                "${PODS_ROOT}/Manifest.lock",
            );
            name = "[CP] Check Pods Manifest.lock";
            outputPaths = (
                "$(DERIVED_FILE_DIR)/Pods-screendisplay-checkManifestLockResult.txt",
            );
            runOnlyForDeploymentPostprocessing = 0;
            shellPath = /bin/sh;
            shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n    # print error to STDERR\n    echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n    exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
            showEnvVarsInLog = 0;
        };
        FE97960805A155300EA8E9F6 /* [CP] Copy Pods Resources */ = {
            isa = PBXShellScriptBuildPhase;
            buildActionMask = 2147483647;
            files = (
            );
            inputPaths = (
                "${SRCROOT}/Pods/Target Support Files/Pods-screendisplay/Pods-screendisplay-resources.sh",
                "${PODS_ROOT}/HMEmoticon/表情键盘/Emoticon/HMEmoticon.bundle",
                "${PODS_ROOT}/HMQRCodeScanner/HMQRCodeScanner/QRCode/HMScanner.bundle",
                "${PODS_ROOT}/IQKeyboardManager/IQKeyboardManager/Resources/IQKeyboardManager.bundle",
                "${PODS_ROOT}/MJRefresh/MJRefresh/MJRefresh.bundle",
                "${PODS_ROOT}/MOFSPickerManager/MOFSPickerManagerDemo/MOFSPickerManager/province_data.xml",
                "${PODS_ROOT}/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle",
                "${PODS_ROOT}/UMengUShare/UShareSDK/UMSocialSDK/UMSocialSDKPromptResources.bundle",
                "${PODS_ROOT}/UMengUShare/UShareSDK/SocialLibraries/QQ/QQSDK/TencentOpenApi_IOS_Bundle.bundle",
                "${PODS_ROOT}/UMengUShare/UShareSDK/SocialLibraries/Sina/SinaSDK/WeiboSDK.bundle",
                "${PODS_ROOT}/UMengUShare/UShareSDK/UMSocialUI/UMSocialSDKResources.bundle",
            );
            name = "[CP] Copy Pods Resources";
            outputPaths = (
                "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/HMEmoticon.bundle",
                "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/HMScanner.bundle",
                "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/IQKeyboardManager.bundle",
                "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MJRefresh.bundle",
                "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/province_data.xml",
                "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/TZImagePickerController.bundle",
                "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/UMSocialSDKPromptResources.bundle",
                "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/TencentOpenApi_IOS_Bundle.bundle",
                "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/WeiboSDK.bundle",
                "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/UMSocialSDKResources.bundle",
            );
            runOnlyForDeploymentPostprocessing = 0;
            shellPath = /bin/sh;
            shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-screendisplay/Pods-screendisplay-resources.sh\"\n";
            showEnvVarsInLog = 0;
        };
/* End PBXShellScriptBuildPhase section */
 
/* Begin PBXSourcesBuildPhase section */
        895736FA20F595BB00A23C3B /* Sources */ = {
            isa = PBXSourcesBuildPhase;
            buildActionMask = 2147483647;
            files = (
                89C5B49D20F59E5E0013EAA8 /* LMJTableViewController.m in Sources */,
                89C5B46B20F59E5E0013EAA8 /* DetailService.m in Sources */,
                89C5B49020F59E5E0013EAA8 /* LMJVerticalFlowLayout.m in Sources */,
                89C5B49120F59E5E0013EAA8 /* LMJAutoRefreshFooter.m in Sources */,
                89C5B47120F59E5E0013EAA8 /* BaseHTTPRequest.m in Sources */,
                89C5B45320F59E5E0013EAA8 /* LMJMessageViewController.m in Sources */,
                89C5B46A20F59E5E0013EAA8 /* DynamicService.m in Sources */,
                89C5B49920F59E5E0013EAA8 /* LMJWebViewController.m in Sources */,
                89C5B47520F59E5E0013EAA8 /* CommonReqModel.m in Sources */,
                89C5B46220F59E5E0013EAA8 /* DetailDataViewController.m in Sources */,
                89C5B47C20F59E5E0013EAA8 /* YYFPSLabel.m in Sources */,
                89C5B49F20F59E5E0013EAA8 /* LMJItemSection.m in Sources */,
                89C5B48E20F59E5E0013EAA8 /* LMJNormalRefreshHeader.m in Sources */,
                89C5B4A020F59E5E0013EAA8 /* BaseReqModel.m in Sources */,
                89C5B49320F59E5E0013EAA8 /* LMJSettingCell.m in Sources */,
                89C5B46D20F59E5E0013EAA8 /* PPHTTPRequest.m in Sources */,
                89C5B45D20F59E5E0013EAA8 /* JHShowInfoView.m in Sources */,
                89C5B46F20F59E5E0013EAA8 /* PPInterfacedConst.m in Sources */,
                89C5B45820F59E5E0013EAA8 /* JHTableDataRowModel.m in Sources */,
                89C5B47020F59E5E0013EAA8 /* Global.m in Sources */,
                89C5B47E20F59E5E0013EAA8 /* PresentAnimator.m in Sources */,
                89C5B46620F59E5E0013EAA8 /* DetailModel.m in Sources */,
                89D30A9D20F5B32700BE0ECA /* JXTAlertController.m in Sources */,
                89C5B49420F59E5E0013EAA8 /* LMJBaseViewController.m in Sources */,
                89C5B48D20F59E5E0013EAA8 /* LMJElementsFlowLayout.m in Sources */,
                89C5B48620F59E5E0013EAA8 /* NSDecimalNumber+Addtion.m in Sources */,
                89C5B49520F59E5E0013EAA8 /* LMJRequestBaseViewController.m in Sources */,
                89C5B46020F59E5E0013EAA8 /* JHTableChart.m in Sources */,
                89C5B47B20F59E5E0013EAA8 /* TDTouchID.m in Sources */,
                89C5B49C20F59E5E0013EAA8 /* LMJCollectionViewController.m in Sources */,
                89C5B48420F59E5E0013EAA8 /* UITextView+WZB.m in Sources */,
                89C5B45520F59E5E0013EAA8 /* JHRadarChart.m in Sources */,
                89C5B47620F59E5E0013EAA8 /* UserModel.m in Sources */,
                89C5B45120F59E5E0013EAA8 /* LMJCasesViewController.m in Sources */,
                89C5B46920F59E5E0013EAA8 /* DetailItemCell.m in Sources */,
                89C5B49B20F59E5E0013EAA8 /* LMJNavUIBaseViewController.m in Sources */,
                89C5B46520F59E5E0013EAA8 /* MyAnimatedAnnotationView.m in Sources */,
                8957371120F595BD00A23C3B /* main.m in Sources */,
                89C5B48720F59E5E0013EAA8 /* UIButton+LMJ.m in Sources */,
                89C5B4A320F59E5E0013EAA8 /* LMJWordArrowItem.m in Sources */,
                89C5B46720F59E5E0013EAA8 /* DynamicModel.m in Sources */,
                89C5B45B20F59E5E0013EAA8 /* JHRingChart.m in Sources */,
                89C5B45420F59E5E0013EAA8 /* LMJHomeViewController.m in Sources */,
                89C5B38D20F59E350013EAA8 /* DateUtil.m in Sources */,
                89C5B48220F59E5E0013EAA8 /* AdvertiseHelper.m in Sources */,
                89C5B45220F59E5E0013EAA8 /* LMJTabBarController.m in Sources */,
                89C5B45A20F59E5E0013EAA8 /* JHChart.m in Sources */,
                89C5B4A220F59E5E0013EAA8 /* LMJWordItem.m in Sources */,
                89C5B48F20F59E5E0013EAA8 /* LMJHorizontalFlowLayout.m in Sources */,
                89C5B48C20F59E5E0013EAA8 /* GradientProgressView.m in Sources */,
                89C5B45920F59E5E0013EAA8 /* JHColumnChart.m in Sources */,
                89C5B47320F59E5E0013EAA8 /* NetworkDemo.m in Sources */,
                89C5B47820F59E5E0013EAA8 /* LMJIntroductoryPagesView.m in Sources */,
                89C5B45E20F59E5E0013EAA8 /* JHPieItemsView.m in Sources */,
                89C5B47920F59E5E0013EAA8 /* LMJIntroductoryPagesHelper.m in Sources */,
                89C5B47220F59E5E0013EAA8 /* PPNetworkCache.m in Sources */,
                89C5B46E20F59E5E0013EAA8 /* PPNetworkHelper.m in Sources */,
                89C5B46320F59E5E0013EAA8 /* MonitoringMapViewController.m in Sources */,
                89C5B47720F59E5E0013EAA8 /* LoginSevice.m in Sources */,
                89C5B49820F59E5E0013EAA8 /* LMJTextViewController.m in Sources */,
                89C5B49620F59E5E0013EAA8 /* LMJRefreshTableViewController.m in Sources */,
                89C5B49720F59E5E0013EAA8 /* LMJStaticTableViewController.m in Sources */,
                89C5B48B20F59E5E0013EAA8 /* UIView+LMJNjHuFrame.m in Sources */,
                89C5B38620F59D220013EAA8 /* TWConst.m in Sources */,
                89C5B45720F59E5E0013EAA8 /* JHWaveChart.m in Sources */,
                8957370320F595BB00A23C3B /* AppDelegate.m in Sources */,
                89C5B47420F59E5E0013EAA8 /* LoginViewController.m in Sources */,
                89C5B49A20F59E5E0013EAA8 /* LMJRefreshCollectionViewController.m in Sources */,
                89C5B49220F59E5E0013EAA8 /* LMJNavigationBar.m in Sources */,
                89C5B47F20F59E5E0013EAA8 /* LMJEasyBlankPageView.m in Sources */,
                89C5B48120F59E5E0013EAA8 /* AdvertiseView.m in Sources */,
                89C5B48820F59E5E0013EAA8 /* UIColor+Random.m in Sources */,
                89C5B48320F59E5E0013EAA8 /* UIView+GestureCallback.m in Sources */,
                89C5B45F20F59E5E0013EAA8 /* JHPieForeBGView.m in Sources */,
                89C5B46420F59E5E0013EAA8 /* DynamicViewController.m in Sources */,
                89C5B49E20F59E5E0013EAA8 /* LMJNavigationController.m in Sources */,
                89C5B4A120F59E5E0013EAA8 /* BaseResModel.m in Sources */,
                89C5B45620F59E5E0013EAA8 /* JHPieChart.m in Sources */,
                89C5B46120F59E5E0013EAA8 /* NSObject+CustomIndex.m in Sources */,
                89C5B38E20F59E350013EAA8 /* StringUtil.m in Sources */,
                89C5B48920F59E5E0013EAA8 /* MBProgressHUD+LMJ.m in Sources */,
                89C5B45C20F59E5E0013EAA8 /* JHLineChart.m in Sources */,
                89C5B47A20F59E5E0013EAA8 /* LMJEventTool.m in Sources */,
                89C5B45020F59E5E0013EAA8 /* LMJNewViewController.m in Sources */,
                89C5B46820F59E5E0013EAA8 /* DeviceModel.m in Sources */,
                89C5B48A20F59E5E0013EAA8 /* UIWindow+CurrentViewController.m in Sources */,
                89C5B48520F59E5E0013EAA8 /* NullSafe.m in Sources */,
                89C5B48020F59E5E0013EAA8 /* UIImageView+FitNet.m in Sources */,
                89C5B46C20F59E5E0013EAA8 /* DevicesService.m in Sources */,
            );
            runOnlyForDeploymentPostprocessing = 0;
        };
/* End PBXSourcesBuildPhase section */
 
/* Begin XCBuildConfiguration section */
        8957371220F595BD00A23C3B /* Debug */ = {
            isa = XCBuildConfiguration;
            buildSettings = {
                ALWAYS_SEARCH_USER_PATHS = NO;
                CLANG_ANALYZER_NONNULL = YES;
                CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
                CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
                CLANG_CXX_LIBRARY = "libc++";
                CLANG_ENABLE_MODULES = YES;
                CLANG_ENABLE_OBJC_ARC = YES;
                CLANG_ENABLE_OBJC_WEAK = YES;
                CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
                CLANG_WARN_BOOL_CONVERSION = YES;
                CLANG_WARN_COMMA = YES;
                CLANG_WARN_CONSTANT_CONVERSION = YES;
                CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
                CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
                CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
                CLANG_WARN_EMPTY_BODY = YES;
                CLANG_WARN_ENUM_CONVERSION = YES;
                CLANG_WARN_INFINITE_RECURSION = YES;
                CLANG_WARN_INT_CONVERSION = YES;
                CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
                CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
                CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
                CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
                CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
                CLANG_WARN_STRICT_PROTOTYPES = YES;
                CLANG_WARN_SUSPICIOUS_MOVE = YES;
                CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
                CLANG_WARN_UNREACHABLE_CODE = YES;
                CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
                CODE_SIGN_IDENTITY = "iPhone Developer";
                COPY_PHASE_STRIP = NO;
                DEBUG_INFORMATION_FORMAT = dwarf;
                ENABLE_STRICT_OBJC_MSGSEND = YES;
                ENABLE_TESTABILITY = YES;
                GCC_C_LANGUAGE_STANDARD = gnu11;
                GCC_DYNAMIC_NO_PIC = NO;
                GCC_NO_COMMON_BLOCKS = YES;
                GCC_OPTIMIZATION_LEVEL = 0;
                GCC_PREPROCESSOR_DEFINITIONS = (
                    "DEBUG=1",
                    "$(inherited)",
                );
                GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
                GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
                GCC_WARN_UNDECLARED_SELECTOR = YES;
                GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
                GCC_WARN_UNUSED_FUNCTION = YES;
                GCC_WARN_UNUSED_VARIABLE = YES;
                IPHONEOS_DEPLOYMENT_TARGET = 11.4;
                MTL_ENABLE_DEBUG_INFO = YES;
                ONLY_ACTIVE_ARCH = YES;
                SDKROOT = iphoneos;
            };
            name = Debug;
        };
        8957371320F595BD00A23C3B /* Release */ = {
            isa = XCBuildConfiguration;
            buildSettings = {
                ALWAYS_SEARCH_USER_PATHS = NO;
                CLANG_ANALYZER_NONNULL = YES;
                CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
                CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
                CLANG_CXX_LIBRARY = "libc++";
                CLANG_ENABLE_MODULES = YES;
                CLANG_ENABLE_OBJC_ARC = YES;
                CLANG_ENABLE_OBJC_WEAK = YES;
                CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
                CLANG_WARN_BOOL_CONVERSION = YES;
                CLANG_WARN_COMMA = YES;
                CLANG_WARN_CONSTANT_CONVERSION = YES;
                CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
                CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
                CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
                CLANG_WARN_EMPTY_BODY = YES;
                CLANG_WARN_ENUM_CONVERSION = YES;
                CLANG_WARN_INFINITE_RECURSION = YES;
                CLANG_WARN_INT_CONVERSION = YES;
                CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
                CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
                CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
                CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
                CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
                CLANG_WARN_STRICT_PROTOTYPES = YES;
                CLANG_WARN_SUSPICIOUS_MOVE = YES;
                CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
                CLANG_WARN_UNREACHABLE_CODE = YES;
                CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
                CODE_SIGN_IDENTITY = "iPhone Developer";
                COPY_PHASE_STRIP = NO;
                DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
                ENABLE_NS_ASSERTIONS = NO;
                ENABLE_STRICT_OBJC_MSGSEND = YES;
                GCC_C_LANGUAGE_STANDARD = gnu11;
                GCC_NO_COMMON_BLOCKS = YES;
                GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
                GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
                GCC_WARN_UNDECLARED_SELECTOR = YES;
                GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
                GCC_WARN_UNUSED_FUNCTION = YES;
                GCC_WARN_UNUSED_VARIABLE = YES;
                IPHONEOS_DEPLOYMENT_TARGET = 11.4;
                MTL_ENABLE_DEBUG_INFO = NO;
                SDKROOT = iphoneos;
                VALIDATE_PRODUCT = YES;
            };
            name = Release;
        };
        8957371520F595BD00A23C3B /* Debug */ = {
            isa = XCBuildConfiguration;
            baseConfigurationReference = E5AFA907421A40B4894FD370 /* Pods-screendisplay.debug.xcconfig */;
            buildSettings = {
                ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
                ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
                CLANG_ENABLE_OBJC_ARC = YES;
                CODE_SIGN_STYLE = Automatic;
                DEVELOPMENT_TEAM = S663C22RU7;
                ENABLE_BITCODE = NO;
                FRAMEWORK_SEARCH_PATHS = (
                    "$(inherited)",
                    "$(PROJECT_DIR)/Pods/BaiduMapKit/BaiduMapKit",
                );
                GCC_PREFIX_HEADER = "screendisplay/Supporting Files/CommonHeader.pch";
                INFOPLIST_FILE = "$(SRCROOT)/screendisplay/Supporting Files/Info.plist";
                LD_RUNPATH_SEARCH_PATHS = (
                    "$(inherited)",
                    "@executable_path/Frameworks",
                );
                LIBRARY_SEARCH_PATHS = (
                    "$(inherited)",
                    "$(PROJECT_DIR)/Pods/BaiduMapKit/BaiduMapKit/thirdlibs",
                );
                PRODUCT_BUNDLE_IDENTIFIER = com.moral.screendisplay;
                PRODUCT_NAME = "$(TARGET_NAME)";
                TARGETED_DEVICE_FAMILY = 1;
            };
            name = Debug;
        };
        8957371620F595BD00A23C3B /* Release */ = {
            isa = XCBuildConfiguration;
            baseConfigurationReference = 0301D6CDCA500FA2E0FB7669 /* Pods-screendisplay.release.xcconfig */;
            buildSettings = {
                ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
                ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
                CLANG_ENABLE_OBJC_ARC = YES;
                CODE_SIGN_STYLE = Automatic;
                DEVELOPMENT_TEAM = S663C22RU7;
                ENABLE_BITCODE = NO;
                FRAMEWORK_SEARCH_PATHS = (
                    "$(inherited)",
                    "$(PROJECT_DIR)/Pods/BaiduMapKit/BaiduMapKit",
                );
                GCC_PREFIX_HEADER = "screendisplay/Supporting Files/CommonHeader.pch";
                INFOPLIST_FILE = "$(SRCROOT)/screendisplay/Supporting Files/Info.plist";
                LD_RUNPATH_SEARCH_PATHS = (
                    "$(inherited)",
                    "@executable_path/Frameworks",
                );
                LIBRARY_SEARCH_PATHS = (
                    "$(inherited)",
                    "$(PROJECT_DIR)/Pods/BaiduMapKit/BaiduMapKit/thirdlibs",
                );
                PRODUCT_BUNDLE_IDENTIFIER = com.moral.screendisplay;
                PRODUCT_NAME = "$(TARGET_NAME)";
                TARGETED_DEVICE_FAMILY = 1;
            };
            name = Release;
        };
/* End XCBuildConfiguration section */
 
/* Begin XCConfigurationList section */
        895736F920F595BB00A23C3B /* Build configuration list for PBXProject "screendisplay" */ = {
            isa = XCConfigurationList;
            buildConfigurations = (
                8957371220F595BD00A23C3B /* Debug */,
                8957371320F595BD00A23C3B /* Release */,
            );
            defaultConfigurationIsVisible = 0;
            defaultConfigurationName = Release;
        };
        8957371420F595BD00A23C3B /* Build configuration list for PBXNativeTarget "screendisplay" */ = {
            isa = XCConfigurationList;
            buildConfigurations = (
                8957371520F595BD00A23C3B /* Debug */,
                8957371620F595BD00A23C3B /* Release */,
            );
            defaultConfigurationIsVisible = 0;
            defaultConfigurationName = Release;
        };
/* End XCConfigurationList section */
    };
    rootObject = 895736F620F595BB00A23C3B /* Project object */;
}