-
Notifications
You must be signed in to change notification settings - Fork 38
/
xquad.tr.json
13345 lines (13345 loc) · 712 KB
/
xquad.tr.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
{
"data": [
{
"paragraphs": [
{
"context": "\ufeffPanthers savunmas\u0131 ligdeki derecesi alt\u0131nc\u0131 s\u0131rada olarak sadece 308 say\u0131 b\u0131rakt\u0131, ayn\u0131 zamanda NFL'de 24 topu kapma ile ligin ba\u015f\u0131n\u0131 \u00e7ekmesi ve d\u00f6rt Pro Bowl se\u00e7meleri ile \u00f6v\u00fcn\u00e7 duydu. Pro Bowl orta \u00e7izgi savunmac\u0131s\u0131 Kawann Short, tak\u0131m\u0131 11'le birlikte sack ederken, ayn\u0131 zamanda \u00fc\u00e7 oyuncuyu d\u00fc\u015f\u00fcrme ve iki yeniden savunmaya zorlad\u0131. Yan hakem Mario Addison, 6\u00bd sack ekledi. Panthers hatt\u0131nda ayr\u0131ca, sadece 9 ba\u015flang\u0131\u00e7ta 5 sack eden u\u00e7 \u00e7izgi savunmac\u0131s\u0131 Kony Ealy ile birlikte 136 kez ile NFL'nin aktif kariyer sack lideri ve 5 kez profesyonel bir top at\u0131c\u0131s\u0131 olan Jared Allen \u00f6ne \u00e7\u0131kmaktad\u0131r. Arkalar\u0131nda, Panthers'lerin \u00fc\u00e7 adet ikinci hat savunma oyuncusundan ikisi de Pro Bowl'da oynamak i\u00e7in se\u00e7ildi: Thomas Davis ve Luke Kuechly. Davis, d\u00f6rd\u00fcnde mecburi oyuncuyu d\u00fc\u015f\u00fcrme ve d\u00f6rt topu kapma olmak \u00fczere 5\u00bd sack etmeyi bir araya getirirken, Kuechly top \u00e7almalarda (118) iki mecburi oyuncuyu d\u00fc\u015f\u00fcrme ve kendi ba\u015f\u0131na d\u00f6rt pas\u0131n\u0131 kesme ile tak\u0131ma \u00f6nc\u00fcl\u00fck etti. Carolina\u2019n\u0131n ikincisi olarak g\u00f6sterilen Pro Bowl g\u00fcvenli\u011fi i\u00e7in kariyerinin en y\u00fckse\u011fi olarak 7 top kapma ile tak\u0131m\u0131 s\u00fcr\u00fckleyen Kurt Coleman\u2019a ve 88 top \u00e7alma say\u0131s\u0131yla ve Pro Bowl k\u00f6\u015fe savunmac\u0131s\u0131 sezon boyunca bir kapal\u0131 k\u00f6\u015fe i\u00e7inde geli\u015fen ikisi kale \u00e7izgisini ge\u00e7i\u015ften d\u00f6nen d\u00f6rt top kapma geli\u015ftiren Josh Norman'a rol verdi.",
"qas": [
{
"answers": [
{
"answer_start": 66,
"text": "308"
}
],
"id": "56beb4343aeaaa14008c925b",
"question": "Panthers savunmas\u0131 ka\u00e7 say\u0131 b\u0131rakm\u0131\u015ft\u0131r?"
},
{
"answers": [
{
"answer_start": 480,
"text": "136"
}
],
"id": "56beb4343aeaaa14008c925c",
"question": "Jared Allen'\u0131n ka\u00e7 tane kariyer sack edi\u015fi vard\u0131r?"
},
{
"answers": [
{
"answer_start": 871,
"text": "118"
}
],
"id": "56beb4343aeaaa14008c925d",
"question": "Luke Kuechly ka\u00e7 tane top \u00e7alma kaydetmi\u015ftir?"
},
{
"answers": [
{
"answer_start": 146,
"text": "d\u00f6rt"
}
],
"id": "56beb4343aeaaa14008c925e",
"question": "Josh Norman ka\u00e7 tane top \u00e7alm\u0131\u015ft\u0131r?"
},
{
"answers": [
{
"answer_start": 219,
"text": "Kawann Short"
}
],
"id": "56beb4343aeaaa14008c925f",
"question": "Bu sezon tak\u0131mdaki en fazla sack etmeyi kim kaydetmi\u015ftir?"
},
{
"answers": [
{
"answer_start": 104,
"text": "24"
}
],
"id": "56d6f3500d65d21400198290",
"question": "Panthers savunmas\u0131 2015 y\u0131l\u0131nda ka\u00e7 top \u00e7alma ile kayda ge\u00e7mi\u015ftir?"
},
{
"answers": [
{
"answer_start": 219,
"text": "Kawann Short"
}
],
"id": "56d6f3500d65d21400198291",
"question": "Panthers'lere sack etmede kim \u00f6nderlik etmektedir?"
},
{
"answers": [
{
"answer_start": 146,
"text": "d\u00f6rt"
}
],
"id": "56d6f3500d65d21400198292",
"question": "Pro Bowl i\u00e7in ka\u00e7 tane Panthers savunma oyuncusu se\u00e7ilmi\u015ftir?"
},
{
"answers": [
{
"answer_start": 146,
"text": "d\u00f6rt"
}
],
"id": "56d6f3500d65d21400198293",
"question": "Thomas Davis ka\u00e7 mecburi oyuncuyu d\u00fc\u015f\u00fcrme alm\u0131\u015ft\u0131r?"
},
{
"answers": [
{
"answer_start": 1092,
"text": "Kurt Coleman"
}
],
"id": "56d6f3500d65d21400198294",
"question": "Hangi oyuncu sezonun en \u00e7ok top kapmas\u0131na sahiptir?"
},
{
"answers": [
{
"answer_start": 104,
"text": "24"
}
],
"id": "56d9992fdc89441400fdb59c",
"question": "Panthers'lerin savunmas\u0131 2015 sezonu top kapmalar\u0131n\u0131n ka\u00e7 tanesini alm\u0131\u015ft\u0131r?"
},
{
"answers": [
{
"answer_start": 457,
"text": "Kony Ealy"
}
],
"id": "56d9992fdc89441400fdb59e",
"question": "Carolina Panthers \u00e7\u0131k\u0131\u015f\u00e7\u0131s\u0131 olarak dokuz oyunda 5 sack eden kimdir?"
},
{
"answers": [
{
"answer_start": 724,
"text": "Luke Kuechly."
}
],
"id": "56d9992fdc89441400fdb59f",
"question": "2015 y\u0131l\u0131nda Panthers'lerin ofansif orta \u00e7izgi oyuncusu lideri kimdi?"
},
{
"answers": [
{
"answer_start": 305,
"text": "iki"
}
],
"id": "56d9992fdc89441400fdb5a0",
"question": "Josh Norman 2015 y\u0131l\u0131nda kale \u00e7izgisini ge\u00e7i\u015fle sonlanan ka\u00e7 topu \u00e7alma yapm\u0131\u015ft\u0131r?"
}
]
},
{
"context": "Broncos, 23\u201316 aras\u0131ndaki b\u00f6lge turunda Pittsburgh Steelers'\u0131, ma\u00e7\u0131n son \u00fc\u00e7 dakikas\u0131nda 11 say\u0131 alarak ma\u011flup etti. Daha sonra, New England'\u0131n 2 puanl\u0131k d\u00f6n\u00fc\u015f\u00fcm giri\u015fimini saat \u00fczerinde 17 saniye kala bir pas\u0131 keserek, AFC \u015eampiyonluk Oyununda Super Bowl'u savunan XLIX \u015fampiyonu New England Patriots'u 20\u201318 yendi. Manning''in sezon boyunca topu kapmalarla ilgili sorunlar\u0131na ra\u011fmen, iki r\u00f6van\u015f ma\u00e7\u0131nda hi\u00e7 atmad\u0131.",
"qas": [
{
"answers": [
{
"answer_start": 40,
"text": "Pittsburgh Steelers"
}
],
"id": "56beb7953aeaaa14008c92ab",
"question": "Broncos'a b\u00f6lge turunda kim kaybetmi\u015ftir?"
},
{
"answers": [
{
"answer_start": 88,
"text": "11"
}
],
"id": "56beb7953aeaaa14008c92ac",
"question": "Broncos, Pittsburgh kar\u015f\u0131s\u0131nda ma\u00e7\u0131n son \u00fc\u00e7 dakikas\u0131nda ka\u00e7 puan alm\u0131\u015ft\u0131r?"
},
{
"answers": [
{
"answer_start": 280,
"text": "New England Patriots"
}
],
"id": "56beb7953aeaaa14008c92ad",
"question": "Super Bowl XLIX'i kim kazanm\u0131\u015ft\u0131r?"
},
{
"answers": [
{
"answer_start": 303,
"text": "20\u201318"
}
],
"id": "56beb7953aeaaa14008c92ae",
"question": "AFC \u015eampiyonluk Oyunu final skoru neydi?"
},
{
"answers": [
{
"answer_start": 186,
"text": "17 saniye"
}
],
"id": "56beb7953aeaaa14008c92af",
"question": "Broncos, AFC \u015eampiyonas\u0131 ma\u00e7\u0131n\u0131 k\u00f6k\u00fcnden halleden top kapmay\u0131 yapt\u0131\u011f\u0131 zaman saat \u00fczerinde ne kadar s\u00fcre kalm\u0131\u015ft\u0131?"
},
{
"answers": [
{
"answer_start": 0,
"text": "Broncos"
}
],
"id": "56bf36b93aeaaa14008c9561",
"question": "Broncos ve Steelers aras\u0131ndaki b\u00f6lge turu kazanan\u0131 hangi tak\u0131md\u0131?"
},
{
"answers": [
{
"answer_start": 9,
"text": "23\u201316"
}
],
"id": "56bf36b93aeaaa14008c9562",
"question": "Broncos ve Steelers aras\u0131ndaki oyunun son skoru neydi?"
},
{
"answers": [
{
"answer_start": 280,
"text": "New England Patriots"
}
],
"id": "56bf36b93aeaaa14008c9563",
"question": "Super Bowl XLIX'i kim kazanm\u0131\u015ft\u0131r?"
},
{
"answers": [
{
"answer_start": 186,
"text": "17"
}
],
"id": "56bf36b93aeaaa14008c9564",
"question": "Broncos oyunu kazand\u0131ran pas\u0131 kesti\u011fi zaman oyunun bitimine ka\u00e7 saniye kalm\u0131\u015ft\u0131?"
},
{
"answers": [
{
"answer_start": 316,
"text": "Manning"
}
],
"id": "56bf36b93aeaaa14008c9565",
"question": "Broncos'un r\u00f6van\u015f oyunlar\u0131 s\u00fcresince kim hi\u00e7 atmam\u0131\u015ft\u0131r?"
},
{
"answers": [
{
"answer_start": 40,
"text": "Pittsburgh Steelers"
}
],
"id": "56d7018a0d65d214001982c2",
"question": "B\u00f6lge turunda Broncos'u kim yenmi\u015ftir?"
},
{
"answers": [
{
"answer_start": 88,
"text": "11"
}
],
"id": "56d7018a0d65d214001982c3",
"question": "Pittsburg oyununun son \u00fc\u00e7 dakikas\u0131nda Broncos ka\u00e7 say\u0131 yapm\u0131\u015ft\u0131r?"
},
{
"answers": [
{
"answer_start": 280,
"text": "New England Patriots"
}
],
"id": "56d7018a0d65d214001982c5",
"question": "AFC \u015eampiyonluk oyununda Broncos'u kim yenmi\u015ftir?"
},
{
"answers": [
{
"answer_start": 40,
"text": "Pittsburgh Steelers"
}
],
"id": "56d99f99dc89441400fdb628",
"question": "2015 y\u0131l\u0131nda klasmanlar\u0131n\u0131 kazanmak i\u00e7in Broncos'u kim yenmi\u015ftir?"
},
{
"answers": [
{
"answer_start": 280,
"text": "New England Patriots"
}
],
"id": "56d99f99dc89441400fdb629",
"question": "AFC \u015fampiyonu olmak i\u00e7in Broncos'u kim yenmi\u015ftir?"
},
{
"answers": [
{
"answer_start": 186,
"text": "17"
}
],
"id": "56d99f99dc89441400fdb62c",
"question": "Patriots'un 2 puanl\u0131k d\u00f6n\u00fc\u015f\u00fcmleri ba\u015far\u0131s\u0131z oldu\u011funda oyunun bitimine ka\u00e7 saniye kalm\u0131\u015ft\u0131?"
}
]
},
{
"context": "Peyton Manning,iki farkl\u0131 tak\u0131m\u0131 birden fazla Super Bowls'a gitmesinde \u00f6nderlik eden ilk kilit oyuncu oldu. Ayr\u0131ca, 39 ya\u015f\u0131nda bir Super Bowl'da oynayan en eski oyun kurucu oldu. Ge\u00e7mi\u015f rekor, Broncos'u 38 ya\u015f\u0131nda Super Bowl XXXIII'te galibiyete g\u00f6t\u00fcren ve \u015fu anda Denver'\u0131n Futbol Operasyonlar\u0131 Ba\u015fkan Yard\u0131mc\u0131s\u0131 ve Genel M\u00fcd\u00fcr'\u00fc olan John Elway'in ellerindeydi.",
"qas": [
{
"answers": [
{
"answer_start": 116,
"text": "39"
}
],
"id": "56beb86b3aeaaa14008c92bd",
"question": "Peyton Manning, Super Bowl %0'de oynad\u0131\u011f\u0131 zaman ka\u00e7 ya\u015f\u0131ndayd\u0131?"
},
{
"answers": [
{
"answer_start": 336,
"text": "John Elway"
}
],
"id": "56beb86b3aeaaa14008c92be",
"question": "Bir Super Bowl'da oynayan en ya\u015fl\u0131 kilit oyuncu olma rekorunu daha \u00f6nce kim elinde bulunduruyordu?"
},
{
"answers": [
{
"answer_start": 203,
"text": "38"
}
],
"id": "56beb86b3aeaaa14008c92bf",
"question": "John Elway, Super Bowl XXXIII'te oynad\u0131\u011f\u0131nda ka\u00e7 ya\u015f\u0131ndayd\u0131?"
},
{
"answers": [
{
"answer_start": 275,
"text": "Futbol Operasyonlar\u0131 Ba\u015fkan Yard\u0131mc\u0131s\u0131 ve Genel M\u00fcd\u00fcr'\u00fc"
}
],
"id": "56beb86b3aeaaa14008c92c0",
"question": "John Elway'in \u015fu anki Broncos \u00fcyeli\u011findeki rol\u00fc nedir?"
},
{
"answers": [
{
"answer_start": 193,
"text": "Broncos"
}
],
"id": "56beb86b3aeaaa14008c92c1",
"question": "John Elway Super Bowl XXXIII'te kimin i\u00e7in oynam\u0131\u015ft\u0131r?"
},
{
"answers": [
{
"answer_start": 193,
"text": "Broncos"
}
],
"id": "56bf3fd53aeaaa14008c9591",
"question": "Super Bowl XXXIII'\u00fcn kazanan\u0131 hangi tak\u0131md\u0131?"
},
{
"answers": [
{
"answer_start": 336,
"text": "John Elway"
}
],
"id": "56bf3fd53aeaaa14008c9592",
"question": "Broncos'un Genel M\u00fcd\u00fcr\u00fc kimdir?"
},
{
"answers": [
{
"answer_start": 203,
"text": "38"
}
],
"id": "56bf3fd53aeaaa14008c9593",
"question": "Elway, Super Bowl XXXIII galibiyeti esnas\u0131nda ka\u00e7 ya\u015f\u0131ndad\u0131r?"
},
{
"answers": [
{
"answer_start": 0,
"text": "Peyton Manning"
}
],
"id": "56bf3fd53aeaaa14008c9594",
"question": "Herhangi bir Super Bowl oyununda en ya\u015fl\u0131 kilit oyuncu rekoruna kim sahiptir?"
},
{
"answers": [
{
"answer_start": 15,
"text": "iki"
}
],
"id": "56bf3fd53aeaaa14008c9595",
"question": "Manning Super Bowl'a ula\u015fmak i\u00e7in onlar\u0131n tak\u0131m\u0131ndayken ka\u00e7 tak\u0131mda oynam\u0131\u015ft\u0131r?"
},
{
"answers": [
{
"answer_start": 15,
"text": "iki"
}
],
"id": "56d704430d65d214001982de",
"question": "Peyton Manning Super Bowl'a ka\u00e7 farkl\u0131 tak\u0131m\u0131 g\u00f6t\u00fcrm\u00fc\u015ft\u00fcr?"
},
{
"answers": [
{
"answer_start": 0,
"text": "Peyton Manning"
}
],
"id": "56d704430d65d214001982e0",
"question": "Bir Super Bowl'da oynayan en ya\u015fl\u0131 kilit oyuncu kimdir?"
},
{
"answers": [
{
"answer_start": 336,
"text": "John Elway"
}
],
"id": "56d704430d65d214001982e1",
"question": "Manning'den \u00f6nce bir Super Bowl'da oynayan en ya\u015fl\u0131 kilit oyuncu kimdir?"
},
{
"answers": [
{
"answer_start": 214,
"text": "Super Bowl XXXIII"
}
],
"id": "56d704430d65d214001982e2",
"question": "Elway 38 ya\u015f\u0131ndayken hangi Super Bowl'u kazanm\u0131\u015ft\u0131r?"
},
{
"answers": [
{
"answer_start": 0,
"text": "Peyton Manning"
}
],
"id": "56d9a0eadc89441400fdb63e",
"question": "\u0130ki tak\u0131m\u0131 birden \u00e7ok Super Bowl'a g\u00f6t\u00fcren ilk kilit oyuncu kimdir?"
},
{
"answers": [
{
"answer_start": 116,
"text": "39"
}
],
"id": "56d9a0eadc89441400fdb63f",
"question": "Manning Super Bowl 50'de oynad\u0131\u011f\u0131 zaman ka\u00e7 ya\u015f\u0131ndayd\u0131?"
},
{
"answers": [
{
"answer_start": 336,
"text": "John Elway"
}
],
"id": "56d9a0eadc89441400fdb640",
"question": "Super Bowl XXXIII'te 38 ya\u015f\u0131nda olan kilit oyuncunun ad\u0131 nedir?"
}
]
},
{
"context": "Akademi \u00d6d\u00fcl\u00fc kazanan\u0131 Marlee Matlin Amerikan \u0130\u015faret Dili(ASL) \u00e7evirisini yaparken alt\u0131 kez Grammy kazanan ve Akademi \u00d6d\u00fcl\u00fc aday\u0131 Lady Gaga ulusal mar\u015f\u0131 s\u00f6ylemi\u015ftir. ",
"qas": [
{
"answers": [
{
"answer_start": 83,
"text": "alt\u0131"
}
],
"id": "56bec6ac3aeaaa14008c93fd",
"question": "Lady Gaga ka\u00e7 Grammy kazanm\u0131\u015ft\u0131r?"
},
{
"answers": [
{
"answer_start": 140,
"text": "ulusal mar\u015f\u0131"
}
],
"id": "56bec6ac3aeaaa14008c93fe",
"question": "Lady Gaga neyi s\u00f6ylemi\u015ftir?"
},
{
"answers": [
{
"answer_start": 110,
"text": "Akademi \u00d6d\u00fcl\u00fc"
}
],
"id": "56bec6ac3aeaaa14008c93ff",
"question": "Marlee Matlin hangi \u00f6d\u00fcl\u00fc kazanm\u0131\u015ft\u0131r?"
},
{
"answers": [
{
"answer_start": 140,
"text": "ulusal mar\u015f\u0131"
}
],
"id": "56bec6ac3aeaaa14008c9400",
"question": "Marlee Matlin neyi \u00e7evirmi\u015ftir?"
},
{
"answers": [
{
"answer_start": 37,
"text": "Amerikan \u0130\u015faret Dili"
}
],
"id": "56bec6ac3aeaaa14008c9401",
"question": "Marlee Matlin ulusal mar\u015f\u0131n hangi dilde \u00e7evirisini yapm\u0131\u015ft\u0131r?"
},
{
"answers": [
{
"answer_start": 130,
"text": "Lady Gaga"
}
],
"id": "56d20650e7d4791d00902614",
"question": "Ulusal mar\u015f\u0131 kim s\u00f6ylemi\u015ftir?"
},
{
"answers": [
{
"answer_start": 23,
"text": "Marlee Matlin"
}
],
"id": "56d20650e7d4791d00902615",
"question": "Hangi sanat\u00e7\u0131 oyun i\u00e7in Amerikan \u0130\u015faret Dili \u00e7evirisi yapm\u0131\u015ft\u0131r?"
},
{
"answers": [
{
"answer_start": 130,
"text": "Lady Gaga"
}
],
"id": "56d7253b0d65d214001983d4",
"question": "Super Bowl 50'de Ulusal Mar\u015f'\u0131 kim yapm\u0131\u015ft\u0131r?"
},
{
"answers": [
{
"answer_start": 23,
"text": "Marlee Matlin"
}
],
"id": "56d7253b0d65d214001983d5",
"question": "Super Bowl 50'de Ulusal Mar\u015f i\u00e7in hangi erkek oyuncu g\u00f6revlendirilmi\u015ftir?"
},
{
"answers": [
{
"answer_start": 130,
"text": "Lady Gaga"
}
],
"id": "56d9c455dc89441400fdb7c4",
"question": "Super Bowl 50 Ulusal Mar\u015f\u0131n\u0131 kim yapm\u0131\u015ft\u0131r?"
},
{
"answers": [
{
"answer_start": 83,
"text": "alt\u0131"
}
],
"id": "56d9c455dc89441400fdb7c5",
"question": "Metin, Lady Gaga'n\u0131n ka\u00e7 Grammy \u00d6d\u00fcl\u00fc ald\u0131\u011f\u0131n\u0131 s\u00f6ylemektedir?"
},
{
"answers": [
{
"answer_start": 23,
"text": "Marlee Matlin"
}
],
"id": "56d9c455dc89441400fdb7c6",
"question": "Super Bowl 50'de Ulusal Mar\u015f\u0131n dili i\u00e7in kim g\u00f6revlendirilmi\u015ftir?"
}
]
},
{
"context": "Normal s\u00fcrenin bitimine 4:51 kala Carolina, kendi 24 yard \u00e7izgisinde bir oyun kazand\u0131ran hareketi ger\u00e7ekle\u015ftirme \u015fans\u0131 ile topa sahip oldu ve \u00fc\u00e7\u00fcnc\u00fc ve dokuzuncu ile kar\u015f\u0131la\u015ft\u0131. Bir sonraki oyunda, Miller topu Newton'dan uzakla\u015ft\u0131rd\u0131 ve birka\u00e7 oyuncunun dalmas\u0131ndan sonra geriye do\u011fru uzun bir s\u0131\u00e7rama ald\u0131 ve Panthers'lerin 4. yard \u00e7izgisine geri g\u00f6nderen Ward taraf\u0131ndan 5 yarda geri g\u00f6nderildi. Her ne kadar birka\u00e7 oyuncu kurtarmaya \u00e7al\u0131\u015fmak i\u00e7in toplulu\u011fa dalsa da, Newton bunu yapmad\u0131 ve sald\u0131rganl\u0131k eksikli\u011fi daha sonra ona a\u011f\u0131r ele\u015ftiriler getirdi. Bu arada, Denver'\u0131n savunmas\u0131 \u00fc\u00e7 oyun i\u00e7in biti\u015f b\u00f6lgesinden uzak tutuldu ancak k\u00f6\u015fe vuru\u015funda bir penalt\u0131y\u0131 tutarak Josh Norman, Broncos'a yeni bir tak\u0131m yenilgiler tatt\u0131rd\u0131. Ard\u0131ndan Anderson 2 metrelik bir kale \u00e7izgisini ge\u00e7i\u015f ko\u015fusunda att\u0131 ve Manning 2 puanl\u0131k bir d\u00f6n\u00fc\u015f\u00fcm i\u00e7in Bennie Fowler'a pas att\u0131 ve Denver'\u0131 3:08 zaman kala 24-10 \u00f6ne ge\u00e7irdi ve asl\u0131nda oyunun hakk\u0131nda geldi. Carolina'n\u0131n iki hamlesi daha vard\u0131 ancak her birinde ilk yenmesini almada ba\u015far\u0131s\u0131z oldu.",
"qas": [
{
"answers": [
{
"answer_start": 50,
"text": "24"
}
],
"id": "56beca913aeaaa14008c946d",
"question": "Caroline, bitime 4:51 kala hangi yard \u00e7izgisi \u00fczerinde ba\u015flam\u0131\u015ft\u0131r?"
},
{
"answers": [
{
"answer_start": 210,
"text": "Newton"
}
],
"id": "56beca913aeaaa14008c946e",
"question": "3. ve 9. \u00fczerinde kim topu d\u00fc\u015f\u00fcrm\u00fc\u015ft\u00fcr?"
},
{
"answers": [
{
"answer_start": 674,
"text": "Josh Norman"
}
],
"id": "56beca913aeaaa14008c946f",
"question": "Hangi Panther savunmac\u0131s\u0131 \u00fc\u00e7\u00fcnc\u00fc yenilgilerinin sebebi olarak bilinir?"
},
{
"answers": [
{
"answer_start": 742,
"text": "Anderson"
}
],
"id": "56beca913aeaaa14008c9470",
"question": "Hangi oyuncu 2 \u00fczerinde topa vuru\u015f yapm\u0131\u015ft\u0131r?"
},
{
"answers": [
{
"answer_start": 840,
"text": "Bennie Fowler"
}
],
"id": "56beca913aeaaa14008c9471",
"question": "Ba\u015far\u0131l\u0131 2 nokta d\u00f6n\u00fc\u015f\u00fcm\u00fcn\u00fcn al\u0131c\u0131s\u0131 kimdir?"
},
{
"answers": [
{
"answer_start": 198,
"text": "Miller"
}
],
"id": "56d726b60d65d214001983ea",
"question": "Newton'dan topu 3. ve dokuza uzakla\u015ft\u0131rd\u0131?"
},
{
"answers": [
{
"answer_start": 357,
"text": "Ward"
}
],
"id": "56d726b60d65d214001983eb",
"question": "Uzakla\u015fan topu kim kurtard\u0131?"
},
{
"answers": [
{
"answer_start": 210,
"text": "Newton"
}
],
"id": "56d726b60d65d214001983ec",
"question": "Hangi futbolcu topu kurtarmak i\u00e7in toplulu\u011fa atlamamakla ele\u015ftirilmektedir?"
},
{
"answers": [
{
"answer_start": 674,
"text": "Josh Norman"
}
],
"id": "56d726b60d65d214001983ed",
"question": "Broncos'a yeni bir dizi yenilgiler veren penalt\u0131y\u0131 hangi Panthers oyuncusu edinmi\u015ftir?"
},
{
"answers": [
{
"answer_start": 877,
"text": "3:08"
}
],
"id": "56d726b60d65d214001983ee",
"question": "Denver skoru 24-10'a getirdi\u011finde oyunda ne kadar s\u00fcre kalm\u0131\u015ft\u0131?"
},
{
"answers": [
{
"answer_start": 24,
"text": "4:51"
}
],
"id": "56d9cb47dc89441400fdb832",
"question": "Caroline d\u00f6rd\u00fcnc\u00fc \u00e7eyrekteki kendilerinin 24 yard \u00e7izgisinde topu edindi\u011finde saatteki s\u00fcre neydi?"
},
{
"answers": [
{
"answer_start": 198,
"text": "Miller"
}
],
"id": "56d9cb47dc89441400fdb833",
"question": "D\u00f6rd\u00fcnc\u00fc \u00e7eyre\u011fin sonunda Newton'dan topu uzakla\u015ft\u0131ran oyuncunun soyad\u0131 nedir?"
},
{
"answers": [
{
"answer_start": 357,
"text": "Ward"
}
],
"id": "56d9cb47dc89441400fdb834",
"question": "D\u00f6rd\u00fcnc\u00fc \u00e7eyrekte Newton'un kaybetti\u011fi topu sonunda kurtaran oyuncunun soyad\u0131 nedir?"
},
{
"answers": [
{
"answer_start": 587,
"text": "\u00fc\u00e7"
}
],
"id": "56d9cb47dc89441400fdb835",
"question": "Denver, Newton'dan ald\u0131ktan sonra topu ka\u00e7 oyun biti\u015f alan\u0131n\u0131n d\u0131\u015f\u0131na tutmu\u015ftur?"
},
{
"answers": [
{
"answer_start": 742,
"text": "Anderson"
}
],
"id": "56d9cb47dc89441400fdb836",
"question": "D\u00f6rd\u00fcnc\u00fc \u00e7eyrekte 2 yard kale \u00e7izgisini ge\u00e7i\u015f skoru yapan oyuncunun soyad\u0131 nedir?"
}
]
}
],
"title": "Super_Bowl_50"
},
{
"paragraphs": [
{
"context": "Yak\u0131nlarda, Ogr\u00f3d Saski'de (Sakson Bah\u00e7esi), Yaz Tiyatrosu 1870'ten 1939'a kadar i\u015fletiliyordu ve sava\u015flar aras\u0131 d\u00f6nemde tiyatro kompleksi, Var\u015fova'n\u0131n ilk edebi kabaresi Momus ve Leon Schiller'in m\u00fczik tiyatrosu Melodram'\u0131 da i\u00e7eriyordu. Wojciech Bogus\u0142awski Tiyatrosu (1922\u201326), \"Polonya an\u0131tsal tiyatrosunun\" en iyi \u00f6rne\u011fiydi. 1930'lar\u0131n ortalar\u0131ndan itibaren B\u00fcy\u00fck Tiyatro binas\u0131, oyunculuk departman\u0131 ve sahne y\u00f6netmenli\u011fi departman\u0131 ile devletin ilk y\u00f6netti\u011fi dramatik sanat akademisi olan Upati Dramatik Sanatlar Enstit\u00fcs\u00fc'n\u00fc bar\u0131nd\u0131rd\u0131.",
"qas": [
{
"answers": [
{
"answer_start": 12,
"text": "Ogr\u00f3d Saski"
}
],
"id": "57339c16d058e614000b5ec5",
"question": "Sakson Bah\u00e7esi Leh\u00e7e'de nedir?"
},
{
"answers": [
{
"answer_start": 28,
"text": "Sakson Bah\u00e7esi"
}
],
"id": "57339c16d058e614000b5ec6",
"question": "Yaz Tiyatrosu nerede bulunmaktad\u0131r?"
},
{
"answers": [
{
"answer_start": 59,
"text": "1870'ten 1939"
}
],
"id": "57339c16d058e614000b5ec7",
"question": "Yaz Tiyatrosu ne kadar s\u00fcre i\u015fletilmi\u015ftir?"
},
{
"answers": [
{
"answer_start": 171,
"text": "Momus"
}
],
"id": "57339c16d058e614000b5ec8",
"question": "Var\u015fova'n\u0131n ilk edebi kabaresi nedir?"
},
{
"answers": [
{
"answer_start": 239,
"text": "Wojciech Bogus\u0142awski Tiyatrosu"
}
],
"id": "57339c16d058e614000b5ec9",
"question": "\"Polonya an\u0131tsal tiyatrosunun\" en iyi \u00f6rne\u011fi nedir?"
}
]
},
{
"context": "Yerel rakipleri Polonya Var\u015fova, daha az destek\u00e7iye sahip ancak 2000 y\u0131l\u0131nda Ekstraklasa \u015eampiyonas\u0131n\u0131 kazanmay\u0131 ba\u015fard\u0131lar. Ayr\u0131ca 1946'da \u00fclke \u015fampiyonlu\u011funu kazand\u0131 ve ayr\u0131ca kupay\u0131 iki kez kazand\u0131. Polonya'n\u0131n sahas\u0131 Konwiktorska Caddesi'nde, Eski Kent'e 10 dakikal\u0131k y\u00fcr\u00fcme mesafesinde yer almaktad\u0131r. Polonya, feci finansal durumlar\u0131 nedeniyle \u00fclkenin en \u00fcst liginden 2013'te \u00e7ekildi. \u015eu anda Ulusal - Polonya Futbol Federasyonu (PZPN) yap\u0131s\u0131ndaki en alt profesyonel lig olan 4. ligde (Polonya'da 5. seviye) oynuyorlar.",
"qas": [
{
"answers": [
{
"answer_start": 16,
"text": "Polonya Var\u015fova"
}
],
"id": "5733a32bd058e614000b5f32",
"question": "2000 y\u0131l\u0131nda Ekstraklasa \u015eampiyonas\u0131'n\u0131 kim kazanm\u0131\u015ft\u0131r?"
},
{
"answers": [
{
"answer_start": 132,
"text": "1946"
}
],
"id": "5733a32bd058e614000b5f33",
"question": "Polonya Var\u015fova, 2000'den \u00f6nce \u00fclke \u015fampiyonlu\u011funu ne zaman kazanm\u0131\u015ft\u0131r?"
},
{
"answers": [
{
"answer_start": 185,
"text": "iki kez"
}
],
"id": "5733a32bd058e614000b5f34",
"question": "Polonya kupay\u0131 ka\u00e7 kez kazanm\u0131\u015ft\u0131r?"
},
{
"answers": [
{
"answer_start": 221,
"text": "Konwiktorska Caddesi"
}
],
"id": "5733a32bd058e614000b5f35",
"question": "Polonya'n\u0131n sahas\u0131 nerede bulunmaktad\u0131r?"
},
{
"answers": [
{
"answer_start": 316,
"text": "feci finansal durumlar\u0131"
}
],
"id": "5733a32bd058e614000b5f36",
"question": "Polonya 2013 y\u0131l\u0131nda \u00fclkenin en \u00fcst liginden neden k\u00fcme d\u00fc\u015f\u00fcr\u00fclm\u00fc\u015ft\u00fcr?"
}
]
},
{
"context": "Varl\u0131\u011f\u0131 s\u00fcresince Var\u015fova \u00e7ok k\u00fclt\u00fcrl\u00fc bir \u015fehir olmu\u015ftur. 1901 n\u00fcfus say\u0131m\u0131na g\u00f6re, 711.988 say\u0131daki n\u00fcfusun % 56,2'si Katolikler, % 35,7'si Yahudi, % 5'i Yunan Ortodoks H\u0131ristiyanlar\u0131 ve %2,8'i Protestanlard\u0131. Sekiz y\u0131l sonra 1909 y\u0131l\u0131nda 281.754 Yahudi (% 36,9), 18.189 Protestan (% 2,4) ve 2.818 Mariavite (% 0,4) vard\u0131. Bu, \u015fehrin her yerinde y\u00fczlerce dini ibadet yeri in\u015fa edilmesine yol a\u00e7t\u0131. 1944'teki Var\u015fova \u0130syan\u0131 sonras\u0131nda \u00e7o\u011fu tahrip edildi. Sava\u015ftan sonra, Polonya'n\u0131n yeni kom\u00fcnist otoriteleri kilise in\u015fas\u0131n\u0131 cayd\u0131rd\u0131 ve sadece k\u00fc\u00e7\u00fck bir say\u0131da yeniden in\u015fa edildi.",
"qas": [
{
"answers": [
{
"answer_start": 26,
"text": "\u00e7ok k\u00fclt\u00fcrl\u00fc"
}
],
"id": "57338007d058e614000b5bda",
"question": "Var\u015fova, bir \u015fehir oldu\u011fundan beri ne t\u00fcr bir \u015fehir olmu\u015ftur?"
},
{
"answers": [
{
"answer_start": 85,
"text": "711.988"
}
],
"id": "57338007d058e614000b5bdb",
"question": "1901 y\u0131l\u0131nda Var\u015fova'n\u0131n n\u00fcfusu ne kadard\u0131r?"
},
{
"answers": [
{
"answer_start": 110,
"text": "% 56,2"
}
],
"id": "57338007d058e614000b5bdc",
"question": "Var\u015fova'n\u0131n 1901 y\u0131l\u0131ndaki n\u00fcfusunun y\u00fczde ka\u00e7\u0131 Katoliktir?"
},
{
"answers": [
{
"answer_start": 189,
"text": "%2,8"
}
],
"id": "57338007d058e614000b5bdd",
"question": "Var\u015fova'n\u0131n 1901 y\u0131l\u0131ndaki n\u00fcfusunun y\u00fczde ka\u00e7\u0131 Protestand\u0131r?"
},
{
"answers": [
{
"answer_start": 400,
"text": "1944"
}
],
"id": "57338007d058e614000b5bde",
"question": "Var\u015fova'daki dini ibadet yerlerinin bir\u00e7o\u011fu ne zaman tahrip edilmi\u015ftir?"
}
]
},
{
"context": "Polonya'daki b\u00f6lgesel ayr\u0131lma temel birimi bir kom\u00fcnd\u00fcr (gmina). Bir \u015fehir ayn\u0131 zamanda bir kom\u00fcnd\u00fcr - ancak kent t\u00fcz\u00fc\u011f\u00fc ile. Hem \u015fehirler hem de kom\u00fcnler bir belediye ba\u015fkan\u0131 taraf\u0131ndan y\u00f6netilmektedir - ancak kom\u00fcnlerde belediye ba\u015fkan\u0131 vogt'tur (Leh\u00e7e'de w\u00f3jt), ancak \u015fehirlerde - burmistrz'dir. Baz\u0131 daha b\u00fcy\u00fck \u015fehirler, b\u00f6lgedeki b\u00f6l\u00fcnmenin ikinci seviyesindeki birimler taraf\u0131ndan sahip olunan g\u00f6rev ve ayr\u0131cal\u0131klar gibi yetkileri elde ederler - il\u00e7eler veya powiat'lar. Bu yetkilere \u00f6rnek olarak bir otomobil tescili verilebilir: bir gmina otomobilleri kaydedemez, bu bir powiat'\u0131n g\u00f6revidir (yani bir kay\u0131t numaras\u0131, bir araban\u0131n gmina'ya de\u011fil, hangi powiat'a kaydedilmi\u015f oldu\u011funa ba\u011fl\u0131d\u0131r). Bu durumda biz \u015fehir, il\u00e7e veya powiat grodzki hakk\u0131nda konu\u015fuyoruz. Bu \u015fehirler \u00f6rne\u011fin Lublin, Krakov, Gdansk, Poznan'd\u0131r. Var\u015fova'da, il\u00e7elerinde ek olarak baz\u0131 powiat'lar\u0131n yetkileri bulunmaktad\u0131r - daha \u00f6nce belirtilen araba kayd\u0131 gibi. \u00d6rne\u011fin, Wola il\u00e7esinin kendi kan\u0131t\u0131 vard\u0131r ve Ursyn\u00f3w b\u00f6lgesi- kendi (ve Wola'n\u0131n otomobillerinin Ursyn\u00f3w\u2019unkinden ba\u015fka bir kay\u0131t numaras\u0131) vard\u0131r. Ancak, \u00f6rne\u011fin Krak\u00f3w'daki il\u00e7elerde powiat haklar\u0131 yoktur, bu nedenle Krak\u00f3w'daki kay\u0131t numaralar\u0131 t\u00fcm il\u00e7elerde ayn\u0131 tiptedir.",
"qas": [
{
"answers": [
{
"answer_start": 47,
"text": "kom\u00fcnd\u00fcr"
}
],
"id": "573380e0d058e614000b5be9",
"question": "Polonya'daki b\u00f6lgesel ayr\u0131mlardaki temel y\u00f6netim nedir?"
},
{
"answers": [
{
"answer_start": 453,
"text": "il\u00e7eler veya powiat"
}
],
"id": "573380e0d058e614000b5bea",
"question": "Polonya'daki b\u00f6lgesel ayr\u0131mlardaki ikinci seviye nedir?"
},
{
"answers": [
{
"answer_start": 1109,
"text": "Krak\u00f3w"
}
],
"id": "573380e0d058e614000b5beb",
"question": "Hangi b\u00f6lgelerde arabalar i\u00e7in kay\u0131t numaralar\u0131n\u0131n hepsi ayn\u0131 tiptir?"
}
]
},
{
"context": "Var\u015fova'n\u0131n ilk borsas\u0131 1817'de kuruldu ve II. D\u00fcnya Sava\u015f\u0131'na kadar ticaretine devam etti. Sava\u015f sonras\u0131 \u00fclkedeki kom\u00fcnist kontrol\u00fcn\u00fcn sona ermesinin ve serbest piyasa ekonomisinin yeniden ba\u015flat\u0131lmas\u0131n\u0131n ard\u0131ndan 1991 Nisan ay\u0131nda yeniden kuruldu. Bug\u00fcn Var\u015fova Menkul K\u0131ymetler Borsas\u0131 (WSE), bir\u00e7ok g\u00f6stergeye g\u00f6re 374 \u015firketin listede bulundu\u011fu ve 31 A\u011fustos 2009 itibariyle 162.584 milyon Avro tutar\u0131nda toplam i\u015fletme sermayesi bulunan b\u00f6lgedeki en b\u00fcy\u00fck pazard\u0131r. Ne gariptir ki 1991'den 2000'e kadar daha \u00f6nce Polonya Birle\u015fik \u0130\u015f\u00e7i Partisi'nin (PZPR) genel merkezi olarak kullan\u0131lan binada bulunuyordu.",
"qas": [
{
"answers": [
{
"answer_start": 24,
"text": "1817"
}
],
"id": "5733834ed058e614000b5c26",
"question": "Var\u015fova'n\u0131n ilk borsas\u0131 ne zaman kurulmu\u015ftur?"
},
{
"answers": [
{
"answer_start": 43,
"text": "II. D\u00fcnya Sava\u015f\u0131"
}
],
"id": "5733834ed058e614000b5c27",
"question": "Var\u015fova borsas\u0131na ne durdurmu\u015ftur?"
},
{
"answers": [
{