-
Notifications
You must be signed in to change notification settings - Fork 1
/
openapi.yaml
5806 lines (5735 loc) · 266 KB
/
openapi.yaml
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
openapi: 3.0.3
info:
title: IPSW Downloads API
version: 1.0.0
description: >-
Download current and previous versions of Apple's iOS Firmware, iTunes and
OTA updates.
servers:
- url: https://api.ipsw.me/v4
paths:
/device/{identifier}:
get:
responses:
'200':
description: OK
headers:
Access-Control-Allow-Methods:
schema:
type: string
Access-Control-Allow-Origin:
schema:
type: string
Cache-Control:
schema:
type: string
Expires:
schema:
type: string
X-Data-Location:
schema:
type: string
content:
application/json:
schema:
$ref: '#/components/schemas/Device'
examples:
example1:
value:
name: iPhone 6s
identifier: iPhone8,1
firmwares:
- identifier: iPhone8,1
version: 13.1.3
buildid: 17A878
sha1sum: 96be7a8e55ec4bd1867bd1d7f18b1f24f8731838
md5sum: e7f95f23dd0d8f406b2ef95d4b63bc5c
filesize: 3652675161
url: >-
http://updates-http.cdn-apple.com/2019FallFCS/fullrestores/061-30582/2A093596-EB7A-11E9-9505-C810329334FA/iPhone_4.7_13.1.3_17A878_Restore.ipsw
releasedate: '2019-10-15T17:00:31Z'
uploaddate: '2019-10-10T17:31:00Z'
signed: true
- identifier: iPhone8,1
version: 13.1.2
buildid: 17A860
sha1sum: a90465c172cd77bcb5bf112993c8ee7caba632d1
md5sum: 5c247ad50b0bd470ea976c742bc42240
filesize: 3654014311
url: >-
http://updates-http.cdn-apple.com/2019FallFCS/fullrestores/061-22597/37272F4C-E18B-11E9-9F72-B96496A9EC6E/iPhone_4.7_13.1.2_17A860_Restore.ipsw
releasedate: '2019-09-30T17:11:19Z'
uploaddate: '2019-09-28T01:09:45Z'
signed: true
- identifier: iPhone8,1
version: 13.1.1
buildid: 17A854
sha1sum: 6fd3eaa23d13d26f8174c353d92b55c0ecc1698b
md5sum: a902e7dae4d9f15fe9d1a1a317a04740
filesize: 3651115452
url: >-
http://updates-http.cdn-apple.com/2019FallFCS/fullrestores/061-18421/E8F8D60E-DED8-11E9-A685-B200DC34986D/iPhone_4.7_13.1.1_17A854_Restore.ipsw
releasedate: '2019-09-27T16:58:00Z'
uploaddate: '2019-09-24T14:51:54Z'
signed: false
- identifier: iPhone8,1
version: '13.1'
buildid: 17A844
sha1sum: 3421b3825922e4f3d32e890a75b8ad3ba69a69f2
md5sum: a8cc4f157d799b1776028c7ce305ddf2
filesize: 3652404986
url: >-
http://updates-http.cdn-apple.com/2019FallFCS/fullrestores/091-99496/DCDE77CC-D986-11E9-AC76-A120DCDBD6A3/iPhone_4.7_13.1_17A844_Restore.ipsw
releasedate: '2019-09-24T17:03:38Z'
uploaddate: '2019-09-17T20:21:50Z'
signed: false
boards:
- boardconfig: N71AP
platform: s8000
cpid: 32768
bdid: 4
- boardconfig: N71mAP
platform: s8003
cpid: 32771
bdid: 4
boardconfig: N71AP
platform: s8000
cpid: 32768
bdid: 4
example2:
value:
name: iPhone 6+
identifier: iPhone7,1
firmwares:
- identifier: iPhone7,1
version: 12.4.2
buildid: 16G114
sha1sum: 58a91fa4d73077133772e464f761c96ad91df683
md5sum: 10d9aeb0d87a04a40417be05c0b19a44
filesize: 3328746693
url: >-
http://updates-http.cdn-apple.com/2019SummerFCS/fullrestores/061-20538/FD3DCDB6-DC8C-11E9-ABB0-278C66A83945/iPhone_5.5_12.4.2_16G114_Restore.ipsw
releasedate: '2019-09-26T17:04:56Z'
uploaddate: '2019-09-21T16:42:04Z'
signed: true
- identifier: iPhone7,1
version: 12.4.1
buildid: 16G102
sha1sum: 671863b1a34cb4d8abc44919679c645f0500486d
md5sum: 8a374df4132aedddd0207c8978080b35
filesize: 3345837529
url: >-
http://updates-http.cdn-apple.com/2019SummerFCS/fullrestores/061-05190/A449778A-C4E7-11E9-BE68-18610AD8B7A1/iPhone_5.5_12.4.1_16G102_Restore.ipsw
releasedate: '2019-08-26T18:30:09Z'
uploaddate: '2019-08-22T14:27:57Z'
signed: false
- identifier: iPhone7,1
version: '12.4'
buildid: 16G77
sha1sum: e435aa95763167106707e5d6534a4dcb66408f18
md5sum: 75279e6f2f850ba825addfe590afb8ba
filesize: 3345389368
url: >-
http://updates-http.cdn-apple.com/2019SummerFCS/fullrestores/041-86579/9E26E61A-A743-11E9-87D6-F185B65480B0/iPhone_5.5_12.4_16G77_Restore.ipsw
releasedate: '2019-07-22T17:08:32Z'
uploaddate: '2019-07-15T21:08:52Z'
signed: false
- identifier: iPhone7,1
version: 12.3.1
buildid: 16F203
sha1sum: a168b1bc901fb64cf725ab0dcca183dd684770dc
md5sum: 84a83ab5e05e2560fd6b08d6c014cd82
filesize: 3339505439
url: >-
http://updates-http.cdn-apple.com/2019SpringFCS/fullrestores/041-68573/CC468F46-7C96-11E9-80BA-4EF06256CCDB/iPhone_5.5_12.3.1_16F203_Restore.ipsw
releasedate: '2019-05-24T17:02:33Z'
uploaddate: '2019-05-22T13:57:50Z'
signed: false
boards:
- boardconfig: N56AP
platform: t7000
cpid: 28672
bdid: 4
boardconfig: N56AP
platform: t7000
cpid: 28672
bdid: 4
example3:
value:
name: iPhone 3G
identifier: iPhone1,2
firmwares:
- identifier: iPhone1,2
version: 4.2.1
buildid: 8C148
sha1sum: d2ed58586e8ca2153f2e2ec585bba8afc5173378
md5sum: 8b1657935408a1638b69740b282f62b3
filesize: 338579762
url: >-
http://appldnld.apple.com/iPhone4/061-9853.20101122.Vfgt5/iPhone1,2_4.2.1_8C148_Restore.ipsw
releasedate: null
uploaddate: '2010-11-18T17:30:48Z'
signed: true
- identifier: iPhone1,2
version: '4.1'
buildid: 8B117
sha1sum: d87bab469dd1146ab83ddcc23f03b3164d7e09d4
md5sum: 8cc589baad3c80dd8324c37d7dc00750
filesize: 323137556
url: >-
http://appldnld.apple.com/iPhone4/061-7932.20100908.3fgt5/iPhone1,2_4.1_8B117_Restore.ipsw
releasedate: null
uploaddate: '2010-09-03T14:12:24Z'
signed: true
- identifier: iPhone1,2
version: 4.0.2
buildid: 8A400
sha1sum: ee2bc74719170a7a2440b593b6f300727c930c69
md5sum: 6f3aefe1f8f516ae6e91fe993749347a
filesize: 320216794
url: >-
http://appldnld.apple.com/iPhone4/061-8802.20100811.XcfpR/iPhone1,2_4.0.2_8A400_Restore.ipsw
releasedate: null
uploaddate: '2010-08-09T19:52:20Z'
signed: true
- identifier: iPhone1,2
version: 4.0.1
buildid: 8A306
sha1sum: 940bd2b36c646f6673419eab661ac1f13248e592
md5sum: 8a952dbd03fa5e85da1a31092c651a25
filesize: 320237975
url: >-
http://appldnld.apple.com/iPhone4/061-8616.20100715.phnt4/iPhone1,2_4.0.1_8A306_Restore.ipsw
releasedate: null
uploaddate: '2010-07-13T20:13:59Z'
signed: true
boards:
- boardconfig: n82ap
platform: s5l8900x
cpid: 35072
bdid: 4
boardconfig: n82ap
platform: s5l8900x
cpid: 35072
bdid: 4
example4:
value:
name: iPod touch 1G
identifier: iPod1,1
firmwares:
- identifier: iPod1,1
version: 1.1.5
buildid: 4B1
sha1sum: 1b818911316e4248ee01d3ec67f9d39afc3db240
md5sum: 80b46fe8db7cfe58bb67e8553f495a8d
filesize: 173519637
url: >-
http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPod/SBML/osx/bundles/061-4841.20080714.bgy8O/iPod1,1_1.1.5_4B1_Restore.ipsw
releasedate: null
uploaddate: '2008-07-14T21:39:28Z'
signed: false
- identifier: iPod1,1
version: 1.1.4
buildid: 4A102
sha1sum: c148d1eb1c979bb6434175411d4a372103a4fdd2
md5sum: 0ed3435b4ead9aa5606ca0af66eedd90
filesize: 173519589
url: >-
http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPod/SBML/osx/bundles/061-4312.20080226.Btu45/iPod1,1_1.1.4_4A102_Restore.ipsw
releasedate: null
uploaddate: '2008-02-22T23:28:42Z'
signed: false
- identifier: iPod1,1
version: 1.1.3
buildid: 4A93
sha1sum: 8dca23eec69d5ae58fbf3d4a23276e46cbb2e3c6
md5sum: 12d996c376d378c1333b0343ddad6cb0
filesize: 173511411
url: >-
http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPod/SBML/osx/061-4060.20080115.9Iuh5/iPod1,1_1.1.3_4A93_Restore.ipsw
releasedate: null
uploaddate: '2008-01-10T04:03:18Z'
signed: false
- identifier: iPod1,1
version: 1.1.2
buildid: 3B48b
sha1sum: 108d8ffe9ea75e61cd5e57170ad388b7fa00d923
md5sum: a7469c40e204a607becabaca841b718f
filesize: 165567897
url: >-
http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPod/SBML/osx/bundles/061-4036.20071107.9g3DF/iPod1,1_1.1.2_3B48b_Restore.ipsw
releasedate: null
uploaddate: '2007-11-07T20:25:19Z'
signed: false
boards:
- boardconfig: n45ap
platform: s5l8900x
cpid: 35072
bdid: 2
boardconfig: n45ap
platform: s5l8900x
cpid: 35072
bdid: 2
example5:
value:
name: Apple TV 2G
identifier: AppleTV2,1
firmwares:
- identifier: AppleTV2,1
version: 7.1.2
buildid: 11D258
sha1sum: 4724347f2700dfe82fb864ecc8cdf66ea33262b1
md5sum: 6677e7611ebed25d8dc33d2401b75de2
filesize: 698547170
url: >-
http://appldnld.apple.com/iOS8/031-07202.20140917.tF6Fs/AppleTV2,1_6.2.1_11D258_Restore.ipsw
releasedate: '2014-09-17T17:59:02Z'
uploaddate: '2014-09-03T17:55:56Z'
signed: true
- identifier: AppleTV2,1
version: 7.1.2
buildid: 11D257c
sha1sum: a772321de7a4e4b5fa710ec3660d4a640c04ead8
md5sum: 2b5ad301db18658c06ba12841c250f4d
filesize: 698406382
url: >-
http://appldnld.apple.com/iOS7.1/031-04317.20140630.2qAFy/AppleTV2,1_6.2_11D257c_Restore.ipsw
releasedate: '2014-06-30T18:28:53Z'
uploaddate: '2014-06-27T22:43:09Z'
signed: false
- identifier: AppleTV2,1
version: 7.1.1
buildid: 11D201c
sha1sum: 500dcc8878d0ef51b57f7c8260076d3970235d5a
md5sum: 1b8d3e39e1523aeee697c0be90236e9f
filesize: 698303443
url: >-
http://appldnld.apple.com/iOS7.1/031-01311.20140422.EaugX/AppleTV2,1_6.1.1_11D201c_Restore.ipsw
releasedate: '2014-04-22T17:46:02Z'
uploaddate: '2014-04-16T23:38:39Z'
signed: false
- identifier: AppleTV2,1
version: '7.1'
buildid: 11D169b
sha1sum: db425818155c27df710547329c6bcdd3a7f78c1e
md5sum: 8107d3d44f22c234ccf15c976c8f0331
filesize: 698244610
url: >-
http://appldnld.apple.com/iOS7.1/031-4478.20140310.XDdib/AppleTV2,1_6.1_11D169b_Restore.ipsw
releasedate: '2014-03-10T17:57:25Z'
uploaddate: '2014-03-06T20:49:52Z'
signed: false
boards:
- boardconfig: k66ap
platform: s5l8930x
cpid: 35120
bdid: 16
boardconfig: k66ap
platform: s5l8930x
cpid: 35120
bdid: 16
example6:
value:
name: iPhone 5 (GSM)
identifier: iPhone5,1
firmwares:
- identifier: iPhone5,1
buildid: 14G61
version: 10.3.4
url: >-
http://updates-http.cdn-apple.com/2019/ios/091-24443-20190722-9357424A-9931-11E9-BCE8-56D0A77C2E40/com_apple_MobileAsset_SoftwareUpdate/fb90f2903f57aceabaf43bdc5aa99364faa8593e.zip
filesize: 66410207
prerequisitebuildid: 14F89
prerequisiteversion: 10.3.2
releasetype: ''
uploaddate: '2019-06-27T23:34:39Z'
releasedate: '2019-07-22T17:07:55Z'
marketingversion: ''
signed: true
- identifier: iPhone5,1
buildid: 14G61
version: 10.3.4
url: >-
http://updates-http.cdn-apple.com/2019/ios/091-24423-20190722-9357424A-9931-11E9-BCE8-53D0A77C2E40/com_apple_MobileAsset_SoftwareUpdate/1bc7b173cae90361d7820409ecc2fa5d5427144a.zip
filesize: 48460066
prerequisitebuildid: 14G57
prerequisiteversion: 10.3.3
releasetype: ''
uploaddate: '2019-06-27T23:34:34Z'
releasedate: '2019-07-22T17:07:56Z'
marketingversion: ''
signed: true
- identifier: iPhone5,1
buildid: 14G61
version: 10.3.4
url: >-
http://updates-http.cdn-apple.com/2019/ios/091-24531-20190722-93574B96-9931-11E9-B99A-5FD0A77C2E40/com_apple_MobileAsset_SoftwareUpdate/510f3fd40401a3fb35b1a22fa160f9a29730ec0c.zip
filesize: 36390797
prerequisitebuildid: 14G60
prerequisiteversion: 10.3.3
releasetype: ''
uploaddate: '2019-06-27T23:34:27Z'
releasedate: '2019-07-22T17:07:56Z'
marketingversion: ''
signed: true
- identifier: iPhone5,1
buildid: 14G61
version: 10.3.4
url: >-
http://updates-http.cdn-apple.com/2019/ios/091-24126-20190722-93574042-9931-11E9-BCE8-43D0A77C2E40/com_apple_MobileAsset_SoftwareUpdate/716406ffa26c805728d3078b56129ac07fc6516c.zip
filesize: 143957900
prerequisitebuildid: '14E304'
prerequisiteversion: 10.3.1
releasetype: ''
uploaddate: '2019-06-27T23:34:27Z'
releasedate: '2019-07-22T17:07:55Z'
marketingversion: ''
signed: true
boards:
- boardconfig: N41AP
platform: s5l8950x
cpid: 35152
bdid: 0
boardconfig: N41AP
platform: s5l8950x
cpid: 35152
bdid: 0
application/x-plist:
examples:
example1:
value: >
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>BDID</key>
<integer>4</integer>
<key>BoardConfig</key>
<string>N71AP</string>
<key>Boards</key>
<array>
<dict>
<key>BDID</key>
<integer>4</integer>
<key>BoardConfig</key>
<string>N71AP</string>
<key>CPID</key>
<integer>32768</integer>
<key>Platform</key>
<string>s8000</string>
</dict>
<dict>
<key>BDID</key>
<integer>4</integer>
<key>BoardConfig</key>
<string>N71mAP</string>
<key>CPID</key>
<integer>32771</integer>
<key>Platform</key>
<string>s8003</string>
</dict>
</array>
<key>CPID</key>
<integer>32768</integer>
<key>Firmwares</key>
<array>
<dict>
<key>BuildID</key>
<string>17A878</string>
<key>Filesize</key>
<integer>3652675161</integer>
<key>Identifier</key>
<string>iPhone8,1</string>
<key>MD5sum</key>
<string>e7f95f23dd0d8f406b2ef95d4b63bc5c</string>
<key>ReleaseDate</key>
<string>2019-10-15T17:00:31Z</string>
<key>SHA1sum</key>
<string>96be7a8e55ec4bd1867bd1d7f18b1f24f8731838</string>
<key>Signed</key>
<true/>
<key>URL</key>
<string>http://updates-http.cdn-apple.com/2019FallFCS/fullrestores/061-30582/2A093596-EB7A-11E9-9505-C810329334FA/iPhone_4.7_13.1.3_17A878_Restore.ipsw</string>
<key>UploadDate</key>
<date>2019-10-10T17:31:00Z</date>
<key>Version</key>
<string>13.1.3</string>
</dict>
<dict>
<key>BuildID</key>
<string>17A860</string>
<key>Filesize</key>
<integer>3654014311</integer>
<key>Identifier</key>
<string>iPhone8,1</string>
<key>MD5sum</key>
<string>5c247ad50b0bd470ea976c742bc42240</string>
<key>ReleaseDate</key>
<string>2019-09-30T17:11:19Z</string>
<key>SHA1sum</key>
<string>a90465c172cd77bcb5bf112993c8ee7caba632d1</string>
<key>Signed</key>
<true/>
<key>URL</key>
<string>http://updates-http.cdn-apple.com/2019FallFCS/fullrestores/061-22597/37272F4C-E18B-11E9-9F72-B96496A9EC6E/iPhone_4.7_13.1.2_17A860_Restore.ipsw</string>
<key>UploadDate</key>
<date>2019-09-28T01:09:45Z</date>
<key>Version</key>
<string>13.1.2</string>
</dict>
<dict>
<key>BuildID</key>
<string>17A854</string>
<key>Filesize</key>
<integer>3651115452</integer>
<key>Identifier</key>
<string>iPhone8,1</string>
<key>MD5sum</key>
<string>a902e7dae4d9f15fe9d1a1a317a04740</string>
<key>ReleaseDate</key>
<string>2019-09-27T16:58:00Z</string>
<key>SHA1sum</key>
<string>6fd3eaa23d13d26f8174c353d92b55c0ecc1698b</string>
<key>Signed</key>
<false/>
<key>URL</key>
<string>http://updates-http.cdn-apple.com/2019FallFCS/fullrestores/061-18421/E8F8D60E-DED8-11E9-A685-B200DC34986D/iPhone_4.7_13.1.1_17A854_Restore.ipsw</string>
<key>UploadDate</key>
<date>2019-09-24T14:51:54Z</date>
<key>Version</key>
<string>13.1.1</string>
</dict>
<dict>
<key>BuildID</key>
<string>17A844</string>
<key>Filesize</key>
<integer>3652404986</integer>
<key>Identifier</key>
<string>iPhone8,1</string>
<key>MD5sum</key>
<string>a8cc4f157d799b1776028c7ce305ddf2</string>
<key>ReleaseDate</key>
<string>2019-09-24T17:03:38Z</string>
<key>SHA1sum</key>
<string>3421b3825922e4f3d32e890a75b8ad3ba69a69f2</string>
<key>Signed</key>
<false/>
<key>URL</key>
<string>http://updates-http.cdn-apple.com/2019FallFCS/fullrestores/091-99496/DCDE77CC-D986-11E9-AC76-A120DCDBD6A3/iPhone_4.7_13.1_17A844_Restore.ipsw</string>
<key>UploadDate</key>
<date>2019-09-17T20:21:50Z</date>
<key>Version</key>
<string>13.1</string>
</dict>
</array>
<key>Identifier</key>
<string>iPhone8,1</string>
<key>Name</key>
<string>iPhone 6s</string>
<key>Platform</key>
<string>s8000</string>
</dict>
</plist>
example2:
value: >
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>BDID</key>
<integer>4</integer>
<key>BoardConfig</key>
<string>N56AP</string>
<key>Boards</key>
<array>
<dict>
<key>BDID</key>
<integer>4</integer>
<key>BoardConfig</key>
<string>N56AP</string>
<key>CPID</key>
<integer>28672</integer>
<key>Platform</key>
<string>t7000</string>
</dict>
</array>
<key>CPID</key>
<integer>28672</integer>
<key>Firmwares</key>
<array>
<dict>
<key>BuildID</key>
<string>16G114</string>
<key>Filesize</key>
<integer>3328746693</integer>
<key>Identifier</key>
<string>iPhone7,1</string>
<key>MD5sum</key>
<string>10d9aeb0d87a04a40417be05c0b19a44</string>
<key>ReleaseDate</key>
<string>2019-09-26T17:04:56Z</string>
<key>SHA1sum</key>
<string>58a91fa4d73077133772e464f761c96ad91df683</string>
<key>Signed</key>
<true/>
<key>URL</key>
<string>http://updates-http.cdn-apple.com/2019SummerFCS/fullrestores/061-20538/FD3DCDB6-DC8C-11E9-ABB0-278C66A83945/iPhone_5.5_12.4.2_16G114_Restore.ipsw</string>
<key>UploadDate</key>
<date>2019-09-21T16:42:04Z</date>
<key>Version</key>
<string>12.4.2</string>
</dict>
<dict>
<key>BuildID</key>
<string>16G102</string>
<key>Filesize</key>
<integer>3345837529</integer>
<key>Identifier</key>
<string>iPhone7,1</string>
<key>MD5sum</key>
<string>8a374df4132aedddd0207c8978080b35</string>
<key>ReleaseDate</key>
<string>2019-08-26T18:30:09Z</string>
<key>SHA1sum</key>
<string>671863b1a34cb4d8abc44919679c645f0500486d</string>
<key>Signed</key>
<false/>
<key>URL</key>
<string>http://updates-http.cdn-apple.com/2019SummerFCS/fullrestores/061-05190/A449778A-C4E7-11E9-BE68-18610AD8B7A1/iPhone_5.5_12.4.1_16G102_Restore.ipsw</string>
<key>UploadDate</key>
<date>2019-08-22T14:27:57Z</date>
<key>Version</key>
<string>12.4.1</string>
</dict>
<dict>
<key>BuildID</key>
<string>16G77</string>
<key>Filesize</key>
<integer>3345389368</integer>
<key>Identifier</key>
<string>iPhone7,1</string>
<key>MD5sum</key>
<string>75279e6f2f850ba825addfe590afb8ba</string>
<key>ReleaseDate</key>
<string>2019-07-22T17:08:32Z</string>
<key>SHA1sum</key>
<string>e435aa95763167106707e5d6534a4dcb66408f18</string>
<key>Signed</key>
<false/>
<key>URL</key>
<string>http://updates-http.cdn-apple.com/2019SummerFCS/fullrestores/041-86579/9E26E61A-A743-11E9-87D6-F185B65480B0/iPhone_5.5_12.4_16G77_Restore.ipsw</string>
<key>UploadDate</key>
<date>2019-07-15T21:08:52Z</date>
<key>Version</key>
<string>12.4</string>
</dict>
<dict>
<key>BuildID</key>
<string>16F203</string>
<key>Filesize</key>
<integer>3339505439</integer>
<key>Identifier</key>
<string>iPhone7,1</string>
<key>MD5sum</key>
<string>84a83ab5e05e2560fd6b08d6c014cd82</string>
<key>ReleaseDate</key>
<string>2019-05-24T17:02:33Z</string>
<key>SHA1sum</key>
<string>a168b1bc901fb64cf725ab0dcca183dd684770dc</string>
<key>Signed</key>
<false/>
<key>URL</key>
<string>http://updates-http.cdn-apple.com/2019SpringFCS/fullrestores/041-68573/CC468F46-7C96-11E9-80BA-4EF06256CCDB/iPhone_5.5_12.3.1_16F203_Restore.ipsw</string>
<key>UploadDate</key>
<date>2019-05-22T13:57:50Z</date>
<key>Version</key>
<string>12.3.1</string>
</dict>
</array>
<key>Identifier</key>
<string>iPhone7,1</string>
<key>Name</key>
<string>iPhone 6+</string>
<key>Platform</key>
<string>t7000</string>
</dict>
</plist>
example3:
value: >
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>BDID</key>
<integer>4</integer>
<key>BoardConfig</key>
<string>n82ap</string>
<key>Boards</key>
<array>
<dict>
<key>BDID</key>
<integer>4</integer>
<key>BoardConfig</key>
<string>n82ap</string>
<key>CPID</key>
<integer>35072</integer>
<key>Platform</key>
<string>s5l8900x</string>
</dict>
</array>
<key>CPID</key>
<integer>35072</integer>
<key>Firmwares</key>
<array>
<dict>
<key>BuildID</key>
<string>8C148</string>
<key>Filesize</key>
<integer>338579762</integer>
<key>Identifier</key>
<string>iPhone1,2</string>
<key>MD5sum</key>
<string>8b1657935408a1638b69740b282f62b3</string>
<key>ReleaseDate</key>
<string>null</string>
<key>SHA1sum</key>
<string>d2ed58586e8ca2153f2e2ec585bba8afc5173378</string>
<key>Signed</key>
<true/>
<key>URL</key>
<string>http://appldnld.apple.com/iPhone4/061-9853.20101122.Vfgt5/iPhone1,2_4.2.1_8C148_Restore.ipsw</string>
<key>UploadDate</key>
<date>2010-11-18T17:30:48Z</date>
<key>Version</key>
<string>4.2.1</string>
</dict>
<dict>
<key>BuildID</key>
<string>8B117</string>
<key>Filesize</key>
<integer>323137556</integer>
<key>Identifier</key>
<string>iPhone1,2</string>
<key>MD5sum</key>
<string>8cc589baad3c80dd8324c37d7dc00750</string>
<key>ReleaseDate</key>
<string>null</string>
<key>SHA1sum</key>
<string>d87bab469dd1146ab83ddcc23f03b3164d7e09d4</string>
<key>Signed</key>
<true/>
<key>URL</key>
<string>http://appldnld.apple.com/iPhone4/061-7932.20100908.3fgt5/iPhone1,2_4.1_8B117_Restore.ipsw</string>
<key>UploadDate</key>
<date>2010-09-03T14:12:24Z</date>
<key>Version</key>
<string>4.1</string>
</dict>
<dict>
<key>BuildID</key>
<string>8A400</string>
<key>Filesize</key>
<integer>320216794</integer>
<key>Identifier</key>
<string>iPhone1,2</string>
<key>MD5sum</key>
<string>6f3aefe1f8f516ae6e91fe993749347a</string>
<key>ReleaseDate</key>
<string>null</string>
<key>SHA1sum</key>
<string>ee2bc74719170a7a2440b593b6f300727c930c69</string>
<key>Signed</key>
<true/>
<key>URL</key>
<string>http://appldnld.apple.com/iPhone4/061-8802.20100811.XcfpR/iPhone1,2_4.0.2_8A400_Restore.ipsw</string>
<key>UploadDate</key>
<date>2010-08-09T19:52:20Z</date>
<key>Version</key>
<string>4.0.2</string>
</dict>
<dict>
<key>BuildID</key>
<string>8A306</string>
<key>Filesize</key>
<integer>320237975</integer>
<key>Identifier</key>
<string>iPhone1,2</string>
<key>MD5sum</key>
<string>8a952dbd03fa5e85da1a31092c651a25</string>
<key>ReleaseDate</key>
<string>null</string>
<key>SHA1sum</key>
<string>940bd2b36c646f6673419eab661ac1f13248e592</string>
<key>Signed</key>
<true/>
<key>URL</key>
<string>http://appldnld.apple.com/iPhone4/061-8616.20100715.phnt4/iPhone1,2_4.0.1_8A306_Restore.ipsw</string>
<key>UploadDate</key>
<date>2010-07-13T20:13:59Z</date>
<key>Version</key>
<string>4.0.1</string>
</dict>
</array>
<key>Identifier</key>
<string>iPhone1,2</string>
<key>Name</key>
<string>iPhone 3G</string>
<key>Platform</key>
<string>s5l8900x</string>
</dict>
</plist>
example4:
value: >
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>BDID</key>
<integer>2</integer>
<key>BoardConfig</key>
<string>n45ap</string>
<key>Boards</key>
<array>
<dict>
<key>BDID</key>
<integer>2</integer>
<key>BoardConfig</key>
<string>n45ap</string>
<key>CPID</key>
<integer>35072</integer>
<key>Platform</key>
<string>s5l8900x</string>
</dict>
</array>
<key>CPID</key>
<integer>35072</integer>
<key>Firmwares</key>
<array>
<dict>
<key>BuildID</key>
<string>4B1</string>
<key>Filesize</key>
<integer>173519637</integer>
<key>Identifier</key>
<string>iPod1,1</string>
<key>MD5sum</key>
<string>80b46fe8db7cfe58bb67e8553f495a8d</string>
<key>ReleaseDate</key>
<string>null</string>
<key>SHA1sum</key>
<string>1b818911316e4248ee01d3ec67f9d39afc3db240</string>
<key>Signed</key>
<false/>
<key>URL</key>
<string>http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPod/SBML/osx/bundles/061-4841.20080714.bgy8O/iPod1,1_1.1.5_4B1_Restore.ipsw</string>
<key>UploadDate</key>
<date>2008-07-14T21:39:28Z</date>
<key>Version</key>
<string>1.1.5</string>
</dict>
<dict>
<key>BuildID</key>
<string>4A102</string>
<key>Filesize</key>
<integer>173519589</integer>
<key>Identifier</key>
<string>iPod1,1</string>
<key>MD5sum</key>
<string>0ed3435b4ead9aa5606ca0af66eedd90</string>
<key>ReleaseDate</key>
<string>null</string>
<key>SHA1sum</key>
<string>c148d1eb1c979bb6434175411d4a372103a4fdd2</string>
<key>Signed</key>
<false/>
<key>URL</key>
<string>http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPod/SBML/osx/bundles/061-4312.20080226.Btu45/iPod1,1_1.1.4_4A102_Restore.ipsw</string>
<key>UploadDate</key>
<date>2008-02-22T23:28:42Z</date>
<key>Version</key>
<string>1.1.4</string>
</dict>
<dict>
<key>BuildID</key>
<string>4A93</string>
<key>Filesize</key>
<integer>173511411</integer>
<key>Identifier</key>
<string>iPod1,1</string>
<key>MD5sum</key>
<string>12d996c376d378c1333b0343ddad6cb0</string>
<key>ReleaseDate</key>
<string>null</string>
<key>SHA1sum</key>
<string>8dca23eec69d5ae58fbf3d4a23276e46cbb2e3c6</string>
<key>Signed</key>
<false/>
<key>URL</key>
<string>http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPod/SBML/osx/061-4060.20080115.9Iuh5/iPod1,1_1.1.3_4A93_Restore.ipsw</string>
<key>UploadDate</key>
<date>2008-01-10T04:03:18Z</date>
<key>Version</key>
<string>1.1.3</string>
</dict>
<dict>
<key>BuildID</key>
<string>3B48b</string>
<key>Filesize</key>
<integer>165567897</integer>
<key>Identifier</key>
<string>iPod1,1</string>
<key>MD5sum</key>
<string>a7469c40e204a607becabaca841b718f</string>
<key>ReleaseDate</key>
<string>null</string>
<key>SHA1sum</key>
<string>108d8ffe9ea75e61cd5e57170ad388b7fa00d923</string>
<key>Signed</key>
<false/>
<key>URL</key>
<string>http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPod/SBML/osx/bundles/061-4036.20071107.9g3DF/iPod1,1_1.1.2_3B48b_Restore.ipsw</string>
<key>UploadDate</key>
<date>2007-11-07T20:25:19Z</date>
<key>Version</key>
<string>1.1.2</string>
</dict>
</array>
<key>Identifier</key>
<string>iPod1,1</string>
<key>Name</key>
<string>iPod touch 1G</string>
<key>Platform</key>
<string>s5l8900x</string>
</dict>
</plist>
example5:
value: >
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>BDID</key>
<integer>16</integer>
<key>BoardConfig</key>
<string>k66ap</string>
<key>Boards</key>
<array>
<dict>
<key>BDID</key>
<integer>16</integer>
<key>BoardConfig</key>
<string>k66ap</string>
<key>CPID</key>
<integer>35120</integer>
<key>Platform</key>
<string>s5l8930x</string>
</dict>
</array>
<key>CPID</key>
<integer>35120</integer>
<key>Firmwares</key>
<array>
<dict>
<key>BuildID</key>
<string>11D258</string>
<key>Filesize</key>
<integer>698547170</integer>
<key>Identifier</key>
<string>AppleTV2,1</string>
<key>MD5sum</key>
<string>6677e7611ebed25d8dc33d2401b75de2</string>
<key>ReleaseDate</key>
<string>2014-09-17T17:59:02Z</string>
<key>SHA1sum</key>
<string>4724347f2700dfe82fb864ecc8cdf66ea33262b1</string>
<key>Signed</key>
<true/>
<key>URL</key>
<string>http://appldnld.apple.com/iOS8/031-07202.20140917.tF6Fs/AppleTV2,1_6.2.1_11D258_Restore.ipsw</string>
<key>UploadDate</key>
<date>2014-09-03T17:55:56Z</date>
<key>Version</key>
<string>7.1.2</string>
</dict>
<dict>
<key>BuildID</key>
<string>11D257c</string>
<key>Filesize</key>
<integer>698406382</integer>
<key>Identifier</key>
<string>AppleTV2,1</string>
<key>MD5sum</key>
<string>2b5ad301db18658c06ba12841c250f4d</string>
<key>ReleaseDate</key>
<string>2014-06-30T18:28:53Z</string>
<key>SHA1sum</key>
<string>a772321de7a4e4b5fa710ec3660d4a640c04ead8</string>
<key>Signed</key>
<false/>
<key>URL</key>
<string>http://appldnld.apple.com/iOS7.1/031-04317.20140630.2qAFy/AppleTV2,1_6.2_11D257c_Restore.ipsw</string>
<key>UploadDate</key>
<date>2014-06-27T22:43:09Z</date>
<key>Version</key>
<string>7.1.2</string>
</dict>
<dict>
<key>BuildID</key>
<string>11D201c</string>
<key>Filesize</key>
<integer>698303443</integer>
<key>Identifier</key>
<string>AppleTV2,1</string>
<key>MD5sum</key>
<string>1b8d3e39e1523aeee697c0be90236e9f</string>
<key>ReleaseDate</key>