-
Notifications
You must be signed in to change notification settings - Fork 5
/
heidelberg_catechism.json
2480 lines (2480 loc) · 133 KB
/
heidelberg_catechism.json
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
{
"Metadata": {
"Title": "Heidelberg Catechism",
"AlternativeTitles": [
"Catechism, or Christian Instruction, according to the Usages of the Churches and Schools of the Electoral Palatinate"
],
"Year": "1563",
"Authors": [
"Zacharias Ursinus"
],
"Location": "Heidelberg, Germany",
"OriginalLanguage": "German",
"OriginStory": "",
"SourceUrl": "http://apostles-creed.org/wp-content/uploads/2014/07/Heidelberg-Catechism-with-Intro.pdf",
"SourceAttribution": "Public Domain",
"CreedFormat": "Catechism"
},
"Data": [
{
"Number": 1,
"Question": "What is your only comfort in life and death?",
"Answer": "That I am not my own, but belong with body and soul, both in life and in death, to my faithful Saviour Jesus Christ. He has fully paid for all my sins with His precious blood, and has set me free from all the power of the devil. He also preserves me in such a way that without the will of my heavenly Father not a hair can fall from my head; indeed, all things must work together for my salvation. Therefore, by His Holy Spirit He also assures me of eternal life and makes me heartily willing and ready from now on to live for Him.",
"AnswerWithProofs": "That I am not my own,[1] but belong with body and soul, both in life and in death,[2] to my faithful Saviour Jesus Christ.[3] He has fully paid for all my sins with His precious blood,[4] and has set me free from all the power of the devil.[5] He also preserves me in such a way[6] that without the will of my heavenly Father not a hair can fall from my head;[7] indeed, all things must work together for my salvation.[8] Therefore, by His Holy Spirit He also assures me of eternal life[9] and makes me heartily willing and ready from now on to live for Him.[10]",
"Proofs": [
{
"Id": 1,
"References": ["1Cor.6.19,1Cor.6.2"]
},
{
"Id": 2,
"References": ["Rom.14.7-Rom.14.9"]
},
{
"Id": 3,
"References": ["1Cor.3.23", "Titus.2.14"]
},
{
"Id": 4,
"References": ["1Pet.1.18-1Pet.1.19", "1John.1.7", "1John.2.2"]
},
{
"Id": 5,
"References": ["John.8.34-John.8.36", "Heb.2.14-Heb.2.15", "1John.3.8"]
},
{
"Id": 6,
"References": ["John.6.39-John.6.40", "John.10.27-John.10.30", "2Thess.3.3", "1Pet.1.5"]
},
{
"Id": 7,
"References": ["Matt.10.29-Matt.10.31", "Luke.21.16-Luke.21.18"]
},
{
"Id": 8,
"References": ["Rom.8.28"]
},
{
"Id": 9,
"References": ["Rom.8.15-Rom.8.16", "2Cor.1.21-2Cor.1.22", "2Cor.5.5", "Eph.1.13-Eph.1.14"]
},
{
"Id": 10,
"References": ["Rom.8.14"]
}
]
},
{
"Number": 2,
"Question": "What do you need to know in order to live and die in the joy of this comfort?",
"Answer": "First, how great my sins and misery are; second, how I am delivered from all my sins and misery; third, how I am to be thankful to God for such deliverance.",
"AnswerWithProofs": "First, how great my sins and misery are;[1] second, how I am delivered from all my sins and misery;[2] third, how I am to be thankful to God for such deliverance.[3]",
"Proofs": [
{
"Id": 1,
"References": ["Rom.3.9-Rom.3.10", "1John.1.10"]
},
{
"Id": 2,
"References": ["John.17.3", "Acts.4.12", "Acts.10.43"]
},
{
"Id": 3,
"References": ["Matt.5.16", "Rom.6.13", "Eph.5.8-Eph.5.10", "1Pet.2.9-1Pet.2.10"]
}
]
},
{
"Number": 3,
"Question": "From where do you know your sins and misery?",
"Answer": "From the law of God.",
"AnswerWithProofs": "From the law of God.[1]",
"Proofs": [
{
"Id": 1,
"References": ["Rom.3.20"]
}
]
},
{
"Number": 4,
"Question": "What does God's law require of us?",
"Answer": "Christ teaches us this in a summary in Matthew 22: You shall love the LORD your God with all your heart, and with all your soul, and with all your mind. This is the great and first commandment. And a second is like it, You shall love your neighbour as yourself. On these two commandments depend all the law and the prophets.",
"AnswerWithProofs": "Christ teaches us this in a summary in Matthew 22: You shall love the LORD your God with all your heart, and with all your soul, and with all your mind.[1] This is the great and first commandment. And a second is like it, You shall love your neighbour as yourself. On these two commandments depend all the law and the prophets.[2]",
"Proofs": [
{
"Id": 1,
"References": ["Deut.6.5"]
},
{
"Id": 2,
"References": ["Lev.19.18"]
}
]
},
{
"Number": 5,
"Question": "Can you keep all this perfectly?",
"Answer": "No, I am inclined by nature to hate God and my neighbour.",
"AnswerWithProofs": "No,[1] I am inclined by nature to hate God and my neighbour.[2]",
"Proofs": [
{
"Id": 1,
"References": ["Rom.3.10,Rom.3.23", "1John.1.8,1John.1.10"]
},
{
"Id": 2,
"References": ["Gen.6.5", "Gen.8.21", "Jer.17.9", "Rom.7.23", "Rom.8.7", "Eph.2.3", "Titus.3.3"]
}
]
},
{
"Number": 6,
"Question": "Did God, then, create man so wicked and perverse?",
"Answer": "No, on the contrary, God created man good and in His image, that is, in true righteousness and holiness, so that he might rightly know God His Creator, heartily love Him, and live with Him in eternal blessedness to praise and glorify Him.",
"AnswerWithProofs": "No, on the contrary, God created man good[1] and in His image,[2] that is, in true righteousness and holiness,[3] so that he might rightly know God His Creator,[4] heartily love Him, and live with Him in eternal blessedness to praise and glorify Him.[5]",
"Proofs": [
{
"Id": 1,
"References": ["Gen.1.31"]
},
{
"Id": 2,
"References": ["Gen.1.26-Gen.1.27"]
},
{
"Id": 3,
"References": ["Eph.4.24"]
},
{
"Id": 4,
"References": ["Col.3.10"]
},
{
"Id": 5,
"References": ["Ps.8"]
}
]
},
{
"Number": 7,
"Question": "From where, then, did man's depraved nature come?",
"Answer": "From the fall and disobedience of our first parents, Adam and Eve, in Paradise, for there our nature became so corrupt that we are all conceived and born in sin.",
"AnswerWithProofs": "From the fall and disobedience of our first parents, Adam and Eve, in Paradise,[1] for there our nature became so corrupt[2] that we are all conceived and born in sin.[3]",
"Proofs": [
{
"Id": 1,
"References": ["Gen.3"]
},
{
"Id": 2,
"References": ["Rom.5.12,Rom.5.18-Rom.5.19"]
},
{
"Id": 3,
"References": ["Ps.51.5"]
}
]
},
{
"Number": 8,
"Question": "But are we so corrupt that we are totally unable to do any good and inclined to all evil?",
"Answer": "Yes, unless we are regenerated by the Spirit of God.",
"AnswerWithProofs": "Yes,[1] unless we are regenerated by the Spirit of God.[2]",
"Proofs": [
{
"Id": 1,
"References": ["Gen.6.5", "Gen.8.21", "Job.14.4", "Isa.53.6"]
},
{
"Id": 2,
"References": ["John.3.3-John.3.5"]
}
]
},
{
"Number": 9,
"Question": "Is God, then, not unjust by requiring in His law what man cannot do?",
"Answer": "No, for God so created man that he was able to do it. But man, at the instigation of the devil, in deliberate disobedience robbed himself and all his descendants of these gifts.",
"AnswerWithProofs": "No, for God so created man that he was able to do it.[1] But man, at the instigation of the devil,[2] in deliberate disobedience[3] robbed himself and all his descendants of these gifts.[4]",
"Proofs": [
{
"Id": 1,
"References": ["Gen.1.31"]
},
{
"Id": 2,
"References": ["Gen.3.13", "John.8.44", "1Tim.2.13-1Tim.2.14"]
},
{
"Id": 3,
"References": ["Gen.3.6"]
},
{
"Id": 4,
"References": ["Rom.5.12,Rom.5.18-Rom.5.19"]
}
]
},
{
"Number": 10,
"Question": "Will God allow such disobedience and apostasy to go unpunished?",
"Answer": "Certainly not. He is terribly displeased with our original sin as well as our actual sins. Therefore He will punish them by a just judgment both now and eternally, as He has declared: Cursed be every one who does not abide by all things written in the book of the law, and do them (Galatians 3:10).",
"AnswerWithProofs": "Certainly not. He is terribly displeased with our original sin as well as our actual sins. Therefore He will punish them by a just judgment both now and eternally,[1] as He has declared:[2] Cursed be every one who does not abide by all things written in the book of the law, and do them (Galatians 3:10).",
"Proofs": [
{
"Id": 1,
"References": ["Exod.34.7", "Ps.5.4-Ps.5.6", "Ps.7.10", "Nah.1.2", "Rom.1.18", "Rom.5.12", "Eph.5.6", "Heb.9.27"]
},
{
"Id": 2,
"References": ["Deut.27.26"]
}
]
},
{
"Number": 11,
"Question": "But is God not also merciful?",
"Answer": "God is indeed merciful, but He is also just. His justice requires that sin committed against the most high majesty of God also be punished with the most severe, that is, with everlasting, punishment of body and soul.",
"AnswerWithProofs": "God is indeed merciful,[1] but He is also just.[2] His justice requires that sin committed against the most high majesty of God also be punished with the most severe, that is, with everlasting, punishment of body and soul.[3]",
"Proofs": [
{
"Id": 1,
"References": ["Exod.20.6", "Exod.34.6-Exod.34.7", "Ps.103.8-Ps.103.9"]
},
{
"Id": 2,
"References": ["Exod.20.5", "Exod.34.7", "Deut.7.9-Deut.7.11", "Ps.5.4-Ps.5.6", "Heb.10.30-Heb.10.31"]
},
{
"Id": 3,
"References": ["Matt.25.45-Matt.25.46"]
}
]
},
{
"Number": 12,
"Question": "Since, according to God's righteous judgment we deserve temporal and eternal punishment, how can we escape this punishment and be again received into favour?",
"Answer": "God demands that His justice be satisfied. Therefore full payment must be made either by ourselves or by another.",
"AnswerWithProofs": "God demands that His justice be satisfied.[1] Therefore full payment must be made either by ourselves or by another.[2]",
"Proofs": [
{
"Id": 1,
"References": ["Exod.20.5", "Exod.23.7", "Rom.2.1-Rom.2.11"]
},
{
"Id": 2,
"References": ["Isa.53.11", "Rom.8.3-Rom.8.4"]
}
]
},
{
"Number": 13,
"Question": "Can we ourselves make this payment?",
"Answer": "Certainly not. On the contrary, we daily increase our debt.",
"AnswerWithProofs": "Certainly not. On the contrary, we daily increase our debt.[1]",
"Proofs": [
{
"Id": 1,
"References": ["Ps.130.3", "Matt.6.12", "Rom.2.4-Rom.2.5"]
}
]
},
{
"Number": 14,
"Question": "Can any mere creature pay for us?",
"Answer": "No. In the first place, God will not punish another creature for the sin which man has committed. Furthermore, no mere creature can sustain the burden of God's eternal wrath against sin and deliver others from it.",
"AnswerWithProofs": "No. In the first place, God will not punish another creature for the sin which man has committed.[1] Furthermore, no mere creature can sustain the burden of God's eternal wrath against sin and deliver others from it.[2]",
"Proofs": [
{
"Id": 1,
"References": ["Ezek.18.4,Ezek.18.20", "Heb.2.14-Heb.2.18"]
},
{
"Id": 2,
"References": ["Ps.130.3", "Nah.1.6"]
}
]
},
{
"Number": 15,
"Question": "What kind of mediator and deliverer must we seek?",
"Answer": "One who is a true and righteous man, and yet more powerful than all creatures; that is, one who is at the same time true God.",
"AnswerWithProofs": "One who is a true[1] and righteous[2] man, and yet more powerful than all creatures; that is, one who is at the same time true God.[3]",
"Proofs": [
{
"Id": 1,
"References": ["1Cor.15.21", "Heb.2.17"]
},
{
"Id": 2,
"References": ["Isa.53.9", "2Cor.5.21", "Heb.7.26"]
},
{
"Id": 3,
"References": ["Isa.7.14", "Isa.9.6", "Jer.23.6", "John.1.1", "Rom.8.3-Rom.8.4"]
}
]
},
{
"Number": 16,
"Question": "Why must He be a true and righteous man?",
"Answer": "He must be a true man because the justice of God requires that the same human nature which has sinned should pay for sin. He must be a righteous man because one who himself is a sinner cannot pay for others.",
"AnswerWithProofs": "He must be a true man because the justice of God requires that the same human nature which has sinned should pay for sin.[1] He must be a righteous man because one who himself is a sinner cannot pay for others.[2]",
"Proofs": [
{
"Id": 1,
"References": ["Rom.5.12,Rom.5.15", "1Cor.15.21", "Heb.2.14-Heb.2.16"]
},
{
"Id": 2,
"References": ["Heb.7.26-Heb.7.27", "1Pet.3.18"]
}
]
},
{
"Number": 17,
"Question": "Why must He at the same time be true God?",
"Answer": "He must be true God so that by the power of His divine nature He might bear in His human nature the burden of God's wrath, and might obtain for us and restore to us righteousness and life.",
"AnswerWithProofs": "He must be true God so that by the power of His divine nature[1] He might bear in His human nature the burden of God's wrath,[2] and might obtain for us and restore to us righteousness and life.[3]",
"Proofs": [
{
"Id": 1,
"References": ["Isa.9.5"]
},
{
"Id": 2,
"References": ["Deut.4.24", "Nah.1.6", "Ps.130.3"]
},
{
"Id": 3,
"References": ["Isa.53.5,Isa.53.11", "John.3.16", "2Cor.5.21"]
}
]
},
{
"Number": 18,
"Question": "But who is that Mediator who at the same time is true God and a true and righteous man?",
"Answer": "Our Lord Jesus Christ, whom God made our wisdom, our righteousness and sanctification and redemption (I Corinthians 1:30).",
"AnswerWithProofs": "Our Lord Jesus Christ,[1] whom God made our wisdom, our righteousness and sanctification and redemption (I Corinthians 1:30).",
"Proofs": [
{
"Id": 1,
"References": ["Matt.1.21-Matt.1.23", "Luke.2.11", "1Tim.2.5", "1Tim.3.16"]
}
]
},
{
"Number": 19,
"Question": "From where do you know this?",
"Answer": "From the holy gospel, which God Himself first revealed in Paradise. Later, He had it proclaimed by the patriarchs and prophets, and foreshadowed by the sacrifices and other ceremonies of the law. Finally, He had it fulfilled through His only Son.",
"AnswerWithProofs": "From the holy gospel, which God Himself first revealed in Paradise.[1] Later, He had it proclaimed by the patriarchs[2] and prophets,[3] and foreshadowed by the sacrifices and other ceremonies of the law.[4] Finally, He had it fulfilled through His only Son.[5]",
"Proofs": [
{
"Id": 1,
"References": ["Gen.3.15"]
},
{
"Id": 2,
"References": ["Gen.12.3", "Gen.22.18", "Gen.49.10"]
},
{
"Id": 3,
"References": ["Isa.53", "Jer.23.5-Jer.23.6", "Mic.7.18-Mic.7.20", "Acts.10.43", "Heb.1.1"]
},
{
"Id": 4,
"References": ["Lev.1.7", "John.5.46", "Heb.10.1-Heb.10.10"]
},
{
"Id": 5,
"References": ["Rom.10.4", "Gal.4.4-Gal.4.5", "Col.2.17"]
}
]
},
{
"Number": 20,
"Question": "Are all men, then, saved by Christ just as they perished through Adam?",
"Answer": "No. Only those are saved who by a true faith are grafted into Christ and accept all His benefits.",
"AnswerWithProofs": "No. Only those are saved who by a true faith are grafted into Christ and accept all His benefits.[1]",
"Proofs": [
{
"Id": 1,
"References": ["Matt.7.14", "John.1.12", "John.3.16,John.3.18,John.3.36", "Rom.11.16-Rom.11.21"]
}
]
},
{
"Number": 21,
"Question": "What is true faith?",
"Answer": "True faith is a sure knowledge whereby I accept as true all that God has revealed to us in His Word. At the same time it is a firm confidence that not only to others, but also to me, God has granted forgiveness of sins, everlasting righteousness, and salvation, out of mere grace, only for the sake of Christ's merits. This faith the Holy Spirit works in my heart by the gospel.",
"AnswerWithProofs": "True faith is a sure knowledge whereby I accept as true all that God has revealed to us in His Word.[1] At the same time it is a firm confidence[2] that not only to others, but also to me,[3] God has granted forgiveness of sins, everlasting righteousness, and salvation,[4] out of mere grace, only for the sake of Christ's merits.[5] This faith the Holy Spirit works in my heart by the gospel.[6]",
"Proofs": [
{
"Id": 1,
"References": ["John.17.3,John.17.17", "Heb.11.1-Heb.11.3", "Jas.2.19"]
},
{
"Id": 2,
"References": ["Rom.4.18-Rom.4.21", "Rom.5.1", "Rom.10.10", "Heb.4.16"]
},
{
"Id": 3,
"References": ["Gal.2.20"]
},
{
"Id": 4,
"References": ["Rom.1.17", "Heb.10.10"]
},
{
"Id": 5,
"References": ["Rom.3.20-Rom.3.26", "Gal.2.16", "Eph.2.8-Eph.2.10"]
},
{
"Id": 6,
"References": ["Acts.16.14", "Rom.1.16", "Rom.10.17", "1Cor.1.21"]
}
]
},
{
"Number": 22,
"Question": "What, then, must a Christian believe?",
"Answer": "All that is promised us in the Gospel, which the articles of our catholic and undoubted Christian faith teach us in a summary.",
"AnswerWithProofs": "All that is promised us in the Gospel,[1] which the articles of our catholic and undoubted Christian faith teach us in a summary.",
"Proofs": [
{
"Id": 1,
"References": ["Matt.28.19", "John.20.30-John.20.31"]
}
]
},
{
"Number": 23,
"Question": "What are these articles?",
"Answer": "III.1.I believe in God the Father almighty, III.1. Creator of heaven and earth. III.2.I believe in Jesus Christ, III.2.His only begotten Son, our Lord; III.3.He was conceived by the Holy Spirit, III.3.born of the virgin Mary; III.4.suffered under Pontius Pilate, III.4.was crucified, dead, and buried; III.4.He descended into hell; III.5.On the third day He arose from the dead; III.6.He ascended into heaven, III.6.and sits at the right hand III.6.of God the Father almighty; III.7.from there He will come to judge III.7.the living and the dead. III.8.I believe in the Holy Spirit; III.9.I believe a holy catholic Christian church, III.9.the communion of saints; III.10.the forgiveness of sins; III.11.the resurrection of the body; III.12.and the life everlasting.",
"AnswerWithProofs": "III.1.I believe in God the Father almighty, III.1. Creator of heaven and earth. III.2.I believe in Jesus Christ, III.2.His only begotten Son, our Lord; III.3.He was conceived by the Holy Spirit, III.3.born of the virgin Mary; III.4.suffered under Pontius Pilate, III.4.was crucified, dead, and buried; III.4.He descended into hell; III.5.On the third day He arose from the dead; III.6.He ascended into heaven, III.6.and sits at the right hand III.6.of God the Father almighty; III.7.from there He will come to judge III.7.the living and the dead. III.8.I believe in the Holy Spirit; III.9.I believe a holy catholic Christian church, III.9.the communion of saints; III.10.the forgiveness of sins; III.11.the resurrection of the body; III.12.and the life everlasting.",
"Proofs": []
},
{
"Number": 24,
"Question": "How are these articles divided?",
"Answer": "Into three parts: the first is about God the Father and our creation; the second about God the Son and our redemption; the third about God the Holy Spirit and our sanctification.",
"AnswerWithProofs": "Into three parts: the first is about God the Father and our creation; the second about God the Son and our redemption; the third about God the Holy Spirit and our sanctification.",
"Proofs": []
},
{
"Number": 25,
"Question": "Since there is only one God, why do you speak of three persons, Father, Son, and Holy Spirit?",
"QuestionWithProofs": "Since there is only one God,[1] why do you speak of three persons, Father, Son, and Holy Spirit?",
"Answer": "Because God has so revealed Himself in His Word that these three distinct persons are the one, true, eternal God.",
"AnswerWithProofs": "Because God has so revealed Himself in His Word[2] that these three distinct persons are the one, true, eternal God.",
"Proofs": [
{
"Id": 1,
"References": ["Deut.6.4", "Isa.44.6", "Isa.45.5", "1Cor.8.4,1Cor.8.6"]
},
{
"Id": 2,
"References": ["Gen.1.2-Gen.1.3", "Isa.61.1", "Isa.63.8-Isa.63.10", "Matt.3.16-Matt.3.17", "Matt.28.18-Matt.28.19", "Luke.4.18", "John.14.26", "John.15.26", "2Cor.13.14", "Gal.4.6", "Titus.3.5-Titus.3.6"]
}
]
},
{
"Number": 26,
"Question": "What do you believe when you say: I believe in God the Father almighty, Creator of heaven and earth?",
"Answer": "That the eternal Father of our Lord Jesus Christ, who out of nothing created heaven and earth and all that is in them, and who still upholds and governs them by His eternal counsel and providence, is, for the sake of Christ His Son, my God and my Father. In Him I trust so completely as to have no doubt that He will provide me with all things necessary for body and soul, and will also turn to my good whatever adversity He sends me in this life of sorrow. He is able to do so as almighty God, and willing also as a faithful Father.",
"AnswerWithProofs": "That the eternal Father of our Lord Jesus Christ, who out of nothing created heaven and earth and all that is in them,[1] and who still upholds and governs them by His eternal counsel and providence,[2] is, for the sake of Christ His Son, my God and my Father.[3] In Him I trust so completely as to have no doubt that He will provide me with all things necessary for body and soul,[4] and will also turn to my good whatever adversity He sends me in this life of sorrow.[5] He is able to do so as almighty God,[6] and willing also as a faithful Father.[7]",
"Proofs": [
{
"Id": 1,
"References": ["Gen.1-Gen.2", "Exod.20.11", "Job.38-Job.39", "Ps.33.6", "Isa.44.24", "Acts.4.24", "Acts.14.15"]
},
{
"Id": 2,
"References": ["Ps.104.27-Ps.104.30", "Matt.6.30", "Matt.10.29", "Eph.1.11"]
},
{
"Id": 3,
"References": ["John.1.12-John.1.13", "Rom.8.15-Rom.8.16", "Gal.4.4-Gal.4.7", "Eph.1.5"]
},
{
"Id": 4,
"References": ["Ps.55.22", "Matt.6.25-Matt.6.26", "Luke.12.22-Luke.12.31"]
},
{
"Id": 5,
"References": ["Rom.8.28"]
},
{
"Id": 6,
"References": ["Gen.18.14", "Rom.8.31-Rom.8.39"]
},
{
"Id": 7,
"References": ["Matt.6.32-Matt.6.33", "Matt.7.9-Matt.7.11"]
}
]
},
{
"Number": 27,
"Question": "What do you understand by the providence of God?",
"Answer": "God's providence is His almighty and ever present power, whereby, as with His hand, He still upholds heaven and earth and all creatures, and so governs them that leaf and blade, rain and drought, fruitful and barren years, food and drink, health and sickness, riches and poverty, indeed, all things, come not by chance but by His fatherly hand.",
"AnswerWithProofs": "God's providence is His almighty and ever present power,[1] whereby, as with His hand, He still upholds heaven and earth and all creatures,[2] and so governs them that leaf and blade, rain and drought, fruitful and barren years, food and drink, health and sickness, riches and poverty,[3] indeed, all things, come not by chance[4] but by His fatherly hand.[5]",
"Proofs": [
{
"Id": 1,
"References": ["Jer.23.23-Jer.23.24", "Acts.17.24-Acts.17.28"]
},
{
"Id": 2,
"References": ["Heb.1.3"]
},
{
"Id": 3,
"References": ["Jer.5.24", "Acts.14.15-Acts.14.17", "John.9.3", "Prov.22.2"]
},
{
"Id": 4,
"References": ["Prov.16.33"]
},
{
"Id": 5,
"References": ["Matt.10.29"]
}
]
},
{
"Number": 28,
"Question": "What does it benefit us to know that God has created all things and still upholds them by His providence?",
"Answer": "We can be patient in adversity, thankful in prosperity, and with a view to the future we can have a firm confidence in our faithful God and Father that no creature shall separate us from His love; for all creatures are so completely in His hand that without His will they cannot so much as move.",
"AnswerWithProofs": "We can be patient in adversity,[1] thankful in prosperity,[2] and with a view to the future we can have a firm confidence in our faithful God and Father that no creature shall separate us from His love;[3] for all creatures are so completely in His hand that without His will they cannot so much as move.[4]",
"Proofs": [
{
"Id": 1,
"References": ["Job.1.21-Job.1.22", "Ps.39.10", "Jas.1.3"]
},
{
"Id": 2,
"References": ["Deut.8.10", "1Thess.5.18"]
},
{
"Id": 3,
"References": ["Ps.55.22", "Rom.5.3-Rom.5.5", "Rom.8.38-Rom.8.39"]
},
{
"Id": 4,
"References": ["Job.1.12", "Job.2.6", "Prov.21.1", "Acts.17.24-Acts.17.28"]
}
]
},
{
"Number": 29,
"Question": "Why is the Son of God called Jesus, that is, Saviour?",
"Answer": "Because He saves us from all our sins, and because salvation is not to be sought or found in anyone else.",
"AnswerWithProofs": "Because He saves us from all our sins,[1] and because salvation is not to be sought or found in anyone else.[2]",
"Proofs": [
{
"Id": 1,
"References": ["Matt.1.21", "Heb.7.25"]
},
{
"Id": 2,
"References": ["Isa.43.11", "John.15.4-John.15.5", "Acts.4.11-Acts.4.12", "1Tim.2.5"]
}
]
},
{
"Number": 30,
"Question": "Do those believe in the only Saviour Jesus who seek their salvation and well-being from saints, in themselves, or anywhere else?",
"Answer": "No. Though they boast of Him in words, they in fact deny the only Saviour Jesus. For one of two things must be true: either Jesus is not a complete Saviour, or those who by true faith accept this Saviour must find in Him all that is necessary for their salvation.",
"AnswerWithProofs": "No. Though they boast of Him in words, they in fact deny the only Saviour Jesus.[1] For one of two things must be true: either Jesus is not a complete Saviour, or those who by true faith accept this Saviour must find in Him all that is necessary for their salvation.[2]",
"Proofs": [
{
"Id": 1,
"References": ["1Cor.1.12-1Cor.1.13", "Gal.5.4"]
},
{
"Id": 2,
"References": ["Col.1.19-Col.1.20", "Col.2.10", "1John.1.7"]
}
]
},
{
"Number": 31,
"Question": "Why is He called Christ, that is, Anointed?",
"Answer": "Because He has been ordained by God the Father, and anointed with the Holy Spirit, to be our chief Prophet and Teacher, who has fully revealed to us the secret counsel and will of God concerning our redemption; our only High Priest, who by the one sacrifice of His body has redeemed us, and who continually intercedes for us before the Father; and our eternal King, who governs us by His Word and Spirit, and who defends and preserves us in the redemption obtained for us.",
"AnswerWithProofs": "Because He has been ordained by God the Father, and anointed with the Holy Spirit,[1] to be our chief Prophet and Teacher,[2] who has fully revealed to us the secret counsel and will of God concerning our redemption;[3] our only High Priest,[4] who by the one sacrifice of His body has redeemed us,[5] and who continually intercedes for us before the Father;[6] and our eternal King,[7] who governs us by His Word and Spirit, and who defends and preserves us in the redemption obtained for us.[8]",
"Proofs": [
{
"Id": 1,
"References": ["Ps.45.7", "Heb.1.9", "Isa.61.1", "Luke.4.18", "Luke.3.21-Luke.3.22"]
},
{
"Id": 2,
"References": ["Deut.18.15", "Acts.3.22"]
},
{
"Id": 3,
"References": ["John.1.18", "John.15.15"]
},
{
"Id": 4,
"References": ["Ps.110.4", "Heb.7.17"]
},
{
"Id": 5,
"References": ["Heb.9.12", "Heb.10.11-Heb.10.14"]
},
{
"Id": 6,
"References": ["Rom.8.34", "Heb.9.24", "1John.2.1"]
},
{
"Id": 7,
"References": ["Zech.9.9", "Matt.21.5", "Luke.1.33"]
},
{
"Id": 8,
"References": ["Matt.28.18-Matt.28.20", "John.10.28", "Rev.12.10-Rev.12.11"]
}
]
},
{
"Number": 32,
"Question": "Why are you called a Christian?",
"Answer": "Because I am a member of Christ by faith and thus share in His anointing, so that I may as prophet confess His Name, as priest present myself a living sacrifice of thankfulness to Him, and as king fight with a free and good conscience against sin and the devil in this life, and hereafter reign with Him eternally over all creatures.",
"AnswerWithProofs": "Because I am a member of Christ by faith[1] and thus share in His anointing,[2] so that I may as prophet confess His Name,[3] as priest present myself a living sacrifice of thankfulness to Him,[4] and as king fight with a free and good conscience against sin and the devil in this life,[5] and hereafter reign with Him eternally over all creatures.[6]",
"Proofs": [
{
"Id": 1,
"References": ["1Cor.12.12-1Cor.12.27"]
},
{
"Id": 2,
"References": ["Joel.2.28", "Acts.2.17", "1John.2.27"]
},
{
"Id": 3,
"References": ["Matt.10.32", "Rom.10.9-Rom.10.10", "Heb.13.15"]
},
{
"Id": 4,
"References": ["Rom.12.1", "1Pet.2.5,1Pet.2.9"]
},
{
"Id": 5,
"References": ["Gal.5.16-Gal.5.17", "Eph.6.11", "1Tim.1.18-1Tim.1.19"]
},
{
"Id": 6,
"References": ["Matt.25.34", "2Tim.2.12"]
}
]
},
{
"Number": 33,
"Question": "Why is He called God's only begotten Son, since we also are children of God?",
"Answer": "Because Christ alone is the eternal, natural Son of God. We, however, are children of God by adoption, through grace, for Christ's sake.",
"AnswerWithProofs": "Because Christ alone is the eternal, natural Son of God.[1] We, however, are children of God by adoption, through grace, for Christ's sake.[2]",
"Proofs": [
{
"Id": 1,
"References": ["John.1.1-John.1.3,John.1.14,John.1.18", "John.3.16", "Rom.8.32", "Heb.1", "1John.4.9"]
},
{
"Id": 2,
"References": ["John.1.12", "Rom.8.14-Rom.8.17", "Gal.4.6", "Eph.1.5-Eph.1.6"]
}
]
},
{
"Number": 34,
"Question": "Why do you call Him our Lord?",
"Answer": "Because He has ransomed us, body and soul, from all our sins, not with silver or gold but with His precious blood, and has freed us from all the power of the devil to make us His own possession.",
"AnswerWithProofs": "Because He has ransomed us, body and soul,[1] from all our sins, not with silver or gold but with His precious blood,[2] and has freed us from all the power of the devil to make us His own possession.[3]",
"Proofs": [
{
"Id": 1,
"References": ["1Cor.6.20", "1Tim.2.5-1Tim.2.6"]
},
{
"Id": 2,
"References": ["1Pet.1.18-1Pet.1.19"]
},
{
"Id": 3,
"References": ["Col.1.13-Col.1.14", "Heb.2.14-Heb.2.15"]
}
]
},
{
"Number": 35,
"Question": "What do you confess when you say: He was conceived by the Holy Spirit, born of the virgin Mary?",
"Answer": "The eternal Son of God, who is and remains true and eternal God, took upon Himself true human nature from the flesh and blood of the virgin Mary, through the working of the Holy Spirit. Thus He is also the true seed of David, and like His brothers in every respect, yet without sin.",
"AnswerWithProofs": "The eternal Son of God, who is and remains true and eternal God,[1] took upon Himself true human nature from the flesh and blood of the virgin Mary,[2] through the working of the Holy Spirit.[3] Thus He is also the true seed of David,[4] and like His brothers in every respect,[5] yet without sin.[6]",
"Proofs": [
{
"Id": 1,
"References": ["John.1.1", "John.10.30-John.10.36", "Rom.1.3", "Rom.9.5", "Col.1.15-Col.1.17", "1John.5.20"]
},
{
"Id": 2,
"References": ["Matt.1.18-Matt.1.23", "John.1.14", "Gal.4.4", "Heb.2.14"]
},
{
"Id": 3,
"References": ["Luke.1.35"]
},
{
"Id": 4,
"References": ["2Sam.7.12-2Sam.7.16", "Ps.132.11", "Matt.1.1", "Luke.1.32", "Rom.1.3"]
},
{
"Id": 5,
"References": ["Phil.2.7", "Heb.2.17"]
},
{
"Id": 6,
"References": ["Heb.4.15", "Heb.7.26-Heb.7.27"]
}
]
},
{
"Number": 36,
"Question": "What benefit do you receive from the holy conception and birth of Christ?",
"Answer": "He is our Mediator, and with His innocence and perfect holiness covers, in the sight of God, my sin, in which I was conceived and born.",
"AnswerWithProofs": "He is our Mediator,[1] and with His innocence and perfect holiness covers, in the sight of God, my sin, in which I was conceived and born.[2]",
"Proofs": [
{
"Id": 1,
"References": ["1Tim.2.5-1Tim.2.6", "Heb.9.13-Heb.9.15"]
},
{
"Id": 2,
"References": ["Rom.8.3-Rom.8.4", "2Cor.5.21", "Gal.4.4-Gal.4.5", "1Pet.1.18-1Pet.1.19"]
}
]
},
{
"Number": 37,
"Question": "What do you confess when you say that He suffered?",
"Answer": "During all the time He lived on earth, but especially at the end, Christ bore in body and soul the wrath of God against the sin of the whole human race. Thus, by His suffering, as the only atoning sacrifice, He has redeemed our body and soul from everlasting damnation, and obtained for us the grace of God, righteousness, and eternal life.",
"AnswerWithProofs": "During all the time He lived on earth, but especially at the end, Christ bore in body and soul the wrath of God against the sin of the whole human race.[1] Thus, by His suffering, as the only atoning sacrifice,[2] He has redeemed our body and soul from everlasting damnation,[3] and obtained for us the grace of God, righteousness, and eternal life.[4]",
"Proofs": [
{
"Id": 1,
"References": ["Isa.53", "1Tim.2.6", "1Pet.2.24", "1Pet.3.18"]
},
{
"Id": 2,
"References": ["Rom.3.25", "1Cor.5.7", "Eph.5.2", "Heb.10.14", "1John.2.2", "1John.4.10"]
},
{
"Id": 3,
"References": ["Rom.8.1-Rom.8.4", "Gal.3.13", "Col.1.13", "Heb.9.12", "1Pet.1.18-1Pet.1.19"]
},
{
"Id": 4,
"References": ["John.3.16", "Rom.3.24-Rom.3.26", "2Cor.5.21", "Heb.9.15"]
}
]
},
{
"Number": 38,
"Question": "Why did He suffer under Pontius Pilate as judge?",
"Answer": "Though innocent, Christ was condemned by an earthly judge, and so He freed us from the severe judgment of God that was to fall on us.",
"AnswerWithProofs": "Though innocent, Christ was condemned by an earthly judge,[1] and so He freed us from the severe judgment of God that was to fall on us.[2]",
"Proofs": [
{
"Id": 1,
"References": ["Luke.23.13-Luke.23.24", "John.19.4,John.19.12-John.19.16"]
},
{
"Id": 2,
"References": ["Isa.53.4-Isa.53.5", "2Cor.5.21", "Gal.3.13"]
}
]
},
{
"Number": 39,
"Question": "Does it have a special meaning that Christ was crucified and did not die in a different way?",
"Answer": "Yes. Thereby I am assured that He took upon Himself the curse which lay on me, for a crucified one was cursed by God.",
"AnswerWithProofs": "Yes. Thereby I am assured that He took upon Himself the curse which lay on me, for a crucified one was cursed by God.[1]",
"Proofs": [
{
"Id": 1,
"References": ["Deut.21.23", "Gal.3.13"]
}
]
},
{
"Number": 40,
"Question": "Why was it necessary for Christ to humble Himself even unto death?",
"Answer": "Because of the justice and truth of God satisfaction for our sins could be made in no other way than by the death of the Son of God.",
"AnswerWithProofs": "Because of the justice and truth of God[1] satisfaction for our sins could be made in no other way than by the death of the Son of God.[2]",
"Proofs": [
{
"Id": 1,
"References": ["Gen.2.17"]
},
{
"Id": 2,
"References": ["Rom.8.3", "Phil.2.8", "Heb.2.9,Heb.2.14-Heb.2.15"]
}
]
},
{
"Number": 41,
"Question": "Why was he buried?",
"Answer": "His burial testified that He had really died.",
"AnswerWithProofs": "His burial testified that He had really died.[1]",
"Proofs": [
{
"Id": 1,
"References": ["Isa.53.9", "John.19.38-John.19.42", "Acts.13.29", "1Cor.15.3-1Cor.15.4"]
}
]
},
{
"Number": 42,
"Question": "Since Christ has died for us, why do we still have to die?",
"Answer": "Our death is not a payment for our sins, but it puts an end to sin and is an entrance into eternal life.",
"AnswerWithProofs": "Our death is not a payment for our sins, but it puts an end to sin and is an entrance into eternal life.[1]",
"Proofs": [
{
"Id": 1,
"References": ["John.5.24", "Phil.1.21-Phil.1.23", "1Thess.5.9-1Thess.5.10"]
}
]
},
{
"Number": 43,
"Question": "What further benefit do we receive from Christ's sacrifice and death on the cross?",
"Answer": "Through Christ's death our old nature is crucified, put to death, and buried with Him, so that the evil desires of the flesh may no longer reign in us, but that we may offer ourselves to Him as a sacrifice of thankfulness.",
"AnswerWithProofs": "Through Christ's death our old nature is crucified, put to death, and buried with Him,[1] so that the evil desires of the flesh may no longer reign in us,[2] but that we may offer ourselves to Him as a sacrifice of thankfulness.[3]",
"Proofs": [
{
"Id": 1,
"References": ["Rom.6.5-Rom.6.11", "Col.2.11-Col.2.12"]
},
{
"Id": 2,
"References": ["Rom.6.12-Rom.6.14"]
},
{
"Id": 3,
"References": ["Rom.12.1", "Eph.5.1-Eph.5.2"]
}
]
},
{
"Number": 44,
"Question": "Why is there added: He descended into hell?",
"Answer": "In my greatest sorrows and temptations I may be assured and comforted that my Lord Jesus Christ, by His unspeakable anguish, pain, terror, and agony, which He endured throughout all His sufferings but especially on the cross, has delivered me from the anguish and torment of hell.",
"AnswerWithProofs": "In my greatest sorrows and temptations I may be assured and comforted that my Lord Jesus Christ, by His unspeakable anguish, pain, terror, and agony, which He endured throughout all His sufferings[1] but especially on the cross, has delivered me from the anguish and torment of hell.[2]",
"Proofs": [
{
"Id": 1,
"References": ["Ps.18.5-Ps.18.6", "Ps.116.3", "Matt.26.36-Matt.26.46", "Matt.27.45-Matt.27.46", "Heb.5.7-Heb.5.10"]
},
{
"Id": 2,
"References": ["Isa.53"]
}
]
},
{
"Number": 45,
"Question": "How does Christ's resurrection benefit us?",
"Answer": "First, by His resurrection He has overcome death, so that He could make us share in the righteousness which He had obtained for us by His death. Second, by His power we too are raised up to a new life. Third, Christ's resurrection is to us a sure pledge of our glorious resurrection.",
"AnswerWithProofs": "First, by His resurrection He has overcome death, so that He could make us share in the righteousness which He had obtained for us by His death.[1] Second, by His power we too are raised up to a new life.[2] Third, Christ's resurrection is to us a sure pledge of our glorious resurrection.[3]",
"Proofs": [
{
"Id": 1,
"References": ["Rom.4.25", "1Cor.15.16-1Cor.15.20", "1Pet.1.3-1Pet.1.5"]
},
{
"Id": 2,
"References": ["Rom.6.5-Rom.6.11", "Eph.2.4-Eph.2.6", "Col.3.1-Col.3.4"]
},
{
"Id": 3,
"References": ["Rom.8.11", "1Cor.15.12-1Cor.15.23", "Phil.3.20-Phil.3.21"]
}
]
},
{
"Number": 46,
"Question": "What do you confess when you say, He ascended into heaven?",
"Answer": "That Christ, before the eyes of His disciples, was taken up from the earth into heaven, and that He is there for our benefit until He comes again to judge the living and the dead.",
"AnswerWithProofs": "That Christ, before the eyes of His disciples, was taken up from the earth into heaven,[1] and that He is there for our benefit[2] until He comes again to judge the living and the dead.[3]",
"Proofs": [
{
"Id": 1,
"References": ["Mark.16.19", "Luke.24.50-Luke.24.51", "Acts.1.9-Acts.1.11"]
},
{
"Id": 2,
"References": ["Rom.8.34", "Heb.4.14", "Heb.7.23-Heb.7.25", "Heb.9.24"]
},
{
"Id": 3,
"References": ["Matt.24.30", "Acts.1.11"]
}
]
},
{
"Number": 47,
"Question": "Is Christ, then, not with us until the end of the world, as He has promised us?",
"QuestionWithProofs": "Is Christ, then, not with us until the end of the world, as He has promised us?[1]",
"Answer": "Christ is true man and true God. With respect to His human nature He is no longer on earth, but with respect to His divinity, majesty, grace, and Spirit He is never absent from us.",
"AnswerWithProofs": "Christ is true man and true God. With respect to His human nature He is no longer on earth,[2] but with respect to His divinity, majesty, grace, and Spirit He is never absent from us.[3]",
"Proofs": [
{
"Id": 1,
"References": ["Matt.28.20"]
},
{
"Id": 2,
"References": ["Matt.26.11", "John.16.28", "John.17.11", "Acts.3.19-Acts.3.21", "Heb.8.4"]
},
{
"Id": 3,
"References": ["Matt.28.18-Matt.28.20", "John.14.16-John.14.19", "John.16.13"]
}
]
},
{
"Number": 48,
"Question": "But are the two natures in Christ not separated from each other if His human nature is not present wherever His divinity is?",
"Answer": "Not at all, for His divinity has no limits and is present everywhere. So it must follow that His divinity is indeed beyond the human nature which He has taken on and nevertheless is within this human nature and remains personally united with it.",
"AnswerWithProofs": "Not at all, for His divinity has no limits and is present everywhere.[1] So it must follow that His divinity is indeed beyond the human nature which He has taken on and nevertheless is within this human nature and remains personally united with it.[2]",
"Proofs": [
{
"Id": 1,
"References": ["Jer.23.23-Jer.23.24", "Acts.7.48-Acts.7.49"]
},
{
"Id": 2,
"References": ["John.1.14", "John.3.13", "Col.2.9"]
}
]
},
{
"Number": 49,
"Question": "How does Christ's ascension into heaven benefit us?",
"Answer": "First, He is our Advocate in heaven before His Father. Second, we have our flesh in heaven as a sure pledge that He, our Head, will also take us, His members, up to Himself. Third, He sends us His Spirit as a counter-pledge, by whose power we seek the things that are above, where Christ is, seated at the right hand of God, and not the things that are on earth.",
"AnswerWithProofs": "First, He is our Advocate in heaven before His Father.[1] Second, we have our flesh in heaven as a sure pledge that He, our Head, will also take us, His members, up to Himself.[2] Third, He sends us His Spirit as a counter-pledge,[3] by whose power we seek the things that are above, where Christ is, seated at the right hand of God, and not the things that are on earth.[4]",
"Proofs": [
{
"Id": 1,
"References": ["Rom.8.34", "1John.2.1"]
},
{
"Id": 2,
"References": ["John.14.2", "John.17.24", "Eph.2.4-Eph.2.6"]
},
{
"Id": 3,
"References": ["John.14.16", "Acts.2.33", "2Cor.1.21-2Cor.1.22", "2Cor.5.5"]
},
{
"Id": 4,
"References": ["Col.3.1-Col.3.4"]
}
]
},
{
"Number": 50,
"Question": "Why is it added, And sits at the right hand of God?",
"Answer": "Christ ascended into heaven to manifest Himself there as Head of His Church, through whom the Father governs all things.",
"AnswerWithProofs": "Christ ascended into heaven to manifest Himself there as Head of His Church,[1] through whom the Father governs all things.[2]",
"Proofs": [
{
"Id": 1,
"References": ["Eph.1.20-Eph.1.23", "Col.1.18"]
},
{
"Id": 2,
"References": ["Matt.28.18", "John.5.22-John.5.23"]
}