-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample_data.jsonl
1325 lines (663 loc) · 956 KB
/
example_data.jsonl
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
'human settlement in Pakistan')), 'aliases': (), 'sitelinks': (('commonswiki', 'Category:Mari Shah Sakhira', None), ('enwiki', 'Mari Shah Sakhira', None), ('fawiki', '\xd9\x85\xd8\xa7\xd8\xb1\xdb\x8c \xd8\xb4\xd8\xa7\xd9\x87 \xd8\xb3\xd8\xae\xdb\x8c\xd8\xb1\xd8\xa7', None), ('urwiki', '\xd9\x85\xd8\xa7\xda\x91\xdb\x8c \xd8\xb4\xd8\xa7\xdb\x81 \xd8\xb3\xd8\xae\xdb\x8c\xd8\xb1\xd8\xa7', None)), 'claims': ({'property': 'P373', 'type': 'string', 'value': 'Mari Shah Sakhira'}, {'id': 'Q936703', 'property': 'P131', 'numeric-id': 936703, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P31', 'numeric-id': 486972, 'id': 'Q486972', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 843, 'id': 'Q843', 'property': 'P17'}), 'title': 'Q6760932'}
{'type': 'item', 'id': 'Q6761037', 'labels': (('en', 'Maria Bakunin'),), 'descriptions': (('en', 'Italian chemist and biologist'),), 'aliases': (('en', 'Marussia Bakunin'), ('en', 'Maria Bakunina'), ('en', 'Marija Mikhailovna Bakunina'), ('en', 'Mariya Bakunina'), ('en', 'Mariya Mikhaylovna Bakunina')), 'sitelinks': (('frwiki', 'Maria Bakunin', None), ('ruwiki', '\xd0\x91\xd0\xb0\xd0\xba\xd1\x83\xd0\xbd\xd0\xb8\xd0\xbd\xd0\xb0, \xd0\x9c\xd0\xb0\xd1\x80\xd0\xb8\xd1\x8f \xd0\x9c\xd0\xb8\xd1\x85\xd0\xb0\xd0\xb9\xd0\xbb\xd0\xbe\xd0\xb2\xd0\xbd\xd0\xb0', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x8a\xd8\xa7 \xd8\xa8\xd8\xa7\xd9\x83\xd9\x88\xd9\x86\xd9\x8a\xd9\x86', None), ('dewiki', 'Maria Bakunin', None), ('astwiki', 'Maria Bakunin', None), ('eswiki', 'Maria Bakunin', None), ('mlwiki', '\xe0\xb4\xae\xe0\xb4\xb0\xe0\xb4\xbf\xe0\xb4\xaf \xe0\xb4\xac\xe0\xb4\x95\xe0\xb5\x81\xe0\xb4\xa8\xe0\xb4\xbf\xe0\xb5\xb', None), ('commonswiki', 'Category:Maria Bakunin', None), ('cawiki', 'Maria Bakunin', None), ('enwiki', 'Maria Bakunin', None), ('itwiki', 'Maria Bakunin', None), ('arwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x8a\xd8\xa7 \xd8\xa8\xd8\xa7\xd9\x83\xd9\x88\xd9\x86\xd9\x8a\xd9\x86', None)), 'claims': ({'id': 'Q691851', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P69', 'numeric-id': 691851}, {'type': 'wikibase-entityid', 'property': 'P31', 'entity-type': 'item', 'numeric-id': 5, 'id': 'Q5'}, {'value': 'http://www.mariabakunin.com/', 'type': 'string', 'property': 'P856'}, {'id': 'Q38', 'numeric-id': 38, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P27'}, {'entity-type': 'item', 'numeric-id': 172579, 'id': 'Q172579', 'type': 'wikibase-entityid', 'property': 'P27'}, {'after': 0, 'before': 0, 'timezone': 0, 'property': 'P569', 'type': 'time', 'precision': 11, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1873-02-02T00:00:00Z'}, {'type': 'string', 'value': 'Maria Bakunin', 'property': 'P373'}, {'property': 'P3373', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q77240550', 'numeric-id': 77240550}, {'entity-type': 'item', 'id': 'Q2634', 'numeric-id': 2634, 'property': 'P20', 'type': 'wikibase-entityid'}, {'numeric-id': 27645, 'entity-type': 'item', 'id': 'Q27645', 'type': 'wikibase-entityid', 'property': 'P22'}, {'id': 'Q919', 'numeric-id': 919, 'type': 'wikibase-entityid', 'property': 'P19', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'id': 'Q4076115', 'numeric-id': 4076115, 'entity-type': 'item', 'property': 'P734'}, {'numeric-id': 325872, 'property': 'P735', 'id': 'Q325872', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'numeric-id': 6581072, 'id': 'Q6581072', 'entity-type': 'item', 'property': 'P21', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'property': 'P108', 'entity-type': 'item', 'id': 'Q691851', 'numeric-id': 691851}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 4076122, 'id': 'Q4076122', 'property': 'P53'}, {'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0, 'precision': 11, 'property': 'P570', 'timezone': 0, 'time': '+1960-04-17T00:00:00Z', 'after': 0}, {'entity-type': 'item', 'id': 'Q652', 'type': 'wikibase-entityid', 'property': 'P1412', 'numeric-id': 652}, {'value': 'Maria Bakunin.jpg', 'type': 'string', 'property': 'P18'}, {'property': 'P463', 'id': 'Q338432', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 338432}, {'property': 'P937', 'numeric-id': 2634, 'id': 'Q2634', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q28503394', 'numeric-id': 28503394, 'property': 'P25'}, {'numeric-id': 593644, 'property': 'P106', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q593644'}, {'numeric-id': 864503, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P106', 'id': 'Q864503'}, {'property': 'P1038', 'entity-type': 'item', 'id': 'Q983325', 'type': 'wikibase-entityid', 'numeric-id': 983325}, {'type': 'wikibase-entityid', 'numeric-id': 186011, 'property': 'P101', 'entity-type': 'item', 'id': 'Q186011'}), 'title': 'Q6761037'}
{'type': 'item', 'id': 'Q6761229', 'labels': (('en', 'Maria Goodavage'),), 'descriptions': (('en', 'American writer and journalist'),), 'aliases': (), 'sitelinks': (('enwiki', 'Maria Goodavage', None),), 'claims': ({'id': 'Q5', 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 5}, {'before': 0, 'precision': 9, 'property': 'P569', 'timezone': 0, 'after': 0, 'time': '+1962-01-01T00:00:00Z', 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'numeric-id': 325872, 'property': 'P735', 'type': 'wikibase-entityid', 'id': 'Q325872', 'entity-type': 'item'}, {'type': 'string', 'value': 'agent/base/133634', 'property': 'P7704'}, {'entity-type': 'item', 'id': 'Q6581072', 'property': 'P21', 'type': 'wikibase-entityid', 'numeric-id': 6581072}, {'entity-type': 'item', 'property': 'P69', 'id': 'Q309350', 'numeric-id': 309350, 'type': 'wikibase-entityid'}, {'property': 'P1412', 'entity-type': 'item', 'id': 'Q1860', 'numeric-id': 1860, 'type': 'wikibase-entityid'}, {'value': '1140000791556577152', 'property': 'P11496', 'type': 'string'}, {'property': 'P27', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q30', 'numeric-id': 30}, {'property': 'P18', 'value': 'Maria Goodavage, author.png', 'type': 'string'}, {'entity-type': 'item', 'id': 'Q11030', 'property': 'P101', 'numeric-id': 11030, 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P101', 'numeric-id': 12108348, 'id': 'Q12108348'}, {'property': 'P101', 'id': 'Q39235', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 39235}, {'numeric-id': 36180, 'property': 'P106', 'type': 'wikibase-entityid', 'id': 'Q36180', 'entity-type': 'item'}, {'numeric-id': 1930187, 'property': 'P106', 'id': 'Q1930187', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q1607826', 'type': 'wikibase-entityid', 'numeric-id': 1607826, 'property': 'P106'}, {'type': 'wikibase-entityid', 'id': 'Q104665671', 'numeric-id': 104665671, 'property': 'P5008', 'entity-type': 'item'}), 'title': 'Q6761229'}
{'type': 'item', 'id': 'Q6761321', 'labels': (('en', 'Maria Korchinska'),), 'descriptions': (('en-g', 'Russian musician'), ('en-ca', 'Russian musician'), ('en', 'Russian musician')), 'aliases': (('en', 'Mariya Aleksandrovna Korchinskaya'),), 'sitelinks': (('dewiki', 'Maria Korchinska', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x8a\xd8\xa7 \xd9\x83\xd9\x88\xd8\xb1\xd8\xaa\xd8\xb4\xd9\x8a\xd9\x86\xd8\xb3\xd9\x83\xd8\xa7', None), ('cawiki', 'Maria Korchinska', None), ('enwiki', 'Maria Korchinska', None), ('ruwiki', '\xd0\x9a\xd0\xbe\xd1\x80\xd1\x87\xd0\xb8\xd0\xbd\xd1\x81\xd0\xba\xd0\xb0\xd1\x8f, \xd0\x9c\xd0\xb0\xd1\x80\xd0\xb8\xd1\x8f \xd0\x90\xd0\xbb\xd0\xb5\xd0\xba\xd1\x81\xd0\xb0\xd0\xbd\xd0\xb4\xd1\x80\xd0\xbe\xd0\xb2\xd0\xbd\xd0\xb0', None), ('commonswiki', 'Category:Maria Korchinska', None)), 'claims': ({'type': 'time', 'after': 0, 'timezone': 0, 'property': 'P570', 'time': '+1979-04-17T00:00:00Z', 'before': 0, 'precision': 11, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'id': 'Q39897333', 'numeric-id': 39897333, 'property': 'P735', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 325872, 'type': 'wikibase-entityid', 'id': 'Q325872', 'property': 'P735'}, {'type': 'wikibase-entityid', 'property': 'P53', 'entity-type': 'item', 'id': 'Q3743074', 'numeric-id': 3743074}, {'property': 'P1303', 'numeric-id': 47369, 'id': 'Q47369', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q16145150', 'entity-type': 'item', 'numeric-id': 16145150, 'property': 'P106', 'type': 'wikibase-entityid'}, {'id': 'Q215539', 'numeric-id': 215539, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P69'}, {'id': 'Q6581072', 'numeric-id': 6581072, 'entity-type': 'item', 'property': 'P21', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q649', 'property': 'P19', 'numeric-id': 649}, {'id': 'Q75376578', 'numeric-id': 75376578, 'property': 'P40', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'property': 'P40', 'type': 'wikibase-entityid', 'id': 'Q75376572', 'numeric-id': 75376572}, {'type': 'string', 'property': 'P373', 'value': 'Maria Korchinska'}, {'property': 'P27', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 34266, 'id': 'Q34266'}, {'property': 'P27', 'type': 'wikibase-entityid', 'numeric-id': 15180, 'id': 'Q15180', 'entity-type': 'item'}, {'property': 'P27', 'id': 'Q145', 'type': 'wikibase-entityid', 'numeric-id': 145, 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q174193', 'property': 'P27', 'type': 'wikibase-entityid', 'numeric-id': 174193}, {'property': 'P7704', 'value': 'agent/base/43328', 'type': 'string'}, {'id': 'Q55681741', 'numeric-id': 55681741, 'property': 'P26', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'string', 'value': 'korchinskaia-mariia-aleksandrovna-030c4', 'property': 'P11514'}, {'value': 'Maria Korchinska (1960).jpg', 'type': 'string', 'property': 'P18'}, {'numeric-id': 1860, 'type': 'wikibase-entityid', 'property': 'P1412', 'entity-type': 'item', 'id': 'Q1860'}, {'type': 'wikibase-entityid', 'property': 'P20', 'entity-type': 'item', 'id': 'Q84', 'numeric-id': 84}, {'numeric-id': 215539, 'entity-type': 'item', 'property': 'P108', 'id': 'Q215539', 'type': 'wikibase-entityid'}, {'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q5', 'numeric-id': 5}, {'time': '+1895-02-17T00:00:00Z', 'after': 0, 'property': 'P569', 'timezone': 0, 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985786', 'type': 'time', 'precision': 11}, {'time': '+1895-02-16T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'type': 'time', 'before': 0, 'precision': 11, 'property': 'P569', 'timezone': 0}), 'title': 'Q6761321'}
{'type': 'item', 'id': 'Q6761544', 'labels': (('en', 'Maria Roka'),), 'descriptions': (('en', 'Hungarian canoeist'),), 'aliases': (('en', 'M\xc3\xa1ria R\xc3\xb3ka'),), 'sitelinks': (('enwiki', 'Maria Roka', None), ('dewiki', 'M\xc3\xa1ria R\xc3\xb3ka', None)), 'claims': ({'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 28, 'property': 'P27', 'id': 'Q28'}, {'after': 0, 'timezone': 0, 'type': 'time', 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'time': '+2021-09-28T00:00:00Z', 'property': 'P570'}, {'property': 'P31', 'id': 'Q5', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 5}, {'type': 'time', 'precision': 11, 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'before': 0, 'timezone': 0, 'time': '+1940-09-15T00:00:00Z'}, {'property': 'P1344', 'entity-type': 'item', 'id': 'Q8420', 'type': 'wikibase-entityid', 'numeric-id': 8420}, {'numeric-id': 13382566, 'entity-type': 'item', 'id': 'Q13382566', 'property': 'P106', 'type': 'wikibase-entityid'}, {'numeric-id': 1781, 'type': 'wikibase-entityid', 'id': 'Q1781', 'property': 'P19', 'entity-type': 'item'}, {'property': 'P21', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q6581072', 'numeric-id': 6581072}, {'id': 'Q213934', 'property': 'P641', 'entity-type': 'item', 'numeric-id': 213934, 'type': 'wikibase-entityid'}, {'numeric-id': 6949677, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q6949677', 'property': 'P735'}, {'numeric-id': 21493719, 'id': 'Q21493719', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P734'}), 'title': 'Q6761544'}
{'type': 'item', 'id': 'Q6761707', 'labels': (('en', 'Maria do Ros\xc3\xa1rio'), ('en-ca', 'Maria do Ros\xc3\xa1rio'), ('en-g', 'Maria do Ros\xc3\xa1rio')), 'descriptions': (('en', 'Brazilian politician'),), 'aliases': (('en', 'Maria do Rosario'),), 'sitelinks': (('arzwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x8a\xd8\xa7 \xd8\xaf\xd9\x88 \xd8\xb1\xd9\x88\xd8\xb3\xd8\xa7\xd8\xb1\xd9\x8a\xd9\x88', None), ('frwiki', 'Maria do Ros\xc3\xa1rio', None), ('ptwiki', 'Maria do Ros\xc3\xa1rio', None), ('eswiki', 'Maria do Ros\xc3\xa1rio', None), ('astwiki', 'Maria do Ros\xc3\xa1rio', None), ('commonswiki', 'Category:Maria do Ros\xc3\xa1rio', None), ('cawiki', 'Maria do Ros\xc3\xa1rio Nunes', None), ('dewiki', 'Maria do Ros\xc3\xa1rio', None), ('viwiki', 'Maria do Ros\xc3\xa1rio', None), ('enwiki', 'Maria do Ros\xc3\xa1rio', None)), 'claims': ({'type': 'string', 'value': 'Q6761707', 'property': 'P10632'}, {'property': 'P39', 'numeric-id': 59401956, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q59401956'}, {'numeric-id': 59401956, 'entity-type': 'item', 'id': 'Q59401956', 'property': 'P39', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 59401956, 'id': 'Q59401956', 'property': 'P39', 'type': 'wikibase-entityid'}, {'numeric-id': 59401956, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P39', 'id': 'Q59401956'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P39', 'numeric-id': 59401956, 'id': 'Q59401956'}, {'entity-type': 'item', 'id': 'Q53864927', 'numeric-id': 53864927, 'type': 'wikibase-entityid', 'property': 'P39'}, {'id': 'Q53935050', 'entity-type': 'item', 'numeric-id': 53935050, 'property': 'P39', 'type': 'wikibase-entityid'}, {'numeric-id': 53935050, 'entity-type': 'item', 'id': 'Q53935050', 'property': 'P39', 'type': 'wikibase-entityid'}, {'property': 'P18', 'type': 'string', 'value': 'Maria do rosario 2.jpg'}, {'entity-type': 'item', 'numeric-id': 7066, 'id': 'Q7066', 'property': 'P140', 'type': 'wikibase-entityid'}, {'type': 'string', 'value': 'mariadorosario', 'property': 'P2002'}, {'id': 'Q766447', 'property': 'P69', 'numeric-id': 766447, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P69', 'entity-type': 'item', 'numeric-id': 835960, 'id': 'Q835960', 'type': 'wikibase-entityid'}, {'property': 'P2003', 'type': 'string', 'value': '_mariadorosario'}, {'type': 'time', 'time': '+1966-11-22T00:00:00Z', 'precision': 11, 'property': 'P569', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'before': 0, 'timezone': 0}, {'numeric-id': 657089, 'type': 'wikibase-entityid', 'id': 'Q657089', 'entity-type': 'item', 'property': 'P102'}, {'numeric-id': 325872, 'type': 'wikibase-entityid', 'id': 'Q325872', 'property': 'P735', 'entity-type': 'item'}, {'entity-type': 'item', 'numeric-id': 82955, 'type': 'wikibase-entityid', 'id': 'Q82955', 'property': 'P106'}, {'type': 'string', 'property': 'P2013', 'value': 'DeputadaMariaDoRosario'}, {'property': 'P856', 'type': 'string', 'value': 'https://mariadorosario.com.br/'}, {'numeric-id': 43272611, 'id': 'Q43272611', 'property': 'P734', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'numeric-id': 155, 'property': 'P27', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q155'}, {'property': 'P103', 'numeric-id': 5146, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q5146'}, {'property': 'P21', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q6581072', 'numeric-id': 6581072}, {'type': 'string', 'property': 'P373', 'value': 'Maria do Ros\xc3\xa1rio'}, {'amount': '+399984', 'unit': '1', 'property': 'P8687', 'type': 'quantity'}, {'amount': '+449823', 'type': 'quantity', 'property': 'P8687', 'unit': '1'}, {'property': 'P8687', 'type': 'quantity', 'unit': '1', 'amount': '+547003'}, {'numeric-id': 5, 'id': 'Q5', 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'numeric-id': 5146, 'entity-type': 'item', 'property': 'P1412', 'id': 'Q5146', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q2844', 'property': 'P937', 'numeric-id': 2844, 'type': 'wikibase-entityid'}, {'numeric-id': 1101945, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q1101945', 'property': 'P19'}), 'title': 'Q6761707'}
{'type': 'item', 'id': 'Q6761888', 'labels': (('en', 'Marian Green'),), 'descriptions': (('en', 'British pagan'),), 'aliases': (), 'sitelinks': (('dewiki', 'Marian Green', None), ('enwiki', 'Marian Green', None), ('arwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x8a\xd8\xa7\xd9\x86 \xd8\xba\xd8\xb1\xd9\x8a\xd9\x86', None)), 'claims': ({'id': 'Q2703137', 'entity-type': 'item', 'numeric-id': 2703137, 'type': 'wikibase-entityid', 'property': 'P734'}, {'numeric-id': 20155725, 'id': 'Q20155725', 'type': 'wikibase-entityid', 'property': 'P735', 'entity-type': 'item'}, {'value': '14774200', 'type': 'string', 'property': 'P11249'}, {'entity-type': 'item', 'property': 'P1412', 'numeric-id': 1860, 'id': 'Q1860', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'property': 'P106', 'id': 'Q36180', 'type': 'wikibase-entityid', 'numeric-id': 36180}, {'id': 'Q145', 'property': 'P27', 'entity-type': 'item', 'numeric-id': 145, 'type': 'wikibase-entityid'}, {'id': 'Q6581072', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 6581072, 'property': 'P21'}, {'time': '+1944-01-01T00:00:00Z', 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'precision': 9, 'timezone': 0, 'type': 'time', 'after': 0}, {'property': 'P31', 'id': 'Q5', 'type': 'wikibase-entityid', 'numeric-id': 5, 'entity-type': 'item'}), 'title': 'Q6761888'}
{'type': 'item', 'id': 'Q6762062', 'labels': (('en', 'Mariana Sans\xc3\xb3n Arg\xc3\xbcello'),), 'descriptions': (('en-ca', 'Nicaraguan poet'), ('en-g', 'Nicaraguan poet'), ('en', 'Nicaraguan poet (1918-2002)')), 'aliases': (), 'sitelinks': (('dewiki', 'Mariana Sans\xc3\xb3n Arg\xc3\xbcello', None), ('enwiki', 'Mariana Sans\xc3\xb3n Arg\xc3\xbcello', None), ('eswiki', 'Mariana Sans\xc3\xb3n Arg\xc3\xbcello', None)), 'claims': ({'numeric-id': 6581072, 'entity-type': 'item', 'id': 'Q6581072', 'property': 'P21', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 208151, 'type': 'wikibase-entityid', 'property': 'P19', 'id': 'Q208151'}, {'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'after': 0, 'type': 'time', 'timezone': 0, 'property': 'P570', 'time': '+2002-05-06T00:00:00Z'}, {'entity-type': 'item', 'property': 'P31', 'id': 'Q5', 'type': 'wikibase-entityid', 'numeric-id': 5}, {'property': 'P6553', 'id': 'L484', 'numeric-id': 484, 'type': 'wikibase-entityid', 'entity-type': 'lexeme'}, {'numeric-id': 811, 'type': 'wikibase-entityid', 'id': 'Q811', 'property': 'P27', 'entity-type': 'item'}, {'type': 'time', 'timezone': 0, 'time': '+1918-06-06T00:00:00Z', 'after': 0, 'precision': 11, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0, 'property': 'P569'}, {'property': 'P735', 'numeric-id': 14437342, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q14437342'}, {'id': 'Q49757', 'type': 'wikibase-entityid', 'property': 'P106', 'entity-type': 'item', 'numeric-id': 49757}, {'id': 'Q36180', 'numeric-id': 36180, 'entity-type': 'item', 'property': 'P106', 'type': 'wikibase-entityid'}), 'title': 'Q6762062'}
{'type': 'item', 'id': 'Q6762138', 'labels': (('en', 'Marianka, \xc5\xbbyrard\xc3\xb3w County'),), 'descriptions': (('en', 'village in Masovian, Poland'),), 'aliases': (), 'sitelinks': (('cewiki', '\xd0\x9c\xd0\xb0\xd1\x80\xd1\x8f\xd0\xbd\xd0\xba\xd0\xb0 (\xd0\x96\xd0\xb8\xd1\x80\xd0\xb0\xd1\x80\xd0\xb4\xd0\xbe\xd0\xb2\xd1\x81\xd0\xba\xd0\xb0\xd0\xbd \xd0\xbf\xd0\xbe\xd0\xb2\xd0\xb5\xd1\x82)', None), ('zh_min_nanwiki', 'Marianka (\xc5\xbbyrard\xc3\xb3w K\xc5\xabn)', None), ('ttwiki', '\xd0\x9c\xd0\xb0\xd1\x80\xd1\x8f\xd0\xbd\xd0\xba\xd0\xb0 (\xd0\x96\xd0\xb8\xd1\x80\xd0\xb0\xd1\x80\xd0\xb4\xd0\xbe\xd0\xb2\xd1\x81\xd0\xba\xd0\xb8\xd0\xb9 \xd0\xbf\xd0\xbe\xd0\xb2\xd1\x8f\xd1\x82\xd1\x8b)', None), ('plwiki', 'Marianka (powiat \xc5\xbcyrardowski)', None), ('ukwiki', '\xd0\x9c\xd0\xb0\xd1\x80\xd1\x8f\xd0\xbd\xd0\xba\xd0\xb0 (\xd0\x96\xd0\xb8\xd1\x80\xd0\xb0\xd1\x80\xd0\xb4\xd0\xbe\xd0\xb2\xd1\x81\xd1\x8c\xd0\xba\xd0\xb8\xd0\xb9 \xd0\xbf\xd0\xbe\xd0\xb2\xd1\x96\xd1\x82)', None), ('enwiki', 'Marianka, \xc5\xbbyrard\xc3\xb3w County', None), ('frwiki', 'Marianka (\xc5\xbbyrard\xc3\xb3w)', None)), 'claims': ({'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q3558970', 'entity-type': 'item', 'numeric-id': 3558970}, {'property': 'P1540', 'amount': '+32', 'type': 'quantity', 'unit': '1'}, {'amount': '+161', 'unit': 'http://www.wikidata.org/entity/Q11573', 'type': 'quantity', 'property': 'P2044'}, {'amount': '+23', 'type': 'quantity', 'property': 'P1539', 'unit': '1'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 2460337, 'id': 'Q2460337', 'property': 'P131'}, {'property': 'P421', 'id': 'Q6655', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 6655}, {'entity-type': 'item', 'id': 'Q6723', 'numeric-id': 6723, 'property': 'P421', 'type': 'wikibase-entityid'}, {'property': 'P17', 'id': 'Q36', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 36}, {'amount': '+55', 'property': 'P1082', 'type': 'quantity', 'unit': '1'}), 'title': 'Q6762138'}
{'type': 'item', 'id': 'Q6762171', 'labels': (('en', 'Marianna Kistler Beach Museum of Art'),), 'descriptions': (('en', 'university museum in Kansas, U.S.'),), 'aliases': (('en', 'Beach Museum'), ('en', 'Marianna Kistler Beach Museum of Art - Kansas State University')), 'sitelinks': (('enwiki', 'Marianna Kistler Beach Museum of Art', None),), 'claims': ({'numeric-id': 17045168, 'id': 'Q17045168', 'property': 'P463', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'type': 'string', 'value': 'beachmuseum', 'property': 'P2003'}, {'property': 'P8687', 'type': 'quantity', 'unit': '1', 'amount': '+1017'}, {'amount': '+1005', 'type': 'quantity', 'unit': '1', 'property': 'P8687'}, {'type': 'string', 'value': 'https://beach.k-state.edu/', 'property': 'P856'}, {'numeric-id': 856841, 'id': 'Q856841', 'property': 'P276', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'string', 'property': 'P2002', 'value': 'beachmuseum'}, {'numeric-id': 1558, 'id': 'Q1558', 'property': 'P131', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'value': '57355946', 'property': 'P10689', 'type': 'string'}, {'numeric-id': 2842849, 'type': 'wikibase-entityid', 'property': 'P5514', 'entity-type': 'item', 'id': 'Q2842849'}, {'id': 'Q866133', 'type': 'wikibase-entityid', 'numeric-id': 866133, 'entity-type': 'item', 'property': 'P31'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P17', 'numeric-id': 30, 'id': 'Q30'}), 'title': 'Q6762171'}
{'type': 'item', 'id': 'Q6762274', 'labels': (('en', 'Marianne Strauss'),), 'descriptions': (('en', 'German Holocaust survivior'),), 'aliases': (), 'sitelinks': (('enwiki', 'Marianne Strauss', None), ('frwiki', 'Marianne Strauss', None), ('dewiki', 'Marianne Strau\xc3\x9f-Ellenbogen', None)), 'claims': ({'entity-type': 'item', 'id': 'Q183', 'numeric-id': 183, 'property': 'P27', 'type': 'wikibase-entityid'}, {'precision': 9, 'property': 'P569', 'type': 'time', 'before': 0, 'time': '+1923-01-01T00:00:00Z', 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0}, {'entity-type': 'item', 'id': 'Q647460', 'numeric-id': 647460, 'property': 'P102', 'type': 'wikibase-entityid'}, {'property': 'P1412', 'numeric-id': 188, 'entity-type': 'item', 'id': 'Q188', 'type': 'wikibase-entityid'}, {'id': 'Q6581072', 'property': 'P21', 'entity-type': 'item', 'numeric-id': 6581072, 'type': 'wikibase-entityid'}, {'property': 'P103', 'id': 'Q188', 'type': 'wikibase-entityid', 'numeric-id': 188, 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'numeric-id': 18760860, 'entity-type': 'item', 'property': 'P735', 'id': 'Q18760860'}, {'id': 'Q24826', 'numeric-id': 24826, 'entity-type': 'item', 'property': 'P20', 'type': 'wikibase-entityid'}, {'before': 0, 'timezone': 0, 'precision': 9, 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1996-01-01T00:00:00Z', 'after': 0, 'property': 'P570'}, {'type': 'wikibase-entityid', 'numeric-id': 2066, 'id': 'Q2066', 'property': 'P19', 'entity-type': 'item'}, {'entity-type': 'item', 'numeric-id': 5, 'id': 'Q5', 'type': 'wikibase-entityid', 'property': 'P31'}), 'title': 'Q6762274'}
{'type': 'item', 'id': 'Q6762813', 'labels': (('en', 'Ponyu'),), 'descriptions': (('en', 'river in Komi, Russia, tributary of Kozhim'),), 'aliases': (), 'sitelinks': (('kywiki', '\xd0\x9f\xd0\xbe\xd0\xbd-\xd0\xae', None), ('ttwiki', '\xd0\x9f\xd0\xbe\xd0\xbd-\xd0\xae', None), ('bawiki', '\xd0\x9f\xd0\xbe\xd0\xbd-\xd0\xae', None), ('kkwiki', '\xd0\x9f\xd0\xbe\xd0\xbd-\xd0\xae', None), ('cvwiki', '\xd0\x9f\xd0\xbe\xd0\xbd-\xd0\xae', None)), 'claims': ({'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q4022', 'numeric-id': 4022, 'property': 'P31'}, {'id': 'Q159', 'property': 'P17', 'numeric-id': 159, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'numeric-id': 2073, 'entity-type': 'item', 'property': 'P131', 'type': 'wikibase-entityid', 'id': 'Q2073'}, {'numeric-id': 1112806, 'type': 'wikibase-entityid', 'id': 'Q1112806', 'property': 'P403', 'entity-type': 'item'}), 'title': 'Q6762813'}
{'type': 'item', 'id': 'Q6763174', 'labels': (('en', 'Mariemont Players'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('enwiki', 'Mariemont Players', None),), 'claims': ({'entity-type': 'item', 'numeric-id': 30, 'type': 'wikibase-entityid', 'property': 'P17', 'id': 'Q30'},), 'title': 'Q6763174'}
{'type': 'item', 'id': 'Q6763248', 'labels': (('en', 'Marietta Seven'),), 'descriptions': (('en', 'exonerated defendants of 1971 murder charge'),), 'aliases': (), 'sitelinks': (('enwiki', 'Marietta Seven', None),), 'claims': (), 'title': 'Q6763248'}
{'type': 'item', 'id': 'Q6763320', 'labels': (('en', 'Marija Mitrovi\xc4\x87'),), 'descriptions': (('en', 'Serbian singer'), ('en-g', 'Serbian singer'), ('en-ca', 'Serbian singer')), 'aliases': (), 'sitelinks': (('eswiki', 'Marija Mitrovic', None),), 'claims': ({'property': 'P1303', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q17172850', 'numeric-id': 17172850}, {'id': 'Q5', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 5, 'property': 'P31'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 18603722, 'id': 'Q18603722', 'property': 'P735'}, {'property': 'P106', 'type': 'wikibase-entityid', 'numeric-id': 177220, 'id': 'Q177220', 'entity-type': 'item'}, {'entity-type': 'item', 'numeric-id': 403, 'type': 'wikibase-entityid', 'property': 'P27', 'id': 'Q403'}, {'type': 'string', 'value': 'agent/base/54781', 'property': 'P7704'}, {'numeric-id': 6581072, 'entity-type': 'item', 'id': 'Q6581072', 'property': 'P21', 'type': 'wikibase-entityid'}, {'type': 'string', 'value': 'http://www.creativeband.net/', 'property': 'P856'}, {'precision': 11, 'before': 0, 'property': 'P569', 'time': '+1983-03-02T00:00:00Z', 'timezone': 0, 'type': 'time', 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 1860, 'id': 'Q1860', 'property': 'P1412'}, {'entity-type': 'item', 'numeric-id': 192606, 'property': 'P19', 'type': 'wikibase-entityid', 'id': 'Q192606'}), 'title': 'Q6763320'}
{'type': 'item', 'id': 'Q6763401', 'labels': (('en', 'Marika Hanbury-Tenison'),), 'descriptions': (('en', 'English journalist and cookery writer'),), 'aliases': (), 'sitelinks': (('enwiki', 'Marika Hanbury-Tenison', None),), 'claims': ({'id': 'Q6581072', 'entity-type': 'item', 'property': 'P21', 'type': 'wikibase-entityid', 'numeric-id': 6581072}, {'precision': 9, 'after': 0, 'property': 'P569', 'time': '+1938-01-01T00:00:00Z', 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'type': 'time'}, {'precision': 9, 'after': 0, 'timezone': 0, 'property': 'P570', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0, 'time': '+1982-01-01T00:00:00Z', 'type': 'time'}, {'entity-type': 'item', 'numeric-id': 3499072, 'type': 'wikibase-entityid', 'id': 'Q3499072', 'property': 'P106'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q1930187', 'property': 'P106', 'numeric-id': 1930187}, {'entity-type': 'item', 'numeric-id': 27431213, 'type': 'wikibase-entityid', 'id': 'Q27431213', 'property': 'P106'}, {'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 5, 'id': 'Q5'}, {'numeric-id': 3293081, 'property': 'P735', 'entity-type': 'item', 'id': 'Q3293081', 'type': 'wikibase-entityid'}), 'title': 'Q6763401'}
{'type': 'item', 'id': 'Q6763933', 'labels': (('en', 'Marina Uspenskaya'),), 'descriptions': (('en', 'Russian artist (1925-2007)'), ('en-g', 'Russian artist'), ('en-ca', 'Russian artist')), 'aliases': (('en', 'Marina Yevgenyevna Uspenskaya'),), 'sitelinks': (('enwiki', 'Marina Uspenskaya', None),), 'claims': ({'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 73555012, 'id': 'Q73555012', 'property': 'P7763'}, {'timezone': 0, 'time': '+1925-06-18T00:00:00Z', 'after': 0, 'type': 'time', 'before': 0, 'property': 'P569', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11}, {'property': 'P21', 'id': 'Q6581072', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 6581072}, {'property': 'P31', 'entity-type': 'item', 'numeric-id': 5, 'type': 'wikibase-entityid', 'id': 'Q5'}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 9, 'after': 0, 'property': 'P570', 'time': '+2007-01-01T00:00:00Z', 'before': 0, 'timezone': 0, 'type': 'time'}, {'id': 'Q1120708', 'numeric-id': 1120708, 'property': 'P735', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q1028181', 'numeric-id': 1028181, 'property': 'P106'}, {'type': 'string', 'value': 'agent/base/26308', 'property': 'P7704'}), 'title': 'Q6763933'}
{'type': 'item', 'id': 'Q6763962', 'labels': (('en', 'Marinas in Turkey'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('enwiki', 'Marinas in Turkey', None), ('mkwiki', '\xd0\x9c\xd0\xb0\xd1\x80\xd0\xb8\xd0\xbd\xd0\xb8 \xd0\xb2\xd0\xbe \xd0\xa2\xd1\x83\xd1\x80\xd1\x86\xd0\xb8\xd1\x98\xd0\xb0', None)), 'claims': ({'property': 'P17', 'entity-type': 'item', 'id': 'Q43', 'numeric-id': 43, 'type': 'wikibase-entityid'}, {'property': 'P910', 'type': 'wikibase-entityid', 'id': 'Q8608399', 'numeric-id': 8608399, 'entity-type': 'item'}, {'type': 'string', 'value': 'Marinas in Turkey', 'property': 'P373'}), 'title': 'Q6763962'}
{'type': 'item', 'id': 'Q6764022', 'labels': (('en', 'Marine Artillery Scout Observer Course'),), 'descriptions': (('en', 'training program in the United States Marine Corps'),), 'aliases': (), 'sitelinks': (('enwiki', 'Marine Artillery Scout Observer Course', None),), 'claims': ({'id': 'Q30', 'entity-type': 'item', 'numeric-id': 30, 'type': 'wikibase-entityid', 'property': 'P17'},), 'title': 'Q6764022'}
{'type': 'item', 'id': 'Q6764994', 'labels': (('en', 'D\xc3\xbczyaz\xc4\xb1'),), 'descriptions': (('en-g', 'k\xc3\xb6y in Akyaz\xc4\xb1, Turkey'), ('en-ca', 'k\xc3\xb6y in Akyaz\xc4\xb1, Turkey'), ('en', 'k\xc3\xb6y in Akyaz\xc4\xb1, Turkey')), 'aliases': (), 'sitelinks': (('trwiki', 'D\xc3\xbczyaz\xc4\xb1, Akyaz\xc4\xb1', None), ('cewiki', '\xd0\x94\xd1\x83\xd1\x8c\xd0\xb7\xd0\xb9\xd0\xb0\xd0\xb7\xd0\xb8 (\xd0\x90\xd0\xba\xd0\xb9\xd0\xb0\xd0\xb7\xd0\xb8)', None), ('ttwiki', '\xd0\x94\xd2\xaf\xd0\xb7\xd1\x8c\xd1\x8f\xd0\xb7\xd1\x8b (\xd0\x90\xd0\xba\xd1\x8a\xd1\x8f\xd0\xb7\xd1\x8b)', None), ('viwiki', 'D\xc3\xbczyaz\xc4\xb1, Akyaz\xc4\xb1', None)), 'claims': ({'numeric-id': 43, 'type': 'wikibase-entityid', 'property': 'P17', 'id': 'Q43', 'entity-type': 'item'}, {'numeric-id': 1529096, 'property': 'P31', 'id': 'Q1529096', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'numeric-id': 424435, 'id': 'Q424435', 'property': 'P131', 'entity-type': 'item', 'type': 'wikibase-entityid'}), 'title': 'Q6764994'}
{'type': 'item', 'id': 'Q6765017', 'labels': (('en', 'Mario Walsh'),), 'descriptions': (('en', 'Footballer (born 1966)'),), 'aliases': (('en', 'Mario Marcus Walsh'),), 'sitelinks': (('arwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x8a\xd9\x88 \xd9\x88\xd8\xa7\xd9\x84\xd8\xb4', None), ('enwiki', 'Mario Walsh', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x8a\xd9\x88 \xd9\x88\xd8\xa7\xd9\x84\xd8\xb4', None)), 'claims': ({'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P31', 'id': 'Q5', 'numeric-id': 5}, {'id': 'Q3362622', 'numeric-id': 3362622, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P735'}, {'property': 'P106', 'numeric-id': 937857, 'id': 'Q937857', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'timezone': 0, 'time': '+1966-01-19T00:00:00Z', 'before': 0, 'precision': 11, 'property': 'P569'}, {'id': 'Q145', 'property': 'P27', 'type': 'wikibase-entityid', 'numeric-id': 145, 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'property': 'P19', 'id': 'Q124230', 'numeric-id': 124230, 'entity-type': 'item'}, {'numeric-id': 280658, 'id': 'Q280658', 'property': 'P413', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'numeric-id': 7963813, 'property': 'P734', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q7963813'}, {'property': 'P641', 'type': 'wikibase-entityid', 'id': 'Q2736', 'numeric-id': 2736, 'entity-type': 'item'}, {'numeric-id': 1860, 'id': 'Q1860', 'entity-type': 'item', 'property': 'P1412', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'property': 'P21', 'id': 'Q6581097', 'entity-type': 'item', 'numeric-id': 6581097}, {'id': 'Q19604', 'property': 'P54', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 19604}, {'id': 'Q19578', 'entity-type': 'item', 'numeric-id': 19578, 'property': 'P54', 'type': 'wikibase-entityid'}, {'numeric-id': 47965, 'id': 'Q47965', 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P54'}, {'entity-type': 'item', 'id': 'Q48951', 'numeric-id': 48951, 'property': 'P54', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'property': 'P54', 'id': 'Q19578', 'numeric-id': 19578, 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q2136147', 'property': 'P54', 'numeric-id': 2136147, 'type': 'wikibase-entityid'}), 'title': 'Q6765017'}
{'type': 'item', 'id': 'Q6765141', 'labels': (('en', 'Marion County Housing Committee Demonstration House'),), 'descriptions': (('en', 'building in Oregon, United States'),), 'aliases': (), 'sitelinks': (('enwiki', 'Marion County Housing Committee Demonstration House', None),), 'claims': ({'numeric-id': 5148367, 'property': 'P149', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q5148367'}, {'property': 'P131', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q824', 'numeric-id': 824}, {'entity-type': 'item', 'numeric-id': 41176, 'id': 'Q41176', 'property': 'P31', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q30', 'numeric-id': 30, 'property': 'P17', 'type': 'wikibase-entityid'}, {'numeric-id': 19558910, 'entity-type': 'item', 'id': 'Q19558910', 'property': 'P1435', 'type': 'wikibase-entityid'}, {'property': 'P84', 'numeric-id': 5126636, 'entity-type': 'item', 'id': 'Q5126636', 'type': 'wikibase-entityid'}), 'title': 'Q6765141'}
{'type': 'item', 'id': 'Q6765323', 'labels': (('en', 'Marion O. McKinney, Jr.'),), 'descriptions': (('en', 'American aerospace engineer (1921-1999)'),), 'aliases': (), 'sitelinks': (('enwiki', 'Marion O. McKinney Jr.', None),), 'claims': ({'property': 'P569', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'timezone': 0, 'type': 'time', 'before': 0, 'precision': 11, 'time': '+1921-07-24T00:00:00Z'}, {'property': 'P734', 'id': 'Q21500484', 'entity-type': 'item', 'numeric-id': 21500484, 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'property': 'P106', 'type': 'wikibase-entityid', 'numeric-id': 10497074, 'id': 'Q10497074'}, {'entity-type': 'item', 'property': 'P106', 'numeric-id': 81096, 'type': 'wikibase-entityid', 'id': 'Q81096'}, {'after': 0, 'type': 'time', 'property': 'P570', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1999-08-03T00:00:00Z', 'before': 0, 'precision': 11, 'timezone': 0}, {'entity-type': 'item', 'id': 'Q5', 'numeric-id': 5, 'property': 'P31', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 6581097, 'property': 'P21', 'id': 'Q6581097'}, {'id': 'Q8038188', 'property': 'P166', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 8038188}, {'property': 'P735', 'numeric-id': 18689525, 'type': 'wikibase-entityid', 'id': 'Q18689525', 'entity-type': 'item'}), 'title': 'Q6765323'}
{'type': 'item', 'id': 'Q6765331', 'labels': (('en', 'Marion Peck'),), 'descriptions': (('en', 'American artist'),), 'aliases': (), 'sitelinks': (('itwiki', 'Marion Peck', None), ('cywiki', 'Marion Peck', None), ('frwiki', 'Marion Peck', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x8a\xd9\x88\xd9\x86 \xd8\xa8\xd9\x8a\xd9\x83', None), ('enwiki', 'Marion Peck', None), ('arwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x8a\xd9\x88\xd9\x86 \xd8\xa8\xd9\x8a\xd9\x83', None)), 'claims': ({'property': 'P264', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q2737528', 'numeric-id': 2737528}, {'numeric-id': 18686588, 'id': 'Q18686588', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P735'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q30', 'numeric-id': 30, 'property': 'P27'}, {'entity-type': 'item', 'property': 'P106', 'id': 'Q1028181', 'numeric-id': 1028181, 'type': 'wikibase-entityid'}, {'numeric-id': 16881065, 'id': 'Q16881065', 'property': 'P734', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'numeric-id': 617433, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q617433', 'property': 'P69'}, {'numeric-id': 1420239, 'type': 'wikibase-entityid', 'id': 'Q1420239', 'property': 'P69', 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q49208', 'numeric-id': 49208, 'property': 'P69', 'type': 'wikibase-entityid'}, {'id': 'Q1784728', 'entity-type': 'item', 'numeric-id': 1784728, 'property': 'P135', 'type': 'wikibase-entityid'}, {'id': 'Q73555012', 'type': 'wikibase-entityid', 'property': 'P7763', 'numeric-id': 73555012, 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q1461', 'numeric-id': 1461, 'property': 'P19'}, {'entity-type': 'item', 'numeric-id': 219625, 'property': 'P101', 'type': 'wikibase-entityid', 'id': 'Q219625'}, {'type': 'string', 'value': 'agent/base/90780', 'property': 'P7704'}, {'property': 'P9493', 'type': 'wikibase-entityid', 'numeric-id': 98665879, 'entity-type': 'item', 'id': 'Q98665879'}, {'id': 'Q6581072', 'numeric-id': 6581072, 'entity-type': 'item', 'property': 'P21', 'type': 'wikibase-entityid'}, {'numeric-id': 5, 'entity-type': 'item', 'id': 'Q5', 'type': 'wikibase-entityid', 'property': 'P31'}, {'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1963-10-03T00:00:00Z', 'timezone': 0, 'precision': 11, 'property': 'P569', 'before': 0, 'type': 'time'}), 'title': 'Q6765331'}
{'type': 'item', 'id': 'Q6765498', 'labels': (('en', 'Marios Leousis'),), 'descriptions': (('en', 'Greek magician'),), 'aliases': (), 'sitelinks': (('enwiki', 'Marios Leousis', None),), 'claims': ({'property': 'P106', 'entity-type': 'item', 'id': 'Q15855449', 'type': 'wikibase-entityid', 'numeric-id': 15855449}, {'numeric-id': 9129, 'type': 'wikibase-entityid', 'id': 'Q9129', 'entity-type': 'item', 'property': 'P1412'}, {'after': 0, 'precision': 11, 'property': 'P570', 'before': 0, 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+2011-10-31T00:00:00Z', 'timezone': 0}, {'entity-type': 'item', 'property': 'P27', 'type': 'wikibase-entityid', 'id': 'Q41', 'numeric-id': 41}, {'numeric-id': 5, 'id': 'Q5', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P31'}, {'time': '+1936-00-00T00:00:00Z', 'timezone': 0, 'precision': 9, 'type': 'time', 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0, 'property': 'P569'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 6581097, 'property': 'P21', 'id': 'Q6581097'}, {'entity-type': 'item', 'property': 'P735', 'id': 'Q97626507', 'numeric-id': 97626507, 'type': 'wikibase-entityid'}), 'title': 'Q6765498'}
{'type': 'item', 'id': 'Q6765709', 'labels': (('en', 'Maris\xe2\x80\x93McGwire\xe2\x80\x93Sosa pair'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('enwiki', 'Maris\xe2\x80\x93McGwire\xe2\x80\x93Sosa pair', None),), 'claims': (), 'title': 'Q6765709'}
{'type': 'item', 'id': 'Q6765684', 'labels': (('en', "Marist Red Foxes men's soccer"),), 'descriptions': (('en', 'Soccer team'),), 'aliases': (('en', "Marist Red Foxes men's soccer team"),), 'sitelinks': (('enwiki', "Marist Red Foxes men's soccer", None),), 'claims': ({'id': 'Q6765685', 'numeric-id': 6765685, 'property': 'P831', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P641', 'id': 'Q2736', 'type': 'wikibase-entityid', 'numeric-id': 2736, 'entity-type': 'item'}, {'id': 'Q30', 'entity-type': 'item', 'numeric-id': 30, 'property': 'P17', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q65634422', 'numeric-id': 65634422, 'property': 'P6112'}, {'property': 'P856', 'value': 'https://goredfoxes.com/sports/mens-soccer', 'type': 'string'}, {'type': 'wikibase-entityid', 'id': 'Q25087727', 'property': 'P910', 'entity-type': 'item', 'numeric-id': 25087727}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 15944511, 'property': 'P31', 'id': 'Q15944511'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 18558301, 'property': 'P31', 'id': 'Q18558301'}), 'title': 'Q6765684'}
{'type': 'item', 'id': 'Q6765985', 'labels': (('en', 'Marius Nicoar\xc4\x83'),), 'descriptions': (('en', 'Romanian politician'), ('en-g', 'Romanian politician'), ('en-ca', 'Romanian politician')), 'aliases': (), 'sitelinks': (('rowiki', 'Marius Nicoar\xc4\x83', None), ('enwiki', 'Marius Nicoar\xc4\x83', None)), 'claims': ({'id': 'Q107444377', 'numeric-id': 107444377, 'type': 'wikibase-entityid', 'property': 'P734', 'entity-type': 'item'}, {'property': 'P10632', 'type': 'string', 'value': 'Q6765985'}, {'id': 'Q5', 'property': 'P31', 'type': 'wikibase-entityid', 'numeric-id': 5, 'entity-type': 'item'}, {'entity-type': 'item', 'property': 'P21', 'type': 'wikibase-entityid', 'id': 'Q6581097', 'numeric-id': 6581097}, {'id': 'Q2159938', 'type': 'wikibase-entityid', 'numeric-id': 2159938, 'property': 'P735', 'entity-type': 'item'}, {'numeric-id': 82955, 'property': 'P106', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q82955'}, {'id': 'Q729296', 'entity-type': 'item', 'property': 'P69', 'numeric-id': 729296, 'type': 'wikibase-entityid'}, {'numeric-id': 686228, 'id': 'Q686228', 'property': 'P102', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'id': 'Q26934816', 'property': 'P102', 'numeric-id': 26934816, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'numeric-id': 19938957, 'property': 'P39', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q19938957'}, {'property': 'P39', 'entity-type': 'item', 'id': 'Q28041781', 'type': 'wikibase-entityid', 'numeric-id': 28041781}, {'property': 'P39', 'entity-type': 'item', 'id': 'Q19938957', 'numeric-id': 19938957, 'type': 'wikibase-entityid'}, {'numeric-id': 19938957, 'entity-type': 'item', 'property': 'P39', 'id': 'Q19938957', 'type': 'wikibase-entityid'}, {'after': 0, 'time': '+1958-11-19T00:00:00Z', 'before': 0, 'precision': 11, 'property': 'P569', 'timezone': 0, 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'property': 'P19', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q100188', 'numeric-id': 100188}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 218, 'property': 'P27', 'id': 'Q218'}, {'id': 'Q7913', 'numeric-id': 7913, 'type': 'wikibase-entityid', 'property': 'P1412', 'entity-type': 'item'}), 'title': 'Q6765985'}
{'type': 'item', 'id': 'Q6766087', 'labels': (('en', 'Mariya Shcherba'),), 'descriptions': (('en', 'belarussian swimmer'),), 'aliases': (('en', 'Maryya Shcherba'), ('en', 'Mariya Vyachaslavauna Shcherba'), ('en', 'Mariya Vyacheslavovna Shcherba')), 'sitelinks': (('enwiki', 'Mariya Shcherba', None), ('nowiki', 'Maryja Sjtsjerba', None)), 'claims': ({'after': 0, 'property': 'P569', 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0, 'type': 'time', 'time': '+1985-04-14T00:00:00Z', 'precision': 11}, {'property': 'P106', 'type': 'wikibase-entityid', 'numeric-id': 10843402, 'id': 'Q10843402', 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q6581072', 'numeric-id': 6581072, 'property': 'P21', 'type': 'wikibase-entityid'}, {'id': 'Q31920', 'entity-type': 'item', 'numeric-id': 31920, 'type': 'wikibase-entityid', 'property': 'P641'}, {'id': 'Q5', 'numeric-id': 5, 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'numeric-id': 19690848, 'id': 'Q19690848', 'property': 'P735', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q237655', 'entity-type': 'item', 'property': 'P19', 'numeric-id': 237655}, {'type': 'quantity', 'amount': '+61', 'unit': 'http://www.wikidata.org/entity/Q11570', 'property': 'P2067'}, {'property': 'P2048', 'amount': '+173', 'type': 'quantity', 'unit': 'http://www.wikidata.org/entity/Q174728'}, {'property': 'P1344', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 8558, 'id': 'Q8558'}, {'numeric-id': 184, 'entity-type': 'item', 'id': 'Q184', 'type': 'wikibase-entityid', 'property': 'P27'}), 'title': 'Q6766087'}
{'type': 'item', 'id': 'Q6766225', 'labels': (('en', 'Marjorie Blankstein'),), 'descriptions': (('en', 'Canadian activist'), ('en-ca', 'Canadian activist'), ('en-g', 'Canadian activist')), 'aliases': (), 'sitelinks': (('enwiki', 'Marjorie Blankstein', None),), 'claims': ({'property': 'P21', 'entity-type': 'item', 'id': 'Q6581072', 'type': 'wikibase-entityid', 'numeric-id': 6581072}, {'numeric-id': 1191833, 'property': 'P69', 'entity-type': 'item', 'id': 'Q1191833', 'type': 'wikibase-entityid'}, {'numeric-id': 37536534, 'property': 'P734', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q37536534'}, {'property': 'P569', 'before': 0, 'time': '+1929-00-00T00:00:00Z', 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'precision': 9, 'timezone': 0}, {'entity-type': 'item', 'id': 'Q16', 'numeric-id': 16, 'type': 'wikibase-entityid', 'property': 'P27'}, {'numeric-id': 15278101, 'type': 'wikibase-entityid', 'property': 'P166', 'entity-type': 'item', 'id': 'Q15278101'}, {'type': 'wikibase-entityid', 'id': 'Q1899812', 'numeric-id': 1899812, 'entity-type': 'item', 'property': 'P735'}, {'entity-type': 'item', 'id': 'Q5', 'numeric-id': 5, 'type': 'wikibase-entityid', 'property': 'P31'}), 'title': 'Q6766225'}
{'type': 'item', 'id': 'Q6766402', 'labels': (('en', 'Mark 118 bom'),), 'descriptions': (('en', 'type of Demolition bomb, free-fall general-purpose bom'),), 'aliases': (('en', 'M118'), ('en', 'Mk 118')), 'sitelinks': (('enwiki', 'Mark 118 bom', None), ('fawiki', '\xd8\xa7\xd9\x85\xdb\xb1\xdb\xb1\xdb\xb8', None), ('hewiki', 'M118', None)), 'claims': ({'value': 'M-118Bomb.jpg', 'property': 'P18', 'type': 'string'}, {'entity-type': 'item', 'id': 'Q15142894', 'numeric-id': 15142894, 'type': 'wikibase-entityid', 'property': 'P31'}, {'id': 'Q30', 'entity-type': 'item', 'numeric-id': 30, 'property': 'P495', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'property': 'P279', 'id': 'Q1137468', 'type': 'wikibase-entityid', 'numeric-id': 1137468}), 'title': 'Q6766402'}
{'type': 'item', 'id': 'Q6766664', 'labels': (('en', 'Mark Barroca'),), 'descriptions': (('en', 'Filipino basketball player'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mark Barroca', None), ('itwiki', 'Mark Barroca', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x83 \xd8\xa8\xd8\xa7\xd8\xb1\xd9\x88\xd9\x83\xd8\xa7', None), ('commonswiki', 'Category:Mark Barroca', None)), 'claims': ({'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q6581097', 'property': 'P21', 'numeric-id': 6581097}, {'property': 'P2031', 'timezone': 0, 'type': 'time', 'precision': 9, 'after': 0, 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+2011-00-00T00:00:00Z'}, {'after': 0, 'before': 0, 'precision': 11, 'property': 'P569', 'type': 'time', 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1986-04-25T00:00:00Z'}, {'property': 'P373', 'value': 'Mark Barroca', 'type': 'string'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P641', 'id': 'Q5372', 'numeric-id': 5372}, {'value': 'Mark Barroca.jpg', 'property': 'P18', 'type': 'string'}, {'entity-type': 'item', 'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q5', 'numeric-id': 5}, {'property': 'P27', 'id': 'Q928', 'numeric-id': 928, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q1254897', 'property': 'P69', 'numeric-id': 1254897}, {'id': 'Q1629', 'numeric-id': 1629, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P19'}, {'id': 'Q212413', 'numeric-id': 212413, 'property': 'P413', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q2014801', 'numeric-id': 2014801, 'property': 'P54'}, {'entity-type': 'item', 'numeric-id': 278048, 'type': 'wikibase-entityid', 'id': 'Q278048', 'property': 'P54'}, {'numeric-id': 13610143, 'property': 'P735', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q13610143'}, {'entity-type': 'item', 'property': 'P106', 'numeric-id': 3665646, 'id': 'Q3665646', 'type': 'wikibase-entityid'}, {'property': 'P2048', 'type': 'quantity', 'amount': '+70', 'unit': 'http://www.wikidata.org/entity/Q218593'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P1344', 'id': 'Q244322', 'numeric-id': 244322}, {'entity-type': 'item', 'property': 'P1344', 'type': 'wikibase-entityid', 'id': 'Q653408', 'numeric-id': 653408}, {'property': 'P1344', 'id': 'Q4630359', 'type': 'wikibase-entityid', 'numeric-id': 4630359, 'entity-type': 'item'}), 'title': 'Q6766664'}
{'type': 'item', 'id': 'Q6766779', 'labels': (('en', 'Mark Bonokoski'),), 'descriptions': (('en', 'Canadian journalist and political consultant'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mark Bonokoski', None),), 'claims': ({'property': 'P734', 'type': 'wikibase-entityid', 'numeric-id': 104980504, 'id': 'Q104980504', 'entity-type': 'item'}, {'property': 'P2002', 'type': 'string', 'value': 'markbonokoski'}, {'entity-type': 'item', 'id': 'Q16', 'numeric-id': 16, 'property': 'P27', 'type': 'wikibase-entityid'}, {'id': 'Q6581097', 'numeric-id': 6581097, 'entity-type': 'item', 'property': 'P21', 'type': 'wikibase-entityid'}, {'numeric-id': 611723, 'property': 'P69', 'id': 'Q611723', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'numeric-id': 13610143, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q13610143', 'property': 'P735'}, {'numeric-id': 546881, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q546881', 'property': 'P102'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 17351648, 'id': 'Q17351648', 'property': 'P106'}, {'after': 0, 'before': 0, 'time': '+1901-00-00T00:00:00Z', 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'type': 'time', 'precision': 7}, {'property': 'P2013', 'type': 'string', 'value': 'mark.bonokoski'}, {'type': 'wikibase-entityid', 'id': 'Q5', 'entity-type': 'item', 'numeric-id': 5, 'property': 'P31'}, {'type': 'quantity', 'amount': '+6194', 'property': 'P8687', 'unit': '1'}), 'title': 'Q6766779'}
{'type': 'item', 'id': 'Q6766962', 'labels': (('en', 'Mark Cairns'),), 'descriptions': (('en', 'Scottish footballer (born 1969)'),), 'aliases': (), 'sitelinks': (('arzwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x83 \xd9\x83\xd9\x8a\xd8\xb1\xd9\x86\xd8\xb2', None), ('enwiki', 'Mark Cairns (footballer)', None), ('arwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x83 \xd9\x83\xd9\x8a\xd8\xb1\xd9\x86\xd8\xb2', None)), 'claims': ({'timezone': 0, 'property': 'P569', 'type': 'time', 'after': 0, 'time': '+1969-09-25T00:00:00Z', 'before': 0, 'precision': 11, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'id': 'Q937857', 'entity-type': 'item', 'numeric-id': 937857, 'property': 'P106', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 5, 'id': 'Q5', 'type': 'wikibase-entityid', 'property': 'P31'}, {'property': 'P641', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 2736, 'id': 'Q2736'}, {'entity-type': 'item', 'numeric-id': 1377801, 'property': 'P54', 'type': 'wikibase-entityid', 'id': 'Q1377801'}, {'entity-type': 'item', 'numeric-id': 822722, 'type': 'wikibase-entityid', 'id': 'Q822722', 'property': 'P54'}, {'property': 'P54', 'id': 'Q904186', 'type': 'wikibase-entityid', 'numeric-id': 904186, 'entity-type': 'item'}, {'id': 'Q202093', 'numeric-id': 202093, 'type': 'wikibase-entityid', 'property': 'P54', 'entity-type': 'item'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 518259, 'property': 'P54', 'id': 'Q518259'}, {'id': 'Q1387066', 'property': 'P54', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 1387066}, {'type': 'wikibase-entityid', 'id': 'Q5517754', 'numeric-id': 5517754, 'property': 'P54', 'entity-type': 'item'}, {'id': 'Q852753', 'property': 'P54', 'type': 'wikibase-entityid', 'numeric-id': 852753, 'entity-type': 'item'}, {'id': 'Q4119230', 'property': 'P54', 'type': 'wikibase-entityid', 'numeric-id': 4119230, 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q282126', 'numeric-id': 282126, 'type': 'wikibase-entityid', 'property': 'P54'}, {'type': 'wikibase-entityid', 'id': 'Q539374', 'numeric-id': 539374, 'property': 'P54', 'entity-type': 'item'}, {'property': 'P19', 'numeric-id': 23436, 'id': 'Q23436', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P735', 'numeric-id': 13610143, 'entity-type': 'item', 'id': 'Q13610143', 'type': 'wikibase-entityid'}, {'id': 'Q145', 'property': 'P27', 'numeric-id': 145, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P413', 'numeric-id': 201330, 'entity-type': 'item', 'id': 'Q201330', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q1860', 'property': 'P1412', 'numeric-id': 1860, 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q6581097', 'numeric-id': 6581097, 'property': 'P21'}), 'title': 'Q6766962'}
{'type': 'item', 'id': 'Q6767228', 'labels': (('en', 'Mark Custom Recording Service'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('enwiki', 'Mark Custom Recording Service', None),), 'claims': ({'property': 'P31', 'entity-type': 'item', 'numeric-id': 18127, 'type': 'wikibase-entityid', 'id': 'Q18127'}, {'property': 'P856', 'type': 'string', 'value': 'http://www.markcustom.com/'}), 'title': 'Q6767228'}
{'type': 'item', 'id': 'Q6767524', 'labels': (('en', 'D\xc3\xb6\xc5\x9fekkaya'),), 'descriptions': (('en', 'village in Gen\xc3\xa7, Bing\xc3\xb6l, Turkey'), ('en-ca', 'k\xc3\xb6y in Gen\xc3\xa7, Turkey'), ('en-g', 'k\xc3\xb6y in Gen\xc3\xa7, Turkey')), 'aliases': (), 'sitelinks': (('ttwiki', '\xd0\x94\xd3\xa9\xd1\x88\xd0\xb5\xd0\xba\xd0\xba\xd0\xb0\xd1\x8f (\xd0\x93\xd0\xb5\xd0\xbd\xd1\x87)', None), ('viwiki', 'D\xc3\xb6\xc5\x9fekkaya, Gen\xc3\xa7', None), ('trwiki', 'D\xc3\xb6\xc5\x9fekkaya, Gen\xc3\xa7', None), ('enwiki', 'D\xc3\xb6\xc5\x9fekkaya, Gen\xc3\xa7', None), ('cewiki', '\xd0\x94\xd0\xbe\xd1\x8c\xd1\x88\xd0\xb5\xd0\xba\xd0\xba\xd0\xb0\xd0\xb9\xd0\xb0 (\xd0\x93\xd0\xb5\xd0\xbd\xd1\x87)', None)), 'claims': ({'id': 'Q1529096', 'entity-type': 'item', 'property': 'P31', 'numeric-id': 1529096, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'property': 'P131', 'id': 'Q203630', 'numeric-id': 203630, 'entity-type': 'item'}, {'numeric-id': 43, 'id': 'Q43', 'entity-type': 'item', 'property': 'P17', 'type': 'wikibase-entityid'}), 'title': 'Q6767524'}
{'type': 'item', 'id': 'Q6767542', 'labels': (('en', 'Mark Eubank'),), 'descriptions': (('en', 'American journalist'),), 'aliases': (('en', 'Mark Edwin Eubank'),), 'sitelinks': (('enwiki', 'Mark Eubank', None),), 'claims': ({'numeric-id': 174710, 'entity-type': 'item', 'id': 'Q174710', 'type': 'wikibase-entityid', 'property': 'P69'}, {'id': 'Q168515', 'entity-type': 'item', 'numeric-id': 168515, 'property': 'P69', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 495361, 'property': 'P19', 'id': 'Q495361', 'type': 'wikibase-entityid'}, {'id': 'Q6581097', 'type': 'wikibase-entityid', 'numeric-id': 6581097, 'property': 'P21', 'entity-type': 'item'}, {'entity-type': 'item', 'numeric-id': 42504, 'id': 'Q42504', 'property': 'P140', 'type': 'wikibase-entityid'}, {'property': 'P569', 'type': 'time', 'precision': 11, 'time': '+1940-06-10T00:00:00Z', 'after': 0, 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q5', 'numeric-id': 5, 'property': 'P31'}, {'id': 'Q30', 'entity-type': 'item', 'numeric-id': 30, 'property': 'P27', 'type': 'wikibase-entityid'}, {'numeric-id': 13610143, 'property': 'P735', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q13610143'}), 'title': 'Q6767542'}
{'type': 'item', 'id': 'Q6768112', 'labels': (('en', 'Mark Hotchin'),), 'descriptions': (('en', 'New Zealand businessman'),), 'aliases': (('en', 'Mark Stephen Hotchin'),), 'sitelinks': (('enwiki', 'Mark Hotchin', None),), 'claims': ({'id': 'Q13610143', 'numeric-id': 13610143, 'property': 'P735', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'time': '+1958-12-25T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'after': 0, 'type': 'time', 'before': 0, 'precision': 11, 'property': 'P569'}, {'numeric-id': 6581097, 'id': 'Q6581097', 'property': 'P21', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'property': 'P106', 'numeric-id': 43845, 'entity-type': 'item', 'id': 'Q43845'}, {'id': 'Q5', 'property': 'P31', 'type': 'wikibase-entityid', 'numeric-id': 5, 'entity-type': 'item'}, {'numeric-id': 7595156, 'type': 'wikibase-entityid', 'property': 'P69', 'entity-type': 'item', 'id': 'Q7595156'}, {'property': 'P69', 'type': 'wikibase-entityid', 'numeric-id': 6756381, 'entity-type': 'item', 'id': 'Q6756381'}, {'numeric-id': 664, 'property': 'P27', 'id': 'Q664', 'entity-type': 'item', 'type': 'wikibase-entityid'}), 'title': 'Q6768112'}
{'type': 'item', 'id': 'Q6768587', 'labels': (('en', 'Mark Lewis'),), 'descriptions': (('en', 'American baseball player, born 1969'),), 'aliases': (('en', 'Mark David Lewis'),), 'sitelinks': (('enwiki', 'Mark Lewis (baseball)', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x83 \xd9\x84\xd9\x88\xd9\x8a\xd8\xb3 (\xd9\x84\xd8\xa7\xd8\xb9\xd8\xa8 \xd8\xa8\xd9\x8a\xd8\xb3\xd8\xa8\xd9\x88\xd9\x84)', None), ('arwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x83 \xd9\x84\xd9\x88\xd9\x8a\xd8\xb3 (\xd9\x84\xd8\xa7\xd8\xb9\xd8\xa8 \xd9\x83\xd8\xb1\xd8\xa9 \xd9\x82\xd8\xa7\xd8\xb9\xd8\xaf\xd8\xa9)', None)), 'claims': ({'entity-type': 'item', 'id': 'Q852673', 'numeric-id': 852673, 'property': 'P19', 'type': 'wikibase-entityid'}, {'id': 'Q1163715', 'numeric-id': 1163715, 'property': 'P118', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P734', 'type': 'wikibase-entityid', 'id': 'Q426463', 'entity-type': 'item', 'numeric-id': 426463}, {'numeric-id': 5644992, 'property': 'P69', 'id': 'Q5644992', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P641', 'id': 'Q5369', 'numeric-id': 5369}, {'entity-type': 'item', 'id': 'Q6581097', 'property': 'P21', 'numeric-id': 6581097, 'type': 'wikibase-entityid'}, {'numeric-id': 10871364, 'entity-type': 'item', 'id': 'Q10871364', 'property': 'P106', 'type': 'wikibase-entityid'}, {'id': 'Q30', 'numeric-id': 30, 'property': 'P27', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'timezone': 0, 'type': 'time', 'time': '+1969-11-30T00:00:00Z', 'precision': 11, 'before': 0, 'property': 'P569'}, {'id': 'Q650840', 'type': 'wikibase-entityid', 'property': 'P54', 'entity-type': 'item', 'numeric-id': 650840}, {'id': 'Q650816', 'numeric-id': 650816, 'entity-type': 'item', 'property': 'P54', 'type': 'wikibase-entityid'}, {'property': 'P54', 'id': 'Q308966', 'type': 'wikibase-entityid', 'numeric-id': 308966, 'entity-type': 'item'}, {'numeric-id': 642553, 'type': 'wikibase-entityid', 'property': 'P54', 'entity-type': 'item', 'id': 'Q642553'}, {'entity-type': 'item', 'property': 'P54', 'id': 'Q826751', 'numeric-id': 826751, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q650855', 'property': 'P54', 'numeric-id': 650855}, {'type': 'wikibase-entityid', 'id': 'Q5', 'entity-type': 'item', 'property': 'P31', 'numeric-id': 5}, {'numeric-id': 13610143, 'type': 'wikibase-entityid', 'id': 'Q13610143', 'entity-type': 'item', 'property': 'P735'}, {'property': 'P413', 'id': 'Q1147776', 'type': 'wikibase-entityid', 'numeric-id': 1147776, 'entity-type': 'item'}), 'title': 'Q6768587'}
{'type': 'item', 'id': 'Q6768850', 'labels': (('en', 'Mark Medlock discography'),), 'descriptions': (), 'aliases': (('en', 'discography of Mark Medlock'), ('en', 'discography from Mark Medlock')), 'sitelinks': (('enwiki', 'Mark Medlock discography', None), ('dewiki', 'Mark Medlock/Diskografie', None)), 'claims': ({'entity-type': 'item', 'id': 'Q62342', 'numeric-id': 62342, 'property': 'P175', 'type': 'wikibase-entityid'}, {'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q273057', 'numeric-id': 273057}), 'title': 'Q6768850'}
{'type': 'item', 'id': 'Q6768933', 'labels': (('en', 'Mark Moran'),), 'descriptions': (('en', 'American soccer player'),), 'aliases': (), 'sitelinks': (('arzwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x83 \xd9\x85\xd9\x88\xd8\xb1\xd8\xa7\xd9\x86', None), ('enwiki', 'Mark Moran (soccer)', None), ('arwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x83 \xd9\x85\xd9\x88\xd8\xb1\xd8\xa7\xd9\x86', None)), 'claims': ({'id': 'Q30', 'property': 'P1532', 'type': 'wikibase-entityid', 'numeric-id': 30, 'entity-type': 'item'}, {'before': 0, 'after': 0, 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'precision': 11, 'timezone': 0, 'time': '+1954-09-26T00:00:00Z'}, {'numeric-id': 38022, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q38022', 'property': 'P19'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 519349, 'id': 'Q519349', 'property': 'P69'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q12190384', 'property': 'P734', 'numeric-id': 12190384}, {'entity-type': 'item', 'property': 'P641', 'type': 'wikibase-entityid', 'numeric-id': 2736, 'id': 'Q2736'}, {'id': 'Q30', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 30, 'property': 'P27'}, {'type': 'wikibase-entityid', 'numeric-id': 5, 'entity-type': 'item', 'id': 'Q5', 'property': 'P31'}, {'property': 'P413', 'entity-type': 'item', 'id': 'Q193592', 'type': 'wikibase-entityid', 'numeric-id': 193592}, {'numeric-id': 937857, 'type': 'wikibase-entityid', 'property': 'P106', 'entity-type': 'item', 'id': 'Q937857'}, {'numeric-id': 6581097, 'property': 'P21', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q6581097'}, {'property': 'P735', 'type': 'wikibase-entityid', 'id': 'Q13610143', 'numeric-id': 13610143, 'entity-type': 'item'}, {'entity-type': 'item', 'property': 'P54', 'type': 'wikibase-entityid', 'numeric-id': 1133687, 'id': 'Q1133687'}), 'title': 'Q6768933'}
{'type': 'item', 'id': 'Q6769202', 'labels': (('en', 'Mark Pedowitz'),), 'descriptions': (('en', 'American television executive'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mark Pedowitz', None), ('zhwiki', '\xe9\xa9\xac\xe5\x85\x8b\xc2\xb7\xe4\xbd\xa9\xe5\xbe\xb7\xe7\xbb\xb4\xe5\x85\xb9', None)), 'claims': ({'property': 'P735', 'id': 'Q13610143', 'type': 'wikibase-entityid', 'numeric-id': 13610143, 'entity-type': 'item'}, {'id': 'Q30', 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P27', 'numeric-id': 30}, {'property': 'P106', 'entity-type': 'item', 'numeric-id': 2961975, 'id': 'Q2961975', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 5, 'property': 'P31', 'id': 'Q5', 'type': 'wikibase-entityid'}, {'after': 0, 'before': 0, 'type': 'time', 'timezone': 0, 'precision': 9, 'time': '+1950-01-01T00:00:00Z', 'property': 'P569', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'numeric-id': 36881042, 'property': 'P734', 'type': 'wikibase-entityid', 'id': 'Q36881042', 'entity-type': 'item'}, {'property': 'P21', 'entity-type': 'item', 'id': 'Q6581097', 'type': 'wikibase-entityid', 'numeric-id': 6581097}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P69', 'id': 'Q7355238', 'numeric-id': 7355238}, {'entity-type': 'item', 'id': 'Q6246903', 'property': 'P69', 'numeric-id': 6246903, 'type': 'wikibase-entityid'}), 'title': 'Q6769202'}
{'type': 'item', 'id': 'Q6769235', 'labels': (('en', 'Mark Petersen-Perez'),), 'descriptions': (('en', 'financial analyst'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mark Petersen-Perez', None),), 'claims': ({'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P31', 'numeric-id': 5, 'id': 'Q5'}, {'property': 'P21', 'type': 'wikibase-entityid', 'id': 'Q6581097', 'numeric-id': 6581097, 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q1416279', 'numeric-id': 1416279, 'property': 'P106'}, {'id': 'Q13610143', 'property': 'P735', 'type': 'wikibase-entityid', 'numeric-id': 13610143, 'entity-type': 'item'}), 'title': 'Q6769235'}
{'type': 'item', 'id': 'Q6769337', 'labels': (('en', 'Mark Pringle'),), 'descriptions': (('en', 'Australian triathlete'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mark Pringle', None),), 'claims': ({'property': 'P106', 'entity-type': 'item', 'numeric-id': 15306067, 'id': 'Q15306067', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'property': 'P27', 'numeric-id': 408, 'id': 'Q408', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P734', 'id': 'Q21428216', 'numeric-id': 21428216}, {'entity-type': 'item', 'id': 'Q10980', 'numeric-id': 10980, 'type': 'wikibase-entityid', 'property': 'P641'}, {'time': '+2009-08-30T00:00:00Z', 'property': 'P570', 'before': 0, 'precision': 11, 'type': 'time', 'timezone': 0, 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'type': 'wikibase-entityid', 'id': 'Q6581097', 'property': 'P21', 'numeric-id': 6581097, 'entity-type': 'item'}, {'property': 'P735', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 13610143, 'id': 'Q13610143'}, {'id': 'Q3130', 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P19', 'numeric-id': 3130}, {'type': 'time', 'after': 0, 'before': 0, 'precision': 11, 'time': '+1977-05-17T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'timezone': 0}, {'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q5', 'numeric-id': 5}), 'title': 'Q6769337'}
{'type': 'item', 'id': 'Q6769353', 'labels': (('en', 'Mark Putnam'),), 'descriptions': (('en', 'American college president'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mark Putnam', None),), 'claims': ({'numeric-id': 13610143, 'entity-type': 'item', 'id': 'Q13610143', 'property': 'P735', 'type': 'wikibase-entityid'}, {'numeric-id': 30, 'property': 'P27', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q30'}, {'numeric-id': 6581097, 'property': 'P21', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q6581097'}, {'id': 'Q16881509', 'property': 'P734', 'numeric-id': 16881509, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'id': 'Q222344', 'entity-type': 'item', 'numeric-id': 222344, 'property': 'P106', 'type': 'wikibase-entityid'}, {'numeric-id': 49088, 'id': 'Q49088', 'type': 'wikibase-entityid', 'property': 'P69', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'numeric-id': 7691246, 'entity-type': 'item', 'id': 'Q7691246', 'property': 'P69'}, {'entity-type': 'item', 'property': 'P69', 'id': 'Q7070780', 'type': 'wikibase-entityid', 'numeric-id': 7070780}, {'type': 'string', 'value': 'Central College President Mark Putnam.jpg', 'property': 'P18'}, {'id': 'Q5', 'numeric-id': 5, 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item'}), 'title': 'Q6769353'}
{'type': 'item', 'id': 'Q6769352', 'labels': (('en', 'Mark Purnell'),), 'descriptions': (('en', 'British paleontologist'),), 'aliases': (('en', 'Mark Andrew Purnell'), ('en', 'Mark A. Purnell')), 'sitelinks': (('frwiki', 'Mark A. Purnell', None), ('enwiki', 'Mark Purnell', None), ('specieswiki', 'Mark A. Purnell', None)), 'claims': ({'entity-type': 'item', 'id': 'Q13610143', 'numeric-id': 13610143, 'property': 'P735', 'type': 'wikibase-entityid'}, {'id': 'Q472316', 'numeric-id': 472316, 'entity-type': 'item', 'property': 'P69', 'type': 'wikibase-entityid'}, {'id': 'Q837164', 'property': 'P69', 'type': 'wikibase-entityid', 'numeric-id': 837164, 'entity-type': 'item'}, {'numeric-id': 1662561, 'type': 'wikibase-entityid', 'id': 'Q1662561', 'entity-type': 'item', 'property': 'P106'}, {'property': 'P1412', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q1860', 'numeric-id': 1860}, {'id': 'Q21507733', 'type': 'wikibase-entityid', 'property': 'P734', 'entity-type': 'item', 'numeric-id': 21507733}, {'entity-type': 'item', 'id': 'Q5', 'type': 'wikibase-entityid', 'numeric-id': 5, 'property': 'P31'}, {'property': 'P27', 'id': 'Q145', 'type': 'wikibase-entityid', 'numeric-id': 145, 'entity-type': 'item'}, {'numeric-id': 1333399, 'property': 'P108', 'type': 'wikibase-entityid', 'id': 'Q1333399', 'entity-type': 'item'}, {'id': 'Q105093281', 'type': 'wikibase-entityid', 'property': 'P166', 'entity-type': 'item', 'numeric-id': 105093281}, {'entity-type': 'item', 'numeric-id': 6581097, 'property': 'P21', 'type': 'wikibase-entityid', 'id': 'Q6581097'}, {'property': 'P184', 'numeric-id': 7183455, 'entity-type': 'item', 'id': 'Q7183455', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P184', 'id': 'Q6097409', 'numeric-id': 6097409}, {'id': 'Q105092613', 'numeric-id': 105092613, 'property': 'P1066', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 21, 'id': 'Q21', 'property': 'P551'}), 'title': 'Q6769352'}
{'type': 'item', 'id': 'Q6769450', 'labels': (('en', 'Mark Ritchie'),), 'descriptions': (('en', 'American trader'),), 'aliases': (('en', 'Mark Andrew Ritchie'),), 'sitelinks': (('enwiki', 'Mark Ritchie (trader)', None),), 'claims': ({'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P735', 'id': 'Q13610143', 'numeric-id': 13610143}, {'id': 'Q7842863', 'entity-type': 'item', 'property': 'P69', 'type': 'wikibase-entityid', 'numeric-id': 7842863}, {'precision': 9, 'after': 0, 'time': '+1956-01-01T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'timezone': 0, 'type': 'time', 'before': 0}, {'id': 'Q5', 'numeric-id': 5, 'type': 'wikibase-entityid', 'property': 'P31', 'entity-type': 'item'}, {'property': 'P106', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 1424605, 'id': 'Q1424605'}, {'property': 'P27', 'numeric-id': 30, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q30'}, {'id': 'Q6581097', 'entity-type': 'item', 'numeric-id': 6581097, 'property': 'P21', 'type': 'wikibase-entityid'}, {'numeric-id': 12800227, 'id': 'Q12800227', 'property': 'P734', 'entity-type': 'item', 'type': 'wikibase-entityid'}), 'title': 'Q6769450'}
{'type': 'item', 'id': 'Q6769490', 'labels': (('en', 'Mark Rogondino'),), 'descriptions': (('en', 'American sports commentator'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mark Rogondino', ('Q70893996',)),), 'claims': ({'property': 'P8687', 'amount': '+5186', 'type': 'quantity', 'unit': '1'}, {'property': 'P8687', 'type': 'quantity', 'unit': '1', 'amount': '+5265'}, {'type': 'wikibase-entityid', 'property': 'P21', 'entity-type': 'item', 'numeric-id': 6581097, 'id': 'Q6581097'}, {'numeric-id': 5, 'entity-type': 'item', 'id': 'Q5', 'property': 'P31', 'type': 'wikibase-entityid'}, {'numeric-id': 2986228, 'entity-type': 'item', 'property': 'P106', 'id': 'Q2986228', 'type': 'wikibase-entityid'}, {'id': 'Q913861', 'entity-type': 'item', 'numeric-id': 913861, 'property': 'P69', 'type': 'wikibase-entityid'}, {'numeric-id': 30, 'property': 'P27', 'id': 'Q30', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'string', 'property': 'P2002', 'value': 'mrogondino'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 13610143, 'id': 'Q13610143', 'property': 'P735'}), 'title': 'Q6769490'}
{'type': 'item', 'id': 'Q6769652', 'labels': (('en', 'Mark Scott'),), 'descriptions': (('en', 'American radio host'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mark Scott (radio host)', None), ('arwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x83 \xd8\xb3\xd9\x83\xd9\x88\xd8\xaa (\xd9\x85\xd9\x82\xd8\xaf\xd9\x85 \xd8\xa8\xd8\xb1\xd8\xa7\xd9\x85\xd8\xac \xd8\xa5\xd8\xb0\xd8\xa7\xd8\xb9\xd9\x8a\xd8\xa9)', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x83 \xd8\xb3\xd9\x83\xd9\x88\xd8\xaa (\xd8\xa7\xd8\xb0\xd8\xa7\xd8\xb9\xd9\x89 \xd9\x85\xd9\x86 \xd8\xa7\xd9\x85\xd8\xb1\xd9\x8a\xd9\x83\xd8\xa7)', None)), 'claims': ({'entity-type': 'item', 'id': 'Q2722764', 'type': 'wikibase-entityid', 'numeric-id': 2722764, 'property': 'P106'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 30, 'id': 'Q30', 'property': 'P19'}, {'type': 'wikibase-entityid', 'id': 'Q13610143', 'property': 'P735', 'entity-type': 'item', 'numeric-id': 13610143}, {'property': 'P856', 'type': 'string', 'value': 'http://www.markscottshow.us'}, {'id': 'Q30', 'numeric-id': 30, 'property': 'P27', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'before': 0, 'time': '+1936-00-00T00:00:00Z', 'after': 0, 'timezone': 0, 'precision': 9, 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569'}, {'entity-type': 'item', 'property': 'P734', 'type': 'wikibase-entityid', 'numeric-id': 12800811, 'id': 'Q12800811'}, {'type': 'wikibase-entityid', 'numeric-id': 5, 'id': 'Q5', 'property': 'P31', 'entity-type': 'item'}, {'before': 0, 'time': '+2005-04-26T00:00:00Z', 'property': 'P570', 'timezone': 0, 'precision': 11, 'type': 'time', 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'before': 0, 'timezone': 0, 'type': 'time', 'property': 'P570', 'time': '+2005-04-24T00:00:00Z'}, {'property': 'P21', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q6581097', 'numeric-id': 6581097}), 'title': 'Q6769652'}
{'type': 'item', 'id': 'Q6769819', 'labels': (('en', 'Mark Starr'),), 'descriptions': (('en', 'British professional wrestler'),), 'aliases': (('en', 'Mark Ashford-Smith'),), 'sitelinks': (('eswiki', 'Mark Starr', None), ('arwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x83 \xd8\xb3\xd8\xaa\xd8\xa7\xd8\xb1', None), ('enwiki', 'Mark Starr', None)), 'claims': ({'property': 'P734', 'entity-type': 'item', 'id': 'Q16883799', 'numeric-id': 16883799, 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'property': 'P27', 'id': 'Q145', 'type': 'wikibase-entityid', 'numeric-id': 145}, {'after': 0, 'before': 0, 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1962-12-26T00:00:00Z', 'precision': 11, 'property': 'P569', 'timezone': 0}, {'entity-type': 'item', 'numeric-id': 3739104, 'property': 'P1196', 'type': 'wikibase-entityid', 'id': 'Q3739104'}, {'precision': 11, 'type': 'time', 'property': 'P570', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+2013-06-07T00:00:00Z', 'timezone': 0, 'after': 0, 'before': 0}, {'type': 'wikibase-entityid', 'id': 'Q23105', 'entity-type': 'item', 'numeric-id': 23105, 'property': 'P19'}, {'numeric-id': 131359, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q131359', 'property': 'P641'}, {'numeric-id': 6581097, 'property': 'P21', 'type': 'wikibase-entityid', 'id': 'Q6581097', 'entity-type': 'item'}, {'property': 'P1412', 'id': 'Q1860', 'numeric-id': 1860, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'numeric-id': 13610143, 'type': 'wikibase-entityid', 'id': 'Q13610143', 'property': 'P735', 'entity-type': 'item'}, {'entity-type': 'item', 'numeric-id': 5, 'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q5'}, {'numeric-id': 6769821, 'property': 'P1889', 'entity-type': 'item', 'id': 'Q6769821', 'type': 'wikibase-entityid'}, {'id': 'Q13474373', 'property': 'P106', 'numeric-id': 13474373, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q898109', 'property': 'P20', 'type': 'wikibase-entityid', 'numeric-id': 898109, 'entity-type': 'item'}, {'numeric-id': 12152, 'property': 'P509', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q12152'}), 'title': 'Q6769819'}
{'type': 'item', 'id': 'Q6770149', 'labels': (('en', 'Mark Vieha'),), 'descriptions': (('en', 'American singer'),), 'aliases': (), 'sitelinks': (), 'claims': ({'id': 'Q17172850', 'type': 'wikibase-entityid', 'property': 'P1303', 'numeric-id': 17172850, 'entity-type': 'item'}, {'id': 'Q6581097', 'entity-type': 'item', 'property': 'P21', 'type': 'wikibase-entityid', 'numeric-id': 6581097}, {'type': 'string', 'value': '433694', 'property': 'P12098'}, {'type': 'string', 'value': 'mark-vieha', 'property': 'P10302'}, {'type': 'wikibase-entityid', 'id': 'Q30', 'numeric-id': 30, 'entity-type': 'item', 'property': 'P27'}, {'property': 'P7704', 'type': 'string', 'value': 'agent/base/93522'}, {'id': 'Q5', 'numeric-id': 5, 'type': 'wikibase-entityid', 'property': 'P31', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'id': 'Q13610143', 'entity-type': 'item', 'property': 'P735', 'numeric-id': 13610143}, {'id': 'Q177220', 'numeric-id': 177220, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P106'}), 'title': 'Q6770149'}
{'type': 'item', 'id': 'Q6770174', 'labels': (('en', 'Mark W. Spong'),), 'descriptions': (('en', 'American control theorist'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mark W. Spong', None),), 'claims': ({'id': 'Q862733', 'entity-type': 'item', 'property': 'P19', 'numeric-id': 862733, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 13610143, 'property': 'P735', 'id': 'Q13610143'}, {'type': 'wikibase-entityid', 'id': 'Q6581097', 'entity-type': 'item', 'numeric-id': 6581097, 'property': 'P21'}, {'numeric-id': 30, 'entity-type': 'item', 'property': 'P27', 'id': 'Q30', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q3437279', 'numeric-id': 3437279, 'entity-type': 'item', 'property': 'P106'}, {'numeric-id': 1353248, 'type': 'wikibase-entityid', 'id': 'Q1353248', 'entity-type': 'item', 'property': 'P69'}, {'entity-type': 'item', 'numeric-id': 777403, 'type': 'wikibase-entityid', 'id': 'Q777403', 'property': 'P69'}, {'id': 'Q5769100', 'property': 'P69', 'entity-type': 'item', 'numeric-id': 5769100, 'type': 'wikibase-entityid'}, {'precision': 11, 'time': '+1952-11-05T00:00:00Z', 'property': 'P569', 'after': 0, 'type': 'time', 'timezone': 0, 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'property': 'P18', 'value': 'Mark Spong Publicity Photo.jpg', 'type': 'string'}, {'id': 'Q170978', 'entity-type': 'item', 'numeric-id': 170978, 'property': 'P101', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q5', 'entity-type': 'item', 'property': 'P31', 'numeric-id': 5}, {'numeric-id': 1860, 'entity-type': 'item', 'id': 'Q1860', 'property': 'P1412', 'type': 'wikibase-entityid'}, {'value': '1140282266703104384', 'property': 'P11496', 'type': 'string'}, {'numeric-id': 457281, 'property': 'P108', 'entity-type': 'item', 'id': 'Q457281', 'type': 'wikibase-entityid'}, {'numeric-id': 1781394, 'property': 'P108', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q1781394'}), 'title': 'Q6770174'}
{'type': 'item', 'id': 'Q6770510', 'labels': (('en', 'Mark of Cain'),), 'descriptions': (('en', 'book by Ram Oren'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mark of Cain (novel)', None),), 'claims': ({'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q7725634', 'numeric-id': 7725634, 'property': 'P31'}, {'id': 'Q1615539', 'property': 'P50', 'numeric-id': 1615539, 'entity-type': 'item', 'type': 'wikibase-entityid'}), 'title': 'Q6770510'}
{'type': 'item', 'id': 'Q6770511', 'labels': (('en', 'Mark of Charon'),), 'descriptions': (('en', 'comic book series'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mark of Charon', None),), 'claims': ({'numeric-id': 3297186, 'id': 'Q3297186', 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q1141129', 'property': 'P123', 'type': 'wikibase-entityid', 'numeric-id': 1141129, 'entity-type': 'item'}), 'title': 'Q6770511'}
{'type': 'item', 'id': 'Q6770713', 'labels': (('en', 'Market Place by Jasons'),), 'descriptions': (('en', 'Asian supermarket chain'),), 'aliases': (), 'sitelinks': (('commonswiki', 'Category:Market Place by Jasons', None), ('zhwiki', 'Market Place by Jasons', None), ('enwiki', 'Market Place (supermarket)', None)), 'claims': ({'value': 'marketplacehongkong', 'type': 'string', 'property': 'P2013'}, {'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'precision': 9, 'type': 'time', 'property': 'P571', 'timezone': 0, 'time': '+1975-00-00T00:00:00Z'}, {'type': 'string', 'property': 'P856', 'value': 'https://www.marketplacebyjasons.com'}, {'property': 'P31', 'type': 'wikibase-entityid', 'numeric-id': 4830453, 'entity-type': 'item', 'id': 'Q4830453'}, {'id': 'Q126793', 'entity-type': 'item', 'numeric-id': 126793, 'property': 'P452', 'type': 'wikibase-entityid'}, {'type': 'string', 'value': 'Market Place by Jasons Logo.png', 'property': 'P154'}, {'type': 'string', 'property': 'P373', 'value': 'Market Place by Jasons'}), 'title': 'Q6770713'}
{'type': 'item', 'id': 'Q6770745', 'labels': (('en', 'Market Street'),), 'descriptions': (('en', 'street in central Oxford, England'),), 'aliases': (('en', 'Market Street, Oxford'),), 'sitelinks': (('commonswiki', 'Category:Market Street, Oxford', None), ('enwiki', 'Market Street, Oxford', None)), 'claims': ({'property': 'P18', 'type': 'string', 'value': 'Market Street in Oxford - geograph.org.uk - 1421482.jpg'}, {'numeric-id': 34442, 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q34442'}, {'numeric-id': 10577546, 'id': 'Q10577546', 'property': 'P1889', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q145', 'property': 'P17', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 145}, {'property': 'P373', 'type': 'string', 'value': 'Market Street, Oxford'}, {'property': 'P131', 'numeric-id': 20986484, 'id': 'Q20986484', 'type': 'wikibase-entityid', 'entity-type': 'item'}), 'title': 'Q6770745'}
{'type': 'item', 'id': 'Q6770831', 'labels': (('en', 'Market rate'),), 'descriptions': (('en', 'Usual price charged for a good or service in a free market'),), 'aliases': (('en', 'market rate'), ('en', 'market rates')), 'sitelinks': (('enwiki', 'Market rate', None),), 'claims': ({'property': 'P10283', 'type': 'string', 'value': 'C59329165'},), 'title': 'Q6770831'}
{'type': 'item', 'id': 'Q6770921', 'labels': (('en', 'marketing order or agreement'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('enwiki', 'Marketing orders and agreements', None),), 'claims': ({'entity-type': 'item', 'id': 'Q30', 'numeric-id': 30, 'type': 'wikibase-entityid', 'property': 'P17'}, {'numeric-id': 396198, 'entity-type': 'item', 'id': 'Q396198', 'property': 'P279', 'type': 'wikibase-entityid'}), 'title': 'Q6770921'}
{'type': 'item', 'id': 'Q6771248', 'labels': (('en', 'Marko Savi\xc4\x87'),), 'descriptions': (('en-ca', 'Serbian footballer'), ('en-g', 'Serbian footballer'), ('en', 'Serbian footballer')), 'aliases': (), 'sitelinks': (('enwiki', 'Marko Savi\xc4\x87 (footballer)', None), ('arwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x83\xd9\x88 \xd8\xb3\xd8\xa7\xd9\x81\xd9\x8a\xd8\xaa\xd8\xb4', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x83\xd9\x88 \xd8\xb3\xd8\xa7\xd9\x81\xd9\x8a\xd8\xaa\xd8\xb4', None)), 'claims': ({'property': 'P21', 'numeric-id': 6581097, 'type': 'wikibase-entityid', 'id': 'Q6581097', 'entity-type': 'item'}, {'precision': 11, 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0, 'after': 0, 'property': 'P569', 'timezone': 0, 'time': '+1984-07-19T00:00:00Z'}, {'entity-type': 'item', 'property': 'P27', 'id': 'Q403', 'numeric-id': 403, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q3711', 'property': 'P19', 'numeric-id': 3711, 'entity-type': 'item'}, {'entity-type': 'item', 'property': 'P54', 'type': 'wikibase-entityid', 'id': 'Q5426493', 'numeric-id': 5426493}, {'entity-type': 'item', 'property': 'P54', 'id': 'Q5426241', 'numeric-id': 5426241, 'type': 'wikibase-entityid'}, {'property': 'P54', 'id': 'Q2034147', 'entity-type': 'item', 'numeric-id': 2034147, 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q2280491', 'numeric-id': 2280491, 'property': 'P54', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'property': 'P54', 'id': 'Q1635778', 'entity-type': 'item', 'numeric-id': 1635778}, {'numeric-id': 239663, 'property': 'P54', 'id': 'Q239663', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P54', 'id': 'Q3063273', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 3063273}, {'entity-type': 'item', 'id': 'Q937857', 'numeric-id': 937857, 'type': 'wikibase-entityid', 'property': 'P106'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q280658', 'numeric-id': 280658, 'property': 'P413'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 17520952, 'property': 'P735', 'id': 'Q17520952'}, {'id': 'Q5', 'entity-type': 'item', 'numeric-id': 5, 'property': 'P31', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 2736, 'property': 'P641', 'id': 'Q2736'}, {'numeric-id': 9299, 'entity-type': 'item', 'property': 'P1412', 'type': 'wikibase-entityid', 'id': 'Q9299'}), 'title': 'Q6771248'}
{'type': 'item', 'id': 'Q6771382', 'labels': (('en', 'Marks Hall'),), 'descriptions': (('en', 'country house in Essex, UK'),), 'aliases': (), 'sitelinks': (('enwiki', 'Marks Hall', None), ('commonswiki', 'Category:Marks Hall', None)), 'claims': ({'type': 'string', 'property': 'P18', 'value': 'Marks Hall Coggeshall Wright Bartlett 1831 Historytopograph01wrig 0488 (cropped).jpg'}, {'property': 'P31', 'entity-type': 'item', 'id': 'Q1343246', 'numeric-id': 1343246, 'type': 'wikibase-entityid'}, {'property': 'P17', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q145', 'numeric-id': 145}, {'numeric-id': 67442940, 'id': 'Q67442940', 'entity-type': 'item', 'property': 'P7959', 'type': 'wikibase-entityid'}, {'value': 'Marks Hall', 'property': 'P373', 'type': 'string'}), 'title': 'Q6771382'}
{'type': 'item', 'id': 'Q6771528', 'labels': (('en', 'Markus Wolff'),), 'descriptions': (('en', 'American neofolk musician'),), 'aliases': (), 'sitelinks': (('enwiki', 'Markus Wolff', None),), 'claims': ({'numeric-id': 6581097, 'id': 'Q6581097', 'type': 'wikibase-entityid', 'property': 'P21', 'entity-type': 'item'}, {'id': 'Q639669', 'numeric-id': 639669, 'property': 'P106', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q17520949', 'property': 'P735', 'type': 'wikibase-entityid', 'numeric-id': 17520949}, {'entity-type': 'item', 'id': 'Q5', 'numeric-id': 5, 'type': 'wikibase-entityid', 'property': 'P31'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q30', 'numeric-id': 30, 'property': 'P27'}, {'entity-type': 'item', 'numeric-id': 2588593, 'id': 'Q2588593', 'type': 'wikibase-entityid', 'property': 'P734'}, {'value': 'agent/base/8115', 'type': 'string', 'property': 'P7704'}), 'title': 'Q6771528'}
{'type': 'item', 'id': 'Q6771575', 'labels': (('en', 'Marla Hanson'),), 'descriptions': (('en', 'American model'),), 'aliases': (), 'sitelinks': (('arwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x84\xd8\xa7 \xd9\x87\xd8\xa7\xd9\x86\xd8\xb3\xd9\x88\xd9\x86', None), ('frwiki', 'Marla Hanson', None), ('enwiki', 'Marla Hanson', None)), 'claims': ({'id': 'Q20000225', 'property': 'P735', 'numeric-id': 20000225, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q9145324', 'type': 'wikibase-entityid', 'numeric-id': 9145324, 'property': 'P734'}, {'property': 'P27', 'id': 'Q30', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 30}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'precision': 11, 'property': 'P569', 'time': '+1961-06-18T00:00:00Z', 'after': 0, 'timezone': 0, 'before': 0}, {'numeric-id': 28389, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P106', 'id': 'Q28389'}, {'entity-type': 'item', 'id': 'Q4610556', 'numeric-id': 4610556, 'property': 'P106', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'property': 'P19', 'id': 'Q24603', 'type': 'wikibase-entityid', 'numeric-id': 24603}, {'id': 'Q5', 'numeric-id': 5, 'property': 'P31', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'id': 'Q6581072', 'entity-type': 'item', 'numeric-id': 6581072, 'property': 'P21', 'type': 'wikibase-entityid'}, {'value': 'marla-henson', 'type': 'string', 'property': 'P10302'}), 'title': 'Q6771575'}
{'type': 'item', 'id': 'Q6771722', 'labels': (('en', 'Marlena Wesh'),), 'descriptions': (('en', 'Haitian-American sprinter'),), 'aliases': (), 'sitelinks': (('arzwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x84\xd9\x8a\xd9\x86\xd8\xa7 \xd9\x88\xd9\x8a\xd8\xb4', None), ('plwiki', 'Marlena Wesh', None), ('viwiki', 'Marlena Wesh', None), ('enwiki', 'Marlena Wesh', None), ('nowiki', 'Marlena Wesh', None)), 'claims': ({'entity-type': 'item', 'id': 'Q49259', 'numeric-id': 49259, 'property': 'P19', 'type': 'wikibase-entityid'}, {'id': 'Q18220859', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 18220859, 'property': 'P735'}, {'property': 'P31', 'id': 'Q5', 'numeric-id': 5, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'numeric-id': 6485223, 'entity-type': 'item', 'property': 'P69', 'id': 'Q6485223', 'type': 'wikibase-entityid'}, {'property': 'P27', 'entity-type': 'item', 'id': 'Q790', 'type': 'wikibase-entityid', 'numeric-id': 790}, {'type': 'wikibase-entityid', 'id': 'Q3308284', 'numeric-id': 3308284, 'entity-type': 'item', 'property': 'P463'}, {'numeric-id': 542, 'type': 'wikibase-entityid', 'id': 'Q542', 'entity-type': 'item', 'property': 'P641'}, {'id': 'Q11513337', 'numeric-id': 11513337, 'entity-type': 'item', 'property': 'P106', 'type': 'wikibase-entityid'}, {'id': 'Q27658988', 'type': 'wikibase-entityid', 'property': 'P106', 'entity-type': 'item', 'numeric-id': 27658988}, {'property': 'P21', 'id': 'Q6581072', 'numeric-id': 6581072, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P569', 'after': 0, 'before': 0, 'time': '+1991-02-16T00:00:00Z', 'precision': 11, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'timezone': 0}, {'id': 'Q8577', 'type': 'wikibase-entityid', 'numeric-id': 8577, 'property': 'P1344', 'entity-type': 'item'}), 'title': 'Q6771722'}
{'type': 'item', 'id': 'Q6771756', 'labels': (('en', 'Marlene Steinberg'),), 'descriptions': (('en', 'American psychologist'),), 'aliases': (), 'sitelinks': (('enwiki', 'Marlene Steinberg', None),), 'claims': ({'numeric-id': 30, 'id': 'Q30', 'entity-type': 'item', 'property': 'P27', 'type': 'wikibase-entityid'}, {'numeric-id': 1570233, 'entity-type': 'item', 'property': 'P734', 'type': 'wikibase-entityid', 'id': 'Q1570233'}, {'property': 'P106', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 212980, 'id': 'Q212980'}, {'property': 'P735', 'id': 'Q1402673', 'type': 'wikibase-entityid', 'numeric-id': 1402673, 'entity-type': 'item'}, {'property': 'P21', 'type': 'wikibase-entityid', 'id': 'Q6581072', 'numeric-id': 6581072, 'entity-type': 'item'}, {'entity-type': 'item', 'numeric-id': 5, 'type': 'wikibase-entityid', 'property': 'P31', 'id': 'Q5'}), 'title': 'Q6771756'}
{'type': 'item', 'id': 'Q6772261', 'labels': (('en', 'Marnus Schoeman'),), 'descriptions': (('en', 'South African rugby union footballer'),), 'aliases': (), 'sitelinks': (('frwiki', 'Marnus Schoeman', None), ('enwiki', 'Marnus Schoeman', None)), 'claims': ({'numeric-id': 3643050, 'property': 'P19', 'entity-type': 'item', 'id': 'Q3643050', 'type': 'wikibase-entityid'}, {'numeric-id': 14089670, 'id': 'Q14089670', 'entity-type': 'item', 'property': 'P106', 'type': 'wikibase-entityid'}, {'property': 'P31', 'type': 'wikibase-entityid', 'numeric-id': 5, 'entity-type': 'item', 'id': 'Q5'}, {'id': 'Q5923156', 'property': 'P69', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 5923156}, {'property': 'P569', 'timezone': 0, 'before': 0, 'type': 'time', 'precision': 11, 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1989-02-09T00:00:00Z'}, {'numeric-id': 5849, 'type': 'wikibase-entityid', 'property': 'P641', 'entity-type': 'item', 'id': 'Q5849'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P21', 'numeric-id': 6581097, 'id': 'Q6581097'}, {'property': 'P1412', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q1860', 'numeric-id': 1860}, {'numeric-id': 258, 'type': 'wikibase-entityid', 'id': 'Q258', 'property': 'P27', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'numeric-id': 2283076, 'entity-type': 'item', 'id': 'Q2283076', 'property': 'P413'}), 'title': 'Q6772261'}
{'type': 'item', 'id': 'Q6772714', 'labels': (('en', 'Marquis of Fronteira'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('ptwiki', 'Marqu\xc3\xaas de Fronteira', None), ('eswiki', 'Marqu\xc3\xa9s de Fronteira', None), ('enwiki', 'Marquis of Fronteira', None)), 'claims': ({'property': 'P31', 'type': 'wikibase-entityid', 'numeric-id': 18752016, 'entity-type': 'item', 'id': 'Q18752016'},), 'title': 'Q6772714'}
{'type': 'item', 'id': 'Q6772708', 'labels': (('en', 'Marquis of Amboage'),), 'descriptions': (('en', 'Spanish Businessperson'),), 'aliases': (), 'sitelinks': (('enwiki', 'Marquis of Amboage', None), ('eswiki', 'Ram\xc3\xb3n Pl\xc3\xa1 y Monge', None), ('commonswiki', 'Category:Ram\xc3\xb3n Pl\xc3\xa1 y Monge', None), ('glwiki', 'Ram\xc3\xb3n Pl\xc3\xa1', None)), 'claims': ({'numeric-id': 104706573, 'property': 'P97', 'entity-type': 'item', 'id': 'Q104706573', 'type': 'wikibase-entityid'}, {'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'after': 0, 'property': 'P569', 'timezone': 0, 'precision': 11, 'time': '+1823-10-19T00:00:00Z'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 485329, 'id': 'Q485329', 'property': 'P19'}, {'property': 'P20', 'id': 'Q2807', 'numeric-id': 2807, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'text': 'Ram\xc3\xb3n Pl\xc3\xa1 y Monge', 'language': 'es', 'property': 'P1477', 'type': 'monolingualtext'}, {'property': 'P166', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 17365974, 'id': 'Q17365974'}, {'type': 'string', 'property': 'P373', 'value': 'Ram\xc3\xb3n Pl\xc3\xa1 y Monge'}, {'numeric-id': 1321, 'id': 'Q1321', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P1412'}, {'entity-type': 'item', 'id': 'Q18218536', 'type': 'wikibase-entityid', 'property': 'P735', 'numeric-id': 18218536}, {'type': 'wikibase-entityid', 'id': 'Q29', 'property': 'P27', 'numeric-id': 29, 'entity-type': 'item'}, {'id': 'Q6581097', 'entity-type': 'item', 'property': 'P21', 'type': 'wikibase-entityid', 'numeric-id': 6581097}, {'type': 'wikibase-entityid', 'numeric-id': 17769800, 'property': 'P106', 'entity-type': 'item', 'id': 'Q17769800'}, {'time': '+1892-09-06T00:00:00Z', 'property': 'P570', 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'precision': 11, 'type': 'time', 'before': 0}, {'numeric-id': 5, 'property': 'P31', 'id': 'Q5', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P40', 'id': 'Q104706469', 'numeric-id': 104706469}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 21507188, 'property': 'P1950', 'id': 'Q21507188'}, {'value': 'Marquis of Amboage (cropped).png', 'property': 'P18', 'type': 'string'}, {'numeric-id': 37315129, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P734', 'id': 'Q37315129'}), 'title': 'Q6772708'}
{'type': 'item', 'id': 'Q6772737', 'labels': (('en', 'Marquisate of Samaranch'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('enwiki', 'Marquessate of Samaranch', None), ('eswiki', 'Marquesado de Samaranch', None), ('etwiki', 'Samaranchi markii', None), ('cawiki', 'Marquesat de Samaranch', None)), 'claims': ({'numeric-id': 171166, 'property': 'P127', 'id': 'Q171166', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 59243509, 'property': 'P127', 'id': 'Q59243509'}, {'id': 'Q19943', 'entity-type': 'item', 'property': 'P1027', 'numeric-id': 19943, 'type': 'wikibase-entityid'}, {'property': 'P17', 'type': 'wikibase-entityid', 'id': 'Q29', 'entity-type': 'item', 'numeric-id': 29}, {'property': 'P94', 'value': 'Corona de marqu\xc3\xa8s.svg', 'type': 'string'}, {'id': 'Q29', 'type': 'wikibase-entityid', 'numeric-id': 29, 'property': 'P131', 'entity-type': 'item'}, {'property': 'P31', 'entity-type': 'item', 'id': 'Q27492289', 'numeric-id': 27492289, 'type': 'wikibase-entityid'}, {'timezone': 0, 'type': 'time', 'precision': 9, 'property': 'P571', 'time': '+1991-00-00T00:00:00Z', 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0}), 'title': 'Q6772737'}
{'type': 'item', 'id': 'Q6772786', 'labels': (('en', 'Marrakesh Records'),), 'descriptions': (('en', 'US record label'),), 'aliases': (), 'sitelinks': (('enwiki', 'Marrakesh Records', None),), 'claims': ({'id': 'Q18127', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 18127, 'property': 'P31'}, {'entity-type': 'item', 'id': 'Q30', 'property': 'P495', 'numeric-id': 30, 'type': 'wikibase-entityid'}), 'title': 'Q6772786'}
{'type': 'item', 'id': 'Q6772900', 'labels': (('en', 'Marriage squeeze'),), 'descriptions': (('en', 'demographics term'),), 'aliases': (('en', 'marriage squeeze'),), 'sitelinks': (('dewiki', 'Heiratsengpass', None), ('zhwiki', '\xe5\xa9\x9a\xe5\xa7\xbb\xe6\x8c\xa4\xe5\x8e\x8', None), ('enwiki', 'Marriage squeeze', ('Q70893996',))), 'claims': ({'entity-type': 'item', 'id': 'Q15304953', 'type': 'wikibase-entityid', 'numeric-id': 15304953, 'property': 'P5008'},), 'title': 'Q6772900'}
{'type': 'item', 'id': 'Q6772961', 'labels': (('en', 'Marrigudem Village'),), 'descriptions': (('en', 'village in Telangana, India'), ('en-g', 'village in India'), ('en-ca', 'village in India')), 'aliases': (), 'sitelinks': (('enwiki', 'Marrigudem', None), ('azbwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xdb\x8c\xd9\x82\xd9\x88\xd8\xaf\xd9\x85', None)), 'claims': ({'property': 'P2044', 'type': 'quantity', 'unit': 'http://www.wikidata.org/entity/Q11573', 'upperBound': '+422', 'amount': '+421', 'lowerBound': '+420'}, {'numeric-id': 56436498, 'property': 'P31', 'id': 'Q56436498', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 6828, 'property': 'P421', 'id': 'Q6828', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q668', 'numeric-id': 668, 'type': 'wikibase-entityid', 'property': 'P17'}, {'id': 'Q15384', 'entity-type': 'item', 'property': 'P131', 'numeric-id': 15384, 'type': 'wikibase-entityid'}), 'title': 'Q6772961'}
{'type': 'item', 'id': 'Q6772977', 'labels': (('en', 'Marriott Corporation'),), 'descriptions': (('en', 'previous forms of the hospitality company in Bethesda, Maryland, United States'),), 'aliases': (('en', 'The Hot Shoppe'), ('en', 'Hot Shoppes, Inc.'), ('en', 'Marriott-Hot Shoppes, Inc.'), ('en', 'Hot Shoppes')), 'sitelinks': (('plwiki', 'Marriott Corporation', None), ('enwiki', 'Marriott Corporation', None)), 'claims': ({'entity-type': 'item', 'property': 'P452', 'type': 'wikibase-entityid', 'numeric-id': 1495452, 'id': 'Q1495452'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 716147, 'property': 'P112', 'id': 'Q716147'}, {'id': 'Q584451', 'numeric-id': 584451, 'property': 'P159', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P740', 'id': 'Q61', 'numeric-id': 61, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'property': 'P1056', 'type': 'wikibase-entityid', 'id': 'Q27686', 'numeric-id': 27686}, {'type': 'wikibase-entityid', 'property': 'P156', 'entity-type': 'item', 'numeric-id': 1141173, 'id': 'Q1141173'}, {'property': 'P156', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q1630559', 'numeric-id': 1630559}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q30', 'numeric-id': 30, 'property': 'P17'}, {'entity-type': 'item', 'id': 'Q891723', 'numeric-id': 891723, 'type': 'wikibase-entityid', 'property': 'P1454'}, {'language': 'en', 'type': 'monolingualtext', 'property': 'P1448', 'text': 'The Hot Shoppe'}, {'property': 'P1448', 'text': 'Hot Shoppes, Inc.', 'language': 'en', 'type': 'monolingualtext'}, {'language': 'en', 'type': 'monolingualtext', 'text': 'Marriott-Hot Shoppes, Inc.', 'property': 'P1448'}, {'text': 'Marriott Corporation', 'property': 'P1448', 'type': 'monolingualtext', 'language': 'en'}, {'before': 0, 'timezone': 0, 'property': 'P571', 'time': '+1927-05-15T00:00:00Z', 'after': 0, 'precision': 11, 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'numeric-id': 7959446, 'property': 'P355', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q7959446'}, {'numeric-id': 4830453, 'entity-type': 'item', 'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q4830453'}, {'id': 'Q6881511', 'property': 'P31', 'entity-type': 'item', 'numeric-id': 6881511, 'type': 'wikibase-entityid'}, {'timezone': 0, 'time': '+1993-10-08T00:00:00Z', 'property': 'P576', 'precision': 11, 'after': 0, 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time'}), 'title': 'Q6772977'}
{'type': 'item', 'id': 'Q6773197', 'labels': (('en', 'Alnus orientalis'),), 'descriptions': (('en', 'species of plant'),), 'aliases': (('en', 'Oriental alder'),), 'sitelinks': (('enwiki', 'Alnus orientalis', None), ('svwiki', 'Alnus orientalis', None), ('specieswiki', 'Alnus orientalis', None), ('commonswiki', 'Category:Alnus orientalis', None), ('arwiki', '\xd9\x86\xd8\xba\xd8\xaa \xd9\x85\xd8\xb4\xd8\xb1\xd9\x82\xd9\x8a', None), ('iswiki', 'Alnus orientalis', None), ('warwiki', 'Alnus orientalis', None), ('cebwiki', 'Alnus orientalis', None), ('trwiki', 'Do\xc4\x9fu k\xc4\xb1z\xc4\xb1la\xc4\x9fac\xc4\xb1', None), ('viwiki', 'Alnus orientalis', None)), 'claims': ({'property': 'P18', 'type': 'string', 'value': 'Alnusorientalis-10-4-08-TitreyenG\xc3\xb6l-13-00-E-MK-15756b.jpg'}, {'value': 'Alnus orientalis', 'property': 'P373', 'type': 'string'}, {'numeric-id': 7432, 'property': 'P105', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q7432'}, {'value': 'Alnus orientalis', 'property': 'P225', 'type': 'string'}, {'property': 'P1813', 'language': 'mul', 'text': 'A. orientalis', 'type': 'monolingualtext'}, {'property': 'P10585', 'type': 'string', 'value': 'C2S5'}, {'text': 'Oriental alder', 'type': 'monolingualtext', 'property': 'P1843', 'language': 'en'}, {'property': 'P1843', 'text': 'Do\xc4\x9fu k\xc4\xb1z\xc4\xb1la\xc4\x9fac\xc4\xb1', 'language': 'tr', 'type': 'monolingualtext'}, {'numeric-id': 16521, 'entity-type': 'item', 'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q16521'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q25239', 'numeric-id': 25239, 'property': 'P171'}), 'title': 'Q6773197'}
{'type': 'item', 'id': 'Q6773526', 'labels': (('en', 'Marshall Corwin'),), 'descriptions': (('en', 'British television producer'),), 'aliases': (), 'sitelinks': (('enwiki', 'Marshall Corwin', None),), 'claims': ({'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 6581097, 'id': 'Q6581097', 'property': 'P21'}, {'entity-type': 'item', 'property': 'P31', 'id': 'Q5', 'numeric-id': 5, 'type': 'wikibase-entityid'}, {'numeric-id': 578109, 'id': 'Q578109', 'property': 'P106', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'property': 'P569', 'time': '+1901-00-00T00:00:00Z', 'timezone': 0, 'precision': 7, 'type': 'time'}, {'numeric-id': 19819759, 'property': 'P735', 'type': 'wikibase-entityid', 'id': 'Q19819759', 'entity-type': 'item'}), 'title': 'Q6773526'}
{'type': 'item', 'id': 'Q6773593', 'labels': (('en', 'Marshall Glenn'),), 'descriptions': (('en', 'American football player and coach, basketball player and coach, physician (1908-1983)'),), 'aliases': (('en', 'Marshall "Little Sleepy" Glenn'),), 'sitelinks': (('enwiki', 'Marshall Glenn', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd8\xb4\xd8\xa7\xd9\x84 \xd8\xac\xd9\x84\xd9\x8a\xd9\x86', None), ('arwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd8\xb4\xd8\xa7\xd9\x84 \xd8\xba\xd9\x84\xd9\x8a\xd9\x86', None)), 'claims': ({'id': 'Q952594', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P19', 'numeric-id': 952594}, {'language': 'en', 'text': 'Little Sleepy', 'type': 'monolingualtext', 'property': 'P1449'}, {'entity-type': 'item', 'id': 'Q11220', 'property': 'P241', 'type': 'wikibase-entityid', 'numeric-id': 11220}, {'property': 'P735', 'id': 'Q19819759', 'type': 'wikibase-entityid', 'numeric-id': 19819759, 'entity-type': 'item'}, {'id': 'Q2001181', 'numeric-id': 2001181, 'property': 'P551', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'property': 'P509', 'id': 'Q61037771', 'numeric-id': 61037771, 'entity-type': 'item'}, {'id': 'Q30', 'numeric-id': 30, 'property': 'P27', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'numeric-id': 115376, 'property': 'P69', 'id': 'Q115376', 'entity-type': 'item'}, {'entity-type': 'item', 'property': 'P118', 'type': 'wikibase-entityid', 'numeric-id': 94861615, 'id': 'Q94861615'}, {'id': 'Q362', 'numeric-id': 362, 'property': 'P607', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'numeric-id': 5372, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q5372', 'property': 'P641'}, {'id': 'Q5137571', 'property': 'P106', 'numeric-id': 5137571, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 19204627, 'id': 'Q19204627', 'property': 'P106'}, {'property': 'P106', 'entity-type': 'item', 'numeric-id': 39631, 'id': 'Q39631', 'type': 'wikibase-entityid'}, {'numeric-id': 755559, 'type': 'wikibase-entityid', 'id': 'Q755559', 'property': 'P20', 'entity-type': 'item'}, {'numeric-id': 3326071, 'id': 'Q3326071', 'entity-type': 'item', 'property': 'P54', 'type': 'wikibase-entityid'}, {'numeric-id': 19802200, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P734', 'id': 'Q19802200'}, {'before': 0, 'after': 0, 'property': 'P570', 'precision': 11, 'time': '+1983-10-11T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'type': 'time'}, {'after': 0, 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'property': 'P569', 'time': '+1908-04-22T00:00:00Z', 'precision': 11, 'before': 0}, {'property': 'P31', 'entity-type': 'item', 'id': 'Q5', 'numeric-id': 5, 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 6581097, 'id': 'Q6581097', 'property': 'P21', 'type': 'wikibase-entityid'}, {'id': 'Q622747', 'entity-type': 'item', 'property': 'P413', 'type': 'wikibase-entityid', 'numeric-id': 622747}, {'type': 'wikibase-entityid', 'property': 'P1196', 'entity-type': 'item', 'numeric-id': 21142718, 'id': 'Q21142718'}), 'title': 'Q6773593'}
{'type': 'item', 'id': 'Q6773627', 'labels': (('en', 'Marshall House'),), 'descriptions': (('en', 'historic house in Arkansas, United States'),), 'aliases': (), 'sitelinks': (('enwiki', 'Marshall House (Little Rock, Arkansas)', None),), 'claims': ({'entity-type': 'item', 'property': 'P131', 'type': 'wikibase-entityid', 'id': 'Q33405', 'numeric-id': 33405}, {'numeric-id': 30, 'type': 'wikibase-entityid', 'property': 'P17', 'entity-type': 'item', 'id': 'Q30'}, {'property': 'P1435', 'type': 'wikibase-entityid', 'numeric-id': 19558910, 'id': 'Q19558910', 'entity-type': 'item'}, {'property': 'P18', 'type': 'string', 'value': 'Marshall House, Little Rock, AR.JPG'}, {'numeric-id': 5079993, 'entity-type': 'item', 'property': 'P84', 'id': 'Q5079993', 'type': 'wikibase-entityid'}, {'id': 'Q1307276', 'property': 'P31', 'type': 'wikibase-entityid', 'numeric-id': 1307276, 'entity-type': 'item'}), 'title': 'Q6773627'}
{'type': 'item', 'id': 'Q6773903', 'labels': (('en', 'Marshfield'),), 'descriptions': (('en', 'human settlement in New York, United States of America'),), 'aliases': (('en', 'Marshfield, New York'), ('en', 'Marshfield, NY')), 'sitelinks': (('enwiki', 'Marshfield, New York', None),), 'claims': ({'numeric-id': 1384, 'type': 'wikibase-entityid', 'property': 'P131', 'id': 'Q1384', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'numeric-id': 17343829, 'property': 'P31', 'id': 'Q17343829', 'entity-type': 'item'}, {'numeric-id': 30, 'entity-type': 'item', 'id': 'Q30', 'property': 'P17', 'type': 'wikibase-entityid'}), 'title': 'Q6773903'}
{'type': 'item', 'id': 'Q6774020', 'labels': (('en', 'Marsupidium'),), 'descriptions': (('en', 'genus of liverworts'),), 'aliases': (), 'sitelinks': (('specieswiki', 'Marsupidium', ('Q70893996',)), ('cebwiki', 'Marsupidium', None), ('svwiki', 'Marsupidium', None), ('eswiki', 'Marsupidium', None), ('viwiki', 'Marsupidium', None), ('enwiki', 'Marsupidium', None)), 'claims': ({'entity-type': 'item', 'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q16521', 'numeric-id': 16521}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q4675300', 'property': 'P171', 'numeric-id': 4675300}, {'type': 'wikibase-entityid', 'id': 'Q26974949', 'entity-type': 'item', 'numeric-id': 26974949, 'property': 'P910'}, {'numeric-id': 34740, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P105', 'id': 'Q34740'}, {'value': 'Marsupidium', 'property': 'P225', 'type': 'string'}, {'value': '13558 orig.jpg', 'property': 'P18', 'type': 'string'}), 'title': 'Q6774020'}
{'type': 'item', 'id': 'Q6774083', 'labels': (('en', 'Marta'),), 'descriptions': (('en', 'song performed by Nena Daconte'),), 'aliases': (), 'sitelinks': (('eswiki', 'Marta (canci\xc3\xb3n)', None), ('enwiki', 'Marta (Nena Daconte song)', None)), 'claims': ({'type': 'wikibase-entityid', 'numeric-id': 105543609, 'entity-type': 'item', 'id': 'Q105543609', 'property': 'P31'}, {'id': 'Q963160', 'numeric-id': 963160, 'type': 'wikibase-entityid', 'property': 'P361', 'entity-type': 'item'}, {'property': 'P7937', 'entity-type': 'item', 'id': 'Q7366', 'numeric-id': 7366, 'type': 'wikibase-entityid'}, {'property': 'P175', 'type': 'wikibase-entityid', 'id': 'Q1524378', 'entity-type': 'item', 'numeric-id': 1524378}), 'title': 'Q6774083'}
{'type': 'item', 'id': 'Q6774242', 'labels': (('en', 'Martel\xc3\xa9'),), 'descriptions': (('en', 'hand-wrought production line of silver from the Gorham Manufacturing Company'),), 'aliases': (('en', 'Martele'),), 'sitelinks': (('commonswiki', 'Category:Martel\xc3\xa9 silver', None), ('enwiki', 'Martel\xc3\xa9 (silver)', None)), 'claims': ({'property': 'P373', 'type': 'string', 'value': 'Martel\xc3\xa9 silver'},), 'title': 'Q6774242'}
{'type': 'item', 'id': 'Q6774305', 'labels': (('en', "Martha's Vineyard Regional High School"),), 'descriptions': (('en', 'high school in Massachusetts, United States'),), 'aliases': (), 'sitelinks': (('enwiki', "Martha's Vineyard Regional High School", None),), 'claims': ({'entity-type': 'item', 'id': 'Q9826', 'property': 'P31', 'numeric-id': 9826, 'type': 'wikibase-entityid'}, {'before': 0, 'type': 'time', 'after': 0, 'time': '+1959-00-00T00:00:00Z', 'precision': 9, 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P571'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 30, 'property': 'P17', 'id': 'Q30'}, {'property': 'P856', 'value': 'http://www.mvrhs.org', 'type': 'string'}, {'entity-type': 'item', 'id': 'Q771', 'numeric-id': 771, 'property': 'P131', 'type': 'wikibase-entityid'}, {'type': 'string', 'property': 'P10689', 'value': '574015168'}), 'title': 'Q6774305'}
{'type': 'item', 'id': 'Q6774315', 'labels': (('en', 'Martha'),), 'descriptions': (('en', 'TV series'),), 'aliases': (('en', 'Martha Stewart Show'),), 'sitelinks': (('enwiki', 'The Martha Stewart Show', None),), 'claims': ({'after': 0, 'property': 'P580', 'timezone': 0, 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'precision': 11, 'time': '+2005-09-12T00:00:00Z'}, {'amount': '+7', 'type': 'quantity', 'property': 'P2437', 'unit': '1'}, {'numeric-id': 5398426, 'id': 'Q5398426', 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'value': 'https://www.marthastewart.com/', 'type': 'string', 'property': 'P856'}, {'type': 'wikibase-entityid', 'id': 'Q1572845', 'entity-type': 'item', 'property': 'P449', 'numeric-id': 1572845}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 30, 'property': 'P495', 'id': 'Q30'}, {'amount': '+1162', 'type': 'quantity', 'property': 'P1113', 'unit': '1'}, {'property': 'P136', 'numeric-id': 336181, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q336181'}, {'precision': 11, 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'time': '+2012-05-11T00:00:00Z', 'property': 'P582', 'timezone': 0, 'before': 0}, {'id': 'Q6952746', 'property': 'P750', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 6952746}, {'value': '5d9c0813705e7a001e6d1ade', 'type': 'string', 'property': 'P11460'}, {'entity-type': 'item', 'id': 'Q1860', 'numeric-id': 1860, 'property': 'P407', 'type': 'wikibase-entityid'}, {'property': 'P12096', 'value': '416994', 'type': 'string'}), 'title': 'Q6774315'}
{'type': 'item', 'id': 'Q6774658', 'labels': (('en-ca', 'Marthinus du Plessis'), ('en', 'Marthinus du Plessis')), 'descriptions': (('en', 'modern pentathlete'),), 'aliases': (), 'sitelinks': (('enwiki', 'Marthinus du Plessis', None),), 'claims': ({'property': 'P21', 'numeric-id': 6581097, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q6581097'}, {'type': 'time', 'after': 0, 'time': '+1932-06-02T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'precision': 11, 'before': 0, 'property': 'P569'}, {'numeric-id': 8411, 'entity-type': 'item', 'id': 'Q8411', 'property': 'P1344', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P641', 'id': 'Q542', 'numeric-id': 542}, {'entity-type': 'item', 'id': 'Q15972912', 'numeric-id': 15972912, 'property': 'P106', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q21141408', 'entity-type': 'item', 'property': 'P106', 'numeric-id': 21141408}, {'type': 'wikibase-entityid', 'id': 'Q1860', 'numeric-id': 1860, 'entity-type': 'item', 'property': 'P1412'}, {'numeric-id': 5, 'id': 'Q5', 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'numeric-id': 258, 'property': 'P27', 'id': 'Q258', 'entity-type': 'item'}), 'title': 'Q6774658'}
{'type': 'item', 'id': 'Q6774719', 'labels': (('en', 'Martial law in the Philippines'),), 'descriptions': (('en', 'authorized military government in the Philippines'),), 'aliases': (), 'sitelinks': (('idwiki', 'Darurat militer di Filipina', None), ('zhwiki', '\xe8\x8f\xb2\xe5\xbe\x8b\xe5\xae\xbe\xe6\x88\x92\xe4\xb8\xa5\xe6\x97\xb6\xe6\x9c\x9f', None), ('mswiki', 'Undang-undang tentera di Filipina', None), ('enwiki', 'Martial law in the Philippines', None)), 'claims': ({'id': 'Q52376215', 'property': 'P910', 'numeric-id': 52376215, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'value': 'Martial law in the Philippines', 'type': 'string', 'property': 'P373'}), 'title': 'Q6774719'}
{'type': 'item', 'id': 'Q6774802', 'labels': (('en', "Martin's Potato Chips"),), 'descriptions': (), 'aliases': (), 'sitelinks': (('enwiki', "Martin's Potato Chips", None),), 'claims': ({'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 4830453, 'property': 'P31', 'id': 'Q4830453'}, {'property': 'P571', 'type': 'time', 'precision': 9, 'after': 0, 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1941-01-01T00:00:00Z', 'timezone': 0}), 'title': 'Q6774802'}
{'type': 'item', 'id': 'Q6775077', 'labels': (('en', 'Martin Buckmaster, 3rd Viscount Buckmaster'),), 'descriptions': (('en-ca', 'British diplomat'), ('en', 'British diplomat (1921-2007)'), ('en-g', 'British diplomat')), 'aliases': (('en', 'Martin Stanley Buckmaster, 3rd Viscount Buckmaster'),), 'sitelinks': (('enwiki', 'Martin Buckmaster, 3rd Viscount Buckmaster', None), ('frwiki', 'Martin Buckmaster (3e vicomte Buckmaster)', None)), 'claims': ({'entity-type': 'item', 'property': 'P241', 'type': 'wikibase-entityid', 'numeric-id': 222595, 'id': 'Q222595'}, {'id': 'Q18952564', 'numeric-id': 18952564, 'property': 'P39', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'string', 'value': '3320', 'property': 'P10428'}, {'id': 'Q1860', 'numeric-id': 1860, 'entity-type': 'item', 'property': 'P1412', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'property': 'P106', 'id': 'Q193391', 'entity-type': 'item', 'numeric-id': 193391}, {'type': 'wikibase-entityid', 'id': 'Q82955', 'numeric-id': 82955, 'entity-type': 'item', 'property': 'P106'}, {'entity-type': 'item', 'numeric-id': 124230, 'property': 'P19', 'type': 'wikibase-entityid', 'id': 'Q124230'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q145', 'numeric-id': 145, 'property': 'P27'}, {'property': 'P10849', 'type': 'string', 'value': '4871'}, {'type': 'wikibase-entityid', 'id': 'Q5', 'entity-type': 'item', 'property': 'P31', 'numeric-id': 5}, {'entity-type': 'item', 'id': 'Q62072013', 'numeric-id': 62072013, 'property': 'P22', 'type': 'wikibase-entityid'}, {'id': 'Q362', 'entity-type': 'item', 'property': 'P607', 'type': 'wikibase-entityid', 'numeric-id': 362}, {'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'property': 'P569', 'type': 'time', 'time': '+1921-04-11T00:00:00Z', 'timezone': 0, 'after': 0}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P166', 'numeric-id': 10762848, 'id': 'Q10762848'}, {'type': 'wikibase-entityid', 'id': 'Q75515014', 'numeric-id': 75515014, 'entity-type': 'item', 'property': 'P25'}, {'property': 'P21', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q6581097', 'numeric-id': 6581097}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'property': 'P570', 'time': '+2007-06-08T00:00:00Z', 'type': 'time', 'before': 0, 'timezone': 0, 'after': 0}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P735', 'numeric-id': 18002399, 'id': 'Q18002399'}, {'numeric-id': 7620697, 'property': 'P69', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q7620697'}), 'title': 'Q6775077'}
{'type': 'item', 'id': 'Q6775158', 'labels': (('en', 'Martin Cline'),), 'descriptions': (('en', 'American biologist'),), 'aliases': (), 'sitelinks': (('enwiki', 'Martin Cline', None), ('arwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd8\xaa\xd9\x86 \xd9\x83\xd9\x84\xd8\xa7\xd9\x8a\xd9\x86 (\xd8\xb9\xd8\xa7\xd9\x84\xd9\x85)', None)), 'claims': ({'type': 'wikibase-entityid', 'property': 'P31', 'entity-type': 'item', 'numeric-id': 5, 'id': 'Q5'}, {'type': 'wikibase-entityid', 'id': 'Q3126128', 'entity-type': 'item', 'numeric-id': 3126128, 'property': 'P106'}, {'numeric-id': 174710, 'type': 'wikibase-entityid', 'property': 'P108', 'entity-type': 'item', 'id': 'Q174710'}, {'property': 'P108', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q1061104', 'numeric-id': 1061104}, {'property': 'P21', 'id': 'Q6581097', 'numeric-id': 6581097, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'entity-type': 'item', 'property': 'P735', 'id': 'Q18002399', 'type': 'wikibase-entityid', 'numeric-id': 18002399}, {'property': 'P69', 'type': 'wikibase-entityid', 'id': 'Q168515', 'numeric-id': 168515, 'entity-type': 'item'}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'time': '+1934-01-01T00:00:00Z', 'before': 0, 'after': 0, 'type': 'time', 'timezone': 0, 'precision': 9}, {'property': 'P734', 'entity-type': 'item', 'numeric-id': 16865632, 'id': 'Q16865632', 'type': 'wikibase-entityid'}), 'title': 'Q6775158'}
{'type': 'item', 'id': 'Q6775643', 'labels': (('en', 'Martin Head-Gordon'),), 'descriptions': (('en-ca', 'Australian chemist'), ('en', 'Australian chemist'), ('en-g', 'Australian chemist')), 'aliases': (('en', 'Martin Philip Head-Gordon'), ('en', 'Martin P. Head-Gordon')), 'sitelinks': (('enwiki', 'Martin Head-Gordon', None),), 'claims': ({'time': '+1962-03-17T00:00:00Z', 'precision': 11, 'type': 'time', 'property': 'P569', 'timezone': 0, 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0}, {'id': 'Q168756', 'property': 'P108', 'type': 'wikibase-entityid', 'numeric-id': 168756, 'entity-type': 'item'}, {'property': 'P69', 'id': 'Q190080', 'entity-type': 'item', 'numeric-id': 190080, 'type': 'wikibase-entityid'}, {'property': 'P27', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q408', 'numeric-id': 408}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P31', 'id': 'Q5', 'numeric-id': 5}, {'entity-type': 'item', 'numeric-id': 18002399, 'id': 'Q18002399', 'type': 'wikibase-entityid', 'property': 'P735'}, {'property': 'P101', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q321150', 'numeric-id': 321150}, {'entity-type': 'item', 'property': 'P21', 'type': 'wikibase-entityid', 'numeric-id': 6581097, 'id': 'Q6581097'}, {'property': 'P106', 'numeric-id': 593644, 'id': 'Q593644', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'numeric-id': 56249701, 'property': 'P26', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q56249701'}, {'property': 'P463', 'id': 'Q463303', 'numeric-id': 463303, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'numeric-id': 123885, 'id': 'Q123885', 'entity-type': 'item', 'property': 'P463'}, {'id': 'Q233973', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 233973, 'property': 'P184'}, {'property': 'P166', 'type': 'wikibase-entityid', 'id': 'Q52382875', 'numeric-id': 52382875, 'entity-type': 'item'}, {'numeric-id': 15631401, 'property': 'P166', 'id': 'Q15631401', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q113469875', 'numeric-id': 113469875, 'property': 'P166'}), 'title': 'Q6775643'}
{'type': 'item', 'id': 'Q6775700', 'labels': (('en-g', 'Martin Holek'), ('en', 'Martin Holek'), ('en-ca', 'Martin Holek')), 'descriptions': (('en', 'Czech association football player'), ('en-g', 'Czech association football player'), ('en-ca', 'Czech association football player')), 'aliases': (), 'sitelinks': (('enwiki', 'Martin Holek', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd8\xaa\xd9\x8a\xd9\x86 \xd9\x87\xd9\x88\xd9\x84\xd9\x8a\xd9\x83', None)), 'claims': ({'type': 'wikibase-entityid', 'property': 'P641', 'id': 'Q2736', 'entity-type': 'item', 'numeric-id': 2736}, {'id': 'Q6581097', 'numeric-id': 6581097, 'entity-type': 'item', 'property': 'P21', 'type': 'wikibase-entityid'}, {'property': 'P569', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1989-05-29T00:00:00Z', 'timezone': 0, 'after': 0, 'precision': 11, 'type': 'time', 'before': 0}, {'entity-type': 'item', 'numeric-id': 220928, 'id': 'Q220928', 'property': 'P54', 'type': 'wikibase-entityid'}, {'property': 'P54', 'numeric-id': 3590346, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q3590346'}, {'id': 'Q15079182', 'property': 'P54', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 15079182}, {'entity-type': 'item', 'id': 'Q3873527', 'property': 'P54', 'numeric-id': 3873527, 'type': 'wikibase-entityid'}, {'id': 'Q18002399', 'numeric-id': 18002399, 'type': 'wikibase-entityid', 'property': 'P735', 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q5', 'numeric-id': 5, 'type': 'wikibase-entityid', 'property': 'P31'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 937857, 'property': 'P106', 'id': 'Q937857'}, {'id': 'Q33946', 'numeric-id': 33946, 'property': 'P27', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 727383, 'id': 'Q727383', 'property': 'P19'}, {'id': 'Q280658', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 280658, 'property': 'P413'}), 'title': 'Q6775700'}
{'type': 'item', 'id': 'Q6775908', 'labels': (('en', 'Rising Eagle: Futuristic Infantry Warfare'),), 'descriptions': (('en', 'video game'),), 'aliases': (), 'sitelinks': (('hewiki', 'Rising Eagle: Futuristic Infantry Warfare', None),), 'claims': ({'type': 'wikibase-entityid', 'numeric-id': 185029, 'id': 'Q185029', 'entity-type': 'item', 'property': 'P136'}, {'after': 0, 'precision': 11, 'property': 'P577', 'type': 'time', 'before': 0, 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+2008-11-12T00:00:00Z'}, {'type': 'string', 'property': 'P11688', 'value': '31736'}, {'property': 'P400', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q1406', 'numeric-id': 1406}, {'type': 'wikibase-entityid', 'id': 'Q7889', 'entity-type': 'item', 'numeric-id': 7889, 'property': 'P31'}), 'title': 'Q6775908'}
{'type': 'item', 'id': 'Q6775856', 'labels': (('en', 'Martin Katz'),), 'descriptions': (('en', 'American jewelry designer'),), 'aliases': (), 'sitelinks': (('enwiki', 'Martin Katz (jewelry designer)', None),), 'claims': ({'property': 'P31', 'id': 'Q5', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 5}, {'numeric-id': 486877, 'type': 'wikibase-entityid', 'property': 'P19', 'id': 'Q486877', 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q6581097', 'property': 'P21', 'numeric-id': 6581097, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q2519376', 'entity-type': 'item', 'numeric-id': 2519376, 'property': 'P106'}, {'numeric-id': 18002399, 'id': 'Q18002399', 'entity-type': 'item', 'property': 'P735', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q6608367', 'numeric-id': 6608367, 'entity-type': 'item', 'property': 'P69'}, {'numeric-id': 127856, 'id': 'Q127856', 'entity-type': 'item', 'property': 'P551', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'numeric-id': 8114053, 'property': 'P734', 'entity-type': 'item', 'id': 'Q8114053'}), 'title': 'Q6775856'}
{'type': 'item', 'id': 'Q6775917', 'labels': (('en-ca', 'Martin Kottler'), ('en-g', 'Martin Kottler'), ('en', 'Martin Kottler')), 'descriptions': (('en', 'early professional football player (1910-1989)'),), 'aliases': (), 'sitelinks': (('enwiki', 'Martin Kottler', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd8\xaa\xd9\x8a\xd9\x86 \xd9\x83\xd9\x88\xd8\xaa\xd9\x84\xd9\x8a\xd8\xb1', None)), 'claims': ({'amount': '+69', 'type': 'quantity', 'unit': 'http://www.wikidata.org/entity/Q218593', 'property': 'P2048'}, {'id': 'Q30', 'type': 'wikibase-entityid', 'numeric-id': 30, 'entity-type': 'item', 'property': 'P27'}, {'property': 'P54', 'type': 'wikibase-entityid', 'id': 'Q191477', 'entity-type': 'item', 'numeric-id': 191477}, {'type': 'wikibase-entityid', 'numeric-id': 5062248, 'id': 'Q5062248', 'entity-type': 'item', 'property': 'P54'}, {'unit': 'http://www.wikidata.org/entity/Q100995', 'amount': '+180', 'property': 'P2067', 'type': 'quantity'}, {'id': 'Q41323', 'property': 'P641', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 41323}, {'type': 'time', 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'time': '+1989-06-10T00:00:00Z', 'after': 0, 'before': 0, 'property': 'P570'}, {'property': 'P69', 'type': 'wikibase-entityid', 'id': 'Q1804942', 'entity-type': 'item', 'numeric-id': 1804942}, {'entity-type': 'item', 'property': 'P19', 'type': 'wikibase-entityid', 'id': 'Q1131994', 'numeric-id': 1131994}, {'numeric-id': 912985, 'property': 'P413', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q912985'}, {'id': 'Q19204627', 'numeric-id': 19204627, 'property': 'P106', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'numeric-id': 18002399, 'id': 'Q18002399', 'property': 'P735', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'id': 'Q12832963', 'numeric-id': 12832963, 'property': 'P20', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'numeric-id': 30335798, 'id': 'Q30335798', 'property': 'P734', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'before': 0, 'property': 'P569', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'after': 0, 'precision': 11, 'type': 'time', 'time': '+1910-05-01T00:00:00Z'}, {'property': 'P31', 'type': 'wikibase-entityid', 'numeric-id': 5, 'entity-type': 'item', 'id': 'Q5'}, {'id': 'Q6581097', 'entity-type': 'item', 'property': 'P21', 'numeric-id': 6581097, 'type': 'wikibase-entityid'}), 'title': 'Q6775917'}
{'type': 'item', 'id': 'Q6775991', 'labels': (('en', 'Rissoina redferni'),), 'descriptions': (('en', 'species of mollusc'),), 'aliases': (), 'sitelinks': (('viwiki', 'Rissoina redferni', None), ('cebwiki', 'Rissoina redferni', None), ('nlwiki', 'Rissoina redferni', None), ('enwiki', 'Rissoina redferni', None)), 'claims': ({'property': 'P105', 'entity-type': 'item', 'id': 'Q7432', 'type': 'wikibase-entityid', 'numeric-id': 7432}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q3171565', 'numeric-id': 3171565, 'property': 'P171'}, {'type': 'wikibase-entityid', 'id': 'Q16521', 'property': 'P31', 'entity-type': 'item', 'numeric-id': 16521}, {'type': 'string', 'property': 'P10585', 'value': '7T2PH'}, {'value': 'Rissoina redferni', 'type': 'string', 'property': 'P225'}), 'title': 'Q6775991'}
{'type': 'item', 'id': 'Q6775985', 'labels': (('en', 'Martin Lee'), ('en-g', 'Martin Lee'), ('en-ca', 'Martin Lee')), 'descriptions': (('en-g', 'British singer'), ('en-ca', 'British singer'), ('en', 'British singer')), 'aliases': (), 'sitelinks': (('fawiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd8\xaa\xdb\x8c\xd9\x86 \xd9\x84\xdb\x8c (\xd8\xae\xd9\x88\xd8\xa7\xd9\x86\xd9\x86\xd8\xaf\xd9\x87)', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd8\xaa\xd9\x86 \xd9\x84\xd9\x89', None), ('enwiki', 'Martin Lee (singer)', None), ('arwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd8\xaa\xd9\x86 \xd9\x84\xd9\x8a (\xd9\x85\xd8\xba\xd9\x86\xd9\x8a)', None), ('azbwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd8\xaa\xdb\x8c\xd9\x86 \xd9\x84\xdb\x8c (\xd8\xb4\xd8\xa7\xd8\xb1\xda\xa9\xdb\x8c\xda\x86\xdb\x8c)', None)), 'claims': ({'timezone': 0, 'type': 'time', 'after': 0, 'precision': 11, 'property': 'P569', 'time': '+1949-11-26T00:00:00Z', 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'numeric-id': 21, 'property': 'P19', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q21'}, {'id': 'Q2117397', 'property': 'P264', 'entity-type': 'item', 'numeric-id': 2117397, 'type': 'wikibase-entityid'}, {'property': 'P12098', 'value': '1208670', 'type': 'string'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 209751, 'property': 'P1344', 'id': 'Q209751'}, {'id': 'Q37073', 'property': 'P136', 'type': 'wikibase-entityid', 'numeric-id': 37073, 'entity-type': 'item'}, {'id': 'Q13498051', 'type': 'wikibase-entityid', 'numeric-id': 13498051, 'property': 'P734', 'entity-type': 'item'}, {'type': 'time', 'property': 'P2031', 'precision': 9, 'time': '+1973-00-00T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'before': 0, 'timezone': 0}, {'entity-type': 'item', 'numeric-id': 17172850, 'property': 'P1303', 'type': 'wikibase-entityid', 'id': 'Q17172850'}, {'property': 'P27', 'numeric-id': 145, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q145'}, {'id': 'Q6581097', 'property': 'P21', 'numeric-id': 6581097, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'value': 'agent/base/100541', 'property': 'P7704', 'type': 'string'}, {'type': 'wikibase-entityid', 'numeric-id': 1860, 'entity-type': 'item', 'property': 'P1412', 'id': 'Q1860'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q1860', 'numeric-id': 1860, 'property': 'P103'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q5', 'property': 'P31', 'numeric-id': 5}, {'numeric-id': 177220, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q177220', 'property': 'P106'}, {'type': 'wikibase-entityid', 'numeric-id': 18002399, 'id': 'Q18002399', 'entity-type': 'item', 'property': 'P735'}), 'title': 'Q6775985'}
{'type': 'item', 'id': 'Q6776071', 'labels': (('en', 'Voorwindia tiberiana'),), 'descriptions': (('en', 'species of mollusc'),), 'aliases': (), 'sitelinks': (('enwiki', 'Voorwindia tiberiana', None), ('viwiki', 'Voorwindia tiberiana', None), ('cebwiki', 'Voorwindia tiberiana', None), ('nlwiki', 'Voorwindia tiberiana', None), ('commonswiki', 'Category:Voorwindia tiberiana', None)), 'claims': ({'id': 'Q16521', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 16521, 'property': 'P31'}, {'value': '5BQWG', 'property': 'P10585', 'type': 'string'}, {'property': 'P6104', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q56241615', 'numeric-id': 56241615}, {'value': 'Voorwindia tiberiana', 'type': 'string', 'property': 'P225'}, {'id': 'Q7432', 'entity-type': 'item', 'numeric-id': 7432, 'property': 'P105', 'type': 'wikibase-entityid'}, {'type': 'monolingualtext', 'property': 'P1813', 'language': 'mul', 'text': 'V. tiberiana'}, {'entity-type': 'item', 'numeric-id': 7941735, 'id': 'Q7941735', 'property': 'P171', 'type': 'wikibase-entityid'}, {'type': 'string', 'value': 'Voorwindia tiberiana', 'property': 'P373'}), 'title': 'Q6776071'}
{'type': 'item', 'id': 'Q6776223', 'labels': (('en', 'Martin Mo\xc3\x9fdorf'),), 'descriptions': (('en', "German officer and Knight's Cross recipient (1916-2002)"),), 'aliases': (('en', 'Martin Mossdorf'),), 'sitelinks': (('enwiki', 'Martin Mo\xc3\x9fdorf', ('Q70893996',)), ('ukwiki', '\xd0\x9c\xd0\xb0\xd1\x80\xd1\x82\xd1\x96\xd0\xbd \xd0\x9c\xd0\xbe\xd1\x81\xd1\x81\xd0\xb4\xd0\xbe\xd1\x80\xd1\x84', None)), 'claims': ({'before': 0, 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'after': 0, 'property': 'P570', 'type': 'time', 'time': '+2002-01-11T00:00:00Z'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q6581097', 'property': 'P21', 'numeric-id': 6581097}, {'property': 'P735', 'id': 'Q18002399', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 18002399}, {'property': 'P166', 'numeric-id': 165558, 'entity-type': 'item', 'id': 'Q165558', 'type': 'wikibase-entityid'}, {'id': 'Q17412908', 'property': 'P166', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 17412908}, {'property': 'P31', 'numeric-id': 5, 'entity-type': 'item', 'id': 'Q5', 'type': 'wikibase-entityid'}, {'numeric-id': 1726, 'entity-type': 'item', 'property': 'P20', 'id': 'Q1726', 'type': 'wikibase-entityid'}, {'id': 'Q362', 'property': 'P607', 'numeric-id': 362, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P1412', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q188', 'numeric-id': 188}, {'property': 'P19', 'type': 'wikibase-entityid', 'numeric-id': 10780, 'id': 'Q10780', 'entity-type': 'item'}, {'before': 0, 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'property': 'P569', 'precision': 11, 'type': 'time', 'time': '+1916-01-10T00:00:00Z'}, {'property': 'P27', 'numeric-id': 183, 'id': 'Q183', 'entity-type': 'item', 'type': 'wikibase-entityid'}), 'title': 'Q6776223'}
{'type': 'item', 'id': 'Q6776304', 'labels': (('en', "Martin O'Toole"),), 'descriptions': (('en', 'Irish politician'), ('en-ca', 'Irish politician'), ('en-g', 'Irish politician')), 'aliases': (), 'sitelinks': (('enwiki', "Martin O'Toole", None),), 'claims': ({'id': 'Q5', 'entity-type': 'item', 'numeric-id': 5, 'property': 'P31', 'type': 'wikibase-entityid'}, {'time': '+1925-06-27T00:00:00Z', 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0, 'timezone': 0, 'type': 'time', 'precision': 11, 'property': 'P569'}, {'id': 'Q654291', 'numeric-id': 654291, 'property': 'P39', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'entity-type': 'item', 'numeric-id': 18043391, 'type': 'wikibase-entityid', 'property': 'P39', 'id': 'Q18043391'}, {'entity-type': 'item', 'id': 'Q18043391', 'numeric-id': 18043391, 'property': 'P39', 'type': 'wikibase-entityid'}, {'property': 'P39', 'id': 'Q18043391', 'numeric-id': 18043391, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'id': 'Q18043391', 'property': 'P39', 'numeric-id': 18043391, 'entity-type': 'item'}, {'entity-type': 'item', 'numeric-id': 18043391, 'id': 'Q18043391', 'property': 'P39', 'type': 'wikibase-entityid'}, {'id': 'Q6581097', 'numeric-id': 6581097, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P21'}, {'numeric-id': 18002399, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P735', 'id': 'Q18002399'}, {'numeric-id': 82955, 'entity-type': 'item', 'property': 'P106', 'id': 'Q82955', 'type': 'wikibase-entityid'}, {'id': 'Q131512', 'property': 'P106', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 131512}, {'id': 'Q27', 'numeric-id': 27, 'property': 'P27', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'numeric-id': 31747, 'id': 'Q31747', 'entity-type': 'item', 'property': 'P27', 'type': 'wikibase-entityid'}, {'before': 0, 'time': '+2013-10-01T00:00:00Z', 'precision': 11, 'type': 'time', 'property': 'P570', 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0}, {'type': 'string', 'value': 'Q6776304', 'property': 'P10632'}, {'type': 'wikibase-entityid', 'property': 'P102', 'id': 'Q216517', 'entity-type': 'item', 'numeric-id': 216517}, {'numeric-id': 16880618, 'id': 'Q16880618', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P734'}), 'title': 'Q6776304'}
{'type': 'item', 'id': 'Q6776409', 'labels': (('en-g', 'Martin Pregelj'), ('en-ca', 'Martin Pregelj'), ('en', 'Martin Pregelj')), 'descriptions': (('en', 'Slovenian footballer'), ('en-g', 'Slovenian footballer'), ('en-ca', 'Slovenian footballer')), 'aliases': (), 'sitelinks': (('enwiki', 'Martin Pregelj', None), ('slwikiquote', 'Martin Pregelj', None), ('slwiki', 'Martin Pregelj', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd8\xaa\xd9\x8a\xd9\x86 \xd9\xbe\xd8\xb1\xd9\x8a\xd8\xac\xd9\x8a\xd9\x84\xda\x86', None)), 'claims': ({'value': '13334', 'type': 'string', 'property': 'P10360'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P31', 'id': 'Q5', 'numeric-id': 5}, {'property': 'P106', 'id': 'Q937857', 'numeric-id': 937857, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q193592', 'property': 'P413', 'type': 'wikibase-entityid', 'numeric-id': 193592}, {'numeric-id': 1015, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P19', 'id': 'Q1015'}, {'property': 'P1412', 'numeric-id': 9063, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q9063'}, {'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'after': 0, 'property': 'P569', 'type': 'time', 'precision': 11, 'time': '+1977-05-06T00:00:00Z'}, {'numeric-id': 2736, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P641', 'id': 'Q2736'}, {'id': 'Q12799411', 'numeric-id': 12799411, 'entity-type': 'item', 'property': 'P734', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q44305', 'numeric-id': 44305, 'type': 'wikibase-entityid', 'property': 'P54'}, {'numeric-id': 210530, 'id': 'Q210530', 'property': 'P54', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'numeric-id': 124007617, 'property': 'P54', 'entity-type': 'item', 'id': 'Q124007617'}, {'numeric-id': 959341, 'property': 'P54', 'entity-type': 'item', 'id': 'Q959341', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q44305', 'entity-type': 'item', 'property': 'P54', 'numeric-id': 44305}, {'property': 'P54', 'id': 'Q210530', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 210530}, {'numeric-id': 845146, 'property': 'P54', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q845146'}, {'numeric-id': 44307, 'type': 'wikibase-entityid', 'property': 'P54', 'entity-type': 'item', 'id': 'Q44307'}, {'numeric-id': 16250512, 'entity-type': 'item', 'property': 'P54', 'type': 'wikibase-entityid', 'id': 'Q16250512'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q4863647', 'numeric-id': 4863647, 'property': 'P54'}, {'entity-type': 'item', 'id': 'Q215', 'property': 'P27', 'numeric-id': 215, 'type': 'wikibase-entityid'}, {'numeric-id': 83286, 'property': 'P27', 'id': 'Q83286', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'numeric-id': 6581097, 'entity-type': 'item', 'id': 'Q6581097', 'property': 'P21'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 18002399, 'property': 'P735', 'id': 'Q18002399'}), 'title': 'Q6776409'}
{'type': 'item', 'id': 'Q6776445', 'labels': (('en-g', 'Martin Redmayne'), ('en', 'Martin Redmayne, Baron Redmayne'), ('en-ca', 'Martin Redmayne')), 'descriptions': (('en-g', 'British politician'), ('en', 'British politician (1910-1983)'), ('en-ca', 'British politician')), 'aliases': (), 'sitelinks': (('slwiki', 'Martin Redmayne, Baron Redmayne', None), ('enwiki', 'Martin Redmayne, Baron Redmayne', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd8\xaa\xd9\x8a\xd9\x86 \xd8\xb1\xd9\x8a\xd8\xaf\xd9\x85\xd8\xa7\xd9\x8a\xd9\x86', None), ('dewiki', 'Martin Redmayne, Baron Redmayne', None), ('frwiki', 'Martin Redmayne', None)), 'claims': ({'language': 'en', 'property': 'P1559', 'text': 'Martin Redmayne, Baron Redmayne', 'type': 'monolingualtext'}, {'type': 'wikibase-entityid', 'id': 'Q222595', 'entity-type': 'item', 'property': 'P241', 'numeric-id': 222595}, {'numeric-id': 76138195, 'entity-type': 'item', 'property': 'P26', 'type': 'wikibase-entityid', 'id': 'Q76138195'}, {'id': 'Q1860', 'entity-type': 'item', 'numeric-id': 1860, 'property': 'P1412', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'numeric-id': 145, 'id': 'Q145', 'entity-type': 'item', 'property': 'P27'}, {'property': 'P27', 'type': 'wikibase-entityid', 'id': 'Q174193', 'entity-type': 'item', 'numeric-id': 174193}, {'id': 'Q9626', 'numeric-id': 9626, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P102'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q76138140', 'property': 'P22', 'numeric-id': 76138140}, {'id': 'Q76138196', 'type': 'wikibase-entityid', 'property': 'P40', 'entity-type': 'item', 'numeric-id': 76138196}, {'entity-type': 'item', 'id': 'Q82955', 'property': 'P106', 'type': 'wikibase-entityid', 'numeric-id': 82955}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q47064', 'numeric-id': 47064, 'property': 'P106'}, {'id': 'Q18002399', 'property': 'P735', 'numeric-id': 18002399, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P25', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q76138142', 'numeric-id': 76138142}, {'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q5', 'numeric-id': 5}, {'type': 'wikibase-entityid', 'numeric-id': 615838, 'entity-type': 'item', 'property': 'P166', 'id': 'Q615838'}, {'after': 0, 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'time': '+1910-11-16T00:00:00Z', 'type': 'time', 'timezone': 0, 'precision': 11}, {'numeric-id': 55042728, 'type': 'wikibase-entityid', 'property': 'P734', 'id': 'Q55042728', 'entity-type': 'item'}, {'before': 0, 'time': '+1983-04-28T00:00:00Z', 'type': 'time', 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'timezone': 0, 'property': 'P570'}, {'id': 'Q362', 'entity-type': 'item', 'numeric-id': 362, 'type': 'wikibase-entityid', 'property': 'P607'}, {'id': 'Q282019', 'numeric-id': 282019, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P97'}, {'type': 'wikibase-entityid', 'id': 'Q28841847', 'property': 'P39', 'entity-type': 'item', 'numeric-id': 28841847}, {'numeric-id': 41582608, 'property': 'P39', 'entity-type': 'item', 'id': 'Q41582608', 'type': 'wikibase-entityid'}, {'numeric-id': 41582606, 'property': 'P39', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q41582606'}, {'property': 'P39', 'entity-type': 'item', 'numeric-id': 41582604, 'type': 'wikibase-entityid', 'id': 'Q41582604'}, {'entity-type': 'item', 'property': 'P39', 'numeric-id': 41582603, 'type': 'wikibase-entityid', 'id': 'Q41582603'}, {'property': 'P39', 'entity-type': 'item', 'numeric-id': 41582600, 'id': 'Q41582600', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q18952564', 'numeric-id': 18952564, 'property': 'P39'}, {'entity-type': 'item', 'property': 'P21', 'numeric-id': 6581097, 'type': 'wikibase-entityid', 'id': 'Q6581097'}, {'entity-type': 'item', 'id': 'Q84', 'property': 'P937', 'type': 'wikibase-entityid', 'numeric-id': 84}, {'property': 'P10849', 'type': 'string', 'value': '1285'}, {'entity-type': 'item', 'id': 'Q4967182', 'numeric-id': 4967182, 'property': 'P410', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q220208', 'numeric-id': 220208, 'property': 'P3602', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 748667, 'id': 'Q748667', 'type': 'wikibase-entityid', 'property': 'P3602'}, {'entity-type': 'item', 'id': 'Q918412', 'numeric-id': 918412, 'property': 'P3602', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'numeric-id': 918420, 'property': 'P3602', 'id': 'Q918420', 'entity-type': 'item'}, {'property': 'P3602', 'entity-type': 'item', 'id': 'Q3722280', 'numeric-id': 3722280, 'type': 'wikibase-entityid'}, {'numeric-id': 3417076, 'property': 'P69', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q3417076'}), 'title': 'Q6776445'}
{'type': 'item', 'id': 'Q6776578', 'labels': (('en', 'Do\xc4\x9fanc\xc4\xb1'),), 'descriptions': (('en', 'k\xc3\xb6y in Yeni\xc3\xa7a\xc4\x9fa, Turkey'), ('en-g', 'k\xc3\xb6y in Yeni\xc3\xa7a\xc4\x9fa, Turkey'), ('en-ca', 'k\xc3\xb6y in Yeni\xc3\xa7a\xc4\x9fa, Turkey')), 'aliases': (), 'sitelinks': (('ttwiki', '\xd0\x94\xd0\xbe\xd0\xb3\xd0\xb0\xd0\xbd\xd2\x97\xd1\x8b (\xd0\x95\xd0\xbd\xd0\xb8\xd1\x87\xd0\xb0\xd0\xb3\xd0\xb0)', None), ('viwiki', 'Do\xc4\x9fanc\xc4\xb1, Yeni\xc3\xa7a\xc4\x9fa', None), ('enwiki', 'Do\xc4\x9fanc\xc4\xb1, Yeni\xc3\xa7a\xc4\x9fa', None), ('trwiki', 'Do\xc4\x9fanc\xc4\xb1, Yeni\xc3\xa7a\xc4\x9fa', None), ('cewiki', '\xd0\x94\xd0\xbe\xd0\xb3\xd3\x80\xd0\xb0\xd0\xbd\xd0\xb4\xd0\xb6\xd0\xb8 (\xd0\x99\xd0\xb5\xd0\xbd\xd0\xb8\xd1\x87\xd0\xb0\xd0\xb3\xd3\x80\xd0\xb0)', None)), 'claims': ({'type': 'wikibase-entityid', 'id': 'Q2674058', 'property': 'P131', 'entity-type': 'item', 'numeric-id': 2674058}, {'id': 'Q1529096', 'numeric-id': 1529096, 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P17', 'id': 'Q43', 'numeric-id': 43, 'type': 'wikibase-entityid', 'entity-type': 'item'}), 'title': 'Q6776578'}
{'type': 'item', 'id': 'Q6777027', 'labels': (('en', 'Martina Falke'),), 'descriptions': (('en', 'German canoeist'),), 'aliases': (), 'sitelinks': (('enwiki', 'Martina Falke', None),), 'claims': ({'type': 'time', 'before': 0, 'property': 'P569', 'precision': 11, 'time': '+1951-07-21T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'timezone': 0}, {'id': 'Q13382566', 'type': 'wikibase-entityid', 'property': 'P106', 'numeric-id': 13382566, 'entity-type': 'item'}, {'property': 'P27', 'numeric-id': 183, 'id': 'Q183', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'entity-type': 'item', 'property': 'P27', 'type': 'wikibase-entityid', 'id': 'Q16957', 'numeric-id': 16957}, {'amount': '+160', 'property': 'P2048', 'type': 'quantity', 'unit': 'http://www.wikidata.org/entity/Q174728'}, {'property': 'P1532', 'type': 'wikibase-entityid', 'id': 'Q16957', 'entity-type': 'item', 'numeric-id': 16957}, {'amount': '+56', 'type': 'quantity', 'property': 'P2067', 'unit': 'http://www.wikidata.org/entity/Q11570'}, {'id': 'Q5', 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 5}, {'property': 'P734', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q4480975', 'numeric-id': 4480975}, {'numeric-id': 4963627, 'type': 'wikibase-entityid', 'id': 'Q4963627', 'entity-type': 'item', 'property': 'P735'}, {'id': 'Q8438', 'property': 'P1344', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 8438}, {'numeric-id': 6581072, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q6581072', 'property': 'P21'}, {'entity-type': 'item', 'numeric-id': 213934, 'id': 'Q213934', 'type': 'wikibase-entityid', 'property': 'P641'}), 'title': 'Q6777027'}
{'type': 'item', 'id': 'Q6777040', 'labels': (('en', 'Martina Koppelstetter'),), 'descriptions': (('en', 'German mezzo-soprano'),), 'aliases': (), 'sitelinks': (('enwiki', 'Martina Koppelstetter', None),), 'claims': ({'type': 'wikibase-entityid', 'property': 'P69', 'id': 'Q657167', 'entity-type': 'item', 'numeric-id': 657167}, {'type': 'wikibase-entityid', 'id': 'Q183', 'numeric-id': 183, 'entity-type': 'item', 'property': 'P27'}, {'type': 'wikibase-entityid', 'property': 'P1303', 'entity-type': 'item', 'id': 'Q17172850', 'numeric-id': 17172850}, {'value': 'http://www.koppelstetter.com/biografie.html', 'type': 'string', 'property': 'P856'}, {'property': 'P106', 'entity-type': 'item', 'id': 'Q2865819', 'numeric-id': 2865819, 'type': 'wikibase-entityid'}, {'id': 'Q6581072', 'numeric-id': 6581072, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P21'}, {'value': 'agent/base/45180', 'property': 'P7704', 'type': 'string'}, {'entity-type': 'item', 'numeric-id': 5, 'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q5'}, {'entity-type': 'item', 'numeric-id': 188, 'type': 'wikibase-entityid', 'id': 'Q188', 'property': 'P1412'}, {'property': 'P735', 'type': 'wikibase-entityid', 'id': 'Q4963627', 'entity-type': 'item', 'numeric-id': 4963627}, {'numeric-id': 186506, 'property': 'P412', 'entity-type': 'item', 'id': 'Q186506', 'type': 'wikibase-entityid'}), 'title': 'Q6777040'}
{'type': 'item', 'id': 'Q6777206', 'labels': (('en', 'Martins Heron'),), 'descriptions': (('en', 'village in Berkshire, United Kingdom'),), 'aliases': (), 'sitelinks': (('cywiki', 'Martins Heron', None), ('arwiki', '\xd9\x85\xd8\xb1\xd8\xaa\xd9\x8a\xd9\x86\xd8\xb3 \xd9\x87\xd8\xb1\xd9\x86 (\xd8\xa8\xd8\xa7\xd8\xb1\xd9\x83\xd8\xb4\xd9\x8a\xd8\xb1)', None), ('enwiki', 'Martins Heron', None), ('commonswiki', 'Category:Martins Heron', None), ('arzwiki', '\xd9\x85\xd8\xb1\xd8\xaa\xd9\x8a\xd9\x86\xd8\xb3 \xd9\x87\xd8\xb1\xd9\x86', None)), 'claims': ({'value': 'SU889685', 'property': 'P613', 'type': 'string'}, {'property': 'P18', 'type': 'string', 'value': 'MartinsHeron 458Down.JPG'}, {'entity-type': 'item', 'id': 'Q532', 'numeric-id': 532, 'type': 'wikibase-entityid', 'property': 'P31'}, {'type': 'string', 'property': 'P373', 'value': 'Martins Heron'}, {'id': 'Q67284726', 'entity-type': 'item', 'property': 'P7959', 'numeric-id': 67284726, 'type': 'wikibase-entityid'}, {'property': 'P17', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q145', 'numeric-id': 145}, {'entity-type': 'item', 'id': 'Q961072', 'property': 'P131', 'numeric-id': 961072, 'type': 'wikibase-entityid'}), 'title': 'Q6777206'}
{'type': 'item', 'id': 'Q6777261', 'labels': (('en', 'Martinus Schouman'),), 'descriptions': (('en', '19th-century painter from the Northern Netherlands (1770-1848)'),), 'aliases': (('en', 'Martinus Schouwman'), ('en', 'Martinus Schoemans'), ('en', 'Martinus Schowman'), ('en', 'Schoemans'), ('en', 'Martinas Schouman'), ('en', 'M. schoumann'), ('en', 'Schouwman Dordt'), ('en', 'M Schouman a Dordt'), ('en', 'martinus schouman'), ('en', 'M. Shoman'), ('en', 'Schowman'), ('en', 'Schouwman'), ('en', 'M. Schouman')), 'sitelinks': (('nlwiki', 'Martinus Schouman', None), ('commonswiki', 'Category:Martinus Schouman', None), ('enwiki', 'Martinus Schouman', None)), 'claims': ({'numeric-id': 1028181, 'property': 'P106', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q1028181'}, {'property': 'P106', 'numeric-id': 15296811, 'type': 'wikibase-entityid', 'id': 'Q15296811', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'property': 'P5008', 'entity-type': 'item', 'numeric-id': 104694359, 'id': 'Q104694359'}, {'property': 'P1343', 'numeric-id': 602358, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q602358'}, {'entity-type': 'item', 'id': 'Q7411', 'numeric-id': 7411, 'type': 'wikibase-entityid', 'property': 'P1412'}, {'property': 'P9493', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q5503390', 'numeric-id': 5503390}, {'type': 'string', 'value': 'm0jwtb31', 'property': 'P10297'}, {'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q5', 'numeric-id': 5}, {'type': 'wikibase-entityid', 'property': 'P27', 'entity-type': 'item', 'id': 'Q55', 'numeric-id': 55}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'before': 0, 'property': 'P570', 'time': '+1848-10-30T00:00:00Z', 'after': 0, 'timezone': 0, 'precision': 11}, {'type': 'wikibase-entityid', 'id': 'Q6581097', 'property': 'P21', 'numeric-id': 6581097, 'entity-type': 'item'}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'type': 'time', 'timezone': 0, 'after': 0, 'precision': 11, 'before': 0, 'time': '+1770-01-29T00:00:00Z'}, {'property': 'P800', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q17323810', 'numeric-id': 17323810}, {'id': 'Q17324080', 'numeric-id': 17324080, 'entity-type': 'item', 'property': 'P800', 'type': 'wikibase-entityid'}, {'id': 'Q17324081', 'numeric-id': 17324081, 'entity-type': 'item', 'property': 'P800', 'type': 'wikibase-entityid'}, {'type': 'string', 'value': 'The Dutch and English fleets meet on the way to Boulogne - Het treffen tussen de Hollandse en de Engelse vloot tijdens de tocht van de Hollandse flottille naar Boulogne, 1805 (Martinus Schouman, 1806).jpg', 'property': 'P18'}, {'property': 'P20', 'id': 'Q40844', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 40844}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q71887839', 'numeric-id': 71887839, 'property': 'P7763'}, {'id': 'Q71887839', 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P7763', 'numeric-id': 71887839}, {'property': 'P1472', 'value': 'Martinus Schouman', 'type': 'string'}, {'id': 'Q163804', 'type': 'wikibase-entityid', 'numeric-id': 163804, 'entity-type': 'item', 'property': 'P6379'}, {'property': 'P6379', 'id': 'Q1820897', 'entity-type': 'item', 'numeric-id': 1820897, 'type': 'wikibase-entityid'}, {'id': 'Q2874177', 'entity-type': 'item', 'property': 'P6379', 'type': 'wikibase-entityid', 'numeric-id': 2874177}, {'type': 'wikibase-entityid', 'id': 'Q190804', 'entity-type': 'item', 'numeric-id': 190804, 'property': 'P6379'}, {'entity-type': 'item', 'property': 'P6379', 'id': 'Q1505892', 'numeric-id': 1505892, 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q3330195', 'numeric-id': 3330195, 'type': 'wikibase-entityid', 'property': 'P6379'}, {'numeric-id': 99349995, 'property': 'P6379', 'type': 'wikibase-entityid', 'id': 'Q99349995', 'entity-type': 'item'}, {'id': 'Q2425770', 'numeric-id': 2425770, 'type': 'wikibase-entityid', 'property': 'P6379', 'entity-type': 'item'}, {'id': 'Q1616123', 'property': 'P6379', 'numeric-id': 1616123, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'entity-type': 'item', 'property': 'P6379', 'numeric-id': 2755458, 'type': 'wikibase-entityid', 'id': 'Q2755458'}, {'property': 'P373', 'type': 'string', 'value': 'Martinus Schouman'}, {'id': 'Q158607', 'entity-type': 'item', 'numeric-id': 158607, 'type': 'wikibase-entityid', 'property': 'P136'}, {'numeric-id': 191163, 'entity-type': 'item', 'id': 'Q191163', 'property': 'P136', 'type': 'wikibase-entityid'}, {'numeric-id': 26421, 'entity-type': 'item', 'property': 'P19', 'id': 'Q26421', 'type': 'wikibase-entityid'}, {'numeric-id': 116923588, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q116923588', 'property': 'P69'}, {'time': '+1793-01-01T00:00:00Z', 'type': 'time', 'after': 0, 'property': 'P1317', 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'precision': 9}, {'type': 'wikibase-entityid', 'numeric-id': 26421, 'entity-type': 'item', 'id': 'Q26421', 'property': 'P937'}, {'id': 'Q40844', 'numeric-id': 40844, 'entity-type': 'item', 'property': 'P937', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q17520926', 'property': 'P735', 'entity-type': 'item', 'numeric-id': 17520926}, {'id': 'Q253439', 'numeric-id': 253439, 'type': 'wikibase-entityid', 'property': 'P463', 'entity-type': 'item'}), 'title': 'Q6777261'}
{'type': 'item', 'id': 'Q6777945', 'labels': (('en', 'Marumari'),), 'descriptions': (('en', 'US musical group'),), 'aliases': (), 'sitelinks': (('enwiki', 'Marumari', None),), 'claims': ({'id': 'Q215380', 'numeric-id': 215380, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P31'}, {'value': 'agent/base/163422', 'property': 'P7704', 'type': 'string'}, {'numeric-id': 30, 'property': 'P495', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q30'}, {'precision': 9, 'timezone': 0, 'after': 0, 'type': 'time', 'time': '+1998-00-00T00:00:00Z', 'before': 0, 'property': 'P2031', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}), 'title': 'Q6777945'}
{'type': 'item', 'id': 'Q6778044', 'labels': (('en', 'Maruya'),), 'descriptions': (('en', 'Filipino banana fritters'),), 'aliases': (), 'sitelinks': (('bnwiki', '\xe0\xa6\xae\xe0\xa6\xbe\xe0\xa6\xb0\xe0\xa7\x81\xe0\xa6\xaf\xe0\xa6\xbc\xe0\xa6\xbe (\xe0\xa6\x96\xe0\xa6\xbe\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa6\xb0)', None), ('commonswiki', 'Category:Maruya (food)', None), ('jvwiki', 'Maruya', None), ('enwiki', 'Pinaypay', None)), 'claims': ({'id': 'Q2095', 'numeric-id': 2095, 'property': 'P279', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'value': 'Maruya (Philippines) 3.jpg', 'type': 'string', 'property': 'P18'}, {'value': 'Maruya (food)', 'property': 'P373', 'type': 'string'}, {'numeric-id': 503, 'id': 'Q503', 'property': 'P527', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'id': 'Q928', 'property': 'P495', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 928}), 'title': 'Q6778044'}
{'type': 'item', 'id': 'Q6778322', 'labels': (('en', 'Marvin Delph'),), 'descriptions': (('en', 'American basketball player'),), 'aliases': (), 'sitelinks': (('itwiki', 'Marvin Delph', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xda\xa4\xd9\x8a\xd9\x86 \xd8\xaf\xd9\x8a\xd9\x84\xd9\x81', None), ('enwiki', 'Marvin Delph', None), ('frwiki', 'Marvin Delph', None)), 'claims': ({'numeric-id': 37513454, 'property': 'P734', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q37513454'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 3866524, 'id': 'Q3866524', 'property': 'P54'}, {'numeric-id': 576739, 'property': 'P1344', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q576739'}, {'entity-type': 'item', 'id': 'Q273199', 'type': 'wikibase-entityid', 'numeric-id': 273199, 'property': 'P413'}, {'entity-type': 'item', 'numeric-id': 5, 'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q5'}, {'id': 'Q16279095', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P735', 'numeric-id': 16279095}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q6581097', 'property': 'P21', 'numeric-id': 6581097}, {'property': 'P27', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q30', 'numeric-id': 30}, {'type': 'quantity', 'amount': '+180', 'unit': 'http://www.wikidata.org/entity/Q100995', 'property': 'P2067'}, {'id': 'Q3665646', 'property': 'P106', 'entity-type': 'item', 'numeric-id': 3665646, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q1100222', 'numeric-id': 1100222, 'property': 'P647'}, {'property': 'P569', 'before': 0, 'precision': 11, 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'time': '+1956-09-15T00:00:00Z', 'timezone': 0}, {'amount': '+193', 'property': 'P2048', 'type': 'quantity', 'unit': 'http://www.wikidata.org/entity/Q174728'}, {'id': 'Q1860', 'property': 'P103', 'numeric-id': 1860, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'value': 'Marvin Delph.jpg', 'property': 'P18', 'type': 'string'}, {'id': 'Q5372', 'numeric-id': 5372, 'entity-type': 'item', 'property': 'P641', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'numeric-id': 79853, 'entity-type': 'item', 'id': 'Q79853', 'property': 'P19'}, {'numeric-id': 30, 'property': 'P1532', 'type': 'wikibase-entityid', 'id': 'Q30', 'entity-type': 'item'}, {'id': 'Q5166710', 'numeric-id': 5166710, 'property': 'P69', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'numeric-id': 1070333, 'id': 'Q1070333', 'entity-type': 'item', 'property': 'P69'}, {'entity-type': 'item', 'id': 'Q94861615', 'property': 'P118', 'type': 'wikibase-entityid', 'numeric-id': 94861615}), 'title': 'Q6778322'}
{'type': 'item', 'id': 'Q6778394', 'labels': (('en', 'Marvin Karawana'),), 'descriptions': (('en', 'New Zealand rugby league footballer'),), 'aliases': (), 'sitelinks': (('enwiki', 'Marvin Karawana', None), ('commonswiki', 'Category:Marvin Karawana', None)), 'claims': ({'id': 'Q6581097', 'entity-type': 'item', 'numeric-id': 6581097, 'property': 'P21', 'type': 'wikibase-entityid'}, {'property': 'P54', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q18862680', 'numeric-id': 18862680}, {'value': 'Marvin Karawana 2008.jpg', 'type': 'string', 'property': 'P18'}, {'numeric-id': 10962, 'type': 'wikibase-entityid', 'property': 'P641', 'entity-type': 'item', 'id': 'Q10962'}, {'property': 'P373', 'type': 'string', 'value': 'Marvin Karawana'}, {'property': 'P1412', 'entity-type': 'item', 'id': 'Q1860', 'type': 'wikibase-entityid', 'numeric-id': 1860}, {'entity-type': 'item', 'property': 'P735', 'id': 'Q16279095', 'numeric-id': 16279095, 'type': 'wikibase-entityid'}, {'id': 'Q7587284', 'entity-type': 'item', 'property': 'P69', 'numeric-id': 7587284, 'type': 'wikibase-entityid'}, {'numeric-id': 5, 'id': 'Q5', 'type': 'wikibase-entityid', 'property': 'P31', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'numeric-id': 14373094, 'entity-type': 'item', 'id': 'Q14373094', 'property': 'P106'}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1986-07-30T00:00:00Z', 'before': 0, 'precision': 11, 'property': 'P569', 'timezone': 0, 'after': 0, 'type': 'time'}, {'type': 'wikibase-entityid', 'numeric-id': 7960201, 'id': 'Q7960201', 'entity-type': 'item', 'property': 'P19'}, {'property': 'P27', 'entity-type': 'item', 'id': 'Q664', 'numeric-id': 664, 'type': 'wikibase-entityid'}), 'title': 'Q6778394'}
{'type': 'item', 'id': 'Q6778408', 'labels': (('en', 'Marvin Liebman'),), 'descriptions': (('en-ca', 'American activist'), ('en-g', 'American activist'), ('en', 'American activist')), 'aliases': (), 'sitelinks': (('enwiki', 'Marvin Liebman', None), ('commonswiki', 'Category:Marvin Liebman', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x81\xd9\x86 \xd9\x84\xd9\x8a\xd8\xa8\xd9\x85\xd8\xa7\xd9\x86', None), ('zhwiki', '\xe9\xa9\xac\xe6\x96\x87\xc2\xb7\xe5\x88\xa9\xe5\xb8\x83\xe6\x9b\xbc', None)), 'claims': ({'entity-type': 'item', 'id': 'Q60643992', 'numeric-id': 60643992, 'type': 'wikibase-entityid', 'property': 'P485'}, {'value': '34036', 'property': 'P10660', 'type': 'string'}, {'entity-type': 'item', 'numeric-id': 37463643, 'type': 'wikibase-entityid', 'id': 'Q37463643', 'property': 'P734'}, {'value': 'Marvin Liebman', 'type': 'string', 'property': 'P373'}, {'property': 'P12098', 'type': 'string', 'value': '1211368'}, {'property': 'P102', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 29468, 'id': 'Q29468'}, {'type': 'wikibase-entityid', 'property': 'P31', 'entity-type': 'item', 'id': 'Q5', 'numeric-id': 5}, {'property': 'P91', 'type': 'wikibase-entityid', 'id': 'Q592', 'entity-type': 'item', 'numeric-id': 592}, {'type': 'time', 'time': '+1923-01-01T00:00:00Z', 'before': 0, 'precision': 9, 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'property': 'P569'}, {'id': 'Q60', 'entity-type': 'item', 'property': 'P19', 'type': 'wikibase-entityid', 'numeric-id': 60}, {'id': 'Q61', 'entity-type': 'item', 'numeric-id': 61, 'type': 'wikibase-entityid', 'property': 'P20'}, {'entity-type': 'item', 'property': 'P735', 'type': 'wikibase-entityid', 'numeric-id': 16279095, 'id': 'Q16279095'}, {'after': 0, 'before': 0, 'precision': 11, 'timezone': 0, 'property': 'P570', 'time': '+1997-03-31T00:00:00Z', 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'entity-type': 'item', 'id': 'Q30', 'property': 'P27', 'type': 'wikibase-entityid', 'numeric-id': 30}, {'type': 'wikibase-entityid', 'id': 'Q6581097', 'numeric-id': 6581097, 'property': 'P21', 'entity-type': 'item'}, {'type': 'string', 'property': 'P18', 'value': 'Liebman and Larry Kramer During Interview.jpg'}, {'property': 'P106', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q47064', 'numeric-id': 47064}), 'title': 'Q6778408'}
{'type': 'item', 'id': 'Q6778467', 'labels': (('en', 'Marvin Robinson'),), 'descriptions': (('en', 'English footballer (born 1980)'),), 'aliases': (), 'sitelinks': (('enwiki', 'Marvin Robinson', None), ('arwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x81\xd9\x86 \xd8\xb1\xd9\x88\xd8\xa8\xd9\x86\xd8\xb3\xd9\x88\xd9\x86', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x81\xd9\x86 \xd8\xb1\xd9\x88\xd8\xa8\xd9\x86\xd8\xb3\xd9\x88\xd9\x86', None)), 'claims': ({'entity-type': 'item', 'id': 'Q2798428', 'property': 'P734', 'type': 'wikibase-entityid', 'numeric-id': 2798428}, {'property': 'P19', 'id': 'Q648810', 'entity-type': 'item', 'numeric-id': 648810, 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 2736, 'property': 'P641', 'id': 'Q2736'}, {'property': 'P106', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q937857', 'numeric-id': 937857}, {'id': 'Q16279095', 'numeric-id': 16279095, 'property': 'P735', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 1860, 'type': 'wikibase-entityid', 'id': 'Q1860', 'property': 'P1412'}, {'property': 'P54', 'type': 'wikibase-entityid', 'numeric-id': 1138515, 'entity-type': 'item', 'id': 'Q1138515'}, {'numeric-id': 48935, 'id': 'Q48935', 'entity-type': 'item', 'property': 'P54', 'type': 'wikibase-entityid'}, {'id': 'Q19644', 'numeric-id': 19644, 'type': 'wikibase-entityid', 'property': 'P54', 'entity-type': 'item'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P54', 'numeric-id': 19598, 'id': 'Q19598'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 19470, 'property': 'P54', 'id': 'Q19470'}, {'entity-type': 'item', 'id': 'Q18519', 'numeric-id': 18519, 'type': 'wikibase-entityid', 'property': 'P54'}, {'property': 'P54', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q639349', 'numeric-id': 639349}, {'id': 'Q18293', 'property': 'P54', 'type': 'wikibase-entityid', 'numeric-id': 18293, 'entity-type': 'item'}, {'property': 'P54', 'numeric-id': 18526, 'id': 'Q18526', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'entity-type': 'item', 'property': 'P54', 'type': 'wikibase-entityid', 'numeric-id': 48946, 'id': 'Q48946'}, {'type': 'wikibase-entityid', 'property': 'P54', 'id': 'Q18509', 'entity-type': 'item', 'numeric-id': 18509}, {'entity-type': 'item', 'numeric-id': 18300, 'type': 'wikibase-entityid', 'id': 'Q18300', 'property': 'P54'}, {'numeric-id': 1513377, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q1513377', 'property': 'P54'}, {'type': 'wikibase-entityid', 'property': 'P54', 'numeric-id': 19637, 'entity-type': 'item', 'id': 'Q19637'}, {'property': 'P54', 'id': 'Q18521', 'numeric-id': 18521, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q1953914', 'property': 'P54', 'numeric-id': 1953914}, {'numeric-id': 18736, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P54', 'id': 'Q18736'}, {'entity-type': 'item', 'id': 'Q2944694', 'numeric-id': 2944694, 'property': 'P54', 'type': 'wikibase-entityid'}, {'id': 'Q5213276', 'entity-type': 'item', 'property': 'P54', 'type': 'wikibase-entityid', 'numeric-id': 5213276}, {'numeric-id': 18293, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P54', 'id': 'Q18293'}, {'property': 'P27', 'numeric-id': 145, 'type': 'wikibase-entityid', 'id': 'Q145', 'entity-type': 'item'}, {'id': 'Q6581097', 'numeric-id': 6581097, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P21'}, {'property': 'P413', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q280658', 'numeric-id': 280658}, {'numeric-id': 5, 'entity-type': 'item', 'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q5'}, {'after': 0, 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'time': '+1980-04-11T00:00:00Z', 'timezone': 0, 'type': 'time', 'property': 'P569'}), 'title': 'Q6778467'}
{'type': 'item', 'id': 'Q6778806', 'labels': (('en', 'Mary Alice'),), 'descriptions': (('en', 'unincorporated community in Harlan County, Kentucky'),), 'aliases': (('en', 'Mary Alice, Kentucky'), ('en', 'Mary Alice, KY')), 'sitelinks': (('zhwiki', '\xe7\x91\xaa\xe9\xba\x97\xe6\x84\x9b\xe9\xba\x97\xe7\xb5\xb2 (\xe8\x82\xaf\xe5\xa1\x94\xe5\x9f\xba\xe5\xb7\x9e)', None), ('enwiki', 'Mary Alice, Kentucky', None)), 'claims': ({'type': 'string', 'property': 'P18', 'value': 'Post Office at Mary Alice.jpg'}, {'property': 'P131', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 500751, 'id': 'Q500751'}, {'entity-type': 'item', 'id': 'Q30', 'type': 'wikibase-entityid', 'numeric-id': 30, 'property': 'P17'}, {'id': 'Q17343829', 'property': 'P31', 'type': 'wikibase-entityid', 'numeric-id': 17343829, 'entity-type': 'item'}, {'unit': 'http://www.wikidata.org/entity/Q3710', 'amount': '+1322', 'type': 'quantity', 'property': 'P2044'}), 'title': 'Q6778806'}
{'type': 'item', 'id': 'Q6778881', 'labels': (('en', 'Mary Ann Hall'),), 'descriptions': (('en', 'American brothel owner'),), 'aliases': (('en', 'Mary Hall'),), 'sitelinks': (('enwiki', 'Mary Ann Hall', None), ('svwiki', 'Mary Ann Hall', None), ('bnwiki', '\xe0\xa6\xae\xe0\xa7\x87\xe0\xa6\xb0\xe0\xa6\xbf \xe0\xa6\x85\xe0\xa7\x8d\xe0\xa6\xaf\xe0\xa6\xbe\xe0\xa6\xa8 \xe0\xa6\xb9\xe0\xa6\xb2', None)), 'claims': ({'numeric-id': 734578, 'entity-type': 'item', 'id': 'Q734578', 'type': 'wikibase-entityid', 'property': 'P735'}, {'precision': 11, 'property': 'P570', 'after': 0, 'time': '+1886-01-29T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'type': 'time', 'before': 0}, {'id': 'Q2892262', 'numeric-id': 2892262, 'entity-type': 'item', 'property': 'P119', 'type': 'wikibase-entityid'}, {'numeric-id': 5, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q5', 'property': 'P31'}, {'id': 'Q6581072', 'entity-type': 'item', 'numeric-id': 6581072, 'property': 'P21', 'type': 'wikibase-entityid'}, {'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'before': 0, 'precision': 7, 'property': 'P569', 'time': '+1850-00-00T00:00:00Z', 'timezone': 0}, {'property': 'P734', 'numeric-id': 1551523, 'entity-type': 'item', 'id': 'Q1551523', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'numeric-id': 43845, 'id': 'Q43845', 'property': 'P106', 'entity-type': 'item'}), 'title': 'Q6778881'}
{'type': 'item', 'id': 'Q6779094', 'labels': (('en', 'Mary Bowermaster'),), 'descriptions': (('en', 'Master athlete, sprinter, jumper, thrower'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mary Bowermaster', None),), 'claims': ({'entity-type': 'item', 'numeric-id': 6581072, 'id': 'Q6581072', 'property': 'P21', 'type': 'wikibase-entityid'}, {'id': 'Q30', 'entity-type': 'item', 'numeric-id': 30, 'type': 'wikibase-entityid', 'property': 'P27'}, {'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'property': 'P570', 'after': 0, 'timezone': 0, 'precision': 11, 'time': '+2011-03-04T00:00:00Z'}, {'property': 'P2416', 'numeric-id': 170737, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q170737'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P166', 'id': 'Q11795583', 'numeric-id': 11795583}, {'id': 'Q5', 'type': 'wikibase-entityid', 'property': 'P31', 'numeric-id': 5, 'entity-type': 'item'}, {'property': 'P569', 'timezone': 0, 'time': '+1917-07-26T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'type': 'time', 'after': 0, 'before': 0}, {'id': 'Q734578', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 734578, 'property': 'P735'}, {'entity-type': 'item', 'id': 'Q11513337', 'type': 'wikibase-entityid', 'property': 'P106', 'numeric-id': 11513337}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 542, 'id': 'Q542', 'property': 'P641'}), 'title': 'Q6779094'}
{'type': 'item', 'id': 'Q6779099', 'labels': (('en', 'Mary Bowes, Countess of Strathmore and Kinghorne'),), 'descriptions': (('en', 'British noble'),), 'aliases': (('en', 'Mary Eleanor Bowes'), ('en', 'Mary Eleanor Bowes, Countess of Strathmore and Kinghorne')), 'sitelinks': (('enwiki', 'Mary Bowes, Countess of Strathmore and Kinghorne', None), ('frwiki', 'Mary Bowes', None), ('itwiki', 'Mary Eleanor Bowes', None), ('commonswiki', 'Category:Mary Eleanor Bowes', None), ('ukwiki', '\xd0\x9c\xd0\xb5\xd1\x80\xd1\x96 \xd0\x91\xd0\xbe\xd1\x83\xd1\x81', None)), 'claims': ({'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P22', 'numeric-id': 5537154, 'id': 'Q5537154'}, {'entity-type': 'item', 'id': 'Q76321102', 'type': 'wikibase-entityid', 'numeric-id': 76321102, 'property': 'P22'}, {'property': 'P21', 'type': 'wikibase-entityid', 'id': 'Q6581072', 'entity-type': 'item', 'numeric-id': 6581072}, {'numeric-id': 161885, 'entity-type': 'item', 'property': 'P27', 'type': 'wikibase-entityid', 'id': 'Q161885'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q15987216', 'numeric-id': 15987216, 'property': 'P1343'}, {'type': 'wikibase-entityid', 'id': 'Q1860', 'numeric-id': 1860, 'entity-type': 'item', 'property': 'P1412'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q3809434', 'numeric-id': 3809434, 'property': 'P40'}, {'entity-type': 'item', 'id': 'Q3990679', 'numeric-id': 3990679, 'type': 'wikibase-entityid', 'property': 'P40'}, {'id': 'Q75251968', 'type': 'wikibase-entityid', 'numeric-id': 75251968, 'property': 'P40', 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q75255715', 'property': 'P40', 'numeric-id': 75255715, 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q75255716', 'property': 'P40', 'numeric-id': 75255716, 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'property': 'P40', 'type': 'wikibase-entityid', 'numeric-id': 75255912, 'id': 'Q75255912'}, {'numeric-id': 75718227, 'entity-type': 'item', 'property': 'P40', 'type': 'wikibase-entityid', 'id': 'Q75718227'}, {'numeric-id': 76321103, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q76321103', 'property': 'P40'}, {'type': 'wikibase-entityid', 'numeric-id': 76321089, 'property': 'P40', 'id': 'Q76321089', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'id': 'Q76321104', 'numeric-id': 76321104, 'entity-type': 'item', 'property': 'P40'}, {'numeric-id': 734578, 'entity-type': 'item', 'id': 'Q734578', 'type': 'wikibase-entityid', 'property': 'P735'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 6427536, 'id': 'Q6427536', 'property': 'P734'}, {'id': 'Q16159405', 'property': 'P734', 'type': 'wikibase-entityid', 'numeric-id': 16159405, 'entity-type': 'item'}, {'property': 'P26', 'type': 'wikibase-entityid', 'id': 'Q3809433', 'entity-type': 'item', 'numeric-id': 3809433}, {'id': 'Q2846720', 'property': 'P26', 'entity-type': 'item', 'numeric-id': 2846720, 'type': 'wikibase-entityid'}, {'property': 'P26', 'numeric-id': 75406314, 'id': 'Q75406314', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'id': 'Q5', 'entity-type': 'item', 'property': 'P31', 'type': 'wikibase-entityid', 'numeric-id': 5}, {'property': 'P19', 'type': 'wikibase-entityid', 'numeric-id': 2926113, 'id': 'Q2926113', 'entity-type': 'item'}, {'value': 'Mary Eleanor Bowes', 'type': 'string', 'property': 'P373'}, {'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'precision': 11, 'property': 'P569', 'after': 0, 'time': '+1749-02-24T00:00:00Z', 'timezone': 0}, {'precision': 11, 'before': 0, 'property': 'P569', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1784-11-11T00:00:00Z', 'after': 0, 'timezone': 0, 'type': 'time'}, {'id': 'Q75248498', 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P25', 'numeric-id': 75248498}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 76320840, 'property': 'P25', 'id': 'Q76320840'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q214917', 'numeric-id': 214917, 'property': 'P106'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P106', 'id': 'Q18814623', 'numeric-id': 18814623}, {'property': 'P106', 'type': 'wikibase-entityid', 'id': 'Q36180', 'numeric-id': 36180, 'entity-type': 'item'}, {'timezone': 0, 'type': 'time', 'after': 0, 'precision': 11, 'property': 'P570', 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1800-04-28T00:00:00Z'}, {'precision': 11, 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1839-01-26T00:00:00Z', 'timezone': 0, 'property': 'P570', 'before': 0, 'type': 'time'}, {'type': 'string', 'property': 'P18', 'value': 'Mary Eleanor Bowes Countess of Strathmore.jpg'}, {'value': 'Strathmore, Mary Eleanor Bowes,,, Countess of.png', 'property': 'P18', 'type': 'string'}, {'value': 'Mary Bowes, Countess of Strathmore and Kinghorne.jpg', 'type': 'string', 'property': 'P18'}), 'title': 'Q6779099'}
{'type': 'item', 'id': 'Q6779503', 'labels': (('en', 'Mary Everest Boole'),), 'descriptions': (('en', 'author of didactic works on mathematics (1832-1916)'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mary Everest Boole', None), ('srwiki', '\xd0\x9c\xd0\xb5\xd1\x80\xd0\xb8 \xd0\x95\xd0\xb2\xd0\xb5\xd1\x80\xd0\xb5\xd1\x81\xd1\x82 \xd0\x91\xd1\x83\xd0\xb', None), ('cawiki', 'Mary Everest Boole', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x89 \xd8\xa7\xd9\x8a\xd9\x81\xd8\xb1\xd8\xb3\xd8\xaa \xd8\xa8\xd9\x88\xd9\x84', None), ('srwikiquote', '\xd0\x9c\xd0\xb5\xd1\x80\xd0\xb8 \xd0\x95\xd0\xb2\xd0\xb5\xd1\x80\xd0\xb5\xd1\x81\xd1\x82 \xd0\x91\xd1\x83\xd0\xb', None), ('astwiki', 'Mary Everest Boole', None), ('eswiki', 'Mary Everest Boole', None), ('commonswiki', 'Category:Mary Everest Boole', None), ('nlwiki', 'Mary Everest Boole', None), ('ptwiki', 'Mary Everest Boole', None), ('itwiki', 'Mary Everest Boole', None), ('itwikiquote', 'Mary Everest Boole', None), ('dewiki', 'Mary Everest Boole', None), ('frwiki', 'Mary Everest Boole', None), ('enwikisource', 'Author:Mary Everest Boole', None), ('glwiki', 'Mary Everest Boole', None), ('plwiki', 'Mary Everest Boole', None), ('arwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x8a \xd8\xa5\xd9\x8a\xd9\x81\xd8\xb1\xd8\xb3\xd8\xaa \xd8\xa8\xd9\x88\xd9\x84', None), ('cywiki', 'Mary Everest Boole', None), ('zhwiki', '\xe7\x91\xaa\xe9\xba\x97\xc2\xb7\xe5\x9f\x83\xe4\xbd\x9b\xe5\x8b\x92\xe6\x96\xaf\xc2\xb7\xe5\xb8\x83\xe7\x88\xbe', None)), 'claims': ({'type': 'string', 'property': 'P18', 'value': 'Mary Everest Boole.jpg'}, {'type': 'wikibase-entityid', 'property': 'P19', 'entity-type': 'item', 'numeric-id': 1222802, 'id': 'Q1222802'}, {'property': 'P1412', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 1860, 'id': 'Q1860'}, {'entity-type': 'item', 'numeric-id': 174193, 'id': 'Q174193', 'property': 'P27', 'type': 'wikibase-entityid'}, {'value': 'Mary Everest Boole', 'property': 'P373', 'type': 'string'}, {'id': 'Q170790', 'type': 'wikibase-entityid', 'numeric-id': 170790, 'property': 'P106', 'entity-type': 'item'}, {'property': 'P106', 'entity-type': 'item', 'id': 'Q4964182', 'numeric-id': 4964182, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'property': 'P734', 'id': 'Q36993006', 'numeric-id': 36993006, 'entity-type': 'item'}, {'property': 'P734', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q37142219', 'numeric-id': 37142219}, {'id': 'Q6581072', 'numeric-id': 6581072, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P21'}, {'property': 'P735', 'id': 'Q734578', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 734578}, {'id': 'Q5', 'numeric-id': 5, 'entity-type': 'item', 'property': 'P31', 'type': 'wikibase-entityid'}, {'time': '+1832-03-11T00:00:00Z', 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'precision': 11, 'before': 0, 'timezone': 0, 'type': 'time'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 215354, 'property': 'P20', 'id': 'Q215354'}, {'entity-type': 'item', 'property': 'P101', 'type': 'wikibase-entityid', 'id': 'Q395', 'numeric-id': 395}, {'property': 'P101', 'type': 'wikibase-entityid', 'id': 'Q5891', 'numeric-id': 5891, 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'numeric-id': 853077, 'entity-type': 'item', 'id': 'Q853077', 'property': 'P101'}, {'entity-type': 'item', 'id': 'Q134661', 'property': 'P26', 'numeric-id': 134661, 'type': 'wikibase-entityid'}, {'numeric-id': 8487137, 'type': 'wikibase-entityid', 'property': 'P6104', 'entity-type': 'item', 'id': 'Q8487137'}, {'id': 'Q466068', 'type': 'wikibase-entityid', 'numeric-id': 466068, 'property': 'P40', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q441991', 'numeric-id': 441991, 'property': 'P40'}, {'numeric-id': 21293405, 'property': 'P40', 'id': 'Q21293405', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q21293439', 'numeric-id': 21293439, 'entity-type': 'item', 'property': 'P40'}, {'type': 'wikibase-entityid', 'numeric-id': 7445, 'id': 'Q7445', 'entity-type': 'item', 'property': 'P40'}, {'before': 0, 'type': 'time', 'precision': 11, 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'property': 'P570', 'time': '+1916-05-17T00:00:00Z'}, {'numeric-id': 123505607, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P22', 'id': 'Q123505607'}, {'entity-type': 'item', 'id': 'Q1860', 'property': 'P6886', 'numeric-id': 1860, 'type': 'wikibase-entityid'}), 'title': 'Q6779503'}
{'type': 'item', 'id': 'Q6779613', 'labels': (('en', 'Mary Gardiner Brainard'),), 'descriptions': (('en', 'American poet (1837-1905)'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mary Gardiner Brainard', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x89 \xd8\xac\xd8\xa7\xd8\xb1\xd8\xaf\xd9\x8a\xd9\x86\xd8\xb1 \xd8\xa8\xd8\xb1\xd9\x8a\xd9\x86\xd8\xa7\xd8\xb1\xd8\xaf', None), ('arwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x8a \xd8\xba\xd8\xa7\xd8\xb1\xd8\xaf\xd9\x8a\xd9\x86\xd8\xb1 \xd8\xa8\xd8\xb1\xd9\x8a\xd9\x86\xd8\xa7\xd8\xb1\xd8\xaf', None), ('enwikiquote', 'Mary Gardiner Brainard', None)), 'claims': ({'property': 'P735', 'numeric-id': 734578, 'entity-type': 'item', 'id': 'Q734578', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'property': 'P734', 'id': 'Q21506880', 'entity-type': 'item', 'numeric-id': 21506880}, {'property': 'P19', 'type': 'wikibase-entityid', 'numeric-id': 30, 'id': 'Q30', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q49757', 'numeric-id': 49757, 'property': 'P106'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 36180, 'id': 'Q36180', 'property': 'P106'}, {'before': 0, 'time': '+1905-11-30T00:00:00Z', 'timezone': 0, 'precision': 11, 'property': 'P570', 'after': 0, 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q5', 'entity-type': 'item', 'numeric-id': 5}, {'precision': 11, 'time': '+1837-06-19T00:00:00Z', 'property': 'P569', 'after': 0, 'timezone': 0, 'before': 0, 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'numeric-id': 6581072, 'property': 'P21', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q6581072'}, {'entity-type': 'item', 'numeric-id': 30, 'property': 'P27', 'type': 'wikibase-entityid', 'id': 'Q30'}), 'title': 'Q6779613'}
{'type': 'item', 'id': 'Q6779641', 'labels': (('en', 'Mary Gilmore and the history of Wagga Wagga'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('enwiki', 'Mary Gilmore and the history of Wagga Wagga', None),), 'claims': (), 'title': 'Q6779641'}
{'type': 'item', 'id': 'Q6779937', 'labels': (('en', 'Pedicularia vanderlandi'),), 'descriptions': (('en', 'species of mollusc'),), 'aliases': (), 'sitelinks': (('cebwiki', 'Pedicularia vanderlandi', None), ('viwiki', 'Pedicularia vanderlandi', None), ('nlwiki', 'Pedicularia vanderlandi', None), ('enwiki', 'Pedicularia vanderlandi', None)), 'claims': ({'value': 'Pedicularia vanderlandi', 'type': 'string', 'property': 'P225'}, {'id': 'Q16521', 'numeric-id': 16521, 'property': 'P31', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 3176998, 'property': 'P171', 'id': 'Q3176998', 'type': 'wikibase-entityid'}, {'property': 'P105', 'numeric-id': 7432, 'id': 'Q7432', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P10585', 'type': 'string', 'value': '75X4G'}), 'title': 'Q6779937'}
{'type': 'item', 'id': 'Q6779923', 'labels': (('en', 'Mary Jo Buttafuoco'),), 'descriptions': (('en', 'Housewife, author'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mary Jo Buttafuoco', None), ('svwiki', 'Mary Jo Buttafuoco', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x89 \xd8\xac\xd9\x88 \xd8\xa8\xd9\x88\xd8\xaa\xd8\xa7\xd9\x81\xd9\x88\xd9\x83\xd9\x88', None)), 'claims': ({'property': 'P12098', 'type': 'string', 'value': '1329768'}, {'property': 'P19', 'entity-type': 'item', 'id': 'Q30', 'type': 'wikibase-entityid', 'numeric-id': 30}, {'property': 'P31', 'entity-type': 'item', 'id': 'Q5', 'type': 'wikibase-entityid', 'numeric-id': 5}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1955-05-15T00:00:00Z', 'type': 'time', 'after': 0, 'property': 'P569', 'before': 0, 'precision': 11, 'timezone': 0}, {'id': 'Q6784533', 'property': 'P69', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 6784533}, {'id': 'Q734578', 'property': 'P735', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 734578}, {'property': 'P10302', 'value': 'mary-jo-buttafuoco', 'type': 'string'}, {'type': 'wikibase-entityid', 'id': 'Q36180', 'property': 'P106', 'entity-type': 'item', 'numeric-id': 36180}, {'numeric-id': 6581072, 'type': 'wikibase-entityid', 'id': 'Q6581072', 'property': 'P21', 'entity-type': 'item'}, {'id': 'Q30', 'type': 'wikibase-entityid', 'numeric-id': 30, 'property': 'P27', 'entity-type': 'item'}), 'title': 'Q6779923'}
{'type': 'item', 'id': 'Q6779943', 'labels': (('en', 'Mary Joan Nielubowicz'),), 'descriptions': (('en', 'United States Navy nurse and admiral (1929-2008)'),), 'aliases': (('en', 'Mary J. Nielubowicz'), ('en', 'M. J. Nielubowicz')), 'sitelinks': (('enwiki', 'Mary Joan Nielubowicz', None), ('commonswiki', 'Category:Mary J. Nielubowicz', None)), 'claims': ({'property': 'P106', 'entity-type': 'item', 'id': 'Q189290', 'type': 'wikibase-entityid', 'numeric-id': 189290}, {'type': 'wikibase-entityid', 'property': 'P106', 'entity-type': 'item', 'numeric-id': 186360, 'id': 'Q186360'}, {'property': 'P20', 'numeric-id': 501785, 'entity-type': 'item', 'id': 'Q501785', 'type': 'wikibase-entityid'}, {'property': 'P19', 'id': 'Q1185270', 'type': 'wikibase-entityid', 'numeric-id': 1185270, 'entity-type': 'item'}, {'type': 'string', 'value': 'ANCExplorer Mary Joan Nielubowicz grave.jpg', 'property': 'P1442'}, {'entity-type': 'item', 'id': 'Q216344', 'property': 'P119', 'type': 'wikibase-entityid', 'numeric-id': 216344}, {'entity-type': 'item', 'numeric-id': 3780709, 'property': 'P166', 'type': 'wikibase-entityid', 'id': 'Q3780709'}, {'entity-type': 'item', 'property': 'P166', 'type': 'wikibase-entityid', 'id': 'Q17231624', 'numeric-id': 17231624}, {'value': 'Portrait of US Navy Rear Admiral (lower half) Mary J. Nielubowicz.jpg', 'property': 'P18', 'type': 'string'}, {'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'timezone': 0, 'time': '+2008-05-21T00:00:00Z', 'before': 0, 'precision': 11, 'property': 'P4602'}, {'type': 'time', 'precision': 11, 'before': 0, 'property': 'P569', 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1929-02-05T00:00:00Z', 'timezone': 0}, {'type': 'wikibase-entityid', 'property': 'P241', 'entity-type': 'item', 'id': 'Q11220', 'numeric-id': 11220}, {'id': 'Q6581072', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 6581072, 'property': 'P21'}, {'precision': 11, 'time': '+2008-03-24T00:00:00Z', 'property': 'P570', 'after': 0, 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0, 'timezone': 0}, {'property': 'P31', 'entity-type': 'item', 'id': 'Q5', 'numeric-id': 5, 'type': 'wikibase-entityid'}, {'property': 'P945', 'entity-type': 'item', 'id': 'Q30', 'numeric-id': 30, 'type': 'wikibase-entityid'}, {'property': 'P27', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q30', 'numeric-id': 30}, {'property': 'P373', 'value': 'Mary J. Nielubowicz', 'type': 'string'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q7896096', 'numeric-id': 7896096, 'property': 'P69'}, {'entity-type': 'item', 'id': 'Q1206658', 'numeric-id': 1206658, 'property': 'P69', 'type': 'wikibase-entityid'}, {'id': 'Q132851', 'numeric-id': 132851, 'property': 'P410', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'numeric-id': 734578, 'type': 'wikibase-entityid', 'id': 'Q734578', 'entity-type': 'item', 'property': 'P735'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q18219684', 'numeric-id': 18219684, 'property': 'P735'}), 'title': 'Q6779943'}
{'type': 'item', 'id': 'Q6780005', 'labels': (('en', 'Mary Kelly'),), 'descriptions': (('en', 'Australian handball player'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mary Kelly (handballer)', None), ('dawiki', 'Mary Kelly (h\xc3\xa5ndboldspiller)', None), ('bnwiki', '\xe0\xa6\xae\xe0\xa7\x87\xe0\xa6\xb0\xe0\xa6\xbf \xe0\xa6\x95\xe0\xa7\x87\xe0\xa6\xb2\xe0\xa6\xbf (\xe0\xa6\xb9\xe0\xa7\x8d\xe0\xa6\xaf\xe0\xa6\xbe\xe0\xa6\xa8\xe0\xa7\x8d\xe0\xa6\xa1\xe0\xa6\xac\xe0\xa6\xb2\xe0\xa6\xbe\xe0\xa6\xb0)', None), ('arwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x8a \xd9\x83\xd9\x8a\xd9\x84\xd9\x8a', None)), 'claims': ({'property': 'P106', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q12840545', 'numeric-id': 12840545}, {'property': 'P27', 'entity-type': 'item', 'numeric-id': 408, 'id': 'Q408', 'type': 'wikibase-entityid'}, {'id': 'Q928249', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 928249, 'property': 'P734'}, {'property': 'P641', 'type': 'wikibase-entityid', 'numeric-id': 8418, 'id': 'Q8418', 'entity-type': 'item'}, {'property': 'P21', 'entity-type': 'item', 'numeric-id': 6581072, 'id': 'Q6581072', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q5', 'numeric-id': 5, 'type': 'wikibase-entityid', 'property': 'P31'}, {'time': '+1985-01-01T00:00:00Z', 'after': 0, 'precision': 9, 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'before': 0, 'type': 'time'}, {'type': 'wikibase-entityid', 'id': 'Q734578', 'property': 'P735', 'entity-type': 'item', 'numeric-id': 734578}), 'title': 'Q6780005'}
{'type': 'item', 'id': 'Q6780162', 'labels': (('en', 'Mary Louise Roberts'),), 'descriptions': (('en', 'Masseuse, physiotherapist, mountaineer'),), 'aliases': (), 'sitelinks': (('arwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x8a \xd9\x84\xd9\x88\xd9\x8a\xd8\xb2 \xd8\xb1\xd9\x88\xd8\xa8\xd8\xb1\xd8\xaa\xd8\xb3', None), ('dewiki', 'Mary Louise Roberts', None), ('enwiki', 'Louie Roberts', None)), 'claims': ({'entity-type': 'item', 'numeric-id': 10762848, 'type': 'wikibase-entityid', 'property': 'P166', 'id': 'Q10762848'}, {'id': 'Q664', 'entity-type': 'item', 'numeric-id': 664, 'property': 'P27', 'type': 'wikibase-entityid'}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1968-01-01T00:00:00Z', 'after': 0, 'precision': 9, 'before': 0, 'property': 'P570', 'type': 'time', 'timezone': 0}, {'numeric-id': 7588342, 'entity-type': 'item', 'id': 'Q7588342', 'property': 'P69', 'type': 'wikibase-entityid'}, {'after': 0, 'property': 'P569', 'timezone': 0, 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'precision': 9, 'time': '+1886-01-01T00:00:00Z'}, {'id': 'Q1646493', 'property': 'P734', 'numeric-id': 1646493, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 36908, 'type': 'wikibase-entityid', 'property': 'P641', 'id': 'Q36908'}, {'type': 'wikibase-entityid', 'numeric-id': 133073, 'entity-type': 'item', 'property': 'P19', 'id': 'Q133073'}, {'entity-type': 'item', 'numeric-id': 30028717, 'property': 'P1889', 'id': 'Q30028717', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q734578', 'numeric-id': 734578, 'property': 'P735'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q9149093', 'numeric-id': 9149093, 'property': 'P106'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 5, 'id': 'Q5', 'property': 'P31'}, {'id': 'Q6581072', 'property': 'P21', 'numeric-id': 6581072, 'entity-type': 'item', 'type': 'wikibase-entityid'}), 'title': 'Q6780162'}
{'type': 'item', 'id': 'Q6780499', 'labels': (('en', 'Mary Pellatt'),), 'descriptions': (('en', 'Canadian guiding leader'),), 'aliases': (('en', 'Mary Dodgson'), ('en', 'Lady Pellatt'), ('en', 'Mary Pellatt, Lady Pellatt')), 'sitelinks': (('commonswiki', 'Category:Mary Pellatt', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x89 \xd8\xa8\xd9\x8a\xd9\x84\xd8\xa7\xd8\xaa', None), ('enwiki', 'Mary Pellatt', None)), 'claims': ({'property': 'P569', 'time': '+1857-04-16T00:00:00Z', 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'precision': 11, 'after': 0, 'timezone': 0}, {'id': 'Q172', 'property': 'P20', 'type': 'wikibase-entityid', 'numeric-id': 172, 'entity-type': 'item'}, {'value': 'Mary Pellatt', 'property': 'P373', 'type': 'string'}, {'value': 'Mary Pellatt.png', 'property': 'P18', 'type': 'string'}, {'precision': 11, 'timezone': 0, 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'property': 'P570', 'time': '+1924-04-15T00:00:00Z', 'type': 'time'}, {'id': 'Q5', 'entity-type': 'item', 'numeric-id': 5, 'property': 'P31', 'type': 'wikibase-entityid'}, {'property': 'P19', 'numeric-id': 172, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q172'}, {'property': 'P21', 'type': 'wikibase-entityid', 'numeric-id': 6581072, 'entity-type': 'item', 'id': 'Q6581072'}, {'id': 'Q2540793', 'numeric-id': 2540793, 'property': 'P106', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q3133004', 'numeric-id': 3133004, 'property': 'P26'}, {'id': 'Q7161531', 'numeric-id': 7161531, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P734'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P735', 'numeric-id': 734578, 'id': 'Q734578'}, {'entity-type': 'item', 'id': 'Q16', 'numeric-id': 16, 'property': 'P27', 'type': 'wikibase-entityid'}), 'title': 'Q6780499'}
{'type': 'item', 'id': 'Q6780520', 'labels': (('en', 'Mary Pilon'),), 'descriptions': (('en', 'American journalist'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mary Pilon', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd8\xb1\xd9\x89 \xd9\xbe\xd9\x8a\xd9\x84\xd9\x88\xd9\x86', None)), 'claims': ({'type': 'time', 'time': '+1986-05-16T00:00:00Z', 'precision': 11, 'property': 'P569', 'before': 0, 'after': 0, 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'property': 'P2002', 'type': 'string', 'value': 'marypilon'}, {'numeric-id': 734578, 'id': 'Q734578', 'entity-type': 'item', 'property': 'P735', 'type': 'wikibase-entityid'}, {'numeric-id': 6581072, 'entity-type': 'item', 'id': 'Q6581072', 'type': 'wikibase-entityid', 'property': 'P21'}, {'property': 'P6872', 'entity-type': 'item', 'id': 'Q9684', 'numeric-id': 9684, 'type': 'wikibase-entityid'}, {'numeric-id': 164746, 'property': 'P6872', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q164746'}, {'entity-type': 'item', 'property': 'P69', 'type': 'wikibase-entityid', 'id': 'Q49210', 'numeric-id': 49210}, {'property': 'P166', 'entity-type': 'item', 'id': 'Q5549346', 'numeric-id': 5549346, 'type': 'wikibase-entityid'}, {'id': 'Q171224', 'entity-type': 'item', 'numeric-id': 171224, 'property': 'P19', 'type': 'wikibase-entityid'}, {'id': 'Q5', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P31', 'numeric-id': 5}, {'property': 'P734', 'entity-type': 'item', 'numeric-id': 21491848, 'type': 'wikibase-entityid', 'id': 'Q21491848'}, {'property': 'P106', 'entity-type': 'item', 'id': 'Q1930187', 'numeric-id': 1930187, 'type': 'wikibase-entityid'}, {'type': 'string', 'property': 'P109', 'value': '"The Monopolists" signed by Mary Pilon (cropped).jpg'}, {'amount': '+9344', 'unit': '1', 'type': 'quantity', 'property': 'P8687'}, {'unit': '1', 'property': 'P8687', 'amount': '+9103', 'type': 'quantity'}, {'entity-type': 'item', 'numeric-id': 30, 'id': 'Q30', 'type': 'wikibase-entityid', 'property': 'P27'}), 'title': 'Q6780520'}
{'type': 'item', 'id': 'Q6780554', 'labels': (('en', 'Mary Pruitt'),), 'descriptions': (('en', 'American politician'),), 'aliases': (), 'sitelinks': (('simplewiki', 'Mary Pruitt', None), ('enwiki', 'Mary Pruitt', None)), 'claims': ({'property': 'P27', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 30, 'id': 'Q30'}, {'numeric-id': 6581072, 'property': 'P21', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q6581072'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q18538054', 'numeric-id': 18538054, 'property': 'P39'}, {'id': 'Q29552', 'type': 'wikibase-entityid', 'numeric-id': 29552, 'property': 'P102', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q82955', 'numeric-id': 82955, 'property': 'P106'}, {'property': 'P31', 'entity-type': 'item', 'numeric-id': 5, 'id': 'Q5', 'type': 'wikibase-entityid'}, {'before': 0, 'property': 'P570', 'time': '+2020-09-20T00:00:00Z', 'timezone': 0, 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'after': 0}, {'before': 0, 'timezone': 0, 'property': 'P569', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'after': 0, 'type': 'time', 'time': '+1934-02-03T00:00:00Z'}, {'property': 'P19', 'type': 'wikibase-entityid', 'numeric-id': 3096621, 'entity-type': 'item', 'id': 'Q3096621'}, {'type': 'string', 'property': 'P10632', 'value': 'Q6780554'}, {'id': 'Q2114416', 'numeric-id': 2114416, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P734'}, {'numeric-id': 734578, 'property': 'P735', 'entity-type': 'item', 'id': 'Q734578', 'type': 'wikibase-entityid'}), 'title': 'Q6780554'}
{'type': 'item', 'id': 'Q6780681', 'labels': (('en', 'Mary Scheier'),), 'descriptions': (('en', 'American artist (1908-2007)'),), 'aliases': (('en', 'Mary Goldsmith'),), 'sitelinks': (('enwiki', 'Mary Scheier', None),), 'claims': ({'type': 'time', 'timezone': 0, 'time': '+1908-05-09T00:00:00Z', 'before': 0, 'precision': 11, 'property': 'P569', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0}, {'property': 'P5008', 'entity-type': 'item', 'id': 'Q24909800', 'numeric-id': 24909800, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q105757729', 'numeric-id': 105757729, 'property': 'P5008'}, {'type': 'wikibase-entityid', 'numeric-id': 110249806, 'id': 'Q110249806', 'property': 'P5008', 'entity-type': 'item'}, {'id': 'Q502230', 'property': 'P19', 'numeric-id': 502230, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P106', 'id': 'Q1281618', 'type': 'wikibase-entityid', 'numeric-id': 1281618, 'entity-type': 'item'}, {'entity-type': 'item', 'property': 'P106', 'id': 'Q483501', 'numeric-id': 483501, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q73555012', 'numeric-id': 73555012, 'property': 'P7763'}, {'property': 'P734', 'type': 'wikibase-entityid', 'id': 'Q37073163', 'numeric-id': 37073163, 'entity-type': 'item'}, {'numeric-id': 116742585, 'id': 'Q116742585', 'property': 'P1343', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P10882', 'type': 'string', 'value': '7341'}, {'numeric-id': 1339626, 'property': 'P69', 'entity-type': 'item', 'id': 'Q1339626', 'type': 'wikibase-entityid'}, {'id': 'Q705737', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 705737, 'property': 'P69'}, {'property': 'P69', 'type': 'wikibase-entityid', 'numeric-id': 5594414, 'entity-type': 'item', 'id': 'Q5594414'}, {'type': 'wikibase-entityid', 'id': 'Q6581072', 'numeric-id': 6581072, 'entity-type': 'item', 'property': 'P21'}, {'id': 'Q5', 'type': 'wikibase-entityid', 'numeric-id': 5, 'property': 'P31', 'entity-type': 'item'}, {'value': 'agent/base/6736', 'property': 'P7704', 'type': 'string'}, {'numeric-id': 160236, 'id': 'Q160236', 'property': 'P6379', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'id': 'Q1192305', 'property': 'P6379', 'type': 'wikibase-entityid', 'numeric-id': 1192305, 'entity-type': 'item'}, {'numeric-id': 734578, 'type': 'wikibase-entityid', 'property': 'P735', 'id': 'Q734578', 'entity-type': 'item'}, {'id': 'Q2003309', 'entity-type': 'item', 'numeric-id': 2003309, 'property': 'P7153', 'type': 'wikibase-entityid'}, {'property': 'P9493', 'numeric-id': 98665879, 'id': 'Q98665879', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'after': 0, 'property': 'P570', 'precision': 11, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'before': 0, 'type': 'time', 'time': '+2007-05-14T00:00:00Z'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q30', 'numeric-id': 30, 'property': 'P27'}, {'id': 'Q106595976', 'entity-type': 'item', 'property': 'P166', 'type': 'wikibase-entityid', 'numeric-id': 106595976}), 'title': 'Q6780681'}
{'type': 'item', 'id': 'Q6780713', 'labels': (('en', 'Mary Sheriff'),), 'descriptions': (('en', 'American art historian (1950-2016)'),), 'aliases': (('en', 'Mary Diana Lee Sheriff'),), 'sitelinks': (('enwiki', 'Mary Sheriff', None), ('commonswiki', 'Category:Mary Sheriff', None)), 'claims': ({'before': 0, 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+2016-10-19T00:00:00Z', 'after': 0, 'property': 'P570', 'precision': 11, 'timezone': 0}, {'property': 'P31', 'entity-type': 'item', 'id': 'Q5', 'type': 'wikibase-entityid', 'numeric-id': 5}, {'entity-type': 'item', 'property': 'P5008', 'id': 'Q24909800', 'numeric-id': 24909800, 'type': 'wikibase-entityid'}, {'value': 'Mary Sheriff', 'type': 'string', 'property': 'P373'}, {'id': 'Q36968503', 'entity-type': 'item', 'property': 'P734', 'type': 'wikibase-entityid', 'numeric-id': 36968503}, {'id': 'Q30', 'property': 'P27', 'type': 'wikibase-entityid', 'numeric-id': 30, 'entity-type': 'item'}, {'type': 'time', 'property': 'P569', 'after': 0, 'precision': 11, 'time': '+1950-09-19T00:00:00Z', 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0}, {'type': 'wikibase-entityid', 'property': 'P21', 'numeric-id': 6581072, 'id': 'Q6581072', 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q192334', 'property': 'P108', 'numeric-id': 192334, 'type': 'wikibase-entityid'}, {'property': 'P106', 'id': 'Q1792450', 'entity-type': 'item', 'numeric-id': 1792450, 'type': 'wikibase-entityid'}, {'id': 'Q734578', 'type': 'wikibase-entityid', 'numeric-id': 734578, 'property': 'P735', 'entity-type': 'item'}, {'property': 'P18', 'type': 'string', 'value': 'Mary Sheriff.jpg'}, {'property': 'P11249', 'value': '14788424', 'type': 'string'}, {'id': 'Q1316544', 'property': 'P166', 'numeric-id': 1316544, 'entity-type': 'item', 'type': 'wikibase-entityid'}), 'title': 'Q6780713'}
{'type': 'item', 'id': 'Q6781162', 'labels': (('en', 'Marychn\xc3\xb3w'),), 'descriptions': (('en', 'village in Masovian, Poland'),), 'aliases': (('en', 'Marychnow'),), 'sitelinks': (('cewiki', '\xd0\x9c\xd0\xb0\xd1\x80\xd0\xb8\xd1\x85\xd0\xbd\xd1\x83\xd0\xb2', None), ('zh_min_nanwiki', 'Marychn\xc3\xb3w', None), ('enwiki', 'Marychn\xc3\xb3w', None), ('frwiki', 'Marychn\xc3\xb3w', None), ('ttwiki', '\xd0\x9c\xd0\xb0\xd1\x80\xd0\xb8\xd1\x85\xd0\xbd\xd1\x83\xd0\xb2', None), ('ukwiki', '\xd0\x9c\xd0\xb0\xd1\x80\xd0\xb8\xd1\x85\xd0\xbd\xd1\x83\xd0\xb2', None), ('plwiki', 'Marychn\xc3\xb3w', None)), 'claims': ({'numeric-id': 2304854, 'property': 'P131', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q2304854'}, {'type': 'quantity', 'amount': '+78', 'property': 'P1082', 'unit': '1'}, {'amount': '+42', 'type': 'quantity', 'unit': '1', 'property': 'P1539'}, {'entity-type': 'item', 'id': 'Q6655', 'type': 'wikibase-entityid', 'numeric-id': 6655, 'property': 'P421'}, {'type': 'wikibase-entityid', 'numeric-id': 6723, 'entity-type': 'item', 'id': 'Q6723', 'property': 'P421'}, {'id': 'Q3558970', 'type': 'wikibase-entityid', 'numeric-id': 3558970, 'entity-type': 'item', 'property': 'P31'}, {'type': 'wikibase-entityid', 'id': 'Q36', 'property': 'P17', 'numeric-id': 36, 'entity-type': 'item'}, {'type': 'quantity', 'unit': '1', 'property': 'P1540', 'amount': '+36'}), 'title': 'Q6781162'}
{'type': 'item', 'id': 'Q6781295', 'labels': (('en', 'Maryland Court of Appeals'),), 'descriptions': (('en', 'highest court in the U.S. state of Maryland'),), 'aliases': (('en', 'Court of Appeals, Maryland'), ('en', 'The Maryland Court of Appeals'), ('en', 'State of Maryland Court of Appeals'), ('en', 'MD Court of Appeals')), 'sitelinks': (('enwiki', 'Supreme Court of Maryland', None), ('ptwiki', 'Corte de Apela\xc3\xa7\xc3\xb5es de Maryland', None)), 'claims': ({'numeric-id': 56627904, 'type': 'wikibase-entityid', 'property': 'P276', 'entity-type': 'item', 'id': 'Q56627904'}, {'property': 'P31', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 7603882, 'id': 'Q7603882'}, {'property': 'P17', 'numeric-id': 30, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q30'}, {'type': 'string', 'value': 'https://www.courts.state.md.us/coappeals', 'property': 'P856'}, {'entity-type': 'item', 'property': 'P131', 'numeric-id': 28271, 'type': 'wikibase-entityid', 'id': 'Q28271'}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0, 'time': '+1776-00-00T00:00:00Z', 'precision': 9, 'property': 'P571', 'after': 0, 'type': 'time', 'timezone': 0}, {'numeric-id': 1391, 'type': 'wikibase-entityid', 'id': 'Q1391', 'property': 'P1001', 'entity-type': 'item'}), 'title': 'Q6781295'}
{'type': 'item', 'id': 'Q6781317', 'labels': (('en', 'Maryland Eastern Shore Hawks'),), 'descriptions': (('en', 'collegiate sports club in the United States'),), 'aliases': (('en', 'Maryland Eastern Shore athletics'), ('en', 'University of Maryland, Eastern Shore athletics'), ('en', 'University of Maryland Eastern Shore athletics'), ('en', 'UMES athletics'), ('en', 'UMES Hawks'), ('en', 'Eastern Shore Hawks')), 'sitelinks': (('eswiki', 'Maryland Eastern Shore Hawks', None), ('enwiki', 'Maryland Eastern Shore Hawks', None)), 'claims': ({'type': 'wikibase-entityid', 'numeric-id': 49089, 'id': 'Q49089', 'entity-type': 'item', 'property': 'P1268'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P527', 'id': 'Q7865101', 'numeric-id': 7865101}, {'entity-type': 'item', 'numeric-id': 30325997, 'property': 'P527', 'id': 'Q30325997', 'type': 'wikibase-entityid'}, {'id': 'Q8610492', 'entity-type': 'item', 'numeric-id': 8610492, 'property': 'P910', 'type': 'wikibase-entityid'}, {'numeric-id': 2367225, 'property': 'P31', 'entity-type': 'item', 'id': 'Q2367225', 'type': 'wikibase-entityid'}, {'property': 'P2002', 'value': 'ESHawksSports', 'type': 'string'}, {'value': 'ESHawks', 'property': 'P2013', 'type': 'string'}, {'property': 'P641', 'numeric-id': 5372, 'id': 'Q5372', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'id': 'Q2842604', 'property': 'P118', 'numeric-id': 2842604, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'property': 'P17', 'numeric-id': 30, 'id': 'Q30', 'type': 'wikibase-entityid'}, {'type': 'string', 'value': 'Maryland Eastern Shore Wordmark.jpeg', 'property': 'P154'}, {'property': 'P856', 'type': 'string', 'value': 'http://www.umeshawks.com/'}, {'value': 'https://easternshorehawks.com/', 'type': 'string', 'property': 'P856'}), 'title': 'Q6781317'}
{'type': 'item', 'id': 'Q6781629', 'labels': (('en', 'Microvoluta stadialis'),), 'descriptions': (('en', 'species of mollusc'),), 'aliases': (), 'sitelinks': (('cebwiki', 'Microvoluta stadialis', None), ('enwiki', 'Microvoluta stadialis', None), ('nlwiki', 'Microvoluta stadialis', None), ('viwiki', 'Microvoluta stadialis', None)), 'claims': ({'entity-type': 'item', 'id': 'Q7432', 'numeric-id': 7432, 'property': 'P105', 'type': 'wikibase-entityid'}, {'property': 'P171', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 3141426, 'id': 'Q3141426'}, {'property': 'P10585', 'type': 'string', 'value': '439WF'}, {'property': 'P31', 'id': 'Q16521', 'entity-type': 'item', 'numeric-id': 16521, 'type': 'wikibase-entityid'}, {'property': 'P1813', 'language': 'mul', 'text': 'M. stadialis', 'type': 'monolingualtext'}, {'value': 'Microvoluta stadialis', 'type': 'string', 'property': 'P225'}, {'id': 'Q106195411', 'numeric-id': 106195411, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P1403'}), 'title': 'Q6781629'}
{'type': 'item', 'id': 'Q6781832', 'labels': (('en', 'Hila Zaitun'),), 'descriptions': (('en', 'Israeli dub actor'),), 'aliases': (), 'sitelinks': (('hewiki', '\xd7\x94\xd7\x99\xd7\x9c\xd7\x94 \xd7\x96\xd7\x99\xd7\xaa\xd7\x95\xd7\x9f', None), ('commonswiki', 'Category:Hila Zaitun', None)), 'claims': ({'numeric-id': 17172850, 'type': 'wikibase-entityid', 'property': 'P1303', 'entity-type': 'item', 'id': 'Q17172850'}, {'property': 'P69', 'entity-type': 'item', 'id': 'Q2894053', 'numeric-id': 2894053, 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 177220, 'property': 'P106', 'id': 'Q177220', 'type': 'wikibase-entityid'}, {'id': 'Q2259451', 'property': 'P106', 'numeric-id': 2259451, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'numeric-id': 37073, 'id': 'Q37073', 'property': 'P136', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P21', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 6581072, 'id': 'Q6581072'}, {'entity-type': 'item', 'numeric-id': 5, 'id': 'Q5', 'property': 'P31', 'type': 'wikibase-entityid'}, {'property': 'P19', 'numeric-id': 134762, 'entity-type': 'item', 'id': 'Q134762', 'type': 'wikibase-entityid'}, {'numeric-id': 9288, 'id': 'Q9288', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P1412'}, {'time': '+2007-00-00T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'property': 'P2031', 'type': 'time', 'before': 0, 'after': 0, 'precision': 9}, {'type': 'string', 'value': 'Hila Zaitun D818-052 (cropped).jpg', 'property': 'P18'}, {'id': 'Q801', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 801, 'property': 'P27'}, {'type': 'time', 'before': 0, 'property': 'P569', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'after': 0, 'timezone': 0, 'time': '+1977-12-11T00:00:00Z'}, {'property': 'P373', 'type': 'string', 'value': 'Hila Zaitun'}), 'title': 'Q6781832'}
{'type': 'item', 'id': 'Q6781891', 'labels': (('en', 'Marz\xc4\x99cin, \xc5\x9awi\xc4\x99tokrzyskie Voivodeship'),), 'descriptions': (('en', 'village in \xc5\x9awi\xc4\x99tokrzyskie, Poland'),), 'aliases': (), 'sitelinks': (('plwiki', 'Marz\xc4\x99cin (wojew\xc3\xb3dztwo \xc5\x9bwi\xc4\x99tokrzyskie)', None), ('frwiki', 'Marz\xc4\x99cin (Sainte-Croix)', None), ('ttwiki', '\xd0\x9c\xd0\xb0\xd0\xb6\xd0\xb5\xd0\xbd\xd1\x86\xd0\xb8\xd0\xbd (\xd0\xa1\xd0\xb2\xd0\xb5\xd0\xbd\xd1\x82\xd0\xbe\xd0\xba\xd1\x88\xd0\xb8\xd0\xb6 \xd0\xb2\xd0\xbe\xd0\xb5\xd0\xb2\xd0\xbe\xd0\xb4\xd0\xb0\xd0\xbb\xd1\x8b\xd0\xb3\xd1\x8b)', None), ('ukwiki', '\xd0\x9c\xd0\xb0\xd0\xb6\xd0\xb5\xd0\xbd\xd1\x86\xd0\xb8\xd0\xbd (\xd0\xa1\xd0\xb2\xd0\xb5\xd0\xbd\xd1\x82\xd0\xbe\xd0\xba\xd1\x88\xd0\xb8\xd1\x81\xd1\x8c\xd0\xba\xd0\xb5 \xd0\xb2\xd0\xbe\xd1\x94\xd0\xb2\xd0\xbe\xd0\xb4\xd1\x81\xd1\x82\xd0\xb2\xd0\xbe)', None), ('cewiki', '\xd0\x9c\xd0\xb0\xd0\xb6\xd0\xb5\xd0\xbd\xd1\x86\xd0\xb8\xd0\xbd (\xd0\xa1\xd0\xb2\xd0\xb5\xd0\xbd\xd1\x82\xd0\xbe\xd0\xba\xd1\x88\xd0\xb8\xd1\x81\xd0\xba\xd0\xb0\xd0\xbd \xd0\xb2\xd0\xbe\xd0\xb5\xd0\xb2\xd0\xbe\xd0\xb4\xd0\xb0\xd0\xbb\xd0\xbb\xd0\xb0)', None), ('zh_min_nanwiki', 'Marz\xc4\x99cin (\xc5\x9awi\xc4\x99tokrzyskie S\xc3\xa9ng)', None), ('fawiki', '\xd9\x85\xd8\xa7\xda\x98\xd8\xaa\xd8\xb3\xdb\x8c\xd9\x86 (\xd8\xa7\xd8\xb3\xd8\xaa\xd8\xa7\xd9\x86 \xd8\xa7\xd8\xb4\xd9\x88\xdb\x8c\xe2\x80\x8c\xd8\xaf\xd8\xa7\xd8\xb4\xda\xa9\xd8\xb3\xdb\x8c\xd9\x87)', None), ('commonswiki', 'Category:Marz\xc4\x99cin, \xc5\x9awi\xc4\x99tokrzyskie Voivodeship', None), ('enwiki', 'Marz\xc4\x99cin, \xc5\x9awi\xc4\x99tokrzyskie Voivodeship', None)), 'claims': ({'type': 'quantity', 'amount': '+255', 'property': 'P1082', 'unit': '1'}, {'type': 'quantity', 'unit': '1', 'amount': '+129', 'property': 'P1540'}, {'numeric-id': 553744, 'id': 'Q553744', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P131'}, {'property': 'P1889', 'entity-type': 'item', 'numeric-id': 11771000, 'type': 'wikibase-entityid', 'id': 'Q11771000'}, {'type': 'string', 'property': 'P18', 'value': 'JKRUK 20110604 MARZECIN IMG 1293.jpg'}, {'property': 'P1539', 'amount': '+126', 'type': 'quantity', 'unit': '1'}, {'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q3558970', 'numeric-id': 3558970}, {'property': 'P373', 'type': 'string', 'value': 'Marz\xc4\x99cin, \xc5\x9awi\xc4\x99tokrzyskie Voivodeship'}, {'type': 'wikibase-entityid', 'numeric-id': 36, 'entity-type': 'item', 'property': 'P17', 'id': 'Q36'}, {'id': 'Q6655', 'property': 'P421', 'entity-type': 'item', 'numeric-id': 6655, 'type': 'wikibase-entityid'}, {'numeric-id': 6723, 'property': 'P421', 'id': 'Q6723', 'type': 'wikibase-entityid', 'entity-type': 'item'}), 'title': 'Q6781891'}
{'type': 'item', 'id': 'Q6781903', 'labels': (('en-ca', 'Mar\xc3\xada'), ('en', 'Mar\xc3\xada'), ('en-g', 'Mar\xc3\xada')), 'descriptions': (('en', 'Song by Franco'), ('en-ca', 'Song by Franco'), ('en-g', 'Song by Franco')), 'aliases': (('en', 'Maria'),), 'sitelinks': (('enwiki', 'Mar\xc3\xada (Franco song)', None), ('ptwiki', 'Maria (can\xc3\xa7\xc3\xa3o de Domin\xc3\xb3)', None)), 'claims': ({'property': 'P31', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 105543609, 'id': 'Q105543609'}, {'entity-type': 'item', 'id': 'Q5484494', 'numeric-id': 5484494, 'property': 'P175', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 7160455, 'id': 'Q7160455', 'property': 'P264'}, {'property': 'P7937', 'entity-type': 'item', 'numeric-id': 7366, 'id': 'Q7366', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q18345375', 'property': 'P136', 'numeric-id': 18345375, 'entity-type': 'item'}, {'type': 'time', 'before': 0, 'property': 'P577', 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1988-00-00T00:00:00Z', 'timezone': 0, 'precision': 9}), 'title': 'Q6781903'}
{'type': 'item', 'id': 'Q6782033', 'labels': (('en', 'Tectarius viviparus'),), 'descriptions': (('en', 'species of mollusc'),), 'aliases': (), 'sitelinks': (('viwiki', 'Tectarius viviparus', None), ('enwiki', 'Tectarius viviparus', None), ('nlwiki', 'Tectarius viviparus', None), ('cebwiki', 'Tectarius viviparus', None)), 'claims': ({'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q16521', 'numeric-id': 16521, 'property': 'P31'}, {'type': 'string', 'property': 'P10585', 'value': '553GJ'}, {'property': 'P225', 'value': 'Tectarius viviparus', 'type': 'string'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q3142100', 'numeric-id': 3142100, 'property': 'P171'}, {'id': 'Q7432', 'numeric-id': 7432, 'property': 'P105', 'type': 'wikibase-entityid', 'entity-type': 'item'}), 'title': 'Q6782033'}
{'type': 'item', 'id': 'Q6782184', 'labels': (('en', 'Dilek'),), 'descriptions': (('en-g', 'k\xc3\xb6y in Tunceli, Turkey'), ('en-ca', 'k\xc3\xb6y in Tunceli, Turkey'), ('en', 'village in Tunceli, Turkey')), 'aliases': (), 'sitelinks': (('trwiki', 'Dilek, Tunceli', None), ('viwiki', 'Dilek, Tunceli', None), ('hywiki', '\xd4\xb9\xd5\xab\xd5\xac\xd5\xa5\xd5\xaf', None), ('ttwiki', '\xd0\x94\xd0\xb8\xd0\xbb\xd0\xb5\xd0\xba (\xd0\xa2\xd1\x83\xd0\xbd\xd2\x97\xd1\x8d\xd0\xbb\xd0\xb8)', None), ('enwiki', 'Dilek, Tunceli', None), ('cewiki', '\xd0\x94\xd0\xb8\xd0\xbb\xd0\xb5\xd0\xba (\xd0\xa2\xd1\x83\xd0\xbd\xd0\xb4\xd0\xb6\xd0\xb5\xd0\xbb\xd0\xb8)', None)), 'claims': ({'id': 'Q43', 'property': 'P17', 'entity-type': 'item', 'numeric-id': 43, 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P31', 'id': 'Q1529096', 'numeric-id': 1529096}, {'property': 'P1343', 'type': 'wikibase-entityid', 'numeric-id': 2657718, 'entity-type': 'item', 'id': 'Q2657718'}, {'id': 'Q202195', 'property': 'P131', 'numeric-id': 202195, 'type': 'wikibase-entityid', 'entity-type': 'item'}), 'title': 'Q6782184'}
{'type': 'item', 'id': 'Q6782169', 'labels': (('en', 'Mar\xc3\xada del Carmen Dato, 3rd Duchess of Dato'),), 'descriptions': (('en', 'Spanish duchess'),), 'aliases': (), 'sitelinks': (('commonswiki', 'Category:Mar\xc3\xada del Carmen Dato y Barrenechea', None), ('enwiki', 'Mar\xc3\xada del Carmen Dato, 3rd Duchess of Dato', ('Q70893996',))), 'claims': ({'numeric-id': 4593319, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P97', 'id': 'Q4593319'}, {'entity-type': 'item', 'id': 'Q2554364', 'numeric-id': 2554364, 'property': 'P3716', 'type': 'wikibase-entityid'}, {'id': 'Q2807', 'type': 'wikibase-entityid', 'numeric-id': 2807, 'property': 'P19', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q99826472', 'property': 'P40', 'numeric-id': 99826472}, {'numeric-id': 37058976, 'entity-type': 'item', 'id': 'Q37058976', 'property': 'P1950', 'type': 'wikibase-entityid'}, {'property': 'P22', 'numeric-id': 365162, 'entity-type': 'item', 'id': 'Q365162', 'type': 'wikibase-entityid'}, {'id': 'Q6581072', 'numeric-id': 6581072, 'property': 'P21', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P373', 'type': 'string', 'value': 'Mar\xc3\xada del Carmen Dato y Barrenechea'}, {'type': 'time', 'timezone': 0, 'property': 'P570', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1938-05-18T00:00:00Z', 'precision': 11, 'before': 0, 'after': 0}, {'numeric-id': 5, 'id': 'Q5', 'type': 'wikibase-entityid', 'property': 'P31', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q1321', 'property': 'P1412', 'numeric-id': 1321}, {'id': 'Q29', 'property': 'P27', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 29}, {'numeric-id': 9071456, 'entity-type': 'item', 'id': 'Q9071456', 'property': 'P3373', 'type': 'wikibase-entityid'}, {'id': 'Q75424236', 'numeric-id': 75424236, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P3373'}, {'id': 'Q37531322', 'numeric-id': 37531322, 'type': 'wikibase-entityid', 'property': 'P734', 'entity-type': 'item'}, {'type': 'monolingualtext', 'language': 'es', 'property': 'P1477', 'text': 'Mar\xc3\xada del Carmen Dato y Barrenechea'}, {'type': 'string', 'value': '1904-11-10, El Gr\xc3\xa1fico, La boda de la hija de Dato, La novia, se\xc3\xb1orita Carmen Dato, hija del ilustre hombre p\xc3\xbablico del mismo apellido.jpg', 'property': 'P18'}, {'entity-type': 'item', 'numeric-id': 34228232, 'id': 'Q34228232', 'property': 'P735', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 3059606, 'property': 'P26', 'id': 'Q3059606', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q6782151', 'numeric-id': 6782151, 'property': 'P25'}, {'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'type': 'time', 'after': 0, 'property': 'P569', 'precision': 11, 'time': '+1885-12-06T00:00:00Z'}, {'type': 'wikibase-entityid', 'property': 'P20', 'numeric-id': 2807, 'entity-type': 'item', 'id': 'Q2807'}, {'id': 'Q10313', 'type': 'wikibase-entityid', 'numeric-id': 10313, 'property': 'P20', 'entity-type': 'item'}), 'title': 'Q6782169'}
{'type': 'item', 'id': 'Q6782294', 'labels': (('en', 'Masada Iosefa'),), 'descriptions': (('en', 'Samoan rugby league footballer'),), 'aliases': (), 'sitelinks': (('simplewiki', 'Masada Iosefa', None), ('enwiki', 'Masada Iosefa', None), ('commonswiki', 'Category:Masada Iosefa', None)), 'claims': ({'value': 'Masada Iosefa', 'type': 'string', 'property': 'P373'}, {'value': '13856', 'property': 'P11428', 'type': 'string'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q6918073', 'numeric-id': 6918073, 'property': 'P19'}, {'property': 'P570', 'precision': 11, 'time': '+2021-01-25T00:00:00Z', 'type': 'time', 'before': 0, 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0}, {'entity-type': 'item', 'numeric-id': 1860, 'property': 'P1412', 'id': 'Q1860', 'type': 'wikibase-entityid'}, {'value': 'MASADA IOSEFA (Australian rugby league player).jpg', 'property': 'P18', 'type': 'string'}, {'numeric-id': 5, 'type': 'wikibase-entityid', 'id': 'Q5', 'entity-type': 'item', 'property': 'P31'}, {'type': 'wikibase-entityid', 'property': 'P106', 'entity-type': 'item', 'id': 'Q14373094', 'numeric-id': 14373094}, {'entity-type': 'item', 'property': 'P509', 'numeric-id': 9687, 'type': 'wikibase-entityid', 'id': 'Q9687'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q7145912', 'numeric-id': 7145912, 'property': 'P69'}, {'id': 'Q5733379', 'property': 'P20', 'type': 'wikibase-entityid', 'numeric-id': 5733379, 'entity-type': 'item'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q10962', 'numeric-id': 10962, 'property': 'P641'}, {'numeric-id': 6581097, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P21', 'id': 'Q6581097'}, {'numeric-id': 21142718, 'entity-type': 'item', 'id': 'Q21142718', 'property': 'P1196', 'type': 'wikibase-entityid'}, {'after': 0, 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1988-01-26T00:00:00Z', 'type': 'time', 'before': 0, 'precision': 11, 'property': 'P569'}), 'title': 'Q6782294'}
{'type': 'item', 'id': 'Q6782804', 'labels': (('en', 'Masayuki Matsubara'),), 'descriptions': (('en', 'Olympic medalist in wrestling'),), 'aliases': (), 'sitelinks': (('commonswiki', 'Category:Masayuki Matsubara', None), ('fawiki', '\xd9\x85\xd8\xa7\xd8\xb3\xd8\xa7\xdb\x8c\xd9\x88\xda\xa9\xdb\x8c \xd9\x85\xd8\xa7\xd8\xaa\xd8\xb3\xd9\x88\xd8\xa8\xd8\xa7\xd8\xb1\xd8\xa7', None), ('zhwiki', '\xe6\x9d\xbe\xe5\x8e\x9f\xe6\xad\xa3\xe4\xb9\x8', None), ('eswiki', 'Masayuki Matsubara', None), ('ruwiki', '\xd0\x9c\xd0\xb0\xd1\x86\xd1\x83\xd0\xb1\xd0\xb0\xd1\x80\xd0\xb0, \xd0\x9c\xd0\xb0\xd1\x81\xd0\xb0\xd1\x8e\xd0\xba\xd0\xb8', None), ('enwiki', 'Masayuki Matsubara', None), ('plwiki', 'Masayuki Matsubara', None), ('itwiki', 'Masayuki Matsubara', None), ('frwiki', 'Masayuki Matsubara', None), ('jawiki', '\xe6\x9d\xbe\xe5\x8e\x9f\xe6\xad\xa3\xe4\xb9\x8', None)), 'claims': ({'property': 'P18', 'value': 'Masayuki Matsubara 1960.jpg', 'type': 'string'}, {'type': 'string', 'value': '\xe3\x81\xbe\xe3\x81\xa4\xe3\x81\xb0\xe3\x82\x89 \xe3\x81\xbe\xe3\x81\x95\xe3\x82\x86\xe3\x81\x8d', 'property': 'P1814'}, {'type': 'monolingualtext', 'language': 'ja', 'property': 'P1559', 'text': '\xe6\x9d\xbe\xe5\x8e\x9f\xe6\xad\xa3\xe4\xb9\x8'}, {'entity-type': 'item', 'numeric-id': 838089, 'property': 'P641', 'type': 'wikibase-entityid', 'id': 'Q838089'}, {'numeric-id': 17, 'entity-type': 'item', 'property': 'P27', 'type': 'wikibase-entityid', 'id': 'Q17'}, {'numeric-id': 47896, 'id': 'Q47896', 'entity-type': 'item', 'property': 'P19', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q6581097', 'entity-type': 'item', 'property': 'P21', 'numeric-id': 6581097}, {'numeric-id': 1909090, 'property': 'P734', 'id': 'Q1909090', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P569', 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'precision': 11, 'type': 'time', 'after': 0, 'time': '+1939-02-07T00:00:00Z'}, {'property': 'P373', 'value': 'Masayuki Matsubara', 'type': 'string'}, {'type': 'wikibase-entityid', 'id': 'Q1326230', 'entity-type': 'item', 'numeric-id': 1326230, 'property': 'P69'}, {'unit': 'http://www.wikidata.org/entity/Q174728', 'type': 'quantity', 'amount': '+159', 'property': 'P2048'}, {'numeric-id': 8415, 'id': 'Q8415', 'entity-type': 'item', 'property': 'P1344', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q12369333', 'entity-type': 'item', 'property': 'P106', 'numeric-id': 12369333}, {'type': 'wikibase-entityid', 'property': 'P31', 'entity-type': 'item', 'id': 'Q5', 'numeric-id': 5}, {'property': 'P735', 'entity-type': 'item', 'id': 'Q6782794', 'type': 'wikibase-entityid', 'numeric-id': 6782794}), 'title': 'Q6782804'}
{'type': 'item', 'id': 'Q6782876', 'labels': (('en', 'Mascoma River'),), 'descriptions': (('en', 'river in the United States of America'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mascoma River', None),), 'claims': ({'entity-type': 'item', 'id': 'Q47004520', 'property': 'P4614', 'type': 'wikibase-entityid', 'numeric-id': 47004520}, {'entity-type': 'item', 'numeric-id': 4022, 'property': 'P31', 'id': 'Q4022', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'property': 'P17', 'numeric-id': 30, 'entity-type': 'item', 'id': 'Q30'}, {'id': 'Q16551', 'property': 'P131', 'entity-type': 'item', 'numeric-id': 16551, 'type': 'wikibase-entityid'}, {'id': 'Q379648', 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P403', 'numeric-id': 379648}, {'value': 'The Eddy, Mascoma River, Lebanon, NH.jpg', 'property': 'P18', 'type': 'string'}), 'title': 'Q6782876'}
{'type': 'item', 'id': 'Q6782944', 'labels': (('en', 'Masdevallia weberbaueri'),), 'descriptions': (('en', 'species of plant'),), 'aliases': (), 'sitelinks': (('commonswiki', 'Masdevallia weberbaueri', None), ('eswiki', 'Masdevallia weberbaueri', None), ('enwiki', 'Masdevallia weberbaueri', None), ('svwiki', 'Masdevallia weberbaueri', None), ('warwiki', 'Masdevallia weberbaueri', None), ('cebwiki', 'Masdevallia weberbaueri', None), ('frwiki', 'Masdevallia weberbaueri', None), ('specieswiki', 'Masdevallia weberbaueri', None), ('viwiki', 'Masdevallia weberbaueri', None)), 'claims': ({'property': 'P1813', 'text': 'M. weberbaueri', 'type': 'monolingualtext', 'language': 'mul'}, {'property': 'P31', 'numeric-id': 16521, 'id': 'Q16521', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P10585', 'value': '3YBD5', 'type': 'string'}, {'type': 'string', 'value': 'Masdevallia weberbaueri', 'property': 'P225'}, {'property': 'P373', 'type': 'string', 'value': 'Masdevallia weberbaueri'}, {'property': 'P935', 'type': 'string', 'value': 'Masdevallia weberbaueri'}, {'id': 'Q132700', 'entity-type': 'item', 'property': 'P171', 'numeric-id': 132700, 'type': 'wikibase-entityid'}, {'type': 'string', 'value': 'Masdevallia weberbaueri OrchidsBln0906.jpg', 'property': 'P18'}, {'id': 'Q7432', 'entity-type': 'item', 'property': 'P105', 'type': 'wikibase-entityid', 'numeric-id': 7432}, {'id': 'Q810198', 'numeric-id': 810198, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P2868'}), 'title': 'Q6782944'}
{'type': 'item', 'id': 'Q6783047', 'labels': (('en', 'Masha Beharan'),), 'descriptions': (('en', 'village in South Khorasan, Iran'),), 'aliases': (), 'sitelinks': (('fawiki', '\xd9\x85\xd8\xb4\xd8\xa7\xd8\xb9 \xd8\xa8\xd9\x87\xd8\xa7\xd8\xb1\xd8\xa7\xd9\x86', None), ('zh_min_nanwiki', 'Masha Beharan', None), ('arzwiki', '\xd9\x85\xd8\xb4\xd8\xa7\xd8\xb9 \xd8\xa8\xd9\x87\xd8\xa7\xd8\xb1\xd8\xa7\xd9\x86', None), ('arwiki', '\xd9\x85\xd8\xb4\xd8\xa7\xd8\xb9 \xd8\xa8\xd9\x87\xd8\xa7\xd8\xb1\xd8\xa7\xd9\x86 (\xd8\xb9\xd9\x84\xd9\x8a \xd8\xac\xd9\x85\xd8\xa7\xd9\x84)', None)), 'claims': ({'id': 'Q794', 'numeric-id': 794, 'property': 'P17', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'numeric-id': 10296983, 'id': 'Q10296983', 'property': 'P131', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q486972', 'numeric-id': 486972, 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item'}), 'title': 'Q6783047'}
{'type': 'item', 'id': 'Q6783233', 'labels': (('en', 'Mashuna'),), 'descriptions': (('en', 'genus of insects'),), 'aliases': (), 'sitelinks': (('specieswiki', 'Mashuna', None), ('nowiki', 'Mashuna', None), ('zhwiki', '\xe7\x91\xaa\xe7\x9c\xbc\xe8\x9d\xb6\xe5\xb1\xac', None), ('enwiki', 'Mashuna', None)), 'claims': ({'value': '92F2H', 'type': 'string', 'property': 'P10585'}, {'type': 'wikibase-entityid', 'numeric-id': 16521, 'property': 'P31', 'entity-type': 'item', 'id': 'Q16521'}, {'entity-type': 'item', 'numeric-id': 34740, 'property': 'P105', 'type': 'wikibase-entityid', 'id': 'Q34740'}, {'property': 'P225', 'type': 'string', 'value': 'Mashuna'}, {'value': 'Mashuna', 'property': 'P373', 'type': 'string'}, {'value': 'Mashuna mashuna.JPG', 'type': 'string', 'property': 'P18'}, {'id': 'Q15024036', 'property': 'P910', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 15024036}, {'id': 'Q156449', 'property': 'P171', 'numeric-id': 156449, 'type': 'wikibase-entityid', 'entity-type': 'item'}), 'title': 'Q6783233'}
{'type': 'item', 'id': 'Q6783426', 'labels': (('en', 'Eatoniella mortoni'),), 'descriptions': (('en', 'species of mollusc'),), 'aliases': (), 'sitelinks': (('warwiki', 'Eatoniella mortoni', None), ('cebwiki', 'Eatoniella mortoni', None), ('nlwiki', 'Eatoniella mortoni', None), ('commonswiki', 'Category:Eatoniella mortoni', None), ('enwiki', 'Eatoniella mortoni', None), ('viwiki', 'Eatoniella mortoni', None), ('svwiki', 'Eatoniella mortoni', None)), 'claims': ({'value': 'Eatoniella mortoni', 'type': 'string', 'property': 'P225'}, {'id': 'Q7432', 'entity-type': 'item', 'numeric-id': 7432, 'property': 'P105', 'type': 'wikibase-entityid'}, {'numeric-id': 15305047, 'id': 'Q15305047', 'property': 'P5008', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q3138613', 'numeric-id': 3138613, 'property': 'P171', 'type': 'wikibase-entityid'}, {'type': 'string', 'property': 'P373', 'value': 'Eatoniella mortoni'}, {'property': 'P10585', 'value': '38BXV', 'type': 'string'}, {'text': 'E. mortoni', 'language': 'mul', 'type': 'monolingualtext', 'property': 'P1813'}, {'entity-type': 'item', 'property': 'P31', 'id': 'Q16521', 'numeric-id': 16521, 'type': 'wikibase-entityid'}, {'value': 'Eatoniella (Dardanula) mortoni (Ponder, 1965) (AM MA71262).jpg', 'property': 'P18', 'type': 'string'}), 'title': 'Q6783426'}
{'type': 'item', 'id': 'Q6783922', 'labels': (('en', 'Masquerade'),), 'descriptions': (('en', 'sixth Japanese single (counted as fifth) by the South Korean boy band 2PM'),), 'aliases': (), 'sitelinks': (('idwiki', 'Masquerade (lagu 2PM)', None), ('kowiki', 'Masquerade (2PM\xec\x9d\x98 \xeb\x85\xb8\xeb\x9e\x98)', None), ('enwiki', 'Masquerade (2PM song)', None)), 'claims': ({'id': 'Q4790747', 'numeric-id': 4790747, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P264'}, {'timezone': 0, 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P577', 'before': 0, 'precision': 9, 'time': '+2012-01-01T00:00:00Z', 'type': 'time'}, {'type': 'wikibase-entityid', 'id': 'Q222760', 'entity-type': 'item', 'numeric-id': 222760, 'property': 'P175'}, {'type': 'wikibase-entityid', 'id': 'Q7366', 'entity-type': 'item', 'numeric-id': 7366, 'property': 'P31'}, {'entity-type': 'item', 'numeric-id': 134556, 'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q134556'}, {'id': 'Q131578', 'numeric-id': 131578, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P136'}, {'entity-type': 'item', 'property': 'P361', 'id': 'Q6517753', 'type': 'wikibase-entityid', 'numeric-id': 6517753}, {'id': 'Q6630698', 'property': 'P155', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 6630698}), 'title': 'Q6783922'}
{'type': 'item', 'id': 'Q6783938', 'labels': (('en', 'Park Hae-mi'),), 'descriptions': (('en', 'South Korean actress'), ('en-ca', 'South Korean actress'), ('en-g', 'South Korean actress')), 'aliases': (), 'sitelinks': (('commonswiki', 'Category:Park Hae-mi (actress)', None), ('dagwiki', 'Park Hae-mi', None), ('zhwiki', '\xe6\x9c\xb4\xe6\xb5\xb7\xe7\xbe\x8e', None), ('arzwiki', '\xd9\xbe\xd8\xa7\xd8\xb1\xd9\x83 \xd9\x87\xd8\xa7\xd9\x89 \xd9\x85\xd9\x89', None), ('enwiki', 'Park Hae-mi', None), ('kowiki', '\xeb\xb0\x95\xed\x95\xb4\xeb\xaf\xb8', None), ('idwiki', 'Park Hae-mi', None)), 'claims': ({'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 10800557, 'id': 'Q10800557', 'property': 'P106'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q33999', 'numeric-id': 33999, 'property': 'P106'}, {'id': 'Q41114', 'numeric-id': 41114, 'property': 'P69', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q6581072', 'type': 'wikibase-entityid', 'numeric-id': 6581072, 'property': 'P21'}, {'value': 'Pak Hae-mi', 'type': 'string', 'property': 'P1942'}, {'type': 'wikibase-entityid', 'numeric-id': 5295691, 'property': 'P108', 'entity-type': 'item', 'id': 'Q5295691'}, {'property': 'P2003', 'value': 'okhaemee', 'type': 'string'}, {'id': 'Q884', 'property': 'P27', 'entity-type': 'item', 'numeric-id': 884, 'type': 'wikibase-entityid'}, {'value': 'park-hae-mi', 'property': 'P10302', 'type': 'string'}, {'numeric-id': 69512080, 'id': 'Q69512080', 'entity-type': 'item', 'property': 'P735', 'type': 'wikibase-entityid'}, {'property': 'P18', 'type': 'string', 'value': '\xea\xb3\xb5\xec\xa0\x95\xec\x9c\x84 \xec\xb2\xab \xec\x97\xb0\xec\x98\x88\xec\x9d\xb8 \xed\x99\x8d\xeb\xb3\xb4\xeb\x8c\x80\xec\x82\xac, \xeb\xb0\x95\xed\x95\xb4\xeb\xaf\xb8!.jpg'}, {'type': 'time', 'precision': 11, 'time': '+1964-01-28T00:00:00Z', 'before': 0, 'property': 'P569', 'timezone': 0, 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'property': 'P2001', 'type': 'string', 'value': 'Bak Hae-mi'}, {'property': 'P103', 'id': 'Q9176', 'type': 'wikibase-entityid', 'numeric-id': 9176, 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'property': 'P1412', 'entity-type': 'item', 'id': 'Q9176', 'numeric-id': 9176}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q5', 'numeric-id': 5, 'property': 'P31'}, {'property': 'P373', 'type': 'string', 'value': 'Park Hae-mi (actress)'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q20921', 'numeric-id': 20921, 'property': 'P19'}, {'numeric-id': 715935, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P734', 'id': 'Q715935'}), 'title': 'Q6783938'}
{'type': 'item', 'id': 'Q6784097', 'labels': (('en', 'Public transportation in the United States'),), 'descriptions': (('en', 'publicly financed transit services in the country'),), 'aliases': (), 'sitelinks': (('enwiki', 'Public transportation in the United States', None),), 'claims': ({'property': 'P18', 'type': 'string', 'value': 'METRO Light Rail3.jpg'}, {'id': 'Q9069158', 'entity-type': 'item', 'numeric-id': 9069158, 'type': 'wikibase-entityid', 'property': 'P910'}, {'type': 'string', 'property': 'P373', 'value': 'Public transport in the United States'}, {'id': 'Q15305047', 'property': 'P5008', 'type': 'wikibase-entityid', 'numeric-id': 15305047, 'entity-type': 'item'}, {'numeric-id': 53051, 'property': 'P5008', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q53051'}, {'type': 'wikibase-entityid', 'property': 'P17', 'numeric-id': 30, 'id': 'Q30', 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q161837', 'property': 'P1269', 'type': 'wikibase-entityid', 'numeric-id': 161837}, {'numeric-id': 178512, 'id': 'Q178512', 'entity-type': 'item', 'property': 'P31', 'type': 'wikibase-entityid'}), 'title': 'Q6784097'}
{'type': 'item', 'id': 'Q6784216', 'labels': (('en', "Massachusetts Children's Book Award"),), 'descriptions': (), 'aliases': (), 'sitelinks': (('enwiki', "Massachusetts Children's Book Award", None),), 'claims': ({'precision': 9, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'before': 0, 'property': 'P571', 'time': '+1975-00-00T00:00:00Z', 'type': 'time', 'timezone': 0}, {'type': 'wikibase-entityid', 'id': 'Q618779', 'numeric-id': 618779, 'entity-type': 'item', 'property': 'P31'}), 'title': 'Q6784216'}
{'type': 'item', 'id': 'Q6784491', 'labels': (('en', 'Massacre of Wola Ostrowiecka'),), 'descriptions': (('en', 'massacre by Ukrainian Insurgent Army'),), 'aliases': (), 'sitelinks': (('plwiki', 'Zbrodnia w Woli Ostrowieckiej', None), ('enwiki', 'Wola Ostrowiecka massacre', None)), 'claims': ({'time': '+1943-00-00T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 9, 'property': 'P585', 'type': 'time', 'after': 0, 'timezone': 0, 'before': 0}, {'value': 'Exhumation (4).jpg', 'property': 'P18', 'type': 'string'}), 'title': 'Q6784491'}
{'type': 'item', 'id': 'Q6784597', 'labels': (('en', 'Massey-Harris Model 101'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('frwiki', 'Massey-Harris 101', None), ('enwiki', 'Massey-Harris Model 101', None)), 'claims': (), 'title': 'Q6784597'}
{'type': 'item', 'id': 'Q6784731', 'labels': (('en', 'Massimo Ellul'),), 'descriptions': (('en', 'consultant'),), 'aliases': (), 'sitelinks': (('enwiki', 'Massimo Ellul', None),), 'claims': ({'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q56246016', 'numeric-id': 56246016, 'property': 'P734'}, {'property': 'P18', 'type': 'string', 'value': 'Massimo Ellul.jpg'}, {'numeric-id': 5, 'property': 'P31', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q5'}, {'entity-type': 'item', 'property': 'P21', 'id': 'Q6581097', 'type': 'wikibase-entityid', 'numeric-id': 6581097}, {'property': 'P569', 'precision': 11, 'timezone': 0, 'type': 'time', 'time': '+1970-12-20T00:00:00Z', 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0}, {'numeric-id': 18104420, 'type': 'wikibase-entityid', 'property': 'P735', 'id': 'Q18104420', 'entity-type': 'item'}, {'entity-type': 'item', 'property': 'P27', 'id': 'Q233', 'numeric-id': 233, 'type': 'wikibase-entityid'}), 'title': 'Q6784731'}
{'type': 'item', 'id': 'Q6784931', 'labels': (('en', 'MasterCard Truck Series'),), 'descriptions': (('en', 'former NASCAR series'),), 'aliases': (), 'sitelinks': (('enwiki', "NASCAR Mikel's Truck Series", None),), 'claims': ({'id': 'Q5386', 'entity-type': 'item', 'numeric-id': 5386, 'property': 'P641', 'type': 'wikibase-entityid'}, {'id': 'Q96', 'numeric-id': 96, 'property': 'P17', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P31', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q60147807', 'numeric-id': 60147807}), 'title': 'Q6784931'}
{'type': 'item', 'id': 'Q6785206', 'labels': (('en', 'Master of Jurisprudence'),), 'descriptions': (('en', "master's degree; law degree"),), 'aliases': (('en', 'M.J.'),), 'sitelinks': (('enwiki', 'Master of Jurisprudence', None),), 'claims': ({'numeric-id': 183816, 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q183816'},), 'title': 'Q6785206'}
{'type': 'item', 'id': 'Q6785240', 'labels': (('en', 'Master of Romance'),), 'descriptions': (('en', 'album by Sadie'),), 'aliases': (), 'sitelinks': (('enwiki', 'Master of Romance', None),), 'claims': ({'timezone': 0, 'time': '+2009-00-00T00:00:00Z', 'precision': 9, 'after': 0, 'property': 'P577', 'before': 0, 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'id': 'Q7882989', 'numeric-id': 7882989, 'entity-type': 'item', 'property': 'P155', 'type': 'wikibase-entityid'}, {'numeric-id': 5517206, 'entity-type': 'item', 'id': 'Q5517206', 'property': 'P156', 'type': 'wikibase-entityid'}, {'numeric-id': 482994, 'type': 'wikibase-entityid', 'id': 'Q482994', 'entity-type': 'item', 'property': 'P31'}, {'type': 'wikibase-entityid', 'id': 'Q847793', 'numeric-id': 847793, 'property': 'P175', 'entity-type': 'item'}), 'title': 'Q6785240'}
{'type': 'item', 'id': 'Q6785464', 'labels': (('en', 'Masters of Moral, Servants of Sin'), ('en-ca', 'Masters of Moral, Servants of Sin'), ('en-g', 'Masters of Moral, Servants of Sin')), 'descriptions': (('en', 'album by Pungent Stench'),), 'aliases': (('en', 'Masters of Moral - Servants of Sin'),), 'sitelinks': (('itwiki', 'Masters of Moral, Servants of Sin', None), ('enwiki', 'Masters of Moral, Servants of Sin', None)), 'claims': ({'numeric-id': 483251, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P136', 'id': 'Q483251'}, {'id': 'Q482994', 'property': 'P31', 'type': 'wikibase-entityid', 'numeric-id': 482994, 'entity-type': 'item'}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 9, 'property': 'P577', 'time': '+2001-00-00T00:00:00Z', 'after': 0, 'type': 'time', 'timezone': 0, 'before': 0}, {'id': 'Q690539', 'property': 'P175', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 690539}, {'type': 'wikibase-entityid', 'id': 'Q7238105', 'numeric-id': 7238105, 'entity-type': 'item', 'property': 'P155'}, {'numeric-id': 158886, 'property': 'P264', 'type': 'wikibase-entityid', 'id': 'Q158886', 'entity-type': 'item'}, {'entity-type': 'item', 'property': 'P156', 'id': 'Q474434', 'numeric-id': 474434, 'type': 'wikibase-entityid'}), 'title': 'Q6785464'}
{'type': 'item', 'id': 'Q6785857', 'labels': (('en', "Mata'pang"),), 'descriptions': (('en', 'Northern Mariana Islands chief'),), 'aliases': (), 'sitelinks': (('eswiki', "Mata'pang", None), ('enwiki', "Mat\xc3\xa5'pang", None), ('idwiki', "Mat\xc3\xa5'pang", None), ('chwiki', 'Mat\xc3\xa5\xe2\x80\x99pang', None), ('ruwiki', '\xd0\x9c\xd0\xb0\xd1\x82\xd0\xb0\xe2\x80\x99\xd0\xbf\xd0\xb0\xd0\xbd\xd0\xb3', None)), 'claims': ({'numeric-id': 5, 'property': 'P31', 'entity-type': 'item', 'id': 'Q5', 'type': 'wikibase-entityid'}, {'id': 'Q6581097', 'property': 'P21', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 6581097}, {'time': '+1680-01-01T00:00:00Z', 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'precision': 9, 'after': 0, 'property': 'P570', 'timezone': 0}, {'type': 'wikibase-entityid', 'id': 'Q1259323', 'entity-type': 'item', 'numeric-id': 1259323, 'property': 'P106'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P119', 'id': 'Q16635', 'numeric-id': 16635}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'before': 0, 'time': '+1650-00-00T00:00:00Z', 'precision': 7, 'timezone': 0, 'property': 'P569', 'type': 'time'}, {'numeric-id': 4228595, 'entity-type': 'item', 'id': 'Q4228595', 'type': 'wikibase-entityid', 'property': 'P509'}), 'title': 'Q6785857'}
{'type': 'item', 'id': 'Q6786028', 'labels': (('en', 'Matam Bin Raja'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('arwiki', '\xd9\x85\xd8\xa3\xd8\xaa\xd9\x85 \xd8\xa8\xd9\x86 \xd8\xb1\xd8\xac\xd8\xa8', None), ('enwiki', 'Matam Bin Raja', None)), 'claims': (), 'title': 'Q6786028'}
{'type': 'item', 'id': 'Q6786298', 'labels': (('en', 'Strioterebrum ballinum'),), 'descriptions': (('en', 'species of mollusc'),), 'aliases': (), 'sitelinks': (('cebwiki', 'Strioterebrum ballina', None), ('viwiki', 'Strioterebrum ballinum', None), ('ptwiki', 'Punctoterebra ballina', None), ('nlwiki', 'Strioterebrum ballinum', None), ('enwiki', 'Punctoterebra ballina', None)), 'claims': ({'property': 'P31', 'type': 'wikibase-entityid', 'numeric-id': 16521, 'entity-type': 'item', 'id': 'Q16521'}, {'type': 'string', 'property': 'P225', 'value': 'Strioterebrum ballinum'}, {'entity-type': 'item', 'numeric-id': 7432, 'property': 'P105', 'type': 'wikibase-entityid', 'id': 'Q7432'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q7624060', 'property': 'P171', 'numeric-id': 7624060}), 'title': 'Q6786298'}
{'type': 'item', 'id': 'Q6786339', 'labels': (('en-ca', 'Mate Pehar'), ('en', 'Mate Pehar'), ('en-g', 'Mate Pehar')), 'descriptions': (('en-ca', 'Croatian footballer'), ('en-g', 'Croatian footballer'), ('en', 'Croatian footballer')), 'aliases': (), 'sitelinks': (('arzwiki', '\xd9\x85\xd8\xa7\xd8\xaa \xd9\xbe\xd9\x8a\xd9\x87\xd8\xa7\xd8\xb1', None), ('enwiki', 'Mate Pehar', None)), 'claims': ({'numeric-id': 6654, 'type': 'wikibase-entityid', 'id': 'Q6654', 'property': 'P1412', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'id': 'Q937857', 'numeric-id': 937857, 'entity-type': 'item', 'property': 'P106'}, {'entity-type': 'item', 'property': 'P735', 'id': 'Q16290653', 'numeric-id': 16290653, 'type': 'wikibase-entityid'}, {'property': 'P21', 'id': 'Q6581097', 'entity-type': 'item', 'numeric-id': 6581097, 'type': 'wikibase-entityid'}, {'id': 'Q5', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 5, 'property': 'P31'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P641', 'numeric-id': 2736, 'id': 'Q2736'}, {'before': 0, 'property': 'P569', 'time': '+1988-02-25T00:00:00Z', 'precision': 11, 'type': 'time', 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0}, {'entity-type': 'item', 'property': 'P413', 'type': 'wikibase-entityid', 'id': 'Q193592', 'numeric-id': 193592}, {'type': 'wikibase-entityid', 'numeric-id': 224, 'property': 'P27', 'id': 'Q224', 'entity-type': 'item'}, {'property': 'P54', 'id': 'Q1288504', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 1288504}, {'id': 'Q1297031', 'numeric-id': 1297031, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P54'}, {'type': 'wikibase-entityid', 'property': 'P54', 'id': 'Q1288504', 'entity-type': 'item', 'numeric-id': 1288504}, {'id': 'Q1288504', 'numeric-id': 1288504, 'property': 'P54', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'numeric-id': 1255000, 'property': 'P54', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q1255000'}, {'entity-type': 'item', 'id': 'Q337683', 'numeric-id': 337683, 'type': 'wikibase-entityid', 'property': 'P19'}), 'title': 'Q6786339'}
{'type': 'item', 'id': 'Q6786481', 'labels': (('en', 'Mateo Santos'),), 'descriptions': (('en', 'Fictional human'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mateo Santos', None),), 'claims': ({'numeric-id': 15632617, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P31', 'id': 'Q15632617'}, {'id': 'Q15773317', 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P31', 'numeric-id': 15773317}, {'numeric-id': 30, 'property': 'P27', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q30'}, {'property': 'P21', 'type': 'wikibase-entityid', 'id': 'Q6581097', 'entity-type': 'item', 'numeric-id': 6581097}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 4407937, 'id': 'Q4407937', 'property': 'P734'}, {'numeric-id': 13577249, 'property': 'P735', 'type': 'wikibase-entityid', 'id': 'Q13577249', 'entity-type': 'item'}, {'numeric-id': 205474, 'id': 'Q205474', 'entity-type': 'item', 'property': 'P1441', 'type': 'wikibase-entityid'}), 'title': 'Q6786481'}
{'type': 'item', 'id': 'Q6786726', 'labels': (('en', 'Mate\xc5\x99inka'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('cswiki', 'Mate\xc5\x99inka (divadeln\xc3\xad festival)', None), ('enwiki', 'Mate\xc5\x99inka', None)), 'claims': ({'after': 0, 'precision': 9, 'property': 'P571', 'time': '+1972-00-00T00:00:00Z', 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'before': 0}, {'entity-type': 'item', 'id': 'Q21030243', 'property': 'P31', 'type': 'wikibase-entityid', 'numeric-id': 21030243}, {'numeric-id': 15275719, 'entity-type': 'item', 'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q15275719'}, {'numeric-id': 213, 'id': 'Q213', 'entity-type': 'item', 'property': 'P17', 'type': 'wikibase-entityid'}), 'title': 'Q6786726'}
{'type': 'item', 'id': 'Q6787315', 'labels': (('en', 'Mathri'),), 'descriptions': (('en', 'Indian snack'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mathri', None), ('knwiki', '\xe0\xb2\xae\xe0\xb2\xa0\xe0\xb2\xb0\xe0\xb2\xbf', None), ('commonswiki', 'Category:Mathri', None)), 'claims': ({'type': 'string', 'value': 'Mathri.JPG', 'property': 'P18'}, {'entity-type': 'item', 'id': 'Q1987316', 'type': 'wikibase-entityid', 'property': 'P527', 'numeric-id': 1987316}, {'id': 'Q8195619', 'property': 'P31', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 8195619}, {'property': 'P495', 'id': 'Q668', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 668}, {'property': 'P373', 'type': 'string', 'value': 'Mathri'}, {'id': 'Q749316', 'property': 'P279', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 749316}), 'title': 'Q6787315'}
{'type': 'item', 'id': 'Q6787314', 'labels': (('en', 'Mathra'),), 'descriptions': (('en-ca', 'human settlement in Pakistan'), ('en', 'human settlement in Pakistan'), ('en-g', 'human settlement in Pakistan')), 'aliases': (('en', 'Mathra, Khyber Pakhtunkhwa'),), 'sitelinks': (('fawiki', '\xd9\x85\xd8\xaa\xd8\xb1\xd8\xa7\xd8\x8c \xd8\xae\xdb\x8c\xd8\xa8\xd8\xb1 \xd9\xbe\xd8\xae\xd8\xaa\xd9\x88\xd9\x86\xd8\xae\xd9\x88\xd8\xa7', None), ('urwiki', '\xd9\x85\xd8\xaa\xd8\xb1\xd8\xa7\xd8\x8c \xd9\xbe\xd8\xb4\xd8\xa7\xd9\x88\xd8\xb1', None), ('enwiki', 'Mathra, Khyber Pakhtunkhwa', None)), 'claims': ({'numeric-id': 486972, 'id': 'Q486972', 'type': 'wikibase-entityid', 'property': 'P31', 'entity-type': 'item'}, {'property': 'P17', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q843', 'numeric-id': 843}, {'property': 'P131', 'type': 'wikibase-entityid', 'id': 'Q549467', 'numeric-id': 549467, 'entity-type': 'item'}), 'title': 'Q6787314'}
{'type': 'item', 'id': 'Q6787494', 'labels': (('en', 'Matilda Awards'),), 'descriptions': (('en', 'theater awards event'),), 'aliases': (), 'sitelinks': (('enwiki', 'Matilda Awards', None),), 'claims': ({'property': 'P31', 'type': 'wikibase-entityid', 'numeric-id': 618779, 'id': 'Q618779', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'id': 'Q408', 'entity-type': 'item', 'property': 'P17', 'numeric-id': 408}), 'title': 'Q6787494'}
{'type': 'item', 'id': 'Q6787626', 'labels': (('en', 'Matiya Mulumba'),), 'descriptions': (('en', 'Ugandan Roman Catholic martyr'),), 'aliases': (), 'sitelinks': (('plwiki', 'Maciej Lumumba Kalemba', None), ('enwiki', 'Matiya Mulumba', None), ('euwiki', 'Matias Mulumba', None), ('swwiki', 'Matias Mulumba Kalemba', None)), 'claims': ({'id': 'Q6581097', 'type': 'wikibase-entityid', 'numeric-id': 6581097, 'entity-type': 'item', 'property': 'P21'}, {'numeric-id': 2623, 'property': 'P841', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q2623'}, {'precision': 9, 'time': '+1836-01-01T00:00:00Z', 'type': 'time', 'property': 'P569', 'timezone': 0, 'after': 0, 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1886-05-30T00:00:00Z', 'type': 'time', 'before': 0, 'precision': 11, 'after': 0, 'property': 'P570'}, {'type': 'string', 'property': 'P18', 'value': 'Karoli Lwanga and his followers.jpg'}, {'numeric-id': 5, 'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q5', 'entity-type': 'item'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P20', 'numeric-id': 6359102, 'id': 'Q6359102'}), 'title': 'Q6787626'}
{'type': 'item', 'id': 'Q6787712', 'labels': (('en-ca', 'Mato Milo\xc5\xa1'), ('en', 'Mato Milo\xc5\xa1'), ('en-g', 'Mato Milo\xc5\xa1')), 'descriptions': (('en-g', 'Croatian footballer'), ('en', 'Croatian footballer'), ('en-ca', 'Croatian footballer')), 'aliases': (), 'sitelinks': (('itwiki', 'Mato Milo\xc5\xa1', None), ('plwiki', 'Mato Milo\xc5\xa1', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd8\xaa\xd9\x88 \xd9\x85\xd9\x8a\xd9\x84\xd9\x88\xd8\xb3', None), ('arwiki', '\xd9\x85\xd8\xa7\xd8\xaa\xd9\x88 \xd9\x85\xd9\x8a\xd9\x84\xd9\x88\xd8\xb3', None), ('enwiki', 'Mato Milo\xc5\xa1', None), ('huwiki', 'Mato Milo\xc5\xa1', None), ('frwiki', 'Mato Milo\xc5\xa1', None), ('fawiki', '\xd9\x85\xd8\xa7\xd8\xaa\xd9\x88 \xd9\x85\xdb\x8c\xd9\x84\xd9\x88\xd8\xb4', None)), 'claims': ({'numeric-id': 16344, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P54', 'id': 'Q16344'}, {'property': 'P54', 'type': 'wikibase-entityid', 'id': 'Q8615', 'entity-type': 'item', 'numeric-id': 8615}, {'id': 'Q318969', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P54', 'numeric-id': 318969}, {'numeric-id': 726271, 'id': 'Q726271', 'property': 'P54', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'property': 'P54', 'id': 'Q2756', 'numeric-id': 2756, 'entity-type': 'item'}, {'entity-type': 'item', 'numeric-id': 3589940, 'id': 'Q3589940', 'property': 'P54', 'type': 'wikibase-entityid'}, {'property': 'P54', 'entity-type': 'item', 'id': 'Q9306674', 'numeric-id': 9306674, 'type': 'wikibase-entityid'}, {'property': 'P54', 'type': 'wikibase-entityid', 'id': 'Q3446766', 'entity-type': 'item', 'numeric-id': 3446766}, {'type': 'wikibase-entityid', 'property': 'P54', 'entity-type': 'item', 'id': 'Q5187078', 'numeric-id': 5187078}, {'entity-type': 'item', 'id': 'Q2331381', 'numeric-id': 2331381, 'property': 'P54', 'type': 'wikibase-entityid'}, {'id': 'Q318969', 'numeric-id': 318969, 'property': 'P54', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'numeric-id': 734785, 'entity-type': 'item', 'id': 'Q734785', 'property': 'P54'}, {'numeric-id': 937857, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q937857', 'property': 'P106'}, {'entity-type': 'item', 'numeric-id': 5, 'property': 'P31', 'id': 'Q5', 'type': 'wikibase-entityid'}, {'numeric-id': 4656, 'id': 'Q4656', 'entity-type': 'item', 'property': 'P19', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q6581097', 'numeric-id': 6581097, 'property': 'P21'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P1412', 'id': 'Q6654', 'numeric-id': 6654}, {'property': 'P413', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q336286', 'numeric-id': 336286}, {'numeric-id': 224, 'entity-type': 'item', 'id': 'Q224', 'property': 'P27', 'type': 'wikibase-entityid'}, {'property': 'P735', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 12796181, 'id': 'Q12796181'}, {'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1993-06-30T00:00:00Z', 'before': 0, 'precision': 11, 'timezone': 0, 'property': 'P569', 'type': 'time'}, {'unit': 'http://www.wikidata.org/entity/Q174728', 'type': 'quantity', 'amount': '+185', 'property': 'P2048'}, {'numeric-id': 2736, 'entity-type': 'item', 'id': 'Q2736', 'property': 'P641', 'type': 'wikibase-entityid'}), 'title': 'Q6787712'}
{'type': 'item', 'id': 'Q6788058', 'labels': (('en', 'Matsudaira Nobutsune'),), 'descriptions': (('en', '[\xe6\x9d\xbe\xe5\xb9\xb3\xe4\xbf\xa1\xe5\xba\xb8] daimyo of the late Edo period; 9th lord of Kaminoyama'),), 'aliases': (), 'sitelinks': (('enwiki', 'Matsudaira Nobutsune (Kaminoyama)', None), ('frwiki', 'Matsudaira Nobutsune (Kaminoyama)', None), ('jawiki', '\xe6\x9d\xbe\xe5\xb9\xb3\xe4\xbf\xa1\xe5\xba\xb8 (\xe4\xb8\x8a\xe5\xb1\xb1\xe8\x97\xa9\xe4\xb8\xbb)', None), ('kowiki', '\xeb\xa7\x88\xec\x93\xb0\xeb\x8b\xa4\xec\x9d\xb4\xeb\x9d\xbc \xeb\x85\xb8\xeb\xb6\x80\xec\x93\xb0\xeb\x84\xa4 (1844\xeb\x85\x84)', None)), 'claims': ({'entity-type': 'item', 'numeric-id': 6581097, 'id': 'Q6581097', 'property': 'P21', 'type': 'wikibase-entityid'}, {'precision': 11, 'after': 0, 'type': 'time', 'time': '+1844-09-22T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'before': 0, 'timezone': 0}, {'numeric-id': 61982, 'entity-type': 'item', 'property': 'P39', 'id': 'Q61982', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'property': 'P97', 'numeric-id': 61982, 'entity-type': 'item', 'id': 'Q61982'}, {'value': '\xe3\x81\xbe\xe3\x81\xa4\xe3\x81\xa0\xe3\x81\x84\xe3\x82\x89 \xe3\x81\xae\xe3\x81\xb6\xe3\x81\xa4\xe3\x81\xad', 'property': 'P1814', 'type': 'string'}, {'type': 'string', 'value': 'Matsudaira Nobutsune.jpg', 'property': 'P18'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 5, 'id': 'Q5', 'property': 'P31'}, {'entity-type': 'item', 'property': 'P27', 'id': 'Q17', 'numeric-id': 17, 'type': 'wikibase-entityid'}, {'after': 0, 'precision': 11, 'property': 'P570', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1918-03-05T00:00:00Z', 'before': 0, 'timezone': 0, 'type': 'time'}, {'id': 'Q38142', 'entity-type': 'item', 'property': 'P106', 'numeric-id': 38142, 'type': 'wikibase-entityid'}), 'title': 'Q6788058'}
{'type': 'item', 'id': 'Q6788170', 'labels': (('en', 'Matsunosuke'),), 'descriptions': (('en', 'British-bred Thoroughbred racehorse'),), 'aliases': (), 'sitelinks': (('enwiki', 'Matsunosuke', None),), 'claims': ({'property': 'P366', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q2442470', 'numeric-id': 2442470}, {'id': 'Q726', 'property': 'P31', 'type': 'wikibase-entityid', 'numeric-id': 726, 'entity-type': 'item'}, {'property': 'P569', 'after': 0, 'time': '+2002-00-00T00:00:00Z', 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 9, 'type': 'time', 'timezone': 0}, {'numeric-id': 210826, 'property': 'P4743', 'entity-type': 'item', 'id': 'Q210826', 'type': 'wikibase-entityid'}), 'title': 'Q6788170'}
{'type': 'item', 'id': 'Q6788387', 'labels': (('en', 'Matt Brennan'),), 'descriptions': (('en-g', 'Irish politician'), ('en-ca', 'Irish politician'), ('en', 'Irish politician')), 'aliases': (), 'sitelinks': (('enwiki', 'Matt Brennan (politician)', None), ('arwiki', '\xd9\x85\xd8\xa7\xd8\xaa \xd8\xa8\xd8\xb1\xd9\x8a\xd9\x86\xd8\xa7\xd9\x86', None)), 'claims': ({'id': 'Q1158973', 'entity-type': 'item', 'numeric-id': 1158973, 'type': 'wikibase-entityid', 'property': 'P735'}, {'entity-type': 'item', 'id': 'Q6581097', 'property': 'P21', 'numeric-id': 6581097, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q27', 'numeric-id': 27, 'property': 'P27'}, {'property': 'P569', 'timezone': 0, 'type': 'time', 'precision': 11, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'time': '+1936-10-01T00:00:00Z', 'before': 0}, {'property': 'P106', 'numeric-id': 82955, 'id': 'Q82955', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q216517', 'property': 'P102', 'numeric-id': 216517}, {'id': 'Q179325', 'numeric-id': 179325, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P19'}, {'numeric-id': 6582834, 'property': 'P734', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q6582834'}, {'type': 'wikibase-entityid', 'property': 'P31', 'id': 'Q5', 'entity-type': 'item', 'numeric-id': 5}, {'type': 'string', 'property': 'P10632', 'value': 'Q6788387'}, {'id': 'Q654291', 'type': 'wikibase-entityid', 'numeric-id': 654291, 'entity-type': 'item', 'property': 'P39'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 654291, 'property': 'P39', 'id': 'Q654291'}, {'id': 'Q654291', 'entity-type': 'item', 'property': 'P39', 'numeric-id': 654291, 'type': 'wikibase-entityid'}, {'numeric-id': 654291, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P39', 'id': 'Q654291'}, {'numeric-id': 654291, 'property': 'P39', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q654291'}, {'numeric-id': 654291, 'property': 'P39', 'id': 'Q654291', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P39', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q65494724', 'numeric-id': 65494724}, {'id': 'Q65494714', 'entity-type': 'item', 'property': 'P39', 'numeric-id': 65494714, 'type': 'wikibase-entityid'}), 'title': 'Q6788387'}
{'type': 'item', 'id': 'Q6788451', 'labels': (('en', 'Matt Carson'),), 'descriptions': (('en', 'American baseball player'),), 'aliases': (('en', 'Matthew Reese Carson'),), 'sitelinks': (('commonswiki', 'Category:Matt Carson (baseball)', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd8\xaa \xd9\x83\xd8\xa7\xd8\xb1\xd8\xb3\xd9\x88\xd9\x86', None), ('enwiki', 'Matt Carson (baseball)', None), ('arwiki', '\xd9\x85\xd8\xa7\xd8\xaa \xd9\x83\xd8\xa7\xd8\xb1\xd8\xb3\xd9\x88\xd9\x86 (\xd9\x84\xd8\xa7\xd8\xb9\xd8\xa8 \xd9\x83\xd8\xb1\xd8\xa9 \xd9\x82\xd8\xa7\xd8\xb9\xd8\xaf\xd8\xa9)', None)), 'claims': ({'id': 'Q5', 'numeric-id': 5, 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P569', 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'time': '+1981-07-01T00:00:00Z', 'timezone': 0, 'before': 0, 'type': 'time'}, {'type': 'string', 'property': 'P18', 'value': 'Matt Carson baseball.jpg'}, {'property': 'P373', 'type': 'string', 'value': 'Matt Carson (baseball)'}, {'property': 'P69', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q332498', 'numeric-id': 332498}, {'numeric-id': 8060142, 'entity-type': 'item', 'id': 'Q8060142', 'property': 'P69', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q15079696', 'numeric-id': 15079696, 'property': 'P734'}, {'id': 'Q5369', 'numeric-id': 5369, 'entity-type': 'item', 'property': 'P641', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'property': 'P118', 'numeric-id': 1163715, 'id': 'Q1163715', 'entity-type': 'item'}, {'numeric-id': 268873, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q268873', 'property': 'P19'}, {'numeric-id': 3526064, 'property': 'P54', 'entity-type': 'item', 'id': 'Q3526064', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q2184204', 'numeric-id': 2184204, 'type': 'wikibase-entityid', 'property': 'P54'}, {'id': 'Q1966948', 'entity-type': 'item', 'property': 'P54', 'type': 'wikibase-entityid', 'numeric-id': 1966948}, {'property': 'P54', 'id': 'Q642553', 'numeric-id': 642553, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'numeric-id': 604879, 'property': 'P54', 'entity-type': 'item', 'id': 'Q604879'}, {'numeric-id': 504339, 'id': 'Q504339', 'entity-type': 'item', 'property': 'P54', 'type': 'wikibase-entityid'}, {'id': 'Q16151408', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P54', 'numeric-id': 16151408}, {'entity-type': 'item', 'property': 'P106', 'type': 'wikibase-entityid', 'id': 'Q10871364', 'numeric-id': 10871364}, {'entity-type': 'item', 'numeric-id': 30, 'id': 'Q30', 'type': 'wikibase-entityid', 'property': 'P27'}, {'entity-type': 'item', 'id': 'Q6581097', 'type': 'wikibase-entityid', 'numeric-id': 6581097, 'property': 'P21'}, {'property': 'P735', 'entity-type': 'item', 'id': 'Q1158973', 'numeric-id': 1158973, 'type': 'wikibase-entityid'}, {'property': 'P413', 'type': 'wikibase-entityid', 'numeric-id': 1142885, 'entity-type': 'item', 'id': 'Q1142885'}), 'title': 'Q6788451'}
{'type': 'item', 'id': 'Q6788469', 'labels': (('en', 'Matt Cepicky'),), 'descriptions': (('en', 'American baseball player'),), 'aliases': (('en', 'Matthew William Cepicky'),), 'sitelinks': (('enwiki', 'Matt Cepicky', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd8\xaa \xd8\xb3\xd9\x8a\xd9\xbe\xd9\x8a\xd9\x83\xd9\x89', None), ('commonswiki', 'Category:Matt Cepicky', None)), 'claims': ({'id': 'Q1149868', 'numeric-id': 1149868, 'property': 'P413', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'numeric-id': 5369, 'property': 'P641', 'entity-type': 'item', 'id': 'Q5369'}, {'type': 'string', 'value': 'Matt Cepicky', 'property': 'P373'}, {'before': 0, 'precision': 11, 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'type': 'time', 'property': 'P569', 'time': '+1977-11-10T00:00:00Z'}, {'property': 'P69', 'numeric-id': 7588928, 'type': 'wikibase-entityid', 'id': 'Q7588928', 'entity-type': 'item'}, {'id': 'Q6581097', 'entity-type': 'item', 'property': 'P21', 'numeric-id': 6581097, 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q38022', 'numeric-id': 38022, 'property': 'P19', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q1158973', 'property': 'P735', 'numeric-id': 1158973, 'type': 'wikibase-entityid'}, {'id': 'Q5', 'numeric-id': 5, 'entity-type': 'item', 'property': 'P31', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 1148233, 'type': 'wikibase-entityid', 'id': 'Q1148233', 'property': 'P54'}, {'entity-type': 'item', 'id': 'Q825838', 'property': 'P54', 'numeric-id': 825838, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'numeric-id': 20684830, 'id': 'Q20684830', 'property': 'P54', 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q10871364', 'property': 'P106', 'type': 'wikibase-entityid', 'numeric-id': 10871364}, {'entity-type': 'item', 'id': 'Q30', 'numeric-id': 30, 'property': 'P27', 'type': 'wikibase-entityid'}), 'title': 'Q6788469'}
{'type': 'item', 'id': 'Q6788904', 'labels': (('en', 'Matt King'),), 'descriptions': (('en', 'American musician'),), 'aliases': (), 'sitelinks': (('enwiki', 'Matt King (singer)', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd8\xaa \xd9\x83\xd9\x8a\xd9\x86\xd8\xac', None), ('arwiki', '\xd9\x85\xd8\xa7\xd8\xaa \xd9\x83\xd9\x8a\xd9\x86\xd8\xba (\xd9\x85\xd8\xba\xd9\x86\xd9\x8a)', None)), 'claims': ({'property': 'P264', 'type': 'wikibase-entityid', 'numeric-id': 202440, 'entity-type': 'item', 'id': 'Q202440'}, {'entity-type': 'item', 'property': 'P734', 'type': 'wikibase-entityid', 'id': 'Q535214', 'numeric-id': 535214}, {'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'time': '+1997-00-00T00:00:00Z', 'property': 'P2031', 'after': 0, 'before': 0, 'precision': 9}, {'id': 'Q1158973', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P735', 'numeric-id': 1158973}, {'numeric-id': 177220, 'type': 'wikibase-entityid', 'id': 'Q177220', 'entity-type': 'item', 'property': 'P106'}, {'property': 'P106', 'type': 'wikibase-entityid', 'id': 'Q753110', 'entity-type': 'item', 'numeric-id': 753110}, {'entity-type': 'item', 'id': 'Q83440', 'property': 'P136', 'type': 'wikibase-entityid', 'numeric-id': 83440}, {'value': 'http://mattking.com', 'property': 'P856', 'type': 'string'}, {'time': '+1966-09-28T00:00:00Z', 'after': 0, 'type': 'time', 'property': 'P569', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0, 'timezone': 0, 'precision': 11}, {'type': 'wikibase-entityid', 'numeric-id': 5, 'id': 'Q5', 'entity-type': 'item', 'property': 'P31'}, {'numeric-id': 17172850, 'property': 'P1303', 'id': 'Q17172850', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'numeric-id': 30, 'type': 'wikibase-entityid', 'property': 'P27', 'entity-type': 'item', 'id': 'Q30'}, {'numeric-id': 648501, 'entity-type': 'item', 'property': 'P19', 'id': 'Q648501', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'numeric-id': 6581097, 'entity-type': 'item', 'property': 'P21', 'id': 'Q6581097'}), 'title': 'Q6788904'}
{'type': 'item', 'id': 'Q6788986', 'labels': (('en', 'Matt Lucas'),), 'descriptions': (('en', 'American singer, drummer, and songwriter'),), 'aliases': (), 'sitelinks': (('arwiki', '\xd9\x85\xd8\xa7\xd8\xaa \xd9\x84\xd9\x88\xd9\x83\xd8\xa7\xd8\xb3 (\xd9\x85\xd8\xba\xd9\x86\xd9\x8a)', None), ('enwiki', 'Matt Lucas (singer)', None)), 'claims': ({'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 7749, 'property': 'P136', 'id': 'Q7749'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q1158973', 'property': 'P735', 'numeric-id': 1158973}, {'numeric-id': 6581097, 'entity-type': 'item', 'property': 'P21', 'type': 'wikibase-entityid', 'id': 'Q6581097'}, {'entity-type': 'item', 'id': 'Q1873014', 'numeric-id': 1873014, 'property': 'P734', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q177220', 'type': 'wikibase-entityid', 'numeric-id': 177220, 'property': 'P106'}, {'property': 'P31', 'entity-type': 'item', 'id': 'Q5', 'type': 'wikibase-entityid', 'numeric-id': 5}, {'entity-type': 'item', 'numeric-id': 30, 'id': 'Q30', 'type': 'wikibase-entityid', 'property': 'P27'}, {'numeric-id': 16563, 'type': 'wikibase-entityid', 'id': 'Q16563', 'entity-type': 'item', 'property': 'P19'}, {'entity-type': 'item', 'property': 'P1303', 'type': 'wikibase-entityid', 'numeric-id': 17172850, 'id': 'Q17172850'}, {'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'type': 'time', 'before': 0, 'precision': 9, 'property': 'P2031', 'time': '+1955-00-00T00:00:00Z'}, {'precision': 11, 'time': '+1935-07-19T00:00:00Z', 'type': 'time', 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'timezone': 0, 'after': 0}, {'property': 'P18', 'value': 'Matt Lucas.jpg', 'type': 'string'}), 'title': 'Q6788986'}
{'type': 'item', 'id': 'Q6789087', 'labels': (('en', 'Matt Moore'),), 'descriptions': (('en', 'Australian basketball player'), ('en-g', 'Australian basketball player'), ('en-ca', 'Australian basketball player')), 'aliases': (), 'sitelinks': (('enwiki', 'Matt Moore (basketball)', None),), 'claims': ({'numeric-id': 6581097, 'entity-type': 'item', 'id': 'Q6581097', 'type': 'wikibase-entityid', 'property': 'P21'}, {'entity-type': 'item', 'numeric-id': 5, 'type': 'wikibase-entityid', 'id': 'Q5', 'property': 'P31'}, {'property': 'P27', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q408', 'numeric-id': 408}, {'property': 'P106', 'id': 'Q3665646', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 3665646}, {'property': 'P641', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q5372', 'numeric-id': 5372}, {'entity-type': 'item', 'numeric-id': 1158973, 'property': 'P735', 'type': 'wikibase-entityid', 'id': 'Q1158973'}, {'id': 'Q10588869', 'property': 'P734', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 10588869}, {'type': 'time', 'precision': 9, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1972-01-01T00:00:00Z', 'property': 'P569', 'before': 0, 'timezone': 0, 'after': 0}), 'title': 'Q6789087'}
{'type': 'item', 'id': 'Q6789294', 'labels': (('en-g', 'Matt Schmidt'), ('en', 'Matt Schmidt'), ('en-ca', 'Matt Schmidt')), 'descriptions': (('en', 'American soccer player'),), 'aliases': (), 'sitelinks': (('enwiki', 'Matt Schmidt', None), ('arwiki', '\xd9\x85\xd8\xa7\xd8\xaa \xd8\xb4\xd9\x85\xd9\x8a\xd8\xaa', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd8\xaa \xd8\xb4\xd9\x85\xd9\x8a\xd8\xaa', None)), 'claims': ({'entity-type': 'item', 'property': 'P1532', 'numeric-id': 30, 'type': 'wikibase-entityid', 'id': 'Q30'}, {'time': '+1979-06-05T00:00:00Z', 'type': 'time', 'timezone': 0, 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'after': 0, 'precision': 11}, {'entity-type': 'item', 'id': 'Q336286', 'property': 'P413', 'type': 'wikibase-entityid', 'numeric-id': 336286}, {'id': 'Q193592', 'entity-type': 'item', 'property': 'P413', 'type': 'wikibase-entityid', 'numeric-id': 193592}, {'id': 'Q5', 'property': 'P31', 'numeric-id': 5, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P21', 'id': 'Q6581097', 'numeric-id': 6581097}, {'property': 'P69', 'numeric-id': 49112, 'entity-type': 'item', 'id': 'Q49112', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'numeric-id': 937857, 'property': 'P106', 'id': 'Q937857', 'entity-type': 'item'}, {'property': 'P19', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q37836', 'numeric-id': 37836}, {'property': 'P641', 'type': 'wikibase-entityid', 'numeric-id': 2736, 'id': 'Q2736', 'entity-type': 'item'}, {'id': 'Q1158973', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 1158973, 'property': 'P735'}, {'type': 'wikibase-entityid', 'id': 'Q1542713', 'entity-type': 'item', 'numeric-id': 1542713, 'property': 'P54'}, {'entity-type': 'item', 'id': 'Q3566764', 'numeric-id': 3566764, 'property': 'P54', 'type': 'wikibase-entityid'}, {'property': 'P54', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q1542713', 'numeric-id': 1542713}, {'id': 'Q105616661', 'numeric-id': 105616661, 'property': 'P54', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P27', 'type': 'wikibase-entityid', 'numeric-id': 30, 'entity-type': 'item', 'id': 'Q30'}, {'id': 'Q15240355', 'numeric-id': 15240355, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P734'}), 'title': 'Q6789294'}
{'type': 'item', 'id': 'Q6789377', 'labels': (('en', 'Matt Spear'),), 'descriptions': (('en', 'American soccer player-coach'),), 'aliases': (('en', 'Matthew Spear'),), 'sitelinks': (('arzwiki', '\xd9\x85\xd8\xa7\xd8\xaa \xd8\xb3\xd9\xbe\xd8\xa7\xd9\x8a\xd8\xb1', None), ('enwiki', 'Matt Spear', None), ('arwiki', '\xd9\x85\xd8\xa7\xd8\xaa \xd8\xb3\xd8\xa8\xd9\x8a\xd8\xb1', None)), 'claims': ({'id': 'Q937857', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P106', 'numeric-id': 937857}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P106', 'numeric-id': 628099, 'id': 'Q628099'}, {'time': '+1970-12-02T00:00:00Z', 'before': 0, 'property': 'P569', 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'timezone': 0, 'type': 'time'}, {'property': 'P19', 'type': 'wikibase-entityid', 'id': 'Q49227', 'numeric-id': 49227, 'entity-type': 'item'}, {'id': 'Q193592', 'numeric-id': 193592, 'type': 'wikibase-entityid', 'property': 'P413', 'entity-type': 'item'}, {'numeric-id': 1158973, 'type': 'wikibase-entityid', 'property': 'P735', 'id': 'Q1158973', 'entity-type': 'item'}, {'id': 'Q1784644', 'entity-type': 'item', 'numeric-id': 1784644, 'property': 'P54', 'type': 'wikibase-entityid'}, {'id': 'Q24436204', 'numeric-id': 24436204, 'property': 'P54', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P1532', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q30', 'numeric-id': 30}, {'numeric-id': 5470648, 'property': 'P69', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q5470648'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 30, 'property': 'P27', 'id': 'Q30'}, {'numeric-id': 2736, 'property': 'P641', 'id': 'Q2736', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'numeric-id': 5, 'type': 'wikibase-entityid', 'property': 'P31', 'entity-type': 'item', 'id': 'Q5'}, {'id': 'Q15614654', 'property': 'P734', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 15614654}, {'type': 'wikibase-entityid', 'numeric-id': 6581097, 'property': 'P21', 'id': 'Q6581097', 'entity-type': 'item'}), 'title': 'Q6789377'}
{'type': 'item', 'id': 'Q6789379', 'labels': (('en', 'Suterilla julieae'),), 'descriptions': (('en', 'species of mollusc'),), 'aliases': (), 'sitelinks': (('nlwiki', 'Suterilla julieae', None), ('cebwiki', 'Suterilla julieae', None), ('enwiki', 'Suterilla julieae', None), ('viwiki', 'Suterilla julieae', None)), 'claims': ({'id': 'Q7432', 'property': 'P105', 'type': 'wikibase-entityid', 'numeric-id': 7432, 'entity-type': 'item'}, {'property': 'P171', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 7649930, 'id': 'Q7649930'}, {'text': 'S. julieae', 'property': 'P1813', 'language': 'mul', 'type': 'monolingualtext'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P31', 'id': 'Q16521', 'numeric-id': 16521}, {'property': 'P10585', 'type': 'string', 'value': '53HT7'}, {'property': 'P225', 'value': 'Suterilla julieae', 'type': 'string'}), 'title': 'Q6789379'}
{'type': 'item', 'id': 'Q6789418', 'labels': (('en-ca', 'Matt Tebbutt'), ('en', 'Matt Tebbutt'), ('en-g', 'Matt Tebbutt')), 'descriptions': (('en-g', 'British chef'), ('en', 'British chef'), ('en-ca', 'British chef')), 'aliases': (('en', 'Matthew Charles Tebbutt'),), 'sitelinks': (('fawiki', '\xd9\x85\xd8\xaa \xd8\xaa\xdb\x8c\xd8\xa8\xd8\xaa', None), ('enwiki', 'Matt Tebbutt', None)), 'claims': ({'id': 'Q7370787', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 7370787, 'property': 'P69'}, {'property': 'P569', 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'time': '+1973-12-24T00:00:00Z', 'before': 0, 'after': 0, 'precision': 11}, {'entity-type': 'item', 'id': 'Q3499072', 'numeric-id': 3499072, 'type': 'wikibase-entityid', 'property': 'P106'}, {'numeric-id': 947873, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P106', 'id': 'Q947873'}, {'type': 'wikibase-entityid', 'id': 'Q145', 'numeric-id': 145, 'entity-type': 'item', 'property': 'P27'}, {'property': 'P19', 'id': 'Q64116', 'numeric-id': 64116, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q1860', 'entity-type': 'item', 'numeric-id': 1860, 'property': 'P103'}, {'type': 'quantity', 'unit': '1', 'property': 'P8687', 'amount': '+26875'}, {'type': 'quantity', 'property': 'P8687', 'amount': '+33948', 'unit': '1'}, {'property': 'P8687', 'type': 'quantity', 'amount': '+35842', 'unit': '1'}, {'id': 'Q1158973', 'property': 'P735', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 1158973}, {'entity-type': 'item', 'id': 'Q1860', 'type': 'wikibase-entityid', 'numeric-id': 1860, 'property': 'P1412'}, {'property': 'P21', 'type': 'wikibase-entityid', 'id': 'Q6581097', 'numeric-id': 6581097, 'entity-type': 'item'}, {'type': 'string', 'value': 'matt_tebbutt', 'property': 'P2002'}, {'type': 'wikibase-entityid', 'property': 'P734', 'entity-type': 'item', 'id': 'Q36924307', 'numeric-id': 36924307}, {'entity-type': 'item', 'id': 'Q5', 'numeric-id': 5, 'property': 'P31', 'type': 'wikibase-entityid'}), 'title': 'Q6789418'}
{'type': 'item', 'id': 'Q6789507', 'labels': (('en', 'Dereler'), ('en-ca', 'Dereler'), ('en-g', 'Dereler')), 'descriptions': (('en', 'village in Bafra, Samsun, Turkey'),), 'aliases': (), 'sitelinks': (('viwiki', 'Dereler, Bafra', None), ('ttwiki', '\xd0\x94\xd0\xb5\xd1\x80\xd0\xb5\xd0\xbb\xd0\xb5\xd1\x80 (\xd0\x91\xd0\xb0\xd1\x84\xd1\x80\xd0\xb0)', None), ('cewiki', '\xd0\x94\xd0\xb5\xd1\x80\xd0\xb5\xd0\xbb\xd0\xb5\xd1\x80 (\xd0\x91\xd0\xb0\xd1\x84\xd1\x80\xd0\xb0)', None), ('trwiki', 'Dereler, Bafra', None)), 'claims': ({'type': 'wikibase-entityid', 'id': 'Q123705', 'property': 'P31', 'entity-type': 'item', 'numeric-id': 123705}, {'property': 'P17', 'entity-type': 'item', 'numeric-id': 43, 'type': 'wikibase-entityid', 'id': 'Q43'}, {'entity-type': 'item', 'property': 'P131', 'numeric-id': 799805, 'type': 'wikibase-entityid', 'id': 'Q799805'}), 'title': 'Q6789507'}
{'type': 'item', 'id': 'Q6789645', 'labels': (('en', 'Matteo Barbini'),), 'descriptions': (('en', 'Italian footballer'),), 'aliases': (), 'sitelinks': (('enwiki', 'Matteo Barbini (footballer)', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd8\xaa\xd9\x8a\xd9\x88 \xd8\xa8\xd8\xa7\xd8\xb1\xd8\xa8\xd9\x8a\xd9\x86\xd9\x89', None), ('fawiki', '\xd9\x85\xd8\xaa\xd8\xa6\xd9\x88 \xd8\xa8\xd8\xa7\xd8\xb1\xd8\xa8\xdb\x8c\xd9\x86\xdb\x8c (\xd8\xa8\xd8\xa7\xd8\xb2\xdb\x8c\xda\xa9\xd9\x86 \xd9\x81\xd9\x88\xd8\xaa\xd8\xa8\xd8\xa7\xd9\x84)', None), ('huwiki', 'Matteo Barbini', None)), 'claims': ({'id': 'Q5', 'entity-type': 'item', 'numeric-id': 5, 'type': 'wikibase-entityid', 'property': 'P31'}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1991-01-25T00:00:00Z', 'property': 'P569', 'timezone': 0, 'precision': 11, 'after': 0, 'before': 0, 'type': 'time'}, {'id': 'Q10880598', 'numeric-id': 10880598, 'property': 'P735', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P1412', 'id': 'Q652', 'entity-type': 'item', 'numeric-id': 652, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'property': 'P19', 'id': 'Q641', 'entity-type': 'item', 'numeric-id': 641}, {'entity-type': 'item', 'numeric-id': 6581097, 'type': 'wikibase-entityid', 'id': 'Q6581097', 'property': 'P21'}, {'entity-type': 'item', 'property': 'P734', 'type': 'wikibase-entityid', 'numeric-id': 21450816, 'id': 'Q21450816'}, {'property': 'P106', 'type': 'wikibase-entityid', 'id': 'Q937857', 'numeric-id': 937857, 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'numeric-id': 193592, 'id': 'Q193592', 'property': 'P413', 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q3460943', 'property': 'P54', 'numeric-id': 3460943, 'type': 'wikibase-entityid'}, {'property': 'P54', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q1543', 'numeric-id': 1543}, {'id': 'Q38', 'entity-type': 'item', 'numeric-id': 38, 'property': 'P27', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q2736', 'property': 'P641', 'numeric-id': 2736}), 'title': 'Q6789645'}
{'type': 'item', 'id': 'Q6789758', 'labels': (('en', 'Matters of Honor'),), 'descriptions': (('en', 'episode of Babylon 5 (S3 E1)'),), 'aliases': (), 'sitelinks': (('enwiki', 'Matters of Honor (Babylon 5)', ('Q70893996',)),), 'claims': ({'numeric-id': 1860, 'type': 'wikibase-entityid', 'id': 'Q1860', 'entity-type': 'item', 'property': 'P364'}, {'property': 'P57', 'numeric-id': 12232306, 'id': 'Q12232306', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q5166583', 'entity-type': 'item', 'property': 'P156', 'numeric-id': 5166583, 'type': 'wikibase-entityid'}, {'text': 'Matters of Honor', 'property': 'P1476', 'language': 'en', 'type': 'monolingualtext'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P4908', 'id': 'Q1528642', 'numeric-id': 1528642}, {'entity-type': 'item', 'numeric-id': 21191270, 'id': 'Q21191270', 'property': 'P31', 'type': 'wikibase-entityid'}, {'id': 'Q126941', 'numeric-id': 126941, 'property': 'P58', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'after': 0, 'before': 0, 'precision': 11, 'property': 'P577', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'time': '+1995-11-06T00:00:00Z', 'type': 'time'}, {'type': 'wikibase-entityid', 'property': 'P179', 'id': 'Q210146', 'entity-type': 'item', 'numeric-id': 210146}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q7733209', 'property': 'P155', 'numeric-id': 7733209}), 'title': 'Q6789758'}
{'type': 'item', 'id': 'Q6790131', 'labels': (('en', 'Matthew Barrett'),), 'descriptions': (('en', 'Irish-Canadian banker'),), 'aliases': (('en', 'Matthew William Barrett'),), 'sitelinks': (('enwiki', 'Matthew Barrett (banker)', None),), 'claims': ({'numeric-id': 5, 'property': 'P31', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q5'}, {'entity-type': 'item', 'numeric-id': 49126, 'id': 'Q49126', 'property': 'P69', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q13371', 'property': 'P69', 'type': 'wikibase-entityid', 'numeric-id': 13371}, {'numeric-id': 6581097, 'id': 'Q6581097', 'property': 'P21', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'numeric-id': 4927231, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P735', 'id': 'Q4927231'}, {'timezone': 0, 'after': 0, 'before': 0, 'time': '+1944-09-20T00:00:00Z', 'precision': 11, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'type': 'time'}, {'entity-type': 'item', 'numeric-id': 431890, 'property': 'P734', 'type': 'wikibase-entityid', 'id': 'Q431890'}, {'property': 'P19', 'id': 'Q184469', 'type': 'wikibase-entityid', 'numeric-id': 184469, 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'numeric-id': 15278116, 'id': 'Q15278116', 'entity-type': 'item', 'property': 'P166'}, {'numeric-id': 27, 'id': 'Q27', 'property': 'P27', 'entity-type': 'item', 'type': 'wikibase-entityid'}), 'title': 'Q6790131'}
{'type': 'item', 'id': 'Q6790174', 'labels': (('en-ca', 'Matthew Blinkhorn'), ('en', 'Matthew Blinkhorn'), ('en-g', 'Matthew Blinkhorn')), 'descriptions': (('en', 'British footballer (born 1985)'),), 'aliases': (), 'sitelinks': (('commonswiki', 'Category:Matthew Blinkhorn', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd8\xaa\xd8\xab\xd9\x8a\xd9\x88 \xd8\xa8\xd9\x84\xd9\x8a\xd9\x86\xd8\xae\xd9\x88\xd8\xb1\xd9\x86', None), ('enwiki', 'Matthew Blinkhorn', None), ('fawiki', '\xd9\x85\xd8\xaa\xdb\x8c\xd9\x88 \xd8\xa8\xd9\x84\xdb\x8c\xd9\x86 \xd9\x87\xd9\x88\xd8\xb1\xd9\x86', None)), 'claims': ({'numeric-id': 1860, 'id': 'Q1860', 'entity-type': 'item', 'property': 'P1412', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 4927231, 'property': 'P735', 'type': 'wikibase-entityid', 'id': 'Q4927231'}, {'entity-type': 'item', 'id': 'Q48944', 'property': 'P54', 'numeric-id': 48944, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 19449, 'property': 'P54', 'id': 'Q19449'}, {'type': 'wikibase-entityid', 'id': 'Q244874', 'numeric-id': 244874, 'entity-type': 'item', 'property': 'P54'}, {'numeric-id': 18520, 'entity-type': 'item', 'id': 'Q18520', 'property': 'P54', 'type': 'wikibase-entityid'}, {'id': 'Q18517', 'property': 'P54', 'type': 'wikibase-entityid', 'numeric-id': 18517, 'entity-type': 'item'}, {'numeric-id': 48954, 'entity-type': 'item', 'id': 'Q48954', 'type': 'wikibase-entityid', 'property': 'P54'}, {'numeric-id': 19573, 'type': 'wikibase-entityid', 'id': 'Q19573', 'entity-type': 'item', 'property': 'P54'}, {'id': 'Q18280', 'numeric-id': 18280, 'property': 'P54', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q48944', 'numeric-id': 48944, 'property': 'P54', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'string', 'property': 'P18', 'value': 'Matthew Blinkhorn.png'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q2736', 'property': 'P641', 'numeric-id': 2736}, {'entity-type': 'item', 'property': 'P31', 'numeric-id': 5, 'type': 'wikibase-entityid', 'id': 'Q5'}, {'entity-type': 'item', 'id': 'Q280658', 'numeric-id': 280658, 'property': 'P413', 'type': 'wikibase-entityid'}, {'before': 0, 'timezone': 0, 'precision': 11, 'type': 'time', 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'time': '+1985-03-02T00:00:00Z'}, {'entity-type': 'item', 'id': 'Q937857', 'numeric-id': 937857, 'property': 'P106', 'type': 'wikibase-entityid'}, {'numeric-id': 6581097, 'entity-type': 'item', 'id': 'Q6581097', 'property': 'P21', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 170377, 'property': 'P19', 'type': 'wikibase-entityid', 'id': 'Q170377'}, {'numeric-id': 145, 'property': 'P27', 'entity-type': 'item', 'id': 'Q145', 'type': 'wikibase-entityid'}, {'value': 'Matthew Blinkhorn', 'type': 'string', 'property': 'P373'}), 'title': 'Q6790174'}
{'type': 'item', 'id': 'Q6790346', 'labels': (('en', 'Matthew Cotes Wyatt'),), 'descriptions': (('en', 'English artist (1777-1862)'),), 'aliases': (('en', 'M.w Wyatt'), ('en', 'M Wyatt'), ('en', 'MW[yatt]')), 'sitelinks': (('commonswiki', 'Category:Matthew Cotes Wyatt', None), ('frwiki', 'Matthew Cotes Wyatt', None), ('enwiki', 'Matthew Cotes Wyatt', None)), 'claims': ({'time': '+1862-01-03T00:00:00Z', 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P570', 'timezone': 0, 'after': 0, 'precision': 11, 'before': 0}, {'numeric-id': 4927231, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P735', 'id': 'Q4927231'}, {'property': 'P5008', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q104694359', 'numeric-id': 104694359}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 533697, 'id': 'Q533697', 'property': 'P119'}, {'property': 'P1442', 'value': 'Wyatt family vault.jpg', 'type': 'string'}, {'type': 'wikibase-entityid', 'numeric-id': 270920, 'entity-type': 'item', 'property': 'P69', 'id': 'Q270920'}, {'property': 'P69', 'type': 'wikibase-entityid', 'id': 'Q192088', 'numeric-id': 192088, 'entity-type': 'item'}, {'type': 'string', 'value': 'Matthew Cotes Wyatt', 'property': 'P1472'}, {'property': 'P10882', 'type': 'string', 'value': '184121'}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'type': 'time', 'time': '+1800-01-01T00:00:00Z', 'timezone': 0, 'property': 'P2031', 'before': 0, 'precision': 9}, {'id': 'Q5', 'entity-type': 'item', 'numeric-id': 5, 'type': 'wikibase-entityid', 'property': 'P31'}, {'property': 'P10518', 'type': 'string', 'value': '110872'}, {'numeric-id': 15987216, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P1343', 'id': 'Q15987216'}, {'entity-type': 'item', 'id': 'Q602358', 'numeric-id': 602358, 'type': 'wikibase-entityid', 'property': 'P1343'}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 9, 'timezone': 0, 'type': 'time', 'before': 0, 'time': '+1777-01-01T00:00:00Z', 'property': 'P569', 'after': 0}, {'value': 'Matthew Cotes Wyatt', 'property': 'P373', 'type': 'string'}, {'entity-type': 'item', 'property': 'P20', 'numeric-id': 84, 'id': 'Q84', 'type': 'wikibase-entityid'}, {'property': 'P7704', 'value': 'agent/base/16212', 'type': 'string'}, {'id': 'Q84', 'numeric-id': 84, 'entity-type': 'item', 'property': 'P937', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 6581097, 'id': 'Q6581097', 'property': 'P21', 'type': 'wikibase-entityid'}, {'numeric-id': 71887839, 'id': 'Q71887839', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P7763'}, {'property': 'P9493', 'type': 'wikibase-entityid', 'numeric-id': 5503390, 'entity-type': 'item', 'id': 'Q5503390'}, {'type': 'wikibase-entityid', 'id': 'Q679527', 'numeric-id': 679527, 'property': 'P6379', 'entity-type': 'item'}, {'numeric-id': 2983474, 'property': 'P6379', 'entity-type': 'item', 'id': 'Q2983474', 'type': 'wikibase-entityid'}, {'id': 'Q213322', 'property': 'P6379', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 213322}, {'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P2032', 'time': '+1849-01-01T00:00:00Z', 'before': 0, 'type': 'time', 'after': 0, 'precision': 9}, {'id': 'Q84', 'entity-type': 'item', 'property': 'P19', 'numeric-id': 84, 'type': 'wikibase-entityid'}, {'property': 'P106', 'numeric-id': 483501, 'entity-type': 'item', 'id': 'Q483501', 'type': 'wikibase-entityid'}, {'numeric-id': 1281618, 'property': 'P106', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q1281618'}, {'entity-type': 'item', 'property': 'P106', 'type': 'wikibase-entityid', 'numeric-id': 1028181, 'id': 'Q1028181'}), 'title': 'Q6790346'}
{'type': 'item', 'id': 'Q6790461', 'labels': (('en', 'Matthew Elliott'),), 'descriptions': (('en', 'English political strategist'),), 'aliases': (('en', 'Matthew Jim Elliott'),), 'sitelinks': (('frwiki', 'Matthew Elliott (lobbyiste et strat\xc3\xa8ge politique)', None), ('enwiki', 'Matthew Elliott (political strategist)', None)), 'claims': ({'id': 'Q39121', 'type': 'wikibase-entityid', 'numeric-id': 39121, 'entity-type': 'item', 'property': 'P19'}, {'property': 'P26', 'id': 'Q105528790', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 105528790}, {'timezone': 0, 'precision': 11, 'time': '+1978-02-12T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'property': 'P569', 'after': 0, 'before': 0}, {'property': 'P735', 'type': 'wikibase-entityid', 'numeric-id': 4927231, 'entity-type': 'item', 'id': 'Q4927231'}, {'numeric-id': 1860, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q1860', 'property': 'P1412'}, {'type': 'wikibase-entityid', 'property': 'P21', 'entity-type': 'item', 'numeric-id': 6581097, 'id': 'Q6581097'}, {'property': 'P734', 'entity-type': 'item', 'numeric-id': 21449521, 'type': 'wikibase-entityid', 'id': 'Q21449521'}, {'numeric-id': 5, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q5', 'property': 'P31'}, {'type': 'wikibase-entityid', 'numeric-id': 8125919, 'id': 'Q8125919', 'entity-type': 'item', 'property': 'P106'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P69', 'id': 'Q174570', 'numeric-id': 174570}, {'property': 'P69', 'id': 'Q6515975', 'entity-type': 'item', 'numeric-id': 6515975, 'type': 'wikibase-entityid'}, {'id': 'Q145', 'property': 'P27', 'type': 'wikibase-entityid', 'numeric-id': 145, 'entity-type': 'item'}, {'property': 'P10843', 'type': 'string', 'value': 'Matthew-Elliott'}), 'title': 'Q6790461'}
{'type': 'item', 'id': 'Q6790627', 'labels': (('en', 'Matthew Hall'),), 'descriptions': (('en', 'English cricketer (born 1981)'),), 'aliases': (('en', 'Matthew James Hall'),), 'sitelinks': (('tawiki', '\xe0\xae\xae\xe0\xaf\x87\xe0\xae\xa4\xe0\xaf\x8d\xe0\xae\xa4\xe0\xae\xbf\xe0\xae\xaf\xe0\xaf\x82 \xe0\xae\xb9\xe0\xae\xbe\xe0\xae\xb2\xe0\xaf\x8d', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd8\xab\xd9\x8a\xd9\x88 \xd9\x87\xd8\xa7\xd9\x84', None), ('arwiki', '\xd9\x85\xd8\xa7\xd8\xab\xd9\x8a\xd9\x88 \xd9\x87\xd8\xa7\xd9\x84', None), ('enwiki', 'Matthew Hall (cricketer)', None)), 'claims': ({'type': 'wikibase-entityid', 'numeric-id': 5375, 'id': 'Q5375', 'entity-type': 'item', 'property': 'P641'}, {'entity-type': 'item', 'numeric-id': 145, 'id': 'Q145', 'property': 'P27', 'type': 'wikibase-entityid'}, {'property': 'P19', 'entity-type': 'item', 'id': 'Q823600', 'numeric-id': 823600, 'type': 'wikibase-entityid'}, {'id': 'Q5261690', 'numeric-id': 5261690, 'property': 'P54', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'type': 'time', 'precision': 11, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1981-10-30T00:00:00Z', 'property': 'P569', 'timezone': 0, 'before': 0, 'after': 0}, {'numeric-id': 1860, 'entity-type': 'item', 'id': 'Q1860', 'property': 'P1412', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q12299841', 'numeric-id': 12299841, 'property': 'P106', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'property': 'P21', 'id': 'Q6581097', 'entity-type': 'item', 'numeric-id': 6581097}, {'entity-type': 'item', 'property': 'P735', 'type': 'wikibase-entityid', 'numeric-id': 4927231, 'id': 'Q4927231'}, {'id': 'Q5', 'type': 'wikibase-entityid', 'numeric-id': 5, 'entity-type': 'item', 'property': 'P31'}, {'type': 'wikibase-entityid', 'numeric-id': 1551523, 'id': 'Q1551523', 'entity-type': 'item', 'property': 'P734'}), 'title': 'Q6790627'}
{'type': 'item', 'id': 'Q6790801', 'labels': (('en', 'Matthew Kidd'),), 'descriptions': (('en', 'swimmer'),), 'aliases': (), 'sitelinks': (('eswiki', 'Matthew Kidd', None), ('enwiki', 'Matthew Kidd', None), ('nowiki', 'Matthew Kidd', None)), 'claims': ({'id': 'Q10843402', 'property': 'P106', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 10843402}, {'precision': 11, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'after': 0, 'property': 'P569', 'time': '+1979-10-27T00:00:00Z', 'before': 0, 'timezone': 0}, {'type': 'wikibase-entityid', 'numeric-id': 4927231, 'entity-type': 'item', 'id': 'Q4927231', 'property': 'P735'}, {'property': 'P27', 'id': 'Q145', 'type': 'wikibase-entityid', 'numeric-id': 145, 'entity-type': 'item'}, {'entity-type': 'item', 'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q5', 'numeric-id': 5}, {'numeric-id': 6581097, 'entity-type': 'item', 'property': 'P21', 'id': 'Q6581097', 'type': 'wikibase-entityid'}, {'property': 'P1412', 'id': 'Q1860', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 1860}, {'type': 'wikibase-entityid', 'numeric-id': 8558, 'entity-type': 'item', 'id': 'Q8558', 'property': 'P1344'}, {'numeric-id': 31920, 'entity-type': 'item', 'id': 'Q31920', 'property': 'P641', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'property': 'P69', 'id': 'Q5418959', 'entity-type': 'item', 'numeric-id': 5418959}), 'title': 'Q6790801'}
{'type': 'item', 'id': 'Q6790981', 'labels': (('en', 'Matthew Mixer'),), 'descriptions': (('en', 'English cricketer (born 1972)'),), 'aliases': (), 'sitelinks': (('enwiki', 'Matthew Mixer', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd8\xab\xd9\x8a\xd9\x88 \xd9\x85\xd9\x8a\xd9\x83\xd8\xb3\xd9\x8a\xd8\xb1', None)), 'claims': ({'entity-type': 'item', 'id': 'Q12299841', 'property': 'P106', 'type': 'wikibase-entityid', 'numeric-id': 12299841}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0, 'type': 'time', 'precision': 11, 'time': '+1972-12-09T00:00:00Z', 'timezone': 0, 'after': 0, 'property': 'P569'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 4927231, 'id': 'Q4927231', 'property': 'P735'}, {'property': 'P27', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q145', 'numeric-id': 145}, {'numeric-id': 5, 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q5'}, {'id': 'Q327168', 'numeric-id': 327168, 'property': 'P19', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P21', 'numeric-id': 6581097, 'entity-type': 'item', 'id': 'Q6581097', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q1860', 'entity-type': 'item', 'numeric-id': 1860, 'property': 'P1412'}, {'entity-type': 'item', 'id': 'Q5375', 'numeric-id': 5375, 'type': 'wikibase-entityid', 'property': 'P641'}), 'title': 'Q6790981'}
{'type': 'item', 'id': 'Q6791046', 'labels': (('en', 'Matthew Orr'),), 'descriptions': (('en', 'British businessman'),), 'aliases': (), 'sitelinks': (('enwiki', 'Matthew Orr', None),), 'claims': ({'type': 'wikibase-entityid', 'id': 'Q21453128', 'entity-type': 'item', 'numeric-id': 21453128, 'property': 'P734'}, {'type': 'wikibase-entityid', 'property': 'P21', 'entity-type': 'item', 'numeric-id': 6581097, 'id': 'Q6581097'}, {'type': 'wikibase-entityid', 'property': 'P27', 'entity-type': 'item', 'id': 'Q145', 'numeric-id': 145}, {'type': 'wikibase-entityid', 'property': 'P31', 'entity-type': 'item', 'id': 'Q5', 'numeric-id': 5}, {'timezone': 0, 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1962-01-01T00:00:00Z', 'type': 'time', 'property': 'P569', 'precision': 9, 'after': 0}, {'property': 'P735', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q4927231', 'numeric-id': 4927231}, {'property': 'P26', 'id': 'Q7659531', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 7659531}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 1860, 'property': 'P1412', 'id': 'Q1860'}, {'numeric-id': 145, 'property': 'P19', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q145'}), 'title': 'Q6791046'}
{'type': 'item', 'id': 'Q6791244', 'labels': (('en', 'Matthew Smith'),), 'descriptions': (('en', 'English cricketer (born 1990)'),), 'aliases': (), 'sitelinks': (('arwiki', '\xd9\x85\xd8\xa7\xd8\xab\xd9\x8a\xd9\x88 \xd8\xb3\xd9\x85\xd9\x8a\xd8\xab (\xd9\x84\xd8\xa7\xd8\xb9\xd8\xa8 \xd9\x83\xd8\xb1\xd9\x8a\xd9\x83\xd8\xaa)', None), ('enwiki', 'Matthew Smith (cricketer)', None)), 'claims': ({'property': 'P734', 'numeric-id': 1158446, 'id': 'Q1158446', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q1860', 'numeric-id': 1860, 'property': 'P1412', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 12299841, 'id': 'Q12299841', 'property': 'P106'}, {'time': '+1990-11-10T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'before': 0, 'property': 'P569', 'type': 'time', 'after': 0, 'timezone': 0}, {'type': 'wikibase-entityid', 'numeric-id': 5, 'property': 'P31', 'id': 'Q5', 'entity-type': 'item'}, {'id': 'Q6581097', 'numeric-id': 6581097, 'property': 'P21', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q145', 'property': 'P27', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 145}, {'id': 'Q4927231', 'entity-type': 'item', 'numeric-id': 4927231, 'type': 'wikibase-entityid', 'property': 'P735'}, {'entity-type': 'item', 'id': 'Q5375', 'numeric-id': 5375, 'type': 'wikibase-entityid', 'property': 'P641'}), 'title': 'Q6791244'}
{'type': 'item', 'id': 'Q6791570', 'labels': (('en', 'Matthias Lock'),), 'descriptions': (), 'aliases': (('en', 'Mathias Locke'), ('en', 'Matthis Locke'), ('en', 'Mathias Lock')), 'sitelinks': (('enwiki', 'Matthias Lock', None),), 'claims': ({'numeric-id': 5, 'type': 'wikibase-entityid', 'property': 'P31', 'entity-type': 'item', 'id': 'Q5'}, {'numeric-id': 145, 'id': 'Q145', 'type': 'wikibase-entityid', 'property': 'P27', 'entity-type': 'item'}, {'type': 'string', 'value': '166117', 'property': 'P10882'}, {'entity-type': 'item', 'numeric-id': 4927273, 'type': 'wikibase-entityid', 'property': 'P735', 'id': 'Q4927273'}, {'id': 'Q11455387', 'numeric-id': 11455387, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P106'}, {'entity-type': 'item', 'numeric-id': 731126, 'property': 'P6379', 'type': 'wikibase-entityid', 'id': 'Q731126'}, {'id': 'Q16872403', 'numeric-id': 16872403, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P734'}, {'id': 'Q6581097', 'numeric-id': 6581097, 'type': 'wikibase-entityid', 'property': 'P21', 'entity-type': 'item'}, {'numeric-id': 867541, 'property': 'P1343', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q867541'}, {'type': 'wikibase-entityid', 'numeric-id': 1860, 'property': 'P1412', 'id': 'Q1860', 'entity-type': 'item'}), 'title': 'Q6791570'}
{'type': 'item', 'id': 'Q6791641', 'labels': (('en', 'Matthieu Cotti\xc3\xa8re'),), 'descriptions': (('en', 'theologian'),), 'aliases': (('en', 'Matthieu Cottiere'),), 'sitelinks': (('enwiki', 'Matthieu Cotti\xc3\xa8re', None),), 'claims': ({'property': 'P10864', 'type': 'string', 'value': '61564'}, {'numeric-id': 1234713, 'property': 'P106', 'id': 'Q1234713', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q18091814', 'numeric-id': 18091814, 'property': 'P735', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q6581097', 'numeric-id': 6581097, 'entity-type': 'item', 'property': 'P21'}, {'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985786', 'before': 0, 'time': '+1581-00-00T00:00:00Z', 'type': 'time', 'precision': 9, 'property': 'P569', 'timezone': 0}, {'type': 'wikibase-entityid', 'numeric-id': 5, 'entity-type': 'item', 'id': 'Q5', 'property': 'P31'}, {'property': 'P570', 'timezone': 0, 'after': 0, 'time': '+1656-01-01T00:00:00Z', 'before': 0, 'precision': 9, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time'}, {'entity-type': 'item', 'id': 'Q23540', 'property': 'P140', 'type': 'wikibase-entityid', 'numeric-id': 23540}), 'title': 'Q6791641'}
{'type': 'item', 'id': 'Q6791666', 'labels': (('en', 'Matthildur \xc3\x9eorsteinsd\xc3\xb3ttir'),), 'descriptions': (('en', 'Paralympic sprinter'),), 'aliases': (('en', 'Matthildur Thorsteinsd\xc3\xb3ttir'), ('en', 'Matthildur Thorsteinsdottir')), 'sitelinks': (('enwiki', 'Matthildur \xc3\x9eorsteinsd\xc3\xb3ttir', None), ('commonswiki', 'Category:Matthildur Thorsteinsdottir', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd8\xaa\xd8\xab\xd9\x8a\xd9\x84\xd8\xaf\xd9\x88\xd8\xb1 \xd8\xaa\xd9\x87\xd9\x88\xd8\xb1\xd8\xb3\xd8\xaa\xd9\x8a\xd9\x86\xd8\xb3\xd8\xaf\xd9\x88\xd8\xaa\xd9\x8a\xd8\xb1', None), ('nowiki', 'Matthildur \xc3\x9eorsteinsd\xc3\xb3ttir', None)), 'claims': ({'entity-type': 'item', 'numeric-id': 5, 'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q5'}, {'id': 'Q189', 'property': 'P27', 'numeric-id': 189, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'numeric-id': 1764, 'type': 'wikibase-entityid', 'property': 'P19', 'entity-type': 'item', 'id': 'Q1764'}, {'property': 'P18', 'type': 'string', 'value': 'Matthildur Thorsteinsdottir - 2013 IPC Athletics World Championships.jpg'}, {'id': 'Q6581072', 'property': 'P21', 'entity-type': 'item', 'numeric-id': 6581072, 'type': 'wikibase-entityid'}, {'before': 0, 'time': '+1997-04-08T00:00:00Z', 'precision': 11, 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'type': 'time', 'property': 'P569'}, {'numeric-id': 11513337, 'property': 'P106', 'id': 'Q11513337', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P2003', 'type': 'string', 'value': 'matthildur-thorsteinsdottir'}, {'property': 'P1344', 'entity-type': 'item', 'numeric-id': 182798, 'type': 'wikibase-entityid', 'id': 'Q182798'}, {'type': 'wikibase-entityid', 'id': 'Q16422141', 'numeric-id': 16422141, 'property': 'P735', 'entity-type': 'item'}, {'entity-type': 'item', 'property': 'P641', 'type': 'wikibase-entityid', 'numeric-id': 1757181, 'id': 'Q1757181'}, {'value': 'Matthildur Thorsteinsdottir', 'type': 'string', 'property': 'P373'}), 'title': 'Q6791666'}
{'type': 'item', 'id': 'Q6791886', 'labels': (('en', 'r\xc5\xa1\xc4\x81d \xca\xbfbd al-lh al-\xc5\xa1\xc4\x81m\xc4\xa'),), 'descriptions': (), 'aliases': (('en', 'Sh\xc4\x81m\xc4\xab, Rash\xc4\x81d \xca\xbfAbd All\xc4\x81h'), ('en', '\xc5\xa0\xc4\x81m\xc4\xab, Ra\xc5\xa1\xc4\x81d \xca\xbfAbd All\xc4\x81h al-')), 'sitelinks': (('arwiki', '\xd8\xb1\xd8\xb4\xd8\xa7\xd8\xaf \xd8\xb9\xd8\xa8\xd8\xaf \xd8\xa7\xd9\x84\xd9\x84\xd9\x87 \xd8\xa7\xd9\x84\xd8\xb4\xd8\xa7\xd9\x85\xd9\x8a', None),), 'claims': ({'id': 'Q389735', 'entity-type': 'item', 'property': 'P509', 'type': 'wikibase-entityid', 'numeric-id': 389735}, {'entity-type': 'item', 'id': 'Q36180', 'numeric-id': 36180, 'property': 'P106', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q333634', 'numeric-id': 333634, 'property': 'P106'}, {'id': 'Q107566124', 'entity-type': 'item', 'numeric-id': 107566124, 'property': 'P800', 'type': 'wikibase-entityid'}, {'id': 'Q116600638', 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P800', 'numeric-id': 116600638}, {'property': 'P800', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q119154351', 'numeric-id': 119154351}, {'numeric-id': 120096269, 'id': 'Q120096269', 'entity-type': 'item', 'property': 'P800', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q120870505', 'entity-type': 'item', 'numeric-id': 120870505, 'property': 'P800'}, {'property': 'P569', 'time': '+1943-01-05T00:00:00Z', 'before': 0, 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'timezone': 0, 'type': 'time'}, {'entity-type': 'item', 'numeric-id': 2723670, 'property': 'P108', 'type': 'wikibase-entityid', 'id': 'Q2723670'}, {'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q5', 'numeric-id': 5}, {'property': 'P11496', 'value': '1140845216630254592', 'type': 'string'}, {'numeric-id': 6581097, 'type': 'wikibase-entityid', 'property': 'P21', 'entity-type': 'item', 'id': 'Q6581097'}, {'time': '+2006-10-14T00:00:00Z', 'after': 0, 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P570', 'type': 'time', 'timezone': 0, 'precision': 11}), 'title': 'Q6791886'}
{'type': 'item', 'id': 'Q6792638', 'labels': (('en', 'Maurangerfjord'),), 'descriptions': (('en', 'fjord in Norway'),), 'aliases': (), 'sitelinks': (('enwiki', 'Maurangerfjord', None), ('eswiki', 'Maurangerfjord', None)), 'claims': ({'entity-type': 'item', 'numeric-id': 20, 'property': 'P17', 'id': 'Q20', 'type': 'wikibase-entityid'}, {'id': 'Q45776', 'property': 'P31', 'entity-type': 'item', 'numeric-id': 45776, 'type': 'wikibase-entityid'}, {'numeric-id': 20, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P205', 'id': 'Q20'}), 'title': 'Q6792638'}
{'type': 'item', 'id': 'Q6792916', 'labels': (('en', 'Maurice Brooks'),), 'descriptions': (('en', 'American naturalist (1900-1993)'),), 'aliases': (('en', 'M.G.Brooks'), ('en', 'Maurice Graham Brooks')), 'sitelinks': (('enwiki', 'Maurice Brooks', None), ('specieswiki', 'Maurice Graham Brooks', None)), 'claims': ({'id': 'Q1472321', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 1472321, 'property': 'P735'}, {'property': 'P570', 'timezone': 0, 'before': 0, 'precision': 11, 'after': 0, 'time': '+1993-01-10T00:00:00Z', 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'numeric-id': 2374149, 'id': 'Q2374149', 'property': 'P106', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'after': 0, 'property': 'P569', 'time': '+1900-06-16T00:00:00Z', 'precision': 11, 'before': 0, 'timezone': 0, 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'id': 'Q6581097', 'entity-type': 'item', 'numeric-id': 6581097, 'property': 'P21', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'property': 'P69', 'id': 'Q230492', 'type': 'wikibase-entityid', 'numeric-id': 230492}, {'id': 'Q115376', 'numeric-id': 115376, 'property': 'P69', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'entity-type': 'item', 'numeric-id': 5, 'property': 'P31', 'id': 'Q5', 'type': 'wikibase-entityid'}, {'value': 'M.G.Brooks', 'property': 'P428', 'type': 'string'}, {'numeric-id': 1354011, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q1354011', 'property': 'P734'}), 'title': 'Q6792916'}
{'type': 'item', 'id': 'Q6792951', 'labels': (('en', 'Maurice Child'),), 'descriptions': (('en', 'British priest'),), 'aliases': (), 'sitelinks': (('enwiki', 'Maurice Child', None), ('lawiki', 'Mauritius Child', None)), 'claims': ({'id': 'Q1472321', 'property': 'P735', 'entity-type': 'item', 'numeric-id': 1472321, 'type': 'wikibase-entityid'}, {'after': 0, 'precision': 9, 'property': 'P569', 'before': 0, 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1884-01-01T00:00:00Z', 'type': 'time'}, {'entity-type': 'item', 'property': 'P31', 'type': 'wikibase-entityid', 'numeric-id': 5, 'id': 'Q5'}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 9, 'property': 'P570', 'time': '+1950-01-01T00:00:00Z', 'type': 'time', 'before': 0, 'after': 0, 'timezone': 0}, {'numeric-id': 3409375, 'entity-type': 'item', 'id': 'Q3409375', 'property': 'P106', 'type': 'wikibase-entityid'}, {'id': 'Q6423963', 'numeric-id': 6423963, 'property': 'P140', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P69', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 34433, 'id': 'Q34433'}, {'numeric-id': 6581097, 'property': 'P21', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q6581097'}, {'id': 'Q10954511', 'property': 'P734', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 10954511}), 'title': 'Q6792951'}
{'type': 'item', 'id': 'Q6793058', 'labels': (('en', 'Maurice Eustace'),), 'descriptions': (('en', 'Irish Jesuit'),), 'aliases': (), 'sitelinks': (('enwiki', 'Maurice Eustace (priest)', None),), 'claims': ({'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q6581097', 'numeric-id': 6581097, 'property': 'P21'}, {'property': 'P735', 'type': 'wikibase-entityid', 'numeric-id': 1472321, 'id': 'Q1472321', 'entity-type': 'item'}, {'id': 'Q36380', 'type': 'wikibase-entityid', 'numeric-id': 36380, 'entity-type': 'item', 'property': 'P611'}, {'type': 'wikibase-entityid', 'id': 'Q82955', 'entity-type': 'item', 'numeric-id': 82955, 'property': 'P106'}, {'property': 'P509', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q175111', 'numeric-id': 175111}, {'entity-type': 'item', 'numeric-id': 8454, 'id': 'Q8454', 'property': 'P1196', 'type': 'wikibase-entityid'}, {'property': 'P570', 'timezone': 0, 'after': 0, 'precision': 9, 'before': 0, 'time': '+1581-00-00T00:00:00Z', 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985786'}, {'entity-type': 'item', 'id': 'Q5', 'numeric-id': 5, 'property': 'P31', 'type': 'wikibase-entityid'}, {'property': 'P140', 'type': 'wikibase-entityid', 'numeric-id': 9592, 'id': 'Q9592', 'entity-type': 'item'}), 'title': 'Q6793058'}
{'type': 'item', 'id': 'Q6793020', 'labels': (('en', 'Maurice Dickson'),), 'descriptions': (('en', 'Scottish rugby union player (1882-1940)'),), 'aliases': (), 'sitelinks': (('urwiki', '\xd9\x85\xd9\x88\xd8\xb1\xd8\xb3 \xda\x88\xda\xa9\xd8\xb3\xd9\x86', None), ('enwiki', 'Maurice Dickson', None)), 'claims': ({'id': 'Q145', 'numeric-id': 145, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P27'}, {'type': 'wikibase-entityid', 'numeric-id': 174193, 'id': 'Q174193', 'property': 'P27', 'entity-type': 'item'}, {'precision': 11, 'timezone': 0, 'time': '+1940-01-10T00:00:00Z', 'before': 0, 'property': 'P570', 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time'}, {'id': 'Q1472321', 'property': 'P735', 'type': 'wikibase-entityid', 'numeric-id': 1472321, 'entity-type': 'item'}, {'entity-type': 'item', 'property': 'P54', 'numeric-id': 945016, 'type': 'wikibase-entityid', 'id': 'Q945016'}, {'id': 'Q2021090', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 2021090, 'property': 'P54'}, {'before': 0, 'precision': 11, 'property': 'P569', 'type': 'time', 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1882-01-02T00:00:00Z', 'timezone': 0}, {'property': 'P106', 'entity-type': 'item', 'id': 'Q12299841', 'numeric-id': 12299841, 'type': 'wikibase-entityid'}, {'property': 'P106', 'id': 'Q14089670', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 14089670}, {'property': 'P31', 'type': 'wikibase-entityid', 'numeric-id': 5, 'id': 'Q5', 'entity-type': 'item'}, {'id': 'Q6581097', 'property': 'P21', 'entity-type': 'item', 'numeric-id': 6581097, 'type': 'wikibase-entityid'}, {'numeric-id': 615838, 'entity-type': 'item', 'property': 'P166', 'type': 'wikibase-entityid', 'id': 'Q615838'}, {'numeric-id': 1860, 'id': 'Q1860', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P1412'}, {'id': 'Q5375', 'property': 'P641', 'entity-type': 'item', 'numeric-id': 5375, 'type': 'wikibase-entityid'}, {'id': 'Q82513', 'numeric-id': 82513, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P69'}, {'id': 'Q13584199', 'entity-type': 'item', 'property': 'P734', 'type': 'wikibase-entityid', 'numeric-id': 13584199}), 'title': 'Q6793020'}
{'type': 'item', 'id': 'Q6793275', 'labels': (('en', 'Maurice Larkin'),), 'descriptions': (('en', 'English historian'),), 'aliases': (), 'sitelinks': (('arwiki', '\xd9\x85\xd9\x88\xd8\xb1\xd9\x8a\xd8\xb3 \xd9\x84\xd8\xa7\xd8\xb1\xd9\x83\xd9\x86', None), ('arzwiki', '\xd9\x85\xd9\x88\xd8\xb1\xd9\x8a\xd8\xb3 \xd9\x84\xd8\xa7\xd8\xb1\xd9\x83\xd9\x86', None), ('frwiki', 'Maurice Larkin', None), ('enwiki', 'Maurice Larkin', None), ('bnwiki', '\xe0\xa6\xae\xe0\xa6\xb0\xe0\xa6\xbf\xe0\xa6\xb8 \xe0\xa6\xb2\xe0\xa6\xbe\xe0\xa6\xb0\xe0\xa6\x95\xe0\xa6\xbf\xe0\xa6\xa8', None)), 'claims': ({'id': 'Q6581097', 'numeric-id': 6581097, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P21'}, {'entity-type': 'item', 'id': 'Q1472321', 'type': 'wikibase-entityid', 'property': 'P735', 'numeric-id': 1472321}, {'numeric-id': 145, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q145', 'property': 'P27'}, {'property': 'P108', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 160302, 'id': 'Q160302'}, {'numeric-id': 192775, 'entity-type': 'item', 'id': 'Q192775', 'type': 'wikibase-entityid', 'property': 'P108'}, {'property': 'P108', 'type': 'wikibase-entityid', 'id': 'Q1516684', 'entity-type': 'item', 'numeric-id': 1516684}, {'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'property': 'P570', 'timezone': 0, 'before': 0, 'after': 0, 'time': '+2004-02-29T00:00:00Z'}, {'property': 'P10553', 'type': 'string', 'value': '699056543'}, {'value': '14334082', 'property': 'P11249', 'type': 'string'}, {'value': '20518', 'property': 'P11182', 'type': 'string'}, {'entity-type': 'item', 'id': 'Q332342', 'numeric-id': 332342, 'property': 'P69', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'property': 'P31', 'entity-type': 'item', 'numeric-id': 5, 'id': 'Q5'}, {'property': 'P1412', 'id': 'Q1860', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 1860}, {'before': 0, 'after': 0, 'precision': 11, 'property': 'P569', 'type': 'time', 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1932-08-12T00:00:00Z'}, {'numeric-id': 201788, 'entity-type': 'item', 'id': 'Q201788', 'property': 'P106', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q1622272', 'numeric-id': 1622272, 'property': 'P106'}), 'title': 'Q6793275'}
{'type': 'item', 'id': 'Q6793305', 'labels': (('en', 'Maurice Lister'),), 'descriptions': (('en-g', 'British academic'), ('en', 'British academic'), ('en-ca', 'British academic')), 'aliases': (), 'sitelinks': (('enwiki', 'Maurice Lister', None),), 'claims': ({'after': 0, 'time': '+2003-06-27T00:00:00Z', 'precision': 11, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'type': 'time', 'property': 'P570', 'before': 0}, {'property': 'P106', 'id': 'Q36180', 'entity-type': 'item', 'numeric-id': 36180, 'type': 'wikibase-entityid'}, {'property': 'P106', 'entity-type': 'item', 'numeric-id': 593644, 'id': 'Q593644', 'type': 'wikibase-entityid'}, {'numeric-id': 16872303, 'property': 'P734', 'id': 'Q16872303', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'precision': 11, 'time': '+1914-03-27T00:00:00Z', 'before': 0, 'property': 'P569', 'timezone': 0, 'type': 'time'}, {'property': 'P108', 'entity-type': 'item', 'id': 'Q13371', 'numeric-id': 13371, 'type': 'wikibase-entityid'}, {'property': 'P69', 'entity-type': 'item', 'id': 'Q81170', 'numeric-id': 81170, 'type': 'wikibase-entityid'}, {'id': 'Q61228', 'property': 'P69', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 61228}, {'entity-type': 'item', 'property': 'P31', 'numeric-id': 5, 'id': 'Q5', 'type': 'wikibase-entityid'}, {'property': 'P735', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 1472321, 'id': 'Q1472321'}, {'property': 'P21', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 6581097, 'id': 'Q6581097'}), 'title': 'Q6793305'}
{'type': 'item', 'id': 'Q6793309', 'labels': (('en', 'Maurice Loriaux'),), 'descriptions': (('en', 'American artist'),), 'aliases': (('en', 'Maurice Lucien Loriaux'),), 'sitelinks': (('enwiki', 'Maurice Loriaux', None), ('commonswiki', 'Category:Maurice Loriaux', None)), 'claims': ({'entity-type': 'item', 'id': 'Q5', 'type': 'wikibase-entityid', 'numeric-id': 5, 'property': 'P31'}, {'after': 0, 'type': 'time', 'precision': 11, 'time': '+1909-08-27T00:00:00Z', 'before': 0, 'property': 'P569', 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'property': 'P106', 'type': 'wikibase-entityid', 'numeric-id': 483501, 'entity-type': 'item', 'id': 'Q483501'}, {'type': 'string', 'value': 'Maurice Loriaux', 'property': 'P373'}, {'after': 0, 'precision': 11, 'property': 'P570', 'timezone': 0, 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1998-07-29T00:00:00Z', 'before': 0}, {'id': 'Q6581097', 'type': 'wikibase-entityid', 'numeric-id': 6581097, 'property': 'P21', 'entity-type': 'item'}, {'value': 'agent/base/30783', 'property': 'P7704', 'type': 'string'}, {'numeric-id': 9592, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P140', 'id': 'Q9592'}, {'type': 'wikibase-entityid', 'id': 'Q1472321', 'entity-type': 'item', 'numeric-id': 1472321, 'property': 'P735'}), 'title': 'Q6793309'}
{'type': 'item', 'id': 'Q6793538', 'labels': (('en', 'Maurice Wilks'),), 'descriptions': (('en', 'British automobile designer'),), 'aliases': (('en', 'Maurice Fernand Cary Wilks'),), 'sitelinks': (('fawiki', '\xd9\x85\xd9\x88\xd8\xb1\xdb\x8c\xd8\xb3 \xd9\x81\xd8\xb1\xd8\xaf\xdb\x8c\xd9\x86\xd8\xa7\xd9\x86\xd8\xaf \xd9\x88\xdb\x8c\xd9\x84\xda\xa9\xd8\xb3', None), ('commonswiki', 'Category:Maurice Wilks', None), ('itwiki', 'Maurice Wilks', None), ('cswiki', 'Maurice Wilks', None), ('frwiki', 'Maurice Wilks', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd9\x88\xd8\xb1\xd9\x8a\xd8\xb3 \xd9\x88\xd9\x8a\xd9\x84\xd9\x83\xd8\xb3', None), ('enwiki', 'Maurice Wilks', None), ('cywiki', 'Maurice Wilks', None)), 'claims': ({'property': 'P106', 'id': 'Q205375', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 205375}, {'type': 'wikibase-entityid', 'property': 'P106', 'id': 'Q131524', 'numeric-id': 131524, 'entity-type': 'item'}, {'id': 'Q11295636', 'property': 'P106', 'entity-type': 'item', 'numeric-id': 11295636, 'type': 'wikibase-entityid'}, {'id': 'Q1860', 'numeric-id': 1860, 'property': 'P1412', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'precision': 11, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'property': 'P570', 'before': 0, 'time': '+1963-09-08T00:00:00Z', 'after': 0, 'type': 'time'}, {'property': 'P373', 'value': 'Maurice Wilks', 'type': 'string'}, {'type': 'wikibase-entityid', 'id': 'Q1541751', 'numeric-id': 1541751, 'entity-type': 'item', 'property': 'P19'}, {'precision': 11, 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'property': 'P569', 'timezone': 0, 'after': 0, 'time': '+1904-08-19T00:00:00Z'}, {'value': "Inventor's headstone - geograph.org.uk - 965836.jpg", 'property': 'P18', 'type': 'string'}, {'id': 'Q1536562', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P69', 'numeric-id': 1536562}, {'id': 'Q914316', 'entity-type': 'item', 'numeric-id': 914316, 'type': 'wikibase-entityid', 'property': 'P20'}, {'type': 'wikibase-entityid', 'id': 'Q21491582', 'entity-type': 'item', 'numeric-id': 21491582, 'property': 'P734'}, {'numeric-id': 1472321, 'property': 'P735', 'id': 'Q1472321', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'numeric-id': 5, 'property': 'P31', 'id': 'Q5', 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q145', 'numeric-id': 145, 'property': 'P27', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'property': 'P27', 'id': 'Q174193', 'numeric-id': 174193, 'type': 'wikibase-entityid'}, {'numeric-id': 6581097, 'id': 'Q6581097', 'property': 'P21', 'type': 'wikibase-entityid', 'entity-type': 'item'}), 'title': 'Q6793538'}
{'type': 'item', 'id': 'Q6793647', 'labels': (('en', 'Mauricio Sanchez'),), 'descriptions': (('en', 'Venezuelan actor'), ('en-g', 'Venezuelan actor'), ('en-ca', 'Venezuelan actor')), 'aliases': (), 'sitelinks': (('enwiki', 'Mauricio Sanchez', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd9\x88\xd8\xb1\xd9\x8a\xd8\xb3\xd9\x8a\xd9\x88 \xd8\xb3\xd8\xa7\xd9\x86\xd8\xaa\xd8\xb4\xd9\x8a\xd8\xb2', None)), 'claims': ({'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q5', 'numeric-id': 5, 'entity-type': 'item'}, {'entity-type': 'item', 'numeric-id': 33999, 'property': 'P106', 'type': 'wikibase-entityid', 'id': 'Q33999'}, {'numeric-id': 10798782, 'property': 'P106', 'id': 'Q10798782', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P734', 'id': 'Q28912875', 'entity-type': 'item', 'numeric-id': 28912875, 'type': 'wikibase-entityid'}, {'after': 0, 'time': '+1973-01-01T00:00:00Z', 'property': 'P569', 'type': 'time', 'before': 0, 'precision': 9, 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P27', 'id': 'Q717', 'numeric-id': 717}, {'property': 'P12098', 'type': 'string', 'value': '610108'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P19', 'id': 'Q23551', 'numeric-id': 23551}, {'property': 'P10302', 'type': 'string', 'value': 'mauricio-sanchez'}, {'numeric-id': 6581097, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q6581097', 'property': 'P21'}, {'numeric-id': 2880923, 'type': 'wikibase-entityid', 'property': 'P735', 'entity-type': 'item', 'id': 'Q2880923'}), 'title': 'Q6793647'}
{'type': 'item', 'id': 'Q6793753', 'labels': (('en', 'Mauritia mappa'),), 'descriptions': (('en', 'species of mollusc'),), 'aliases': (), 'sitelinks': (('viwiki', 'Mauritia mappa', None), ('enwiki', 'Mauritia mappa', ('Q70893996',)), ('zhwiki', '\xe5\x9b\xbe\xe7\xba\xb9\xe7\xbb\xb6\xe8\xb4\x9d', None)), 'claims': ({'value': 'Mauritia mappa', 'property': 'P225', 'type': 'string'}, {'property': 'P105', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 7432, 'id': 'Q7432'}, {'entity-type': 'item', 'property': 'P31', 'id': 'Q16521', 'type': 'wikibase-entityid', 'numeric-id': 16521}, {'property': 'P10585', 'type': 'string', 'value': '3YG23'}, {'property': 'P1813', 'text': 'M. mappa', 'language': 'mul', 'type': 'monolingualtext'}, {'type': 'wikibase-entityid', 'property': 'P171', 'id': 'Q144014', 'entity-type': 'item', 'numeric-id': 144014}), 'title': 'Q6793753'}
{'type': 'item', 'id': 'Q6793943', 'labels': (('en', 'Maurocenia frangularia'),), 'descriptions': (('en', 'species of plant'),), 'aliases': (), 'sitelinks': (('commonswiki', 'Category:Maurocenia frangularia', None), ('viwiki', 'Maurocenia frangularia', None)), 'claims': ({'numeric-id': 7432, 'id': 'Q7432', 'type': 'wikibase-entityid', 'property': 'P105', 'entity-type': 'item'}, {'property': 'P171', 'type': 'wikibase-entityid', 'id': 'Q9030711', 'numeric-id': 9030711, 'entity-type': 'item'}, {'type': 'string', 'value': 'Maurocenia', 'property': 'P373'}, {'type': 'string', 'value': '3YG3R', 'property': 'P10585'}, {'type': 'monolingualtext', 'property': 'P1813', 'language': 'mul', 'text': 'M. frangularia'}, {'type': 'string', 'value': 'Maurocenia frangularia', 'property': 'P225'}, {'type': 'string', 'property': 'P18', 'value': '1 Maurocenia frangularia - Khoi Cherry 4.jpg'}, {'entity-type': 'item', 'numeric-id': 16521, 'property': 'P31', 'id': 'Q16521', 'type': 'wikibase-entityid'}), 'title': 'Q6793943'}
{'type': 'item', 'id': 'Q6794324', 'labels': (('en', 'A Date With Life'),), 'descriptions': (('en', '1953 film by Ezzel Dine Zulficar'),), 'aliases': (('en', "Maw'ed Ma'a Elhayah"),), 'sitelinks': (('cywiki', 'Maw`Ed Ma` Al-Hayat', None), ('fawiki', '\xd9\x82\xd8\xb1\xd8\xa7\xd8\xb1 \xd8\xa8\xd8\xa7 \xd8\xb2\xd9\x86\xd8\xaf\xda\xaf\xdb\x8c', None), ('idwiki', 'Maw`ed Ma` al-Hayat', None), ('arzwiki', '\xd9\x85\xd9\x88\xd8\xb9\xd8\xaf \xd9\x85\xd8\xb9 \xd8\xa7\xd9\x84\xd8\xad\xd9\x8a\xd8\xa7\xd8\xa9', None), ('arwiki', '\xd9\x85\xd9\x88\xd8\xb9\xd8\xaf \xd9\x85\xd8\xb9 \xd8\xa7\xd9\x84\xd8\xad\xd9\x8a\xd8\xa7\xd8\xa9 (\xd9\x81\xd9\x8a\xd9\x84\xd9\x85)', None), ('hawiki', 'Appointment with Life', None), ('enwiki', 'Appointment with Life', None)), 'claims': ({'property': 'P12096', 'type': 'string', 'value': '265714'}, {'numeric-id': 130232, 'entity-type': 'item', 'id': 'Q130232', 'property': 'P136', 'type': 'wikibase-entityid'}, {'type': 'string', 'value': '5d776b8a7a53e9001e728e85', 'property': 'P11460'}, {'numeric-id': 11424, 'id': 'Q11424', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P31'}, {'entity-type': 'item', 'numeric-id': 3380886, 'type': 'wikibase-entityid', 'id': 'Q3380886', 'property': 'P57'}, {'amount': '+115', 'property': 'P2047', 'type': 'quantity', 'unit': 'http://www.wikidata.org/entity/Q7727'}, {'entity-type': 'item', 'id': 'Q3380886', 'type': 'wikibase-entityid', 'property': 'P58', 'numeric-id': 3380886}, {'numeric-id': 79, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q79', 'property': 'P495'}, {'id': 'Q29919', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 29919, 'property': 'P364'}, {'type': 'wikibase-entityid', 'id': 'Q2424957', 'entity-type': 'item', 'numeric-id': 2424957, 'property': 'P161'}, {'id': 'Q4166448', 'entity-type': 'item', 'property': 'P161', 'type': 'wikibase-entityid', 'numeric-id': 4166448}, {'type': 'wikibase-entityid', 'id': 'Q4165830', 'property': 'P161', 'numeric-id': 4165830, 'entity-type': 'item'}, {'numeric-id': 10971874, 'property': 'P161', 'id': 'Q10971874', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'type': 'time', 'time': '+1953-01-01T00:00:00Z', 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 9, 'property': 'P577', 'timezone': 0, 'after': 0}, {'property': 'P1476', 'text': '\xd9\x85\xd9\x88\xd8\xb9\xd8\xaf \xd9\x85\xd8\xb9 \xd8\xa7\xd9\x84\xd8\xad\xd9\x8a\xd8\xa7\xd9\x87', 'language': 'arz', 'type': 'monolingualtext'}, {'id': 'Q838368', 'type': 'wikibase-entityid', 'numeric-id': 838368, 'property': 'P462', 'entity-type': 'item'}, {'entity-type': 'item', 'property': 'P162', 'id': 'Q3380886', 'type': 'wikibase-entityid', 'numeric-id': 3380886}), 'title': 'Q6794324'}
{'type': 'item', 'id': 'Q6794563', 'labels': (('en', 'zar'),), 'descriptions': (('en', 'Arabic dish'),), 'aliases': (), 'sitelinks': (('arwiki', '\xd8\xb2\xd8\xb1\xd8\xa8', None),), 'claims': ({'type': 'wikibase-entityid', 'numeric-id': 643419, 'entity-type': 'item', 'id': 'Q643419', 'property': 'P527'}, {'property': 'P18', 'value': 'Uncooked zarb (cropped).jpg', 'type': 'string'}, {'id': 'Q810', 'property': 'P495', 'numeric-id': 810, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'numeric-id': 746549, 'type': 'wikibase-entityid', 'id': 'Q746549', 'property': 'P31', 'entity-type': 'item'}), 'title': 'Q6794563'}
{'type': 'item', 'id': 'Q6794540', 'labels': (('en', 'Max Arthur'),), 'descriptions': (('en', 'OBE/oral/military historian/author (1939-2019)'),), 'aliases': (), 'sitelinks': (('arwiki', '\xd9\x85\xd8\xa7\xd9\x83\xd8\xb3 \xd8\xa2\xd8\xb1\xd8\xab\xd8\xb1', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd9\x83\xd8\xb3 \xd8\xa2\xd8\xb1\xd8\xab\xd8\xb1', None), ('enwiki', 'Max Arthur', None)), 'claims': ({'before': 0, 'after': 0, 'precision': 11, 'property': 'P570', 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+2019-05-02T00:00:00Z', 'type': 'time'}, {'numeric-id': 6581097, 'type': 'wikibase-entityid', 'property': 'P21', 'entity-type': 'item', 'id': 'Q6581097'}, {'numeric-id': 10762848, 'property': 'P166', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q10762848'}, {'id': 'Q1860', 'numeric-id': 1860, 'property': 'P1412', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'property': 'P734', 'entity-type': 'item', 'numeric-id': 14915259, 'id': 'Q14915259'}, {'numeric-id': 29496, 'id': 'Q29496', 'property': 'P509', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'text': 'Max Arthur', 'type': 'monolingualtext', 'language': 'en', 'property': 'P1559'}, {'value': '1140282266805129344', 'property': 'P11496', 'type': 'string'}, {'type': 'string', 'value': 'agent/base/99956', 'property': 'P7704'}, {'value': '125189', 'property': 'P12098', 'type': 'string'}, {'type': 'wikibase-entityid', 'numeric-id': 5, 'id': 'Q5', 'entity-type': 'item', 'property': 'P31'}, {'value': '14835039', 'property': 'P11249', 'type': 'string'}, {'numeric-id': 890621, 'property': 'P19', 'type': 'wikibase-entityid', 'id': 'Q890621', 'entity-type': 'item'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q3739104', 'numeric-id': 3739104, 'property': 'P1196'}, {'type': 'wikibase-entityid', 'property': 'P27', 'numeric-id': 145, 'id': 'Q145', 'entity-type': 'item'}, {'after': 0, 'before': 0, 'type': 'time', 'time': '+1939-02-25T00:00:00Z', 'property': 'P569', 'timezone': 0, 'precision': 11, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'id': 'Q16422172', 'property': 'P735', 'numeric-id': 16422172, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q36180', 'type': 'wikibase-entityid', 'numeric-id': 36180, 'property': 'P106'}, {'property': 'P106', 'entity-type': 'item', 'numeric-id': 1493121, 'id': 'Q1493121', 'type': 'wikibase-entityid'}, {'property': 'P106', 'type': 'wikibase-entityid', 'id': 'Q33999', 'numeric-id': 33999, 'entity-type': 'item'}), 'title': 'Q6794540'}
{'type': 'item', 'id': 'Q6794639', 'labels': (('en', 'Max Carrados'),), 'descriptions': (('en', 'fictional character in works by Ernest Bramah'),), 'aliases': (), 'sitelinks': (('enwiki', 'Max Carrados', None), ('enwikisource', 'Max Carrados', None)), 'claims': ({'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q842782', 'property': 'P106', 'numeric-id': 842782}, {'entity-type': 'item', 'numeric-id': 15632617, 'id': 'Q15632617', 'type': 'wikibase-entityid', 'property': 'P31'}, {'type': 'wikibase-entityid', 'id': 'Q3658341', 'entity-type': 'item', 'property': 'P31', 'numeric-id': 3658341}, {'type': 'wikibase-entityid', 'property': 'P735', 'entity-type': 'item', 'id': 'Q16422172', 'numeric-id': 16422172}, {'id': 'Q1356259', 'numeric-id': 1356259, 'entity-type': 'item', 'property': 'P170', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q6581097', 'numeric-id': 6581097, 'entity-type': 'item', 'property': 'P21'}), 'title': 'Q6794639'}
{'type': 'item', 'id': 'Q6794635', 'labels': (('en', 'Denizb\xc3\xbck\xc3\xbc'),), 'descriptions': (('en-ca', 'k\xc3\xb6y in Abana, Turkey'), ('en', 'k\xc3\xb6y in Abana, Turkey'), ('en-g', 'k\xc3\xb6y in Abana, Turkey')), 'aliases': (), 'sitelinks': (('viwiki', 'Denizb\xc3\xbck\xc3\xbc, Abana', None), ('ttwiki', '\xd0\x94\xd0\xb5\xd0\xbd\xd0\xb8\xd0\xb7\xd0\xb1\xd2\xaf\xd0\xba\xd2\xaf (\xd0\x90\xd0\xb1\xd0\xb0\xd0\xbd\xd0\xb0)', None), ('cewiki', '\xd0\x94\xd0\xb5\xd0\xbd\xd0\xb8\xd0\xb7\xd0\xb1\xd1\x83\xd1\x8c\xd0\xba\xd1\x83\xd1\x8c (\xd0\x90\xd0\xb1\xd0\xb0\xd0\xbd\xd0\xb0)', None), ('enwiki', 'Denizb\xc3\xbck\xc3\xbc, Abana', None), ('nlwiki', 'Denizb\xc3\xbck\xc3\xbc (Abana)', None), ('trwiki', 'Denizb\xc3\xbck\xc3\xbc, Abana', None)), 'claims': ({'property': 'P31', 'id': 'Q1529096', 'entity-type': 'item', 'numeric-id': 1529096, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q43', 'entity-type': 'item', 'property': 'P17', 'numeric-id': 43}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 2006400, 'id': 'Q2006400', 'property': 'P131'}), 'title': 'Q6794635'}
{'type': 'item', 'id': 'Q6794874', 'labels': (('en', 'Max Holloway'),), 'descriptions': (('en', 'American mixed martial artist'),), 'aliases': (('en', 'Jerome-Max Holloway'),), 'sitelinks': (('bgwiki', '\xd0\x9c\xd0\xb0\xd0\xba\xd1\x81 \xd0\xa5\xd0\xbe\xd0\xbb\xd0\xbe\xd1\x83\xd0\xb5\xd0\xb9', None), ('dawiki', 'Max Holloway', None), ('ruwikinews', '\xd0\x9a\xd0\xb0\xd1\x82\xd0\xb5\xd0\xb3\xd0\xbe\xd1\x80\xd0\xb8\xd1\x8f:\xd0\x9c\xd0\xb0\xd0\xba\xd1\x81 \xd0\xa5\xd0\xbe\xd0\xbb\xd0\xbb\xd0\xbe\xd1\x83\xd1\x8d\xd0\xb9', None), ('zhwiki', '\xe9\xba\xa6\xe5\x85\x8b\xe6\x96\xaf\xc2\xb7\xe9\x9c\x8d\xe6\xb4\x9b\xe5\xa8\x81', None), ('hywiki', '\xd5\x84\xd5\xa1\xd6\x84\xd5\xbd \xd5\x80\xd5\xb8\xd5\xac\xd5\xb8\xd5\xb8\xd6\x82\xd5\xa5\xd5\xb5', None), ('ruwikiquote', '\xd0\x9c\xd0\xb0\xd0\xba\xd1\x81 \xd0\xa5\xd0\xbe\xd0\xbb\xd0\xbb\xd0\xbe\xd1\x83\xd1\x8d\xd0\xb9', None), ('jawiki', '\xe3\x83\x9e\xe3\x83\x83\xe3\x82\xaf\xe3\x82\xb9\xe3\x83\xbb\xe3\x83\x9b\xe3\x83\xad\xe3\x82\xa6\xe3\x82\xa7\xe3\x82\xa4', None), ('svwiki', 'Max Holloway', None), ('arwiki', '\xd9\x85\xd8\xa7\xd9\x83\xd8\xb3 \xd9\x87\xd9\x88\xd9\x84\xd9\x88\xd8\xa7\xd9\x8a', None), ('plwiki', 'Max Holloway', None), ('commonswiki', 'Category:Max Holloway', None), ('fiwiki', 'Max Holloway', None), ('ukwiki', '\xd0\x9c\xd0\xb0\xd0\xba\xd1\x81 \xd0\xa5\xd0\xbe\xd0\xbb\xd0\xbb\xd0\xbe\xd0\xb2\xd0\xb5\xd0\xb9', None), ('astwiki', 'Max Holloway', None), ('fawiki', '\xd9\x85\xda\xa9\xd8\xb3 \xd9\x87\xd8\xa7\xd9\x84\xd9\x88\xd9\x88\xdb\x8c', None), ('kowiki', '\xeb\xa7\xa5\xec\x8a\xa4 \xed\x95\xa0\xeb\xa1\x9c\xec\x9b\xa8\xec\x9d\xb4', None), ('enwiki', 'Max Holloway', None), ('frwiki', 'Max Holloway', None), ('ruwiki', '\xd0\xa5\xd0\xbe\xd0\xbb\xd0\xbb\xd0\xbe\xd1\x83\xd1\x8d\xd0\xb9, \xd0\x9c\xd0\xb0\xd0\xba\xd1\x81', None), ('huwiki', 'Max Holloway', None), ('nlwiki', 'Max Holloway', None), ('itwiki', 'Max Holloway', None), ('ptwiki', 'Max Holloway', None), ('eswiki', 'Max Holloway', None)), 'claims': ({'property': 'P2048', 'unit': 'http://www.wikidata.org/entity/Q174728', 'type': 'quantity', 'amount': '+180'}, {'id': 'Q1413686', 'numeric-id': 1413686, 'property': 'P19', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'string', 'value': 'agent/base/45924', 'property': 'P7704'}, {'entity-type': 'item', 'id': 'Q30', 'property': 'P1532', 'numeric-id': 30, 'type': 'wikibase-entityid'}, {'numeric-id': 5, 'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q5', 'entity-type': 'item'}, {'value': 'Max Holloway', 'property': 'P373', 'type': 'string'}, {'id': 'Q30', 'numeric-id': 30, 'property': 'P27', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P734', 'entity-type': 'item', 'id': 'Q16870847', 'numeric-id': 16870847, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q6581097', 'numeric-id': 6581097, 'property': 'P21'}, {'value': 'BlessedMMA', 'property': 'P2002', 'type': 'string'}, {'type': 'quantity', 'amount': '+145', 'unit': 'http://www.wikidata.org/entity/Q100995', 'property': 'P2067'}, {'property': 'P569', 'timezone': 0, 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1991-12-04T00:00:00Z', 'type': 'time', 'before': 0, 'precision': 11}, {'entity-type': 'item', 'numeric-id': 7959897, 'property': 'P69', 'id': 'Q7959897', 'type': 'wikibase-entityid'}, {'numeric-id': 11607585, 'id': 'Q11607585', 'property': 'P106', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q114466', 'numeric-id': 114466, 'property': 'P641'}, {'value': 'blessedmmaofficial', 'property': 'P2013', 'type': 'string'}, {'value': 'maks-hollouey', 'property': 'P10302', 'type': 'string'}, {'type': 'quantity', 'unit': '1', 'amount': '+553256', 'property': 'P8687'}, {'type': 'quantity', 'unit': '1', 'property': 'P8687', 'amount': '+155748'}, {'lowerBound': '+207000', 'type': 'quantity', 'upperBound': '+207999', 'amount': '+207000', 'unit': '1', 'property': 'P8687'}, {'unit': '1', 'property': 'P8687', 'amount': '+768230', 'type': 'quantity'}, {'property': 'P8687', 'type': 'quantity', 'amount': '+874722', 'unit': '1'}, {'upperBound': '+229999', 'lowerBound': '+229000', 'property': 'P8687', 'amount': '+229000', 'type': 'quantity', 'unit': '1'}, {'lowerBound': '+264000', 'upperBound': '+264999', 'unit': '1', 'amount': '+264000', 'property': 'P8687', 'type': 'quantity'}, {'type': 'wikibase-entityid', 'property': 'P735', 'entity-type': 'item', 'id': 'Q16422172', 'numeric-id': 16422172}, {'type': 'string', 'property': 'P2003', 'value': 'blessedmma'}, {'value': 'Max holloway pic.jpg', 'property': 'P18', 'type': 'string'}, {'type': 'string', 'property': 'P7085', 'value': 'maxblessedmma'}), 'title': 'Q6794874'}
{'type': 'item', 'id': 'Q6795362', 'labels': (('en', 'Max Weisel'),), 'descriptions': (('en', 'software developer'),), 'aliases': (), 'sitelinks': (('enwiki', 'Max Weisel', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd9\x83\xd8\xb3 \xd9\x88\xd9\x8a\xd8\xb3\xd9\x8a\xd9\x84', None)), 'claims': ({'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1991-11-12T00:00:00Z', 'precision': 11, 'before': 0, 'property': 'P569', 'timezone': 0, 'type': 'time', 'after': 0}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q5', 'numeric-id': 5, 'property': 'P31'}, {'id': 'Q16422172', 'property': 'P735', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 16422172}, {'property': 'P7704', 'type': 'string', 'value': 'agent/base/130999'}, {'entity-type': 'item', 'property': 'P101', 'id': 'Q683794', 'numeric-id': 683794, 'type': 'wikibase-entityid'}, {'id': 'Q6581097', 'property': 'P21', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 6581097}, {'property': 'P106', 'id': 'Q483501', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 483501}, {'entity-type': 'item', 'numeric-id': 18575, 'type': 'wikibase-entityid', 'id': 'Q18575', 'property': 'P19'}, {'entity-type': 'item', 'property': 'P27', 'type': 'wikibase-entityid', 'numeric-id': 30, 'id': 'Q30'}), 'title': 'Q6795362'}
{'type': 'item', 'id': 'Q6795412', 'labels': (('en', "Max and Mina's"),), 'descriptions': (('en', 'ice cream store in New York City'),), 'aliases': (('en', "Max and Mina's Ice Cream Parlor"),), 'sitelinks': (('enwiki', "Max and Mina's", None),), 'claims': ({'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'property': 'P571', 'type': 'time', 'after': 0, 'precision': 9, 'time': '+1997-00-00T00:00:00Z'}, {'entity-type': 'item', 'id': 'Q1384', 'property': 'P131', 'type': 'wikibase-entityid', 'numeric-id': 1384}, {'id': 'Q30', 'numeric-id': 30, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P17'}, {'value': 'MaxMina1.jpg', 'type': 'string', 'property': 'P18'}), 'title': 'Q6795412'}
{'type': 'item', 'id': 'Q6795400', 'labels': (('en', 'Max Yalden'),), 'descriptions': (('en', 'Canadian diplomat (1930\xe2\x80\x932015)'), ('en-g', 'Canadian diplomat'), ('en-ca', 'Canadian diplomat')), 'aliases': (('en', 'Maxwell Freeman Yalden'),), 'sitelinks': (('frwiki', 'Maxwell Yalden', None), ('ruwiki', '\xd0\xaf\xd0\xbb\xd0\xb4\xd0\xb5\xd0\xbd, \xd0\x9c\xd0\xb0\xd0\xba\xd1\x81\xd0\xb2\xd0\xb5\xd0\xbb\xd0\xbb \xd0\xa4\xd1\x80\xd0\xb8\xd0\xbc\xd0\xb5\xd0\xbd', ('Q17559452',)), ('enwiki', 'Max Yalden', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd9\x83\xd8\xb3 \xd9\x8a\xd9\x84\xd8\xaf\xd9\x86', None), ('hywiki', '\xd5\x84\xd5\xa1\xd6\x84\xd5\xbd\xd5\xbe\xd5\xa5\xd5\xac \xd5\x85\xd5\xa1\xd5\xac\xd5\xa4\xd5\xa5\xd5\xb6', None)), 'claims': ({'id': 'Q8047314', 'type': 'wikibase-entityid', 'numeric-id': 8047314, 'entity-type': 'item', 'property': 'P734'}, {'id': 'Q16', 'numeric-id': 16, 'property': 'P27', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P20', 'entity-type': 'item', 'id': 'Q1930', 'numeric-id': 1930, 'type': 'wikibase-entityid'}, {'numeric-id': 12192, 'id': 'Q12192', 'type': 'wikibase-entityid', 'property': 'P509', 'entity-type': 'item'}, {'id': 'Q172', 'numeric-id': 172, 'property': 'P19', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'numeric-id': 16422172, 'entity-type': 'item', 'id': 'Q16422172', 'property': 'P735'}, {'property': 'P569', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'before': 0, 'after': 0, 'precision': 11, 'time': '+1930-04-12T00:00:00Z', 'timezone': 0}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 6581097, 'property': 'P21', 'id': 'Q6581097'}, {'entity-type': 'item', 'numeric-id': 5, 'type': 'wikibase-entityid', 'property': 'P31', 'id': 'Q5'}, {'before': 0, 'property': 'P570', 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'time': '+2015-02-09T00:00:00Z', 'timezone': 0, 'precision': 11}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 193391, 'id': 'Q193391', 'property': 'P106'}, {'entity-type': 'item', 'id': 'Q180865', 'property': 'P69', 'type': 'wikibase-entityid', 'numeric-id': 180865}, {'id': 'Q230492', 'numeric-id': 230492, 'entity-type': 'item', 'property': 'P69', 'type': 'wikibase-entityid'}, {'property': 'P166', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q15278107', 'numeric-id': 15278107}), 'title': 'Q6795400'}
{'type': 'item', 'id': 'Q6795425', 'labels': (('en', 'Max van Hulsteyn'),), 'descriptions': (('en', 'consul of the Orange Free State 1898-1902'),), 'aliases': (), 'sitelinks': (('enwiki', 'Max van Hulsteyn', None),), 'claims': ({'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q6581097', 'property': 'P21', 'numeric-id': 6581097}, {'id': 'Q5', 'numeric-id': 5, 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q16422172', 'type': 'wikibase-entityid', 'numeric-id': 16422172, 'property': 'P735', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 29999, 'id': 'Q29999', 'property': 'P27'}, {'type': 'wikibase-entityid', 'id': 'Q82955', 'numeric-id': 82955, 'property': 'P106', 'entity-type': 'item'}, {'entity-type': 'item', 'numeric-id': 193391, 'id': 'Q193391', 'property': 'P106', 'type': 'wikibase-entityid'}), 'title': 'Q6795425'}
{'type': 'item', 'id': 'Q6795897', 'labels': (('en', 'Maximum harmonisation'),), 'descriptions': (('en', 'term used in EU law'),), 'aliases': (), 'sitelinks': (('enwiki', 'Maximum harmonisation', None),), 'claims': (), 'title': 'Q6795897'}
{'type': 'item', 'id': 'Q6796688', 'labels': (('en-g', 'Maya Even'), ('en-ca', 'Maya Even'), ('en', 'Maya Even')), 'descriptions': (('en', 'Canadian journalist'), ('en-g', 'Canadian journalist'), ('en-ca', 'Canadian journalist')), 'aliases': (), 'sitelinks': (('enwiki', 'Maya Even', None),), 'claims': ({'type': 'wikibase-entityid', 'id': 'Q9531', 'entity-type': 'item', 'numeric-id': 9531, 'property': 'P108'}, {'numeric-id': 6581072, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q6581072', 'property': 'P21'}, {'numeric-id': 935522, 'type': 'wikibase-entityid', 'id': 'Q935522', 'property': 'P735', 'entity-type': 'item'}, {'numeric-id': 1930187, 'entity-type': 'item', 'id': 'Q1930187', 'property': 'P106', 'type': 'wikibase-entityid'}, {'id': 'Q16869867', 'property': 'P734', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 16869867}, {'type': 'wikibase-entityid', 'id': 'Q5', 'numeric-id': 5, 'entity-type': 'item', 'property': 'P31'}, {'timezone': 0, 'before': 0, 'property': 'P569', 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'time': '+1958-01-02T00:00:00Z', 'type': 'time'}, {'numeric-id': 201492, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P69', 'id': 'Q201492'}, {'id': 'Q2035359', 'type': 'wikibase-entityid', 'property': 'P69', 'entity-type': 'item', 'numeric-id': 2035359}), 'title': 'Q6796688'}
{'type': 'item', 'id': 'Q6796752', 'labels': (('en', 'Maya dance'),), 'descriptions': (('en', 'ceremonial dance in pre-Columbian Maya civilization'),), 'aliases': (), 'sitelinks': (('ukwiki', '\xd0\xa2\xd0\xb0\xd0\xbd\xd1\x86\xd1\x96 \xd0\xbc\xd0\xb0\xd1\x8f', None), ('enwiki', 'Maya dance', None), ('bawiki', '\xd0\x9c\xd0\xb0\xd0\xb9\xd1\x8f \xd0\xb1\xd0\xb5\xd0\xb9\xd0\xb5\xd2\xaf\xd2\x99\xd3\x99\xd1\x80\xd0\xb5', None), ('idwiki', 'Tarian Maya', None), ('ruwiki', '\xd0\xa2\xd0\xb0\xd0\xbd\xd1\x86\xd1\x8b \xd0\xbc\xd0\xb0\xd0\xb9\xd1\x8f', None)), 'claims': ({'value': 'Deer dance toledo belize.jpg', 'property': 'P18', 'type': 'string'}, {'numeric-id': 107357104, 'property': 'P31', 'id': 'Q107357104', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P2341', 'id': 'Q45914', 'entity-type': 'item', 'numeric-id': 45914, 'type': 'wikibase-entityid'}), 'title': 'Q6796752'}
{'type': 'item', 'id': 'Q6796996', 'labels': (('en', 'Maybury'),), 'descriptions': (('en', 'suburb of Edinburgh, Scotland, UK'),), 'aliases': (), 'sitelinks': (('enwiki', 'Maybury', None), ('euwiki', 'Maybury', None)), 'claims': ({'entity-type': 'item', 'property': 'P276', 'id': 'Q23436', 'type': 'wikibase-entityid', 'numeric-id': 23436}, {'value': 'The Maybury - geograph.org.uk - 33048.jpg', 'type': 'string', 'property': 'P18'}, {'numeric-id': 145, 'type': 'wikibase-entityid', 'id': 'Q145', 'entity-type': 'item', 'property': 'P17'}, {'type': 'string', 'value': 'Maybury Road - geograph.org.uk - 984415.jpg', 'property': 'P6802'}, {'value': 'Edinburgh trams at the Maybury (geograph 3579298).jpg', 'property': 'P6802', 'type': 'string'}, {'id': 'Q188509', 'type': 'wikibase-entityid', 'numeric-id': 188509, 'entity-type': 'item', 'property': 'P31'}, {'entity-type': 'item', 'id': 'Q67317221', 'type': 'wikibase-entityid', 'property': 'P7959', 'numeric-id': 67317221}, {'type': 'wikibase-entityid', 'property': 'P131', 'numeric-id': 2379199, 'entity-type': 'item', 'id': 'Q2379199'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P131', 'id': 'Q68826067', 'numeric-id': 68826067}), 'title': 'Q6796996'}
{'type': 'item', 'id': 'Q6797074', 'labels': (('en', 'Mayer Red Brick Schoolhouse'), ('en-g', 'Mayer Red Brick Schoolhouse'), ('en-ca', 'Mayer Red Brick Schoolhouse')), 'descriptions': (('en', 'United States historic place in Yavapai County, Arizona'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mayer Red Brick Schoolhouse', None),), 'claims': ({'property': 'P17', 'id': 'Q30', 'type': 'wikibase-entityid', 'numeric-id': 30, 'entity-type': 'item'}, {'value': 'MayerSchoolPrescottArea218.jpg', 'property': 'P18', 'type': 'string'}, {'numeric-id': 816, 'property': 'P131', 'id': 'Q816', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P1435', 'id': 'Q19558910', 'entity-type': 'item', 'numeric-id': 19558910, 'type': 'wikibase-entityid'}, {'property': 'P31', 'numeric-id': 1244442, 'type': 'wikibase-entityid', 'id': 'Q1244442', 'entity-type': 'item'}), 'title': 'Q6797074'}
{'type': 'item', 'id': 'Q6797179', 'labels': (('en', 'Mayfield Grammar School, Gravesend'), ('en-g', 'Mayfield Grammar School, Gravesend')), 'descriptions': (('en', 'school in Kent, UK'), ('en-g', 'school in Kent, UK')), 'aliases': (), 'sitelinks': (('enwiki', 'Mayfield Grammar School', None),), 'claims': ({'type': 'time', 'property': 'P571', 'after': 0, 'time': '+1914-00-00T00:00:00Z', 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 9, 'timezone': 0}, {'time': '+2012-02-01T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'before': 0, 'timezone': 0, 'type': 'time', 'after': 0, 'property': 'P571'}, {'numeric-id': 15286143, 'property': 'P3876', 'type': 'wikibase-entityid', 'id': 'Q15286143', 'entity-type': 'item'}, {'entity-type': 'item', 'numeric-id': 145, 'property': 'P17', 'id': 'Q145', 'type': 'wikibase-entityid'}, {'property': 'P4971', 'type': 'string', 'value': '10036417'}, {'property': 'P856', 'value': 'http://www.mgsg.kent.sch.uk/', 'type': 'string'}, {'numeric-id': 676689, 'entity-type': 'item', 'property': 'P276', 'type': 'wikibase-entityid', 'id': 'Q676689'}, {'numeric-id': 967098, 'id': 'Q967098', 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'numeric-id': 4671329, 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q4671329'}, {'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q159334', 'numeric-id': 159334, 'entity-type': 'item'}, {'numeric-id': 22713629, 'entity-type': 'item', 'id': 'Q22713629', 'property': 'P31', 'type': 'wikibase-entityid'}, {'text': 'Mayfield Grammar School, Gravesend, Pelham Road, Gravesend, Kent, DA11 0JE', 'language': 'en-g', 'property': 'P6375', 'type': 'monolingualtext'}, {'numeric-id': 21694674, 'property': 'P131', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q21694674'}, {'id': 'Q67479626', 'type': 'wikibase-entityid', 'numeric-id': 67479626, 'property': 'P7959', 'entity-type': 'item'}, {'type': 'string', 'property': 'P3057', 'value': '1007778'}), 'title': 'Q6797179'}
{'type': 'item', 'id': 'Q6797304', 'labels': (('en', '2013 Rally M\xc3\xa9xico'),), 'descriptions': (('en', 'Mexican race event'),), 'aliases': (), 'sitelinks': (('fiwiki', 'Meksikon ralli 2013', None), ('huwiki', '2013-as Mexik\xc3\xb3-rali', None), ('itwiki', 'Rally del Messico 2013', None), ('plwiki', 'Rajd Meksyku 2013', None), ('eswiki', 'Rally M\xc3\xa9xico de 2013', None), ('arwiki', '\xd8\xb1\xd8\xa7\xd9\x84\xd9\x8a \xd8\xa7\xd9\x84\xd9\x85\xd9\x83\xd8\xb3\xd9\x8a\xd9\x83 2013', None), ('commonswiki', 'Category:2013 Rally Mexico', None), ('frwiki', 'Rallye du Mexique 2013', None), ('nlwiki', 'Rally van Mexico 2013', None), ('enwiki', '2013 Rally M\xc3\xa9xico', None), ('dewiki', 'Rallye Mexiko 2013', None)), 'claims': ({'id': 'Q1166178', 'numeric-id': 1166178, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P31'}, {'property': 'P18', 'type': 'string', 'value': '2013 Rally Mexico - Chris Atkinson.jpg'}, {'property': 'P361', 'entity-type': 'item', 'id': 'Q23961', 'type': 'wikibase-entityid', 'numeric-id': 23961}, {'id': 'Q15813914', 'type': 'wikibase-entityid', 'property': 'P156', 'entity-type': 'item', 'numeric-id': 15813914}, {'type': 'string', 'value': '2013 Rally Mexico', 'property': 'P373'}, {'property': 'P3157', 'unit': 'http://www.wikidata.org/entity/Q828224', 'type': 'quantity', 'amount': '+394.88'}, {'id': 'Q898966', 'numeric-id': 898966, 'type': 'wikibase-entityid', 'property': 'P3450', 'entity-type': 'item'}, {'numeric-id': 133833, 'property': 'P765', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q133833'}, {'property': 'P155', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q1041675', 'numeric-id': 1041675}, {'type': 'time', 'precision': 9, 'timezone': 0, 'property': 'P585', 'time': '+2013-00-00T00:00:00Z', 'after': 0, 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'entity-type': 'item', 'id': 'Q96', 'numeric-id': 96, 'type': 'wikibase-entityid', 'property': 'P17'}, {'numeric-id': 368793, 'type': 'wikibase-entityid', 'id': 'Q368793', 'property': 'P1346', 'entity-type': 'item'}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'property': 'P582', 'timezone': 0, 'before': 0, 'type': 'time', 'time': '+2013-03-10T00:00:00Z', 'after': 0}, {'id': 'Q5386', 'numeric-id': 5386, 'type': 'wikibase-entityid', 'property': 'P641', 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q7856', 'property': 'P641', 'type': 'wikibase-entityid', 'numeric-id': 7856}), 'title': 'Q6797304'}
{'type': 'item', 'id': 'Q6797481', 'labels': (('en', 'Mayo-Oulo'),), 'descriptions': (('en', 'commune of Cameroon'),), 'aliases': (), 'sitelinks': (('frwiki', 'Mayo-Oulo', None), ('mswiki', 'Mayo-Oulo', None), ('zh_min_nanwiki', 'Mayo-Oulo', None), ('eswiki', 'Mayo-Oulo', None), ('enwiki', 'Mayo-Oulo', None), ('commonswiki', 'Category:Mayo-Oulo', None)), 'claims': ({'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 2443752, 'property': 'P131', 'id': 'Q2443752'}, {'type': 'string', 'property': 'P373', 'value': 'Mayo-Oulo'}, {'numeric-id': 6655, 'id': 'Q6655', 'entity-type': 'item', 'property': 'P421', 'type': 'wikibase-entityid'}, {'numeric-id': 1009, 'property': 'P17', 'type': 'wikibase-entityid', 'id': 'Q1009', 'entity-type': 'item'}, {'numeric-id': 3076994, 'property': 'P31', 'id': 'Q3076994', 'entity-type': 'item', 'type': 'wikibase-entityid'}), 'title': 'Q6797481'}
{'type': 'item', 'id': 'Q6797577', 'labels': (('en', 'Mayogon'),), 'descriptions': (('en', 'human settlement in Myanmar'), ('en-g', 'human settlement in Myanmar'), ('en-ca', 'human settlement in Myanmar')), 'aliases': (), 'sitelinks': (('enwiki', 'Mayogon', None),), 'claims': ({'numeric-id': 486972, 'id': 'Q486972', 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'property': 'P17', 'id': 'Q836', 'numeric-id': 836, 'entity-type': 'item'}, {'property': 'P421', 'entity-type': 'item', 'id': 'Q6923', 'numeric-id': 6923, 'type': 'wikibase-entityid'}, {'numeric-id': 6726566, 'entity-type': 'item', 'property': 'P131', 'id': 'Q6726566', 'type': 'wikibase-entityid'}), 'title': 'Q6797577'}
{'type': 'item', 'id': 'Q6797732', 'labels': (('en', 'Mayor of Leicester'),), 'descriptions': (('en', 'office in England'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mayor of Leicester', None),), 'claims': ({'numeric-id': 145, 'property': 'P17', 'id': 'Q145', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q7177032', 'numeric-id': 7177032, 'property': 'P1308', 'type': 'wikibase-entityid'}, {'id': 'Q5280485', 'numeric-id': 5280485, 'entity-type': 'item', 'property': 'P279', 'type': 'wikibase-entityid'}, {'id': 'Q4164871', 'numeric-id': 4164871, 'entity-type': 'item', 'property': 'P31', 'type': 'wikibase-entityid'}, {'value': 'http://citymayor.leicester.gov.uk/', 'type': 'string', 'property': 'P856'}), 'title': 'Q6797732'}
{'type': 'item', 'id': 'Q6797726', 'labels': (('en-g', 'Mayor of Invercargill'), ('en', 'Mayor of Invercargill'), ('en-ca', 'Mayor of Invercargill')), 'descriptions': (('en-ca', 'Wikimedia list article'), ('en-g', 'Wikimedia list article'), ('en', 'head of Invercargill City Council in New Zealand')), 'aliases': (), 'sitelinks': (('enwiki', 'Mayor of Invercargill', None),), 'claims': ({'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 9, 'property': 'P571', 'time': '+1871-00-00T00:00:00Z', 'after': 0, 'timezone': 0, 'type': 'time'}, {'id': 'Q294414', 'numeric-id': 294414, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P31'}, {'numeric-id': 8613251, 'property': 'P1754', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q8613251'}, {'type': 'wikibase-entityid', 'id': 'Q32227864', 'entity-type': 'item', 'numeric-id': 32227864, 'property': 'P1001'}, {'id': 'Q664', 'numeric-id': 664, 'property': 'P17', 'type': 'wikibase-entityid', 'entity-type': 'item'}), 'title': 'Q6797726'}
{'type': 'item', 'id': 'Q6797974', 'labels': (('en', 'Mayson'),), 'descriptions': (('en', 'race horse'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mayson (horse)', None),), 'claims': ({'numeric-id': 44148, 'type': 'wikibase-entityid', 'id': 'Q44148', 'property': 'P21', 'entity-type': 'item'}, {'numeric-id': 210826, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q210826', 'property': 'P4743'}, {'entity-type': 'item', 'property': 'P366', 'numeric-id': 2442470, 'id': 'Q2442470', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 726, 'property': 'P31', 'id': 'Q726'}, {'timezone': 0, 'before': 0, 'after': 0, 'property': 'P569', 'type': 'time', 'precision': 11, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+2008-05-16T00:00:00Z'}, {'property': 'P22', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q11287797', 'numeric-id': 11287797}), 'title': 'Q6797974'}
{'type': 'item', 'id': 'Q6798057', 'labels': (('en', 'Mayucha, South Carolina'),), 'descriptions': (('en', 'human settlement in United States of America'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mayucha, South Carolina', None),), 'claims': ({'numeric-id': 30, 'property': 'P17', 'type': 'wikibase-entityid', 'id': 'Q30', 'entity-type': 'item'}, {'numeric-id': 74047, 'id': 'Q74047', 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item'}), 'title': 'Q6798057'}
{'type': 'item', 'id': 'Q6798257', 'labels': (('en', 'Mazar'),), 'descriptions': (('en', 'village in Bajestan County, Iran'),), 'aliases': (('en', 'Mazar, Razavi Khorasan'), ('en', 'Mazar, Bajestan')), 'sitelinks': (('commonswiki', 'Category:Mazar, Razavi Khorasan', None), ('arzwiki', '\xd9\x85\xd8\xb2\xd8\xa7\xd8\xb1 (\xd8\xae\xd8\xb1\xd8\xa7\xd8\xb3\xd8\xa7\xd9\x86 \xd8\xb1\xd8\xb6\xd9\x88\xd9\x89)', None), ('fawiki', '\xd9\x85\xd8\xb2\xd8\xa7\xd8\xb1 (\xd8\xa8\xd8\xac\xd8\xb3\xd8\xaa\xd8\xa7\xd9\x86)', None), ('arwiki', '\xd9\x85\xd8\xb2\xd8\xa7\xd8\xb1 (\xd8\xa8\xd8\xac\xd8\xb3\xd8\xaa\xd8\xa7\xd9\x86)', None), ('enwiki', 'Mazar, Razavi Khorasan', None), ('zh_min_nanwiki', 'Mazar (Razavi Khorasan)', None)), 'claims': ({'property': 'P2044', 'unit': 'http://www.wikidata.org/entity/Q11573', 'amount': '+1311', 'type': 'quantity'}, {'property': 'P18', 'type': 'string', 'value': 'Mazar-bajestan.jpg'}, {'id': 'Q4848872', 'type': 'wikibase-entityid', 'numeric-id': 4848872, 'property': 'P131', 'entity-type': 'item'}, {'entity-type': 'item', 'property': 'P17', 'numeric-id': 794, 'type': 'wikibase-entityid', 'id': 'Q794'}, {'numeric-id': 532, 'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q532', 'entity-type': 'item'}, {'value': 'Mazar, Razavi Khorasan', 'property': 'P373', 'type': 'string'}, {'type': 'quantity', 'unit': '1', 'amount': '+934', 'property': 'P1082'}), 'title': 'Q6798257'}
{'type': 'item', 'id': 'Q6798900', 'labels': (('en', 'Mazraeh-ye Qasem'),), 'descriptions': (('en', 'village in Markazi, Iran'),), 'aliases': (), 'sitelinks': (('ukwiki', '\xd0\x9c\xd0\xb0\xd0\xb7\xd1\x80\xd0\xb0\xd0\xb5-\xd1\x94 \xd0\x9a\xd0\xb0\xd1\x81\xd0\xb5\xd0\xbc', None), ('fawiki', '\xd9\x85\xd8\xb2\xd8\xb1\xd8\xb9\xd9\x87 \xd9\x82\xd8\xa7\xd8\xb3\xd9\x85 (\xd8\xae\xd9\x85\xdb\x8c\xd9\x86)', None), ('zh_min_nanwiki', 'Mazraeh-ye Qasem', None)), 'claims': ({'id': 'Q794', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 794, 'property': 'P17'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 1284166, 'property': 'P131', 'id': 'Q1284166'}, {'type': 'wikibase-entityid', 'id': 'Q486972', 'entity-type': 'item', 'numeric-id': 486972, 'property': 'P31'}), 'title': 'Q6798900'}
{'type': 'item', 'id': 'Q6799297', 'labels': (('en', 'Ma\xc5\x82e, \xc5\x81\xc3\xb3d\xc5\xba Voivodeship'),), 'descriptions': (('en', 'village in \xc5\x81\xc3\xb3d\xc5\xba, Poland'),), 'aliases': (), 'sitelinks': (('zh_min_nanwiki', 'Ma\xc5\x82e (\xc5\x81\xc3\xb3d\xc5\xba S\xc3\xa9ng)', None), ('plwiki', 'Ma\xc5\x82e (wojew\xc3\xb3dztwo \xc5\x82\xc3\xb3dzkie)', None), ('cewiki', '\xd0\x9c\xd0\xb0\xd0\xbb\xd0\xb5 (\xd0\x9b\xd0\xbe\xd0\xb4\xd0\xb7\xd0\xb8\xd0\xbd\xd1\x81\xd0\xba\xd0\xb0\xd0\xbd \xd0\xb2\xd0\xbe\xd0\xb5\xd0\xb2\xd0\xbe\xd0\xb4\xd0\xb0\xd0\xbb\xd0\xbb\xd0\xb0)', None), ('enwiki', 'Ma\xc5\x82e, \xc5\x81\xc3\xb3d\xc5\xba Voivodeship', None), ('ttwiki', '\xd0\x9c\xd0\xb0\xd0\xbb\xd0\xb5 (\xd0\x9b\xd0\xbe\xd0\xb4\xd0\xb7\xd1\x8c \xd0\xb2\xd0\xbe\xd0\xb5\xd0\xb2\xd0\xbe\xd0\xb4\xd0\xb0\xd0\xbb\xd1\x8b\xd0\xb3\xd1\x8b)', None), ('ukwiki', '\xd0\x9c\xd0\xb0\xd0\xbb\xd0\xb5 (\xd0\x9b\xd0\xbe\xd0\xb4\xd0\xb7\xd0\xb8\xd0\xbd\xd1\x81\xd1\x8c\xd0\xba\xd0\xb5 \xd0\xb2\xd0\xbe\xd1\x94\xd0\xb2\xd0\xbe\xd0\xb4\xd1\x81\xd1\x82\xd0\xb2\xd0\xbe)', None), ('frwiki', 'Ma\xc5\x82e (\xc5\x81\xc3\xb3d\xc5\xba)', None)), 'claims': ({'property': 'P421', 'type': 'wikibase-entityid', 'numeric-id': 6655, 'entity-type': 'item', 'id': 'Q6655'}, {'entity-type': 'item', 'numeric-id': 6723, 'type': 'wikibase-entityid', 'property': 'P421', 'id': 'Q6723'}, {'numeric-id': 2460044, 'id': 'Q2460044', 'property': 'P131', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q3558970', 'numeric-id': 3558970, 'property': 'P31', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P17', 'id': 'Q36', 'numeric-id': 36}), 'title': 'Q6799297'}
{'type': 'item', 'id': 'Q6799381', 'labels': (('en', 'Delikta\xc5\x9f'),), 'descriptions': (('en', 'village in Sivas Province, Turkey'),), 'aliases': (('en', 'Delikta\xc5\x9f, Kangal'),), 'sitelinks': (('cewiki', '\xd0\x94\xd0\xb5\xd0\xbb\xd0\xb8\xd0\xba\xd1\x82\xd0\xb0\xd1\x88 (\xd0\x9a\xd0\xb0\xd0\xbd\xd0\xb3\xd0\xb0\xd0\xbb)', None), ('diqwiki', 'Delikta\xc5\x9f, Qan\xc4\x9fal', None), ('mswiki', 'Delikta\xc5\x9f, Kangal', None), ('ttwiki', '\xd0\x94\xd1\x8d\xd0\xbb\xd0\xb8\xd0\xba\xd1\x82\xd0\xb0\xd1\x88 (\xd0\x9a\xd0\xb0\xd0\xbd\xd0\xb3\xd0\xb0\xd0\xbb)', None), ('trwiki', 'Delikta\xc5\x9f, Kangal', None), ('enwiki', 'Delikta\xc5\x9f, Kangal', None), ('viwiki', 'Delikta\xc5\x9f, Kangal', None)), 'claims': ({'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q6760', 'numeric-id': 6760, 'property': 'P421'}, {'entity-type': 'item', 'numeric-id': 43, 'property': 'P17', 'id': 'Q43', 'type': 'wikibase-entityid'}, {'property': 'P131', 'type': 'wikibase-entityid', 'id': 'Q1003953', 'numeric-id': 1003953, 'entity-type': 'item'}, {'entity-type': 'item', 'numeric-id': 532, 'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q532'}), 'title': 'Q6799381'}
{'type': 'item', 'id': 'Q6799613', 'labels': (('en', 'Mbandjock'),), 'descriptions': (('en', 'commune of Cameroon'),), 'aliases': (), 'sitelinks': (('zh_min_nanwiki', 'Mbandjock (Haute-Sanaga)', None), ('rowiki', 'Mbandjock', None), ('mswiki', 'Mbandjock', None), ('ptwiki', 'Mbandjock', None), ('svwiki', 'Mbandjok', None), ('frwiki', 'Mbandjock (Haute-Sanaga)', None), ('cebwiki', 'Mbandjok', None), ('itwiki', 'Mbandjock', None), ('commonswiki', 'Category:Mbandjock', None), ('enwiki', 'Mbandjock', None), ('dewiki', 'Mbandjock', None), ('plwiki', 'Mbandjock', None), ('eswiki', 'Mbandjock (Haute-Sanaga)', None), ('swwiki', 'Mbandjock', None)), 'claims': ({'type': 'wikibase-entityid', 'numeric-id': 2443161, 'entity-type': 'item', 'property': 'P131', 'id': 'Q2443161'}, {'property': 'P31', 'numeric-id': 3076994, 'entity-type': 'item', 'id': 'Q3076994', 'type': 'wikibase-entityid'}, {'unit': 'http://www.wikidata.org/entity/Q11573', 'amount': '+516', 'type': 'quantity', 'property': 'P2044'}, {'numeric-id': 6655, 'property': 'P421', 'type': 'wikibase-entityid', 'id': 'Q6655', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'property': 'P17', 'id': 'Q1009', 'entity-type': 'item', 'numeric-id': 1009}, {'property': 'P373', 'value': 'Mbandjock', 'type': 'string'}), 'title': 'Q6799613'}
{'type': 'item', 'id': 'Q6799891', 'labels': (('en', 'Guy Rothkopf'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('hewiki', '\xd7\x92\xd7\x99\xd7\x90 \xd7\xa8\xd7\x95\xd7\x98\xd7\xa7\xd7\x95\xd7\xa4\xd7\xa3', None), ('commonswiki', 'Category:Guy Rothkopf', None)), 'claims': ({'type': 'wikibase-entityid', 'id': 'Q380075', 'entity-type': 'item', 'property': 'P106', 'numeric-id': 380075}, {'id': 'Q1159023', 'property': 'P735', 'type': 'wikibase-entityid', 'numeric-id': 1159023, 'entity-type': 'item'}, {'property': 'P31', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q5', 'numeric-id': 5}, {'property': 'P18', 'value': '\xd7\x93\xd7\xa8\' \xd7\x92\xd7\x99\xd7\x90 \xd7\xa8\xd7\x95\xd7\x98\xd7\xa7\xd7\x95\xd7\xa4\xd7\xa3, \xd7\xa2\xd7\x95"\xd7\x93.JPG', 'type': 'string'}, {'property': 'P373', 'type': 'string', 'value': 'Guy Rothkopf'}, {'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0, 'time': '+1969-08-15T00:00:00Z', 'property': 'P569', 'after': 0, 'precision': 11, 'type': 'time'}, {'id': 'Q6581097', 'property': 'P21', 'entity-type': 'item', 'numeric-id': 6581097, 'type': 'wikibase-entityid'}, {'numeric-id': 801, 'entity-type': 'item', 'id': 'Q801', 'type': 'wikibase-entityid', 'property': 'P27'}, {'numeric-id': 37575973, 'property': 'P734', 'type': 'wikibase-entityid', 'id': 'Q37575973', 'entity-type': 'item'}), 'title': 'Q6799891'}
{'type': 'item', 'id': 'Q6799924', 'labels': (('en', 'McAllister Island'),), 'descriptions': (('en', 'island in Nunavut, Canada'),), 'aliases': (), 'sitelinks': (('plwiki', 'McAllister Island', None), ('svwiki', 'McAllister Island', None), ('cebwiki', 'McAllister Island', None), ('enwiki', 'McAllister Island', None)), 'claims': ({'property': 'P206', 'type': 'wikibase-entityid', 'id': 'Q1004067', 'entity-type': 'item', 'numeric-id': 1004067}, {'type': 'wikibase-entityid', 'id': 'Q23442', 'property': 'P31', 'entity-type': 'item', 'numeric-id': 23442}, {'id': 'Q16', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 16, 'property': 'P17'}, {'id': 'Q2023', 'property': 'P131', 'numeric-id': 2023, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 85377, 'property': 'P361', 'id': 'Q85377'}), 'title': 'Q6799924'}
{'type': 'item', 'id': 'Q6800355', 'labels': (('en', 'McClintock High School'),), 'descriptions': (('en', 'high school in Arizona, United States'),), 'aliases': (), 'sitelinks': (('enwiki', 'McClintock High School', None),), 'claims': ({'id': 'Q17089570', 'entity-type': 'item', 'numeric-id': 17089570, 'property': 'P5353', 'type': 'wikibase-entityid'}, {'id': 'Q9826', 'numeric-id': 9826, 'property': 'P31', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'id': 'Q1080794', 'numeric-id': 1080794, 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'numeric-id': 30, 'entity-type': 'item', 'property': 'P17', 'type': 'wikibase-entityid', 'id': 'Q30'}, {'entity-type': 'item', 'numeric-id': 816, 'property': 'P131', 'type': 'wikibase-entityid', 'id': 'Q816'}, {'type': 'string', 'value': '182410', 'property': 'P12026'}, {'property': 'P10689', 'type': 'string', 'value': '30649902'}, {'property': 'P856', 'type': 'string', 'value': 'https://www.tempeunion.org/mcclintock'}, {'precision': 9, 'time': '+1964-00-00T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0, 'after': 0, 'property': 'P571', 'timezone': 0, 'type': 'time'}), 'title': 'Q6800355'}
{'type': 'item', 'id': 'Q6800379', 'labels': (('en', 'McCluer South-Berkeley High School'),), 'descriptions': (('en', 'high school in Missouri, United States'),), 'aliases': (), 'sitelinks': (('enwiki', 'STEAM Academy at McCluer South-Berkeley', None),), 'claims': ({'numeric-id': 30, 'property': 'P17', 'id': 'Q30', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 9826, 'id': 'Q9826', 'property': 'P31', 'type': 'wikibase-entityid'}, {'type': 'string', 'value': '062280', 'property': 'P10898'}, {'numeric-id': 1581, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P131', 'id': 'Q1581'}, {'property': 'P5353', 'entity-type': 'item', 'numeric-id': 5444222, 'id': 'Q5444222', 'type': 'wikibase-entityid'}, {'value': 'http://www.edline.net/pages/McCluer_South-Berkeley_High', 'type': 'string', 'property': 'P856'}, {'property': 'P571', 'after': 0, 'time': '+2004-00-00T00:00:00Z', 'timezone': 0, 'type': 'time', 'precision': 9, 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}), 'title': 'Q6800379'}
{'type': 'item', 'id': 'Q6800389', 'labels': (('en', 'McClung'),), 'descriptions': (('en', 'Ghost town in Greenbrier County, West Virginia'),), 'aliases': (('en', 'McClung, West Virginia'), ('en', 'McClung, WV')), 'sitelinks': (('enwiki', 'McClung, West Virginia', None),), 'claims': ({'type': 'quantity', 'unit': 'http://www.wikidata.org/entity/Q3710', 'amount': '+2979', 'property': 'P2044'}, {'id': 'Q74047', 'numeric-id': 74047, 'type': 'wikibase-entityid', 'property': 'P31', 'entity-type': 'item'}, {'property': 'P17', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q30', 'numeric-id': 30}, {'type': 'wikibase-entityid', 'property': 'P131', 'id': 'Q494203', 'entity-type': 'item', 'numeric-id': 494203}), 'title': 'Q6800389'}
{'type': 'item', 'id': 'Q6800694', 'labels': (('en', 'McCreary County v. American Civil Liberties Union'),), 'descriptions': (('en', 'United States Supreme Court case'),), 'aliases': (), 'sitelinks': (('dewiki', 'McCreary County v. ACLU', None), ('enwiki', 'McCreary County v. American Civil Liberties Union', None)), 'claims': ({'entity-type': 'item', 'id': 'Q472547', 'type': 'wikibase-entityid', 'numeric-id': 472547, 'property': 'P5826'}, {'type': 'wikibase-entityid', 'property': 'P4884', 'id': 'Q11201', 'numeric-id': 11201, 'entity-type': 'item'}, {'id': 'Q19692072', 'entity-type': 'item', 'property': 'P31', 'numeric-id': 19692072, 'type': 'wikibase-entityid'}, {'id': 'Q302686', 'type': 'wikibase-entityid', 'numeric-id': 302686, 'property': 'P1433', 'entity-type': 'item'}, {'value': '545 U.S. 844', 'type': 'string', 'property': 'P1031'}, {'type': 'string', 'value': '125 S. Ct. 2722', 'property': 'P1031'}, {'type': 'string', 'value': '162 L. Ed. 2d 729', 'property': 'P1031'}, {'property': 'P1031', 'type': 'string', 'value': '2005 U.S. LEXIS 5211'}, {'entity-type': 'item', 'id': 'Q7099379', 'property': 'P793', 'numeric-id': 7099379, 'type': 'wikibase-entityid'}, {'property': 'P793', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q16513426', 'numeric-id': 16513426}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P17', 'id': 'Q30', 'numeric-id': 30}, {'before': 0, 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'time': '+2005-06-27T00:00:00Z', 'timezone': 0, 'type': 'time', 'property': 'P577'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q30', 'property': 'P1001', 'numeric-id': 30}), 'title': 'Q6800694'}
{'type': 'item', 'id': 'Q6801211', 'labels': (('en', 'McGavock Confederate Cemetery'),), 'descriptions': (('en', 'Civil War cemetery in Franklin, Tennessee'),), 'aliases': (), 'sitelinks': (('enwiki', 'McGavock Confederate Cemetery', None),), 'claims': ({'property': 'P18', 'type': 'string', 'value': 'McGavock Confederate Cemetery.JPG'}, {'type': 'wikibase-entityid', 'numeric-id': 1241568, 'property': 'P31', 'entity-type': 'item', 'id': 'Q1241568'}, {'value': '382367910', 'property': 'P10689', 'type': 'string'}, {'id': 'Q30', 'numeric-id': 30, 'property': 'P17', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'string', 'property': 'P856', 'value': 'http://www.mcgavockcemetery.org/'}, {'property': 'P131', 'entity-type': 'item', 'id': 'Q501948', 'type': 'wikibase-entityid', 'numeric-id': 501948}), 'title': 'Q6801211'}
{'type': 'item', 'id': 'Q6801584', 'labels': (('en', 'McHenry Township'),), 'descriptions': (('en', 'township in McHenry County, Illinois'),), 'aliases': (), 'sitelinks': (('enwiki', 'McHenry Township, McHenry County, Illinois', None), ('frwiki', 'McHenry Township (Illinois)', None), ('zhwiki', '\xe9\xba\xa5\xe5\x85\x8b\xe4\xba\xa8\xe5\x88\xa9\xe9\x8e\xae\xe5\x8d\x80 (\xe4\xbc\x8a\xe5\x88\xa9\xe8\xab\xbe\xe4\xbc\x8a\xe5\xb7\x9e\xe9\xba\xa5\xe5\x85\x8b\xe4\xba\xa8\xe5\x88\xa9)', None), ('viwiki', 'X\xc3\xa3 McHenry, Qu\xe1\xba\xadn McHenry, Illinois', None), ('eswiki', 'Municipio de McHenry (Illinois)', None), ('urwiki', '\xd9\x85\xda\xa9 \xdb\x81\xdb\x8c\xd9\x86\xd8\xb1\xdb\x8c \xd9\xb9\xd8\xa7\xd8\xa4\xd9\x86 \xd8\xb4\xd9\xbe\xd8\x8c \xd9\x85\xda\xa9 \xdb\x81\xdb\x8c\xd9\x86\xd8\xb1\xdb\x8c \xda\xa9\xd8\xa7\xd8\xa4\xd9\x86\xd9\xb9\xdb\x8c\xd8\x8c \xd8\xa7\xd9\x84\xdb\x8c\xd9\x86\xd9\x88\xd8\xa7\xd8\xa6\xdb\x92', None), ('euwiki', 'McHenry udalerria, McHenry konderria (Illinois)', None)), 'claims': ({'type': 'quantity', 'property': 'P10622', 'amount': '+39817', 'unit': 'http://www.wikidata.org/entity/Q4917'}, {'type': 'string', 'property': 'P242', 'value': 'Map highlighting McHenry Township, McHenry County, Illinois.svg'}, {'numeric-id': 17198545, 'type': 'wikibase-entityid', 'id': 'Q17198545', 'property': 'P31', 'entity-type': 'item'}, {'amount': '+18262', 'lowerBound': '+17719', 'upperBound': '+18805', 'unit': '1', 'property': 'P1538', 'type': 'quantity'}, {'numeric-id': 487403, 'id': 'Q487403', 'property': 'P131', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q30', 'numeric-id': 30, 'type': 'wikibase-entityid', 'property': 'P17'}, {'unit': 'http://www.wikidata.org/entity/Q232291', 'type': 'quantity', 'amount': '+48.03', 'property': 'P2046'}, {'type': 'string', 'value': 'https://www.mchenrytownship.com/', 'property': 'P856'}, {'unit': '1', 'property': 'P1082', 'type': 'quantity', 'amount': '+46268'}, {'type': 'quantity', 'unit': '1', 'amount': '+47653', 'property': 'P1082'}), 'title': 'Q6801584'}
{'type': 'item', 'id': 'Q6801639', 'labels': (('en', 'McIntosh Point, Saskatchewan'),), 'descriptions': (('en', 'hamlet in Saskatchewan, Canada'),), 'aliases': (), 'sitelinks': (('enwiki', 'McIntosh Point', None),), 'claims': ({'id': 'Q16', 'property': 'P17', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 16}, {'id': 'Q269528', 'numeric-id': 269528, 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P131', 'numeric-id': 1989, 'type': 'wikibase-entityid', 'id': 'Q1989', 'entity-type': 'item'}), 'title': 'Q6801639'}
{'type': 'item', 'id': 'Q6801695', 'labels': (('en', 'McKay Creek'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('nnwiki', 'McKay Creek', None), ('cebwiki', 'McKay Creek (suba sa Antartika)', None), ('enwiki', 'McKay Creek', None), ('svwiki', 'McKay Creek', None), ('dewiki', 'McKay Creek', None)), 'claims': ({'id': 'Q4022', 'entity-type': 'item', 'numeric-id': 4022, 'property': 'P31', 'type': 'wikibase-entityid'}, {'property': 'P17'}, {'numeric-id': 51, 'property': 'P30', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q51'}, {'id': 'Q21590062', 'numeric-id': 21590062, 'property': 'P131', 'type': 'wikibase-entityid', 'entity-type': 'item'}), 'title': 'Q6801695'}
{'type': 'item', 'id': 'Q6802177', 'labels': (('en', 'McLellan Galleries'),), 'descriptions': (('en', 'exhibition space in Glasgow, Scotland, UK'),), 'aliases': (), 'sitelinks': (('enwiki', 'McLellan Galleries', None), ('dawiki', 'McLellan Galleries', None)), 'claims': ({'numeric-id': 10729125, 'id': 'Q10729125', 'entity-type': 'item', 'property': 'P1435', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'numeric-id': 55934339, 'property': 'P131', 'entity-type': 'item', 'id': 'Q55934339'}, {'entity-type': 'item', 'id': 'Q145', 'numeric-id': 145, 'type': 'wikibase-entityid', 'property': 'P17'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q530296', 'property': 'P7959', 'numeric-id': 530296}, {'id': 'Q17809726', 'entity-type': 'item', 'numeric-id': 17809726, 'property': 'P527', 'type': 'wikibase-entityid'}, {'id': 'Q17809766', 'entity-type': 'item', 'numeric-id': 17809766, 'property': 'P527', 'type': 'wikibase-entityid'}, {'property': 'P527', 'numeric-id': 17809739, 'type': 'wikibase-entityid', 'id': 'Q17809739', 'entity-type': 'item'}, {'id': 'Q17809754', 'numeric-id': 17809754, 'property': 'P527', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'value': 'Glasgow, the McLellan Galleries building - geograph.org.uk - 1534159.jpg', 'property': 'P18', 'type': 'string'}, {'property': 'P31', 'id': 'Q57659484', 'numeric-id': 57659484, 'type': 'wikibase-entityid', 'entity-type': 'item'}), 'title': 'Q6802177'}
{'type': 'item', 'id': 'Q6802330', 'labels': (('en', 'McMaster University Medical Centre'),), 'descriptions': (('en', 'hospital in Ontario, Canada'),), 'aliases': (), 'sitelinks': (('enwiki', 'McMaster University Medical Centre', None), ('arzwiki', '\xd8\xa7\xd9\x84\xd9\x85\xd8\xb1\xd9\x83\xd8\xb2 \xd8\xa7\xd9\x84\xd8\xb7\xd8\xa8\xd9\x89 \xd9\x84\xd8\xac\xd8\xa7\xd9\x85\xd8\xb9\xd8\xa9 \xd9\x85\xd8\xa7\xd9\x83\xd9\x85\xd8\xa7\xd8\xb3\xd8\xaa\xd8\xb1', None)), 'claims': ({'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q16', 'numeric-id': 16, 'property': 'P17'}, {'value': 'http://www.hamiltonhealthsciences.ca/body.cfm?ID=232', 'type': 'string', 'property': 'P856'}, {'value': 'McMasterUMedical.jpg', 'type': 'string', 'property': 'P18'}, {'entity-type': 'item', 'numeric-id': 632891, 'property': 'P1416', 'type': 'wikibase-entityid', 'id': 'Q632891'}, {'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'precision': 9, 'time': '+1972-00-00T00:00:00Z', 'after': 0, 'property': 'P571', 'type': 'time'}, {'numeric-id': 5644977, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P749', 'id': 'Q5644977'}, {'entity-type': 'item', 'property': 'P131', 'id': 'Q133116', 'numeric-id': 133116, 'type': 'wikibase-entityid'}, {'amount': '+365', 'property': 'P6801', 'type': 'quantity', 'unit': '1'}, {'type': 'wikibase-entityid', 'id': 'Q16917', 'entity-type': 'item', 'numeric-id': 16917, 'property': 'P31'}), 'title': 'Q6802330'}
{'type': 'item', 'id': 'Q6802810', 'labels': (('en', 'Mckeenstreet Music'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('enwiki', 'Mckeenstreet Music', None),), 'claims': ({'property': 'P31', 'id': 'Q4830453', 'type': 'wikibase-entityid', 'numeric-id': 4830453, 'entity-type': 'item'},), 'title': 'Q6802810'}
{'type': 'item', 'id': 'Q6803140', 'labels': (('en', 'Mead Johnson River-Rail-Truck Terminal and Warehouse'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('enwiki', 'Mead Johnson River-Rail-Truck Terminal and Warehouse', None), ('commonswiki', 'Category:Mead Johnson River-Rail-Truck Terminal and Warehouse', None)), 'claims': ({'property': 'P31', 'entity-type': 'item', 'numeric-id': 811430, 'id': 'Q811430', 'type': 'wikibase-entityid'}, {'type': 'string', 'property': 'P18', 'value': 'Mead Johnson River-Rail-Truck Terminal.jpg'}, {'type': 'string', 'property': 'P373', 'value': 'Mead Johnson River-Rail-Truck Terminal and Warehouse'}, {'entity-type': 'item', 'numeric-id': 30, 'property': 'P17', 'type': 'wikibase-entityid', 'id': 'Q30'}, {'type': 'wikibase-entityid', 'property': 'P131', 'entity-type': 'item', 'id': 'Q1415', 'numeric-id': 1415}, {'numeric-id': 19558910, 'property': 'P1435', 'id': 'Q19558910', 'entity-type': 'item', 'type': 'wikibase-entityid'}), 'title': 'Q6803140'}
{'type': 'item', 'id': 'Q6803456', 'labels': (('en', 'Meadowview Biological Research Station'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('enwiki', 'Meadowview Biological Research Station', None),), 'claims': ({'numeric-id': 195339, 'id': 'Q195339', 'property': 'P31', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'property': 'P31', 'id': 'Q163740', 'entity-type': 'item', 'numeric-id': 163740}, {'type': 'string', 'value': 'https://www.pitcherplant.org/', 'property': 'P856'}, {'type': 'string', 'property': 'P2013', 'value': 'Pitcherplants'}, {'type': 'wikibase-entityid', 'id': 'Q119295170', 'entity-type': 'item', 'property': 'P112', 'numeric-id': 119295170}, {'timezone': 0, 'type': 'time', 'precision': 9, 'after': 0, 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P571', 'time': '+1995-01-01T00:00:00Z'}, {'id': 'Q30', 'numeric-id': 30, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P17'}), 'title': 'Q6803456'}
{'type': 'item', 'id': 'Q6803767', 'labels': (('en', 'gross national income'),), 'descriptions': (('en', 'total domestic and foreign output claimed by residents of a country, consisting of gross domestic product, plus factor incomes earned by foreign residents, minus income earned in the domestic economy by nonresidents'),), 'aliases': (('en', 'GNI'),), 'sitelinks': (('azwiki', '\xc3\x9cmumi milli g\xc9\x99lir', None), ('jawiki', '\xe5\x9b\xbd\xe6\xb0\x91\xe7\xb7\x8f\xe6\x89\x80\xe5\xbe\x97', None), ('tawiki', '\xe0\xae\xae\xe0\xaf\x8a\xe0\xae\xa4\xe0\xaf\x8d\xe0\xae\xa4 \xe0\xae\xa4\xe0\xaf\x87\xe0\xae\x9a\xe0\xae\xbf\xe0\xae\xaf \xe0\xae\xb5\xe0\xae\xb0\xe0\xaf\x81\xe0\xae\xae\xe0\xae\xbe\xe0\xae\xa9\xe0\xae\xae\xe0\xaf\x8d', None), ('mswiki', 'Pendapatan negara kasar', None), ('hrwiki', 'Bruto nacionalni dohodak', None), ('kkwiki', '\xd0\x96\xd0\xb0\xd0\xbb\xd0\xbf\xd1\x8b \xd2\xb1\xd0\xbb\xd1\x82\xd1\x82\xd1\x8b\xd2\x9b \xd1\x82\xd0\xb0\xd0\xb1\xd1\x8b\xd1\x81', None), ('dewiki', 'Bruttonationaleinkommen', None), ('idwiki', 'Pendapatan nasional bruto', None), ('viwiki', 'Thu nh\xe1\xba\xadp qu\xe1\xbb\x91c d\xc3\xa2n', None), ('eswiki', 'Renta Nacional Bruta', None), ('hiwiki', '\xe0\xa4\xb8\xe0\xa4\x95\xe0\xa4\xb2 \xe0\xa4\xb0\xe0\xa4\xbe\xe0\xa4\xb7\xe0\xa5\x8d\xe0\xa4\x9f\xe0\xa5\x8d\xe0\xa4\xb0\xe0\xa5\x80\xe0\xa4\xaf \xe0\xa4\x86\xe0\xa4\xaf', None), ('fawiki', '\xd8\xaf\xd8\xb1\xd8\xa2\xd9\x85\xd8\xaf \xd9\x86\xd8\xa7\xd8\xae\xd8\xa7\xd9\x84\xd8\xb5 \xd9\x85\xd9\x84\xdb\x8c', None), ('itwiki', 'Reddito nazionale lordo', None), ('cawiki', 'Renda Nacional Bruta', None), ('zh_yuewiki', '\xe5\x9c\x8b\xe6\xb0\x91\xe6\x94\xb6\xe5\x85\xa5', None), ('elwiki', '\xce\x91\xce\xba\xce\xb1\xce\xb8\xce\xac\xcf\x81\xce\xb9\xcf\x83\xcf\x84\xce\xbf \xce\xb5\xce\xb8\xce\xbd\xce\xb9\xce\xba\xcf\x8c \xce\xb5\xce\xb9\xcf\x83\xcf\x8c\xce\xb4\xce\xb7\xce\xbc\xce\xb1', None), ('zhwiki', '\xe5\x9c\x8b\xe6\xb0\x91\xe6\x94\xb6\xe5\x85\xa5', None), ('uzwiki', 'Yalpi milliy mahsulot', None), ('frwiki', 'Revenu national brut', None), ('svwiki', 'Bruttonationalinkomst', None), ('skwiki', 'Hrub\xc3\xbd n\xc3\xa1rodn\xc3\xbd d\xc3\xb4chodok', None), ('crhwiki', 'Umumiy i\xc3\xa7ki mahsulat', None), ('enwiki', 'Gross national income', None), ('nlwiki', 'Bruto nationaal inkomen', None), ('hywiki', '\xd5\x80\xd5\xa1\xd5\xb4\xd5\xa1\xd5\xad\xd5\xa1\xd5\xbc\xd5\xb6 \xd5\xa1\xd5\xa6\xd5\xa3\xd5\xa1\xd5\xb5\xd5\xab\xd5\xb6 \xd5\xa5\xd5\xaf\xd5\xa1\xd5\xb4\xd5\xb8\xd6\x82\xd5\xbf', None), ('urwiki', '\xd9\x85\xd8\xac\xd9\x85\xd9\x88\xd8\xb9\xdb\x8c \xd9\x82\xd9\x88\xd9\x85\xdb\x8c \xd8\xa2\xd9\x85\xd8\xaf\xd9\x86\xdb\x8c', None), ('nowiki', 'Bruttonasjonalinntekt', None), ('kowiki', '\xea\xb5\xad\xeb\xaf\xbc \xec\xb4\x9d\xec\x86\x8c\xeb\x93\x9d', None), ('dawiki', 'Bruttonationalindkomst', None), ('arwiki', '\xd8\xa7\xd9\x84\xd8\xaf\xd8\xae\xd9\x84 \xd8\xa7\xd9\x84\xd9\x82\xd9\x88\xd9\x85\xd9\x8a \xd8\xa7\xd9\x84\xd8\xa5\xd8\xac\xd9\x85\xd8\xa7\xd9\x84\xd9\x8a', None), ('eowiki', 'Malneta nacia enspezo', None), ('fiwiki', 'Bruttokansantulo', None), ('enwikiquote', 'Gross National Product', None), ('warwiki', 'Kabug-osan han kinita han nasod', None), ('commonswiki', 'Category:Gross national income', None), ('ruwiki', '\xd0\x92\xd0\xb0\xd0\xbb\xd0\xbe\xd0\xb2\xd0\xbe\xd0\xb9 \xd0\xbd\xd0\xb0\xd1\x86\xd0\xb8\xd0\xbe\xd0\xbd\xd0\xb0\xd0\xbb\xd1\x8c\xd0\xbd\xd1\x8b\xd0\xb9 \xd0\xb4\xd0\xbe\xd1\x85\xd0\xbe\xd0\xb4', None), ('lvwiki', 'Nacion\xc4\x81lais kopien\xc4\x81kums', None), ('arzwiki', '\xd8\xa7\xd9\x84\xd8\xaf\xd8\xae\xd9\x84 \xd8\xa7\xd9\x84\xd9\x82\xd9\x88\xd9\x85\xd9\x89', None), ('ltwiki', 'Bendrosios nacionalin\xc4\x97s pajamos', None), ('plwiki', 'Doch\xc3\xb3d narodowy', None), ('sdwiki', '\xda\xaa\xd9\x84 \xd9\x82\xd9\x88\xd9\x85\xd9\x8a \xd8\xa2\xd9\x85\xd8\xaf\xd9\x86\xd9\x8a', None), ('ukwiki', '\xd0\x92\xd0\xb0\xd0\xbb\xd0\xbe\xd0\xb2\xd0\xb8\xd0\xb9 \xd0\xbd\xd0\xb0\xd1\x86\xd1\x96\xd0\xbe\xd0\xbd\xd0\xb0\xd0\xbb\xd1\x8c\xd0\xbd\xd0\xb8\xd0\xb9 \xd0\xb4\xd0\xbe\xd1\x85\xd1\x96\xd0\xb4', None)), 'claims': ({'property': 'P11514', 'value': 'valovoi-natsional-nyi-dokhod-6f91f4', 'type': 'string'}, {'value': 'economics-econometrics-and-finance/gross-national-income', 'property': 'P10376', 'type': 'string'}, {'property': 'P10376', 'value': 'social-sciences/gross-national-income', 'type': 'string'}, {'property': 'P31', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q1167393', 'numeric-id': 1167393}, {'entity-type': 'item', 'numeric-id': 182859, 'property': 'P1889', 'type': 'wikibase-entityid', 'id': 'Q182859'}, {'property': 'P10283', 'value': 'C110246401', 'type': 'string'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q1057397', 'property': 'P279', 'numeric-id': 1057397}, {'property': 'P373', 'type': 'string', 'value': 'Gross national income'}), 'title': 'Q6803767'}
{'type': 'item', 'id': 'Q6804163', 'labels': (('en', 'Measurable Riemann mapping theorem'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('enwiki', 'Measurable Riemann mapping theorem', None),), 'claims': ({'type': 'string', 'value': '\\partial_{\\overline{z}} f(z) = \\mu(z) \\partial_z f(z)', 'property': 'P2534'}, {'property': 'P31', 'entity-type': 'item', 'numeric-id': 65943, 'type': 'wikibase-entityid', 'id': 'Q65943'}, {'property': 'P6104', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q8487137', 'numeric-id': 8487137}), 'title': 'Q6804163'}
{'type': 'item', 'id': 'Q6804162', 'labels': (('en', 'Meast'),), 'descriptions': (('en', 'album by Mike Paradinas'),), 'aliases': (), 'sitelinks': (('enwiki', 'Meast', None),), 'claims': ({'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'property': 'P577', 'time': '+2004-00-00T00:00:00Z', 'type': 'time', 'before': 0, 'precision': 9}, {'property': 'P264', 'type': 'wikibase-entityid', 'id': 'Q2091609', 'entity-type': 'item', 'numeric-id': 2091609}, {'id': 'Q482994', 'entity-type': 'item', 'numeric-id': 482994, 'property': 'P31', 'type': 'wikibase-entityid'}, {'property': 'P175', 'id': 'Q446572', 'numeric-id': 446572, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'entity-type': 'item', 'property': 'P136', 'id': 'Q817138', 'numeric-id': 817138, 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 5508148, 'type': 'wikibase-entityid', 'property': 'P155', 'id': 'Q5508148'}), 'title': 'Q6804162'}
{'type': 'item', 'id': 'Q6804451', 'labels': (('en', 'Da\xc4\x9fdanc\xc4\xb1k'),), 'descriptions': (('en', 'village in Araban, Gaziantep, Turkey'),), 'aliases': (('en', 'Da\xc4\x9fdanc\xc4\xb1k, Araban'),), 'sitelinks': (('cewiki', '\xd0\x94\xd0\xb0\xd0\xb3\xd3\x80\xd0\xb4\xd0\xb0\xd0\xbd\xd0\xb4\xd0\xb6\xd0\xb8\xd0\xba (\xd0\x90\xd1\x80\xd0\xb0\xd0\xb1\xd0\xb0\xd0\xbd)', None), ('viwiki', 'Da\xc4\x9fdanc\xc4\xb1k, Araban', None), ('enwiki', 'Da\xc4\x9fdanc\xc4\xb1k, Araban', None), ('trwiki', 'Da\xc4\x9fdanc\xc4\xb1k, Araban', None), ('ttwiki', '\xd0\x94\xd0\xb0\xd0\xb3\xd0\xb4\xd0\xb0\xd0\xbd\xd2\x97\xd1\x8b\xd0\xba (\xd0\x90\xd1\x80\xd0\xb0\xd0\xb1\xd0\xb0\xd0\xbd)', None)), 'claims': ({'type': 'wikibase-entityid', 'numeric-id': 1529096, 'property': 'P31', 'id': 'Q1529096', 'entity-type': 'item'}, {'property': 'P17', 'id': 'Q43', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 43}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q623678', 'numeric-id': 623678, 'property': 'P131'}), 'title': 'Q6804451'}
{'type': 'item', 'id': 'Q6804842', 'labels': (('en', 'Mecodema puiakium'),), 'descriptions': (('en', 'species of insect'),), 'aliases': (), 'sitelinks': (('commonswiki', 'Category:Mecodema puiakium', None), ('cebwiki', 'Mecodema puiakium', None), ('specieswiki', 'Mecodema puiakium', None), ('enwiki', 'Mecodema puiakium', None), ('eswiki', 'Mecodema puiakium', None)), 'claims': ({'entity-type': 'item', 'property': 'P171', 'numeric-id': 1382067, 'id': 'Q1382067', 'type': 'wikibase-entityid'}, {'id': 'Q16521', 'type': 'wikibase-entityid', 'property': 'P31', 'numeric-id': 16521, 'entity-type': 'item'}, {'property': 'P10585', 'value': '738N9', 'type': 'string'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 7432, 'property': 'P105', 'id': 'Q7432'}, {'type': 'string', 'property': 'P225', 'value': 'Mecodema puiakium'}, {'property': 'P18', 'value': 'Mecodema puiakium.jpg', 'type': 'string'}, {'property': 'P373', 'value': 'Mecodema puiakium', 'type': 'string'}, {'language': 'mul', 'type': 'monolingualtext', 'property': 'P1813', 'text': 'M. puiakium'}), 'title': 'Q6804842'}
{'type': 'item', 'id': 'Q6805136', 'labels': (('en', 'Medanta'),), 'descriptions': (('en', 'An Indian multi-specialty medical institute'),), 'aliases': (), 'sitelinks': (('hiwiki', '\xe0\xa4\xae\xe0\xa5\x87\xe0\xa4\xa6\xe0\xa4\xbe\xe0\xa4\x82\xe0\xa4\xa4\xe0\xa4\xbe', None), ('enwiki', 'Medanta', None)), 'claims': ({'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 668, 'id': 'Q668', 'property': 'P17'}, {'numeric-id': 31207, 'entity-type': 'item', 'property': 'P452', 'type': 'wikibase-entityid', 'id': 'Q31207'}, {'numeric-id': 238508, 'type': 'wikibase-entityid', 'id': 'Q238508', 'entity-type': 'item', 'property': 'P131'}, {'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+2009-00-00T00:00:00Z', 'timezone': 0, 'property': 'P571', 'type': 'time', 'after': 0, 'precision': 9}, {'numeric-id': 16917, 'id': 'Q16917', 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q6965834', 'type': 'wikibase-entityid', 'property': 'P112', 'numeric-id': 6965834, 'entity-type': 'item'}, {'type': 'string', 'value': 'http://www.medanta.org/', 'property': 'P856'}, {'amount': '+1250', 'property': 'P6801', 'unit': '1', 'type': 'quantity'}), 'title': 'Q6805136'}
{'type': 'item', 'id': 'Q6805344', 'labels': (('en', 'Medhat Pasha Souq'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('cawiki', 'Soc de Mithat Paix\xc3\xa0', None), ('enwiki', 'Midhat Pasha Souq', None), ('zhwiki', '\xe7\xb1\xb3\xe5\xbe\xb7\xe5\x93\x88\xe7\x89\xb9\xe5\xb8\x95\xe5\xa4\x8f\xe9\x9b\x86\xe5\xb8\x82', None), ('commonswiki', 'Category:Suq Midhat Pa\xc5\x9fa', None), ('arzwiki', '\xd8\xb3\xd9\x88\xd9\x82 \xd9\x85\xd8\xaf\xd8\xad\xd8\xaa \xd8\xa8\xd8\xa7\xd8\xb4\xd8\xa7', None), ('arwiki', '\xd8\xb3\xd9\x88\xd9\x82 \xd9\x85\xd8\xaf\xd8\xad\xd8\xaa \xd8\xa8\xd8\xa7\xd8\xb4\xd8\xa7', None), ('itwiki', 'Midhat Pasha souq', None)), 'claims': ({'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q369930', 'numeric-id': 369930, 'property': 'P138'}, {'numeric-id': 858, 'property': 'P17', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q858'}, {'property': 'P18', 'value': 'Souq Medhat Pasha 02.jpg', 'type': 'string'}, {'numeric-id': 330284, 'id': 'Q330284', 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'entity-type': 'item', 'property': 'P31', 'numeric-id': 3678596, 'id': 'Q3678596', 'type': 'wikibase-entityid'}, {'type': 'string', 'property': 'P373', 'value': 'Suq Midhat Pa\xc5\x9fa'}, {'property': 'P131', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 3766, 'id': 'Q3766'}), 'title': 'Q6805344'}
{'type': 'item', 'id': 'Q6805550', 'labels': (('en', 'Media Sustainability Index'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('ukwiki', '\xd0\x86\xd0\xbd\xd0\xb4\xd0\xb5\xd0\xba\xd1\x81 \xd1\x81\xd1\x82\xd1\x96\xd0\xb9\xd0\xba\xd0\xbe\xd1\x81\xd1\x82\xd1\x96 \xd0\xbc\xd0\xb5\xd0\xb4\xd1\x96\xd0\xb0', None), ('enwiki', 'Media Sustainability Index', None)), 'claims': (), 'title': 'Q6805550'}
{'type': 'item', 'id': 'Q6805636', 'labels': (('en', 'media in Bia\xc5\x82ystok'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('enwiki', 'Media in Bia\xc5\x82ystok', None),), 'claims': ({'type': 'string', 'value': 'Media of Bia\xc5\x82ystok', 'property': 'P373'}, {'id': 'Q74817647', 'type': 'wikibase-entityid', 'numeric-id': 74817647, 'property': 'P31', 'entity-type': 'item'}, {'id': 'Q9561281', 'property': 'P910', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 9561281}, {'id': 'Q340169', 'numeric-id': 340169, 'entity-type': 'item', 'property': 'P1269', 'type': 'wikibase-entityid'}), 'title': 'Q6805636'}
{'type': 'item', 'id': 'Q6805852', 'labels': (('en', 'media of Albania'),), 'descriptions': (('en', 'overview of mass media in Albania'),), 'aliases': (), 'sitelinks': (('itwiki', 'Media in Albania', None), ('enwiki', 'Mass media in Albania', None)), 'claims': ({'type': 'string', 'value': 'Media of Albania', 'property': 'P373'}, {'entity-type': 'item', 'id': 'Q110812553', 'numeric-id': 110812553, 'property': 'P31', 'type': 'wikibase-entityid'}, {'id': 'Q222', 'property': 'P17', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 222}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q8230726', 'property': 'P910', 'numeric-id': 8230726}), 'title': 'Q6805852'}
{'type': 'item', 'id': 'Q6805899', 'labels': (('en', 'media of Latin America'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('enwiki', 'Media of Latin America', None),), 'claims': ({'numeric-id': 6893023, 'property': 'P910', 'id': 'Q6893023', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'numeric-id': 12585, 'entity-type': 'item', 'id': 'Q12585', 'property': 'P276'}, {'entity-type': 'item', 'id': 'Q74817647', 'numeric-id': 74817647, 'type': 'wikibase-entityid', 'property': 'P31'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 11033, 'id': 'Q11033', 'property': 'P1269'}), 'title': 'Q6805899'}
{'type': 'item', 'id': 'Q6805966', 'labels': (('en', 'media of the United Arab Emirates'),), 'descriptions': (), 'aliases': (('en', 'media in UAE'), ('en', 'media of UAE'), ('en', 'the United Arab Emirates media'), ('en', 'United Arab Emirates media')), 'sitelinks': (('arwiki', '\xd8\xa7\xd9\x84\xd8\xa5\xd8\xb9\xd9\x84\xd8\xa7\xd9\x85 \xd9\x81\xd9\x8a \xd8\xa7\xd9\x84\xd8\xa5\xd9\x85\xd8\xa7\xd8\xb1\xd8\xa7\xd8\xaa', None), ('enwiki', 'Mass media in the United Arab Emirates', None)), 'claims': ({'id': 'Q110812553', 'numeric-id': 110812553, 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'value': 'Media of the United Arab Emirates', 'property': 'P373', 'type': 'string'}, {'entity-type': 'item', 'id': 'Q878', 'property': 'P17', 'type': 'wikibase-entityid', 'numeric-id': 878}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q6893261', 'numeric-id': 6893261, 'property': 'P910'}), 'title': 'Q6805966'}
{'type': 'item', 'id': 'Q6806072', 'labels': (('en', 'Medial pentagonal hexecontahedron'),), 'descriptions': (('en', 'star polyhedron with 60 faces'),), 'aliases': (), 'sitelinks': (('enwiki', 'Medial pentagonal hexecontahedron', None), ('slwiki', 'Srednji rombski triakontaeder', None), ('eswiki', 'Mediano hexecontaedro pentagonal', None)), 'claims': ({'numeric-id': 8487137, 'entity-type': 'item', 'id': 'Q8487137', 'property': 'P6104', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q83769', 'numeric-id': 83769, 'property': 'P1322', 'entity-type': 'item'}, {'id': 'Q1481248', 'entity-type': 'item', 'numeric-id': 1481248, 'property': 'P279', 'type': 'wikibase-entityid'}, {'type': 'string', 'property': 'P18', 'value': 'DU40 medial pentagonal hexecontahedron.png'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 26401, 'id': 'Q26401', 'property': 'P2670'}, {'numeric-id': 26382, 'id': 'Q26382', 'property': 'P2670', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P2670', 'entity-type': 'item', 'id': 'Q3064117', 'numeric-id': 3064117, 'type': 'wikibase-entityid'}), 'title': 'Q6806072'}
{'type': 'item', 'id': 'Q6806096', 'labels': (('en', 'Mediala'),), 'descriptions': (('en', 'genus of insects'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mediala', None), ('specieswiki', 'Mediala', None)), 'claims': ({'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 6008618, 'property': 'P1889', 'id': 'Q6008618'}, {'entity-type': 'item', 'numeric-id': 16521, 'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q16521'}, {'id': 'Q34740', 'property': 'P105', 'numeric-id': 34740, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P171', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q21225494', 'numeric-id': 21225494}, {'property': 'P225', 'type': 'string', 'value': 'Mediala'}), 'title': 'Q6806096'}
{'type': 'item', 'id': 'Q6806123', 'labels': (('en', 'median preoptic nucleus'),), 'descriptions': (('en', 'Nucleus in the anterior hypothalamus'),), 'aliases': (), 'sitelinks': (('enwiki', 'Median preoptic nucleus', None),), 'claims': ({'type': 'wikibase-entityid', 'numeric-id': 66590385, 'entity-type': 'item', 'id': 'Q66590385', 'property': 'P279'}, {'property': 'P3982', 'type': 'string', 'value': 'nucleus preopticus medianus'}, {'entity-type': 'item', 'numeric-id': 112826905, 'id': 'Q112826905', 'property': 'P31', 'type': 'wikibase-entityid'}, {'property': 'P10283', 'value': 'C2781298622', 'type': 'string'}), 'title': 'Q6806123'}
{'type': 'item', 'id': 'Q6806379', 'labels': (('en', 'Reuben Gronau'),), 'descriptions': (('en', 'Israeli American economist'),), 'aliases': (), 'sitelinks': (('arzwiki', '\xd8\xb1\xd9\x8a\xd9\x88\xd8\xa8\xd9\x8a\xd9\x86 \xd8\xac\xd8\xb1\xd9\x88\xd9\x86\xd8\xa7\xd9\x88', None), ('hewiki', '\xd7\xa8\xd7\x90\xd7\x95\xd7\x91\xd7\x9f \xd7\x92\xd7\xa8\xd7\x95\xd7\xa0\xd7\x90\xd7\x95', None), ('enwiki', 'Reuben Gronau', None)), 'claims': ({'property': 'P11686', 'value': '981060025559906706', 'type': 'string'}, {'numeric-id': 1282089, 'id': 'Q1282089', 'property': 'P463', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 174158, 'id': 'Q174158', 'property': 'P69'}, {'id': 'Q49088', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 49088, 'property': 'P69'}, {'id': 'Q801', 'type': 'wikibase-entityid', 'property': 'P27', 'numeric-id': 801, 'entity-type': 'item'}, {'id': 'Q33935', 'numeric-id': 33935, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P19'}, {'property': 'P108', 'id': 'Q174158', 'numeric-id': 174158, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P31', 'entity-type': 'item', 'id': 'Q5', 'type': 'wikibase-entityid', 'numeric-id': 5}, {'numeric-id': 8134, 'type': 'wikibase-entityid', 'id': 'Q8134', 'property': 'P101', 'entity-type': 'item'}, {'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1937-01-01T00:00:00Z', 'precision': 9, 'timezone': 0, 'property': 'P569', 'type': 'time', 'before': 0}, {'id': 'Q59766840', 'type': 'wikibase-entityid', 'numeric-id': 59766840, 'property': 'P166', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'property': 'P166', 'entity-type': 'item', 'numeric-id': 6782360, 'id': 'Q6782360'}, {'numeric-id': 6581097, 'type': 'wikibase-entityid', 'property': 'P21', 'id': 'Q6581097', 'entity-type': 'item'}, {'numeric-id': 18325890, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P735', 'id': 'Q18325890'}, {'numeric-id': 2599645, 'type': 'wikibase-entityid', 'property': 'P184', 'id': 'Q2599645', 'entity-type': 'item'}, {'numeric-id': 191020, 'id': 'Q191020', 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P184'}, {'numeric-id': 188094, 'property': 'P106', 'id': 'Q188094', 'type': 'wikibase-entityid', 'entity-type': 'item'}), 'title': 'Q6806379'}
{'type': 'item', 'id': 'Q6806825', 'labels': (('en', 'Medieval Islamic Civilization'),), 'descriptions': (('en', 'book by Josef W. Meri'),), 'aliases': (), 'sitelinks': (('fawiki', '\xd8\xaf\xd8\xa7\xd9\x86\xd8\xb4\xd9\x86\xd8\xa7\xd9\x85\xd9\x87 \xd8\xaa\xd9\x85\xd8\xaf\xd9\x86 \xd8\xa7\xd8\xb3\xd9\x84\xd8\xa7\xd9\x85\xdb\x8c \xd8\xaf\xd8\xb1 \xd9\x82\xd8\xb1\xd9\x88\xd9\x86 \xd9\x88\xd8\xb3\xd8\xb7\xdb\x8c', None), ('arwiki', '\xd8\xa7\xd9\x84\xd8\xad\xd8\xb6\xd8\xa7\xd8\xb1\xd8\xa9 \xd8\xa7\xd9\x84\xd8\xa5\xd8\xb3\xd9\x84\xd8\xa7\xd9\x85\xd9\x8a\xd8\xa9 \xd9\x81\xd9\x8a \xd8\xa7\xd9\x84\xd9\x82\xd8\xb1\xd9\x88\xd9\x86 \xd8\xa7\xd9\x84\xd9\x88\xd8\xb3\xd8\xb7\xd9\x89 (\xd9\x85\xd9\x88\xd8\xb3\xd9\x88\xd8\xb9\xd8\xa9)', None), ('enwiki', 'Medieval Islamic Civilization: An Encyclopedia', None)), 'claims': ({'numeric-id': 7725634, 'entity-type': 'item', 'id': 'Q7725634', 'property': 'P31', 'type': 'wikibase-entityid'}, {'property': 'P577', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'precision': 9, 'before': 0, 'timezone': 0, 'time': '+2005-01-01T00:00:00Z', 'after': 0}, {'property': 'P136', 'id': 'Q5292', 'numeric-id': 5292, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q3184043', 'property': 'P50', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 3184043}), 'title': 'Q6806825'}
{'type': 'item', 'id': 'Q6807028', 'labels': (('en', 'Mediterranean'),), 'descriptions': (('en', 'battle honour of the British Army'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mediterranean (battle honour)', None),), 'claims': ({'numeric-id': 174193, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q174193', 'property': 'P17'}, {'type': 'wikibase-entityid', 'numeric-id': 16933046, 'property': 'P1889', 'id': 'Q16933046', 'entity-type': 'item'}, {'entity-type': 'item', 'property': 'P31', 'id': 'Q262775', 'numeric-id': 262775, 'type': 'wikibase-entityid'}, {'property': 'P793', 'id': 'Q254106', 'entity-type': 'item', 'numeric-id': 254106, 'type': 'wikibase-entityid'}), 'title': 'Q6807028'}
{'type': 'item', 'id': 'Q6807053', 'labels': (('en', 'Mediterranean Historical Review'),), 'descriptions': (('en', 'journal'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mediterranean Historical Review', None), ('frwiki', 'Mediterranean Historical Review', None), ('dewiki', 'Mediterranean Historical Review', None)), 'claims': ({'numeric-id': 145, 'type': 'wikibase-entityid', 'property': 'P495', 'entity-type': 'item', 'id': 'Q145'}, {'timezone': 0, 'after': 0, 'precision': 9, 'property': 'P571', 'before': 0, 'time': '+1986-00-00T00:00:00Z', 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'type': 'wikibase-entityid', 'property': 'P8875', 'numeric-id': 371467, 'id': 'Q371467', 'entity-type': 'item'}, {'value': '2', 'property': 'P1240', 'type': 'string'}, {'entity-type': 'item', 'property': 'P921', 'type': 'wikibase-entityid', 'id': 'Q309', 'numeric-id': 309}, {'numeric-id': 1860, 'entity-type': 'item', 'property': 'P407', 'id': 'Q1860', 'type': 'wikibase-entityid'}, {'property': 'P10283', 'type': 'string', 'value': 'V3500396'}, {'numeric-id': 1508259, 'entity-type': 'item', 'property': 'P123', 'id': 'Q1508259', 'type': 'wikibase-entityid'}, {'property': 'P123', 'numeric-id': 880582, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q880582'}, {'type': 'monolingualtext', 'language': 'en', 'property': 'P1476', 'text': 'Mediterranean Historical Review'}, {'value': 'http://www.tau.ac.il/humanities/cmc/mhr/mhr.html', 'type': 'string', 'property': 'P856'}, {'type': 'string', 'value': 'http://tandfonline.com/fmhr', 'property': 'P856'}, {'property': 'P856', 'type': 'string', 'value': 'https://www.tandfonline.com/loi/fmhr20#.VxikR1L2aic'}, {'type': 'string', 'value': 'http://www.ingenta.com/isis/browsing/AllIssues/ingenta;jsessionid=fv6kmhr0u2q8.circus?journal=pubinfobike://fcp/mhr', 'property': 'P856'}, {'entity-type': 'item', 'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q627517', 'numeric-id': 627517}), 'title': 'Q6807053'}
{'type': 'item', 'id': 'Q6807143', 'labels': (('en', 'Medium Cool Records'),), 'descriptions': (('en', 'former record label in England, United Kingdom'),), 'aliases': (), 'sitelinks': (('enwiki', 'Medium Cool Records', None),), 'claims': ({'numeric-id': 18127, 'type': 'wikibase-entityid', 'property': 'P31', 'id': 'Q18127', 'entity-type': 'item'},), 'title': 'Q6807143'}
{'type': 'item', 'id': 'Q6807616', 'labels': (('en', 'Meenakshi Sundaram Pillai'),), 'descriptions': (('en', 'eminent Tamil scholar'),), 'aliases': (('en', 'Mahavidhvan Meenakshisundaram Pillai'),), 'sitelinks': (('tawiki', '\xe0\xae\xae\xe0\xaf\x80\xe0\xae\xa9\xe0\xae\xbe\xe0\xae\x9f\xe0\xaf\x8d\xe0\xae\x9a\xe0\xae\xbf\xe0\xae\x9a\xe0\xaf\x81\xe0\xae\xa8\xe0\xaf\x8d\xe0\xae\xa4\xe0\xae\xb0\xe0\xae\xae\xe0\xaf\x8d \xe0\xae\xaa\xe0\xae\xbf\xe0\xae\xb3\xe0\xaf\x8d\xe0\xae\xb3\xe0\xaf\x88', None), ('mlwiki', '\xe0\xb4\xae\xe0\xb5\x80\xe0\xb4\xa8\xe0\xb4\xbe\xe0\xb4\x95\xe0\xb5\x8d\xe0\xb4\xb7\xe0\xb4\xbf \xe0\xb4\xb8\xe0\xb5\x81\xe0\xb4\xa8\xe0\xb5\x8d\xe0\xb4\xa6\xe0\xb4\xb0\xe0\xb4\x82 \xe0\xb4\xaa\xe0\xb4\xbf\xe0\xb4\xb3\xe0\xb5\x8d\xe0\xb4\xb3', None), ('enwiki', 'Meenakshi Sundaram Pillai', None)), 'claims': ({'property': 'P569', 'before': 0, 'after': 0, 'precision': 9, 'time': '+1815-01-01T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'type': 'time'}, {'property': 'P106', 'numeric-id': 49757, 'type': 'wikibase-entityid', 'id': 'Q49757', 'entity-type': 'item'}, {'numeric-id': 37226, 'id': 'Q37226', 'entity-type': 'item', 'property': 'P106', 'type': 'wikibase-entityid'}, {'property': 'P21', 'type': 'wikibase-entityid', 'numeric-id': 6581097, 'entity-type': 'item', 'id': 'Q6581097'}, {'property': 'P800', 'numeric-id': 14510648, 'entity-type': 'item', 'id': 'Q14510648', 'type': 'wikibase-entityid'}, {'id': 'Q31381930', 'type': 'wikibase-entityid', 'numeric-id': 31381930, 'entity-type': 'item', 'property': 'P800'}, {'entity-type': 'item', 'id': 'Q5', 'property': 'P31', 'type': 'wikibase-entityid', 'numeric-id': 5}, {'precision': 9, 'time': '+1876-01-01T00:00:00Z', 'type': 'time', 'after': 0, 'timezone': 0, 'property': 'P570', 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'entity-type': 'item', 'id': 'Q207754', 'numeric-id': 207754, 'type': 'wikibase-entityid', 'property': 'P19'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q7863546', 'numeric-id': 7863546, 'property': 'P802'}, {'property': 'P802', 'id': 'Q31382033', 'numeric-id': 31382033, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P802', 'id': 'Q61063393', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 61063393}), 'title': 'Q6807616'}
{'type': 'item', 'id': 'Q6807856', 'labels': (('en', 'Meet the Parents'),), 'descriptions': (('en', '1992 film by Greg Glienna'),), 'aliases': (), 'sitelinks': (('rowiki', 'Un socru de co\xc8\x99mar (film din 1992)', None), ('enwiki', 'Meet the Parents (1992 film)', None), ('fawiki', '\xd9\x85\xd9\x84\xd8\xa7\xd9\x82\xd8\xa7\xd8\xaa \xd8\xa8\xd8\xa7 \xd9\x88\xd8\xa7\xd9\x84\xd8\xaf\xdb\x8c\xd9\x86 (\xd9\x81\xdb\x8c\xd9\x84\xd9\x85 \xdb\xb1\xdb\xb9\xdb\xb9\xdb\xb2)', None)), 'claims': ({'id': 'Q2422570', 'entity-type': 'item', 'property': 'P162', 'numeric-id': 2422570, 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q16195080', 'numeric-id': 16195080, 'type': 'wikibase-entityid', 'property': 'P57'}, {'property': 'P462', 'id': 'Q22006653', 'numeric-id': 22006653, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'numeric-id': 1297, 'property': 'P840', 'entity-type': 'item', 'id': 'Q1297'}, {'property': 'P136', 'id': 'Q157443', 'entity-type': 'item', 'numeric-id': 157443, 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 1860, 'property': 'P364', 'id': 'Q1860', 'type': 'wikibase-entityid'}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 9, 'time': '+1992-00-00T00:00:00Z', 'after': 0, 'timezone': 0, 'type': 'time', 'property': 'P577', 'before': 0}, {'numeric-id': 11424, 'entity-type': 'item', 'id': 'Q11424', 'property': 'P31', 'type': 'wikibase-entityid'}, {'property': 'P1476', 'text': 'Meet the Parents', 'type': 'monolingualtext', 'language': 'en'}, {'value': '295267', 'type': 'string', 'property': 'P12096'}, {'numeric-id': 30, 'property': 'P495', 'type': 'wikibase-entityid', 'id': 'Q30', 'entity-type': 'item'}), 'title': 'Q6807856'}
{'type': 'item', 'id': 'Q6807889', 'labels': (('en', 'Meeting Across the River'),), 'descriptions': (('en', 'song by Bruce Springsteen'),), 'aliases': (), 'sitelinks': (('nlwiki', 'Meeting Across the River', None), ('hrwiki', 'Meeting Across the River', None), ('enwiki', 'Meeting Across the River', None)), 'claims': ({'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P162', 'id': 'Q522288', 'numeric-id': 522288}, {'id': 'Q105543609', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P31', 'numeric-id': 105543609}, {'numeric-id': 7366, 'entity-type': 'item', 'property': 'P7937', 'type': 'wikibase-entityid', 'id': 'Q7366'}, {'property': 'P136', 'numeric-id': 11399, 'id': 'Q11399', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'id': 'Q752366', 'property': 'P361', 'entity-type': 'item', 'numeric-id': 752366}, {'id': 'Q183387', 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P264', 'numeric-id': 183387}, {'entity-type': 'item', 'numeric-id': 1225, 'property': 'P175', 'id': 'Q1225', 'type': 'wikibase-entityid'}, {'property': 'P577', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'after': 0, 'timezone': 0, 'time': '+1975-08-25T00:00:00Z', 'type': 'time', 'before': 0}), 'title': 'Q6807889'}
{'type': 'item', 'id': 'Q6808824', 'labels': (('en', "Megarama '89"),), 'descriptions': (('en', 'single by Bananarama'),), 'aliases': (), 'sitelinks': (('enwiki', "Megarama '89", None),), 'claims': ({'property': 'P577', 'timezone': 0, 'precision': 9, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0, 'time': '+1989-01-01T00:00:00Z', 'type': 'time', 'after': 0}, {'id': 'Q725926', 'numeric-id': 725926, 'property': 'P175', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'numeric-id': 935090, 'property': 'P264', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q935090'}, {'property': 'P31', 'type': 'wikibase-entityid', 'numeric-id': 134556, 'entity-type': 'item', 'id': 'Q134556'}, {'numeric-id': 37073, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P136', 'id': 'Q37073'}, {'entity-type': 'item', 'property': 'P156', 'id': 'Q7094296', 'numeric-id': 7094296, 'type': 'wikibase-entityid'}), 'title': 'Q6808824'}
{'type': 'item', 'id': 'Q6809200', 'labels': (('en', 'Mehad Hamad'),), 'descriptions': (('en', 'Emirati musician'), ('en-ca', 'Emirati musician'), ('en-g', 'Emirati musician')), 'aliases': (('en', 'Mehad Hamad Mehad Mohammed Al Muhairi'),), 'sitelinks': (('enwiki', 'Mehad Hamad', None), ('arwiki', '\xd9\x85\xd9\x8a\xd8\xad\xd8\xaf \xd8\xad\xd9\x85\xd8\xaf', None)), 'claims': ({'time': '+1983-00-00T00:00:00Z', 'property': 'P2031', 'timezone': 0, 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 9, 'after': 0, 'before': 0}, {'value': 'agent/base/164204', 'property': 'P7704', 'type': 'string'}, {'id': 'Q17172850', 'property': 'P1303', 'numeric-id': 17172850, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q2204078', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 2204078, 'property': 'P19'}, {'numeric-id': 878, 'id': 'Q878', 'property': 'P27', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'time': '+1963-05-22T00:00:00Z', 'before': 0, 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'type': 'time', 'precision': 11, 'timezone': 0}, {'text': '\xd9\x85\xd9\x8a\xd8\xad\xd8\xaf \xd8\xad\xd9\x85\xd8\xaf \xd8\xa7\xd9\x84\xd8\xa8\xd9\x84\xd9\x88\xd8\xb4\xd9\x8a', 'type': 'monolingualtext', 'language': 'ar', 'property': 'P1559'}, {'type': 'wikibase-entityid', 'numeric-id': 6581097, 'property': 'P21', 'id': 'Q6581097', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'id': 'Q177220', 'numeric-id': 177220, 'property': 'P106', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'property': 'P31', 'numeric-id': 5, 'entity-type': 'item', 'id': 'Q5'}, {'type': 'string', 'value': 'Mehad Hamad 2014.jpg', 'property': 'P18'}), 'title': 'Q6809200'}
{'type': 'item', 'id': 'Q6809802', 'labels': (('en', 'Mehran Sheikhi'),), 'descriptions': (('en', 'Iranian wrestler'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mehran Sheikhi', None), ('fawiki', '\xd9\x85\xd9\x87\xd8\xb1\xd8\xa7\xd9\x86 \xd8\xb4\xdb\x8c\xd8\xae\xdb\x8c', None)), 'claims': ({'property': 'P21', 'entity-type': 'item', 'id': 'Q6581097', 'type': 'wikibase-entityid', 'numeric-id': 6581097}, {'id': 'Q12369333', 'property': 'P106', 'numeric-id': 12369333, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'entity-type': 'item', 'numeric-id': 5, 'id': 'Q5', 'property': 'P31', 'type': 'wikibase-entityid'}, {'id': 'Q794', 'property': 'P27', 'type': 'wikibase-entityid', 'numeric-id': 794, 'entity-type': 'item'}, {'entity-type': 'item', 'numeric-id': 838089, 'property': 'P641', 'type': 'wikibase-entityid', 'id': 'Q838089'}), 'title': 'Q6809802'}
{'type': 'item', 'id': 'Q6809890', 'labels': (('en', 'Bujai'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('jawiki', '\xe3\x83\x96\xe3\x82\xb8\xe3\x83\xa3\xe3\x82\xa4', None), ('zhwiki', '\xe5\xb8\x83\xe5\xaf\xa8', None), ('viwiki', 'B\xe1\xbb\x91 Tr\xe1\xba\xa1i', None)), 'claims': ({'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q5', 'numeric-id': 5, 'entity-type': 'item'}, {'entity-type': 'item', 'property': 'P21', 'type': 'wikibase-entityid', 'id': 'Q6581097', 'numeric-id': 6581097}, {'property': 'P569'}, {'type': 'wikibase-entityid', 'property': 'P53', 'entity-type': 'item', 'id': 'Q10801964', 'numeric-id': 10801964}, {'precision': 9, 'time': '+1593-00-00T00:00:00Z', 'type': 'time', 'after': 0, 'property': 'P570', 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0}), 'title': 'Q6809890'}
{'type': 'item', 'id': 'Q6810280', 'labels': (('en', 'Minhaj International University'),), 'descriptions': (('en', 'private university located in Lahore, Punjab, Pakistan'),), 'aliases': (), 'sitelinks': (('urwiki', '\xd9\x85\xd9\x86\xdb\x81\xd8\xa7\xd8\xac \xdb\x8c\xd9\x88\xd9\x86\xdb\x8c\xd9\x88\xd8\xb1\xd8\xb3\xd9\xb9\xdb\x8c', None), ('enwiki', 'Minhaj University Lahore', None), ('arzwiki', '\xd8\xac\xd8\xa7\xd9\x85\xd8\xb9\xd8\xa9 \xd8\xa7\xd9\x84\xd9\x85\xd9\x86\xd9\x87\xd8\xa7\xd8\xac \xd8\xa7\xd9\x84\xd8\xaf\xd9\x88\xd9\x84\xd9\x8a\xd9\x87 \xd9\x81\xd9\x89 \xd9\x84\xd8\xa7\xd9\x87\xd9\x88\xd8\xb1', None), ('bnwiki', '\xe0\xa6\xae\xe0\xa6\xbf\xe0\xa6\xa8\xe0\xa6\xb9\xe0\xa6\xbe\xe0\xa6\x9c \xe0\xa6\xac\xe0\xa6\xbf\xe0\xa6\xb6\xe0\xa7\x8d\xe0\xa6\xac\xe0\xa6\xac\xe0\xa6\xbf\xe0\xa6\xa6\xe0\xa7\x8d\xe0\xa6\xaf\xe0\xa6\xbe\xe0\xa6\xb2\xe0\xa6\xaf\xe0\xa6\xbc, \xe0\xa6\xb2\xe0\xa6\xbe\xe0\xa6\xb9\xe0\xa7\x8b\xe0\xa6\xb0', None), ('pnbwiki', '\xd9\x85\xd9\x86\xdb\x81\xd8\xa7\xd8\xac \xdb\x8c\xd9\x88\xd9\x86\xdb\x8c\xd9\x88\xd8\xb1\xd8\xb3\xd9\xb9\xdb\x8c', None), ('arwiki', '\xd8\xac\xd8\xa7\xd9\x85\xd8\xb9\xd8\xa9 \xd8\xa7\xd9\x84\xd9\x85\xd9\x86\xd9\x87\xd8\xa7\xd8\xac \xd8\xa7\xd9\x84\xd8\xaf\xd9\x88\xd9\x84\xd9\x8a\xd8\xa9 \xd9\x81\xd9\x8a \xd9\x84\xd8\xa7\xd9\x87\xd9\x88\xd8\xb1', None)), 'claims': ({'property': 'P31', 'type': 'wikibase-entityid', 'numeric-id': 3918, 'entity-type': 'item', 'id': 'Q3918'}, {'property': 'P856', 'type': 'string', 'value': 'http://mul.edu.pk'}, {'numeric-id': 11739, 'type': 'wikibase-entityid', 'id': 'Q11739', 'entity-type': 'item', 'property': 'P131'}, {'property': 'P17', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q843', 'numeric-id': 843}, {'property': 'P10283', 'type': 'string', 'value': 'I3131353278'}, {'after': 0, 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P571', 'precision': 9, 'timezone': 0, 'time': '+1986-00-00T00:00:00Z', 'type': 'time'}), 'title': 'Q6810280'}
{'type': 'item', 'id': 'Q6810422', 'labels': (('en', 'Meitetsu Seto Line'),), 'descriptions': (('en', "rail line owned by Meitetsu in Japan's Chubu region"),), 'aliases': (), 'sitelinks': (('zhwiki', '\xe7\x80\xa8\xe6\x88\xb6\xe7\xb7\x9a', None), ('commonswiki', 'Category:Meitetsu Seto Line', None), ('kowiki', '\xeb\xa9\x94\xec\x9d\xb4\xed\x85\x8c\xec\x93\xb0 \xec\x84\xb8\xed\x86\xa0\xec\x84\xa0', None), ('enwiki', 'Meitetsu Seto Line', None), ('itwiki', 'Linea Meitetsu Seto', None), ('jawiki', '\xe5\x90\x8d\xe9\x89\x84\xe7\x80\xac\xe6\x88\xb8\xe7\xb7\x9a', None), ('frwiki', 'Ligne Meitetsu Seto', None)), 'claims': ({'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P17', 'numeric-id': 17, 'id': 'Q17'}, {'type': 'string', 'value': 'Linemap of Meitetsu Seto Line.svg', 'property': 'P15'}, {'property': 'P1064', 'numeric-id': 1193463, 'id': 'Q1193463', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'property': 'P31', 'numeric-id': 728937, 'type': 'wikibase-entityid', 'id': 'Q728937'}, {'property': 'P373', 'value': 'Meitetsu Seto Line', 'type': 'string'}, {'type': 'string', 'property': 'P154', 'value': 'NP-ST.svg'}, {'property': 'P18', 'value': 'Meitetsu 4000 series EMU 011.JPG', 'type': 'string'}, {'precision': 11, 'property': 'P571', 'timezone': 0, 'before': 0, 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'time': '+1902-03-17T00:00:00Z'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q21253457', 'property': 'P930', 'numeric-id': 21253457}, {'timezone': 0, 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'before': 0, 'precision': 9, 'time': '+1905-00-00T00:00:00Z', 'property': 'P1619'}, {'type': 'quantity', 'property': 'P2043', 'unit': 'http://www.wikidata.org/entity/Q828224', 'amount': '+20.6'}, {'unit': 'http://www.wikidata.org/entity/Q180154', 'type': 'quantity', 'amount': '+100', 'property': 'P3086'}, {'id': 'Q30850', 'property': 'P127', 'entity-type': 'item', 'numeric-id': 30850, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'property': 'P2789', 'id': 'Q1132799', 'entity-type': 'item', 'numeric-id': 1132799}, {'numeric-id': 906775, 'type': 'wikibase-entityid', 'property': 'P2789', 'entity-type': 'item', 'id': 'Q906775'}, {'entity-type': 'item', 'numeric-id': 1078110, 'type': 'wikibase-entityid', 'id': 'Q1078110', 'property': 'P2789'}, {'numeric-id': 11363767, 'entity-type': 'item', 'id': 'Q11363767', 'type': 'wikibase-entityid', 'property': 'P2789'}, {'id': 'Q850582', 'numeric-id': 850582, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P2789'}, {'entity-type': 'item', 'property': 'P2789', 'numeric-id': 4696578, 'type': 'wikibase-entityid', 'id': 'Q4696578'}, {'id': 'Q11494823', 'property': 'P2789', 'numeric-id': 11494823, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'numeric-id': 11494794, 'id': 'Q11494794', 'entity-type': 'item', 'property': 'P2789', 'type': 'wikibase-entityid'}, {'id': 'Q80434', 'numeric-id': 80434, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P131'}, {'entity-type': 'item', 'numeric-id': 56126118, 'property': 'P3858', 'id': 'Q56126118', 'type': 'wikibase-entityid'}, {'numeric-id': 14398570, 'id': 'Q14398570', 'type': 'wikibase-entityid', 'property': 'P1424', 'entity-type': 'item'}, {'numeric-id': 7402752, 'property': 'P559', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q7402752'}, {'numeric-id': 7114294, 'property': 'P559', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q7114294'}, {'id': 'Q30850', 'property': 'P137', 'numeric-id': 30850, 'type': 'wikibase-entityid', 'entity-type': 'item'}), 'title': 'Q6810422'}
{'type': 'item', 'id': 'Q6810443', 'labels': (('en', 'Meiwa Corp.'),), 'descriptions': (('en', 'trading company in Japan'),), 'aliases': (('en', 'Meiwa'),), 'sitelinks': (('enwiki', 'Meiwa Corp.', None), ('zhwiki', '\xe6\x98\x8e\xe5\x92\x8c\xe4\xba\xa7\xe4\xb8\x9a\xe6\xa0\xaa\xe5\xbc\x8f\xe4\xbc\x9a\xe7\xa4\xbe', None), ('viwiki', 'Meiwa Corporation', None), ('jawiki', '\xe6\x98\x8e\xe5\x92\x8c\xe7\x94\xa3\xe6\xa5\xad', None)), 'claims': ({'property': 'P159', 'id': 'Q1490', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 1490}, {'entity-type': 'item', 'numeric-id': 4830453, 'id': 'Q4830453', 'property': 'P31', 'type': 'wikibase-entityid'}, {'property': 'P3225', 'type': 'string', 'value': '7010001008786'}, {'type': 'string', 'value': 'http://www.meiwa.co.jp/', 'property': 'P856'}, {'property': 'P571', 'type': 'time', 'time': '+1947-07-25T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0, 'after': 0, 'precision': 11, 'timezone': 0}, {'property': 'P17', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q17', 'numeric-id': 17}), 'title': 'Q6810443'}
{'type': 'item', 'id': 'Q6810767', 'labels': (('en', 'Mel Lewinter'),), 'descriptions': (('en', 'American music industry executive'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mel Lewinter', None),), 'claims': ({'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q6581097', 'numeric-id': 6581097, 'property': 'P21'}, {'entity-type': 'item', 'id': 'Q3089940', 'numeric-id': 3089940, 'type': 'wikibase-entityid', 'property': 'P106'}, {'numeric-id': 5, 'id': 'Q5', 'property': 'P31', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P735', 'type': 'wikibase-entityid', 'id': 'Q4563684', 'entity-type': 'item', 'numeric-id': 4563684}), 'title': 'Q6810767'}
{'type': 'item', 'id': 'Q6810911', 'labels': (('en', 'Mel and Norma Gabler'),), 'descriptions': (('en', 'fundamentalists and school textbook reformers'),), 'aliases': (), 'sitelinks': (), 'claims': ({'id': 'Q3046146', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P31', 'numeric-id': 3046146}, {'id': 'Q40745977', 'property': 'P527', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 40745977}, {'property': 'P527', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q40746008', 'numeric-id': 40746008}, {'entity-type': 'item', 'id': 'Q362', 'type': 'wikibase-entityid', 'property': 'P607', 'numeric-id': 362}), 'title': 'Q6810911'}
{'type': 'item', 'id': 'Q6811177', 'labels': (('en', 'Cumhuriyet'),), 'descriptions': (('en', 'k\xc3\xb6y in Y\xc4\xb1ld\xc4\xb1zeli, Turkey'), ('en-g', 'k\xc3\xb6y in Y\xc4\xb1ld\xc4\xb1zeli, Turkey'), ('en-ca', 'k\xc3\xb6y in Y\xc4\xb1ld\xc4\xb1zeli, Turkey')), 'aliases': (), 'sitelinks': (('cewiki', '\xd0\x94\xd0\xb6\xd1\x83\xd0\xbc\xd1\x85\xd3\x80\xd1\x83\xd1\x80\xd0\xb8\xd0\xb9\xd0\xb5\xd1\x82 (\xd0\x99\xd0\xb8\xd0\xbb\xd0\xb4\xd0\xb8\xd0\xb7\xd0\xb5\xd0\xbb\xd0\xb8)', None), ('ttwiki', '\xd2\x96\xd1\x83\xd0\xbc\xd1\x85\xd1\x83\xd1\x80\xd0\xb8\xd0\xb5\xd1\x82 (\xd0\x95\xd0\xbb\xd0\xb4\xd1\x8b\xd0\xb7\xd1\x8d\xd0\xbb\xd0\xb8)', None), ('trwiki', 'Cumhuriyet, Y\xc4\xb1ld\xc4\xb1zeli', None), ('viwiki', 'Cumhuriyet, Y\xc4\xb1ld\xc4\xb1zeli', None)), 'claims': ({'id': 'Q1011921', 'property': 'P131', 'numeric-id': 1011921, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'entity-type': 'item', 'numeric-id': 43, 'id': 'Q43', 'property': 'P17', 'type': 'wikibase-entityid'}, {'id': 'Q1529096', 'numeric-id': 1529096, 'entity-type': 'item', 'property': 'P31', 'type': 'wikibase-entityid'}), 'title': 'Q6811177'}
{'type': 'item', 'id': 'Q6811606', 'labels': (('en', 'Melapuram'),), 'descriptions': (('en-g', 'human settlement in India'), ('en', 'suburb of Hindupur, Andhra Pradesh, India'), ('en-ca', 'human settlement in India')), 'aliases': (), 'sitelinks': (('enwiki', 'Melapuram', ('Q70893996',)),), 'claims': ({'id': 'Q15212', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 15212, 'property': 'P131'}, {'id': 'Q6828', 'entity-type': 'item', 'numeric-id': 6828, 'type': 'wikibase-entityid', 'property': 'P421'}, {'type': 'wikibase-entityid', 'id': 'Q486972', 'property': 'P31', 'entity-type': 'item', 'numeric-id': 486972}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P17', 'id': 'Q668', 'numeric-id': 668}), 'title': 'Q6811606'}
{'type': 'item', 'id': 'Q6811677', 'labels': (('en', 'Melber'),), 'descriptions': (('en', 'unincorporated community in Graves County, Kentucky'),), 'aliases': (('en', 'Melber, Kentucky'), ('en', 'Melber, KY')), 'sitelinks': (('zhwiki', '\xe6\xa2\x85\xe7\x88\xbe\xe4\xbc\xaf (\xe8\x82\xaf\xe5\xa1\x94\xe5\x9f\xba\xe5\xb7\x9e)', None), ('enwiki', 'Melber, Kentucky', None)), 'claims': ({'numeric-id': 500698, 'type': 'wikibase-entityid', 'property': 'P131', 'entity-type': 'item', 'id': 'Q500698'}, {'numeric-id': 30, 'entity-type': 'item', 'property': 'P17', 'type': 'wikibase-entityid', 'id': 'Q30'}, {'unit': 'http://www.wikidata.org/entity/Q3710', 'property': 'P2044', 'type': 'quantity', 'amount': '+374'}, {'numeric-id': 17343829, 'entity-type': 'item', 'id': 'Q17343829', 'property': 'P31', 'type': 'wikibase-entityid'}), 'title': 'Q6811677'}
{'type': 'item', 'id': 'Q6811877', 'labels': (('en', 'Melbourne Shores'),), 'descriptions': (('en', 'human settlement in United States of America'),), 'aliases': (('en', 'Melbourne Shores, Florida'), ('en', 'Melbourne Shores, FL')), 'sitelinks': (('enwiki', 'Melbourne Shores, Florida', None), ('zhwiki', '\xe5\xa2\xa8\xe7\x88\xbe\xe6\x9c\xac\xe5\xb2\xb8 (\xe4\xbd\x9b\xe7\xbe\x85\xe9\x87\x8c\xe9\x81\x94\xe5\xb7\x9e)', None)), 'claims': ({'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 17343829, 'id': 'Q17343829', 'property': 'P31'}, {'numeric-id': 30, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q30', 'property': 'P17'}, {'id': 'Q488517', 'numeric-id': 488517, 'property': 'P131', 'entity-type': 'item', 'type': 'wikibase-entityid'}), 'title': 'Q6811877'}
{'type': 'item', 'id': 'Q6812174', 'labels': (('en', 'Melendez-Diaz v. Massachusetts'),), 'descriptions': (('en', '2009 United States Supreme Court case'),), 'aliases': (), 'sitelinks': (('enwiki', 'Melendez-Diaz v. Massachusetts', None), ('ptwiki', 'Caso Melendez-Diaz v. Massachusetts', None)), 'claims': ({'type': 'wikibase-entityid', 'numeric-id': 771, 'property': 'P1591', 'id': 'Q771', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'id': 'Q30', 'property': 'P1001', 'numeric-id': 30, 'entity-type': 'item'}, {'id': 'Q2334719', 'type': 'wikibase-entityid', 'numeric-id': 2334719, 'entity-type': 'item', 'property': 'P31'}, {'property': 'P31', 'id': 'Q19692072', 'entity-type': 'item', 'numeric-id': 19692072, 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q11156', 'numeric-id': 11156, 'property': 'P5826', 'type': 'wikibase-entityid'}, {'property': 'P577', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'before': 0, 'time': '+2009-06-25T00:00:00Z', 'timezone': 0, 'type': 'time', 'after': 0}, {'numeric-id': 302686, 'property': 'P1433', 'entity-type': 'item', 'id': 'Q302686', 'type': 'wikibase-entityid'}, {'type': 'string', 'property': 'P1031', 'value': '557 U.S. 305'}, {'property': 'P1031', 'value': '129 S. Ct. 2527', 'type': 'string'}, {'property': 'P1031', 'value': '174 L. Ed. 2d 314', 'type': 'string'}, {'value': '2009 U.S. LEXIS 4734', 'property': 'P1031', 'type': 'string'}, {'property': 'P793', 'id': 'Q7099379', 'numeric-id': 7099379, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P17', 'numeric-id': 30, 'type': 'wikibase-entityid', 'id': 'Q30', 'entity-type': 'item'}, {'id': 'Q11201', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 11201, 'property': 'P4884'}), 'title': 'Q6812174'}
{'type': 'item', 'id': 'Q6812262', 'labels': (('en', 'Meli Bainimarama'),), 'descriptions': (('en', 'Fijian civil servant (1945-2015)'),), 'aliases': (), 'sitelinks': (('enwiki', 'Meli Bainimarama', None),), 'claims': ({'property': 'P21', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 6581097, 'id': 'Q6581097'}, {'numeric-id': 212238, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P106', 'id': 'Q212238'}, {'entity-type': 'item', 'id': 'Q5', 'numeric-id': 5, 'type': 'wikibase-entityid', 'property': 'P31'}, {'after': 0, 'type': 'time', 'time': '+2015-11-30T00:00:00Z', 'precision': 11, 'property': 'P570', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'before': 0}, {'id': 'Q712', 'numeric-id': 712, 'property': 'P27', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P569', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'after': 0, 'before': 0, 'time': '+1945-09-24T00:00:00Z', 'timezone': 0, 'type': 'time'}), 'title': 'Q6812262'}
{'type': 'item', 'id': 'Q6812323', 'labels': (('en', 'Melicope paniculata'),), 'descriptions': (('en', 'species of plant'),), 'aliases': (('en', 'Alani'),), 'sitelinks': (('specieswiki', 'Melicope paniculata', None), ('svwiki', 'Melicope paniculata', None), ('azwiki', 'Melicope paniculata', None), ('cebwiki', 'Melicope paniculata', None), ('viwiki', 'Melicope paniculata', None), ('warwiki', 'Melicope paniculata', None), ('enwiki', 'Melicope paniculata', None)), 'claims': ({'property': 'P10585', 'type': 'string', 'value': '3ZF43'}, {'property': 'P566', 'type': 'wikibase-entityid', 'numeric-id': 50857304, 'entity-type': 'item', 'id': 'Q50857304'}, {'type': 'string', 'value': '2.133721', 'property': 'P10243'}, {'type': 'string', 'value': 'Melicope paniculata', 'property': 'P225'}, {'numeric-id': 16521, 'type': 'wikibase-entityid', 'id': 'Q16521', 'property': 'P31', 'entity-type': 'item'}, {'entity-type': 'item', 'numeric-id': 7432, 'id': 'Q7432', 'property': 'P105', 'type': 'wikibase-entityid'}, {'language': 'mul', 'text': 'M. paniculata', 'type': 'monolingualtext', 'property': 'P1813'}, {'id': 'Q55714070', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 55714070, 'property': 'P3648'}, {'entity-type': 'item', 'numeric-id': 2700651, 'type': 'wikibase-entityid', 'id': 'Q2700651', 'property': 'P171'}, {'type': 'monolingualtext', 'text': 'Lihue melicope', 'language': 'en', 'property': 'P1843'}), 'title': 'Q6812323'}
{'type': 'item', 'id': 'Q6812356', 'labels': (('en', 'Melieria nigritarsis'),), 'descriptions': (('en', 'species of insect'),), 'aliases': (), 'sitelinks': (('svwiki', 'Melieria nigritarsis', None), ('nlwiki', 'Melieria nigritarsis', None), ('enwiki', 'Melieria nigritarsis', None), ('cebwiki', 'Melieria nigritarsis', None), ('warwiki', 'Melieria nigritarsis', None)), 'claims': ({'numeric-id': 16521, 'type': 'wikibase-entityid', 'id': 'Q16521', 'property': 'P31', 'entity-type': 'item'}, {'numeric-id': 7432, 'entity-type': 'item', 'property': 'P105', 'type': 'wikibase-entityid', 'id': 'Q7432'}, {'numeric-id': 4284186, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q4284186', 'property': 'P9566'}, {'value': 'Melieria nigritarsis', 'property': 'P225', 'type': 'string'}, {'property': 'P1813', 'text': 'M. nigritarsis', 'language': 'mul', 'type': 'monolingualtext'}, {'id': 'Q6812338', 'property': 'P171', 'numeric-id': 6812338, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'value': '3ZF9T', 'property': 'P10585', 'type': 'string'}), 'title': 'Q6812356'}
{'type': 'item', 'id': 'Q6812687', 'labels': (('en', 'Melissa F. Wells'),), 'descriptions': (('en', 'American diplomat'),), 'aliases': (('en', 'Melissa Wells'), ('en', 'Melissa Foelsch Wells')), 'sitelinks': (('etwiki', 'Melissa F. Wells', None), ('enwiki', 'Melissa F. Wells', None), ('commonswiki', 'Category:Melissa F. Wells', None)), 'claims': ({'property': 'P1038', 'entity-type': 'item', 'id': 'Q12359686', 'type': 'wikibase-entityid', 'numeric-id': 12359686}, {'value': 'Melissa F. Wells', 'property': 'P373', 'type': 'string'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P39', 'id': 'Q7889277', 'numeric-id': 7889277}, {'id': 'Q6581072', 'property': 'P21', 'numeric-id': 6581072, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'value': 'Melissa F Wells.jpg', 'property': 'P18', 'type': 'string'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 830357, 'property': 'P735', 'id': 'Q830357'}, {'time': '+1932-11-18T00:00:00Z', 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'precision': 11, 'property': 'P569', 'timezone': 0, 'after': 0}, {'property': 'P166', 'type': 'wikibase-entityid', 'numeric-id': 23058979, 'id': 'Q23058979', 'entity-type': 'item'}, {'property': 'P27', 'id': 'Q30', 'numeric-id': 30, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 271465, 'id': 'Q271465', 'type': 'wikibase-entityid', 'property': 'P25'}, {'property': 'P31', 'id': 'Q5', 'type': 'wikibase-entityid', 'numeric-id': 5, 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'numeric-id': 128047, 'entity-type': 'item', 'id': 'Q128047', 'property': 'P69'}, {'property': 'P19', 'type': 'wikibase-entityid', 'id': 'Q1770', 'entity-type': 'item', 'numeric-id': 1770}, {'entity-type': 'item', 'id': 'Q13583397', 'property': 'P734', 'type': 'wikibase-entityid', 'numeric-id': 13583397}, {'property': 'P106', 'type': 'wikibase-entityid', 'id': 'Q193391', 'entity-type': 'item', 'numeric-id': 193391}), 'title': 'Q6812687'}
{'type': 'item', 'id': 'Q6812693', 'labels': (('en', 'Melissa Fitzgerald'),), 'descriptions': (('en', 'American actress'),), 'aliases': (('en', 'M. J. T. FitzGerald'),), 'sitelinks': (('arwiki', '\xd9\x85\xd9\x8a\xd9\x84\xd9\x8a\xd8\xb3\xd8\xa7 \xd9\x81\xd9\x8a\xd8\xaa\xd8\xb2\xd8\xac\xd9\x8a\xd8\xb1\xd8\xa7\xd9\x84\xd8\xaf', None), ('enwiki', 'Melissa Fitzgerald', None), ('kowiki', '\xeb\xa9\x9c\xeb\xa6\xac\xec\x82\xac \xed\x94\xbc\xec\xb8\xa0\xec\xa0\x9c\xeb\x9f\xb4\xeb\x93\x9c', None), ('afwiki', 'Melissa Fitzgerald', None), ('commonswiki', 'Category:Melissa Fitzgerald', None)), 'claims': ({'id': 'Q720530', 'numeric-id': 720530, 'property': 'P26', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'numeric-id': 33999, 'property': 'P106', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q33999'}, {'property': 'P106', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q10798782', 'numeric-id': 10798782}, {'entity-type': 'item', 'id': 'Q10800557', 'numeric-id': 10800557, 'property': 'P106', 'type': 'wikibase-entityid'}, {'numeric-id': 5, 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q5'}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1965-01-01T00:00:00Z', 'type': 'time', 'property': 'P569', 'before': 0, 'after': 0, 'timezone': 0, 'precision': 9}, {'property': 'P11686', 'type': 'string', 'value': '981058527866406706'}, {'property': 'P21', 'type': 'wikibase-entityid', 'id': 'Q6581072', 'numeric-id': 6581072, 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'id': 'Q1860', 'entity-type': 'item', 'property': 'P6886', 'numeric-id': 1860}, {'numeric-id': 49117, 'type': 'wikibase-entityid', 'id': 'Q49117', 'entity-type': 'item', 'property': 'P69'}, {'numeric-id': 7581179, 'id': 'Q7581179', 'property': 'P69', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'value': 'Melissa Fitzgerald, ILO, 2013-crop.jpg', 'type': 'string', 'property': 'P18'}, {'precision': 9, 'time': '+2014-01-01T00:00:00Z', 'property': 'P570', 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'timezone': 0, 'before': 0}, {'type': 'wikibase-entityid', 'numeric-id': 55550590, 'property': 'P734', 'id': 'Q55550590', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q1860', 'numeric-id': 1860, 'property': 'P103'}, {'type': 'string', 'property': 'P10302', 'value': 'melissa-ficdzherald'}, {'entity-type': 'item', 'numeric-id': 30, 'id': 'Q30', 'property': 'P27', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'property': 'P735', 'type': 'wikibase-entityid', 'id': 'Q830357', 'numeric-id': 830357}, {'value': '213522', 'property': 'P12098', 'type': 'string'}, {'type': 'string', 'property': 'P373', 'value': 'Melissa Fitzgerald'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q67311526', 'numeric-id': 67311526, 'property': 'P1343'}, {'property': 'P1412', 'id': 'Q1860', 'type': 'wikibase-entityid', 'numeric-id': 1860, 'entity-type': 'item'}), 'title': 'Q6812693'}
{'type': 'item', 'id': 'Q6812763', 'labels': (('en', 'Melissa Lafsky'),), 'descriptions': (('en', 'American writer and blogger'),), 'aliases': (), 'sitelinks': (('enwiki', 'Melissa Lafsky', None),), 'claims': ({'precision': 9, 'before': 0, 'time': '+1978-01-01T00:00:00Z', 'after': 0, 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'timezone': 0}, {'id': 'Q830357', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 830357, 'property': 'P735'}, {'property': 'P106', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q36180', 'numeric-id': 36180}, {'property': 'P18', 'type': 'string', 'value': 'Opinionistas.com blogger Melissa Lafsky.jpg'}, {'numeric-id': 6581072, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q6581072', 'property': 'P21'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P69', 'numeric-id': 49116, 'id': 'Q49116'}, {'numeric-id': 7896545, 'id': 'Q7896545', 'entity-type': 'item', 'property': 'P69', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q5', 'numeric-id': 5, 'property': 'P31'}), 'title': 'Q6812763'}
{'type': 'item', 'id': 'Q6813119', 'labels': (('en', 'Melling V8'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('enwiki', 'Melling V8', ('Q70893996',)),), 'claims': (), 'title': 'Q6813119'}
{'type': 'item', 'id': 'Q6813121', 'labels': (('en', 'Melling Chase'),), 'descriptions': (('en', 'steeplechase horse race in Britain'),), 'aliases': (), 'sitelinks': (('jawiki', '\xe3\x83\xa1\xe3\x83\xaa\xe3\x83\xb3\xe3\x82\xb0\xe3\x83\x81\xe3\x82\xa7\xe3\x82\xa4\xe3\x82\xb9', None), ('enwiki', 'Melling Chase', None)), 'claims': ({'property': 'P571', 'precision': 9, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0, 'type': 'time', 'timezone': 0, 'after': 0, 'time': '+1991-00-00T00:00:00Z'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P31', 'id': 'Q3001412', 'numeric-id': 3001412}), 'title': 'Q6813121'}
{'type': 'item', 'id': 'Q6813183', 'labels': (('en', 'Mellotron On!'),), 'descriptions': (('en', '2003 compilation album by Primitive Radio Gods'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mellotron On!', None),), 'claims': ({'precision': 9, 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P577', 'time': '+2003-00-00T00:00:00Z', 'type': 'time', 'before': 0, 'timezone': 0}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 482994, 'property': 'P31', 'id': 'Q482994'}, {'id': 'Q5107619', 'numeric-id': 5107619, 'entity-type': 'item', 'property': 'P162', 'type': 'wikibase-entityid'}, {'numeric-id': 7243572, 'type': 'wikibase-entityid', 'id': 'Q7243572', 'property': 'P175', 'entity-type': 'item'}, {'id': 'Q11366', 'property': 'P136', 'type': 'wikibase-entityid', 'numeric-id': 11366, 'entity-type': 'item'}, {'id': 'Q1860', 'entity-type': 'item', 'property': 'P407', 'numeric-id': 1860, 'type': 'wikibase-entityid'}, {'property': 'P7937', 'type': 'wikibase-entityid', 'numeric-id': 222910, 'entity-type': 'item', 'id': 'Q222910'}), 'title': 'Q6813183'}
{'type': 'item', 'id': 'Q6813266', 'labels': (('en', 'Abd as-Salam al-Qadiri'),), 'descriptions': (('en', 'Historian and genealogist'),), 'aliases': (('en', 'Abu Mohammed Abd as-Salam al-Qadiri'),), 'sitelinks': (('urwiki', '\xd8\xb9\xd8\xa8\xd8\xaf\xd8\xa7\xd9\x84\xd8\xb3\xd9\x84\xd8\xa7\xd9\x85 \xd9\x82\xd8\xa7\xd8\xaf\xd8\xb1\xdb\x8c', None), ('pnbwiki', '\xd8\xb9\xd8\xa8\xd8\xaf\xd8\xa7\xd9\x84\xd8\xb3\xd9\x84\xd8\xa7\xd9\x85 \xd9\x82\xd8\xa7\xd8\xaf\xd8\xb1\xdb\x8c', None), ('arzwiki', '\xd8\xb9\xd8\xa8\xd8\xaf \xd8\xa7\xd9\x84\xd8\xb3\xd9\x84\xd8\xa7\xd9\x85 \xd8\xa8\xd9\x86 \xd8\xa7\xd9\x84\xd8\xb7\xd9\x8a\xd8\xa8', None), ('enwiki', 'Abd as-Salam al-Qadiri', None), ('arwiki', '\xd8\xb9\xd8\xa8\xd8\xaf \xd8\xa7\xd9\x84\xd8\xb3\xd9\x84\xd8\xa7\xd9\x85 \xd8\xa8\xd9\x86 \xd8\xa7\xd9\x84\xd8\xb7\xd9\x8a\xd8\xa8', None)), 'claims': ({'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'timezone': 0, 'precision': 9, 'before': 0, 'property': 'P569', 'type': 'time', 'time': '+1648-01-01T00:00:00Z'}, {'property': 'P1412', 'numeric-id': 13955, 'entity-type': 'item', 'id': 'Q13955', 'type': 'wikibase-entityid'}, {'numeric-id': 25448, 'id': 'Q25448', 'entity-type': 'item', 'property': 'P1412', 'type': 'wikibase-entityid'}, {'numeric-id': 25448, 'property': 'P103', 'id': 'Q25448', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q14972848', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 14972848, 'property': 'P106'}, {'id': 'Q14467526', 'entity-type': 'item', 'numeric-id': 14467526, 'property': 'P106', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 201788, 'id': 'Q201788', 'property': 'P106', 'type': 'wikibase-entityid'}, {'property': 'P21', 'type': 'wikibase-entityid', 'numeric-id': 6581097, 'entity-type': 'item', 'id': 'Q6581097'}, {'property': 'P31', 'id': 'Q5', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 5}, {'id': 'Q1028', 'numeric-id': 1028, 'property': 'P27', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q4666312', 'property': 'P735', 'type': 'wikibase-entityid', 'numeric-id': 4666312, 'entity-type': 'item'}, {'precision': 9, 'property': 'P570', 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'time': '+1698-01-01T00:00:00Z', 'after': 0, 'type': 'time'}), 'title': 'Q6813266'}
{'type': 'item', 'id': 'Q6813471', 'labels': (('en', 'Melody Market'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('enwiki', 'Melody Market', None),), 'claims': ({'property': 'P18', 'type': 'string', 'value': 'Melody food street gate.jpg'},), 'title': 'Q6813471'}
{'type': 'item', 'id': 'Q6813545', 'labels': (('en', 'Melong'),), 'descriptions': (('en', 'Tibetan term'),), 'aliases': (), 'sitelinks': (('enwiki', 'Melong', None), ('swwiki', 'Melong, Kamerun', None)), 'claims': ({'property': 'P1889', 'type': 'wikibase-entityid', 'numeric-id': 11189070, 'entity-type': 'item', 'id': 'Q11189070'},), 'title': 'Q6813545'}
{'type': 'item', 'id': 'Q6814065', 'labels': (('en', 'Melvin Robinson'),), 'descriptions': (('en', 'American basketball player'),), 'aliases': (), 'sitelinks': (('enwiki', 'Melvin Robinson', None),), 'claims': ({'property': 'P31', 'entity-type': 'item', 'numeric-id': 5, 'type': 'wikibase-entityid', 'id': 'Q5'}, {'property': 'P27', 'numeric-id': 30, 'id': 'Q30', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'entity-type': 'item', 'numeric-id': 3665646, 'type': 'wikibase-entityid', 'property': 'P106', 'id': 'Q3665646'}, {'type': 'wikibase-entityid', 'id': 'Q30', 'property': 'P1532', 'numeric-id': 30, 'entity-type': 'item'}, {'property': 'P54', 'id': 'Q16969659', 'numeric-id': 16969659, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'numeric-id': 94861615, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q94861615', 'property': 'P118'}, {'entity-type': 'item', 'numeric-id': 6581097, 'id': 'Q6581097', 'type': 'wikibase-entityid', 'property': 'P21'}, {'property': 'P735', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 3854316, 'id': 'Q3854316'}, {'type': 'wikibase-entityid', 'id': 'Q734774', 'numeric-id': 734774, 'property': 'P69', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'numeric-id': 1860, 'entity-type': 'item', 'id': 'Q1860', 'property': 'P103'}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'before': 0, 'precision': 11, 'time': '+1970-03-28T00:00:00Z', 'type': 'time', 'timezone': 0, 'after': 0}, {'numeric-id': 5372, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q5372', 'property': 'P641'}, {'id': 'Q2798428', 'entity-type': 'item', 'property': 'P734', 'numeric-id': 2798428, 'type': 'wikibase-entityid'}), 'title': 'Q6814065'}
{'type': 'item', 'id': 'Q6814103', 'labels': (('en', 'Melvin White'),), 'descriptions': (('en', 'American executed for murder (1950-2005)'),), 'aliases': (('en', 'Melvin Wayne White'),), 'sitelinks': (('enwiki', 'Melvin White (murderer)', None),), 'claims': ({'before': 0, 'time': '+2005-11-03T00:00:00Z', 'timezone': 0, 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'after': 0, 'property': 'P570'}, {'id': 'Q5', 'numeric-id': 5, 'entity-type': 'item', 'property': 'P31', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q864885', 'entity-type': 'item', 'numeric-id': 864885, 'property': 'P20'}, {'numeric-id': 1215200, 'property': 'P734', 'entity-type': 'item', 'id': 'Q1215200', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'property': 'P735', 'entity-type': 'item', 'numeric-id': 3854316, 'id': 'Q3854316'}, {'entity-type': 'item', 'id': 'Q6581097', 'numeric-id': 6581097, 'property': 'P21', 'type': 'wikibase-entityid'}, {'time': '+1950-01-25T00:00:00Z', 'property': 'P569', 'before': 0, 'after': 0, 'precision': 11, 'timezone': 0, 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'type': 'wikibase-entityid', 'numeric-id': 132821, 'id': 'Q132821', 'property': 'P1399', 'entity-type': 'item'}, {'id': 'Q8454', 'property': 'P1196', 'type': 'wikibase-entityid', 'numeric-id': 8454, 'entity-type': 'item'}), 'title': 'Q6814103'}
{'type': 'item', 'id': 'Q6814143', 'labels': (('en', 'Melvyn Sharp'),), 'descriptions': (('en', 'English swimmer'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mervyn Sharp', None),), 'claims': ({'type': 'wikibase-entityid', 'property': 'P641', 'id': 'Q31920', 'entity-type': 'item', 'numeric-id': 31920}, {'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q5', 'numeric-id': 5}, {'type': 'wikibase-entityid', 'numeric-id': 5265065, 'entity-type': 'item', 'id': 'Q5265065', 'property': 'P734'}, {'property': 'P106', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 10843402, 'id': 'Q10843402'}, {'type': 'wikibase-entityid', 'id': 'Q6581097', 'numeric-id': 6581097, 'property': 'P21', 'entity-type': 'item'}), 'title': 'Q6814143'}
{'type': 'item', 'id': 'Q6815144', 'labels': (('en', 'Saliman Eliyahu'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('hewiki', '\xd7\xa1\xd7\x9c\xd7\x9e\xd7\x90\xd7\x9f \xd7\x90\xd7\x9c\xd7\x99\xd7\x94\xd7\x95', None),), 'claims': ({'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P106', 'id': 'Q133485', 'numeric-id': 133485}, {'before': 0, 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'precision': 9, 'property': 'P569', 'time': '+1872-00-00T00:00:00Z', 'type': 'time'}, {'property': 'P69', 'entity-type': 'item', 'id': 'Q12408866', 'numeric-id': 12408866, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'numeric-id': 1530, 'property': 'P19', 'id': 'Q1530', 'entity-type': 'item'}, {'time': '+1940-10-04T00:00:00Z', 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'type': 'time', 'before': 0, 'precision': 11, 'property': 'P570'}, {'type': 'string', 'value': 'Rabbi Salman Eliyahu.jpg', 'property': 'P18'}, {'type': 'wikibase-entityid', 'id': 'Q12404547', 'entity-type': 'item', 'property': 'P119', 'numeric-id': 12404547}, {'type': 'wikibase-entityid', 'numeric-id': 5, 'property': 'P31', 'entity-type': 'item', 'id': 'Q5'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q6581097', 'property': 'P21', 'numeric-id': 6581097}, {'numeric-id': 9268, 'property': 'P140', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q9268'}, {'id': 'Q213274', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 213274, 'property': 'P20'}), 'title': 'Q6815144'}
{'type': 'item', 'id': 'Q6815436', 'labels': (('en', 'Memorial Hall'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('enwiki', 'Memorial Hall (Rockford, Illinois)', None),), 'claims': ({'id': 'Q30', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 30, 'property': 'P17'}, {'value': 'http://veteransmemorialhall.com/', 'property': 'P856', 'type': 'string'}, {'id': 'Q19558910', 'entity-type': 'item', 'numeric-id': 19558910, 'property': 'P1435', 'type': 'wikibase-entityid'}, {'property': 'P131', 'entity-type': 'item', 'id': 'Q233892', 'numeric-id': 233892, 'type': 'wikibase-entityid'}, {'type': 'string', 'property': 'P18', 'value': 'Rockford Il Memorial Hall2.jpg'}), 'title': 'Q6815436'}
{'type': 'item', 'id': 'Q6815771', 'labels': (('en', 'Mordecai Ben-Ammi (Rabinowicz)'),), 'descriptions': (('en', 'Jewish-Russian writer (1854-1932)'),), 'aliases': (('en', 'Ben-Ami'), ('en', 'Mark Iakovlevich Rabinovich'), ('en', 'Mordechai Iakovlevich Rabinovich'), ('en', 'Mordekha\xc4\xad Ben-Ammi')), 'sitelinks': (('ukwiki', '\xd0\xa0\xd0\xb0\xd0\xb1\xd0\xb8\xd0\xbd\xd0\xbe\xd0\xb2\xd0\xb8\xd1\x87 \xd0\x9c\xd0\xb0\xd1\x80\xd0\xba \xd0\xaf\xd0\xba\xd0\xbe\xd0\xb2\xd0\xb8\xd1\x87', None), ('hewiki', '\xd7\x9e\xd7\xa8\xd7\x93\xd7\x9b\xd7\x99 \xd7\x91\xd7\x9f-\xd7\xa2\xd7\x9e\xd7\x99', None), ('commonswiki', 'Category:Mordechai Ben-Ammi', None), ('ruwikisource', '\xd0\x9c\xd0\xb0\xd1\x80\xd0\xba \xd0\xaf\xd0\xba\xd0\xbe\xd0\xb2\xd0\xbb\xd0\xb5\xd0\xb2\xd0\xb8\xd1\x87 \xd0\xa0\xd0\xb0\xd0\xb1\xd0\xb8\xd0\xbd\xd0\xbe\xd0\xb2\xd0\xb8\xd1\x87', None), ('ruwiki', '\xd0\xa0\xd0\xb0\xd0\xb1\xd0\xb8\xd0\xbd\xd0\xbe\xd0\xb2\xd0\xb8\xd1\x87, \xd0\x9c\xd0\xb0\xd1\x80\xd0\xba \xd0\xaf\xd0\xba\xd0\xbe\xd0\xb2\xd0\xbb\xd0\xb5\xd0\xb2\xd0\xb8\xd1\x87', None)), 'claims': ({'id': 'Q6581097', 'entity-type': 'item', 'property': 'P21', 'type': 'wikibase-entityid', 'numeric-id': 6581097}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0, 'precision': 9, 'time': '+1932-00-00T00:00:00Z', 'after': 0, 'property': 'P570', 'timezone': 0, 'type': 'time'}, {'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'before': 0, 'precision': 11, 'property': 'P570', 'after': 0, 'time': '+1932-02-08T00:00:00Z'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 2597530, 'property': 'P119', 'id': 'Q2597530'}, {'entity-type': 'item', 'property': 'P19', 'id': 'Q277861', 'type': 'wikibase-entityid', 'numeric-id': 277861}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q7325', 'numeric-id': 7325, 'property': 'P172'}, {'after': 0, 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 9, 'property': 'P569', 'timezone': 0, 'type': 'time', 'time': '+1854-00-00T00:00:00Z'}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1854-08-03T00:00:00Z', 'after': 0, 'timezone': 0, 'before': 0, 'property': 'P569', 'precision': 11, 'type': 'time'}, {'value': '\xd0\x9c\xd0\xbe\xd1\x80\xd0\xb4\xd0\xb5\xd1\x85\xd0\xb0\xd0\xb9 \xd0\x91\xd0\xb5\xd0\xbd-\xd0\x90\xd0\xbc\xd0\xb8', 'property': 'P742', 'type': 'string'}, {'property': 'P742', 'type': 'string', 'value': '\xd7\xa8\xd7\x99\xd7\xa9 \xd7\x92\xd7\x9c\xd7\x95\xd7\xaa\xd7\x90'}, {'property': 'P1412', 'type': 'wikibase-entityid', 'id': 'Q8641', 'numeric-id': 8641, 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'id': 'Q7737', 'entity-type': 'item', 'numeric-id': 7737, 'property': 'P1412'}, {'entity-type': 'item', 'numeric-id': 188, 'id': 'Q188', 'property': 'P1412', 'type': 'wikibase-entityid'}, {'id': 'Q150', 'property': 'P1412', 'type': 'wikibase-entityid', 'numeric-id': 150, 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'id': 'Q27990453', 'numeric-id': 27990453, 'entity-type': 'item', 'property': 'P40'}, {'type': 'wikibase-entityid', 'id': 'Q27990468', 'entity-type': 'item', 'numeric-id': 27990468, 'property': 'P40'}, {'type': 'string', 'property': 'P10404', 'value': '02876'}, {'property': 'P6886', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q7737', 'numeric-id': 7737}, {'entity-type': 'item', 'numeric-id': 3862863, 'id': 'Q3862863', 'type': 'wikibase-entityid', 'property': 'P735'}, {'value': 'Ben-Ami Mordechai.jpg', 'type': 'string', 'property': 'P18'}, {'type': 'wikibase-entityid', 'id': 'Q33935', 'numeric-id': 33935, 'entity-type': 'item', 'property': 'P20'}, {'property': 'P1343', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q4173137', 'numeric-id': 4173137}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 22074611, 'id': 'Q22074611', 'property': 'P1343'}, {'id': 'Q36180', 'numeric-id': 36180, 'property': 'P106', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'string', 'value': 'Mordechai Ben-Ammi', 'property': 'P373'}, {'numeric-id': 5, 'id': 'Q5', 'entity-type': 'item', 'property': 'P31', 'type': 'wikibase-entityid'}), 'title': 'Q6815771'}
{'type': 'item', 'id': 'Q6815886', 'labels': (('en', 'Memphis Technical High School'),), 'descriptions': (('en', 'school in Memphis, Tennessee, United States'),), 'aliases': (), 'sitelinks': (('enwiki', 'Memphis Technical High School', None),), 'claims': ({'precision': 9, 'type': 'time', 'before': 0, 'property': 'P576', 'time': '+1987-00-00T00:00:00Z', 'after': 0, 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'type': 'wikibase-entityid', 'id': 'Q30', 'entity-type': 'item', 'property': 'P17', 'numeric-id': 30}, {'type': 'wikibase-entityid', 'id': 'Q16563', 'entity-type': 'item', 'numeric-id': 16563, 'property': 'P131'}, {'type': 'wikibase-entityid', 'property': 'P31', 'id': 'Q159334', 'entity-type': 'item', 'numeric-id': 159334}, {'type': 'time', 'after': 0, 'property': 'P571', 'precision': 9, 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0, 'time': '+1911-00-00T00:00:00Z'}, {'type': 'time', 'before': 0, 'property': 'P3999', 'timezone': 0, 'precision': 9, 'after': 0, 'time': '+1987-00-00T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}), 'title': 'Q6815886'}
{'type': 'item', 'id': 'Q6816032', 'labels': (('en', 'Celepler'), ('en-g', 'Celepler'), ('en-ca', 'Celepler')), 'descriptions': (('en', 'village in Orhaneli, Bursa, Turkey'),), 'aliases': (), 'sitelinks': (('viwiki', 'Celepler, Orhaneli', None), ('trwiki', 'Celepler, Orhaneli', None), ('ttwiki', '\xd2\x96\xd0\xb5\xd0\xbb\xd0\xb5\xd0\xbf\xd0\xbb\xd0\xb5\xd1\x80 (\xd0\x9e\xd1\x80\xd2\xbb\xd0\xb0\xd0\xbd\xd0\xb5\xd0\xbb\xd0\xb8)', None), ('cewiki', '\xd0\x94\xd0\xb6\xd0\xb5\xd0\xbb\xd0\xb5\xd0\xbf\xd0\xbb\xd0\xb5\xd1\x80 (\xd0\x9e\xd1\x80\xd1\x85\xd3\x80\xd0\xb0\xd0\xbd\xd0\xb5\xd0\xbb\xd0\xb8)', None)), 'claims': ({'id': 'Q1948420', 'type': 'wikibase-entityid', 'property': 'P131', 'numeric-id': 1948420, 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q123705', 'property': 'P31', 'numeric-id': 123705, 'type': 'wikibase-entityid'}, {'id': 'Q43', 'entity-type': 'item', 'property': 'P17', 'type': 'wikibase-entityid', 'numeric-id': 43}), 'title': 'Q6816032'}
{'type': 'item', 'id': 'Q6816126', 'labels': (('en', "Men's Thai-Boxing at W.A.K.O. European Championships 2006 Skopje -75 kg"),), 'descriptions': (), 'aliases': (), 'sitelinks': (('enwiki', "Men's Thai-Boxing at W.A.K.O. European Championships 2006 Skopje -75 kg", None),), 'claims': ({'after': 0, 'precision': 9, 'before': 0, 'timezone': 0, 'time': '+2006-00-00T00:00:00Z', 'property': 'P585', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time'}, {'id': 'Q16510064', 'numeric-id': 16510064, 'type': 'wikibase-entityid', 'property': 'P31', 'entity-type': 'item'}, {'id': 'Q178678', 'numeric-id': 178678, 'property': 'P641', 'type': 'wikibase-entityid', 'entity-type': 'item'}), 'title': 'Q6816126'}
{'type': 'item', 'id': 'Q6816515', 'labels': (('en', 'Mencendarbe Manor house'),), 'descriptions': (('en', 'manor house in Latvia'),), 'aliases': (), 'sitelinks': (('eswiki', 'Mansi\xc3\xb3n de Mencendarbe', None), ('cawiki', 'Casa Senyorial de Mencendarbe', None), ('enwiki', 'Mencendarbe Manor', None), ('dewiki', 'Schloss Merzendorf', None), ('commonswiki', 'Category:Mercendarbe Manor', None), ('lvwiki', 'Mercendarbes mui\xc5\xbea', None)), 'claims': ({'type': 'string', 'value': 'Mercendarbes mui\xc5\xbea.jpg', 'property': 'P18'}, {'type': 'wikibase-entityid', 'id': 'Q879050', 'entity-type': 'item', 'numeric-id': 879050, 'property': 'P31'}, {'property': 'P373', 'value': 'Mercendarbe Manor', 'type': 'string'}, {'entity-type': 'item', 'numeric-id': 211, 'id': 'Q211', 'type': 'wikibase-entityid', 'property': 'P17'}), 'title': 'Q6816515'}
{'type': 'item', 'id': 'Q6816625', 'labels': (('en', 'Mendi Bible'),), 'descriptions': (('en', 'Bible in the Mende language'),), 'aliases': (('en', 'Mende Bible'),), 'sitelinks': (('enwiki', 'Mendi Bible', None), ('commonswiki', 'Category:Mendi Bible', None)), 'claims': ({'id': 'Q1845', 'numeric-id': 1845, 'entity-type': 'item', 'property': 'P31', 'type': 'wikibase-entityid'}, {'property': 'P373', 'value': 'Mendi Bible', 'type': 'string'}), 'title': 'Q6816625'}
{'type': 'item', 'id': 'Q6816605', 'labels': (('en', 'Mendenhaven'),), 'descriptions': (('en', 'human settlement in Alaska, United States of America'),), 'aliases': (('en', 'Mendenhaven, Alaska'),), 'sitelinks': (('enwiki', 'Mendenhaven, Juneau', ('Q70893996',)),), 'claims': ({'property': 'P31', 'id': 'Q486972', 'numeric-id': 486972, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P17', 'id': 'Q30', 'numeric-id': 30}, {'entity-type': 'item', 'property': 'P131', 'id': 'Q797', 'numeric-id': 797, 'type': 'wikibase-entityid'}), 'title': 'Q6816605'}
{'type': 'item', 'id': 'Q6817661', 'labels': (('en', 'Mentzer Building'),), 'descriptions': (('en', 'building in Pennsylvania, United States of America'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mentzer Building', None),), 'claims': ({'entity-type': 'item', 'property': 'P31', 'numeric-id': 41176, 'id': 'Q41176', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'property': 'P1435', 'numeric-id': 19558910, 'entity-type': 'item', 'id': 'Q19558910'}, {'property': 'P131', 'numeric-id': 1400, 'id': 'Q1400', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P17', 'id': 'Q30', 'entity-type': 'item', 'numeric-id': 30, 'type': 'wikibase-entityid'}, {'value': 'Mentzer B LanCo PA.jpg', 'property': 'P18', 'type': 'string'}), 'title': 'Q6817661'}
{'type': 'item', 'id': 'Q6818208', 'labels': (('en-g', 'Mercedes P\xc3\xa9rez'), ('en', 'Mercedes P\xc3\xa9rez'), ('en-ca', 'Mercedes P\xc3\xa9rez')), 'descriptions': (('en', 'Colombian weightlifter'),), 'aliases': (('en', 'Mercedes Perez'), ('en', 'Mercedes Isabel Perez Tigrero')), 'sitelinks': (('nowiki', 'Mercedes P\xc3\xa9rez (vektl\xc3\xb8fter)', None), ('arwiki', '\xd9\x85\xd8\xb1\xd8\xb3\xd9\x8a\xd8\xaf\xd8\xb3 \xd8\xa8\xd9\x8a\xd8\xb1\xd9\x8a\xd8\xb2', None), ('enwiki', 'Mercedes P\xc3\xa9rez', None), ('eswiki', 'Mercedes P\xc3\xa9rez', None), ('zhwiki', '\xe6\xa2\x85\xe5\xa1\x9e\xe5\xbe\xb7\xe4\xb8\x9d\xc2\xb7\xe4\xbd\xa9\xe9\x9b\xb7\xe6\x96\xaf', None), ('ruwiki', '\xd0\x9f\xd0\xb5\xd1\x80\xd0\xb5\xd1\x81, \xd0\x9c\xd0\xb5\xd1\x80\xd1\x81\xd0\xb5\xd0\xb4\xd0\xb5\xd1\x81', None)), 'claims': ({'amount': '+63', 'property': 'P2067', 'unit': 'http://www.wikidata.org/entity/Q11570', 'type': 'quantity'}, {'type': 'wikibase-entityid', 'property': 'P19', 'numeric-id': 209016, 'entity-type': 'item', 'id': 'Q209016'}, {'type': 'wikibase-entityid', 'property': 'P734', 'entity-type': 'item', 'id': 'Q383010', 'numeric-id': 383010}, {'type': 'wikibase-entityid', 'id': 'Q255209', 'numeric-id': 255209, 'entity-type': 'item', 'property': 'P735'}, {'before': 0, 'after': 0, 'property': 'P569', 'precision': 11, 'timezone': 0, 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1987-08-07T00:00:00Z'}, {'numeric-id': 963420, 'type': 'wikibase-entityid', 'property': 'P1344', 'id': 'Q963420', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'numeric-id': 26212177, 'id': 'Q26212177', 'entity-type': 'item', 'property': 'P1344'}, {'id': 'Q77555791', 'numeric-id': 77555791, 'type': 'wikibase-entityid', 'property': 'P1344', 'entity-type': 'item'}, {'property': 'P27', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q739', 'numeric-id': 739}, {'id': 'Q1321', 'property': 'P1412', 'entity-type': 'item', 'numeric-id': 1321, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'numeric-id': 6581072, 'property': 'P21', 'id': 'Q6581072', 'entity-type': 'item'}, {'property': 'P641', 'type': 'wikibase-entityid', 'id': 'Q83462', 'entity-type': 'item', 'numeric-id': 83462}, {'unit': 'http://www.wikidata.org/entity/Q174728', 'amount': '+165', 'type': 'quantity', 'property': 'P2048'}, {'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q5', 'entity-type': 'item', 'numeric-id': 5}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P106', 'numeric-id': 13381376, 'id': 'Q13381376'}), 'title': 'Q6818208'}
{'type': 'item', 'id': 'Q6818343', 'labels': (('en', 'Merchandise Building'),), 'descriptions': (('en', 'former warehouse and current loft building in Toronto, Ontario, Canada'),), 'aliases': (), 'sitelinks': (('enwiki', 'Merchandise Building', None), ('commonswiki', 'Category:Merchandise Building', None)), 'claims': ({'numeric-id': 811430, 'property': 'P31', 'id': 'Q811430', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P18', 'value': 'Merchandise Building.JPG', 'type': 'string'}, {'property': 'P131', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 1904, 'id': 'Q1904'}, {'id': 'Q16', 'numeric-id': 16, 'property': 'P17', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P373', 'type': 'string', 'value': 'Merchandise Building'}), 'title': 'Q6818343'}
{'type': 'item', 'id': 'Q6818964', 'labels': (('en-ca', 'Meredith Nicholson'), ('en', 'Meredith Nicholson'), ('en-g', 'Meredith Nicholson')), 'descriptions': (('en', 'American politician'),), 'aliases': (), 'sitelinks': (('arwiki', '\xd9\x85\xd8\xb1\xd9\x8a\xd8\xaf\xd9\x8a\xd8\xab \xd9\x86\xd9\x8a\xd9\x83\xd9\x84\xd8\xb3\xd9\x88\xd9\x86', None), ('enwikisource', 'Author:Meredith Nicholson', None), ('azbwiki', '\xd9\x85\xd8\xb1\xd8\xaf\xdb\x8c\xd8\xaa \xd9\x86\xdb\x8c\xda\xa9\xd9\x88\xd9\x84\xd8\xb3\xd9\x88\xd9\x86', None), ('commonswiki', 'Category:Meredith Nicholson', None), ('enwiki', 'Meredith Nicholson', None)), 'claims': ({'type': 'string', 'value': 'agent/base/86914', 'property': 'P7704'}, {'type': 'wikibase-entityid', 'property': 'P119', 'entity-type': 'item', 'id': 'Q5189371', 'numeric-id': 5189371}, {'entity-type': 'item', 'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q5', 'numeric-id': 5}, {'type': 'string', 'property': 'P373', 'value': 'Meredith Nicholson'}, {'numeric-id': 1860, 'property': 'P1412', 'id': 'Q1860', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q19098835', 'numeric-id': 19098835, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P1343'}, {'entity-type': 'item', 'numeric-id': 117266889, 'type': 'wikibase-entityid', 'id': 'Q117266889', 'property': 'P1343'}, {'numeric-id': 15987490, 'id': 'Q15987490', 'property': 'P1343', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'numeric-id': 1276644, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q1276644', 'property': 'P735'}, {'property': 'P570', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'before': 0, 'type': 'time', 'after': 0, 'timezone': 0, 'time': '+1947-12-22T00:00:00Z'}, {'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'timezone': 0, 'type': 'time', 'precision': 11, 'property': 'P570', 'time': '+1947-12-20T00:00:00Z'}, {'type': 'time', 'before': 0, 'precision': 9, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'property': 'P570', 'time': '+1947-00-00T00:00:00Z', 'timezone': 0}, {'numeric-id': 6625963, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P106', 'id': 'Q6625963'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 193391, 'property': 'P106', 'id': 'Q193391'}, {'property': 'P106', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 82955, 'id': 'Q82955'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P106', 'numeric-id': 36180, 'id': 'Q36180'}, {'value': '1273323', 'property': 'P12098', 'type': 'string'}, {'id': 'Q29552', 'numeric-id': 29552, 'entity-type': 'item', 'property': 'P102', 'type': 'wikibase-entityid'}, {'id': 'Q1860', 'type': 'wikibase-entityid', 'property': 'P6886', 'entity-type': 'item', 'numeric-id': 1860}, {'entity-type': 'item', 'property': 'P27', 'numeric-id': 30, 'type': 'wikibase-entityid', 'id': 'Q30'}, {'entity-type': 'item', 'property': 'P734', 'type': 'wikibase-entityid', 'id': 'Q16878076', 'numeric-id': 16878076}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P21', 'numeric-id': 6581097, 'id': 'Q6581097'}, {'entity-type': 'item', 'id': 'Q6346', 'numeric-id': 6346, 'property': 'P20', 'type': 'wikibase-entityid'}, {'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'type': 'time', 'property': 'P569', 'time': '+1866-12-09T00:00:00Z', 'precision': 11, 'before': 0}, {'property': 'P569', 'after': 0, 'before': 0, 'precision': 9, 'timezone': 0, 'type': 'time', 'time': '+1866-00-00T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'entity-type': 'item', 'id': 'Q986629', 'numeric-id': 986629, 'property': 'P19', 'type': 'wikibase-entityid'}, {'value': 'Portrait of Meredith Nicholson.jpg', 'type': 'string', 'property': 'P18'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q463281', 'numeric-id': 463281, 'property': 'P463'}), 'title': 'Q6818964'}
{'type': 'item', 'id': 'Q6819123', 'labels': (('en', 'Mergers and acquisitions in United Kingdom law'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('enwiki', 'Mergers and acquisitions in United Kingdom law', None),), 'claims': (), 'title': 'Q6819123'}
{'type': 'item', 'id': 'Q6819683', 'labels': (('en', "Merle Haggard's Christmas Present"),), 'descriptions': (('en', 'album by Merle Haggard'), ('en-ca', 'album by Merle Haggard'), ('en-g', 'album by Merle Haggard')), 'aliases': (), 'sitelinks': (('enwiki', "Merle Haggard's Christmas Present", None),), 'claims': ({'numeric-id': 482994, 'property': 'P31', 'id': 'Q482994', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q1738652', 'numeric-id': 1738652, 'entity-type': 'item', 'property': 'P162', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q5990790', 'numeric-id': 5990790, 'entity-type': 'item', 'property': 'P156'}, {'entity-type': 'item', 'property': 'P155', 'type': 'wikibase-entityid', 'id': 'Q5978065', 'numeric-id': 5978065}, {'id': 'Q183092', 'numeric-id': 183092, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P175'}, {'id': 'Q193023', 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P264', 'numeric-id': 193023}, {'type': 'wikibase-entityid', 'property': 'P136', 'entity-type': 'item', 'numeric-id': 83440, 'id': 'Q83440'}, {'id': 'Q1443316', 'numeric-id': 1443316, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P136'}), 'title': 'Q6819683'}
{'type': 'item', 'id': 'Q6819764', 'labels': (('en', 'Merlin Award'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('enwiki', 'Merlin Award', ('Q70893996',)), ('ruwiki', '\xd0\x9c\xd0\xb5\xd1\x80\xd0\xbb\xd0\xb8\xd0\xbd (\xd0\xbf\xd1\x80\xd0\xb5\xd0\xbc\xd0\xb8\xd1\x8f)', None)), 'claims': ({'id': 'Q618779', 'numeric-id': 618779, 'entity-type': 'item', 'property': 'P31', 'type': 'wikibase-entityid'},), 'title': 'Q6819764'}
{'type': 'item', 'id': 'Q6819862', 'labels': (('en', 'Mermaid Records'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('enwiki', 'Mermaid Records', None), ('dawiki', 'Mermaid Records', None)), 'claims': ({'property': 'P2002', 'value': 'mermaid_records', 'type': 'string'}, {'after': 0, 'property': 'P571', 'type': 'time', 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'precision': 9, 'time': '+2005-00-00T00:00:00Z'}, {'value': 'mermaidrecords', 'type': 'string', 'property': 'P2013'}, {'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q18127', 'numeric-id': 18127, 'entity-type': 'item'}, {'entity-type': 'item', 'property': 'P17', 'numeric-id': 35, 'type': 'wikibase-entityid', 'id': 'Q35'}), 'title': 'Q6819862'}
{'type': 'item', 'id': 'Q6820193', 'labels': (('en', 'Merrill Garnett'),), 'descriptions': (('en', 'American biochemist'),), 'aliases': (), 'sitelinks': (('arwiki', '\xd8\xa8\xd9\x88\xd9\x84\xd9\x8a-\xd8\xa7\xd9\x85 \xd9\x81\xd9\x8a \xd8\xa7\xd9\x8a', None), ('enwiki', 'Poly-MVA', None)), 'claims': ({'numeric-id': 21286851, 'property': 'P735', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q21286851'}, {'id': 'Q16870120', 'property': 'P734', 'numeric-id': 16870120, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q6581097', 'numeric-id': 6581097, 'property': 'P21', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P31', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q5', 'numeric-id': 5}, {'time': '+1931-01-04T00:00:00Z', 'type': 'time', 'after': 0, 'timezone': 0, 'precision': 11, 'property': 'P569', 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'entity-type': 'item', 'property': 'P106', 'id': 'Q2919046', 'type': 'wikibase-entityid', 'numeric-id': 2919046}), 'title': 'Q6820193'}
{'type': 'item', 'id': 'Q6820295', 'labels': (('en', 'Mordechai Burnstein'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('rowiki', 'Mordechai Burnstein', None), ('hewiki', '\xd7\x9e\xd7\xa8\xd7\x93\xd7\x9b\xd7\x99 \xd7\x91\xd7\x95\xd7\xa8\xd7\xa9\xd7\x98\xd7\x99\xd7\x99\xd7\x9f', None), ('commonswiki', 'Category:Mordechai Burnstein', None)), 'claims': ({'property': 'P140', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 9268, 'id': 'Q9268'}, {'entity-type': 'item', 'numeric-id': 218, 'property': 'P27', 'id': 'Q218', 'type': 'wikibase-entityid'}, {'numeric-id': 801, 'type': 'wikibase-entityid', 'property': 'P27', 'id': 'Q801', 'entity-type': 'item'}, {'numeric-id': 6581097, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q6581097', 'property': 'P21'}, {'value': '\xd7\xa1\xd7\x91\xd7\x90 \xd7\x9e\xd7\xa8\xd7\x93\xd7\x9b\xd7\x99.JPG', 'property': 'P18', 'type': 'string'}, {'type': 'wikibase-entityid', 'id': 'Q335336', 'entity-type': 'item', 'numeric-id': 335336, 'property': 'P119'}, {'property': 'P1559', 'language': 'sr', 'text': 'Mordehai Burstein\xe2\x80\x8f', 'type': 'monolingualtext'}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0, 'timezone': 0, 'precision': 9, 'time': '+1922-00-00T00:00:00Z', 'after': 0, 'property': 'P569', 'type': 'time'}, {'entity-type': 'item', 'numeric-id': 37028180, 'id': 'Q37028180', 'property': 'P734', 'type': 'wikibase-entityid'}, {'id': 'Q1218', 'entity-type': 'item', 'numeric-id': 1218, 'property': 'P20', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 7913, 'id': 'Q7913', 'property': 'P1412', 'type': 'wikibase-entityid'}, {'id': 'Q36704', 'property': 'P19', 'numeric-id': 36704, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P106', 'type': 'wikibase-entityid', 'numeric-id': 133485, 'entity-type': 'item', 'id': 'Q133485'}, {'numeric-id': 3862863, 'entity-type': 'item', 'property': 'P735', 'type': 'wikibase-entityid', 'id': 'Q3862863'}, {'property': 'P570', 'timezone': 0, 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+2005-05-00T00:00:00Z', 'after': 0, 'precision': 10, 'type': 'time'}, {'type': 'wikibase-entityid', 'numeric-id': 5, 'id': 'Q5', 'entity-type': 'item', 'property': 'P31'}, {'type': 'string', 'property': 'P373', 'value': 'Mordechai Burnstein'}), 'title': 'Q6820295'}
{'type': 'item', 'id': 'Q6820689', 'labels': (('en', 'Merthyr Tydfil RLFC'),), 'descriptions': (('en', 'defunct Welsh rugby league club, based in Merthyr Tydfil'),), 'aliases': (), 'sitelinks': (('enwiki', 'Merthyr Tydfil RLFC', None),), 'claims': ({'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1907-00-00T00:00:00Z', 'type': 'time', 'before': 0, 'after': 0, 'property': 'P571', 'precision': 9, 'timezone': 0}, {'numeric-id': 15221215, 'entity-type': 'item', 'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q15221215'}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1911-00-00T00:00:00Z', 'before': 0, 'precision': 9, 'property': 'P576', 'type': 'time', 'after': 0, 'timezone': 0}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 109971498, 'id': 'Q109971498', 'property': 'P115'}, {'id': 'Q109971536', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P115', 'numeric-id': 109971536}, {'entity-type': 'item', 'id': 'Q10962', 'numeric-id': 10962, 'property': 'P641', 'type': 'wikibase-entityid'}, {'numeric-id': 1127622, 'id': 'Q1127622', 'property': 'P463', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q25', 'entity-type': 'item', 'numeric-id': 25, 'type': 'wikibase-entityid', 'property': 'P17'}), 'title': 'Q6820689'}
{'type': 'item', 'id': 'Q6820825', 'labels': (('en', 'Merve Alada\xc4\x9f'),), 'descriptions': (('en', "Turkish women's footballer"),), 'aliases': (), 'sitelinks': (('trwiki', 'Merve Alada\xc4\x9f', None), ('fawiki', '\xd9\x85\xd8\xb1\xd9\x88 \xd8\xa2\xd9\x84\xd8\xa7\xd8\xaf\xd8\xa7\xda\x86', None), ('uzwiki', 'Merve Alada\xc4\x9f', None), ('commonswiki', 'Category:Merve Alada\xc4\x9f', None), ('arzwiki', '\xd9\x85\xd9\x8a\xd8\xb1\xda\xa4 \xd8\xa7\xd9\x84\xd8\xa7\xd8\xaf\xd8\xa7\xd8\xac', None), ('enwiki', 'Merve Alada\xc4\x9f', None)), 'claims': ({'property': 'P54', 'type': 'wikibase-entityid', 'id': 'Q2868795', 'entity-type': 'item', 'numeric-id': 2868795}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P54', 'id': 'Q25476875', 'numeric-id': 25476875}, {'numeric-id': 18128942, 'id': 'Q18128942', 'type': 'wikibase-entityid', 'property': 'P54', 'entity-type': 'item'}, {'entity-type': 'item', 'property': 'P54', 'id': 'Q1385152', 'numeric-id': 1385152, 'type': 'wikibase-entityid'}, {'id': 'Q937678', 'entity-type': 'item', 'property': 'P54', 'type': 'wikibase-entityid', 'numeric-id': 937678}, {'numeric-id': 256, 'entity-type': 'item', 'id': 'Q256', 'property': 'P1412', 'type': 'wikibase-entityid'}, {'property': 'P641', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q2736', 'numeric-id': 2736}, {'value': 'MerveAlada\xc4\x9f02.JPG', 'type': 'string', 'property': 'P18'}, {'property': 'P19', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q424674', 'numeric-id': 424674}, {'entity-type': 'item', 'id': 'Q6581072', 'numeric-id': 6581072, 'property': 'P21', 'type': 'wikibase-entityid'}, {'value': 'Merve Alada\xc4\x9f', 'property': 'P373', 'type': 'string'}, {'numeric-id': 5, 'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q5', 'entity-type': 'item'}, {'id': 'Q83338805', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 83338805, 'property': 'P734'}, {'id': 'Q3306682', 'numeric-id': 3306682, 'property': 'P735', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P413', 'id': 'Q280658', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 280658}, {'id': 'Q937857', 'type': 'wikibase-entityid', 'numeric-id': 937857, 'property': 'P106', 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q256', 'property': 'P103', 'numeric-id': 256, 'type': 'wikibase-entityid'}, {'numeric-id': 43, 'property': 'P27', 'id': 'Q43', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P1559', 'language': 'tr', 'type': 'monolingualtext', 'text': 'Merve Alada\xc4\x9f'}, {'type': 'time', 'precision': 11, 'time': '+1993-04-01T00:00:00Z', 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'timezone': 0, 'after': 0}), 'title': 'Q6820825'}
{'type': 'item', 'id': 'Q6821051', 'labels': (('en', 'Mesa Amphitheatre'),), 'descriptions': (('en', 'concert venue in Mesa, Arizona, United States of America'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mesa Amphitheatre', None), ('elwiki', '\xce\x91\xce\xbc\xcf\x86\xce\xb9\xce\xb8\xce\xad\xce\xb1\xcf\x84\xcf\x81\xce\xbf \xcf\x84\xce\xb7\xcf\x82 \xce\x9c\xce\xad\xcf\x83\xce\xb1', None)), 'claims': ({'id': 'Q30', 'property': 'P17', 'numeric-id': 30, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P31', 'type': 'wikibase-entityid', 'numeric-id': 54831, 'entity-type': 'item', 'id': 'Q54831'}, {'property': 'P1619', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'time': '+1979-00-00T00:00:00Z', 'precision': 9, 'timezone': 0, 'before': 0, 'type': 'time'}, {'id': 'Q816', 'numeric-id': 816, 'property': 'P131', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'timezone': 0, 'after': 0, 'precision': 9, 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0, 'time': '+1979-01-01T00:00:00Z', 'property': 'P571'}), 'title': 'Q6821051'}
{'type': 'item', 'id': 'Q6821263', 'labels': (('en', 'Meshal Al Enezi'), ('en-ca', 'Meshal Al Enezi'), ('en-g', 'Meshal Al Enezi')), 'descriptions': (('en', 'Qatari footballer'), ('en-g', 'Qatari footballer'), ('en-ca', 'Qatari footballer')), 'aliases': (('en', 'Meshal Al-Enazi'),), 'sitelinks': (('enwiki', 'Meshal Al-Enazi (Qatari footballer)', None), ('arzwiki', '\xd9\x85\xd8\xb4\xd8\xb9\xd9\x84 \xd8\xa7\xd9\x84\xd8\xb9\xd9\x86\xd8\xb2\xd9\x89 (\xd9\x84\xd8\xa7\xd8\xb9\xd8\xa8 \xd9\x83\xd9\x88\xd8\xb1\xd9\x87 \xd9\x82\xd8\xaf\xd9\x85 \xd9\x82\xd8\xb7\xd8\xb1\xd9\x89)', None), ('arwiki', '\xd9\x85\xd8\xb4\xd8\xb9\xd9\x84 \xd8\xa7\xd9\x84\xd8\xb9\xd9\x86\xd8\xb2\xd9\x8a (\xd9\x84\xd8\xa7\xd8\xb9\xd8\xa8 \xd9\x83\xd8\xb1\xd8\xa9 \xd9\x82\xd8\xaf\xd9\x85 \xd9\x85\xd9\x88\xd8\xa7\xd9\x84\xd9\x8a\xd8\xaf 1979)', None)), 'claims': ({'after': 0, 'precision': 11, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'type': 'time', 'before': 0, 'property': 'P569', 'time': '+1979-02-20T00:00:00Z'}, {'id': 'Q2736', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 2736, 'property': 'P641'}, {'id': 'Q937857', 'property': 'P106', 'numeric-id': 937857, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'id': 'Q336286', 'property': 'P413', 'entity-type': 'item', 'numeric-id': 336286}, {'property': 'P19', 'id': 'Q846', 'numeric-id': 846, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q846', 'type': 'wikibase-entityid', 'numeric-id': 846, 'property': 'P27'}, {'type': 'wikibase-entityid', 'id': 'Q13955', 'numeric-id': 13955, 'property': 'P1412', 'entity-type': 'item'}, {'numeric-id': 6581097, 'property': 'P21', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q6581097'}, {'id': 'Q5', 'numeric-id': 5, 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P54', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 283760, 'id': 'Q283760'}, {'id': 'Q284452', 'type': 'wikibase-entityid', 'numeric-id': 284452, 'property': 'P54', 'entity-type': 'item'}), 'title': 'Q6821263'}
{'type': 'item', 'id': 'Q6821469', 'labels': (('en', 'Acer anhweiense'),), 'descriptions': (('en', 'species of plant'),), 'aliases': (), 'sitelinks': (('zhwiki', '\xe5\xae\x89\xe5\xbe\xbd\xe6\xa7\xad', None), ('ptwiki', 'Acer anhweiense', None)), 'claims': ({'language': 'zh-hans', 'type': 'monolingualtext', 'text': '\xe5\xae\x89\xe5\xbe\xbd\xe6\xa7\xad', 'property': 'P1843'}, {'id': 'Q42292', 'numeric-id': 42292, 'entity-type': 'item', 'property': 'P171', 'type': 'wikibase-entityid'}, {'property': 'P10585', 'type': 'string', 'value': '9465'}, {'value': 'Acer anhweiense', 'type': 'string', 'property': 'P225'}, {'language': 'mul', 'property': 'P1813', 'text': 'A. anhweiense', 'type': 'monolingualtext'}, {'id': 'Q112869435', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 112869435, 'property': 'P1343'}, {'id': 'Q16521', 'numeric-id': 16521, 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'numeric-id': 7432, 'id': 'Q7432', 'entity-type': 'item', 'property': 'P105'}), 'title': 'Q6821469'}
{'type': 'item', 'id': 'Q6821574', 'labels': (('en', 'Mesoporous organosilica'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('enwiki', 'Mesoporous organosilica', None),), 'claims': ({'property': 'P10283', 'value': 'C5913796', 'type': 'string'},), 'title': 'Q6821574'}
{'type': 'item', 'id': 'Q6821645', 'labels': (('en', 'Mesothisa'),), 'descriptions': (('en', 'genus of insects'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mesothisa', None), ('cebwiki', 'Mesothisa', None), ('viwiki', 'Mesothisa', None), ('svwiki', 'Mesothisa', None), ('warwiki', 'Mesothisa', None), ('specieswiki', 'Mesothisa', None), ('nlwiki', 'Mesothisa', None)), 'claims': ({'entity-type': 'item', 'numeric-id': 34740, 'id': 'Q34740', 'property': 'P105', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q13555469', 'numeric-id': 13555469, 'property': 'P427', 'entity-type': 'item'}, {'numeric-id': 14977314, 'property': 'P910', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q14977314'}, {'property': 'P225', 'value': 'Mesothisa', 'type': 'string'}, {'numeric-id': 16521, 'entity-type': 'item', 'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q16521'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q135609', 'numeric-id': 135609, 'property': 'P171'}, {'type': 'string', 'property': 'P10585', 'value': '92FFC'}), 'title': 'Q6821645'}
{'type': 'item', 'id': 'Q6821691', 'labels': (('en', 'Mesquite Police Department'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('enwiki', 'Mesquite Police Department (Texas)', None),), 'claims': ({'id': 'Q1758690', 'property': 'P31', 'type': 'wikibase-entityid', 'numeric-id': 1758690, 'entity-type': 'item'}, {'id': 'Q30', 'numeric-id': 30, 'property': 'P17', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P856', 'type': 'string', 'value': 'https://www.cityofmesquite.com/442/Police'}), 'title': 'Q6821691'}
{'type': 'item', 'id': 'Q6821903', 'labels': (('en', 'Messenjah'),), 'descriptions': (('en', 'Canadian musical group'),), 'aliases': (), 'sitelinks': (('enwiki', 'Messenjah', None),), 'claims': ({'property': 'P31', 'type': 'wikibase-entityid', 'numeric-id': 215380, 'id': 'Q215380', 'entity-type': 'item'}, {'time': '+1980-00-00T00:00:00Z', 'precision': 9, 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'after': 0, 'type': 'time', 'property': 'P571'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q16', 'property': 'P495', 'numeric-id': 16}), 'title': 'Q6821903'}
{'type': 'item', 'id': 'Q6821985', 'labels': (('en', 'Messick High School'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('enwiki', 'Messick High School', None),), 'claims': ({'type': 'wikibase-entityid', 'numeric-id': 159334, 'entity-type': 'item', 'id': 'Q159334', 'property': 'P31'}, {'entity-type': 'item', 'property': 'P17', 'numeric-id': 30, 'type': 'wikibase-entityid', 'id': 'Q30'}, {'type': 'wikibase-entityid', 'numeric-id': 16563, 'entity-type': 'item', 'id': 'Q16563', 'property': 'P131'}, {'after': 0, 'property': 'P571', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'precision': 9, 'time': '+1908-01-01T00:00:00Z', 'before': 0, 'timezone': 0}), 'title': 'Q6821985'}
{'type': 'item', 'id': 'Q6821993', 'labels': (('en', 'B\xc3\xbcy\xc3\xbckkaya'),), 'descriptions': (('en-g', 'k\xc3\xb6y in Zara, Turkey'), ('en-ca', 'k\xc3\xb6y in Zara, Turkey'), ('en', 'k\xc3\xb6y in Zara, Turkey')), 'aliases': (), 'sitelinks': (('ttwiki', '\xd0\x91\xd2\xaf\xd1\x8e\xd0\xba\xd0\xba\xd0\xb0\xd1\x8f (\xd0\x97\xd0\xb0\xd1\x80\xd0\xb0)', None), ('trwiki', 'B\xc3\xbcy\xc3\xbckkaya, Zara', None), ('cewiki', '\xd0\x91\xd1\x83\xd1\x8c\xd0\xb9\xd1\x83\xd1\x8c\xd0\xba\xd0\xba\xd0\xb0\xd0\xb9\xd0\xb0 (\xd0\x97\xd0\xb0\xd1\x80\xd0\xb0)', None), ('viwiki', 'B\xc3\xbcy\xc3\xbckkaya, Zara', None)), 'claims': ({'entity-type': 'item', 'id': 'Q43', 'property': 'P17', 'type': 'wikibase-entityid', 'numeric-id': 43}, {'id': 'Q1529096', 'type': 'wikibase-entityid', 'numeric-id': 1529096, 'property': 'P31', 'entity-type': 'item'}, {'numeric-id': 147630, 'type': 'wikibase-entityid', 'id': 'Q147630', 'entity-type': 'item', 'property': 'P131'}), 'title': 'Q6821993'}
{'type': 'item', 'id': 'Q6822487', 'labels': (('en', 'Metadynamics'),), 'descriptions': (('en', 'computer simulation method in computational physics, chemistry and biology'),), 'aliases': (), 'sitelinks': (('jawiki', '\xe3\x83\xa1\xe3\x82\xbf\xe3\x83\x80\xe3\x82\xa4\xe3\x83\x8a\xe3\x83\x9f\xe3\x82\xaf\xe3\x82\xb9\xe6\xb3\x95', None), ('enwiki', 'Metadynamics', None)), 'claims': ({'property': 'P2534', 'type': 'string', 'value': 'H = T + V + V_\\text{bias}'}, {'type': 'string', 'value': 'C62752575', 'property': 'P10283'}, {'property': 'P6104', 'type': 'wikibase-entityid', 'id': 'Q8487137', 'entity-type': 'item', 'numeric-id': 8487137}), 'title': 'Q6822487'}
{'type': 'item', 'id': 'Q6822859', 'labels': (('en', 'B\xc3\xbcy\xc3\xbckeynelli'),), 'descriptions': (('en-ca', 'k\xc3\xb6y in Sorgun, Turkey'), ('en-g', 'k\xc3\xb6y in Sorgun, Turkey'), ('en', 'k\xc3\xb6y in Sorgun, Turkey')), 'aliases': (), 'sitelinks': (('trwiki', 'B\xc3\xbcy\xc3\xbckeynelli, Sorgun', None), ('viwiki', 'B\xc3\xbcy\xc3\xbckeynelli, Sorgun', None), ('cewiki', '\xd0\x91\xd1\x83\xd1\x8c\xd0\xb9\xd1\x83\xd1\x8c\xd0\xba\xd0\xb5\xd0\xb9\xd0\xbd\xd0\xb5\xd0\xbb\xd0\xbb\xd0\xb8 (\xd0\xa1\xd0\xbe\xd1\x80\xd0\xb3\xd1\x83\xd0\xbd)', None), ('ttwiki', '\xd0\x91\xd2\xaf\xd1\x8e\xd0\xba\xd0\xb5\xd0\xb9\xd0\xbd\xd0\xb5\xd0\xbb\xd0\xbb\xd0\xb8 (\xd0\xa1\xd0\xbe\xd1\x80\xd0\xb3\xd1\x83\xd0\xbd)', None)), 'claims': ({'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P17', 'numeric-id': 43, 'id': 'Q43'}, {'property': 'P31', 'entity-type': 'item', 'id': 'Q1529096', 'numeric-id': 1529096, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q1004526', 'numeric-id': 1004526, 'property': 'P131'}), 'title': 'Q6822859'}
{'type': 'item', 'id': 'Q6822996', 'labels': (('en', 'Metamora-Hadley Recreation Area'),), 'descriptions': (('en', 'protected area in Michigan, United States'),), 'aliases': (), 'sitelinks': (('cebwiki', 'Metamora-Hadley State Recreation Area', None), ('enwiki', 'Metamora-Hadley Recreation Area', None)), 'claims': ({'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 2008989, 'id': 'Q2008989', 'property': 'P7153'}, {'type': 'wikibase-entityid', 'id': 'Q1166', 'entity-type': 'item', 'numeric-id': 1166, 'property': 'P131'}, {'numeric-id': 473972, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q473972', 'property': 'P31'}, {'numeric-id': 30, 'id': 'Q30', 'entity-type': 'item', 'property': 'P17', 'type': 'wikibase-entityid'}), 'title': 'Q6822996'}
{'type': 'item', 'id': 'Q6823139', 'labels': (('en', 'Metaphysico-theologo-cosmonigology'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('enwiki', 'Metaphysico-theologo-cosmonigology', ('Q70893996',)),), 'claims': (), 'title': 'Q6823139'}
{'type': 'item', 'id': 'Q6823160', 'labels': (('en', 'Metaponpneumata'),), 'descriptions': (('en', 'genus of insects'),), 'aliases': (), 'sitelinks': (('viwiki', 'Metaponpneumata', None), ('trwiki', 'Metaponpneumata', None), ('enwiki', 'Metaponpneumata', None)), 'claims': ({'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 459180, 'property': 'P171', 'id': 'Q459180'}, {'property': 'P427', 'id': 'Q13525592', 'type': 'wikibase-entityid', 'numeric-id': 13525592, 'entity-type': 'item'}, {'property': 'P10585', 'value': '92FHW', 'type': 'string'}, {'id': 'Q15024195', 'numeric-id': 15024195, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P910'}, {'value': 'Metaponpneumata', 'type': 'string', 'property': 'P225'}, {'id': 'Q34740', 'type': 'wikibase-entityid', 'numeric-id': 34740, 'entity-type': 'item', 'property': 'P105'}, {'type': 'wikibase-entityid', 'id': 'Q16521', 'entity-type': 'item', 'numeric-id': 16521, 'property': 'P31'}, {'property': 'P373', 'type': 'string', 'value': 'Metaponpneumata'}), 'title': 'Q6823160'}
{'type': 'item', 'id': 'Q6823480', 'labels': (('en', 'meteorological history of Hurricane Gustav'),), 'descriptions': (('en', 'overview about the meteorological history of Hurricane Gustav'),), 'aliases': (), 'sitelinks': (('ptwiki', 'Hist\xc3\xb3ria meteorol\xc3\xb3gica do furac\xc3\xa3o Gustav (2008)', None), ('enwiki', 'Meteorological history of Hurricane Gustav', ('Q17437798',))), 'claims': ({'property': 'P373', 'value': 'Hurricane Gustav', 'type': 'string'},), 'title': 'Q6823480'}
{'type': 'item', 'id': 'Q6823797', 'labels': (('en', 'Methodist Episcopal Church'),), 'descriptions': (('en', 'historic Methodist church in Yuma, Arizona'),), 'aliases': (), 'sitelinks': (('enwiki', 'Methodist Episcopal Church (Yuma, Arizona)', None),), 'claims': ({'property': 'P17', 'numeric-id': 30, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q30'}, {'id': 'Q16970', 'numeric-id': 16970, 'entity-type': 'item', 'property': 'P31', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q816', 'numeric-id': 816, 'property': 'P131'}, {'value': 'Former Methodist Episcopal Church, Yuma, AZ.jpg', 'property': 'P18', 'type': 'string'}, {'numeric-id': 3645460, 'id': 'Q3645460', 'entity-type': 'item', 'property': 'P149', 'type': 'wikibase-entityid'}, {'numeric-id': 19558910, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q19558910', 'property': 'P1435'}), 'title': 'Q6823797'}
{'type': 'item', 'id': 'Q6823986', 'labels': (('en', 'Methylenedioxyhydroxyethylamphetamine'),), 'descriptions': (('en-g', 'chemical compound'), ('en-ca', 'chemical compound'), ('en', 'chemical compound')), 'aliases': (), 'sitelinks': (('enwiki', 'Methylenedioxyhydroxyethylamphetamine', None), ('azbwiki', '\xd9\x85\xd8\xaa\xdb\x8c\xd9\x84\xd9\x86\xe2\x80\x8c\xd8\xaf\xdb\x8c\xd8\xa7\xd9\x88\xda\xa9\xd8\xb3\xdb\x8c\xd9\x87\xdb\x8c\xd8\xaf\xd8\xb1\xd9\x88\xda\xa9\xd8\xb3\xdb\x8c\xe2\x80\x8c\xd8\xa7\xd8\xaa\xdb\x8c\xd9\x84\xe2\x80\x8c\xd8\xa2\xd9\x85\xd9\x81\xd8\xaa\xd8\xa7\xd9\x85\xdb\x8c\xd9\x86', None), ('fawiki', '\xd9\x85\xd8\xaa\xdb\x8c\xd9\x84\xd9\x86\xe2\x80\x8c\xd8\xaf\xdb\x8c\xe2\x80\x8c\xd8\xa7\xda\xa9\xd8\xb3\xdb\x8c\xe2\x80\x8c\xd9\x87\xdb\x8c\xd8\xaf\xd8\xb1\xd9\x88\xda\xa9\xd8\xb3\xdb\x8c\xe2\x80\x8c\xd8\xa7\xd8\xaa\xdb\x8c\xd9\x84\xe2\x80\x8c\xd8\xa2\xd9\x85\xd9\x81\xd8\xaa\xd8\xa7\xd9\x85\xdb\x8c\xd9\x86', None), ('srwiki', 'Metilendioksihidroksietilamfetamin', None), ('shwiki', 'Metilendioksihidroksietilamfetamin', None)), 'claims': ({'type': 'wikibase-entityid', 'numeric-id': 11173, 'entity-type': 'item', 'property': 'P279', 'id': 'Q11173'}, {'type': 'string', 'property': 'P235', 'value': 'SCUUYKMQDUDNBP-UHFFFAOYSA-N'}, {'value': '52250030', 'type': 'string', 'property': 'P11089'}, {'amount': '+223.2687', 'property': 'P2067', 'unit': 'http://www.wikidata.org/entity/Q483261', 'type': 'quantity'}, {'property': 'P274', 'type': 'string', 'value': 'C\xe2\x82\x81\xe2\x82\x82H\xe2\x82\x81\xe2\x82\x87NO\xe2\x82\x83'}, {'id': 'Q113145171', 'numeric-id': 113145171, 'type': 'wikibase-entityid', 'property': 'P31', 'entity-type': 'item'}, {'property': 'P234', 'value': 'InChI=1S/C12H17NO3/c1-9(13-4-5-14)6-10-2-3-11-12(7-10)16-8-15-11/h2-3,7,9,13-14H,4-6,8H2,1H3', 'type': 'string'}), 'title': 'Q6823986'}
{'type': 'item', 'id': 'Q6824215', 'labels': (('en', 'Metolius Springs'),), 'descriptions': (('en', 'headwaters of the Metolius River'),), 'aliases': (), 'sitelinks': (('enwiki', 'Metolius Springs', None),), 'claims': ({'property': 'P18', 'type': 'string', 'value': 'Metolius River source.JPG'}, {'numeric-id': 824, 'entity-type': 'item', 'property': 'P131', 'type': 'wikibase-entityid', 'id': 'Q824'}, {'entity-type': 'item', 'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q124714', 'numeric-id': 124714}, {'entity-type': 'item', 'numeric-id': 30, 'property': 'P17', 'type': 'wikibase-entityid', 'id': 'Q30'}, {'numeric-id': 1891156, 'property': 'P137', 'entity-type': 'item', 'id': 'Q1891156', 'type': 'wikibase-entityid'}), 'title': 'Q6824215'}
{'type': 'item', 'id': 'Q6824408', 'labels': (('en', 'Metro: The Official Bootleg Series, Volume 1'),), 'descriptions': (('en', 'live album'),), 'aliases': (), 'sitelinks': (('enwiki', 'Metro: The Official Bootleg Series, Volume 1', None),), 'claims': ({'numeric-id': 482994, 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q482994'}, {'numeric-id': 209939, 'property': 'P7937', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q209939'}, {'property': 'P577', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0, 'precision': 9, 'time': '+2010-00-00T00:00:00Z', 'type': 'time', 'after': 0, 'timezone': 0}, {'property': 'P407', 'type': 'wikibase-entityid', 'numeric-id': 1860, 'entity-type': 'item', 'id': 'Q1860'}), 'title': 'Q6824408'}
{'type': 'item', 'id': 'Q6824407', 'labels': (('en', 'Metro3D'),), 'descriptions': (('en', 'american defunct video game developer and publisher'),), 'aliases': (('en', 'Metro 3D, Inc.'),), 'sitelinks': (('eswiki', 'Metro 3D', None), ('enwiki', 'Metro3D', None), ('frwiki', 'Metro3D', None)), 'claims': ({'entity-type': 'item', 'id': 'Q16553', 'property': 'P159', 'numeric-id': 16553, 'type': 'wikibase-entityid'}, {'text': 'Metro 3D, Inc.', 'property': 'P1448', 'type': 'monolingualtext', 'language': 'en'}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'time': '+1998-00-00T00:00:00Z', 'timezone': 0, 'type': 'time', 'before': 0, 'precision': 9, 'property': 'P571'}, {'numeric-id': 941594, 'entity-type': 'item', 'property': 'P452', 'id': 'Q941594', 'type': 'wikibase-entityid'}, {'precision': 9, 'time': '+2004-00-00T00:00:00Z', 'timezone': 0, 'type': 'time', 'before': 0, 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P576'}, {'type': 'wikibase-entityid', 'numeric-id': 30, 'property': 'P17', 'id': 'Q30', 'entity-type': 'item'}, {'value': 'http://www.metro3d.com', 'property': 'P856', 'type': 'string'}, {'property': 'P11689', 'value': '2779', 'type': 'string'}, {'value': '12349', 'type': 'string', 'property': 'P10511'}, {'property': 'P12102', 'type': 'string', 'value': 'metro3d'}, {'property': 'P199', 'numeric-id': 97529890, 'id': 'Q97529890', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q210167', 'numeric-id': 210167, 'property': 'P31', 'type': 'wikibase-entityid'}, {'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 1137109, 'id': 'Q1137109'}), 'title': 'Q6824407'}
{'type': 'item', 'id': 'Q6824546', 'labels': (('en', 'Metro Constituci\xc3\xb3n de 1917'),), 'descriptions': (('en', 'metro station in Mexico City'),), 'aliases': (('en', 'Metro Constitucion de 1917'), ('en', 'Constitucion de 1917'), ('en', 'Constituci\xc3\xb3n de 1917'), ('en', 'Constituci\xc3\xb3n de 1917 station'), ('en', 'Constituci\xc3\xb3n de 1917 metro station')), 'sitelinks': (('commonswiki', 'Category:Constitucion de 1917 (station)', None), ('enwiki', 'Constituci\xc3\xb3n de 1917 metro station', None), ('nahwiki', 'Metro Constituci\xc3\xb3n de 1917', None), ('eswiki', 'Constituci\xc3\xb3n de 1917 (estaci\xc3\xb3n)', None), ('ptwiki', 'Esta\xc3\xa7\xc3\xa3o Constituci\xc3\xb3n de 1917', None), ('frwiki', 'Constituci\xc3\xb3n de 1917 (m\xc3\xa9tro de Mexico)', None)), 'claims': ({'type': 'wikibase-entityid', 'id': 'Q928830', 'numeric-id': 928830, 'property': 'P31', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q22808404', 'property': 'P31', 'numeric-id': 22808404}, {'entity-type': 'item', 'property': 'P138', 'numeric-id': 2170072, 'id': 'Q2170072', 'type': 'wikibase-entityid'}, {'property': 'P131', 'id': 'Q1489', 'numeric-id': 1489, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'unit': '1', 'property': 'P5595', 'amount': '+2', 'type': 'quantity'}, {'id': 'Q6824756', 'entity-type': 'item', 'numeric-id': 6824756, 'property': 'P197', 'type': 'wikibase-entityid'}, {'numeric-id': 735042, 'id': 'Q735042', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P16'}, {'type': 'wikibase-entityid', 'property': 'P81', 'id': 'Q1149545', 'entity-type': 'item', 'numeric-id': 1149545}, {'type': 'string', 'value': 's-9g3w19zfqn-constituci\xc3\xb3nde1917', 'property': 'P11109'}, {'type': 'string', 'value': '506035217', 'property': 'P11693'}, {'id': 'Q116547644', 'entity-type': 'item', 'property': 'P833', 'type': 'wikibase-entityid', 'numeric-id': 116547644}, {'entity-type': 'item', 'id': 'Q96', 'numeric-id': 96, 'type': 'wikibase-entityid', 'property': 'P17'}, {'value': 'Metro Constitucion de 1917 05.JPG', 'type': 'string', 'property': 'P18'}, {'property': 'P373', 'type': 'string', 'value': 'Constitucion de 1917 (station)'}, {'type': 'wikibase-entityid', 'numeric-id': 55654238, 'property': 'P5817', 'entity-type': 'item', 'id': 'Q55654238'}, {'precision': 9, 'property': 'P571', 'time': '+1994-00-00T00:00:00Z', 'type': 'time', 'before': 0, 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0}, {'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'time': '+1994-07-20T00:00:00Z', 'timezone': 0, 'type': 'time', 'property': 'P1619', 'after': 0}, {'amount': '+3', 'type': 'quantity', 'property': 'P1103', 'unit': '1'}), 'title': 'Q6824546'}
{'type': 'item', 'id': 'Q6824553', 'labels': (('en', 'Metro Coyuya'),), 'descriptions': (('en', 'metro station in Mexico City'),), 'aliases': (('en', 'Coyuya'), ('en', 'Coyuya station'), ('en', 'Coyuya metro station')), 'sitelinks': (('nahwiki', 'Metro Coyuya', None), ('eswiki', 'Coyuya (estaci\xc3\xb3n)', None), ('ptwiki', 'Esta\xc3\xa7\xc3\xa3o Coyuya', None), ('frwiki', 'Coyuya (m\xc3\xa9tro de Mexico)', None), ('commonswiki', 'Category:Coyuya (station)', None), ('enwiki', 'Coyuya metro station', None)), 'claims': ({'property': 'P11693', 'value': '3649370809', 'type': 'string'}, {'property': 'P5595', 'type': 'quantity', 'amount': '+1', 'unit': '1'}, {'timezone': 0, 'type': 'time', 'after': 0, 'property': 'P571', 'before': 0, 'time': '+1994-00-00T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 9}, {'entity-type': 'item', 'property': 'P5817', 'numeric-id': 55654238, 'type': 'wikibase-entityid', 'id': 'Q55654238'}, {'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P1619', 'time': '+1994-00-00T00:00:00Z', 'timezone': 0, 'precision': 9, 'after': 0, 'before': 0}, {'id': 'Q735042', 'type': 'wikibase-entityid', 'numeric-id': 735042, 'property': 'P16', 'entity-type': 'item'}, {'id': 'Q3431125', 'entity-type': 'item', 'property': 'P197', 'numeric-id': 3431125, 'type': 'wikibase-entityid'}, {'property': 'P197', 'id': 'Q6824703', 'entity-type': 'item', 'numeric-id': 6824703, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'numeric-id': 96, 'id': 'Q96', 'entity-type': 'item', 'property': 'P17'}, {'property': 'P373', 'type': 'string', 'value': 'Coyuya (station)'}, {'type': 'wikibase-entityid', 'numeric-id': 116969582, 'entity-type': 'item', 'property': 'P1889', 'id': 'Q116969582'}, {'amount': '+2', 'property': 'P1103', 'unit': '1', 'type': 'quantity'}, {'property': 'P18', 'value': 'Metro Coyuya 02.JPG', 'type': 'string'}, {'id': 'Q928830', 'numeric-id': 928830, 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'id': 'Q22808404', 'numeric-id': 22808404, 'entity-type': 'item', 'property': 'P31'}, {'numeric-id': 1149545, 'id': 'Q1149545', 'entity-type': 'item', 'property': 'P81', 'type': 'wikibase-entityid'}, {'property': 'P11109', 'type': 'string', 'value': 's-9g3w2e7g29-coyuya'}, {'numeric-id': 1489, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q1489', 'property': 'P131'}), 'title': 'Q6824553'}
{'type': 'item', 'id': 'Q6824710', 'labels': (('en', 'Metro Spirit'),), 'descriptions': (('en', 'newspaper in Augusta, Georgia'),), 'aliases': (), 'sitelinks': (('enwiki', 'Metro Spirit', None),), 'claims': ({'amount': '+1', 'unit': 'http://www.wikidata.org/entity/Q23387', 'type': 'quantity', 'property': 'P2896'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q181962', 'property': 'P159', 'numeric-id': 181962}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q181962', 'numeric-id': 181962, 'property': 'P291'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 2305295, 'id': 'Q2305295', 'property': 'P31'}, {'language': 'en', 'type': 'monolingualtext', 'text': 'Metro Spirit', 'property': 'P1476'}, {'value': 'Metro-Spirit-193476874019917', 'property': 'P2013', 'type': 'string'}, {'property': 'P856', 'type': 'string', 'value': 'http://metrospirit.com/'}, {'entity-type': 'item', 'id': 'Q181962', 'type': 'wikibase-entityid', 'numeric-id': 181962, 'property': 'P131'}, {'id': 'Q1860', 'numeric-id': 1860, 'property': 'P407', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'type': 'string', 'property': 'P2002', 'value': 'TheMetroSpirit'}, {'id': 'Q30', 'type': 'wikibase-entityid', 'property': 'P17', 'entity-type': 'item', 'numeric-id': 30}, {'property': 'P495', 'numeric-id': 30, 'entity-type': 'item', 'id': 'Q30', 'type': 'wikibase-entityid'}, {'unit': '1', 'amount': '+2910', 'property': 'P8687', 'type': 'quantity'}), 'title': 'Q6824710'}
{'type': 'item', 'id': 'Q6824949', 'labels': (('en', 'Metropolis of Ephesus'), ('en-ca', 'Metropolis of Ephesus'), ('en-g', 'Metropolis of Ephesus')), 'descriptions': (('en', 'vacant ecclesiastical diocese in Anatolia'),), 'aliases': (), 'sitelinks': (('bgwiki', '\xd0\x95\xd1\x84\xd0\xb5\xd1\x81\xd0\xba\xd0\xb0 \xd0\xb5\xd0\xbf\xd0\xb0\xd1\x80\xd1\x85\xd0\xb8\xd1\x8f', None), ('enwiki', 'Metropolis of Ephesus', None), ('elwiki', '\xce\x99\xce\xb5\xcf\x81\xce\xac \xce\x9c\xce\xb7\xcf\x84\xcf\x81\xcf\x8c\xcf\x80\xce\xbf\xce\xbb\xce\xb9\xcf\x82 \xce\x95\xcf\x86\xce\xad\xcf\x83\xce\xbf\xcf\x85', None), ('trwiki', 'Efes metropoliti', None), ('cswiki', 'Metropolie Efez', None), ('eswiki', 'Metropolitanato de \xc3\x89feso', None), ('cawiki', "Metr\xc3\xb2polis d'Efes", None), ('idwiki', 'Metropolis Efesus', None), ('dewiki', 'Metropolie Ephesos', None), ('ruwiki', '\xd0\xad\xd1\x84\xd0\xb5\xd1\x81\xd1\x81\xd0\xba\xd0\xb0\xd1\x8f \xd0\xbc\xd0\xb8\xd1\x82\xd1\x80\xd0\xbe\xd0\xbf\xd0\xbe\xd0\xbb\xd0\xb8\xd1\x8f', None), ('ukwiki', '\xd0\x95\xd1\x84\xd0\xb5\xd1\x81\xd1\x8c\xd0\xba\xd0\xb0 \xd0\xbc\xd0\xb8\xd1\x82\xd1\x80\xd0\xbe\xd0\xbf\xd0\xbe\xd0\xbb\xd1\x96\xd1\x8f', None), ('ptwiki', 'Metr\xc3\xb3pole do \xc3\x89feso', None)), 'claims': ({'entity-type': 'item', 'numeric-id': 47611, 'type': 'wikibase-entityid', 'property': 'P159', 'id': 'Q47611'}, {'value': 'Magnisia Manisa St John Church Old Postcard.jpg', 'property': 'P18', 'type': 'string'}, {'property': 'P31', 'numeric-id': 60176300, 'entity-type': 'item', 'id': 'Q60176300', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q18040786', 'numeric-id': 18040786, 'property': 'P910', 'type': 'wikibase-entityid'}), 'title': 'Q6824949'}
{'type': 'item', 'id': 'Q6825199', 'labels': (('en', 'Fabulous 30'),), 'descriptions': (('en', '2011 film'),), 'aliases': (('en', '30 Kamlung Jaew'),), 'sitelinks': (('viwiki', 'Ch\xe1\xbb\x8b \xc6\xa1i anh y\xc3\xaau em', None), ('zhwiki', '\xe5\xa5\xb3\xe4\xba\xba30\xe5\x8f\x88\xe6\x80\x8e\xe6\xa8\xa3', None), ('thwiki', '30 \xe0\xb8\x81\xe0\xb8\xb3\xe0\xb8\xa5\xe0\xb8\xb1\xe0\xb8\x87\xe0\xb9\x81\xe0\xb8\x88\xe0\xb9\x8b\xe0\xb8\xa7', None)), 'claims': ({'type': 'wikibase-entityid', 'id': 'Q157443', 'numeric-id': 157443, 'entity-type': 'item', 'property': 'P136'}, {'property': 'P495', 'numeric-id': 869, 'id': 'Q869', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'after': 0, 'before': 0, 'time': '+2011-11-03T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'type': 'time', 'precision': 11, 'property': 'P577'}, {'numeric-id': 16138553, 'id': 'Q16138553', 'type': 'wikibase-entityid', 'property': 'P57', 'entity-type': 'item'}, {'property': 'P364', 'numeric-id': 9217, 'type': 'wikibase-entityid', 'id': 'Q9217', 'entity-type': 'item'}, {'type': 'string', 'value': '482542', 'property': 'P12096'}, {'type': 'quantity', 'amount': '+118', 'property': 'P2047', 'unit': 'http://www.wikidata.org/entity/Q7727'}, {'property': 'P11460', 'type': 'string', 'value': '5d7768dffb0d55001f51b51f'}, {'id': 'Q11424', 'numeric-id': 11424, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P31'}), 'title': 'Q6825199'}
{'type': 'item', 'id': 'Q6825750', 'labels': (('en', 'Mexican Boarders'),), 'descriptions': (('en', '1962 film by Friz Freleng'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mexican Boarders', None),), 'claims': ({'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P364', 'id': 'Q1860', 'numeric-id': 1860}, {'property': 'P1476', 'text': 'Mexican Boarders', 'language': 'en', 'type': 'monolingualtext'}, {'numeric-id': 457864, 'entity-type': 'item', 'property': 'P57', 'type': 'wikibase-entityid', 'id': 'Q457864'}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'time': '+1962-01-01T00:00:00Z', 'before': 0, 'property': 'P577', 'precision': 9, 'after': 0, 'type': 'time'}, {'id': 'Q543171', 'entity-type': 'item', 'numeric-id': 543171, 'property': 'P162', 'type': 'wikibase-entityid'}, {'numeric-id': 17517379, 'property': 'P31', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q17517379'}, {'id': 'Q30', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 30, 'property': 'P495'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P179', 'id': 'Q622435', 'numeric-id': 622435}, {'entity-type': 'item', 'numeric-id': 544350, 'type': 'wikibase-entityid', 'id': 'Q544350', 'property': 'P1040'}, {'property': 'P12096', 'type': 'string', 'value': '130983'}, {'property': 'P86', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q3090628', 'numeric-id': 3090628}, {'type': 'wikibase-entityid', 'id': 'Q96', 'entity-type': 'item', 'numeric-id': 96, 'property': 'P840'}, {'unit': 'http://www.wikidata.org/entity/Q7727', 'property': 'P2047', 'amount': '+7', 'type': 'quantity'}, {'id': 'Q184781', 'property': 'P2079', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 184781}), 'title': 'Q6825750'}
{'type': 'item', 'id': 'Q6825856', 'labels': (('en', 'Mexican Federal Highway 25'),), 'descriptions': (('en', 'highway in Mexico'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mexican Federal Highway 25', None), ('eswiki', 'Carretera Federal 25', None)), 'claims': ({'property': 'P31', 'type': 'wikibase-entityid', 'numeric-id': 34442, 'entity-type': 'item', 'id': 'Q34442'}, {'type': 'wikibase-entityid', 'numeric-id': 96, 'property': 'P17', 'entity-type': 'item', 'id': 'Q96'}, {'id': 'Q750174', 'numeric-id': 750174, 'property': 'P126', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'value': 'Carretera Federal Mex 25.png', 'property': 'P18', 'type': 'string'}, {'numeric-id': 6825768, 'property': 'P16', 'entity-type': 'item', 'id': 'Q6825768', 'type': 'wikibase-entityid'}, {'type': 'quantity', 'amount': '+56', 'property': 'P2043', 'unit': 'http://www.wikidata.org/entity/Q828224'}, {'id': 'Q750174', 'property': 'P127', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 750174}), 'title': 'Q6825856'}
{'type': 'item', 'id': 'Q6825951', 'labels': (('en', 'Mexican National Lightweight Championship'),), 'descriptions': (('en', 'Professional wrestling championship'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mexican National Lightweight Championship', ('Q17506997',)), ('eswiki', 'Campeonato Nacional de Peso Ligero', None)), 'claims': ({'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P17', 'numeric-id': 96, 'id': 'Q96'}, {'id': 'Q131359', 'property': 'P641', 'type': 'wikibase-entityid', 'numeric-id': 131359, 'entity-type': 'item'}), 'title': 'Q6825951'}
{'type': 'item', 'id': 'Q6827124', 'labels': (('en', 'Umm Ishaq bint Talhah'),), 'descriptions': (('en', 'Daughter of Talhah'),), 'aliases': (('en', 'Umm Alashar bin Talha'),), 'sitelinks': (('arwiki', '\xd8\xa3\xd9\x85 \xd8\xa5\xd8\xb3\xd8\xad\xd8\xa7\xd9\x82 \xd8\xa8\xd9\x86\xd8\xaa \xd8\xb7\xd9\x84\xd8\xad\xd8\xa9 \xd8\xa8\xd9\x86 \xd8\xb9\xd8\xa8\xd9\x8a\xd8\xaf \xd8\xa7\xd9\x84\xd9\x84\xd9\x87', None), ('fawiki', '\xd8\xa7\xd9\x85\xe2\x80\x8c\xd8\xa7\xd8\xb3\xd8\xad\xd8\xa7\xd9\x82', None)), 'claims': ({'id': 'Q1647787', 'property': 'P22', 'entity-type': 'item', 'numeric-id': 1647787, 'type': 'wikibase-entityid'}, {'numeric-id': 5, 'id': 'Q5', 'type': 'wikibase-entityid', 'property': 'P31', 'entity-type': 'item'}, {'id': 'Q6581072', 'property': 'P21', 'entity-type': 'item', 'numeric-id': 6581072, 'type': 'wikibase-entityid'}, {'language': 'ar', 'property': 'P1559', 'text': '\xd8\xa3\xd9\x85 \xd8\xa5\xd8\xb3\xd8\xad\xd8\xa7\xd9\x82 \xd8\xa8\xd9\x86\xd8\xaa \xd8\xb7\xd9\x84\xd8\xad\xd8\xa9 \xd8\xa8\xd9\x86 \xd8\xb9\xd8\xa8\xd9\x8a\xd8\xaf \xd8\xa7\xd9\x84\xd9\x84\xd9\x87', 'type': 'monolingualtext'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q182914', 'numeric-id': 182914, 'property': 'P26'}, {'numeric-id': 112128, 'property': 'P26', 'type': 'wikibase-entityid', 'id': 'Q112128', 'entity-type': 'item'}, {'property': 'P3373', 'id': 'Q4646815', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 4646815}, {'entity-type': 'item', 'numeric-id': 8063875, 'type': 'wikibase-entityid', 'id': 'Q8063875', 'property': 'P3373'}, {'entity-type': 'item', 'id': 'Q6280752', 'numeric-id': 6280752, 'property': 'P3373', 'type': 'wikibase-entityid'}, {'numeric-id': 3866938, 'entity-type': 'item', 'id': 'Q3866938', 'property': 'P3373', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'numeric-id': 7679448, 'entity-type': 'item', 'id': 'Q7679448', 'property': 'P40'}, {'entity-type': 'item', 'property': 'P40', 'type': 'wikibase-entityid', 'numeric-id': 7402995, 'id': 'Q7402995'}), 'title': 'Q6827124'}
{'type': 'item', 'id': 'Q6827500', 'labels': (('en', 'Miamou'),), 'descriptions': (('en-ca', 'village in Greece'), ('en-g', 'village in Greece'), ('en', 'village in Herakleion, Crete, Greece')), 'aliases': (), 'sitelinks': (('elwiki', '\xce\x9c\xce\xb9\xce\xb1\xce\xbc\xce\xbf\xcf\x8d \xce\x97\xcf\x81\xce\xb1\xce\xba\xce\xbb\xce\xb5\xce\xaf\xce\xbf\xcf\x85', None), ('frwiki', 'Miamo\xc3\xba', None), ('enwiki', 'Miamou', None), ('fiwiki', 'Miamo\xc3\xba', None), ('arzwiki', '\xd9\x85\xd9\x8a\xd8\xa7\xd9\x85\xd9\x88', None)), 'claims': ({'property': 'P1082', 'unit': '1', 'type': 'quantity', 'amount': '+96'}, {'unit': 'http://www.wikidata.org/entity/Q11573', 'amount': '+420', 'type': 'quantity', 'property': 'P2044'}, {'type': 'wikibase-entityid', 'id': 'Q41', 'entity-type': 'item', 'numeric-id': 41, 'property': 'P17'}, {'id': 'Q34374', 'numeric-id': 34374, 'type': 'wikibase-entityid', 'property': 'P706', 'entity-type': 'item'}, {'entity-type': 'item', 'numeric-id': 6723, 'type': 'wikibase-entityid', 'id': 'Q6723', 'property': 'P421'}, {'entity-type': 'item', 'numeric-id': 6760, 'property': 'P421', 'type': 'wikibase-entityid', 'id': 'Q6760'}, {'property': 'P131', 'entity-type': 'item', 'numeric-id': 2352674, 'type': 'wikibase-entityid', 'id': 'Q2352674'}, {'id': 'Q532', 'type': 'wikibase-entityid', 'numeric-id': 532, 'property': 'P31', 'entity-type': 'item'}, {'property': 'P18', 'value': '\xce\x9c\xce\xb9\xce\xb1\xce\xbc\xce\xbf\xcf\x8d 8867.jpg', 'type': 'string'}), 'title': 'Q6827500'}
{'type': 'item', 'id': 'Q6827797', 'labels': (('en', 'MicF RNA'),), 'descriptions': (('en', 'Gene found in bacteria'),), 'aliases': (), 'sitelinks': (('enwiki', 'MicF RNA', None), ('zhwiki', 'MicF RNA', None)), 'claims': ({'entity-type': 'item', 'property': 'P279', 'type': 'wikibase-entityid', 'id': 'Q11053', 'numeric-id': 11053},), 'title': 'Q6827797'}
{'type': 'item', 'id': 'Q6828068', 'labels': (('en', 'Michael A. Jackson'),), 'descriptions': (('en', 'United States Marine'),), 'aliases': (('en', 'Michael Angelo Jackson'),), 'sitelinks': (('enwiki', 'Michael A. Jackson (politician)', None), ('azbwiki', '\xd9\x85\xd8\xa7\xdb\x8c\xda\xa9\xd9\x84 \xd8\xa7\xd8\xa6\xdb\x8c. \xd8\xac\xda\xa9\xd8\xb3\xd9\x88\xd9\x86 (\xd8\xb3\xdb\x8c\xd8\xa7\xd8\xb3\xd8\xaa\xda\x86\xdb\x8c)', None)), 'claims': ({'property': 'P18', 'type': 'string', 'value': 'Maryland Delegate Michael Jackson.jpg'}, {'amount': '+1846', 'type': 'quantity', 'unit': '1', 'property': 'P8687'}, {'unit': '1', 'amount': '+1078', 'property': 'P8687', 'type': 'quantity'}, {'type': 'wikibase-entityid', 'property': 'P39', 'numeric-id': 20064986, 'id': 'Q20064986', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'property': 'P39', 'numeric-id': 20064926, 'entity-type': 'item', 'id': 'Q20064926'}, {'type': 'string', 'value': 'Q6828068', 'property': 'P10632'}, {'type': 'time', 'timezone': 0, 'precision': 11, 'time': '+1964-03-29T00:00:00Z', 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'before': 0}, {'property': 'P31', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q5', 'numeric-id': 5}, {'id': 'Q4927524', 'numeric-id': 4927524, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P735'}, {'property': 'P241', 'id': 'Q11218', 'numeric-id': 11218, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 3298441, 'type': 'wikibase-entityid', 'id': 'Q3298441', 'property': 'P69'}, {'numeric-id': 5188707, 'entity-type': 'item', 'id': 'Q5188707', 'property': 'P69', 'type': 'wikibase-entityid'}, {'numeric-id': 82955, 'property': 'P106', 'type': 'wikibase-entityid', 'id': 'Q82955', 'entity-type': 'item'}, {'value': 'https://msa.maryland.gov/msa/mdmanual/36loc/pg/jud/sheriffs/former/html/msa14132.html', 'property': 'P856', 'type': 'string'}, {'property': 'P21', 'entity-type': 'item', 'id': 'Q6581097', 'numeric-id': 6581097, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'property': 'P734', 'entity-type': 'item', 'numeric-id': 2732758, 'id': 'Q2732758'}, {'property': 'P2002', 'value': 'MichaelFor27', 'type': 'string'}, {'id': 'Q754443', 'entity-type': 'item', 'property': 'P19', 'numeric-id': 754443, 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q30', 'property': 'P27', 'numeric-id': 30}, {'id': 'Q29552', 'numeric-id': 29552, 'property': 'P102', 'type': 'wikibase-entityid', 'entity-type': 'item'}), 'title': 'Q6828068'}
{'type': 'item', 'id': 'Q6828140', 'labels': (('en', 'Michael Aird'), ('en-g', 'Michael Aird')), 'descriptions': (('en', 'Australian politician'), ('en-g', 'Australian politician'), ('en-ca', 'Australian politician')), 'aliases': (('en', 'Michael Anthony Aird'),), 'sitelinks': (('enwiki', 'Michael Aird', None),), 'claims': ({'id': 'Q3141', 'numeric-id': 3141, 'property': 'P19', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'value': 'Q6828140', 'property': 'P10632', 'type': 'string'}, {'precision': 11, 'after': 0, 'time': '+1949-04-12T00:00:00Z', 'timezone': 0, 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'before': 0}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q82955', 'numeric-id': 82955, 'property': 'P106'}, {'property': 'P11098', 'type': 'string', 'value': 'Airdm624'}, {'property': 'P39', 'numeric-id': 19007285, 'entity-type': 'item', 'id': 'Q19007285', 'type': 'wikibase-entityid'}, {'numeric-id': 19299542, 'property': 'P39', 'type': 'wikibase-entityid', 'id': 'Q19299542', 'entity-type': 'item'}, {'id': 'Q19007285', 'type': 'wikibase-entityid', 'property': 'P39', 'numeric-id': 19007285, 'entity-type': 'item'}, {'numeric-id': 7836760, 'property': 'P39', 'entity-type': 'item', 'id': 'Q7836760', 'type': 'wikibase-entityid'}, {'id': 'Q5', 'property': 'P31', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 5}, {'entity-type': 'item', 'property': 'P21', 'numeric-id': 6581097, 'id': 'Q6581097', 'type': 'wikibase-entityid'}, {'id': 'Q4927524', 'property': 'P735', 'numeric-id': 4927524, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q408512', 'numeric-id': 408512, 'property': 'P734'}, {'property': 'P166', 'entity-type': 'item', 'id': 'Q9678710', 'numeric-id': 9678710, 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P27', 'numeric-id': 408, 'id': 'Q408'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q1860', 'numeric-id': 1860, 'property': 'P1412'}, {'id': 'Q216082', 'entity-type': 'item', 'numeric-id': 216082, 'type': 'wikibase-entityid', 'property': 'P102'}, {'id': 'Q1860', 'property': 'P6886', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 1860}), 'title': 'Q6828140'}
{'type': 'item', 'id': 'Q6828187', 'labels': (('en', 'Michael Allsup'),), 'descriptions': (('en', 'American guitarist'),), 'aliases': (('en', 'Michael Rand Allsup'),), 'sitelinks': (('arzwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83\xd9\x84 \xd8\xa7\xd9\x84\xd8\xb3\xd9\x88\xd9\xbe', None), ('ruwiki', '\xd0\x9e\xd0\xbb\xd0\xbb\xd1\x81\xd0\xb0\xd0\xbf, \xd0\x9c\xd0\xb0\xd0\xb9\xd0\xba\xd0\xb', None), ('enwiki', 'Michael Allsup', None), ('ukwiki', '\xd0\x9c\xd0\xb0\xd0\xb9\xd0\xba \xd0\x9e\xd0\xbb\xd0\xbb\xd1\x81\xd0\xb0\xd0\xbf', None)), 'claims': ({'precision': 11, 'property': 'P569', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'after': 0, 'before': 0, 'time': '+1947-03-08T00:00:00Z', 'type': 'time'}, {'id': 'Q984607', 'property': 'P19', 'entity-type': 'item', 'numeric-id': 984607, 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q6581097', 'numeric-id': 6581097, 'property': 'P21', 'type': 'wikibase-entityid'}, {'id': 'Q855091', 'property': 'P106', 'type': 'wikibase-entityid', 'numeric-id': 855091, 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'id': 'Q4927524', 'entity-type': 'item', 'numeric-id': 4927524, 'property': 'P735'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P1303', 'numeric-id': 6607, 'id': 'Q6607'}, {'id': 'Q37502517', 'property': 'P734', 'numeric-id': 37502517, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P18', 'type': 'string', 'value': 'Mike Allsup 1971.JPG'}, {'type': 'string', 'property': 'P856', 'value': 'http://www.michaelallsup.com'}, {'type': 'string', 'property': 'P7704', 'value': 'agent/base/160727'}, {'id': 'Q5', 'numeric-id': 5, 'entity-type': 'item', 'property': 'P31', 'type': 'wikibase-entityid'}, {'id': 'Q30', 'numeric-id': 30, 'type': 'wikibase-entityid', 'property': 'P27', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q1474254', 'numeric-id': 1474254, 'property': 'P463'}), 'title': 'Q6828187'}
{'type': 'item', 'id': 'Q6828239', 'labels': (('en', 'Michael Antunes'),), 'descriptions': (('en', 'American musician and actor'),), 'aliases': (), 'sitelinks': (('enwiki', 'Michael Antunes', None),), 'claims': ({'numeric-id': 9798, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q9798', 'property': 'P1303'}, {'id': 'Q33999', 'property': 'P106', 'entity-type': 'item', 'numeric-id': 33999, 'type': 'wikibase-entityid'}, {'property': 'P106', 'id': 'Q12800682', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 12800682}, {'property': 'P7704', 'value': 'agent/base/126513', 'type': 'string'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 1860, 'property': 'P6886', 'id': 'Q1860'}, {'numeric-id': 5, 'property': 'P31', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q5'}, {'value': 'michael-tunes-antunes', 'property': 'P10302', 'type': 'string'}, {'after': 0, 'precision': 11, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'type': 'time', 'time': '+1940-08-10T00:00:00Z', 'timezone': 0, 'before': 0}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q1860', 'numeric-id': 1860, 'property': 'P1412'}, {'id': 'Q6581097', 'numeric-id': 6581097, 'property': 'P21', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'before': 0, 'type': 'time', 'after': 0, 'precision': 9, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P2031', 'time': '+1953-00-00T00:00:00Z', 'timezone': 0}, {'property': 'P12098', 'value': '123017', 'type': 'string'}, {'id': 'Q4927524', 'numeric-id': 4927524, 'property': 'P735', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q30', 'numeric-id': 30, 'property': 'P27', 'entity-type': 'item'}, {'property': 'P18', 'type': 'string', 'value': 'Michael Antunes Saxophonist at Fenway Park, Boston.png'}, {'property': 'P103', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q1860', 'numeric-id': 1860}), 'title': 'Q6828239'}
{'type': 'item', 'id': 'Q6828247', 'labels': (('en', 'Michael Aranda'),), 'descriptions': (('en', 'musician'),), 'aliases': (('en', 'Michael Peter Aranda'),), 'sitelinks': (('commonswiki', 'Category:Michael Aranda', None),), 'claims': ({'entity-type': 'item', 'numeric-id': 5, 'id': 'Q5', 'property': 'P31', 'type': 'wikibase-entityid'}, {'id': 'Q16147918', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P734', 'numeric-id': 16147918}, {'id': 'Q30', 'entity-type': 'item', 'numeric-id': 30, 'property': 'P27', 'type': 'wikibase-entityid'}, {'id': 'Q4927524', 'type': 'wikibase-entityid', 'numeric-id': 4927524, 'property': 'P735', 'entity-type': 'item'}, {'value': 'michaelaranda', 'property': 'P2002', 'type': 'string'}, {'value': 'arandanauts', 'property': 'P2013', 'type': 'string'}, {'unit': '1', 'amount': '+53192', 'property': 'P8687', 'type': 'quantity'}, {'unit': '1', 'type': 'quantity', 'property': 'P8687', 'amount': '+55476'}, {'property': 'P8687', 'type': 'quantity', 'amount': '+51077', 'unit': '1'}, {'amount': '+49816', 'type': 'quantity', 'unit': '1', 'property': 'P8687'}, {'entity-type': 'item', 'id': 'Q99', 'numeric-id': 99, 'property': 'P19', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'property': 'P21', 'id': 'Q6581097', 'type': 'wikibase-entityid', 'numeric-id': 6581097}, {'numeric-id': 3282637, 'type': 'wikibase-entityid', 'id': 'Q3282637', 'property': 'P106', 'entity-type': 'item'}, {'numeric-id': 639669, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P106', 'id': 'Q639669'}, {'entity-type': 'item', 'property': 'P106', 'type': 'wikibase-entityid', 'id': 'Q17125263', 'numeric-id': 17125263}, {'entity-type': 'item', 'id': 'Q578109', 'type': 'wikibase-entityid', 'property': 'P106', 'numeric-id': 578109}, {'entity-type': 'item', 'numeric-id': 222344, 'property': 'P106', 'type': 'wikibase-entityid', 'id': 'Q222344'}, {'precision': 9, 'before': 0, 'time': '+2007-00-00T00:00:00Z', 'after': 0, 'type': 'time', 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P2031'}, {'property': 'P373', 'type': 'string', 'value': 'Michael Aranda'}, {'type': 'string', 'property': 'P2003', 'value': 'animalcharade'}, {'numeric-id': 2926172, 'property': 'P69', 'entity-type': 'item', 'id': 'Q2926172', 'type': 'wikibase-entityid'}, {'property': 'P69', 'id': 'Q2302336', 'numeric-id': 2302336, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P18', 'type': 'string', 'value': 'Michael Aranda.jpg'}, {'value': 'agent/base/135686', 'type': 'string', 'property': 'P7704'}, {'property': 'P264', 'entity-type': 'item', 'numeric-id': 18205793, 'type': 'wikibase-entityid', 'id': 'Q18205793'}, {'property': 'P569', 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'before': 0, 'precision': 11, 'type': 'time', 'time': '+1986-02-27T00:00:00Z'}), 'title': 'Q6828247'}
{'type': 'item', 'id': 'Q6828301', 'labels': (('en', 'Michael Audain'),), 'descriptions': (('en', 'businessperson'),), 'aliases': (('en', 'Michael James Audain'),), 'sitelinks': (('enwiki', 'Michael Audain', None), ('commonswiki', 'Category:Michael Audain', None)), 'claims': ({'property': 'P31', 'numeric-id': 5, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q5'}, {'type': 'string', 'value': 'Michael Audain', 'property': 'P373'}, {'numeric-id': 170478, 'entity-type': 'item', 'id': 'Q170478', 'property': 'P19', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q16', 'type': 'wikibase-entityid', 'numeric-id': 16, 'property': 'P27'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q4927524', 'numeric-id': 4927524, 'property': 'P735'}, {'type': 'string', 'value': 'Michael Audain Polygon Chairman.jpg', 'property': 'P18'}, {'property': 'P734', 'type': 'wikibase-entityid', 'numeric-id': 24085414, 'entity-type': 'item', 'id': 'Q24085414'}, {'entity-type': 'item', 'id': 'Q391028', 'numeric-id': 391028, 'property': 'P69', 'type': 'wikibase-entityid'}, {'numeric-id': 5325128, 'property': 'P69', 'id': 'Q5325128', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'time': '+1937-07-31T00:00:00Z', 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'after': 0, 'before': 0, 'precision': 11, 'property': 'P569'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q43845', 'numeric-id': 43845, 'property': 'P106'}, {'numeric-id': 6581097, 'id': 'Q6581097', 'entity-type': 'item', 'property': 'P21', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'property': 'P166', 'id': 'Q15278116', 'entity-type': 'item', 'numeric-id': 15278116}), 'title': 'Q6828301'}
{'type': 'item', 'id': 'Q6829036', 'labels': (('en', 'Michael Cotter Murphy'),), 'descriptions': (('en', 'American politician'),), 'aliases': (), 'sitelinks': (('arwiki', '\xd9\x85\xd9\x8a\xd8\xae\xd8\xa7\xd8\xa6\xd9\x8a\xd9\x84 \xd9\x83. \xd9\x85\xd9\x8a\xd8\xb1\xd9\x81\xd9\x8a (\xd8\xb3\xd9\x8a\xd8\xa7\xd8\xb3\xd9\x8a)', None), ('commonswiki', 'Category:Michael Cotter Murphy', None), ('enwiki', 'Michael C. Murphy (New York politician)', None)), 'claims': ({'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1839-03-07T00:00:00Z', 'type': 'time', 'before': 0, 'property': 'P569', 'precision': 11, 'after': 0}, {'id': 'Q82955', 'numeric-id': 82955, 'property': 'P106', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'numeric-id': 27, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q27', 'property': 'P27'}, {'entity-type': 'item', 'numeric-id': 30, 'type': 'wikibase-entityid', 'property': 'P27', 'id': 'Q30'}, {'type': 'string', 'value': 'Michael Cotter Murphy', 'property': 'P373'}, {'numeric-id': 10798873, 'id': 'Q10798873', 'entity-type': 'item', 'property': 'P119', 'type': 'wikibase-entityid'}, {'property': 'P1477', 'type': 'monolingualtext', 'text': 'Michael Cotter Murphy', 'language': 'en'}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'after': 0, 'before': 0, 'precision': 11, 'time': '+1903-03-04T00:00:00Z', 'property': 'P570', 'type': 'time'}, {'type': 'wikibase-entityid', 'property': 'P735', 'id': 'Q4927524', 'entity-type': 'item', 'numeric-id': 4927524}, {'entity-type': 'item', 'property': 'P19', 'type': 'wikibase-entityid', 'numeric-id': 2566838, 'id': 'Q2566838'}, {'id': 'Q18691526', 'type': 'wikibase-entityid', 'numeric-id': 18691526, 'entity-type': 'item', 'property': 'P39'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q20058770', 'numeric-id': 20058770, 'property': 'P39'}, {'entity-type': 'item', 'property': 'P39', 'id': 'Q24204308', 'numeric-id': 24204308, 'type': 'wikibase-entityid'}, {'property': 'P18', 'type': 'string', 'value': 'Michael Cotter Murphy circa 1903.png'}, {'id': 'Q5', 'entity-type': 'item', 'property': 'P31', 'type': 'wikibase-entityid', 'numeric-id': 5}, {'id': 'Q11299', 'numeric-id': 11299, 'entity-type': 'item', 'property': 'P20', 'type': 'wikibase-entityid'}, {'numeric-id': 1953798, 'entity-type': 'item', 'id': 'Q1953798', 'type': 'wikibase-entityid', 'property': 'P734'}, {'property': 'P1412', 'id': 'Q1860', 'numeric-id': 1860, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'numeric-id': 6581097, 'type': 'wikibase-entityid', 'id': 'Q6581097', 'property': 'P21', 'entity-type': 'item'}, {'id': 'Q29552', 'entity-type': 'item', 'property': 'P102', 'type': 'wikibase-entityid', 'numeric-id': 29552}, {'id': 'Q203535', 'numeric-id': 203535, 'entity-type': 'item', 'property': 'P166', 'type': 'wikibase-entityid'}), 'title': 'Q6829036'}
{'type': 'item', 'id': 'Q6829080', 'labels': (('en-g', 'Ian King'), ('en-ca', 'Ian King'), ('en', 'Ian King')), 'descriptions': (('en', 'cricketer (born 1931)'),), 'aliases': (('en', 'Ian Metcalfe King'),), 'sitelinks': (('tawiki', '\xe0\xae\xb2\xe0\xae\xbe\xe0\xae\xa9\xe0\xaf\x8d \xe0\xae\x95\xe0\xae\xbf\xe0\xae\x99\xe0\xaf\x8d (\xe0\xae\x86\xe0\xae\x99\xe0\xaf\x8d\xe0\xae\x95\xe0\xae\xbf\xe0\xae\xb2 \xe0\xae\xa4\xe0\xaf\x81\xe0\xae\x9f\xe0\xaf\x81\xe0\xae\xaa\xe0\xaf\x8d\xe0\xae\xaa\xe0\xae\xbe\xe0\xae\x9f\xe0\xaf\x8d\xe0\xae\x9f\xe0\xae\x95\xe0\xaf\x8d\xe0\xae\x95\xe0\xae\xbe\xe0\xae\xb0\xe0\xae\xb0\xe0\xaf\x8d)', None), ('arwiki', '\xd9\x8a\xd8\xa7\xd9\x86 \xd9\x83\xd9\x8a\xd9\x86\xd8\xba (\xd9\x84\xd8\xa7\xd8\xb9\xd8\xa8 \xd9\x83\xd8\xb1\xd9\x8a\xd9\x83\xd8\xaa)', None), ('enwiki', 'Ian King (English cricketer)', None), ('arzwiki', '\xd9\x8a\xd8\xa7\xd9\x86 \xd9\x83\xd9\x8a\xd9\x86\xd8\xac (\xd9\x84\xd8\xa7\xd8\xb9\xd8\xa8 \xd9\x83\xd8\xb1\xd9\x8a\xd9\x83\xd8\xaa)', None)), 'claims': ({'type': 'wikibase-entityid', 'id': 'Q39121', 'entity-type': 'item', 'numeric-id': 39121, 'property': 'P19'}, {'type': 'wikibase-entityid', 'id': 'Q6581097', 'entity-type': 'item', 'numeric-id': 6581097, 'property': 'P21'}, {'entity-type': 'item', 'id': 'Q5', 'numeric-id': 5, 'type': 'wikibase-entityid', 'property': 'P31'}, {'id': 'Q18336315', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 18336315, 'property': 'P735'}, {'type': 'wikibase-entityid', 'id': 'Q1860', 'property': 'P1412', 'numeric-id': 1860, 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q145', 'property': 'P27', 'type': 'wikibase-entityid', 'numeric-id': 145}, {'numeric-id': 12299841, 'type': 'wikibase-entityid', 'property': 'P106', 'entity-type': 'item', 'id': 'Q12299841'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q5648588', 'numeric-id': 5648588, 'property': 'P69'}, {'precision': 11, 'before': 0, 'type': 'time', 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1931-11-10T00:00:00Z', 'after': 0, 'property': 'P569'}, {'id': 'Q535214', 'property': 'P734', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 535214}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P54', 'id': 'Q3058749', 'numeric-id': 3058749}, {'id': 'Q2725705', 'property': 'P54', 'type': 'wikibase-entityid', 'numeric-id': 2725705, 'entity-type': 'item'}, {'id': 'Q1520158', 'entity-type': 'item', 'property': 'P2545', 'numeric-id': 1520158, 'type': 'wikibase-entityid'}, {'id': 'Q5375', 'numeric-id': 5375, 'entity-type': 'item', 'property': 'P641', 'type': 'wikibase-entityid'}, {'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P570', 'timezone': 0, 'after': 0, 'precision': 11, 'type': 'time', 'time': '+2020-03-31T00:00:00Z'}), 'title': 'Q6829080'}
{'type': 'item', 'id': 'Q6829324', 'labels': (('en', 'Michael Cocks'),), 'descriptions': (('en', 'British politician'), ('en-ca', 'British politician'), ('en-g', 'British politician')), 'aliases': (('en', 'Michael Francis Lovell Cocks, Baron Cocks of Hartcliffe'),), 'sitelinks': (('dewiki', 'Michael Cocks, Baron Cocks of Hartcliffe', None), ('frwiki', 'Michael Cocks', None), ('enwiki', 'Michael Cocks', None)), 'claims': ({'property': 'P27', 'entity-type': 'item', 'id': 'Q145', 'numeric-id': 145, 'type': 'wikibase-entityid'}, {'type': 'string', 'value': 'Q6829324', 'property': 'P10632'}, {'id': 'Q5', 'numeric-id': 5, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P31'}, {'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'before': 0, 'after': 0, 'precision': 11, 'time': '+1929-08-19T00:00:00Z', 'type': 'time'}, {'property': 'P10428', 'type': 'string', 'value': '782'}, {'value': '3410', 'property': 'P10428', 'type': 'string'}, {'entity-type': 'item', 'numeric-id': 1480896, 'id': 'Q1480896', 'type': 'wikibase-entityid', 'property': 'P511'}, {'property': 'P1559', 'text': 'Michael Cocks', 'language': 'en', 'type': 'monolingualtext'}, {'numeric-id': 1622272, 'id': 'Q1622272', 'property': 'P106', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'numeric-id': 82955, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q82955', 'property': 'P106'}, {'type': 'wikibase-entityid', 'numeric-id': 459506, 'property': 'P69', 'entity-type': 'item', 'id': 'Q459506'}, {'entity-type': 'item', 'numeric-id': 5574794, 'type': 'wikibase-entityid', 'id': 'Q5574794', 'property': 'P69'}, {'type': 'wikibase-entityid', 'property': 'P22', 'id': 'Q75599529', 'numeric-id': 75599529, 'entity-type': 'item'}, {'numeric-id': 75599525, 'id': 'Q75599525', 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P26'}, {'id': 'Q75599527', 'property': 'P26', 'entity-type': 'item', 'numeric-id': 75599527, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q6581097', 'numeric-id': 6581097, 'property': 'P21', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q4927524', 'numeric-id': 4927524, 'property': 'P735'}, {'type': 'string', 'value': '1667', 'property': 'P10849'}, {'numeric-id': 23154, 'type': 'wikibase-entityid', 'id': 'Q23154', 'entity-type': 'item', 'property': 'P20'}, {'numeric-id': 21482992, 'property': 'P734', 'type': 'wikibase-entityid', 'id': 'Q21482992', 'entity-type': 'item'}, {'before': 0, 'after': 0, 'time': '+2001-03-26T00:00:00Z', 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P570', 'precision': 11, 'timezone': 0}, {'property': 'P570', 'type': 'time', 'after': 0, 'precision': 10, 'time': '+2001-03-00T00:00:00Z', 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0}, {'type': 'wikibase-entityid', 'property': 'P39', 'numeric-id': 28841847, 'entity-type': 'item', 'id': 'Q28841847'}, {'entity-type': 'item', 'numeric-id': 41582621, 'property': 'P39', 'type': 'wikibase-entityid', 'id': 'Q41582621'}, {'id': 'Q41582619', 'numeric-id': 41582619, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P39'}, {'property': 'P39', 'type': 'wikibase-entityid', 'id': 'Q41582617', 'entity-type': 'item', 'numeric-id': 41582617}, {'property': 'P39', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q41582615', 'numeric-id': 41582615}, {'property': 'P39', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q41582612', 'numeric-id': 41582612}, {'type': 'wikibase-entityid', 'numeric-id': 18952564, 'property': 'P39', 'id': 'Q18952564', 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q9630', 'property': 'P102', 'type': 'wikibase-entityid', 'numeric-id': 9630}, {'property': 'P1412', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 1860, 'id': 'Q1860'}, {'type': 'wikibase-entityid', 'numeric-id': 84, 'entity-type': 'item', 'id': 'Q84', 'property': 'P937'}, {'entity-type': 'item', 'numeric-id': 918442, 'property': 'P3602', 'id': 'Q918442', 'type': 'wikibase-entityid'}, {'numeric-id': 119524, 'property': 'P3602', 'type': 'wikibase-entityid', 'id': 'Q119524', 'entity-type': 'item'}, {'entity-type': 'item', 'property': 'P3602', 'id': 'Q918450', 'numeric-id': 918450, 'type': 'wikibase-entityid'}, {'property': 'P3602', 'entity-type': 'item', 'numeric-id': 918466, 'type': 'wikibase-entityid', 'id': 'Q918466'}, {'type': 'wikibase-entityid', 'id': 'Q918508', 'property': 'P3602', 'numeric-id': 918508, 'entity-type': 'item'}, {'numeric-id': 918420, 'id': 'Q918420', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P3602'}, {'numeric-id': 39121, 'property': 'P19', 'entity-type': 'item', 'id': 'Q39121', 'type': 'wikibase-entityid'}), 'title': 'Q6829324'}
{'type': 'item', 'id': 'Q6829709', 'labels': (('en', 'Michael Dargan'),), 'descriptions': (('en', 'Irish cricketer'),), 'aliases': (('en', 'Michael James Dargan'),), 'sitelinks': (('enwiki', 'Michael Dargan', None),), 'claims': ({'entity-type': 'item', 'property': 'P69', 'numeric-id': 7355662, 'type': 'wikibase-entityid', 'id': 'Q7355662'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P106', 'id': 'Q12299841', 'numeric-id': 12299841}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q14089670', 'numeric-id': 14089670, 'property': 'P106'}, {'entity-type': 'item', 'numeric-id': 16869413, 'property': 'P734', 'type': 'wikibase-entityid', 'id': 'Q16869413'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 2283076, 'property': 'P413', 'id': 'Q2283076'}, {'id': 'Q5', 'entity-type': 'item', 'numeric-id': 5, 'property': 'P31', 'type': 'wikibase-entityid'}, {'property': 'P641', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q5375', 'numeric-id': 5375}, {'numeric-id': 5849, 'entity-type': 'item', 'property': 'P641', 'type': 'wikibase-entityid', 'id': 'Q5849'}, {'id': 'Q27', 'entity-type': 'item', 'property': 'P27', 'numeric-id': 27, 'type': 'wikibase-entityid'}, {'property': 'P735', 'numeric-id': 4927524, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q4927524'}, {'property': 'P569', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1928-10-09T00:00:00Z', 'timezone': 0, 'precision': 11, 'type': 'time', 'after': 0, 'before': 0}, {'type': 'wikibase-entityid', 'property': 'P21', 'id': 'Q6581097', 'numeric-id': 6581097, 'entity-type': 'item'}, {'entity-type': 'item', 'numeric-id': 599903, 'type': 'wikibase-entityid', 'id': 'Q599903', 'property': 'P54'}, {'property': 'P54', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q137660', 'numeric-id': 137660}), 'title': 'Q6829709'}
{'type': 'item', 'id': 'Q6829773', 'labels': (('en', 'Michael Dean Shelton'),), 'descriptions': (('en', 'actor, photographer, humanitarian'),), 'aliases': (), 'sitelinks': (('enwiki', 'Michael Dean Shelton', None), ('afwiki', 'Michael Dean Shelton', None)), 'claims': ({'after': 0, 'precision': 11, 'timezone': 0, 'time': '+1977-01-16T00:00:00Z', 'before': 0, 'property': 'P569', 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'type': 'wikibase-entityid', 'id': 'Q4927524', 'numeric-id': 4927524, 'entity-type': 'item', 'property': 'P735'}, {'property': 'P21', 'id': 'Q6581097', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 6581097}, {'entity-type': 'item', 'id': 'Q30', 'type': 'wikibase-entityid', 'numeric-id': 30, 'property': 'P27'}, {'entity-type': 'item', 'property': 'P69', 'id': 'Q1026831', 'numeric-id': 1026831, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'numeric-id': 3444458, 'id': 'Q3444458', 'entity-type': 'item', 'property': 'P69'}, {'id': 'Q5', 'numeric-id': 5, 'property': 'P31', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'id': 'Q33999', 'property': 'P106', 'numeric-id': 33999, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P19', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q1913965', 'numeric-id': 1913965}, {'type': 'wikibase-entityid', 'property': 'P1412', 'entity-type': 'item', 'id': 'Q1860', 'numeric-id': 1860}, {'entity-type': 'item', 'id': 'Q1860', 'numeric-id': 1860, 'property': 'P103', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 1860, 'property': 'P6886', 'id': 'Q1860', 'type': 'wikibase-entityid'}, {'type': 'string', 'property': 'P18', 'value': 'MichaelDeanSheltonnewpic.jpg'}), 'title': 'Q6829773'}
{'type': 'item', 'id': 'Q6830070', 'labels': (('en', 'The Law of Success'),), 'descriptions': (('en', '1925 book by Napoleon Hill'),), 'aliases': (), 'sitelinks': (('enwiki', 'The Law of Success', None), ('arwiki', '\xd9\x82\xd8\xa7\xd9\x86\xd9\x88\xd9\x86 \xd8\xa7\xd9\x84\xd9\x86\xd8\xac\xd8\xa7\xd8\xad', None)), 'claims': ({'entity-type': 'item', 'id': 'Q7725634', 'property': 'P31', 'type': 'wikibase-entityid', 'numeric-id': 7725634}, {'entity-type': 'item', 'numeric-id': 30, 'id': 'Q30', 'type': 'wikibase-entityid', 'property': 'P495'}, {'numeric-id': 1860, 'property': 'P407', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q1860'}, {'type': 'wikibase-entityid', 'property': 'P50', 'entity-type': 'item', 'id': 'Q311644', 'numeric-id': 311644}, {'text': 'The Law of Success', 'type': 'monolingualtext', 'language': 'en', 'property': 'P1476'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P921', 'id': 'Q3739522', 'numeric-id': 3739522}, {'property': 'P136', 'numeric-id': 213051, 'entity-type': 'item', 'id': 'Q213051', 'type': 'wikibase-entityid'}, {'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 9, 'after': 0, 'property': 'P577', 'time': '+1928-00-00T00:00:00Z', 'type': 'time', 'timezone': 0}), 'title': 'Q6830070'}
{'type': 'item', 'id': 'Q6830569', 'labels': (('en', 'Michael Gelven'),), 'descriptions': (('en', 'American philosopher'),), 'aliases': (), 'sitelinks': (('ltwiki', 'Michael Gelven', None), ('enwiki', 'Michael Gelven', None)), 'claims': ({'property': 'P11249', 'value': '14805809', 'type': 'string'}, {'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'after': 0, 'time': '+1937-06-22T00:00:00Z', 'type': 'time', 'before': 0, 'property': 'P569'}, {'entity-type': 'item', 'numeric-id': 4964182, 'type': 'wikibase-entityid', 'property': 'P106', 'id': 'Q4964182'}, {'id': 'Q5', 'entity-type': 'item', 'numeric-id': 5, 'property': 'P31', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q4927524', 'numeric-id': 4927524, 'property': 'P735', 'entity-type': 'item'}, {'numeric-id': 6581097, 'id': 'Q6581097', 'property': 'P21', 'type': 'wikibase-entityid', 'entity-type': 'item'}), 'title': 'Q6830569'}
{'type': 'item', 'id': 'Q6830691', 'labels': (('en', 'Michael Gorra'),), 'descriptions': (('en', 'American academic'),), 'aliases': (), 'sitelinks': (('mrwiki', '\xe0\xa4\xae\xe0\xa4\xbe\xe0\xa4\xaf\xe0\xa4\x95\xe0\xa5\x87\xe0\xa4\xb2 \xe0\xa4\x97\xe0\xa5\x8b\xe0\xa4\xb0\xe0\xa4\xbe', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83\xd9\x84 \xd8\xac\xd9\x88\xd8\xb1\xd8\xa7', None), ('enwiki', 'Michael Gorra', None)), 'claims': ({'property': 'P69', 'id': 'Q41506', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 41506}, {'numeric-id': 49165, 'entity-type': 'item', 'id': 'Q49165', 'type': 'wikibase-entityid', 'property': 'P69'}, {'id': 'Q1316544', 'property': 'P166', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 1316544}, {'numeric-id': 5, 'id': 'Q5', 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P11249', 'type': 'string', 'value': '14505749'}, {'entity-type': 'item', 'numeric-id': 3400985, 'property': 'P106', 'type': 'wikibase-entityid', 'id': 'Q3400985'}, {'after': 0, 'before': 0, 'time': '+1957-02-17T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'precision': 11, 'type': 'time', 'timezone': 0}, {'id': 'Q49146', 'property': 'P19', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 49146}, {'numeric-id': 30, 'property': 'P27', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q30'}, {'property': 'P735', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q4927524', 'numeric-id': 4927524}, {'entity-type': 'item', 'numeric-id': 37248116, 'type': 'wikibase-entityid', 'property': 'P734', 'id': 'Q37248116'}, {'numeric-id': 1860, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q1860', 'property': 'P1412'}, {'property': 'P21', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q6581097', 'numeric-id': 6581097}, {'property': 'P108', 'type': 'wikibase-entityid', 'id': 'Q49204', 'entity-type': 'item', 'numeric-id': 49204}), 'title': 'Q6830691'}
{'type': 'item', 'id': 'Q6831366', 'labels': (('en', 'Michael J. Battle'),), 'descriptions': (('en', 'American academic'),), 'aliases': (('en', 'Michael Jesse Battle'),), 'sitelinks': (('enwiki', 'Michael J. Battle', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83\xd9\x84 \xd8\xac. \xd8\xa8\xd8\xa7\xd8\xaa\xd9\x84', None)), 'claims': ({'property': 'P1416', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 682443, 'id': 'Q682443'}, {'value': '13983192', 'property': 'P11249', 'type': 'string'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P734', 'numeric-id': 16479866, 'id': 'Q16479866'}, {'id': 'Q34404', 'property': 'P19', 'type': 'wikibase-entityid', 'numeric-id': 34404, 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'id': 'Q30', 'property': 'P27', 'entity-type': 'item', 'numeric-id': 30}, {'entity-type': 'item', 'id': 'Q6423963', 'property': 'P140', 'type': 'wikibase-entityid', 'numeric-id': 6423963}, {'id': 'Q4927524', 'property': 'P735', 'type': 'wikibase-entityid', 'numeric-id': 4927524, 'entity-type': 'item'}, {'entity-type': 'item', 'numeric-id': 168751, 'property': 'P108', 'id': 'Q168751', 'type': 'wikibase-entityid'}, {'property': 'P31', 'id': 'Q5', 'numeric-id': 5, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'property': 'P1412', 'id': 'Q1860', 'numeric-id': 1860, 'type': 'wikibase-entityid'}, {'property': 'P10553', 'value': '523630786', 'type': 'string'}, {'numeric-id': 6581097, 'id': 'Q6581097', 'entity-type': 'item', 'property': 'P21', 'type': 'wikibase-entityid'}, {'property': 'P106', 'type': 'wikibase-entityid', 'id': 'Q3400985', 'numeric-id': 3400985, 'entity-type': 'item'}, {'property': 'P106', 'id': 'Q42603', 'numeric-id': 42603, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q1234713', 'numeric-id': 1234713, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P106'}, {'time': '+1963-12-12T00:00:00Z', 'precision': 11, 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'before': 0, 'timezone': 0, 'type': 'time'}), 'title': 'Q6831366'}
{'type': 'item', 'id': 'Q6831534', 'labels': (('en', 'Michael J. Wytrwal'),), 'descriptions': (('en', 'Polish businessman'),), 'aliases': (), 'sitelinks': (('enwiki', 'Michael J. Wytrwal', None),), 'claims': ({'id': 'Q30', 'numeric-id': 30, 'property': 'P27', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'numeric-id': 5, 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q5'}, {'property': 'P570', 'time': '+1970-01-21T00:00:00Z', 'precision': 11, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0, 'type': 'time', 'timezone': 0, 'after': 0}, {'numeric-id': 6581097, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P21', 'id': 'Q6581097'}, {'time': '+1882-09-12T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'type': 'time', 'before': 0, 'timezone': 0, 'property': 'P569', 'after': 0}, {'property': 'P735', 'id': 'Q4927524', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 4927524}, {'value': 'Coal yard photo REV.tif', 'property': 'P18', 'type': 'string'}, {'numeric-id': 806798, 'entity-type': 'item', 'id': 'Q806798', 'property': 'P106', 'type': 'wikibase-entityid'}), 'title': 'Q6831534'}
{'type': 'item', 'id': 'Q6831677', 'labels': (('en', 'Michael Johnson'),), 'descriptions': (('en', 'former Gaelic footballer'),), 'aliases': (), 'sitelinks': (('arzwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83\xd9\x84 \xd8\xac\xd9\x88\xd9\x86\xd8\xb3\xd9\x88\xd9\x86 (\xd9\x84\xd8\xa7\xd8\xb9\xd8\xa8 \xd9\x83\xd9\x88\xd8\xb1\xd8\xa9 \xd8\xa7\xd9\x84\xd9\x82\xd8\xaf\xd9\x85 \xd8\xa7\xd9\x84\xd8\xa7\xd8\xb3\xd8\xaa\xd8\xb1\xd8\xa7\xd9\x84\xd9\x8a\xd9\x87)', None), ('enwiki', 'Michael Johnson (Gaelic footballer)', None)), 'claims': ({'numeric-id': 1860, 'type': 'wikibase-entityid', 'id': 'Q1860', 'property': 'P1412', 'entity-type': 'item'}, {'numeric-id': 2736, 'type': 'wikibase-entityid', 'property': 'P641', 'entity-type': 'item', 'id': 'Q2736'}, {'numeric-id': 40552449, 'property': 'P54', 'type': 'wikibase-entityid', 'id': 'Q40552449', 'entity-type': 'item'}, {'property': 'P19', 'numeric-id': 609235, 'type': 'wikibase-entityid', 'id': 'Q609235', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P27', 'numeric-id': 145, 'id': 'Q145'}, {'entity-type': 'item', 'id': 'Q4927524', 'type': 'wikibase-entityid', 'property': 'P735', 'numeric-id': 4927524}, {'id': 'Q6581097', 'numeric-id': 6581097, 'property': 'P21', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q937857', 'numeric-id': 937857, 'property': 'P106', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'numeric-id': 13414980, 'property': 'P106', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q13414980'}, {'property': 'P106', 'type': 'wikibase-entityid', 'id': 'Q17351861', 'numeric-id': 17351861, 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P734', 'numeric-id': 1158485, 'id': 'Q1158485'}, {'numeric-id': 5, 'type': 'wikibase-entityid', 'property': 'P31', 'id': 'Q5', 'entity-type': 'item'}), 'title': 'Q6831677'}
{'type': 'item', 'id': 'Q6831743', 'labels': (('en', 'Michael Joseph Reagan'),), 'descriptions': (('en', 'United States federal judge'),), 'aliases': (), 'sitelinks': (('arzwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83\xd9\x84 \xda\x86\xd9\x88\xd8\xb2\xd9\x8a\xd9\x81 \xd8\xb1\xd9\x8a\xd8\xac\xd8\xa7\xd9\x86', None), ('enwiki', 'Michael Joseph Reagan', None), ('arwiki', '\xd9\x85\xd9\x8a\xd8\xae\xd8\xa7\xd8\xa6\xd9\x8a\xd9\x84 \xd8\xac\xd9\x88\xd8\xb2\xd9\x8a\xd9\x81 \xd8\xb1\xd9\x8a\xd8\xba\xd8\xa7\xd9\x86', None)), 'claims': ({'property': 'P21', 'entity-type': 'item', 'id': 'Q6581097', 'numeric-id': 6581097, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'property': 'P31', 'entity-type': 'item', 'id': 'Q5', 'numeric-id': 5}, {'type': 'time', 'time': '+1954-01-01T00:00:00Z', 'precision': 9, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'before': 0, 'property': 'P569', 'timezone': 0}, {'value': '1391266', 'property': 'P12000', 'type': 'string'}, {'property': 'P735', 'id': 'Q4927524', 'numeric-id': 4927524, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'numeric-id': 30, 'id': 'Q30', 'entity-type': 'item', 'property': 'P27', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 40348, 'property': 'P106', 'id': 'Q40348', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'numeric-id': 16533, 'id': 'Q16533', 'entity-type': 'item', 'property': 'P106'}, {'numeric-id': 34804, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P19', 'id': 'Q34804'}, {'property': 'P69', 'entity-type': 'item', 'id': 'Q897052', 'numeric-id': 897052, 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q734774', 'property': 'P69', 'type': 'wikibase-entityid', 'numeric-id': 734774}), 'title': 'Q6831743'}
{'type': 'item', 'id': 'Q6831770', 'labels': (('en', 'Michael K. Sheridan'),), 'descriptions': (('en', 'United States Marine Corps general'),), 'aliases': (), 'sitelinks': (('arwiki', '\xd9\x85\xd9\x8a\xd8\xae\xd8\xa7\xd8\xa6\xd9\x8a\xd9\x84 \xd9\x83. \xd8\xb4\xd9\x8a\xd8\xb1\xd9\x8a\xd8\xaf\xd8\xa7\xd9\x86', None), ('enwiki', 'Michael K. Sheridan', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83\xd9\x84 \xd9\x83. \xd8\xb4\xd9\x8a\xd8\xb1\xd9\x8a\xd8\xaf\xd8\xa7\xd9\x86', None)), 'claims': ({'numeric-id': 5, 'id': 'Q5', 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q1297', 'numeric-id': 1297, 'entity-type': 'item', 'property': 'P19', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q152956', 'property': 'P410', 'type': 'wikibase-entityid', 'numeric-id': 152956}, {'id': 'Q30', 'property': 'P945', 'numeric-id': 30, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q189290', 'numeric-id': 189290, 'type': 'wikibase-entityid', 'property': 'P106'}, {'type': 'wikibase-entityid', 'property': 'P735', 'numeric-id': 4927524, 'entity-type': 'item', 'id': 'Q4927524'}, {'entity-type': 'item', 'numeric-id': 2585651, 'type': 'wikibase-entityid', 'id': 'Q2585651', 'property': 'P166'}, {'entity-type': 'item', 'numeric-id': 1760530, 'id': 'Q1760530', 'property': 'P166', 'type': 'wikibase-entityid'}, {'numeric-id': 17231624, 'entity-type': 'item', 'id': 'Q17231624', 'property': 'P166', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'property': 'P607', 'numeric-id': 8663, 'type': 'wikibase-entityid', 'id': 'Q8663'}, {'numeric-id': 8740, 'id': 'Q8740', 'property': 'P607', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'numeric-id': 16883169, 'property': 'P734', 'id': 'Q16883169', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q432637', 'type': 'wikibase-entityid', 'property': 'P69', 'entity-type': 'item', 'numeric-id': 432637}, {'numeric-id': 861548, 'type': 'wikibase-entityid', 'property': 'P69', 'entity-type': 'item', 'id': 'Q861548'}, {'entity-type': 'item', 'numeric-id': 6581097, 'property': 'P21', 'id': 'Q6581097', 'type': 'wikibase-entityid'}, {'property': 'P18', 'value': 'Michael K Sheridan.jpg', 'type': 'string'}, {'entity-type': 'item', 'property': 'P241', 'type': 'wikibase-entityid', 'numeric-id': 11218, 'id': 'Q11218'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 30, 'property': 'P27', 'id': 'Q30'}, {'precision': 11, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'type': 'time', 'time': '+1934-09-26T00:00:00Z', 'property': 'P569', 'after': 0, 'before': 0}), 'title': 'Q6831770'}
{'type': 'item', 'id': 'Q6831901', 'labels': (('en', 'Michael Klaper'),), 'descriptions': (('en', 'American physician'),), 'aliases': (('en', 'Dr. Michael Klaper'),), 'sitelinks': (('enwikiquote', 'Michael Klaper', None), ('enwiki', 'Michael Klaper', None), ('itwikiquote', 'Michael Klaper', None), ('fiwiki', 'Michael Klaper', None), ('hiwiki', '\xe0\xa4\xae\xe0\xa4\xbe\xe0\xa4\x87\xe0\xa4\x95\xe0\xa4\xb2 \xe0\xa4\x95\xe0\xa5\x8d\xe0\xa4\xb2\xe0\xa5\x87\xe0\xa4\xaa\xe0\xa4\xb0', None)), 'claims': ({'before': 0, 'time': '+1947-07-19T00:00:00Z', 'precision': 11, 'timezone': 0, 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'property': 'P569'}, {'property': 'P69', 'id': 'Q391028', 'entity-type': 'item', 'numeric-id': 391028, 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 1061104, 'id': 'Q1061104', 'property': 'P69', 'type': 'wikibase-entityid'}, {'id': 'Q7895524', 'entity-type': 'item', 'numeric-id': 7895524, 'type': 'wikibase-entityid', 'property': 'P69'}, {'type': 'string', 'value': 'Michael Klaper.jpg', 'property': 'P18'}, {'unit': '1', 'type': 'quantity', 'property': 'P8687', 'amount': '+12897'}, {'unit': '1', 'type': 'quantity', 'amount': '+12797', 'property': 'P8687'}, {'amount': '+12561', 'type': 'quantity', 'property': 'P8687', 'unit': '1'}, {'property': 'P21', 'numeric-id': 6581097, 'entity-type': 'item', 'id': 'Q6581097', 'type': 'wikibase-entityid'}, {'type': 'string', 'value': 'https://www.doctorklaper.com/', 'property': 'P856'}, {'property': 'P2002', 'value': 'michaelklapermd', 'type': 'string'}, {'property': 'P106', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q39631', 'numeric-id': 39631}, {'property': 'P106', 'numeric-id': 106638245, 'type': 'wikibase-entityid', 'id': 'Q106638245', 'entity-type': 'item'}, {'numeric-id': 5, 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q5'}, {'id': 'Q4927524', 'entity-type': 'item', 'property': 'P735', 'numeric-id': 4927524, 'type': 'wikibase-entityid'}, {'type': 'string', 'value': 'michaelklapermd', 'property': 'P2013'}), 'title': 'Q6831901'}
{'type': 'item', 'id': 'Q6832026', 'labels': (('en', 'Michael L. Iaccarino'),), 'descriptions': (('en', 'businessman'),), 'aliases': (), 'sitelinks': (('enwiki', 'Michael L. Iaccarino', None),), 'claims': ({'entity-type': 'item', 'numeric-id': 19902499, 'type': 'wikibase-entityid', 'id': 'Q19902499', 'property': 'P734'}, {'property': 'P19', 'type': 'wikibase-entityid', 'numeric-id': 100, 'entity-type': 'item', 'id': 'Q100'}, {'property': 'P106', 'id': 'Q2961975', 'entity-type': 'item', 'numeric-id': 2961975, 'type': 'wikibase-entityid'}, {'numeric-id': 30, 'entity-type': 'item', 'property': 'P27', 'type': 'wikibase-entityid', 'id': 'Q30'}, {'property': 'P18', 'type': 'string', 'value': 'Michael Iaccarino 2013.JPG'}, {'type': 'wikibase-entityid', 'id': 'Q6581097', 'entity-type': 'item', 'numeric-id': 6581097, 'property': 'P21'}, {'numeric-id': 4927524, 'entity-type': 'item', 'id': 'Q4927524', 'property': 'P735', 'type': 'wikibase-entityid'}, {'property': 'P551', 'entity-type': 'item', 'id': 'Q16557', 'numeric-id': 16557, 'type': 'wikibase-entityid'}, {'id': 'Q5', 'type': 'wikibase-entityid', 'numeric-id': 5, 'property': 'P31', 'entity-type': 'item'}, {'id': 'Q49118', 'numeric-id': 49118, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P69'}), 'title': 'Q6832026'}
{'type': 'item', 'id': 'Q6832039', 'labels': (('en', 'Michael L. Phelan'),), 'descriptions': (('en', 'Canadian judge'),), 'aliases': (('en', 'Michael Lawlor Phelan'),), 'sitelinks': (('arwiki', '\xd9\x85\xd9\x8a\xd8\xae\xd8\xa7\xd8\xa6\xd9\x8a\xd9\x84 \xd8\xa5\xd9\x84. \xd9\x81\xd9\x8a\xd9\x84\xd8\xa7\xd9\x86', None),), 'claims': ({'id': 'Q16', 'numeric-id': 16, 'property': 'P27', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'property': 'P21', 'numeric-id': 6581097, 'type': 'wikibase-entityid', 'id': 'Q6581097'}, {'type': 'wikibase-entityid', 'id': 'Q2085453', 'entity-type': 'item', 'numeric-id': 2085453, 'property': 'P734'}, {'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'type': 'time', 'precision': 11, 'time': '+1947-06-08T00:00:00Z', 'after': 0, 'timezone': 0}, {'numeric-id': 4927524, 'property': 'P735', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q4927524'}, {'id': 'Q5', 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 5}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 16533, 'property': 'P106', 'id': 'Q16533'}), 'title': 'Q6832039'}
{'type': 'item', 'id': 'Q6832142', 'labels': (('en', 'Michael Leahy'),), 'descriptions': (('en', 'Irish mayor'),), 'aliases': (), 'sitelinks': (('enwiki', 'Michael Leahy (politician)', None),), 'claims': ({'time': '+2007-01-01T00:00:00Z', 'before': 0, 'after': 0, 'precision': 9, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'property': 'P570', 'timezone': 0}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 82955, 'id': 'Q82955', 'property': 'P106'}, {'numeric-id': 4076760, 'property': 'P19', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q4076760'}, {'entity-type': 'item', 'property': 'P27', 'id': 'Q27', 'numeric-id': 27, 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 4927524, 'property': 'P735', 'type': 'wikibase-entityid', 'id': 'Q4927524'}, {'numeric-id': 6509287, 'property': 'P734', 'id': 'Q6509287', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'numeric-id': 5, 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q5'}, {'precision': 9, 'type': 'time', 'timezone': 0, 'time': '+1932-01-01T00:00:00Z', 'after': 0, 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569'}, {'id': 'Q6797712', 'numeric-id': 6797712, 'entity-type': 'item', 'property': 'P39', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q6581097', 'numeric-id': 6581097, 'property': 'P21'}, {'entity-type': 'item', 'id': 'Q216517', 'property': 'P102', 'type': 'wikibase-entityid', 'numeric-id': 216517}), 'title': 'Q6832142'}
{'type': 'item', 'id': 'Q6832149', 'labels': (('en', 'Michael Leckrone'),), 'descriptions': (('en', 'American musician'),), 'aliases': (), 'sitelinks': (('nlwiki', 'Michael Leckrone', None), ('commonswiki', 'Category:Michael Leckrone', None), ('enwiki', 'Michael Leckrone', None)), 'claims': ({'type': 'wikibase-entityid', 'id': 'Q1017974', 'entity-type': 'item', 'property': 'P69', 'numeric-id': 1017974}, {'property': 'P735', 'entity-type': 'item', 'id': 'Q4927524', 'numeric-id': 4927524, 'type': 'wikibase-entityid'}, {'numeric-id': 6581097, 'id': 'Q6581097', 'entity-type': 'item', 'property': 'P21', 'type': 'wikibase-entityid'}, {'property': 'P7704', 'type': 'string', 'value': 'agent/base/7810'}, {'id': 'Q838330', 'numeric-id': 838330, 'entity-type': 'item', 'property': 'P108', 'type': 'wikibase-entityid'}, {'type': 'string', 'property': 'P18', 'value': 'UW Band with Mike Leckrone (6186270821).jpg'}, {'numeric-id': 5, 'property': 'P31', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q5'}, {'property': 'P27', 'type': 'wikibase-entityid', 'numeric-id': 30, 'entity-type': 'item', 'id': 'Q30'}, {'property': 'P106', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 158852, 'id': 'Q158852'}, {'property': 'P106', 'entity-type': 'item', 'numeric-id': 14915627, 'id': 'Q14915627', 'type': 'wikibase-entityid'}, {'id': 'Q36834', 'entity-type': 'item', 'numeric-id': 36834, 'type': 'wikibase-entityid', 'property': 'P106'}, {'timezone': 0, 'after': 0, 'type': 'time', 'property': 'P569', 'before': 0, 'time': '+1936-07-30T00:00:00Z', 'precision': 11, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'property': 'P373', 'type': 'string', 'value': 'Michael Leckrone'}), 'title': 'Q6832149'}
{'type': 'item', 'id': 'Q6832191', 'labels': (('en', 'Michael Lemonick'),), 'descriptions': (('en', 'American journalist'),), 'aliases': (('en', 'Michael D. Lemonick'),), 'sitelinks': (('zhwiki', '\xe8\xbf\x88\xe5\x85\x8b\xe5\xb0\x94\xc2\xb7D\xc2\xb7\xe5\x8b\x92\xe8\x8e\xab\xe5\xb0\xbc\xe5\x85\x8', None), ('enwiki', 'Michael Lemonick', None)), 'claims': ({'unit': '1', 'type': 'quantity', 'amount': '+2642', 'property': 'P8687'}, {'amount': '+2635', 'property': 'P8687', 'unit': '1', 'type': 'quantity'}, {'id': 'Q4927524', 'property': 'P735', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 4927524}, {'type': 'wikibase-entityid', 'numeric-id': 19803500, 'property': 'P735', 'id': 'Q19803500', 'entity-type': 'item'}, {'numeric-id': 1860, 'entity-type': 'item', 'id': 'Q1860', 'property': 'P6886', 'type': 'wikibase-entityid'}, {'property': 'P21', 'numeric-id': 6581097, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q6581097'}, {'type': 'wikibase-entityid', 'id': 'Q21578', 'entity-type': 'item', 'numeric-id': 21578, 'property': 'P108'}, {'numeric-id': 30, 'entity-type': 'item', 'property': 'P27', 'type': 'wikibase-entityid', 'id': 'Q30'}, {'property': 'P10297', 'value': 'm05xjj_6', 'type': 'string'}, {'type': 'string', 'value': 'MLemonick', 'property': 'P2002'}, {'after': 0, 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'property': 'P569', 'precision': 11, 'time': '+1953-10-13T00:00:00Z', 'timezone': 0}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1953-00-00T00:00:00Z', 'precision': 9, 'before': 0, 'timezone': 0, 'property': 'P569', 'after': 0, 'type': 'time'}, {'property': 'P106', 'id': 'Q1930187', 'numeric-id': 1930187, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q13371', 'property': 'P69', 'numeric-id': 13371}, {'entity-type': 'item', 'property': 'P69', 'numeric-id': 844673, 'id': 'Q844673', 'type': 'wikibase-entityid'}, {'numeric-id': 5353476, 'property': 'P69', 'entity-type': 'item', 'id': 'Q5353476', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 1860, 'property': 'P1412', 'id': 'Q1860', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 114957025, 'id': 'Q114957025', 'property': 'P734', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 5, 'property': 'P31', 'id': 'Q5', 'type': 'wikibase-entityid'}, {'type': 'string', 'value': '1140563741812257792', 'property': 'P11496'}, {'property': 'P11686', 'value': '981058514259306706', 'type': 'string'}), 'title': 'Q6832191'}
{'type': 'item', 'id': 'Q6832579', 'labels': (('en', 'Michael Mastura'),), 'descriptions': (('en-ca', 'Filipino politician'), ('en', 'Filipino politician'), ('en-g', 'Filipino politician')), 'aliases': (), 'sitelinks': (('enwiki', 'Michael Mastura', None),), 'claims': ({'id': 'Q18002923', 'property': 'P39', 'entity-type': 'item', 'numeric-id': 18002923, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'numeric-id': 82955, 'id': 'Q82955', 'property': 'P106', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'numeric-id': 928, 'id': 'Q928', 'property': 'P27', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'property': 'P735', 'numeric-id': 4927524, 'id': 'Q4927524', 'entity-type': 'item'}, {'id': 'Q212791', 'numeric-id': 212791, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P19'}, {'type': 'wikibase-entityid', 'property': 'P21', 'id': 'Q6581097', 'numeric-id': 6581097, 'entity-type': 'item'}, {'id': 'Q5', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 5, 'property': 'P31'}, {'numeric-id': 12966903, 'id': 'Q12966903', 'type': 'wikibase-entityid', 'property': 'P102', 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q432', 'property': 'P140', 'type': 'wikibase-entityid', 'numeric-id': 432}), 'title': 'Q6832579'}
{'type': 'item', 'id': 'Q6832770', 'labels': (('en', 'Michael McQuillan'),), 'descriptions': (('en', 'Irish Gaelic football player'),), 'aliases': (), 'sitelinks': (('enwiki', 'Michael McQuillan (Gaelic footballer)', None),), 'claims': ({'entity-type': 'item', 'id': 'Q5', 'type': 'wikibase-entityid', 'property': 'P31', 'numeric-id': 5}, {'type': 'time', 'before': 0, 'timezone': 0, 'precision': 11, 'property': 'P569', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'time': '+1959-10-02T00:00:00Z'}, {'entity-type': 'item', 'numeric-id': 204632, 'type': 'wikibase-entityid', 'property': 'P641', 'id': 'Q204632'}, {'entity-type': 'item', 'property': 'P21', 'numeric-id': 6581097, 'id': 'Q6581097', 'type': 'wikibase-entityid'}, {'numeric-id': 4927524, 'type': 'wikibase-entityid', 'id': 'Q4927524', 'property': 'P735', 'entity-type': 'item'}, {'entity-type': 'item', 'property': 'P106', 'type': 'wikibase-entityid', 'numeric-id': 17351861, 'id': 'Q17351861'}, {'numeric-id': 40552280, 'type': 'wikibase-entityid', 'property': 'P54', 'entity-type': 'item', 'id': 'Q40552280'}, {'id': 'Q392074', 'numeric-id': 392074, 'type': 'wikibase-entityid', 'property': 'P19', 'entity-type': 'item'}, {'entity-type': 'item', 'numeric-id': 40561301, 'type': 'wikibase-entityid', 'property': 'P166', 'id': 'Q40561301'}, {'id': 'Q21511172', 'numeric-id': 21511172, 'entity-type': 'item', 'property': 'P734', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q27', 'property': 'P27', 'numeric-id': 27}), 'title': 'Q6832770'}
{'type': 'item', 'id': 'Q6833215', 'labels': (('en', 'Mass graves in Mount Herzl Military Cemetery'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('commonswiki', 'Category:Mass graves in Mount Herzl Military Cemetery', None), ('hewiki', '\xd7\xa7\xd7\x91\xd7\xa8\xd7\x99 \xd7\x90\xd7\x97\xd7\x99\xd7\x9d \xd7\x91\xd7\x94\xd7\xa8 \xd7\x94\xd7\xa8\xd7\xa6\xd7\x9c', None)), 'claims': ({'type': 'string', 'value': 'Mass graves in Mount Herzl Military Cemetery', 'property': 'P373'}, {'property': 'P31', 'entity-type': 'item', 'id': 'Q39614', 'numeric-id': 39614, 'type': 'wikibase-entityid'}), 'title': 'Q6833215'}
{'type': 'item', 'id': 'Q6833246', 'labels': (('en', 'Michael Olsen'),), 'descriptions': (('en-ca', 'Canadian musician'), ('en-g', 'Canadian musician'), ('en', 'Canadian musician')), 'aliases': (('en', 'Michael Peter Olsen'),), 'sitelinks': (('arzwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83\xd9\x84 \xd8\xa8\xd9\x8a\xd8\xaa\xd8\xb1 \xd8\xa7\xd9\x88\xd9\x84\xd8\xb3\xd9\x86', None), ('commonswiki', 'Category:Michael Peter Olsen', None), ('enwiki', 'Michael Peter Olsen', None), ('arwiki', '\xd9\x85\xd9\x8a\xd8\xae\xd8\xa7\xd8\xa6\xd9\x8a\xd9\x84 \xd8\xa8\xd9\x8a\xd8\xaa\xd8\xb1 \xd8\xa7\xd9\x88\xd9\x84\xd8\xb3\xd9\x86', None), ('ruwiki', '\xd0\x9e\xd0\xbb\xd1\x81\xd0\xb5\xd0\xbd, \xd0\x9c\xd0\xb0\xd0\xb9\xd0\xba\xd0\xb', None)), 'claims': ({'type': 'string', 'value': '1403654', 'property': 'P12098'}, {'numeric-id': 24639, 'property': 'P19', 'entity-type': 'item', 'id': 'Q24639', 'type': 'wikibase-entityid'}, {'property': 'P18', 'type': 'string', 'value': 'Michael Peter Olsen.png'}, {'id': 'Q11366', 'numeric-id': 11366, 'entity-type': 'item', 'property': 'P136', 'type': 'wikibase-entityid'}, {'type': 'string', 'property': 'P7704', 'value': 'agent/base/120139'}, {'type': 'string', 'value': 'Michael Peter Olsen', 'property': 'P373'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q6581097', 'property': 'P21', 'numeric-id': 6581097}, {'property': 'P27', 'entity-type': 'item', 'id': 'Q16', 'numeric-id': 16, 'type': 'wikibase-entityid'}, {'id': 'Q12042571', 'type': 'wikibase-entityid', 'property': 'P734', 'numeric-id': 12042571, 'entity-type': 'item'}, {'property': 'P31', 'entity-type': 'item', 'id': 'Q5', 'type': 'wikibase-entityid', 'numeric-id': 5}, {'entity-type': 'item', 'property': 'P735', 'type': 'wikibase-entityid', 'numeric-id': 4927524, 'id': 'Q4927524'}, {'property': 'P569', 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0, 'precision': 11, 'type': 'time', 'after': 0, 'time': '+1974-06-28T00:00:00Z'}, {'property': 'P2031', 'after': 0, 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0, 'time': '+1995-00-00T00:00:00Z', 'precision': 9, 'timezone': 0}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P106', 'id': 'Q183945', 'numeric-id': 183945}, {'type': 'wikibase-entityid', 'id': 'Q36834', 'property': 'P106', 'entity-type': 'item', 'numeric-id': 36834}), 'title': 'Q6833246'}
{'type': 'item', 'id': 'Q6833252', 'labels': (('en', 'Michael Oppenheim'),), 'descriptions': (('en', 'British naval historian (1853-1927)'),), 'aliases': (('en', 'Michael Morris Oppenheim'), ('en', 'Michael M Oppenheim'), ('en', 'M M Oppenheim'), ('en', 'Michael M. Oppenheim'), ('en', 'M. M. Oppenheim')), 'sitelinks': (('enwiki', 'Michael Oppenheim', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83\xd9\x84 \xd8\xa7\xd9\x88\xd8\xa8\xd9\x86\xd9\x87\xd8\xa7\xd9\x8a\xd9\x85', None)), 'claims': ({'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 201788, 'property': 'P106', 'id': 'Q201788'}, {'entity-type': 'item', 'id': 'Q6581097', 'property': 'P21', 'numeric-id': 6581097, 'type': 'wikibase-entityid'}, {'precision': 11, 'before': 0, 'after': 0, 'property': 'P570', 'timezone': 0, 'time': '+1927-04-27T00:00:00Z', 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'before': 0, 'time': '+1853-06-26T00:00:00Z', 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'type': 'time', 'timezone': 0, 'property': 'P569'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q5', 'numeric-id': 5, 'property': 'P31'}, {'numeric-id': 4927524, 'id': 'Q4927524', 'entity-type': 'item', 'property': 'P735', 'type': 'wikibase-entityid'}), 'title': 'Q6833252'}
{'type': 'item', 'id': 'Q6833593', 'labels': (('en', 'Michael Posner'),), 'descriptions': (('en', 'American human rights lawyer'),), 'aliases': (('en', 'Michael H. Posner'),), 'sitelinks': (('arwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83\xd9\x84 \xd8\xa8\xd9\x88\xd8\xb3\xd9\x86\xd8\xb1 (\xd9\x85\xd8\xad\xd8\xa7\xd9\x85\xd9\x8a)', None), ('zhwiki', '\xe8\xbf\x88\xe5\x85\x8b\xe5\xb0\x94\xc2\xb7\xe6\xb3\xa2\xe6\x96\xaf\xe7\xba\xb3', None), ('enwiki', 'Michael Posner (lawyer)', None), ('commonswiki', 'Category:Michael Posner', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83\xd9\x84 \xd8\xa8\xd9\x88\xd8\xb3\xd9\x86\xd8\xb1', None)), 'claims': ({'property': 'P166', 'numeric-id': 63072513, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q63072513'}, {'id': 'Q114717230', 'property': 'P1344', 'numeric-id': 114717230, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P1344', 'id': 'Q114717231', 'numeric-id': 114717231}, {'entity-type': 'item', 'numeric-id': 114717232, 'property': 'P1344', 'type': 'wikibase-entityid', 'id': 'Q114717232'}, {'property': 'P1344', 'type': 'wikibase-entityid', 'id': 'Q114717233', 'numeric-id': 114717233, 'entity-type': 'item'}, {'property': 'P1344', 'id': 'Q114717234', 'type': 'wikibase-entityid', 'numeric-id': 114717234, 'entity-type': 'item'}, {'numeric-id': 40348, 'entity-type': 'item', 'property': 'P106', 'id': 'Q40348', 'type': 'wikibase-entityid'}, {'property': 'P106', 'id': 'Q1476215', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 1476215}, {'property': 'P106', 'id': 'Q115088092', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 115088092}, {'entity-type': 'item', 'numeric-id': 1149089, 'property': 'P108', 'type': 'wikibase-entityid', 'id': 'Q1149089'}, {'property': 'P108', 'id': 'Q1143289', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 1143289}, {'entity-type': 'item', 'id': 'Q1297', 'type': 'wikibase-entityid', 'numeric-id': 1297, 'property': 'P19'}, {'property': 'P6424', 'type': 'string', 'value': 'NYU Stern School of Business'}, {'value': 'Stern School of Business, New York University', 'property': 'P6424', 'type': 'string'}, {'value': 'Center for Business and Human Rights, Stern School of Business, New York University', 'property': 'P6424', 'type': 'string'}, {'property': 'P373', 'type': 'string', 'value': 'Michael Posner'}, {'entity-type': 'item', 'property': 'P69', 'id': 'Q230492', 'numeric-id': 230492, 'type': 'wikibase-entityid'}, {'numeric-id': 846183, 'id': 'Q846183', 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P69'}, {'id': 'Q5', 'type': 'wikibase-entityid', 'numeric-id': 5, 'property': 'P31', 'entity-type': 'item'}, {'numeric-id': 13382529, 'property': 'P5008', 'entity-type': 'item', 'id': 'Q13382529', 'type': 'wikibase-entityid'}, {'id': 'Q6581097', 'numeric-id': 6581097, 'property': 'P21', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'numeric-id': 21448929, 'entity-type': 'item', 'id': 'Q21448929', 'type': 'wikibase-entityid', 'property': 'P734'}, {'after': 0, 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'precision': 11, 'property': 'P569', 'time': '+1950-11-19T00:00:00Z', 'before': 0}, {'numeric-id': 4927524, 'property': 'P735', 'entity-type': 'item', 'id': 'Q4927524', 'type': 'wikibase-entityid'}, {'property': 'P18', 'type': 'string', 'value': 'Michael Posner at September 28 Press Conference in Geneva.jpg'}, {'numeric-id': 30, 'entity-type': 'item', 'property': 'P27', 'type': 'wikibase-entityid', 'id': 'Q30'}, {'value': '14830', 'property': 'P10660', 'type': 'string'}), 'title': 'Q6833593'}
{'type': 'item', 'id': 'Q6833667', 'labels': (('en', 'Michael Quinlivan'),), 'descriptions': (('en', 'Irish Gaelic football player'),), 'aliases': (), 'sitelinks': (('enwiki', 'Michael Quinlivan', None),), 'claims': ({'property': 'P641', 'type': 'wikibase-entityid', 'id': 'Q204632', 'entity-type': 'item', 'numeric-id': 204632}, {'property': 'P734', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 7272249, 'id': 'Q7272249'}, {'entity-type': 'item', 'id': 'Q40561301', 'numeric-id': 40561301, 'property': 'P166', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q1574185', 'property': 'P69', 'numeric-id': 1574185, 'type': 'wikibase-entityid'}, {'id': 'Q27', 'numeric-id': 27, 'entity-type': 'item', 'property': 'P27', 'type': 'wikibase-entityid'}, {'id': 'Q217057', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P19', 'numeric-id': 217057}, {'id': 'Q40552374', 'property': 'P54', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 40552374}, {'numeric-id': 5, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q5', 'property': 'P31'}, {'numeric-id': 17351861, 'property': 'P106', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q17351861'}, {'precision': 11, 'after': 0, 'type': 'time', 'property': 'P569', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'time': '+1993-02-15T00:00:00Z', 'before': 0}, {'id': 'Q4927524', 'entity-type': 'item', 'numeric-id': 4927524, 'property': 'P735', 'type': 'wikibase-entityid'}, {'property': 'P21', 'id': 'Q6581097', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 6581097}), 'title': 'Q6833667'}
{'type': 'item', 'id': 'Q6833900', 'labels': (('en', 'Michael Roberto Kenyi'),), 'descriptions': (('en', 'South Sudanes politician'),), 'aliases': (), 'sitelinks': (('enwiki', 'Michael Roberto Kenyi', None),), 'claims': ({'timezone': 0, 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'property': 'P569', 'time': '+1961-01-01T00:00:00Z', 'precision': 11, 'before': 0}, {'type': 'wikibase-entityid', 'id': 'Q112686171', 'numeric-id': 112686171, 'entity-type': 'item', 'property': 'P39'}, {'entity-type': 'item', 'id': 'Q112686191', 'property': 'P39', 'numeric-id': 112686191, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 5, 'id': 'Q5', 'property': 'P31'}, {'property': 'P735', 'type': 'wikibase-entityid', 'numeric-id': 4927524, 'id': 'Q4927524', 'entity-type': 'item'}, {'value': 'Q6833900', 'property': 'P10632', 'type': 'string'}, {'property': 'P21', 'id': 'Q6581097', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 6581097}, {'id': 'Q82955', 'numeric-id': 82955, 'type': 'wikibase-entityid', 'property': 'P106', 'entity-type': 'item'}), 'title': 'Q6833900'}
{'type': 'item', 'id': 'Q6834149', 'labels': (('en', 'Suur Pehmej\xc3\xa4rv'),), 'descriptions': (('en', 'lake in Antsla Rural Municipality, Estonia'),), 'aliases': (), 'sitelinks': (('arzwiki', '\xd8\xa8\xd8\xad\xd9\x8a\xd8\xb1\xd9\x87 \xd8\xb3\xd9\x88\xd8\xb1 \xd9\xbe\xd9\x8a\xd9\x87\xd9\x85\xd9\x8a\xda\x86\xd8\xa7\xd8\xb1\xda\xa4', None), ('svwiki', 'Suur Pehmej\xc3\xa4rv', None), ('commonswiki', 'Category:Suur Pehmej\xc3\xa4rv', None), ('cebwiki', 'Suur Pehmej\xc3\xa4rv', None), ('zhwiki', '\xe5\xa4\xa7\xe4\xbd\xa9\xe8\xb5\xab\xe6\xa2\x85\xe6\xb9\x96', None), ('enwiki', 'Suur Pehmej\xc3\xa4rv', None), ('etwiki', 'Suur Pehmej\xc3\xa4rv', None), ('fiu_vrowiki', 'Suur Pehmej\xc3\xa4rv', None), ('fiwiki', 'Suur Pehmej\xc3\xa4rv', None), ('plwiki', 'Suur Pehmej\xc3\xa4rv', None)), 'claims': ({'type': 'string', 'value': 'Suur Pehmej\xc3\xa4rv 2.JPG', 'property': 'P18'}, {'id': 'Q191', 'property': 'P205', 'entity-type': 'item', 'numeric-id': 191, 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'property': 'P17', 'type': 'wikibase-entityid', 'id': 'Q191', 'numeric-id': 191}, {'amount': '+72.3', 'property': 'P2044', 'type': 'quantity', 'unit': 'http://www.wikidata.org/entity/Q11573'}, {'property': 'P2046', 'type': 'quantity', 'unit': 'http://www.wikidata.org/entity/Q35852', 'amount': '+48.2'}, {'id': 'Q44491738', 'property': 'P131', 'numeric-id': 44491738, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P31', 'numeric-id': 23397, 'type': 'wikibase-entityid', 'id': 'Q23397', 'entity-type': 'item'}, {'property': 'P373', 'type': 'string', 'value': 'Suur Pehmej\xc3\xa4rv'}), 'title': 'Q6834149'}
{'type': 'item', 'id': 'Q6834343', 'labels': (('en', 'Michael Shelden'),), 'descriptions': (('en', 'biographer'),), 'aliases': (), 'sitelinks': (('enwiki', 'Michael Shelden', None),), 'claims': ({'property': 'P106', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q864380', 'numeric-id': 864380}, {'id': 'Q5', 'numeric-id': 5, 'entity-type': 'item', 'property': 'P31', 'type': 'wikibase-entityid'}, {'property': 'P11249', 'value': '14044452', 'type': 'string'}, {'numeric-id': 30, 'type': 'wikibase-entityid', 'id': 'Q30', 'property': 'P27', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'id': 'Q110952919', 'property': 'P166', 'entity-type': 'item', 'numeric-id': 110952919}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 4927524, 'property': 'P735', 'id': 'Q4927524'}, {'numeric-id': 6581097, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q6581097', 'property': 'P21'}, {'id': 'Q6608367', 'entity-type': 'item', 'numeric-id': 6608367, 'type': 'wikibase-entityid', 'property': 'P69'}, {'precision': 9, 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'property': 'P569', 'before': 0, 'time': '+1951-01-01T00:00:00Z', 'after': 0}, {'property': 'P734', 'id': 'Q37478165', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 37478165}, {'entity-type': 'item', 'id': 'Q1860', 'numeric-id': 1860, 'property': 'P1412', 'type': 'wikibase-entityid'}), 'title': 'Q6834343'}
{'type': 'item', 'id': 'Q6834456', 'labels': (('en', 'Michael Smerconish'),), 'descriptions': (('en', 'American journalist'),), 'aliases': (), 'sitelinks': (('arzwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83\xd9\x84 \xd8\xb3\xd9\x85\xd9\x8a\xd8\xb1\xd9\x83\xd9\x88\xd9\x86\xd9\x8a\xd8\xb4', None), ('simplewiki', 'Michael Smerconish', None), ('nowiki', 'Michael Smerconish', None), ('enwikiquote', 'Michael Smerconish', None), ('enwiki', 'Michael Smerconish', None), ('commonswiki', 'Category:Michael Smerconish', None)), 'claims': ({'property': 'P10660', 'type': 'string', 'value': '85153'}, {'amount': '+214937', 'property': 'P8687', 'unit': '1', 'type': 'quantity'}, {'amount': '+197548', 'type': 'quantity', 'property': 'P8687', 'unit': '1'}, {'unit': '1', 'property': 'P8687', 'type': 'quantity', 'upperBound': '+10099', 'lowerBound': '+10000', 'amount': '+10000'}, {'unit': '1', 'property': 'P8687', 'type': 'quantity', 'amount': '+239313'}, {'amount': '+13800', 'type': 'quantity', 'unit': '1', 'property': 'P8687', 'upperBound': '+13899', 'lowerBound': '+13800'}, {'amount': '+239040', 'type': 'quantity', 'unit': '1', 'property': 'P8687'}, {'amount': '+24400', 'upperBound': '+24499', 'lowerBound': '+24400', 'type': 'quantity', 'unit': '1', 'property': 'P8687'}, {'amount': '+27400', 'lowerBound': '+27400', 'type': 'quantity', 'unit': '1', 'upperBound': '+27499', 'property': 'P8687'}, {'property': 'P8687', 'upperBound': '+33199', 'type': 'quantity', 'lowerBound': '+33100', 'unit': '1', 'amount': '+33100'}, {'property': 'P2002', 'value': 'smerconish', 'type': 'string'}, {'id': 'Q378527', 'numeric-id': 378527, 'entity-type': 'item', 'property': 'P551', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q100897921', 'property': 'P734', 'numeric-id': 100897921, 'type': 'wikibase-entityid'}, {'numeric-id': 622137, 'id': 'Q622137', 'property': 'P69', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'numeric-id': 7896088, 'property': 'P69', 'type': 'wikibase-entityid', 'id': 'Q7896088', 'entity-type': 'item'}, {'numeric-id': 5060473, 'property': 'P69', 'id': 'Q5060473', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'type': 'string', 'value': 'smerconish', 'property': 'P2013'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q30', 'numeric-id': 30, 'property': 'P27'}, {'property': 'P18', 'type': 'string', 'value': 'Michael Smerconish signing bomb.JPG'}, {'type': 'string', 'value': 'Michael Smerconish speaks at the first New Way California event in Los Angeles (40066626055) (cropped).jpg', 'property': 'P18'}, {'entity-type': 'item', 'property': 'P106', 'type': 'wikibase-entityid', 'id': 'Q2722764', 'numeric-id': 2722764}, {'type': 'wikibase-entityid', 'property': 'P106', 'id': 'Q1930187', 'entity-type': 'item', 'numeric-id': 1930187}, {'type': 'wikibase-entityid', 'id': 'Q40348', 'property': 'P106', 'numeric-id': 40348, 'entity-type': 'item'}, {'id': 'Q36180', 'type': 'wikibase-entityid', 'numeric-id': 36180, 'property': 'P106', 'entity-type': 'item'}, {'value': '955797', 'property': 'P12098', 'type': 'string'}, {'type': 'string', 'property': 'P373', 'value': 'Michael Smerconish'}, {'type': 'wikibase-entityid', 'property': 'P31', 'id': 'Q5', 'entity-type': 'item', 'numeric-id': 5}, {'numeric-id': 4927524, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q4927524', 'property': 'P735'}, {'numeric-id': 1010232, 'entity-type': 'item', 'property': 'P19', 'type': 'wikibase-entityid', 'id': 'Q1010232'}, {'type': 'string', 'property': 'P2003', 'value': 'smerconish'}, {'precision': 11, 'after': 0, 'type': 'time', 'time': '+1962-03-15T00:00:00Z', 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'timezone': 0}, {'type': 'wikibase-entityid', 'id': 'Q6581097', 'numeric-id': 6581097, 'property': 'P21', 'entity-type': 'item'}), 'title': 'Q6834456'}
{'type': 'item', 'id': 'Q6834608', 'labels': (('en', 'Michael Stephens'),), 'descriptions': (('en', 'New Zealand cricketer'),), 'aliases': (('en', 'Michael James Stephens'),), 'sitelinks': (('enwiki', 'Michael Stephens (cricketer)', None), ('arwiki', '\xd9\x85\xd9\x8a\xd8\xae\xd8\xa7\xd8\xa6\xd9\x8a\xd9\x84 \xd8\xb3\xd8\xaa\xd9\x8a\xd9\x81\xd9\x86\xd8\xb2', None)), 'claims': ({'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 12299841, 'property': 'P106', 'id': 'Q12299841'}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'time': '+1967-11-01T00:00:00Z', 'timezone': 0, 'after': 0, 'before': 0, 'type': 'time', 'property': 'P569'}, {'numeric-id': 5375, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P641', 'id': 'Q5375'}, {'property': 'P21', 'id': 'Q6581097', 'entity-type': 'item', 'numeric-id': 6581097, 'type': 'wikibase-entityid'}, {'property': 'P27', 'entity-type': 'item', 'id': 'Q664', 'numeric-id': 664, 'type': 'wikibase-entityid'}, {'numeric-id': 5, 'type': 'wikibase-entityid', 'id': 'Q5', 'entity-type': 'item', 'property': 'P31'}, {'id': 'Q4927524', 'entity-type': 'item', 'numeric-id': 4927524, 'property': 'P735', 'type': 'wikibase-entityid'}, {'numeric-id': 16473357, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P734', 'id': 'Q16473357'}), 'title': 'Q6834608'}
{'type': 'item', 'id': 'Q6834645', 'labels': (('en', 'Michael Stone'),), 'descriptions': (('en', 'Australian army officer'),), 'aliases': (), 'sitelinks': (('enwiki', 'Michael Stone (Australian Army officer)', None),), 'claims': ({'property': 'P734', 'numeric-id': 13219396, 'id': 'Q13219396', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q6581097', 'numeric-id': 6581097, 'property': 'P21', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q2171074', 'numeric-id': 2171074, 'property': 'P69', 'type': 'wikibase-entityid'}, {'type': 'string', 'property': 'P10302', 'value': 'michael-stone-1'}, {'property': 'P735', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q4927524', 'numeric-id': 4927524}, {'type': 'wikibase-entityid', 'property': 'P31', 'numeric-id': 5, 'entity-type': 'item', 'id': 'Q5'}), 'title': 'Q6834645'}
{'type': 'item', 'id': 'Q6834717', 'labels': (('en', 'Michael Swanton'),), 'descriptions': (('en', 'professor of medieval studies'),), 'aliases': (('en', 'Michael James Swanton'), ('en', 'M. J. Swanton')), 'sitelinks': (('frwiki', 'Michael Swanton', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83\xd9\x84 \xd8\xb3\xd9\x88\xd8\xa7\xd9\x86\xd8\xaa\xd9\x88\xd9\x86', None), ('nowiki', 'Michael Swanton', None), ('enwiki', 'Michael Swanton', None)), 'claims': ({'id': 'Q5', 'numeric-id': 5, 'property': 'P31', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'value': 'Professor Michael Swanton as student chairman in 1963.jpg', 'property': 'P18', 'type': 'string'}, {'property': 'P106', 'numeric-id': 14467526, 'type': 'wikibase-entityid', 'id': 'Q14467526', 'entity-type': 'item'}, {'numeric-id': 201788, 'property': 'P106', 'entity-type': 'item', 'id': 'Q201788', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'property': 'P106', 'entity-type': 'item', 'id': 'Q333634', 'numeric-id': 333634}, {'type': 'wikibase-entityid', 'id': 'Q145', 'property': 'P27', 'entity-type': 'item', 'numeric-id': 145}, {'type': 'string', 'property': 'P11249', 'value': '14488425'}, {'id': 'Q26196499', 'type': 'wikibase-entityid', 'numeric-id': 26196499, 'property': 'P166', 'entity-type': 'item'}, {'numeric-id': 16884099, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q16884099', 'property': 'P734'}, {'entity-type': 'item', 'property': 'P463', 'numeric-id': 5417893, 'type': 'wikibase-entityid', 'id': 'Q5417893'}, {'numeric-id': 4927524, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q4927524', 'property': 'P735'}, {'property': 'P21', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q6581097', 'numeric-id': 6581097}, {'property': 'P19', 'id': 'Q23306', 'entity-type': 'item', 'numeric-id': 23306, 'type': 'wikibase-entityid'}, {'property': 'P69', 'id': 'Q458393', 'numeric-id': 458393, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'numeric-id': 1422458, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P69', 'id': 'Q1422458'}, {'type': 'wikibase-entityid', 'numeric-id': 8022757, 'property': 'P69', 'id': 'Q8022757', 'entity-type': 'item'}, {'type': 'string', 'value': '1140563741789372288', 'property': 'P11496'}, {'time': '+1939-01-01T00:00:00Z', 'timezone': 0, 'after': 0, 'type': 'time', 'property': 'P569', 'precision': 9, 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'property': 'P108', 'type': 'wikibase-entityid', 'id': 'Q230899', 'numeric-id': 230899, 'entity-type': 'item'}, {'numeric-id': 1414861, 'property': 'P108', 'type': 'wikibase-entityid', 'id': 'Q1414861', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'property': 'P1412', 'id': 'Q1860', 'numeric-id': 1860, 'entity-type': 'item'}), 'title': 'Q6834717'}
{'type': 'item', 'id': 'Q6834764', 'labels': (('en', 'Michael T. McGuire'),), 'descriptions': (('en', 'American psychiatrist'),), 'aliases': (), 'sitelinks': (('arzwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83\xd9\x84 \xd8\xaa\xd9\x89 \xd9\x85\xd8\xa7\xd9\x83\xd8\xac\xd9\x88\xd8\xa7\xd9\x8a\xd8\xb1', None), ('enwiki', 'Michael T. McGuire', None), ('fawiki', '\xd9\x85\xd8\xa7\xdb\x8c\xda\xa9\xd9\x84 \xd8\xaa\xdb\x8c. \xd9\x85\xda\xa9 \xda\xaf\xd9\x88\xd8\xa7\xdb\x8c\xd8\xb1', None)), 'claims': ({'after': 0, 'type': 'time', 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 9, 'time': '+2016-00-00T00:00:00Z', 'property': 'P570', 'timezone': 0}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q1860', 'numeric-id': 1860, 'property': 'P1412'}, {'type': 'wikibase-entityid', 'property': 'P27', 'entity-type': 'item', 'numeric-id': 30, 'id': 'Q30'}, {'entity-type': 'item', 'id': 'Q4275617', 'numeric-id': 4275617, 'property': 'P734', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q30', 'numeric-id': 30, 'property': 'P19', 'type': 'wikibase-entityid'}, {'value': '14523494', 'property': 'P11249', 'type': 'string'}, {'entity-type': 'item', 'id': 'Q6581097', 'numeric-id': 6581097, 'property': 'P21', 'type': 'wikibase-entityid'}, {'after': 0, 'type': 'time', 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1929-01-01T00:00:00Z', 'precision': 9, 'property': 'P569', 'timezone': 0}, {'numeric-id': 4927524, 'property': 'P735', 'id': 'Q4927524', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q211346', 'property': 'P106', 'numeric-id': 211346, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'value': '495056685', 'property': 'P10553', 'type': 'string'}, {'id': 'Q49121', 'entity-type': 'item', 'numeric-id': 49121, 'property': 'P69', 'type': 'wikibase-entityid'}, {'property': 'P31', 'numeric-id': 5, 'id': 'Q5', 'entity-type': 'item', 'type': 'wikibase-entityid'}), 'title': 'Q6834764'}
{'type': 'item', 'id': 'Q6835011', 'labels': (('en', 'Michael Tyrell'),), 'descriptions': (('en', 'Poet, editor, actor, teacher'),), 'aliases': (), 'sitelinks': (), 'claims': ({'value': '765948', 'property': 'P12098', 'type': 'string'}, {'type': 'wikibase-entityid', 'numeric-id': 1860, 'entity-type': 'item', 'property': 'P103', 'id': 'Q1860'}, {'type': 'wikibase-entityid', 'id': 'Q797078', 'numeric-id': 797078, 'entity-type': 'item', 'property': 'P69'}, {'id': 'Q6581097', 'numeric-id': 6581097, 'type': 'wikibase-entityid', 'property': 'P21', 'entity-type': 'item'}, {'property': 'P106', 'type': 'wikibase-entityid', 'id': 'Q33999', 'entity-type': 'item', 'numeric-id': 33999}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q37226', 'property': 'P106', 'numeric-id': 37226}, {'type': 'wikibase-entityid', 'numeric-id': 5, 'entity-type': 'item', 'property': 'P31', 'id': 'Q5'}, {'entity-type': 'item', 'id': 'Q1860', 'type': 'wikibase-entityid', 'property': 'P1412', 'numeric-id': 1860}, {'numeric-id': 30, 'id': 'Q30', 'entity-type': 'item', 'property': 'P27', 'type': 'wikibase-entityid'}, {'numeric-id': 4927524, 'property': 'P735', 'id': 'Q4927524', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 1860, 'id': 'Q1860', 'property': 'P6886'}), 'title': 'Q6835011'}
{'type': 'item', 'id': 'Q6835065', 'labels': (('en', 'Michael Varhol'),), 'descriptions': (('en', 'American screenwriter'),), 'aliases': (), 'sitelinks': (('enwiki', 'Michael Varhol', None),), 'claims': ({'entity-type': 'item', 'property': 'P27', 'type': 'wikibase-entityid', 'id': 'Q30', 'numeric-id': 30}, {'id': 'Q6581097', 'property': 'P21', 'type': 'wikibase-entityid', 'numeric-id': 6581097, 'entity-type': 'item'}, {'id': 'Q28389', 'property': 'P106', 'numeric-id': 28389, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'id': 'Q4927524', 'entity-type': 'item', 'property': 'P735', 'numeric-id': 4927524}, {'value': 'agent/base/106637', 'type': 'string', 'property': 'P7704'}, {'property': 'P12098', 'type': 'string', 'value': '431384'}, {'numeric-id': 5, 'property': 'P31', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q5'}, {'property': 'P10302', 'type': 'string', 'value': 'maykl-varhol'}, {'type': 'wikibase-entityid', 'numeric-id': 8038459, 'property': 'P463', 'id': 'Q8038459', 'entity-type': 'item'}, {'entity-type': 'item', 'property': 'P7084', 'numeric-id': 8722878, 'id': 'Q8722878', 'type': 'wikibase-entityid'}), 'title': 'Q6835065'}
{'type': 'item', 'id': 'Q6835148', 'labels': (('en', 'Michael W. Perry'),), 'descriptions': (('en', 'American radio personality'),), 'aliases': (), 'sitelinks': (('enwiki', 'Michael W. Perry', None),), 'claims': ({'property': 'P12098', 'value': '355136', 'type': 'string'}, {'entity-type': 'item', 'id': 'Q5', 'numeric-id': 5, 'property': 'P31', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 6581097, 'id': 'Q6581097', 'property': 'P21', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q30', 'entity-type': 'item', 'numeric-id': 30, 'property': 'P27'}, {'numeric-id': 2722764, 'id': 'Q2722764', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P106'}, {'timezone': 0, 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'time': '+1901-00-00T00:00:00Z', 'type': 'time', 'precision': 7, 'before': 0}, {'type': 'string', 'value': 'michael-w-perry', 'property': 'P10302'}, {'id': 'Q2793334', 'entity-type': 'item', 'numeric-id': 2793334, 'property': 'P734', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'property': 'P735', 'type': 'wikibase-entityid', 'numeric-id': 4927524, 'id': 'Q4927524'}), 'title': 'Q6835148'}
{'type': 'item', 'id': 'Q6835259', 'labels': (('en', 'Michael Weiner'), ('en-ca', 'Michael Weiner'), ('en-g', 'Michael Weiner')), 'descriptions': (('en', 'historian of Japan'),), 'aliases': (), 'sitelinks': (('arzwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83\xd9\x84 \xd9\x88\xd9\x8a\xd9\x86\xd8\xb1 (\xd9\x85\xd8\xa4\xd8\xb1\xd8\xae \xd9\x85\xd9\x86 \xd8\xa7\xd9\x85\xd8\xb1\xd9\x8a\xd9\x83\xd8\xa7)', None), ('enwiki', 'Michael Weiner (professor)', None)), 'claims': ({'id': 'Q21494134', 'numeric-id': 21494134, 'type': 'wikibase-entityid', 'property': 'P734', 'entity-type': 'item'}, {'numeric-id': 823917, 'entity-type': 'item', 'property': 'P69', 'id': 'Q823917', 'type': 'wikibase-entityid'}, {'property': 'P69', 'numeric-id': 1153094, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q1153094'}, {'numeric-id': 823917, 'id': 'Q823917', 'type': 'wikibase-entityid', 'property': 'P108', 'entity-type': 'item'}, {'id': 'Q11285095', 'numeric-id': 11285095, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P108'}, {'numeric-id': 913861, 'property': 'P108', 'entity-type': 'item', 'id': 'Q913861', 'type': 'wikibase-entityid'}, {'id': 'Q4927524', 'property': 'P735', 'type': 'wikibase-entityid', 'numeric-id': 4927524, 'entity-type': 'item'}, {'property': 'P1412', 'numeric-id': 1860, 'type': 'wikibase-entityid', 'id': 'Q1860', 'entity-type': 'item'}, {'property': 'P937', 'numeric-id': 42448, 'type': 'wikibase-entityid', 'id': 'Q42448', 'entity-type': 'item'}, {'precision': 11, 'after': 0, 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'timezone': 0, 'before': 0, 'time': '+1949-06-17T00:00:00Z'}, {'entity-type': 'item', 'property': 'P21', 'type': 'wikibase-entityid', 'numeric-id': 6581097, 'id': 'Q6581097'}, {'numeric-id': 30, 'property': 'P27', 'type': 'wikibase-entityid', 'id': 'Q30', 'entity-type': 'item'}, {'numeric-id': 5, 'id': 'Q5', 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P31'}, {'id': 'Q201788', 'property': 'P106', 'numeric-id': 201788, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'numeric-id': 15991218, 'property': 'P106', 'entity-type': 'item', 'id': 'Q15991218', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q1622272', 'property': 'P106', 'entity-type': 'item', 'numeric-id': 1622272}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 875592, 'id': 'Q875592', 'property': 'P101'}, {'entity-type': 'item', 'id': 'Q309', 'numeric-id': 309, 'property': 'P101', 'type': 'wikibase-entityid'}, {'id': 'Q166542', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 166542, 'property': 'P101'}), 'title': 'Q6835259'}
{'type': 'item', 'id': 'Q6835312', 'labels': (('en-g', 'Michael Wherley'), ('en-ca', 'Michael Wherley'), ('en', 'Michael Wherley')), 'descriptions': (('en', 'American rower'),), 'aliases': (), 'sitelinks': (('dewiki', 'Michael Wherley', None), ('zhwiki', '\xe8\xbf\x88\xe5\x85\x8b\xe5\xb0\x94\xc2\xb7\xe6\x83\xa0\xe5\x88\xa9', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83\xd9\x84 \xd9\x88\xd8\xa7\xd9\x8a\xd8\xb1\xd9\x84\xd9\x89', None), ('eswiki', 'Michael Wherley', None), ('enwiki', 'Michael Wherley', None)), 'claims': ({'entity-type': 'item', 'id': 'Q30', 'property': 'P27', 'numeric-id': 30, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'numeric-id': 4927524, 'id': 'Q4927524', 'property': 'P735', 'entity-type': 'item'}, {'id': 'Q13382576', 'property': 'P106', 'numeric-id': 13382576, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'entity-type': 'item', 'numeric-id': 7569090, 'property': 'P19', 'id': 'Q7569090', 'type': 'wikibase-entityid'}, {'numeric-id': 159354, 'type': 'wikibase-entityid', 'id': 'Q159354', 'property': 'P641', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'numeric-id': 7371998, 'id': 'Q7371998', 'entity-type': 'item', 'property': 'P1344'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q3655566', 'numeric-id': 3655566, 'property': 'P1344'}, {'numeric-id': 37220391, 'entity-type': 'item', 'id': 'Q37220391', 'property': 'P734', 'type': 'wikibase-entityid'}, {'numeric-id': 6581097, 'entity-type': 'item', 'id': 'Q6581097', 'type': 'wikibase-entityid', 'property': 'P21'}, {'property': 'P569', 'precision': 11, 'timezone': 0, 'time': '+1972-03-15T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'after': 0, 'before': 0}, {'amount': '+200', 'unit': 'http://www.wikidata.org/entity/Q174728', 'type': 'quantity', 'property': 'P2048'}, {'property': 'P2067', 'type': 'quantity', 'unit': 'http://www.wikidata.org/entity/Q11570', 'amount': '+97'}, {'numeric-id': 5, 'entity-type': 'item', 'id': 'Q5', 'property': 'P31', 'type': 'wikibase-entityid'}), 'title': 'Q6835312'}
{'type': 'item', 'id': 'Q6835343', 'labels': (('en', 'Michael Wiley'),), 'descriptions': (('en', 'American writer'),), 'aliases': (), 'sitelinks': (('enwiki', 'Michael Wiley (author)', None),), 'claims': ({'entity-type': 'item', 'id': 'Q6581097', 'property': 'P21', 'type': 'wikibase-entityid', 'numeric-id': 6581097}, {'type': 'wikibase-entityid', 'id': 'Q5', 'property': 'P31', 'entity-type': 'item', 'numeric-id': 5}, {'id': 'Q4927524', 'numeric-id': 4927524, 'entity-type': 'item', 'property': 'P735', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q6625963', 'numeric-id': 6625963, 'type': 'wikibase-entityid', 'property': 'P106'}, {'numeric-id': 30, 'type': 'wikibase-entityid', 'id': 'Q30', 'property': 'P27', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 24156137, 'id': 'Q24156137', 'property': 'P734'}), 'title': 'Q6835343'}
{'type': 'item', 'id': 'Q6835407', 'labels': (('en', 'Michael Wisher'), ('en-g', 'Michael Wisher'), ('en-ca', 'Michael Wisher')), 'descriptions': (('en-g', 'British actor'), ('en-ca', 'British actor'), ('en', 'British actor (1935-1995)')), 'aliases': (), 'sitelinks': (('itwiki', 'Michael Wisher', None), ('enwiki', 'Michael Wisher', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83\xd9\x84 \xd9\x88\xd9\x8a\xd8\xb4\xd9\x8a\xd8\xb1', None)), 'claims': ({'after': 0, 'before': 0, 'type': 'time', 'property': 'P570', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'precision': 11, 'time': '+1995-07-21T00:00:00Z'}, {'id': 'Q145', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 145, 'property': 'P27'}, {'type': 'wikibase-entityid', 'property': 'P106', 'entity-type': 'item', 'id': 'Q33999', 'numeric-id': 33999}, {'entity-type': 'item', 'id': 'Q10798782', 'property': 'P106', 'numeric-id': 10798782, 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q1860', 'numeric-id': 1860, 'property': 'P1412', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'property': 'P735', 'type': 'wikibase-entityid', 'numeric-id': 4927524, 'id': 'Q4927524'}, {'property': 'P31', 'id': 'Q5', 'numeric-id': 5, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P10302', 'value': 'michael-wisher', 'type': 'string'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P19', 'numeric-id': 84, 'id': 'Q84'}, {'property': 'P569', 'timezone': 0, 'after': 0, 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0, 'time': '+1935-05-19T00:00:00Z', 'precision': 11}, {'property': 'P20', 'numeric-id': 931180, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q931180'}, {'id': 'Q6581097', 'entity-type': 'item', 'numeric-id': 6581097, 'property': 'P21', 'type': 'wikibase-entityid'}, {'type': 'string', 'value': '447953', 'property': 'P12098'}), 'title': 'Q6835407'}
{'type': 'item', 'id': 'Q6835451', 'labels': (('en', 'Michael Worsnip'),), 'descriptions': (('en', 'South African theologian'),), 'aliases': (), 'sitelinks': (('enwiki', 'Michael Worsnip', None),), 'claims': ({'type': 'wikibase-entityid', 'id': 'Q5', 'entity-type': 'item', 'numeric-id': 5, 'property': 'P31'}, {'numeric-id': 6423963, 'type': 'wikibase-entityid', 'property': 'P140', 'entity-type': 'item', 'id': 'Q6423963'}, {'id': 'Q6581097', 'property': 'P21', 'type': 'wikibase-entityid', 'numeric-id': 6581097, 'entity-type': 'item'}, {'property': 'P1412', 'id': 'Q1860', 'numeric-id': 1860, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'precision': 7, 'type': 'time', 'property': 'P569', 'after': 0, 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1950-00-00T00:00:00Z', 'before': 0}, {'id': 'Q4927524', 'numeric-id': 4927524, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P735'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q258', 'property': 'P27', 'numeric-id': 258}, {'id': 'Q36180', 'property': 'P106', 'numeric-id': 36180, 'entity-type': 'item', 'type': 'wikibase-entityid'}), 'title': 'Q6835451'}
{'type': 'item', 'id': 'Q6835683', 'labels': (('en', 'Michaelston-le-Pit'),), 'descriptions': (('en', 'village in Vale of Glamorgan, Wales'),), 'aliases': (('en', 'Llanfihangel-y-pwll'),), 'sitelinks': (('cywiki', 'Llanfihangel-y-pwll', None), ('euwiki', 'Michaelston-le-Pit', None), ('commonswiki', 'Category:Michaelston-le-Pit', None), ('enwiki', 'Michaelston-le-Pit', None)), 'claims': ({'numeric-id': 24342116, 'entity-type': 'item', 'id': 'Q24342116', 'type': 'wikibase-entityid', 'property': 'P131'}, {'entity-type': 'item', 'property': 'P31', 'numeric-id': 532, 'type': 'wikibase-entityid', 'id': 'Q532'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q145', 'numeric-id': 145, 'property': 'P17'}, {'property': 'P6802', 'type': 'string', 'value': 'Michelston-le-Pit Village Green, Vale of Glamorgan - geograph.org.uk - 275814.jpg'}, {'value': 'Church of St Michael & All Angels, Michaelston-le-Pit.jpg', 'type': 'string', 'property': 'P18'}, {'language': 'en', 'type': 'monolingualtext', 'text': 'Michaelston-le-Pit', 'property': 'P1448'}, {'property': 'P1448', 'text': 'Llanfihangel-y-pwll', 'language': 'cy', 'type': 'monolingualtext'}, {'value': 'Michaelston-le-Pit', 'property': 'P373', 'type': 'string'}, {'type': 'wikibase-entityid', 'numeric-id': 870815, 'property': 'P7959', 'id': 'Q870815', 'entity-type': 'item'}), 'title': 'Q6835683'}
{'type': 'item', 'id': 'Q6835875', 'labels': (('en', 'Michalczowa'),), 'descriptions': (('en', 'village in Lesser Poland, Poland'),), 'aliases': (), 'sitelinks': (('cewiki', '\xd0\x9c\xd0\xb8\xd1\x85\xd0\xb0\xd0\xbb\xd1\x8c\xd1\x87\xd0\xbe\xd0\xb2\xd0\xb0', None), ('ttwiki', '\xd0\x9c\xd0\xb8\xd1\x85\xd0\xb0\xd0\xbb\xd1\x8c\xd1\x87\xd0\xbe\xd0\xb2\xd0\xb0', None), ('frwiki', 'Michalczowa', None), ('zh_min_nanwiki', 'Michalczowa', None), ('plwiki', 'Michalczowa', None), ('ukwiki', '\xd0\x9c\xd1\x96\xd1\x85\xd0\xb0\xd0\xbb\xd1\x8c\xd1\x87\xd0\xbe\xd0\xb2\xd0\xb0', None), ('enwiki', 'Michalczowa', None)), 'claims': ({'numeric-id': 3558970, 'type': 'wikibase-entityid', 'id': 'Q3558970', 'entity-type': 'item', 'property': 'P31'}, {'type': 'quantity', 'amount': '+257', 'property': 'P1539', 'unit': '1'}, {'id': 'Q2460554', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 2460554, 'property': 'P131'}, {'type': 'quantity', 'unit': '1', 'amount': '+270', 'property': 'P1540'}, {'text': 'Michalczowa', 'language': 'pl', 'property': 'P1448', 'type': 'monolingualtext'}, {'amount': '+527', 'property': 'P1082', 'type': 'quantity', 'unit': '1'}, {'type': 'monolingualtext', 'language': 'pl', 'text': 'Michalczowa', 'property': 'P1705'}, {'numeric-id': 36, 'property': 'P17', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q36'}, {'numeric-id': 6655, 'property': 'P421', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q6655'}, {'numeric-id': 6723, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P421', 'id': 'Q6723'}), 'title': 'Q6835875'}
{'type': 'item', 'id': 'Q6835876', 'labels': (('en', 'Michale Spicer'),), 'descriptions': (('en', 'American football player'),), 'aliases': (), 'sitelinks': (('enwiki', 'Michale Spicer', None),), 'claims': ({'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 19204627, 'property': 'P106', 'id': 'Q19204627'}, {'property': 'P2002', 'type': 'string', 'value': 'spiceone97'}, {'type': 'wikibase-entityid', 'numeric-id': 6581097, 'entity-type': 'item', 'property': 'P21', 'id': 'Q6581097'}, {'type': 'wikibase-entityid', 'id': 'Q30', 'numeric-id': 30, 'entity-type': 'item', 'property': 'P27'}, {'type': 'quantity', 'unit': 'http://www.wikidata.org/entity/Q100995', 'property': 'P2067', 'amount': '+275'}, {'numeric-id': 16562, 'entity-type': 'item', 'property': 'P19', 'type': 'wikibase-entityid', 'id': 'Q16562'}, {'property': 'P641', 'numeric-id': 41323, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q41323'}, {'property': 'P2048', 'amount': '+73', 'type': 'quantity', 'unit': 'http://www.wikidata.org/entity/Q218593'}, {'after': 0, 'before': 0, 'timezone': 0, 'time': '+1982-06-30T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'precision': 11, 'property': 'P569'}, {'numeric-id': 7570622, 'type': 'wikibase-entityid', 'id': 'Q7570622', 'property': 'P69', 'entity-type': 'item'}, {'id': 'Q5', 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 5}, {'property': 'P734', 'entity-type': 'item', 'id': 'Q16883676', 'numeric-id': 16883676, 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q221626', 'numeric-id': 221626, 'property': 'P54'}, {'entity-type': 'item', 'id': 'Q903354', 'property': 'P413', 'numeric-id': 903354, 'type': 'wikibase-entityid'}), 'title': 'Q6835876'}
{'type': 'item', 'id': 'Q6836159', 'labels': (('en', 'wife of younger paternal uncle'),), 'descriptions': (('en', 'wife of younger brother of father'),), 'aliases': (('en', "wife of father's younger brother"),), 'sitelinks': (('sdwiki', '\xda\x86\xd8\xa7\xda\x86\xd9\x8a', None), ('urwiki', '\xda\x86\xda\x86\xdb\x8c', None), ('pswiki', '\xd8\xaa\xd8\xb1\xdb\x90\xd9\x86\xd8\xaf\xd8\xa7\xd8\xb1', None)), 'claims': ({'entity-type': 'item', 'id': 'Q954007', 'numeric-id': 954007, 'property': 'P31', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 188830, 'id': 'Q188830', 'property': 'P279', 'type': 'wikibase-entityid'}, {'id': 'Q9347053', 'property': 'P279', 'type': 'wikibase-entityid', 'numeric-id': 9347053, 'entity-type': 'item'}, {'id': 'Q6581072', 'numeric-id': 6581072, 'property': 'P1552', 'entity-type': 'item', 'type': 'wikibase-entityid'}), 'title': 'Q6836159'}
{'type': 'item', 'id': 'Q6836193', 'labels': (('en', 'Micha\xc5\x82\xc3\xb3wka, Gr\xc3\xb3jec County'),), 'descriptions': (('en', 'village in Masovian, Poland'),), 'aliases': (), 'sitelinks': (('ttwiki', '\xd0\x9c\xd0\xb8\xd1\x85\xd0\xb0\xd0\xbb\xd1\x83\xd0\xb2\xd0\xba\xd0\xb0 (\xd0\x93\xd1\x80\xd1\x83\xd0\xb5\xd1\x86\xd0\xba\xd0\xb8\xd0\xb9 \xd0\xbf\xd0\xbe\xd0\xb2\xd1\x8f\xd1\x82\xd1\x8b)', None), ('cewiki', '\xd0\x9c\xd0\xb8\xd1\x85\xd0\xb0\xd0\xbb\xd1\x83\xd0\xb2\xd0\xba\xd0\xb0 (\xd0\x93\xd1\x80\xd1\x83\xd0\xb5\xd1\x86\xd0\xba\xd0\xb0\xd0\xbd \xd0\xbf\xd0\xbe\xd0\xb2\xd0\xb5\xd1\x82)', None), ('frwiki', 'Micha\xc5\x82\xc3\xb3wka (Gr\xc3\xb3jec)', None), ('enwiki', 'Micha\xc5\x82\xc3\xb3wka, Gr\xc3\xb3jec County', None), ('zh_min_nanwiki', 'Micha\xc5\x82\xc3\xb3wka (Gr\xc3\xb3jec K\xc5\xabn)', None), ('ukwiki', '\xd0\x9c\xd1\x96\xd1\x85\xd0\xb0\xd0\xbb\xd1\x83\xd0\xb2\xd0\xba\xd0\xb0 (\xd0\x93\xd1\x80\xd1\x83\xd1\x94\xd1\x86\xd1\x8c\xd0\xba\xd0\xb8\xd0\xb9 \xd0\xbf\xd0\xbe\xd0\xb2\xd1\x96\xd1\x82)', None), ('plwiki', 'Micha\xc5\x82\xc3\xb3wka (powiat gr\xc3\xb3jecki)', None)), 'claims': ({'entity-type': 'item', 'id': 'Q6655', 'numeric-id': 6655, 'type': 'wikibase-entityid', 'property': 'P421'}, {'id': 'Q6723', 'type': 'wikibase-entityid', 'property': 'P421', 'entity-type': 'item', 'numeric-id': 6723}, {'type': 'wikibase-entityid', 'id': 'Q2326547', 'property': 'P131', 'entity-type': 'item', 'numeric-id': 2326547}, {'property': 'P1540', 'unit': '1', 'type': 'quantity', 'amount': '+19'}, {'amount': '+40', 'property': 'P1082', 'unit': '1', 'type': 'quantity'}, {'entity-type': 'item', 'property': 'P31', 'id': 'Q3558970', 'numeric-id': 3558970, 'type': 'wikibase-entityid'}, {'unit': '1', 'amount': '+21', 'property': 'P1539', 'type': 'quantity'}, {'id': 'Q36', 'entity-type': 'item', 'property': 'P17', 'type': 'wikibase-entityid', 'numeric-id': 36}), 'title': 'Q6836193'}
{'type': 'item', 'id': 'Q6836790', 'labels': (('en', 'Michele Matheson'),), 'descriptions': (('en', 'American actress and writer'),), 'aliases': (), 'sitelinks': (('enwiki', 'Michele Matheson', None), ('arwiki', '\xd9\x85\xd9\x8a\xd8\xb4\xd9\x8a\xd9\x84 \xd9\x85\xd8\xa7\xd8\xab\xd9\x8a\xd8\xb3\xd9\x88\xd9\x86', None)), 'claims': ({'entity-type': 'item', 'id': 'Q3020678', 'property': 'P25', 'numeric-id': 3020678, 'type': 'wikibase-entityid'}, {'numeric-id': 1860, 'type': 'wikibase-entityid', 'id': 'Q1860', 'entity-type': 'item', 'property': 'P6886'}, {'numeric-id': 104994, 'type': 'wikibase-entityid', 'property': 'P19', 'entity-type': 'item', 'id': 'Q104994'}, {'type': 'string', 'value': '23291', 'property': 'P12098'}, {'type': 'wikibase-entityid', 'property': 'P106', 'numeric-id': 6625963, 'id': 'Q6625963', 'entity-type': 'item'}, {'numeric-id': 33999, 'id': 'Q33999', 'entity-type': 'item', 'property': 'P106', 'type': 'wikibase-entityid'}, {'id': 'Q18620539', 'property': 'P735', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 18620539}, {'id': 'Q1860', 'entity-type': 'item', 'numeric-id': 1860, 'property': 'P103', 'type': 'wikibase-entityid'}, {'numeric-id': 6781626, 'id': 'Q6781626', 'entity-type': 'item', 'property': 'P69', 'type': 'wikibase-entityid'}, {'property': 'P569', 'type': 'time', 'after': 0, 'precision': 11, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0, 'time': '+1971-08-14T00:00:00Z', 'timezone': 0}, {'entity-type': 'item', 'numeric-id': 6581072, 'property': 'P21', 'type': 'wikibase-entityid', 'id': 'Q6581072'}, {'property': 'P27', 'id': 'Q30', 'type': 'wikibase-entityid', 'numeric-id': 30, 'entity-type': 'item'}, {'numeric-id': 1860, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P1412', 'id': 'Q1860'}, {'numeric-id': 16876545, 'type': 'wikibase-entityid', 'id': 'Q16876545', 'entity-type': 'item', 'property': 'P734'}, {'property': 'P10302', 'type': 'string', 'value': 'michele-matheson'}, {'entity-type': 'item', 'property': 'P31', 'numeric-id': 5, 'type': 'wikibase-entityid', 'id': 'Q5'}), 'title': 'Q6836790'}
{'type': 'item', 'id': 'Q6837618', 'labels': (('en', 'Michigan Militia'),), 'descriptions': (('en', 'anti-government paramilitary organization'),), 'aliases': (), 'sitelinks': (('dewiki', 'Michigan Militia', ('Q70894304',)), ('ruwiki', '\xd0\x9c\xd0\xb8\xd1\x87\xd0\xb8\xd0\xb3\xd0\xb0\xd0\xbd\xd1\x81\xd0\xba\xd0\xb0\xd1\x8f \xd0\xbc\xd0\xb8\xd0\xbb\xd0\xb8\xd1\x86\xd0\xb8\xd1\x8f', None), ('nowiki', 'Michiganmilitsen', None), ('kowiki', '\xeb\xaf\xb8\xec\x8b\x9c\xea\xb0\x84 \xeb\xaf\xbc\xeb\xb3\x91\xeb\x8c\x80', None), ('enwiki', 'Michigan Militia', None), ('commonswiki', 'Category:Michigan Militia', None), ('eswiki', 'Michigan Militia', None)), 'claims': ({'precision': 9, 'after': 0, 'before': 0, 'time': '+1994-00-00T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'property': 'P571', 'timezone': 0}, {'value': 'Michigan Militia Corps.png', 'type': 'string', 'property': 'P18'}, {'property': 'P373', 'type': 'string', 'value': 'Michigan Militia'}), 'title': 'Q6837618'}
{'type': 'item', 'id': 'Q6838034', 'labels': (('en', 'Micin'),), 'descriptions': (('en', 'village in \xc5\x81\xc3\xb3d\xc5\xba, Poland'),), 'aliases': (), 'sitelinks': (('enwiki', 'Micin', None), ('ukwiki', '\xd0\x9c\xd1\x96\xd1\x86\xd0\xb8\xd0\xbd', None), ('ttwiki', '\xd0\x9c\xd0\xb8\xd1\x86\xd0\xb8\xd0\xbd', None), ('plwiki', 'Micin', None), ('cewiki', '\xd0\x9c\xd0\xb8\xd1\x86\xd0\xb8\xd0\xbd', None), ('zh_min_nanwiki', 'Micin', None), ('frwiki', 'Micin', None)), 'claims': ({'id': 'Q3558970', 'entity-type': 'item', 'numeric-id': 3558970, 'property': 'P31', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q2325961', 'numeric-id': 2325961, 'property': 'P131', 'entity-type': 'item'}, {'property': 'P1539', 'unit': '1', 'amount': '+25', 'type': 'quantity'}, {'id': 'Q6655', 'property': 'P421', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 6655}, {'numeric-id': 6723, 'type': 'wikibase-entityid', 'id': 'Q6723', 'property': 'P421', 'entity-type': 'item'}, {'amount': '+26', 'type': 'quantity', 'unit': '1', 'property': 'P1540'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 36, 'id': 'Q36', 'property': 'P17'}, {'type': 'quantity', 'unit': '1', 'property': 'P1082', 'amount': '+51'}), 'title': 'Q6838034'}
{'type': 'item', 'id': 'Q6838216', 'labels': (('en', 'Michael Head'),), 'descriptions': (('en', 'English singer-songwriter and musician'),), 'aliases': (('en', 'Michael William Head'), ('en', 'Mick Head')), 'sitelinks': (('commonswiki', 'Category:Michael Head (musician)', None), ('arwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83\xd9\x84 \xd9\x87\xd9\x8a\xd8\xaf (\xd9\x83\xd8\xa7\xd8\xaa\xd8\xa8 \xd8\xa3\xd8\xba\xd8\xa7\xd9\x86\xd9\x8a)', None), ('enwiki', 'Michael Head (musician)', None)), 'claims': ({'numeric-id': 6581097, 'entity-type': 'item', 'id': 'Q6581097', 'property': 'P21', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'property': 'P31', 'id': 'Q5', 'numeric-id': 5, 'entity-type': 'item'}, {'id': 'Q187760', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 187760, 'property': 'P136'}, {'id': 'Q24826', 'type': 'wikibase-entityid', 'property': 'P19', 'entity-type': 'item', 'numeric-id': 24826}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'timezone': 0, 'type': 'time', 'time': '+1961-11-28T00:00:00Z', 'before': 0, 'after': 0, 'precision': 11}, {'id': 'Q753110', 'numeric-id': 753110, 'property': 'P106', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'precision': 9, 'type': 'time', 'timezone': 0, 'property': 'P2031', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1981-00-00T00:00:00Z', 'after': 0, 'before': 0}, {'type': 'string', 'property': 'P7704', 'value': 'agent/base/82504'}, {'type': 'string', 'property': 'P373', 'value': 'Michael Head (musician)'}, {'numeric-id': 145, 'id': 'Q145', 'property': 'P27', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P1412', 'id': 'Q1860', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 1860}, {'type': 'wikibase-entityid', 'property': 'P735', 'entity-type': 'item', 'numeric-id': 1931313, 'id': 'Q1931313'}, {'type': 'string', 'property': 'P856', 'value': 'http://www.michaelhead.net'}, {'value': 'Michael Head Red Elastic Band.jpg', 'type': 'string', 'property': 'P18'}, {'numeric-id': 13560595, 'entity-type': 'item', 'property': 'P734', 'type': 'wikibase-entityid', 'id': 'Q13560595'}), 'title': 'Q6838216'}
{'type': 'item', 'id': 'Q6838343', 'labels': (('en', 'Mick Moloney'),), 'descriptions': (('en', 'Irish-born American musician'),), 'aliases': (('en', 'Michael Moloney'),), 'sitelinks': (('enwiki', 'Mick Moloney', None), ('nowiki', 'Mick Moloney', None), ('arwiki', '\xd9\x85\xd9\x8a\xd9\x83 \xd9\x85\xd9\x88\xd9\x84\xd9\x88\xd9\x86\xd9\x8a', None), ('gawiki', 'Mick Moloney', None), ('glwiki', 'Mick Moloney', None)), 'claims': ({'precision': 11, 'timezone': 0, 'after': 0, 'property': 'P570', 'type': 'time', 'time': '+2022-07-27T00:00:00Z', 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'entity-type': 'item', 'property': 'P21', 'numeric-id': 6581097, 'type': 'wikibase-entityid', 'id': 'Q6581097'}, {'type': 'time', 'after': 0, 'time': '+2022-00-00T00:00:00Z', 'property': 'P2032', 'timezone': 0, 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 9}, {'property': 'P1412', 'numeric-id': 1860, 'id': 'Q1860', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'numeric-id': 5, 'entity-type': 'item', 'property': 'P31', 'id': 'Q5', 'type': 'wikibase-entityid'}, {'id': 'Q1931313', 'entity-type': 'item', 'property': 'P735', 'type': 'wikibase-entityid', 'numeric-id': 1931313}, {'language': 'en', 'text': 'Michael Moloney', 'type': 'monolingualtext', 'property': 'P1477'}, {'id': 'Q7179538', 'entity-type': 'item', 'numeric-id': 7179538, 'property': 'P166', 'type': 'wikibase-entityid'}, {'type': 'string', 'property': 'P18', 'value': 'Mick Moloney.jpg'}, {'numeric-id': 17172850, 'entity-type': 'item', 'id': 'Q17172850', 'property': 'P1303', 'type': 'wikibase-entityid'}, {'id': 'Q258896', 'numeric-id': 258896, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P1303'}, {'entity-type': 'item', 'numeric-id': 302497, 'id': 'Q302497', 'property': 'P1303', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q3038397', 'property': 'P1303', 'entity-type': 'item', 'numeric-id': 3038397}, {'numeric-id': 6607, 'entity-type': 'item', 'id': 'Q6607', 'property': 'P1303', 'type': 'wikibase-entityid'}, {'id': 'Q30', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 30, 'property': 'P27'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q639669', 'property': 'P106', 'numeric-id': 639669}, {'type': 'wikibase-entityid', 'numeric-id': 49117, 'property': 'P69', 'entity-type': 'item', 'id': 'Q49117'}, {'before': 0, 'time': '+1964-00-00T00:00:00Z', 'after': 0, 'precision': 9, 'property': 'P2031', 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time'}, {'type': 'monolingualtext', 'language': 'en', 'text': 'Mick Moloney', 'property': 'P1559'}, {'entity-type': 'item', 'numeric-id': 123487443, 'id': 'Q123487443', 'property': 'P1343', 'type': 'wikibase-entityid'}, {'type': 'string', 'property': 'P856', 'value': 'http://www.mickmoloney.com/'}, {'numeric-id': 16877315, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q16877315', 'property': 'P734'}, {'property': 'P7704', 'type': 'string', 'value': 'agent/base/82405'}, {'after': 0, 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1944-11-15T00:00:00Z', 'type': 'time', 'precision': 11, 'property': 'P569', 'timezone': 0}, {'entity-type': 'item', 'numeric-id': 43343, 'id': 'Q43343', 'property': 'P136', 'type': 'wikibase-entityid'}, {'id': 'Q133315', 'property': 'P19', 'type': 'wikibase-entityid', 'numeric-id': 133315, 'entity-type': 'item'}), 'title': 'Q6838343'}
{'type': 'item', 'id': 'Q6838345', 'labels': (('en', 'Mick Moore'),), 'descriptions': (('en', 'British footballer (born 1952)'),), 'aliases': (('en', 'Michael Moore'),), 'sitelinks': (('enwiki', 'Mick Moore', None), ('arzwiki', '\xd9\x85\xd9\x8a\xd9\x83 \xd9\x85\xd9\x88\xd8\xb1', None), ('arwiki', '\xd9\x85\xd9\x8a\xd9\x83 \xd9\x85\xd9\x88\xd8\xb1', None)), 'claims': ({'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P734', 'id': 'Q10588869', 'numeric-id': 10588869}, {'id': 'Q937857', 'numeric-id': 937857, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P106'}, {'entity-type': 'item', 'numeric-id': 1931313, 'type': 'wikibase-entityid', 'id': 'Q1931313', 'property': 'P735'}, {'numeric-id': 2736, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q2736', 'property': 'P641'}, {'id': 'Q6581097', 'numeric-id': 6581097, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P21'}, {'timezone': 0, 'time': '+1952-07-20T00:00:00Z', 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'type': 'time', 'property': 'P569', 'after': 0}, {'entity-type': 'item', 'property': 'P19', 'id': 'Q2078535', 'numeric-id': 2078535, 'type': 'wikibase-entityid'}, {'property': 'P27', 'type': 'wikibase-entityid', 'id': 'Q145', 'numeric-id': 145, 'entity-type': 'item'}, {'property': 'P54', 'entity-type': 'item', 'id': 'Q18660', 'type': 'wikibase-entityid', 'numeric-id': 18660}, {'numeric-id': 19446, 'property': 'P54', 'type': 'wikibase-entityid', 'id': 'Q19446', 'entity-type': 'item'}, {'numeric-id': 18507, 'property': 'P54', 'type': 'wikibase-entityid', 'id': 'Q18507', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'id': 'Q18750', 'numeric-id': 18750, 'entity-type': 'item', 'property': 'P54'}, {'entity-type': 'item', 'id': 'Q48948', 'property': 'P54', 'numeric-id': 48948, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'numeric-id': 19612, 'property': 'P54', 'entity-type': 'item', 'id': 'Q19612'}, {'property': 'P54', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q18287', 'numeric-id': 18287}, {'entity-type': 'item', 'id': 'Q18525', 'property': 'P54', 'numeric-id': 18525, 'type': 'wikibase-entityid'}, {'numeric-id': 5599299, 'id': 'Q5599299', 'property': 'P54', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q1158012', 'numeric-id': 1158012, 'property': 'P54', 'type': 'wikibase-entityid'}, {'numeric-id': 18750, 'entity-type': 'item', 'id': 'Q18750', 'property': 'P54', 'type': 'wikibase-entityid'}, {'property': 'P54', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q188278', 'numeric-id': 188278}, {'id': 'Q2082915', 'type': 'wikibase-entityid', 'property': 'P54', 'numeric-id': 2082915, 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q193592', 'property': 'P413', 'numeric-id': 193592, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q1860', 'property': 'P1412', 'numeric-id': 1860, 'entity-type': 'item'}, {'id': 'Q5', 'numeric-id': 5, 'type': 'wikibase-entityid', 'property': 'P31', 'entity-type': 'item'}), 'title': 'Q6838345'}
{'type': 'item', 'id': 'Q6838465', 'labels': (('en', 'Mick Wadsworth'),), 'descriptions': (('en', 'English footballer and manager'),), 'aliases': (('en', 'Michael Wadsworth'),), 'sitelinks': (('arzwiki', '\xd9\x85\xd9\x8a\xd9\x83 \xd9\x88\xd8\xa7\xd8\xaf\xd8\xb2\xd9\x88\xd8\xb1\xd8\xa', None), ('plwiki', 'Mick Wadsworth', None), ('frwiki', 'Mick Wadsworth', None), ('fawiki', '\xd9\x85\xdb\x8c\xda\xa9 \xd9\x88\xd8\xa7\xd8\xaf\xd8\xb3\xd9\x88\xd8\xb1\xd8\xa', None), ('itwiki', 'Mick Wadsworth', None), ('arwiki', '\xd9\x85\xd9\x8a\xd9\x83 \xd9\x88\xd8\xa7\xd8\xaf\xd8\xb2\xd9\x88\xd8\xb1\xd8\xa', None), ('enwiki', 'Mick Wadsworth', None)), 'claims': ({'entity-type': 'item', 'numeric-id': 2736, 'property': 'P641', 'type': 'wikibase-entityid', 'id': 'Q2736'}, {'numeric-id': 19615, 'property': 'P54', 'entity-type': 'item', 'id': 'Q19615', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'property': 'P21', 'id': 'Q6581097', 'numeric-id': 6581097, 'type': 'wikibase-entityid'}, {'id': 'Q1860', 'property': 'P1412', 'numeric-id': 1860, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q280658', 'property': 'P413', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 280658}, {'numeric-id': 5, 'property': 'P31', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q5'}, {'entity-type': 'item', 'property': 'P734', 'id': 'Q17032422', 'numeric-id': 17032422, 'type': 'wikibase-entityid'}, {'id': 'Q54212', 'property': 'P19', 'numeric-id': 54212, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'numeric-id': 1931313, 'entity-type': 'item', 'property': 'P735', 'id': 'Q1931313', 'type': 'wikibase-entityid'}, {'numeric-id': 937857, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q937857', 'property': 'P106'}, {'type': 'wikibase-entityid', 'numeric-id': 628099, 'property': 'P106', 'entity-type': 'item', 'id': 'Q628099'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 19575, 'property': 'P6087', 'id': 'Q19575'}, {'property': 'P569', 'precision': 11, 'before': 0, 'type': 'time', 'timezone': 0, 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1950-11-03T00:00:00Z'}, {'entity-type': 'item', 'id': 'Q145', 'numeric-id': 145, 'type': 'wikibase-entityid', 'property': 'P27'}, {'type': 'wikibase-entityid', 'numeric-id': 21, 'id': 'Q21', 'entity-type': 'item', 'property': 'P1532'}), 'title': 'Q6838465'}
{'type': 'item', 'id': 'Q6838491', 'labels': (('en', 'Micka\xc3\xabl Barreto'),), 'descriptions': (('en', 'French footballer'),), 'aliases': (('en', 'Mickael Barreto'),), 'sitelinks': (('arzwiki', '\xd9\x85\xd9\x8a\xd9\x83\xd8\xa7\xd8\xa6\xd9\x8a\xd9\x84 \xd8\xa8\xd8\xa7\xd8\xb1\xd9\x8a\xd8\xaa\xd9\x88', None), ('nlwiki', 'Micka\xc3\xabl Barreto', None), ('arwiki', '\xd9\x85\xd9\x8a\xd9\x83\xd8\xa7\xd8\xa6\xd9\x8a\xd9\x84 \xd8\xa8\xd8\xa7\xd8\xb1\xd9\x8a\xd8\xaa\xd9\x88', None), ('commonswiki', 'Category:Micha\xc3\xabl Barreto', None), ('itwiki', 'Micka\xc3\xabl Barreto', None), ('fawiki', '\xd9\x85\xd8\xa7\xdb\x8c\xda\xa9\xd9\x84 \xd8\xa8\xd8\xa7\xd8\xb1\xd8\xaa\xd9\x88', None), ('enwiki', 'Micka\xc3\xabl Barreto', None), ('dewiki', 'Micka\xc3\xabl Barreto', None), ('frwiki', 'Micha\xc3\xabl Barreto', None)), 'claims': ({'numeric-id': 5, 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q5'}, {'type': 'wikibase-entityid', 'id': 'Q90', 'property': 'P19', 'numeric-id': 90, 'entity-type': 'item'}, {'property': 'P18', 'value': 'RC Lens - AJ Auxerre (09-03-2019) 9.jpg', 'type': 'string'}, {'timezone': 0, 'after': 0, 'property': 'P569', 'precision': 11, 'time': '+1991-01-18T00:00:00Z', 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time'}, {'entity-type': 'item', 'numeric-id': 6581097, 'property': 'P21', 'type': 'wikibase-entityid', 'id': 'Q6581097'}, {'property': 'P373', 'type': 'string', 'value': 'Micha\xc3\xabl Barreto'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 2736, 'property': 'P641', 'id': 'Q2736'}, {'id': 'Q142', 'property': 'P27', 'entity-type': 'item', 'numeric-id': 142, 'type': 'wikibase-entityid'}, {'property': 'P27', 'numeric-id': 45, 'entity-type': 'item', 'id': 'Q45', 'type': 'wikibase-entityid'}, {'id': 'Q193592', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P413', 'numeric-id': 193592}, {'type': 'wikibase-entityid', 'id': 'Q369349', 'entity-type': 'item', 'numeric-id': 369349, 'property': 'P54'}, {'type': 'wikibase-entityid', 'id': 'Q501693', 'property': 'P54', 'entity-type': 'item', 'numeric-id': 501693}, {'entity-type': 'item', 'numeric-id': 290481, 'type': 'wikibase-entityid', 'property': 'P54', 'id': 'Q290481'}, {'id': 'Q298267', 'numeric-id': 298267, 'type': 'wikibase-entityid', 'property': 'P54', 'entity-type': 'item'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 3550489, 'id': 'Q3550489', 'property': 'P54'}, {'id': 'Q937857', 'entity-type': 'item', 'numeric-id': 937857, 'property': 'P106', 'type': 'wikibase-entityid'}, {'property': 'P734', 'id': 'Q21493374', 'numeric-id': 21493374, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'numeric-id': 150, 'property': 'P1412', 'entity-type': 'item', 'id': 'Q150'}, {'property': 'P735', 'entity-type': 'item', 'id': 'Q19968168', 'numeric-id': 19968168, 'type': 'wikibase-entityid'}), 'title': 'Q6838491'}
{'type': 'item', 'id': 'Q6838632', 'labels': (('en', 'Mickey Finn'),), 'descriptions': (('en', '1936-1977 American comic strip by Lank Leonard'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mickey Finn (comic strip)', None),), 'claims': ({'numeric-id': 1860, 'type': 'wikibase-entityid', 'property': 'P407', 'id': 'Q1860', 'entity-type': 'item'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 6487142, 'property': 'P50', 'id': 'Q6487142'}, {'entity-type': 'item', 'numeric-id': 838795, 'id': 'Q838795', 'property': 'P31', 'type': 'wikibase-entityid'}, {'numeric-id': 30, 'id': 'Q30', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P495'}), 'title': 'Q6838632'}
{'type': 'item', 'id': 'Q6838676', 'labels': (('en', 'Mickey Katz'),), 'descriptions': (('en', 'American musician and comedian (1909-1985)'),), 'aliases': (('en', 'Meyer Myron Katz'),), 'sitelinks': (('commonswiki', 'Category:Mickey Katz', None), ('afwiki', 'Mickey Katz', None), ('arzwiki', '\xd9\x85\xd9\x8a\xd9\x83\xd9\x89 \xd9\x83\xd8\xa7\xd8\xaa\xd8\xb2', None), ('enwiki', 'Mickey Katz', None)), 'claims': ({'property': 'P7704', 'type': 'string', 'value': 'agent/base/156497'}, {'id': 'Q1860', 'type': 'wikibase-entityid', 'numeric-id': 1860, 'property': 'P6886', 'entity-type': 'item'}, {'precision': 11, 'type': 'time', 'timezone': 0, 'before': 0, 'property': 'P570', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'time': '+1985-04-30T00:00:00Z'}, {'property': 'P1343', 'entity-type': 'item', 'id': 'Q67311526', 'numeric-id': 67311526, 'type': 'wikibase-entityid'}, {'property': 'P509', 'entity-type': 'item', 'id': 'Q476921', 'type': 'wikibase-entityid', 'numeric-id': 476921}, {'entity-type': 'item', 'numeric-id': 33999, 'property': 'P106', 'id': 'Q33999', 'type': 'wikibase-entityid'}, {'id': 'Q15981151', 'entity-type': 'item', 'numeric-id': 15981151, 'property': 'P106', 'type': 'wikibase-entityid'}, {'property': 'P734', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 8114053, 'id': 'Q8114053'}, {'numeric-id': 3739104, 'property': 'P1196', 'type': 'wikibase-entityid', 'id': 'Q3739104', 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q65', 'numeric-id': 65, 'property': 'P20', 'type': 'wikibase-entityid'}, {'numeric-id': 3415083, 'id': 'Q3415083', 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P264'}, {'type': 'wikibase-entityid', 'id': 'Q5763964', 'property': 'P119', 'entity-type': 'item', 'numeric-id': 5763964}, {'id': 'Q6581097', 'numeric-id': 6581097, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P21'}, {'after': 0, 'type': 'time', 'property': 'P569', 'precision': 11, 'time': '+1909-06-15T00:00:00Z', 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0}, {'entity-type': 'item', 'numeric-id': 37320, 'property': 'P19', 'id': 'Q37320', 'type': 'wikibase-entityid'}, {'id': 'Q19819798', 'numeric-id': 19819798, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P735'}, {'numeric-id': 19915007, 'property': 'P735', 'id': 'Q19915007', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q18607970', 'numeric-id': 18607970, 'property': 'P735', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P18', 'type': 'string', 'value': 'Mickey Katz circa 1950.jpg'}, {'type': 'wikibase-entityid', 'property': 'P103', 'entity-type': 'item', 'id': 'Q1860', 'numeric-id': 1860}, {'property': 'P1412', 'id': 'Q1860', 'numeric-id': 1860, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'numeric-id': 5, 'type': 'wikibase-entityid', 'id': 'Q5', 'property': 'P31', 'entity-type': 'item'}, {'numeric-id': 316641, 'id': 'Q316641', 'type': 'wikibase-entityid', 'property': 'P40', 'entity-type': 'item'}, {'id': 'Q1332213', 'numeric-id': 1332213, 'property': 'P40', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q30', 'numeric-id': 30, 'property': 'P27', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'value': 'Mickey Katz', 'type': 'string', 'property': 'P373'}), 'title': 'Q6838676'}
{'type': 'item', 'id': 'Q6839171', 'labels': (('en', 'Micro Magic Inc.'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('enwiki', 'Micro Magic', ('Q70893996',)),), 'claims': ({'id': 'Q30', 'numeric-id': 30, 'property': 'P17', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'id': 'Q4830453', 'entity-type': 'item', 'numeric-id': 4830453, 'property': 'P31', 'type': 'wikibase-entityid'}, {'value': 'https://www.juniper.net/', 'property': 'P856', 'type': 'string'}, {'id': 'Q217302', 'property': 'P1056', 'type': 'wikibase-entityid', 'numeric-id': 217302, 'entity-type': 'item'}, {'property': 'P571', 'precision': 9, 'type': 'time', 'time': '+1995-00-00T00:00:00Z', 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'before': 0}, {'property': 'P159', 'entity-type': 'item', 'numeric-id': 208459, 'type': 'wikibase-entityid', 'id': 'Q208459'}), 'title': 'Q6839171'}
{'type': 'item', 'id': 'Q6839229', 'labels': (('en', 'Microbaena'),), 'descriptions': (('en', 'genus of insects'),), 'aliases': (), 'sitelinks': (('specieswiki', 'Microbaena', None), ('viwiki', 'Microbaena', None), ('enwiki', 'Microbaena', None)), 'claims': ({'property': 'P225', 'value': 'Microbaena', 'type': 'string'}, {'value': '93NXN', 'type': 'string', 'property': 'P10585'}, {'id': 'Q45559', 'numeric-id': 45559, 'property': 'P171', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q26252854', 'type': 'wikibase-entityid', 'numeric-id': 26252854, 'property': 'P910', 'entity-type': 'item'}, {'numeric-id': 16521, 'property': 'P31', 'id': 'Q16521', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'numeric-id': 34740, 'property': 'P105', 'id': 'Q34740', 'entity-type': 'item', 'type': 'wikibase-entityid'}), 'title': 'Q6839229'}
{'type': 'item', 'id': 'Q6839383', 'labels': (('en', 'Microcon'),), 'descriptions': (('en', 'science fiction convention held in Exeter, Devon, UK'),), 'aliases': (), 'sitelinks': (('enwiki', 'Microcon', None),), 'claims': ({'type': 'wikibase-entityid', 'property': 'P276', 'id': 'Q134672', 'entity-type': 'item', 'numeric-id': 134672}, {'precision': 9, 'before': 0, 'time': '+2015-00-00T00:00:00Z', 'timezone': 0, 'property': 'P576', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'type': 'time'}, {'numeric-id': 25053787, 'property': 'P1889', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q25053787'}, {'id': 'Q145', 'property': 'P17', 'entity-type': 'item', 'numeric-id': 145, 'type': 'wikibase-entityid'}, {'property': 'P31', 'entity-type': 'item', 'id': 'Q15275719', 'numeric-id': 15275719, 'type': 'wikibase-entityid'}, {'property': 'P279', 'entity-type': 'item', 'id': 'Q1958056', 'numeric-id': 1958056, 'type': 'wikibase-entityid'}, {'after': 0, 'before': 0, 'time': '+1982-00-00T00:00:00Z', 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'precision': 9, 'property': 'P571'}, {'property': 'P856', 'type': 'string', 'value': 'https://www.exeterguild.org/societies/sciencefiction/'}), 'title': 'Q6839383'}
{'type': 'item', 'id': 'Q6839488', 'labels': (('en', 'Microducts'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('enwiki', 'Microducts', None),), 'claims': (), 'title': 'Q6839488'}
{'type': 'item', 'id': 'Q6839650', 'labels': (('en', 'Micromasters'),), 'descriptions': (('en', 'subline of smaller figures in the Transformers franchise'),), 'aliases': (), 'sitelinks': (('enwiki', 'Micromasters', ('Q70893996',)),), 'claims': (), 'title': 'Q6839650'}
{'type': 'item', 'id': 'Q6840083', 'labels': (('en', 'Bizgili'),), 'descriptions': (('en', 'village in K\xc3\xb6se, G\xc3\xbcm\xc3\xbc\xc5\x9fhane, Turkey'), ('en-g', 'k\xc3\xb6y in K\xc3\xb6se, Turkey'), ('en-ca', 'k\xc3\xb6y in K\xc3\xb6se, Turkey')), 'aliases': (), 'sitelinks': (('cewiki', '\xd0\x91\xd0\xb8\xd0\xb7\xd0\xb3\xd0\xb8\xd0\xbb\xd0\xb8 (\xd0\x9a\xd0\xbe\xd1\x8c\xd1\x81\xd0\xb5)', None), ('ttwiki', '\xd0\x91\xd0\xb8\xd0\xb7\xd0\xb3\xd0\xb8\xd0\xbb\xd0\xb8 (\xd0\x9a\xd3\xa9\xd1\x81\xd0\xb5)', None), ('trwiki', 'Bizgili, K\xc3\xb6se', None), ('viwiki', 'Bizgili, K\xc3\xb6se', None)), 'claims': ({'id': 'Q1747359', 'numeric-id': 1747359, 'entity-type': 'item', 'property': 'P131', 'type': 'wikibase-entityid'}, {'id': 'Q43', 'numeric-id': 43, 'type': 'wikibase-entityid', 'property': 'P17', 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q1529096', 'type': 'wikibase-entityid', 'property': 'P31', 'numeric-id': 1529096}), 'title': 'Q6840083'}
{'type': 'item', 'id': 'Q6840174', 'labels': (('en', 'Microsoft Max'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('zhwiki', 'Microsoft Max', None),), 'claims': ({'numeric-id': 5289, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P400', 'id': 'Q5289'}, {'type': 'wikibase-entityid', 'numeric-id': 7397, 'property': 'P31', 'entity-type': 'item', 'id': 'Q7397'}, {'id': 'Q2283', 'type': 'wikibase-entityid', 'property': 'P178', 'entity-type': 'item', 'numeric-id': 2283}), 'title': 'Q6840174'}
{'type': 'item', 'id': 'Q6840212', 'labels': (('en', 'Microsoft Script Debugger'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('enwiki', 'Microsoft Script Debugger', None),), 'claims': (), 'title': 'Q6840212'}
{'type': 'item', 'id': 'Q6840227', 'labels': (('en', 'Microsoft Speech Server'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('enwiki', 'Microsoft Speech Server', None),), 'claims': (), 'title': 'Q6840227'}
{'type': 'item', 'id': 'Q6840221', 'labels': (('en', 'Microsoft Site Server'),), 'descriptions': (('en', 'Defunct Microsoft web service platform'),), 'aliases': (), 'sitelinks': (('enwiki', 'Microsoft Site Server', None),), 'claims': ({'numeric-id': 7397, 'property': 'P31', 'id': 'Q7397', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q2283', 'numeric-id': 2283, 'property': 'P178'}, {'property': 'P156', 'numeric-id': 3312374, 'entity-type': 'item', 'id': 'Q3312374', 'type': 'wikibase-entityid'}, {'type': 'string', 'value': 'http://www.microsoft.com/siteserver/', 'property': 'P856'}, {'entity-type': 'item', 'numeric-id': 6840166, 'type': 'wikibase-entityid', 'property': 'P155', 'id': 'Q6840166'}), 'title': 'Q6840221'}
{'type': 'item', 'id': 'Q6840350', 'labels': (('en', 'Microstola'),), 'descriptions': (('en', 'genus of insects'),), 'aliases': (), 'sitelinks': (('enwiki', 'Microstola', None),), 'claims': ({'id': 'Q655316', 'entity-type': 'item', 'numeric-id': 655316, 'property': 'P171', 'type': 'wikibase-entityid'}, {'id': 'Q14978205', 'property': 'P910', 'numeric-id': 14978205, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'entity-type': 'item', 'numeric-id': 13532194, 'id': 'Q13532194', 'property': 'P427', 'type': 'wikibase-entityid'}, {'value': 'Microstola', 'property': 'P225', 'type': 'string'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q34740', 'numeric-id': 34740, 'property': 'P105'}, {'property': 'P31', 'entity-type': 'item', 'numeric-id': 16521, 'id': 'Q16521', 'type': 'wikibase-entityid'}), 'title': 'Q6840350'}
{'type': 'item', 'id': 'Q6840537', 'labels': (('en', 'Royal Naval Academy'),), 'descriptions': (('en', 'initial officer training establishment of the Royal Saudi Navy'),), 'aliases': (('en', 'King Fahd Naval Academy'), ('en', 'KSA Naval Academy'), ('en', 'RSNF Academy')), 'sitelinks': (('enwiki', 'King Fahd Naval Academy', None), ('ruwiki', '\xd0\x92\xd0\xbe\xd0\xb5\xd0\xbd\xd0\xbd\xd0\xbe-\xd0\xbc\xd0\xbe\xd1\x80\xd1\x81\xd0\xba\xd0\xbe\xd0\xb9 \xd0\xba\xd0\xbe\xd0\xbb\xd0\xbb\xd0\xb5\xd0\xb4\xd0\xb6 \xd0\xb8\xd0\xbc\xd0\xb5\xd0\xbd\xd0\xb8 \xd0\xba\xd0\xbe\xd1\x80\xd0\xbe\xd0\xbb\xd1\x8f \xd0\xa4\xd0\xb0\xd1\x85\xd0\xb4\xd0\xb0', None), ('arwiki', '\xd9\x83\xd9\x84\xd9\x8a\xd8\xa9 \xd8\xa7\xd9\x84\xd9\x85\xd9\x84\xd9\x83 \xd9\x81\xd9\x87\xd8\xaf \xd8\xa7\xd9\x84\xd8\xa8\xd8\xad\xd8\xb1\xd9\x8a\xd8\xa9', None), ('commonswiki', 'Category:King Fahd Naval Academy', None)), 'claims': ({'numeric-id': 2742227, 'property': 'P361', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q2742227'}, {'property': 'P373', 'type': 'string', 'value': 'King Fahd Naval Academy'}, {'property': 'P856', 'value': 'https://www.mod.gov.sa/Sectors/Navy/Pages/kfnc.aspx', 'type': 'string'}, {'entity-type': 'item', 'id': 'Q851', 'type': 'wikibase-entityid', 'numeric-id': 851, 'property': 'P17'}, {'type': 'wikibase-entityid', 'numeric-id': 183187, 'entity-type': 'item', 'id': 'Q183187', 'property': 'P138'}, {'id': 'Q180958', 'entity-type': 'item', 'numeric-id': 180958, 'property': 'P31', 'type': 'wikibase-entityid'}), 'title': 'Q6840537'}
{'type': 'item', 'id': 'Q6840634', 'labels': (('en', 'Mid-Atlantic Emmy Awards'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('enwiki', 'Mid-Atlantic Emmy Awards', None),), 'claims': ({'entity-type': 'item', 'property': 'P361', 'numeric-id': 123737, 'type': 'wikibase-entityid', 'id': 'Q123737'}, {'type': 'string', 'value': 'http://www.natasmid-atlantic.org/', 'property': 'P856'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P1027', 'numeric-id': 2822443, 'id': 'Q2822443'}, {'after': 0, 'timezone': 0, 'precision': 9, 'time': '+1981-00-00T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0, 'property': 'P571', 'type': 'time'}, {'entity-type': 'item', 'id': 'Q123737', 'type': 'wikibase-entityid', 'property': 'P31', 'numeric-id': 123737}, {'property': 'P276', 'type': 'wikibase-entityid', 'id': 'Q1393', 'numeric-id': 1393, 'entity-type': 'item'}), 'title': 'Q6840634'}
{'type': 'item', 'id': 'Q6840721', 'labels': (('en', 'Mid-Govans'),), 'descriptions': (('en', 'neighborhood in Baltimore, Maryland, United States'),), 'aliases': (('en', 'Mid-Govans, Baltimore'), ('en', 'Govans, Baltimore'), ('en', 'Govans')), 'sitelinks': (('enwiki', 'Mid-Govans, Baltimore', None),), 'claims': ({'type': 'wikibase-entityid', 'numeric-id': 5092, 'id': 'Q5092', 'property': 'P131', 'entity-type': 'item'}, {'property': 'P31', 'entity-type': 'item', 'numeric-id': 123705, 'type': 'wikibase-entityid', 'id': 'Q123705'}, {'numeric-id': 111902602, 'type': 'wikibase-entityid', 'property': 'P2353', 'entity-type': 'item', 'id': 'Q111902602'}, {'type': 'wikibase-entityid', 'numeric-id': 30, 'property': 'P17', 'id': 'Q30', 'entity-type': 'item'}, {'property': 'P18', 'value': 'Senator Theater.jpg', 'type': 'string'}, {'property': 'P1082', 'amount': '+1302', 'unit': '1', 'type': 'quantity'}, {'amount': '+510', 'property': 'P1538', 'unit': '1', 'type': 'quantity'}, {'id': 'Q25091289', 'numeric-id': 25091289, 'property': 'P910', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'amount': '+96', 'unit': '1', 'type': 'quantity', 'property': 'P4080'}, {'unit': '1', 'property': 'P4080', 'amount': '+606', 'type': 'quantity'}), 'title': 'Q6840721'}
{'type': 'item', 'id': 'Q6841091', 'labels': (('en', 'Midanbury'), ('en-g', 'Midanbury')), 'descriptions': (('en', 'human settlement in England'), ('en-g', 'neighbourhood in Southampton')), 'aliases': (), 'sitelinks': (('enwiki', 'Midanbury', None),), 'claims': ({'numeric-id': 145, 'id': 'Q145', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P17'}, {'property': 'P18', 'value': 'View from Midanbury.jpg', 'type': 'string'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P131', 'numeric-id': 21683230, 'id': 'Q21683230'}, {'numeric-id': 67531563, 'property': 'P7959', 'id': 'Q67531563', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'numeric-id': 486972, 'property': 'P31', 'id': 'Q486972', 'entity-type': 'item'}), 'title': 'Q6841091'}
{'type': 'item', 'id': 'Q6841121', 'labels': (('en', 'Hulun Buir Shadi'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('cebwiki', 'Hulun Buir Shadi', None), ('dewiki', 'Hulun-Buir-W\xc3\xbcste', None), ('zhwiki', '\xe5\x91\xbc\xe4\xbc\xa6\xe8\xb4\x9d\xe5\xb0\x94\xe6\xb2\x99\xe5\x9c\xb0', None), ('plwiki', 'Hulun Buir Shadi', None), ('svwiki', 'Hulun Buir Shadi', None)), 'claims': ({'id': 'Q148', 'entity-type': 'item', 'numeric-id': 148, 'property': 'P17', 'type': 'wikibase-entityid'}, {'type': 'string', 'value': '228183', 'property': 'P10565'}, {'type': 'string', 'value': '46573', 'property': 'P10565'}, {'property': 'P131', 'id': 'Q41079', 'type': 'wikibase-entityid', 'numeric-id': 41079, 'entity-type': 'item'}, {'property': 'P31', 'id': 'Q8514', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 8514}), 'title': 'Q6841121'}
{'type': 'item', 'id': 'Q6841214', 'labels': (('en', 'Middle Atlantic coastal forests'),), 'descriptions': (('en', 'temperate coniferous forests ecoregion of the United States'),), 'aliases': (), 'sitelinks': (('enwiki', 'Middle Atlantic coastal forests', None),), 'claims': ({'numeric-id': 144019, 'id': 'Q144019', 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P31'}, {'numeric-id': 6617741, 'entity-type': 'item', 'property': 'P31', 'id': 'Q6617741', 'type': 'wikibase-entityid'}, {'value': 'Middle Atlantic coastal forests map.svg', 'property': 'P242', 'type': 'string'}, {'value': 'mid-atlantic-us-coastal-savannas', 'property': 'P12161', 'type': 'string'}, {'type': 'string', 'value': 'Baldcypress (Taxodium distichum) on Congaree National Park Low Boardwalk trail.jpg', 'property': 'P18'}, {'entity-type': 'item', 'numeric-id': 30, 'property': 'P17', 'type': 'wikibase-entityid', 'id': 'Q30'}), 'title': 'Q6841214'}
{'type': 'item', 'id': 'Q6841428', 'labels': (('en', 'Middle Frisian'),), 'descriptions': (('en', 'language'),), 'aliases': (('en', 'Middle Frisian language'),), 'sitelinks': (('enwiki', 'Middle Frisian', None), ('idwiki', 'Bahasa Frisia Pertengahan', None), ('fywiki', 'Midfrysk', None), ('ruwiki', '\xd0\xa1\xd1\x80\xd0\xb5\xd0\xb4\xd0\xbd\xd0\xb5\xd1\x84\xd1\x80\xd0\xb8\xd0\xb7\xd1\x81\xd0\xba\xd0\xb8\xd0\xb9 \xd1\x8f\xd0\xb7\xd1\x8b\xd0\xba', None), ('nds_nlwiki', 'Middelfreesk', None)), 'claims': ({'entity-type': 'item', 'numeric-id': 8229, 'property': 'P282', 'type': 'wikibase-entityid', 'id': 'Q8229'}, {'id': 'Q34770', 'property': 'P31', 'type': 'wikibase-entityid', 'numeric-id': 34770, 'entity-type': 'item'}, {'entity-type': 'item', 'numeric-id': 28819826, 'id': 'Q28819826', 'property': 'P910', 'type': 'wikibase-entityid'}, {'property': 'P279', 'entity-type': 'item', 'id': 'Q25325', 'type': 'wikibase-entityid', 'numeric-id': 25325}, {'entity-type': 'item', 'numeric-id': 35133, 'type': 'wikibase-entityid', 'property': 'P155', 'id': 'Q35133'}), 'title': 'Q6841428'}
{'type': 'item', 'id': 'Q6841711', 'labels': (('en', 'Middleborough Center Historic District'),), 'descriptions': (('en', 'historic district in Massachusetts, United States'),), 'aliases': (), 'sitelinks': (('enwiki', 'Middleborough Center Historic District', None), ('commonswiki', 'Category:Middleborough Center Historic District', None)), 'claims': ({'value': 'Middleborough Center Historic District', 'type': 'string', 'property': 'P373'}, {'numeric-id': 15243209, 'id': 'Q15243209', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P31'}, {'id': 'Q30', 'entity-type': 'item', 'property': 'P17', 'type': 'wikibase-entityid', 'numeric-id': 30}, {'id': 'Q19558910', 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P1435', 'numeric-id': 19558910}, {'id': 'Q771', 'property': 'P131', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 771}, {'property': 'P18', 'value': 'Middleboro MA Town Hall.jpg', 'type': 'string'}), 'title': 'Q6841711'}
{'type': 'item', 'id': 'Q6841809', 'labels': (('en', 'Midland Isle'),), 'descriptions': (('en', 'island in Pembrokeshire, Wales'),), 'aliases': (('en', 'Middleholm'),), 'sitelinks': (('frwiki', 'Middleholm', None), ('nnwiki', 'Middleholm', None), ('commonswiki', 'Category:Midland Isle', None), ('enwiki', 'Middleholm', None)), 'claims': ({'numeric-id': 23442, 'entity-type': 'item', 'id': 'Q23442', 'type': 'wikibase-entityid', 'property': 'P31'}, {'property': 'P2046', 'unit': 'http://www.wikidata.org/entity/Q712226', 'amount': '+0.215', 'type': 'quantity'}, {'entity-type': 'item', 'numeric-id': 145, 'property': 'P17', 'id': 'Q145', 'type': 'wikibase-entityid'}, {'property': 'P7959', 'entity-type': 'item', 'id': 'Q85631787', 'type': 'wikibase-entityid', 'numeric-id': 85631787}, {'value': 'Midland Island also known as Middleholm - geograph.org.uk - 427473.jpg', 'type': 'string', 'property': 'P18'}, {'value': 'Midland Isle', 'property': 'P373', 'type': 'string'}), 'title': 'Q6841809'}
{'type': 'item', 'id': 'Q6841986', 'labels': (('en', 'Middleton'),), 'descriptions': (('en', 'locality in Queensland, Australia'),), 'aliases': (('en', 'Middleton, Queensland'), ('en', 'Middleton, Queensland, Australia')), 'sitelinks': (('enwiki', 'Middleton, Queensland', None),), 'claims': ({'property': 'P1082', 'amount': '+9', 'type': 'quantity', 'unit': '1'}, {'type': 'quantity', 'unit': '1', 'amount': '+45', 'property': 'P1082'}, {'property': 'P1539', 'type': 'quantity', 'amount': '+7', 'unit': '1'}, {'id': 'Q5355713', 'property': 'P7938', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 5355713}, {'type': 'wikibase-entityid', 'property': 'P7938', 'id': 'Q5355473', 'numeric-id': 5355473, 'entity-type': 'item'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 2973739, 'property': 'P7938', 'id': 'Q2973739'}, {'type': 'quantity', 'amount': '+6', 'unit': '1', 'property': 'P1540'}, {'entity-type': 'item', 'numeric-id': 3257686, 'property': 'P31', 'id': 'Q3257686', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q26963537', 'numeric-id': 26963537, 'property': 'P910', 'type': 'wikibase-entityid'}, {'id': 'Q408', 'numeric-id': 408, 'entity-type': 'item', 'property': 'P17', 'type': 'wikibase-entityid'}, {'property': 'P571', 'timezone': 0, 'precision': 9, 'type': 'time', 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1916-01-01T00:00:00Z', 'before': 0}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P131', 'numeric-id': 36074, 'id': 'Q36074'}, {'id': 'Q1067032', 'property': 'P131', 'entity-type': 'item', 'numeric-id': 1067032, 'type': 'wikibase-entityid'}), 'title': 'Q6841986'}
{'type': 'item', 'id': 'Q6842460', 'labels': (('en', 'Midland Trail High School'),), 'descriptions': (('en', 'high school in West Virginia, United States'),), 'aliases': (), 'sitelinks': (('enwiki', 'Midland Trail High School', None),), 'claims': ({'type': 'wikibase-entityid', 'id': 'Q1371', 'entity-type': 'item', 'numeric-id': 1371, 'property': 'P131'}, {'value': '217910363', 'type': 'string', 'property': 'P10689'}, {'property': 'P5353', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 96377835, 'id': 'Q96377835'}, {'property': 'P17', 'id': 'Q30', 'numeric-id': 30, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'numeric-id': 9826, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P31', 'id': 'Q9826'}, {'timezone': 0, 'before': 0, 'time': '+1976-00-00T00:00:00Z', 'type': 'time', 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 9, 'property': 'P571'}), 'title': 'Q6842460'}
{'type': 'item', 'id': 'Q6843075', 'labels': (('en', 'Midtown Community Court'),), 'descriptions': (('en', 'New York City court begun in 1993 for quality-of-life offenses'),), 'aliases': (), 'sitelinks': (('enwiki', 'Midtown Community Court', None),), 'claims': ({'property': 'P17', 'id': 'Q30', 'numeric-id': 30, 'type': 'wikibase-entityid', 'entity-type': 'item'},), 'title': 'Q6843075'}
{'type': 'item', 'id': 'Q6843316', 'labels': (('en', 'Midway Subdivision'),), 'descriptions': (('en', 'railway line in the United States of America'),), 'aliases': (('en', 'Midway Su'),), 'sitelinks': (('commonswiki', 'Category:Midway Subdivision', None), ('enwiki', 'Midway Subdivision', None)), 'claims': ({'property': 'P3858', 'type': 'wikibase-entityid', 'id': 'Q20366213', 'entity-type': 'item', 'numeric-id': 20366213}, {'property': 'P373', 'value': 'Midway Subdivision', 'type': 'string'}, {'entity-type': 'item', 'property': 'P31', 'numeric-id': 728937, 'type': 'wikibase-entityid', 'id': 'Q728937'}, {'id': 'Q267122', 'property': 'P127', 'numeric-id': 267122, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q30', 'type': 'wikibase-entityid', 'numeric-id': 30, 'property': 'P17', 'entity-type': 'item'}, {'property': 'P2789', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q16985025', 'numeric-id': 16985025}, {'type': 'wikibase-entityid', 'id': 'Q7976912', 'entity-type': 'item', 'numeric-id': 7976912, 'property': 'P2789'}, {'property': 'P2789', 'id': 'Q7591274', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 7591274}, {'entity-type': 'item', 'id': 'Q6820053', 'property': 'P2789', 'type': 'wikibase-entityid', 'numeric-id': 6820053}), 'title': 'Q6843316'}
{'type': 'item', 'id': 'Q6843444', 'labels': (('en', 'Midwest Training & Ice Center'),), 'descriptions': (('en', 'recreational sport facility in Dyer, Indiana'),), 'aliases': (), 'sitelinks': (('enwiki', 'Midwest Training & Ice Center', None),), 'claims': ({'property': 'P31', 'id': 'Q1076486', 'entity-type': 'item', 'numeric-id': 1076486, 'type': 'wikibase-entityid'}, {'amount': '+1500', 'type': 'quantity', 'property': 'P1083', 'unit': '1'}, {'numeric-id': 30, 'type': 'wikibase-entityid', 'property': 'P17', 'entity-type': 'item', 'id': 'Q30'}, {'numeric-id': 2918650, 'property': 'P276', 'type': 'wikibase-entityid', 'id': 'Q2918650', 'entity-type': 'item'}, {'id': 'Q2918650', 'numeric-id': 2918650, 'type': 'wikibase-entityid', 'property': 'P131', 'entity-type': 'item'}), 'title': 'Q6843444'}
{'type': 'item', 'id': 'Q6843682', 'labels': (('en', 'Miedze'),), 'descriptions': (('en', 'village in \xc5\x81\xc3\xb3d\xc5\xba, Poland'),), 'aliases': (), 'sitelinks': (('szlwiki', 'Miedze', None), ('zh_min_nanwiki', 'Miedze', None), ('enwiki', 'Miedze', None), ('cewiki', '\xd0\x9c\xd0\xb5\xd0\xb4\xd0\xb7\xd0\xb5', None), ('ttwiki', '\xd0\x9c\xd0\xb5\xd0\xb4\xd0\xb7\xd0\xb5', None), ('frwiki', 'Miedze', None), ('plwiki', 'Miedze', None), ('ukwiki', '\xd0\x9c\xd0\xb5\xd0\xb4\xd0\xb7\xd0\xb5', None)), 'claims': ({'id': 'Q6655', 'numeric-id': 6655, 'entity-type': 'item', 'property': 'P421', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q6723', 'property': 'P421', 'numeric-id': 6723, 'type': 'wikibase-entityid'}, {'numeric-id': 36, 'entity-type': 'item', 'id': 'Q36', 'property': 'P17', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 3558970, 'property': 'P31', 'id': 'Q3558970'}, {'id': 'Q2458371', 'numeric-id': 2458371, 'type': 'wikibase-entityid', 'property': 'P131', 'entity-type': 'item'}, {'unit': '1', 'amount': '+120', 'property': 'P1082', 'type': 'quantity'}, {'amount': '+60', 'unit': '1', 'property': 'P1540', 'type': 'quantity'}, {'type': 'quantity', 'unit': '1', 'amount': '+60', 'property': 'P1539'}), 'title': 'Q6843682'}
{'type': 'item', 'id': 'Q6843735', 'labels': (('en', 'Miele Guide'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('hewiki', '\xd7\x9e\xd7\x93\xd7\xa8\xd7\x99\xd7\x9a \xd7\x9e\xd7\x99\xd7\x9c\xd7\x94', None), ('enwiki', 'Miele Guide', None)), 'claims': ({'after': 0, 'before': 0, 'precision': 9, 'time': '+2008-00-00T00:00:00Z', 'property': 'P571', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'type': 'time'}, {'property': 'P136', 'numeric-id': 1495660, 'type': 'wikibase-entityid', 'id': 'Q1495660', 'entity-type': 'item'}, {'type': 'monolingualtext', 'property': 'P1476', 'text': 'Miele Guide', 'language': 'en'}, {'id': 'Q223638', 'property': 'P31', 'numeric-id': 223638, 'entity-type': 'item', 'type': 'wikibase-entityid'}), 'title': 'Q6843735'}
{'type': 'item', 'id': 'Q6844274', 'labels': (('en', 'Mignot Memorial Hospital'),), 'descriptions': (('en', 'hospital in Alderney, Guernsey'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mignot Memorial Hospital', None),), 'claims': ({'property': 'P856', 'type': 'string', 'value': 'https://www.gov.gg/lemignot'}, {'type': 'quantity', 'unit': '1', 'property': 'P6801', 'amount': '+22'}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'type': 'time', 'property': 'P571', 'before': 0, 'timezone': 0, 'time': '+2008-00-00T00:00:00Z', 'precision': 9}, {'numeric-id': 179313, 'type': 'wikibase-entityid', 'property': 'P131', 'entity-type': 'item', 'id': 'Q179313'}, {'id': 'Q25230', 'property': 'P17', 'numeric-id': 25230, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 16917, 'type': 'wikibase-entityid', 'id': 'Q16917', 'property': 'P31'}, {'property': 'P6855', 'numeric-id': 64678853, 'type': 'wikibase-entityid', 'id': 'Q64678853', 'entity-type': 'item'}), 'title': 'Q6844274'}
{'type': 'item', 'id': 'Q6844779', 'labels': (('en', 'Miguel Rosa'), ('en-ca', 'Miguel Rosa'), ('en-g', 'Miguel Rosa')), 'descriptions': (('en', 'Portuguese footballer'), ('en-g', 'Portuguese footballer'), ('en-ca', 'Portuguese footballer')), 'aliases': (('en', 'Miguel Alexandre Jesus Rosa'),), 'sitelinks': (('trwiki', 'Miguel Rosa', None), ('enwiki', 'Miguel Rosa', None), ('arwiki', '\xd9\x85\xd9\x8a\xd8\xac\xd9\x8a\xd9\x84 \xd8\xb1\xd9\x88\xd8\xb3\xd8\xa7', None), ('itwiki', 'Miguel Alexandre Jesus Rosa', None), ('ptwiki', 'Miguel Rosa', None), ('arzwiki', '\xd9\x85\xd9\x8a\xd8\xac\xd9\x8a\xd9\x84 \xd8\xb1\xd9\x88\xd8\xb3\xd8\xa7', None)), 'claims': ({'property': 'P734', 'type': 'wikibase-entityid', 'numeric-id': 15410030, 'id': 'Q15410030', 'entity-type': 'item'}, {'property': 'P2048', 'amount': '+174', 'type': 'quantity', 'unit': 'http://www.wikidata.org/entity/Q174728'}, {'property': 'P413', 'numeric-id': 193592, 'id': 'Q193592', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'id': 'Q5', 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P31', 'numeric-id': 5}, {'id': 'Q5146', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P103', 'numeric-id': 5146}, {'numeric-id': 216510, 'id': 'Q216510', 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P54'}, {'id': 'Q131499', 'entity-type': 'item', 'numeric-id': 131499, 'property': 'P54', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'property': 'P54', 'id': 'Q634829', 'entity-type': 'item', 'numeric-id': 634829}, {'numeric-id': 261737, 'id': 'Q261737', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P54'}, {'id': 'Q7387221', 'numeric-id': 7387221, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P54'}, {'entity-type': 'item', 'id': 'Q216510', 'property': 'P54', 'numeric-id': 216510, 'type': 'wikibase-entityid'}, {'id': 'Q3590754', 'entity-type': 'item', 'numeric-id': 3590754, 'type': 'wikibase-entityid', 'property': 'P54'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q3873511', 'property': 'P54', 'numeric-id': 3873511}, {'id': 'Q3873524', 'numeric-id': 3873524, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P54'}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'timezone': 0, 'time': '+1989-01-13T00:00:00Z', 'after': 0, 'precision': 11, 'type': 'time', 'before': 0}, {'property': 'P641', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q2736', 'numeric-id': 2736}, {'property': 'P27', 'type': 'wikibase-entityid', 'id': 'Q45', 'entity-type': 'item', 'numeric-id': 45}, {'entity-type': 'item', 'property': 'P1412', 'type': 'wikibase-entityid', 'id': 'Q5146', 'numeric-id': 5146}, {'id': 'Q597', 'numeric-id': 597, 'type': 'wikibase-entityid', 'property': 'P19', 'entity-type': 'item'}, {'id': 'Q937857', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P106', 'numeric-id': 937857}, {'amount': '+67', 'unit': 'http://www.wikidata.org/entity/Q11570', 'type': 'quantity', 'property': 'P2067'}, {'entity-type': 'item', 'id': 'Q15620295', 'property': 'P735', 'numeric-id': 15620295, 'type': 'wikibase-entityid'}, {'numeric-id': 6581097, 'entity-type': 'item', 'property': 'P21', 'type': 'wikibase-entityid', 'id': 'Q6581097'}), 'title': 'Q6844779'}
{'type': 'item', 'id': 'Q6844861', 'labels': (('en', 'Miguel de Cervantes University'),), 'descriptions': (('en', 'university in Santiago, Chile'),), 'aliases': (), 'sitelinks': (('commonswiki', 'Category:Universidad Miguel de Cervantes', None), ('eswiki', 'Universidad Miguel de Cervantes', None), ('enwiki', 'Miguel de Cervantes University', None)), 'claims': ({'value': 'https://www.umcervantes.cl/', 'property': 'P856', 'type': 'string'}, {'type': 'string', 'value': 'UMCERVANTES1', 'property': 'P2002'}, {'property': 'P2013', 'value': 'UMCervantesChile', 'type': 'string'}, {'amount': '+1489', 'unit': '1', 'type': 'quantity', 'property': 'P8687'}, {'value': 'Universidad Miguel de Cervantes', 'property': 'P373', 'type': 'string'}, {'property': 'P2003', 'type': 'string', 'value': 'umcervanteschile'}, {'value': '8741017842', 'type': 'string', 'property': 'P11693'}, {'property': 'P18', 'type': 'string', 'value': 'Edificio de la Universidad Miguel de Cervantes, Santiago 20230328.jpg'}, {'type': 'string', 'property': 'P154', 'value': 'Logo UMCervantes.jpg'}, {'id': 'Q298', 'numeric-id': 298, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P17'}, {'type': 'time', 'time': '+1996-00-00T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'after': 0, 'property': 'P571', 'before': 0, 'precision': 9}, {'id': 'Q2887', 'property': 'P131', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 2887}, {'type': 'wikibase-entityid', 'numeric-id': 902104, 'id': 'Q902104', 'entity-type': 'item', 'property': 'P31'}, {'id': 'Q3918', 'type': 'wikibase-entityid', 'numeric-id': 3918, 'property': 'P31', 'entity-type': 'item'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q5682', 'numeric-id': 5682, 'property': 'P138'}), 'title': 'Q6844861'}
{'type': 'item', 'id': 'Q6844986', 'labels': (('en', 'Miha Terdi\xc4\x8d'),), 'descriptions': (('en', 'canoeist'),), 'aliases': (), 'sitelinks': (('enwiki', 'Miha Terdi\xc4\x8d', None), ('eswiki', 'Miha Terdi\xc4\x8d', None)), 'claims': ({'property': 'P734', 'numeric-id': 12803993, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q12803993'}, {'numeric-id': 13382566, 'id': 'Q13382566', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P106'}, {'numeric-id': 213934, 'id': 'Q213934', 'entity-type': 'item', 'property': 'P641', 'type': 'wikibase-entityid'}, {'id': 'Q12755595', 'numeric-id': 12755595, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P735'}, {'id': 'Q5', 'entity-type': 'item', 'property': 'P31', 'numeric-id': 5, 'type': 'wikibase-entityid'}, {'id': 'Q215', 'numeric-id': 215, 'entity-type': 'item', 'property': 'P27', 'type': 'wikibase-entityid'}, {'time': '+1980-01-01T00:00:00Z', 'before': 0, 'precision': 9, 'property': 'P569', 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'after': 0}, {'id': 'Q6581097', 'numeric-id': 6581097, 'entity-type': 'item', 'property': 'P21', 'type': 'wikibase-entityid'}), 'title': 'Q6844986'}
{'type': 'item', 'id': 'Q6845153', 'labels': (('en', 'Mihail Minciun\xc4\x83'),), 'descriptions': (('en-ca', 'Moldovan politician'), ('en-g', 'Moldovan politician'), ('en', 'Moldovan politician (1884-1935)')), 'aliases': (), 'sitelinks': (('rowiki', 'Mihail Minciun\xc4\x83', None), ('enwiki', 'Mihail Minciun\xc4\x83', None)), 'claims': ({'numeric-id': 82955, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q82955', 'property': 'P106'}, {'entity-type': 'item', 'property': 'P1412', 'id': 'Q7913', 'numeric-id': 7913, 'type': 'wikibase-entityid'}, {'property': 'P734', 'id': 'Q107236090', 'numeric-id': 107236090, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q2450759', 'numeric-id': 2450759, 'property': 'P19', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'id': 'Q5', 'entity-type': 'item', 'numeric-id': 5, 'property': 'P31', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 6581097, 'id': 'Q6581097', 'property': 'P21', 'type': 'wikibase-entityid'}, {'id': 'Q15621289', 'numeric-id': 15621289, 'property': 'P735', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'time', 'precision': 11, 'property': 'P569', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'after': 0, 'before': 0, 'time': '+1884-09-02T00:00:00Z'}, {'entity-type': 'item', 'property': 'P27', 'id': 'Q218', 'numeric-id': 218, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'numeric-id': 2450759, 'id': 'Q2450759', 'entity-type': 'item', 'property': 'P20'}, {'timezone': 0, 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1935-02-04T00:00:00Z', 'before': 0, 'after': 0, 'precision': 11, 'property': 'P570'}), 'title': 'Q6845153'}
{'type': 'item', 'id': 'Q6845333', 'labels': (('en', 'Mihocul River'),), 'descriptions': (('en-g', 'river in Romania'), ('en', 'river in Romania'), ('en-ca', 'river in Romania')), 'aliases': (), 'sitelinks': (('rowiki', 'R\xc3\xa2ul Mihocul', None), ('enwiki', 'Mihocul River', ('Q70893996',))), 'claims': ({'property': 'P403', 'id': 'Q12739964', 'entity-type': 'item', 'numeric-id': 12739964, 'type': 'wikibase-entityid'}, {'id': 'Q4022', 'property': 'P31', 'entity-type': 'item', 'numeric-id': 4022, 'type': 'wikibase-entityid'}, {'id': 'Q218', 'entity-type': 'item', 'numeric-id': 218, 'property': 'P17', 'type': 'wikibase-entityid'}, {'id': 'Q12046593', 'numeric-id': 12046593, 'type': 'wikibase-entityid', 'property': 'P4614', 'entity-type': 'item'}), 'title': 'Q6845333'}
{'type': 'item', 'id': 'Q6845311', 'labels': (('en', 'Miho Adachi'),), 'descriptions': (('en', 'Japanese canoeist'),), 'aliases': (), 'sitelinks': (('arwiki', '\xd9\x85\xd9\x8a\xd9\x87\xd9\x88 \xd8\xa3\xd8\xaf\xd8\xa7\xd8\xaa\xd8\xb4\xd9\x8a', None), ('jawiki', '\xe8\xb6\xb3\xe7\xab\x8b\xe7\xbe\x8e\xe7\xa9\x82', None), ('enwiki', 'Miho Adachi', None)), 'claims': ({'property': 'P569', 'after': 0, 'before': 0, 'type': 'time', 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1979-06-19T00:00:00Z', 'precision': 11}, {'id': 'Q24091129', 'type': 'wikibase-entityid', 'property': 'P734', 'entity-type': 'item', 'numeric-id': 24091129}, {'id': 'Q6581072', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 6581072, 'property': 'P21'}, {'type': 'wikibase-entityid', 'property': 'P27', 'id': 'Q17', 'numeric-id': 17, 'entity-type': 'item'}, {'property': 'P1559', 'language': 'ja', 'text': '\xe8\xb6\xb3\xe7\xab\x8b\xe7\xbe\x8e\xe7\xa9\x82', 'type': 'monolingualtext'}, {'id': 'Q13382566', 'numeric-id': 13382566, 'property': 'P106', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'value': '\xe3\x81\x82\xe3\x81\xa0\xe3\x81\xa1 \xe3\x81\xbf\xe3\x81\xb', 'type': 'string', 'property': 'P1814'}, {'id': 'Q5', 'numeric-id': 5, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P31'}, {'property': 'P1344', 'entity-type': 'item', 'numeric-id': 8558, 'type': 'wikibase-entityid', 'id': 'Q8558'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P1344', 'numeric-id': 494906, 'id': 'Q494906'}, {'id': 'Q213934', 'numeric-id': 213934, 'property': 'P641', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P1889', 'entity-type': 'item', 'numeric-id': 15650769, 'type': 'wikibase-entityid', 'id': 'Q15650769'}, {'entity-type': 'item', 'numeric-id': 1932885, 'id': 'Q1932885', 'property': 'P735', 'type': 'wikibase-entityid'}, {'property': 'P69', 'id': 'Q46492', 'numeric-id': 46492, 'entity-type': 'item', 'type': 'wikibase-entityid'}), 'title': 'Q6845311'}
{'type': 'item', 'id': 'Q6845459', 'labels': (('en', 'Mijat Tomi\xc4\x87'),), 'descriptions': (('en', 'Bosnian Croat outlaw'),), 'aliases': (), 'sitelinks': (('srwiki', 'Mijat Tomi\xc4\x87', None), ('hrwiki', 'Mijat Tomi\xc4\x87', None), ('shwiki', 'Mijat Tomi\xc4\x87', None), ('dewiki', 'Mijat Tomi\xc4\x87', None), ('mkwiki', '\xd0\x9c\xd0\xb8\xd1\x98\xd0\xb0\xd1\x82 \xd0\xa2\xd0\xbe\xd0\xbc\xd0\xb8\xd1\x9c', None), ('enwiki', 'Mijat Tomi\xc4\x87', None), ('bswiki', 'Mijat Tomi\xc4\x87', None)), 'claims': ({'type': 'wikibase-entityid', 'numeric-id': 17018221, 'property': 'P735', 'entity-type': 'item', 'id': 'Q17018221'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P19', 'id': 'Q3040578', 'numeric-id': 3040578}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 5, 'property': 'P31', 'id': 'Q5'}, {'entity-type': 'item', 'numeric-id': 6581097, 'property': 'P21', 'id': 'Q6581097', 'type': 'wikibase-entityid'}, {'property': 'P570', 'time': '+1656-01-01T00:00:00Z', 'before': 0, 'type': 'time', 'precision': 9, 'timezone': 0, 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'after': 0, 'timezone': 0, 'before': 0, 'type': 'time', 'precision': 9, 'property': 'P569', 'time': '+1610-01-01T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}), 'title': 'Q6845459'}
{'type': 'item', 'id': 'Q6845560', 'labels': (('en-us', 'Mika Yoshikawa'), ('en', 'Mika Yoshikawa')), 'descriptions': (('en-us', 'Japanese middle and long distance runner ( Track & Field )'), ('en', 'Japanese middle and long distance runner ( Track & Field )')), 'aliases': (), 'sitelinks': (('jawiki', '\xe5\x90\x89\xe5\xb7\x9d\xe7\xbe\x8e\xe9\xa6\x99', None), ('arwiki', '\xd9\x85\xd9\x8a\xd9\x83\xd8\xa7 \xd9\x8a\xd9\x88\xd8\xb4\xd9\x8a\xd9\x83\xd8\xa7\xd9\x88\xd8\xa7', None), ('nowiki', 'Mika Yoshikawa', None), ('enwiki', 'Mika Yoshikawa', None), ('dewiki', 'Mika Yoshikawa', None)), 'claims': ({'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P106', 'id': 'Q11513337', 'numeric-id': 11513337}, {'property': 'P106', 'entity-type': 'item', 'id': 'Q4439155', 'type': 'wikibase-entityid', 'numeric-id': 4439155}, {'entity-type': 'item', 'property': 'P106', 'id': 'Q13381753', 'type': 'wikibase-entityid', 'numeric-id': 13381753}, {'property': 'P2048', 'type': 'quantity', 'amount': '+155', 'unit': 'http://www.wikidata.org/entity/Q174728'}, {'id': 'Q17', 'numeric-id': 17, 'property': 'P27', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'id': 'Q8577', 'numeric-id': 8577, 'property': 'P1344', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q244322', 'numeric-id': 244322, 'property': 'P1344', 'type': 'wikibase-entityid'}, {'numeric-id': 329679, 'entity-type': 'item', 'id': 'Q329679', 'property': 'P1344', 'type': 'wikibase-entityid'}, {'value': 'Mika Yoshikawa 2012.jpg', 'type': 'string', 'property': 'P18'}, {'property': 'P569', 'time': '+1984-09-16T00:00:00Z', 'type': 'time', 'precision': 11, 'timezone': 0, 'after': 0, 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'numeric-id': 5, 'property': 'P31', 'id': 'Q5', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'numeric-id': 542, 'property': 'P641', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q542'}, {'numeric-id': 21488338, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P734', 'id': 'Q21488338'}, {'type': 'quantity', 'unit': 'http://www.wikidata.org/entity/Q11570', 'amount': '+39', 'property': 'P2067'}, {'language': 'ja', 'property': 'P1559', 'type': 'monolingualtext', 'text': '\xe5\x90\x89\xe5\xb7\x9d\xe7\xbe\x8e\xe9\xa6\x99'}, {'property': 'P21', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q6581072', 'numeric-id': 6581072}, {'value': '\xe3\x82\x88\xe3\x81\x97\xe3\x81\x8b\xe3\x82\x8f \xe3\x81\xbf\xe3\x81\x8', 'type': 'string', 'property': 'P1814'}, {'entity-type': 'item', 'id': 'Q16578428', 'numeric-id': 16578428, 'property': 'P735', 'type': 'wikibase-entityid'}), 'title': 'Q6845560'}
{'type': 'item', 'id': 'Q6845594', 'labels': (('en', 'Mikael Colville-Andersen'),), 'descriptions': (('en', 'Danish urban designer'),), 'aliases': (), 'sitelinks': (('plwiki', 'Mikael Colville-Andersen', None), ('plwikiquote', 'Mikael Colville-Andersen', None), ('arzwiki', '\xd9\x85\xd9\x8a\xd9\x83\xd8\xa7\xd9\x8a\xd9\x84 \xd9\x83\xd9\x88\xd9\x84\xda\xa4\xd9\x8a\xd9\x84 \xd8\xa7\xd9\x86\xd8\xaf\xd9\x8a\xd8\xb1\xd8\xb3\xd9\x8a\xd9\x86', None), ('enwiki', 'Mikael Colville-Andersen', None), ('dawiki', 'Mikael Colville-Andersen', None), ('commonswiki', 'Category:Mikael Colville-Andersen', None), ('frwiki', 'Mikael Colville-Andersen', None)), 'claims': ({'numeric-id': 1860, 'id': 'Q1860', 'entity-type': 'item', 'property': 'P1412', 'type': 'wikibase-entityid'}, {'numeric-id': 6581097, 'id': 'Q6581097', 'property': 'P21', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'id': 'Q15620350', 'entity-type': 'item', 'numeric-id': 15620350, 'property': 'P735'}, {'type': 'string', 'value': 'Mikael Colville-Andersen', 'property': 'P373'}, {'id': 'Q936354', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 936354, 'property': 'P69'}, {'property': 'P106', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q2526255', 'numeric-id': 2526255}, {'numeric-id': 28389, 'type': 'wikibase-entityid', 'id': 'Q28389', 'property': 'P106', 'entity-type': 'item'}, {'entity-type': 'item', 'property': 'P106', 'numeric-id': 131062, 'id': 'Q131062', 'type': 'wikibase-entityid'}, {'property': 'P106', 'entity-type': 'item', 'id': 'Q5322166', 'numeric-id': 5322166, 'type': 'wikibase-entityid'}, {'property': 'P18', 'type': 'string', 'value': 'MJK 19091 Mikael Colville-Andersen.jpg'}, {'entity-type': 'item', 'property': 'P101', 'numeric-id': 59950, 'id': 'Q59950', 'type': 'wikibase-entityid'}, {'id': 'Q53121', 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P101', 'numeric-id': 53121}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q515', 'numeric-id': 515, 'property': 'P101'}, {'before': 0, 'property': 'P569', 'precision': 11, 'after': 0, 'timezone': 0, 'time': '+1968-01-29T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time'}, {'entity-type': 'item', 'id': 'Q16865701', 'numeric-id': 16865701, 'property': 'P734', 'type': 'wikibase-entityid'}, {'id': 'Q21501893', 'property': 'P734', 'type': 'wikibase-entityid', 'numeric-id': 21501893, 'entity-type': 'item'}, {'entity-type': 'item', 'numeric-id': 5, 'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q5'}, {'property': 'P27', 'entity-type': 'item', 'id': 'Q756617', 'numeric-id': 756617, 'type': 'wikibase-entityid'}, {'type': 'string', 'property': 'P12098', 'value': '847781'}, {'id': 'Q126624', 'numeric-id': 126624, 'entity-type': 'item', 'property': 'P19', 'type': 'wikibase-entityid'}), 'title': 'Q6845594'}
{'type': 'item', 'id': 'Q6845751', 'labels': (('en', 'Mikawa Takahama Station'),), 'descriptions': (('en', 'railway station in Takahama, Aichi prefecture, Japan'),), 'aliases': (), 'sitelinks': (('kowiki', '\xeb\xaf\xb8\xec\xb9\xb4\xec\x99\x80\xed\x83\x80\xec\xb9\xb4\xed\x95\x98\xeb\xa7\x88\xec\x97\xad', None), ('enwiki', 'Mikawa Takahama Station', None), ('jawiki', '\xe4\xb8\x89\xe6\xb2\xb3\xe9\xab\x98\xe6\xb5\x9c\xe9\xa7\x85', None), ('ckbwiki', '\xd9\x88\xdb\x8e\xd8\xb3\xd8\xaa\xda\xaf\xdb\x95\xdb\x8c \xd9\x85\xdb\x8c\xda\xa9\xd8\xa7\xd9\x88\xd8\xa7 \xd8\xaa\xd8\xa7\xda\xa9\xd8\xa7\xda\xbe\xdb\x95\xd9\x85\xd8\xa7', None), ('jvwiki', 'Setatsiyun Mikawa Takahama', None), ('idwiki', 'Stasiun Mikawa Takahama', None), ('commonswiki', 'Category:Mikawa Takahama Station', None), ('zhwiki', '\xe4\xb8\x89\xe6\xb2\xb3\xe9\xab\x98\xe6\xbf\xb1\xe7\xab\x99', None)), 'claims': ({'entity-type': 'item', 'id': 'Q30850', 'numeric-id': 30850, 'type': 'wikibase-entityid', 'property': 'P137'}, {'property': 'P31', 'entity-type': 'item', 'numeric-id': 55488, 'id': 'Q55488', 'type': 'wikibase-entityid'}, {'value': 'MT-Mikawa Takahama Station-WestGate 2018.jpg', 'property': 'P18', 'type': 'string'}, {'before': 0, 'type': 'time', 'precision': 11, 'property': 'P571', 'time': '+1918-04-20T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'timezone': 0}, {'value': 'Mikawa Takahama Station', 'property': 'P373', 'type': 'string'}, {'entity-type': 'item', 'numeric-id': 816734, 'id': 'Q816734', 'property': 'P131', 'type': 'wikibase-entityid'}, {'property': 'P81', 'id': 'Q11415758', 'type': 'wikibase-entityid', 'numeric-id': 11415758, 'entity-type': 'item'}, {'entity-type': 'item', 'numeric-id': 8056025, 'property': 'P197', 'type': 'wikibase-entityid', 'id': 'Q8056025'}, {'property': 'P197', 'type': 'wikibase-entityid', 'id': 'Q7677018', 'numeric-id': 7677018, 'entity-type': 'item'}, {'type': 'string', 'property': 'P856', 'value': 'https://www.meitetsu.co.jp/train/station_info/line04/station/1627.html'}, {'type': 'string', 'value': 'MSN-MU06.svg', 'property': 'P154'}, {'entity-type': 'item', 'id': 'Q17', 'numeric-id': 17, 'property': 'P17', 'type': 'wikibase-entityid'}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 9, 'timezone': 0, 'property': 'P1619', 'before': 0, 'type': 'time', 'after': 0, 'time': '+1918-00-00T00:00:00Z'}, {'property': 'P421', 'id': 'Q909085', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 909085}), 'title': 'Q6845751'}
{'type': 'item', 'id': 'Q6846236', 'labels': (('en', 'Hijra'),), 'descriptions': (('en', 'the emigration of Muslims to the Islamic territory (D\xc4\x81r al-Isl\xc4\x81m)'),), 'aliases': (), 'sitelinks': (('urwiki', '\xdb\x81\xd8\xac\xd8\xb1\xd8\xaa', None),), 'claims': ({'type': 'wikibase-entityid', 'numeric-id': 432, 'entity-type': 'item', 'id': 'Q432', 'property': 'P1269'}, {'property': 'P1269', 'id': 'Q771468', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 771468}, {'property': 'P31', 'entity-type': 'item', 'numeric-id': 187668, 'type': 'wikibase-entityid', 'id': 'Q187668'}, {'id': 'Q131482', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 131482, 'property': 'P1889'}), 'title': 'Q6846236'}
{'type': 'item', 'id': 'Q6846259', 'labels': (('en', 'Mike Carlucci'),), 'descriptions': (('en', 'American sports announcer'),), 'aliases': (), 'sitelinks': (('arzwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83 \xd9\x83\xd8\xa7\xd8\xb1\xd9\x84\xd9\x88\xd8\xaa\xd8\xb4\xd9\x89', None),), 'claims': ({'property': 'P18', 'type': 'string', 'value': 'Carlucci.jpg'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P734', 'numeric-id': 36911497, 'id': 'Q36911497'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 99, 'id': 'Q99', 'property': 'P19'}, {'entity-type': 'item', 'numeric-id': 6581097, 'id': 'Q6581097', 'type': 'wikibase-entityid', 'property': 'P21'}, {'entity-type': 'item', 'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q5', 'numeric-id': 5}, {'before': 0, 'timezone': 0, 'precision': 7, 'time': '+1901-00-00T00:00:00Z', 'property': 'P569', 'type': 'time', 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'id': 'Q30', 'numeric-id': 30, 'property': 'P27', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'id': 'Q1371925', 'numeric-id': 1371925, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P106'}, {'type': 'wikibase-entityid', 'numeric-id': 361309, 'entity-type': 'item', 'id': 'Q361309', 'property': 'P735'}, {'id': 'Q7397744', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 7397744, 'property': 'P69'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 65, 'property': 'P551', 'id': 'Q65'}), 'title': 'Q6846259'}
{'type': 'item', 'id': 'Q6846665', 'labels': (('en', 'Mike Edwards'),), 'descriptions': (('en-g', 'British athlete'), ('en', 'British athlete'), ('en-ca', 'British athlete')), 'aliases': (('en', 'Michael Edwards'),), 'sitelinks': (('enwiki', 'Mike Edwards (pole vaulter)', None), ('arwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83 \xd8\xa5\xd8\xaf\xd9\x88\xd8\xa7\xd8\xb1\xd8\xaf\xd8\xb2 (\xd9\x85\xd9\x86\xd8\xa7\xd9\x81\xd8\xb3 \xd8\xa3\xd9\x84\xd8\xb9\xd8\xa7\xd8\xa8 \xd9\x82\xd9\x88\xd9\x89)', None)), 'claims': ({'type': 'wikibase-entityid', 'id': 'Q361309', 'entity-type': 'item', 'numeric-id': 361309, 'property': 'P735'}, {'id': 'Q11513337', 'entity-type': 'item', 'property': 'P106', 'numeric-id': 11513337, 'type': 'wikibase-entityid'}, {'property': 'P1344', 'numeric-id': 8488, 'id': 'Q8488', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q145', 'numeric-id': 145, 'property': 'P27', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P21', 'entity-type': 'item', 'numeric-id': 6581097, 'type': 'wikibase-entityid', 'id': 'Q6581097'}, {'entity-type': 'item', 'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q5', 'numeric-id': 5}, {'id': 'Q185027', 'property': 'P2416', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 185027}, {'id': 'Q2691159', 'numeric-id': 2691159, 'property': 'P734', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'numeric-id': 1860, 'property': 'P1412', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q1860'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 542, 'property': 'P641', 'id': 'Q542'}, {'after': 0, 'property': 'P569', 'before': 0, 'precision': 11, 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1968-10-19T00:00:00Z', 'type': 'time'}), 'title': 'Q6846665'}
{'type': 'item', 'id': 'Q6846725', 'labels': (('en', 'Mike Evgen'),), 'descriptions': (('en', 'American boxer'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mike Evgen', None),), 'claims': ({'property': 'P735', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q361309', 'numeric-id': 361309}, {'property': 'P641', 'numeric-id': 32112, 'id': 'Q32112', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'entity-type': 'item', 'property': 'P21', 'type': 'wikibase-entityid', 'numeric-id': 6581097, 'id': 'Q6581097'}, {'entity-type': 'item', 'id': 'Q11338576', 'property': 'P106', 'numeric-id': 11338576, 'type': 'wikibase-entityid'}, {'id': 'Q766904', 'property': 'P2416', 'numeric-id': 766904, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P31', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q5', 'numeric-id': 5}, {'id': 'Q30', 'numeric-id': 30, 'type': 'wikibase-entityid', 'property': 'P27', 'entity-type': 'item'}), 'title': 'Q6846725'}
{'type': 'item', 'id': 'Q6846738', 'labels': (('en', 'Mike Faragalli'),), 'descriptions': (('en', 'American football player and coach'),), 'aliases': (('en', 'Michael Faragalli'),), 'sitelinks': (('enwiki', 'Mike Faragalli', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83 \xd9\x81\xd8\xb1\xd8\xac\xd8\xa7\xd9\x84\xd9\x89', None)), 'claims': ({'numeric-id': 30, 'entity-type': 'item', 'id': 'Q30', 'type': 'wikibase-entityid', 'property': 'P27'}, {'numeric-id': 1345, 'id': 'Q1345', 'entity-type': 'item', 'property': 'P19', 'type': 'wikibase-entityid'}, {'property': 'P106', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q2066131', 'numeric-id': 2066131}, {'id': 'Q6581097', 'numeric-id': 6581097, 'type': 'wikibase-entityid', 'property': 'P21', 'entity-type': 'item'}, {'id': 'Q674953', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 674953, 'property': 'P413'}, {'property': 'P734', 'numeric-id': 37489708, 'type': 'wikibase-entityid', 'id': 'Q37489708', 'entity-type': 'item'}, {'type': 'time', 'timezone': 0, 'before': 0, 'precision': 9, 'time': '+1958-01-01T00:00:00Z', 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569'}, {'id': 'Q41323', 'entity-type': 'item', 'property': 'P641', 'numeric-id': 41323, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'property': 'P31', 'numeric-id': 5, 'entity-type': 'item', 'id': 'Q5'}, {'entity-type': 'item', 'numeric-id': 635078, 'type': 'wikibase-entityid', 'id': 'Q635078', 'property': 'P69'}, {'numeric-id': 16823133, 'property': 'P54', 'type': 'wikibase-entityid', 'id': 'Q16823133', 'entity-type': 'item'}, {'entity-type': 'item', 'numeric-id': 361309, 'property': 'P735', 'id': 'Q361309', 'type': 'wikibase-entityid'}), 'title': 'Q6846738'}
{'type': 'item', 'id': 'Q6846979', 'labels': (('en', 'Mike Gebhardt'),), 'descriptions': (('en', 'sailor'),), 'aliases': (), 'sitelinks': (('dewiki', 'Michael Gebhardt', None), ('fawiki', '\xd9\x85\xd8\xa7\xdb\x8c\xda\xa9 \xda\xaf\xd8\xa8\xd9\x87\xd8\xa7\xd8\xb1\xd8\xaa', None), ('zhwiki', '\xe8\xbf\x88\xe5\x85\x8b\xc2\xb7\xe6\xa0\xbc\xe5\xb8\x83\xe5\x93\x88\xe7\x89\xb9', None), ('arwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83 \xd8\xba\xd9\x8a\xd8\xa8\xd9\x87\xd8\xa7\xd8\xb1\xd8\xaa', None), ('svwiki', 'Mike Gebhardt', None), ('eswiki', 'Michael Gebhardt', None), ('ptwiki', 'Mike Gebhardt', None), ('enwiki', 'Mike Gebhardt', None), ('frwiki', 'Michael Gebhardt', None)), 'claims': ({'numeric-id': 5, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P31', 'id': 'Q5'}, {'type': 'wikibase-entityid', 'property': 'P1344', 'entity-type': 'item', 'id': 'Q8456', 'numeric-id': 8456}, {'property': 'P1344', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q8470', 'numeric-id': 8470}, {'id': 'Q8488', 'numeric-id': 8488, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P1344'}, {'id': 'Q8531', 'type': 'wikibase-entityid', 'numeric-id': 8531, 'entity-type': 'item', 'property': 'P1344'}, {'type': 'wikibase-entityid', 'numeric-id': 8544, 'property': 'P1344', 'entity-type': 'item', 'id': 'Q8544'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P27', 'id': 'Q30', 'numeric-id': 30}, {'property': 'P734', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 1306278, 'id': 'Q1306278'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q6581097', 'numeric-id': 6581097, 'property': 'P21'}, {'type': 'wikibase-entityid', 'property': 'P106', 'entity-type': 'item', 'id': 'Q476246', 'numeric-id': 476246}, {'precision': 11, 'after': 0, 'timezone': 0, 'time': '+1965-11-25T00:00:00Z', 'before': 0, 'type': 'time', 'property': 'P569', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'entity-type': 'item', 'property': 'P735', 'id': 'Q361309', 'type': 'wikibase-entityid', 'numeric-id': 361309}, {'property': 'P19', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 16567, 'id': 'Q16567'}, {'value': 'USAMG52', 'type': 'string', 'property': 'P11616'}, {'entity-type': 'item', 'id': 'Q14085739', 'numeric-id': 14085739, 'property': 'P641', 'type': 'wikibase-entityid'}), 'title': 'Q6846979'}
{'type': 'item', 'id': 'Q6847361', 'labels': (('en', 'Mike Inglis'),), 'descriptions': (('en', 'Canadian sportscaster'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mike Inglis', None),), 'claims': ({'property': 'P19', 'numeric-id': 172, 'type': 'wikibase-entityid', 'id': 'Q172', 'entity-type': 'item'}, {'numeric-id': 6581097, 'property': 'P21', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q6581097'}, {'property': 'P69', 'id': 'Q5939790', 'numeric-id': 5939790, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P734', 'id': 'Q16871005', 'entity-type': 'item', 'numeric-id': 16871005, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'property': 'P106', 'id': 'Q3665646', 'entity-type': 'item', 'numeric-id': 3665646}, {'entity-type': 'item', 'numeric-id': 2986228, 'id': 'Q2986228', 'type': 'wikibase-entityid', 'property': 'P106'}, {'type': 'wikibase-entityid', 'numeric-id': 66472703, 'entity-type': 'item', 'id': 'Q66472703', 'property': 'P1889'}, {'entity-type': 'item', 'id': 'Q16', 'numeric-id': 16, 'property': 'P27', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 361309, 'id': 'Q361309', 'property': 'P735'}, {'numeric-id': 5372, 'type': 'wikibase-entityid', 'property': 'P641', 'entity-type': 'item', 'id': 'Q5372'}, {'property': 'P31', 'numeric-id': 5, 'id': 'Q5', 'entity-type': 'item', 'type': 'wikibase-entityid'}), 'title': 'Q6847361'}
{'type': 'item', 'id': 'Q6847517', 'labels': (('en', 'Mike King'), ('en-ca', 'Mike King'), ('en-g', 'Mike King')), 'descriptions': (('en', 'American bicycle motocross rider'),), 'aliases': (('en', 'Michael Allen King'),), 'sitelinks': (('enwiki', 'Mike King (BMX rider)', None), ('eswiki', 'Michael King (ciclista)', None), ('fawiki', '\xd9\x85\xdb\x8c\xda\xa9 \xda\xa9\xdb\x8c\xd9\x86\xda\xaf (\xd8\xaf\xd9\x88\xda\x86\xd8\xb1\xd8\xae\xd9\x87\xe2\x80\x8c\xd8\xb3\xd9\x88\xd8\xa7\xd8\xb1)', None), ('plwiki', 'Mike King', None), ('arwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83 \xd9\x83\xd9\x8a\xd9\x86\xd8\xac (\xd9\x85\xd8\xaa\xd8\xb3\xd8\xa7\xd8\xa8\xd9\x82)', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83 \xd9\x83\xd9\x8a\xd9\x86\xd8\xac (\xd9\x84\xd8\xa7\xd8\xb9\xd8\xa8 \xd8\xb3\xd8\xa8\xd8\xa7\xd9\x82 \xd8\xb9\xd8\xac\xd9\x84)', None), ('frwiki', 'Mike King', None)), 'claims': ({'numeric-id': 361309, 'property': 'P735', 'entity-type': 'item', 'id': 'Q361309', 'type': 'wikibase-entityid'}, {'property': 'P735', 'type': 'wikibase-entityid', 'id': 'Q4927524', 'entity-type': 'item', 'numeric-id': 4927524}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 18118122, 'id': 'Q18118122', 'property': 'P735'}, {'property': 'P1477', 'language': 'en', 'text': 'Michael Allen King', 'type': 'monolingualtext'}, {'property': 'P19', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q61', 'numeric-id': 61}, {'entity-type': 'item', 'numeric-id': 672066, 'id': 'Q672066', 'property': 'P413', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q6581097', 'property': 'P21', 'type': 'wikibase-entityid', 'numeric-id': 6581097}, {'id': 'Q535214', 'property': 'P734', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 535214}, {'property': 'P569', 'precision': 11, 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0, 'type': 'time', 'time': '+1969-06-30T00:00:00Z', 'after': 0}, {'numeric-id': 2215841, 'property': 'P641', 'entity-type': 'item', 'id': 'Q2215841', 'type': 'wikibase-entityid'}, {'numeric-id': 5, 'id': 'Q5', 'property': 'P31', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'id': 'Q30', 'type': 'wikibase-entityid', 'numeric-id': 30, 'property': 'P27', 'entity-type': 'item'}, {'id': 'Q2309784', 'property': 'P106', 'entity-type': 'item', 'numeric-id': 2309784, 'type': 'wikibase-entityid'}), 'title': 'Q6847517'}
{'type': 'item', 'id': 'Q6847723', 'labels': (('en', 'Mike Lude'),), 'descriptions': (('en', 'American football and baseball player and coach, college athletics administrator'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mike Lude', None),), 'claims': ({'numeric-id': 6581097, 'type': 'wikibase-entityid', 'property': 'P21', 'entity-type': 'item', 'id': 'Q6581097'}, {'entity-type': 'item', 'numeric-id': 10871364, 'type': 'wikibase-entityid', 'id': 'Q10871364', 'property': 'P106'}, {'entity-type': 'item', 'numeric-id': 19204627, 'id': 'Q19204627', 'property': 'P106', 'type': 'wikibase-entityid'}, {'precision': 8, 'property': 'P569', 'timezone': 0, 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1920-00-00T00:00:00Z', 'before': 0, 'type': 'time'}, {'id': 'Q1050571', 'property': 'P413', 'numeric-id': 1050571, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'id': 'Q93525826', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P1327', 'numeric-id': 93525826}, {'id': 'Q37530952', 'type': 'wikibase-entityid', 'property': 'P734', 'entity-type': 'item', 'numeric-id': 37530952}, {'numeric-id': 5, 'id': 'Q5', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P31'}, {'entity-type': 'item', 'numeric-id': 30, 'type': 'wikibase-entityid', 'property': 'P27', 'id': 'Q30'}, {'id': 'Q5763774', 'type': 'wikibase-entityid', 'property': 'P69', 'entity-type': 'item', 'numeric-id': 5763774}, {'property': 'P735', 'type': 'wikibase-entityid', 'numeric-id': 361309, 'id': 'Q361309', 'entity-type': 'item'}, {'id': 'Q107877685', 'property': 'P54', 'entity-type': 'item', 'numeric-id': 107877685, 'type': 'wikibase-entityid'}, {'property': 'P54', 'entity-type': 'item', 'id': 'Q107874911', 'numeric-id': 107874911, 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'property': 'P641', 'numeric-id': 41323, 'id': 'Q41323', 'type': 'wikibase-entityid'}), 'title': 'Q6847723'}
{'type': 'item', 'id': 'Q6847894', 'labels': (('en', 'Mike McCormack'),), 'descriptions': (('en', 'American baseball player (1882-1953)'),), 'aliases': (('en', 'Michael Joseph McCormick'),), 'sitelinks': (('enwiki', 'Mike McCormick (third baseman)', None), ('arwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83 \xd9\x85\xd8\xa7\xd9\x83\xd9\x88\xd8\xb1\xd9\x85\xd9\x8a\xd9\x83 (\xd9\x84\xd8\xa7\xd8\xb9\xd8\xa8 \xd9\x83\xd8\xb1\xd8\xa9 \xd9\x82\xd8\xa7\xd8\xb9\xd8\xaf\xd8\xa9)', None)), 'claims': ({'id': 'Q10871364', 'type': 'wikibase-entityid', 'numeric-id': 10871364, 'entity-type': 'item', 'property': 'P106'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 787652, 'id': 'Q787652', 'property': 'P54'}, {'entity-type': 'item', 'numeric-id': 26339, 'property': 'P20', 'id': 'Q26339', 'type': 'wikibase-entityid'}, {'property': 'P735', 'numeric-id': 361309, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q361309'}, {'property': 'P27', 'id': 'Q30', 'numeric-id': 30, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'precision': 11, 'property': 'P569', 'after': 0, 'before': 0, 'type': 'time', 'time': '+1882-10-22T00:00:00Z'}, {'value': 'Mike McCormick 1912.jpeg', 'property': 'P18', 'type': 'string'}, {'numeric-id': 15224082, 'id': 'Q15224082', 'type': 'wikibase-entityid', 'property': 'P734', 'entity-type': 'item'}, {'before': 0, 'timezone': 0, 'property': 'P570', 'type': 'time', 'after': 0, 'precision': 11, 'time': '+1953-11-18T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'numeric-id': 6581097, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q6581097', 'property': 'P21'}, {'entity-type': 'item', 'id': 'Q5369', 'numeric-id': 5369, 'property': 'P641', 'type': 'wikibase-entityid'}, {'numeric-id': 5, 'type': 'wikibase-entityid', 'id': 'Q5', 'property': 'P31', 'entity-type': 'item'}, {'numeric-id': 26339, 'type': 'wikibase-entityid', 'id': 'Q26339', 'entity-type': 'item', 'property': 'P19'}, {'property': 'P413', 'type': 'wikibase-entityid', 'id': 'Q1368170', 'entity-type': 'item', 'numeric-id': 1368170}), 'title': 'Q6847894'}
{'type': 'item', 'id': 'Q6847915', 'labels': (('en', 'Mike McDonagh'),), 'descriptions': (('en', 'Irish humanitarian'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mike McDonagh', None),), 'claims': ({'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q6581097', 'numeric-id': 6581097, 'property': 'P21'}, {'property': 'P108', 'type': 'wikibase-entityid', 'numeric-id': 1065, 'entity-type': 'item', 'id': 'Q1065'}, {'id': 'Q21511809', 'entity-type': 'item', 'numeric-id': 21511809, 'property': 'P734', 'type': 'wikibase-entityid'}, {'id': 'Q5', 'numeric-id': 5, 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q361309', 'type': 'wikibase-entityid', 'property': 'P735', 'entity-type': 'item', 'numeric-id': 361309}, {'value': 'Mike McDonagh.jpg', 'property': 'P18', 'type': 'string'}), 'title': 'Q6847915'}
{'type': 'item', 'id': 'Q6847977', 'labels': (('en', 'Beybesli'), ('en-g', 'Beybesli'), ('en-ca', 'Beybesli')), 'descriptions': (('en', 'village in Kavak, Samsun, Turkey'),), 'aliases': (), 'sitelinks': (('ttwiki', '\xd0\x91\xd0\xb5\xd0\xb9\xd0\xb1\xd0\xb5\xd1\x81\xd0\xbb\xd0\xb8 (\xd0\x9a\xd0\xb0\xd0\xb2\xd0\xb0\xd0\xba)', None), ('viwiki', 'Beybesli, Kavak', None), ('trwiki', 'Beybesli, Kavak', None), ('cewiki', '\xd0\x91\xd0\xb5\xd0\xb9\xd0\xb1\xd0\xb5\xd1\x81\xd0\xbb\xd0\xb8 (\xd0\x9a\xd0\xb0\xd0\xb2\xd0\xb0\xd0\xba)', None)), 'claims': ({'id': 'Q43', 'entity-type': 'item', 'property': 'P17', 'numeric-id': 43, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P131', 'numeric-id': 1179834, 'id': 'Q1179834'}, {'id': 'Q123705', 'entity-type': 'item', 'property': 'P31', 'numeric-id': 123705, 'type': 'wikibase-entityid'}), 'title': 'Q6847977'}
{'type': 'item', 'id': 'Q6848082', 'labels': (('en-ca', 'Mike Montgomery'), ('en', 'Mike Montgomery'), ('en-g', 'Mike Montgomery')), 'descriptions': (('en', 'American football player'),), 'aliases': (('en', 'James Michael Montgomery'),), 'sitelinks': (('enwiki', 'Mike Montgomery (American football)', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83 \xd9\x85\xd9\x88\xd9\x86\xd8\xaa\xd8\xac\xd9\x88\xd9\x85\xd8\xb1\xd9\x89', None), ('arwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83 \xd9\x85\xd9\x88\xd9\x86\xd8\xaa\xd8\xac\xd9\x88\xd9\x85\xd8\xb1\xd9\x8a', None)), 'claims': ({'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'property': 'P569', 'before': 0, 'time': '+1949-07-10T00:00:00Z', 'type': 'time', 'after': 0, 'timezone': 0}, {'type': 'wikibase-entityid', 'id': 'Q30', 'numeric-id': 30, 'entity-type': 'item', 'property': 'P27'}, {'property': 'P641', 'numeric-id': 41323, 'type': 'wikibase-entityid', 'id': 'Q41323', 'entity-type': 'item'}, {'numeric-id': 19204627, 'property': 'P106', 'type': 'wikibase-entityid', 'id': 'Q19204627', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'numeric-id': 5287845, 'property': 'P69', 'id': 'Q5287845', 'entity-type': 'item'}, {'property': 'P734', 'type': 'wikibase-entityid', 'id': 'Q2780561', 'numeric-id': 2780561, 'entity-type': 'item'}, {'property': 'P54', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q204862', 'numeric-id': 204862}, {'id': 'Q320484', 'property': 'P54', 'numeric-id': 320484, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'id': 'Q272220', 'entity-type': 'item', 'numeric-id': 272220, 'property': 'P54', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P31', 'id': 'Q5', 'numeric-id': 5}, {'entity-type': 'item', 'id': 'Q6581097', 'type': 'wikibase-entityid', 'numeric-id': 6581097, 'property': 'P21'}, {'entity-type': 'item', 'property': 'P735', 'type': 'wikibase-entityid', 'numeric-id': 361309, 'id': 'Q361309'}, {'amount': '+210', 'property': 'P2067', 'type': 'quantity', 'unit': 'http://www.wikidata.org/entity/Q100995'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 912985, 'id': 'Q912985', 'property': 'P413'}, {'property': 'P2048', 'unit': 'http://www.wikidata.org/entity/Q218593', 'amount': '+74', 'type': 'quantity'}, {'id': 'Q128349', 'entity-type': 'item', 'numeric-id': 128349, 'type': 'wikibase-entityid', 'property': 'P19'}), 'title': 'Q6848082'}
{'type': 'item', 'id': 'Q6848161', 'labels': (('en', 'Mike Nagy'),), 'descriptions': (('en', 'American baseball player'),), 'aliases': (('en', 'Michael Timothy Nagy'),), 'sitelinks': (('enwiki', 'Mike Nagy', None), ('arwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83 \xd9\x86\xd8\xa7\xd8\xba\xd9\x8a', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83 \xd9\x86\xd8\xa7\xd8\xac\xd9\x89', None)), 'claims': ({'property': 'P734', 'entity-type': 'item', 'numeric-id': 431758, 'id': 'Q431758', 'type': 'wikibase-entityid'}, {'type': 'string', 'value': '1971 Boston Red Sox Photocards Mike Nagy.jpg', 'property': 'P18'}, {'id': 'Q1163715', 'entity-type': 'item', 'numeric-id': 1163715, 'property': 'P118', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q6902592', 'numeric-id': 6902592, 'property': 'P69', 'type': 'wikibase-entityid'}, {'time': '+1948-03-25T00:00:00Z', 'before': 0, 'precision': 11, 'type': 'time', 'after': 0, 'timezone': 0, 'property': 'P569', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'entity-type': 'item', 'numeric-id': 361309, 'property': 'P735', 'id': 'Q361309', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q30', 'property': 'P27', 'numeric-id': 30, 'entity-type': 'item'}, {'id': 'Q1048902', 'numeric-id': 1048902, 'property': 'P413', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'numeric-id': 18426, 'id': 'Q18426', 'property': 'P19', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q6581097', 'property': 'P21', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 6581097}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 10871364, 'property': 'P106', 'id': 'Q10871364'}, {'property': 'P31', 'entity-type': 'item', 'id': 'Q5', 'numeric-id': 5, 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 5369, 'property': 'P641', 'type': 'wikibase-entityid', 'id': 'Q5369'}, {'property': 'P54', 'id': 'Q504309', 'numeric-id': 504309, 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'id': 'Q213959', 'numeric-id': 213959, 'property': 'P54', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'property': 'P54', 'entity-type': 'item', 'numeric-id': 848117, 'id': 'Q848117'}), 'title': 'Q6848161'}
{'type': 'item', 'id': 'Q6848166', 'labels': (('en', 'Vilmos Clair'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('commonswiki', 'Category:Vilmos Clair', None), ('huwiki', 'Clair Vilmos', None)), 'claims': ({'numeric-id': 5, 'property': 'P31', 'id': 'Q5', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q6581097', 'numeric-id': 6581097, 'property': 'P21', 'type': 'wikibase-entityid'}, {'time': '+1858-05-21T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'property': 'P569', 'type': 'time', 'precision': 11, 'after': 0, 'before': 0}, {'value': 'Clair Vilmos.png', 'property': 'P18', 'type': 'string'}, {'property': 'P734', 'id': 'Q16865610', 'numeric-id': 16865610, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P19', 'type': 'wikibase-entityid', 'id': 'Q210205', 'numeric-id': 210205, 'entity-type': 'item'}, {'numeric-id': 2526270, 'id': 'Q2526270', 'property': 'P735', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'entity-type': 'item', 'property': 'P20', 'type': 'wikibase-entityid', 'id': 'Q1781', 'numeric-id': 1781}, {'after': 0, 'precision': 11, 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0, 'timezone': 0, 'property': 'P570', 'time': '+1951-02-04T00:00:00Z'}, {'type': 'string', 'property': 'P373', 'value': 'Vilmos Clair'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q1930187', 'property': 'P106', 'numeric-id': 1930187}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q867757', 'property': 'P22', 'numeric-id': 867757}), 'title': 'Q6848166'}
{'type': 'item', 'id': 'Q6848212', 'labels': (('en', 'Mike Nugent'),), 'descriptions': (('en', 'Australian Paralympic athlete and wheelchair manufacturer'),), 'aliases': (), 'sitelinks': (('commonswiki', 'Category:Mike Nugent (athlete)', None), ('dawiki', 'Mike Nugent (atlet)', None), ('enwiki', 'Mike Nugent (athlete)', None)), 'claims': ({'numeric-id': 361309, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q361309', 'property': 'P735'}, {'property': 'P18', 'type': 'string', 'value': 'Mike Nugent.jpg'}, {'precision': 9, 'before': 0, 'type': 'time', 'after': 0, 'property': 'P569', 'time': '+1945-00-00T00:00:00Z', 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'property': 'P21', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q6581097', 'numeric-id': 6581097}, {'property': 'P373', 'value': 'Mike Nugent (athlete)', 'type': 'string'}, {'property': 'P734', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 16880593, 'id': 'Q16880593'}, {'numeric-id': 542, 'property': 'P641', 'id': 'Q542', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P1050', 'type': 'wikibase-entityid', 'id': 'Q1049655', 'numeric-id': 1049655, 'entity-type': 'item'}, {'numeric-id': 408, 'id': 'Q408', 'entity-type': 'item', 'property': 'P27', 'type': 'wikibase-entityid'}, {'numeric-id': 3665646, 'entity-type': 'item', 'property': 'P106', 'id': 'Q3665646', 'type': 'wikibase-entityid'}, {'id': 'Q11513337', 'entity-type': 'item', 'numeric-id': 11513337, 'type': 'wikibase-entityid', 'property': 'P106'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q5', 'numeric-id': 5, 'property': 'P31'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q494639', 'numeric-id': 494639, 'property': 'P1344'}, {'id': 'Q855684', 'property': 'P1344', 'entity-type': 'item', 'numeric-id': 855684, 'type': 'wikibase-entityid'}, {'id': 'Q599707', 'entity-type': 'item', 'property': 'P1344', 'type': 'wikibase-entityid', 'numeric-id': 599707}, {'id': 'Q908341', 'property': 'P1344', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 908341}), 'title': 'Q6848212'}
{'type': 'item', 'id': 'Q6848272', 'labels': (('en', 'Mike Olsen'),), 'descriptions': (('en', 'American stock car racing driver'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mike Olsen', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83 \xd8\xa7\xd9\x88\xd9\x84\xd8\xb3\xd9\x86', None), ('arwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83 \xd8\xa7\xd9\x88\xd9\x84\xd8\xb3\xd9\x86', None)), 'claims': ({'precision': 11, 'property': 'P569', 'before': 0, 'time': '+1968-02-08T00:00:00Z', 'timezone': 0, 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time'}, {'numeric-id': 361309, 'id': 'Q361309', 'property': 'P735', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'numeric-id': 30, 'property': 'P27', 'id': 'Q30', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q378622', 'entity-type': 'item', 'numeric-id': 378622, 'property': 'P106', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'property': 'P21', 'numeric-id': 6581097, 'id': 'Q6581097', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'id': 'Q12042571', 'property': 'P734', 'entity-type': 'item', 'numeric-id': 12042571}, {'property': 'P31', 'id': 'Q5', 'type': 'wikibase-entityid', 'numeric-id': 5, 'entity-type': 'item'}, {'property': 'P19', 'entity-type': 'item', 'id': 'Q7055571', 'type': 'wikibase-entityid', 'numeric-id': 7055571}), 'title': 'Q6848272'}
{'type': 'item', 'id': 'Q6848274', 'labels': (('en', 'Mike Opat'),), 'descriptions': (('en', 'American politician'),), 'aliases': (('en', 'Michael Joseph Opat'),), 'sitelinks': (('enwiki', 'Mike Opat', None), ('hawiki', 'Mike Opat', None)), 'claims': ({'entity-type': 'item', 'numeric-id': 36091, 'type': 'wikibase-entityid', 'id': 'Q36091', 'property': 'P19'}, {'numeric-id': 82955, 'id': 'Q82955', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P106'}, {'type': 'time', 'after': 0, 'time': '+1961-03-25T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'timezone': 0, 'before': 0, 'precision': 11}, {'entity-type': 'item', 'property': 'P31', 'numeric-id': 5, 'type': 'wikibase-entityid', 'id': 'Q5'}, {'numeric-id': 1937395, 'property': 'P102', 'type': 'wikibase-entityid', 'id': 'Q1937395', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'property': 'P27', 'numeric-id': 30, 'id': 'Q30', 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q6581097', 'property': 'P21', 'numeric-id': 6581097, 'type': 'wikibase-entityid'}, {'numeric-id': 238101, 'id': 'Q238101', 'property': 'P69', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'numeric-id': 49127, 'property': 'P69', 'id': 'Q49127', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P734', 'entity-type': 'item', 'id': 'Q37568871', 'numeric-id': 37568871, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q361309', 'property': 'P735', 'numeric-id': 361309}), 'title': 'Q6848274'}
{'type': 'item', 'id': 'Q6848351', 'labels': (('en', 'Mike Pazik'),), 'descriptions': (('en', 'American baseball player'),), 'aliases': (('en', 'Michael Joseph Pazik'),), 'sitelinks': (('ruwiki', '\xd0\x9f\xd0\xb0\xd0\xb7\xd0\xb8\xd0\xba, \xd0\x9c\xd0\xb0\xd0\xb9\xd0\xba', None), ('enwiki', 'Mike Pazik', None), ('arzwiki', '\xd9\x85\xd9\x8a\xd9\x83 \xd9\xbe\xd8\xa7\xd8\xb2\xd9\x8a\xd9\x83', None)), 'claims': ({'property': 'P31', 'type': 'wikibase-entityid', 'numeric-id': 5, 'entity-type': 'item', 'id': 'Q5'}, {'entity-type': 'item', 'property': 'P641', 'id': 'Q5369', 'type': 'wikibase-entityid', 'numeric-id': 5369}, {'type': 'wikibase-entityid', 'numeric-id': 7157012, 'entity-type': 'item', 'id': 'Q7157012', 'property': 'P734'}, {'numeric-id': 604879, 'entity-type': 'item', 'property': 'P54', 'id': 'Q604879', 'type': 'wikibase-entityid'}, {'numeric-id': 5885205, 'property': 'P54', 'entity-type': 'item', 'id': 'Q5885205', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'numeric-id': 361309, 'entity-type': 'item', 'property': 'P735', 'id': 'Q361309'}, {'id': 'Q30', 'entity-type': 'item', 'property': 'P27', 'type': 'wikibase-entityid', 'numeric-id': 30}, {'id': 'Q2620177', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P69', 'numeric-id': 2620177}, {'numeric-id': 5378283, 'property': 'P69', 'entity-type': 'item', 'id': 'Q5378283', 'type': 'wikibase-entityid'}, {'id': 'Q1634144', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 1634144, 'property': 'P40'}, {'property': 'P413', 'entity-type': 'item', 'id': 'Q1048902', 'numeric-id': 1048902, 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'property': 'P21', 'id': 'Q6581097', 'numeric-id': 6581097, 'type': 'wikibase-entityid'}, {'timezone': 0, 'property': 'P569', 'precision': 11, 'time': '+1950-01-26T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'type': 'time', 'before': 0}, {'numeric-id': 10871364, 'property': 'P106', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q10871364'}, {'property': 'P18', 'type': 'string', 'value': 'Mike Pazik Tacoma Twins.jpg'}, {'id': 'Q49188', 'entity-type': 'item', 'numeric-id': 49188, 'property': 'P19', 'type': 'wikibase-entityid'}), 'title': 'Q6848351'}
{'type': 'item', 'id': 'Q6848550', 'labels': (('en', 'Mike Reynolds'),), 'descriptions': (('en', 'American actor'),), 'aliases': (('en', 'Michael Lee Reynolds'),), 'sitelinks': (('arwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83 \xd8\xb1\xd9\x8a\xd9\x86\xd9\x88\xd9\x84\xd8\xaf\xd8\xb2', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83 \xd8\xb1\xd9\x8a\xd9\x86\xd9\x88\xd9\x84\xd8\xaf\xd8\xb2', None), ('jawiki', '\xe3\x83\x9e\xe3\x82\xa4\xe3\x82\xaf\xe3\x83\xbb\xe3\x83\xac\xe3\x82\xa4\xe3\x83\x8e\xe3\x83\xab\xe3\x82\xba', None), ('enwiki', 'Mike Reynolds (actor)', None)), 'claims': ({'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1973-00-00T00:00:00Z', 'precision': 9, 'property': 'P2031', 'before': 0, 'timezone': 0, 'after': 0, 'type': 'time'}, {'value': 'mayk-reynolds-0', 'type': 'string', 'property': 'P10302'}, {'type': 'time', 'time': '+1929-11-21T00:00:00Z', 'before': 0, 'after': 0, 'timezone': 0, 'property': 'P569', 'precision': 11, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'property': 'P735', 'type': 'wikibase-entityid', 'id': 'Q361309', 'entity-type': 'item', 'numeric-id': 361309}, {'numeric-id': 5, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P31', 'id': 'Q5'}, {'property': 'P19', 'id': 'Q30', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 30}, {'before': 0, 'type': 'time', 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+2022-07-02T00:00:00Z', 'precision': 11, 'timezone': 0, 'property': 'P570'}, {'type': 'wikibase-entityid', 'id': 'Q14648920', 'numeric-id': 14648920, 'property': 'P734', 'entity-type': 'item'}, {'numeric-id': 1860, 'property': 'P103', 'type': 'wikibase-entityid', 'id': 'Q1860', 'entity-type': 'item'}, {'numeric-id': 1860, 'entity-type': 'item', 'id': 'Q1860', 'type': 'wikibase-entityid', 'property': 'P6886'}, {'language': 'en', 'text': 'Mike Reynolds', 'type': 'monolingualtext', 'property': 'P1559'}, {'id': 'Q30', 'numeric-id': 30, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P27'}, {'type': 'wikibase-entityid', 'numeric-id': 2405480, 'entity-type': 'item', 'property': 'P106', 'id': 'Q2405480'}, {'id': 'Q33999', 'numeric-id': 33999, 'property': 'P106', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'numeric-id': 10798782, 'type': 'wikibase-entityid', 'id': 'Q10798782', 'property': 'P106', 'entity-type': 'item'}, {'id': 'Q28389', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 28389, 'property': 'P106'}, {'value': '322304', 'property': 'P12098', 'type': 'string'}, {'numeric-id': 1860, 'entity-type': 'item', 'property': 'P1412', 'id': 'Q1860', 'type': 'wikibase-entityid'}, {'precision': 9, 'after': 0, 'before': 0, 'time': '+2009-00-00T00:00:00Z', 'property': 'P2032', 'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0}, {'numeric-id': 6581097, 'property': 'P21', 'entity-type': 'item', 'id': 'Q6581097', 'type': 'wikibase-entityid'}), 'title': 'Q6848550'}
{'type': 'item', 'id': 'Q6848752', 'labels': (('en', 'Mike Scurlock'), ('en-ca', 'Mike Scurlock'), ('en-g', 'Mike Scurlock')), 'descriptions': (('en', 'American football player and coach'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mike Scurlock', None), ('arzwiki', '\xd9\x85\xd9\x8a\xd9\x83 \xd8\xb3\xd9\x83\xd9\x88\xd8\xb1\xd9\x84\xd9\x88\xd9\x83', None)), 'claims': ({'entity-type': 'item', 'id': 'Q330120', 'property': 'P54', 'numeric-id': 330120, 'type': 'wikibase-entityid'}, {'id': 'Q337377', 'entity-type': 'item', 'numeric-id': 337377, 'type': 'wikibase-entityid', 'property': 'P54'}, {'id': 'Q4791461', 'property': 'P54', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 4791461}, {'type': 'wikibase-entityid', 'id': 'Q18575', 'numeric-id': 18575, 'property': 'P19', 'entity-type': 'item'}, {'numeric-id': 503419, 'id': 'Q503419', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P69'}, {'entity-type': 'item', 'id': 'Q14680734', 'numeric-id': 14680734, 'property': 'P69', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q7439520', 'numeric-id': 7439520, 'property': 'P734', 'type': 'wikibase-entityid'}, {'property': 'P21', 'id': 'Q6581097', 'entity-type': 'item', 'numeric-id': 6581097, 'type': 'wikibase-entityid'}, {'id': 'Q41323', 'type': 'wikibase-entityid', 'numeric-id': 41323, 'entity-type': 'item', 'property': 'P641'}, {'property': 'P735', 'entity-type': 'item', 'numeric-id': 361309, 'id': 'Q361309', 'type': 'wikibase-entityid'}, {'after': 0, 'property': 'P569', 'time': '+1972-02-26T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0, 'timezone': 0, 'type': 'time', 'precision': 11}, {'type': 'wikibase-entityid', 'id': 'Q674953', 'property': 'P413', 'numeric-id': 674953, 'entity-type': 'item'}, {'numeric-id': 19204627, 'property': 'P106', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q19204627'}, {'property': 'P31', 'id': 'Q5', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 5}, {'property': 'P27', 'id': 'Q30', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 30}), 'title': 'Q6848752'}
{'type': 'item', 'id': 'Q6848733', 'labels': (('en', 'Mike Schroepfer'),), 'descriptions': (('en', 'American businessman'),), 'aliases': (), 'sitelinks': (('frwiki', 'Mike Schroepfer', None), ('viwiki', 'Mike Schroepfer', None), ('arwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83 \xd8\xb4\xd9\x83\xd8\xb1\xd9\x88\xd9\x8a\xd8\xa8\xd8\xb1', None), ('bnwiki', '\xe0\xa6\xae\xe0\xa6\xbe\xe0\xa6\x87\xe0\xa6\x95 \xe0\xa6\xb6\xe0\xa7\x8d\xe0\xa6\xb0\xe0\xa7\x8b\xe0\xa6\xaa\xe0\xa7\x8d\xe0\xa6\xab\xe0\xa6\xbe\xe0\xa6\xb0', None), ('commonswiki', 'Category:Mike Schroepfer', None), ('fawiki', '\xd9\x85\xd8\xa7\xdb\x8c\xda\xa9 \xd8\xb4\xd8\xb1\xd9\x88\xd9\xbe\xd9\x81\xd8\xb1', None), ('enwiki', 'Mike Schroepfer', None), ('idwiki', 'Mike Schroepfer', None), ('ruwiki', '\xd0\xa8\xd1\x80\xd1\x91\xd0\xbf\xd1\x84\xd0\xb5\xd1\x80, \xd0\x9c\xd0\xb0\xd0\xb9\xd0\xba', None), ('zhwiki', '\xe9\x82\x81\xe5\x85\x8b\xc2\xb7\xe6\x96\xaf\xe7\xa7\x91\xe6\xb4\x9b\xe6\x99\xae\xe5\xa4\xa', None), ('trwiki', 'Mike Schroepfer', None), ('ptwiki', 'Mike Schroepfer', None)), 'claims': ({'type': 'string', 'value': 'schrep', 'property': 'P2002'}, {'precision': 11, 'type': 'time', 'property': 'P569', 'time': '+1975-02-01T00:00:00Z', 'after': 0, 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0}, {'value': 'Mike Schroepfer.jpg', 'property': 'P18', 'type': 'string'}, {'type': 'wikibase-entityid', 'id': 'Q361309', 'property': 'P735', 'entity-type': 'item', 'numeric-id': 361309}, {'type': 'wikibase-entityid', 'id': 'Q14686410', 'numeric-id': 14686410, 'entity-type': 'item', 'property': 'P69'}, {'numeric-id': 41506, 'entity-type': 'item', 'id': 'Q41506', 'property': 'P69', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'property': 'P108', 'numeric-id': 355, 'type': 'wikibase-entityid', 'id': 'Q355'}, {'property': 'P108', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q169925', 'numeric-id': 169925}, {'id': 'Q5', 'property': 'P31', 'type': 'wikibase-entityid', 'numeric-id': 5, 'entity-type': 'item'}, {'property': 'P106', 'type': 'wikibase-entityid', 'id': 'Q43845', 'numeric-id': 43845, 'entity-type': 'item'}, {'id': 'Q131524', 'numeric-id': 131524, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P106'}, {'id': 'Q1709010', 'property': 'P106', 'numeric-id': 1709010, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'value': 'Mike Schroepfer', 'type': 'string', 'property': 'P373'}, {'type': 'string', 'property': 'P2003', 'value': 'schrep'}, {'numeric-id': 30, 'id': 'Q30', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P27'}, {'amount': '+16060', 'type': 'quantity', 'unit': '1', 'property': 'P8687'}, {'property': 'P8687', 'amount': '+90593', 'type': 'quantity', 'unit': '1'}, {'property': 'P8687', 'amount': '+103203', 'type': 'quantity', 'unit': '1'}, {'numeric-id': 6581097, 'entity-type': 'item', 'id': 'Q6581097', 'property': 'P21', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q213205', 'type': 'wikibase-entityid', 'numeric-id': 213205, 'property': 'P551'}, {'property': 'P734', 'id': 'Q37160872', 'type': 'wikibase-entityid', 'numeric-id': 37160872, 'entity-type': 'item'}), 'title': 'Q6848733'}
{'type': 'item', 'id': 'Q6848863', 'labels': (('en-g', 'Mike Smith'), ('en-ca', 'Mike Smith'), ('en', 'Mike Smith')), 'descriptions': (('en', 'American football player and coach (born 1981)'),), 'aliases': (('en', 'Michael Lee Smith'),), 'sitelinks': (('enwiki', 'Mike Smith (linebacker)', None), ('commonswiki', 'Category:Mike Smith (linebacker)', None)), 'claims': ({'type': 'wikibase-entityid', 'id': 'Q528145', 'numeric-id': 528145, 'entity-type': 'item', 'property': 'P413'}, {'amount': '+235', 'property': 'P2067', 'unit': 'http://www.wikidata.org/entity/Q100995', 'type': 'quantity'}, {'type': 'quantity', 'property': 'P2048', 'unit': 'http://www.wikidata.org/entity/Q218593', 'amount': '+73'}, {'property': 'P373', 'value': 'Mike Smith (linebacker)', 'type': 'string'}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'before': 0, 'property': 'P569', 'precision': 11, 'time': '+1981-09-02T00:00:00Z', 'after': 0, 'timezone': 0, 'type': 'time'}, {'id': 'Q41323', 'entity-type': 'item', 'property': 'P641', 'type': 'wikibase-entityid', 'numeric-id': 41323}, {'id': 'Q276539', 'property': 'P54', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 276539}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q17108199', 'numeric-id': 17108199, 'property': 'P69'}, {'id': 'Q30', 'property': 'P27', 'entity-type': 'item', 'numeric-id': 30, 'type': 'wikibase-entityid'}, {'id': 'Q49273', 'property': 'P19', 'type': 'wikibase-entityid', 'numeric-id': 49273, 'entity-type': 'item'}, {'id': 'Q6581097', 'property': 'P21', 'numeric-id': 6581097, 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'property': 'P18', 'type': 'string', 'value': 'Mike Smith LB.jpg'}, {'value': 'MSmith2004.jpg', 'type': 'string', 'property': 'P18'}, {'id': 'Q1158446', 'numeric-id': 1158446, 'property': 'P734', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P735', 'numeric-id': 361309, 'type': 'wikibase-entityid', 'id': 'Q361309', 'entity-type': 'item'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q41583', 'numeric-id': 41583, 'property': 'P106'}, {'numeric-id': 19204627, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P106', 'id': 'Q19204627'}, {'property': 'P31', 'type': 'wikibase-entityid', 'numeric-id': 5, 'id': 'Q5', 'entity-type': 'item'}), 'title': 'Q6848863'}
{'type': 'item', 'id': 'Q6848912', 'labels': (('en', 'Mike Stanley'),), 'descriptions': (('en', 'American college baseball player, Major League baseball player, catcher, baseball coach'),), 'aliases': (('en', 'Robert Michael Stanley'),), 'sitelinks': (('arzwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83 \xd8\xb3\xd8\xaa\xd8\xa7\xd9\x86\xd9\x84\xd9\x89', None), ('enwiki', 'Mike Stanley', None), ('arwiki', '\xd9\x85\xd8\xa7\xd9\x8a\xd9\x83 \xd8\xb3\xd8\xaa\xd8\xa7\xd9\x86\xd9\x84\xd9\x8a (\xd9\x84\xd8\xa7\xd8\xb9\xd8\xa8 \xd9\x83\xd8\xb1\xd8\xa9 \xd9\x82\xd8\xa7\xd8\xb9\xd8\xaf\xd8\xa9)', None)), 'claims': ({'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 5, 'property': 'P31', 'id': 'Q5'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 1050571, 'id': 'Q1050571', 'property': 'P413'}, {'entity-type': 'item', 'numeric-id': 6581097, 'type': 'wikibase-entityid', 'id': 'Q6581097', 'property': 'P21'}, {'property': 'P54', 'numeric-id': 213959, 'id': 'Q213959', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'numeric-id': 213417, 'id': 'Q213417', 'type': 'wikibase-entityid', 'property': 'P54', 'entity-type': 'item'}, {'numeric-id': 504339, 'type': 'wikibase-entityid', 'property': 'P54', 'id': 'Q504339', 'entity-type': 'item'}, {'numeric-id': 329816, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q329816', 'property': 'P54'}, {'property': 'P54', 'entity-type': 'item', 'numeric-id': 650829, 'id': 'Q650829', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P54', 'id': 'Q5461389', 'numeric-id': 5461389}, {'numeric-id': 5369, 'property': 'P641', 'id': 'Q5369', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'numeric-id': 61970886, 'entity-type': 'item', 'id': 'Q61970886', 'property': 'P1889', 'type': 'wikibase-entityid'}, {'numeric-id': 1260111, 'property': 'P69', 'id': 'Q1260111', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'time': '+1963-06-25T00:00:00Z', 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'type': 'time', 'timezone': 0, 'before': 0, 'precision': 11}, {'type': 'wikibase-entityid', 'property': 'P735', 'entity-type': 'item', 'id': 'Q361309', 'numeric-id': 361309}, {'numeric-id': 30, 'type': 'wikibase-entityid', 'id': 'Q30', 'property': 'P27', 'entity-type': 'item'}, {'entity-type': 'item', 'numeric-id': 165972, 'property': 'P19', 'id': 'Q165972', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 2331622, 'property': 'P734', 'id': 'Q2331622'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q10871364', 'property': 'P106', 'numeric-id': 10871364}, {'type': 'wikibase-entityid', 'id': 'Q1163715', 'numeric-id': 1163715, 'property': 'P118', 'entity-type': 'item'}, {'type': 'string', 'property': 'P18', 'value': '1987 Rookies Cartoon Back Mike Stanley.jpg'}), 'title': 'Q6848912'}
{'type': 'item', 'id': 'Q6848997', 'labels': (('en', 'Mike Sutton'),), 'descriptions': (('en', 'British criminologist'),), 'aliases': (('en', 'Michael Robert Sutton'),), 'sitelinks': (('enwiki', 'Mike Sutton (criminologist)', None),), 'claims': ({'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q8142883', 'property': 'P106', 'numeric-id': 8142883}, {'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'timezone': 0, 'time': '+1959-01-01T00:00:00Z', 'precision': 9, 'property': 'P569', 'before': 0}, {'value': 'http://www.popcenter.org/bios/sutton', 'property': 'P856', 'type': 'string'}, {'type': 'wikibase-entityid', 'id': 'Q361309', 'entity-type': 'item', 'numeric-id': 361309, 'property': 'P735'}, {'entity-type': 'item', 'id': 'Q5', 'numeric-id': 5, 'property': 'P31', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q16884069', 'property': 'P734', 'type': 'wikibase-entityid', 'numeric-id': 16884069}, {'id': 'Q6581097', 'numeric-id': 6581097, 'property': 'P21', 'type': 'wikibase-entityid', 'entity-type': 'item'}), 'title': 'Q6848997'}
{'type': 'item', 'id': 'Q6849417', 'labels': (('en', 'Mikel Rouse'),), 'descriptions': (('en', 'American opera composer'),), 'aliases': (), 'sitelinks': (('eswiki', 'Mikel Rouse', None), ('enwiki', 'Mikel Rouse', None)), 'claims': ({'type': 'string', 'property': 'P7704', 'value': 'agent/base/148917'}, {'property': 'P735', 'type': 'wikibase-entityid', 'numeric-id': 18697349, 'id': 'Q18697349', 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q1344', 'property': 'P136', 'numeric-id': 1344, 'type': 'wikibase-entityid'}, {'numeric-id': 36834, 'property': 'P106', 'entity-type': 'item', 'id': 'Q36834', 'type': 'wikibase-entityid'}, {'property': 'P569', 'before': 0, 'type': 'time', 'timezone': 0, 'precision': 11, 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1957-01-26T00:00:00Z'}, {'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q5', 'numeric-id': 5}, {'type': 'wikibase-entityid', 'numeric-id': 6364655, 'property': 'P69', 'entity-type': 'item', 'id': 'Q6364655'}, {'id': 'Q6581097', 'numeric-id': 6581097, 'property': 'P21', 'type': 'wikibase-entityid', 'entity-type': 'item'}), 'title': 'Q6849417'}
{'type': 'item', 'id': 'Q6849571', 'labels': (('en', 'Mikhail Kazachenko'),), 'descriptions': (('en', 'Russian footballer'), ('en-g', 'Russian footballer'), ('en-ca', 'Russian footballer')), 'aliases': (), 'sitelinks': (), 'claims': ({'numeric-id': 1974830, 'property': 'P54', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q1974830'}, {'property': 'P54', 'entity-type': 'item', 'numeric-id': 1977785, 'type': 'wikibase-entityid', 'id': 'Q1977785'}, {'numeric-id': 4144743, 'id': 'Q4144743', 'entity-type': 'item', 'property': 'P54', 'type': 'wikibase-entityid'}, {'numeric-id': 937857, 'type': 'wikibase-entityid', 'id': 'Q937857', 'property': 'P106', 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q7737', 'numeric-id': 7737, 'property': 'P1412', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q201330', 'type': 'wikibase-entityid', 'numeric-id': 201330, 'property': 'P413'}, {'id': 'Q5', 'property': 'P31', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 5}, {'time': '+1988-06-20T00:00:00Z', 'precision': 11, 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'after': 0, 'property': 'P569', 'timezone': 0, 'type': 'time'}, {'numeric-id': 159, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P27', 'id': 'Q159'}, {'property': 'P641', 'numeric-id': 2736, 'entity-type': 'item', 'id': 'Q2736', 'type': 'wikibase-entityid'}, {'id': 'Q15621289', 'numeric-id': 15621289, 'type': 'wikibase-entityid', 'property': 'P735', 'entity-type': 'item'}, {'property': 'P21', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q6581097', 'numeric-id': 6581097}), 'title': 'Q6849571'}
{'type': 'item', 'id': 'Q6849536', 'labels': (('en-g', 'Mikhail Filippov'), ('en', 'Mikhail Filippov'), ('en-ca', 'Mikhail Filippov')), 'descriptions': (('en', 'Russian footballer'), ('en-g', 'Russian footballer'), ('en-ca', 'Russian footballer')), 'aliases': (('en', 'Mikhail Mikhailovich Filippov'),), 'sitelinks': (('commonswiki', 'Category:Mikhail Filippov', None), ('enwiki', 'Mikhail Filippov', None), ('idwiki', 'Mikhail Filippov', None), ('arwiki', '\xd9\x85\xd9\x8a\xd8\xae\xd8\xa7\xd8\xa6\xd9\x8a\xd9\x84 \xd9\x81\xd9\x8a\xd9\x84\xd9\x8a\xd8\xa8\xd8\xa8\xd9\x88\xd9\x81', None), ('viwiki', 'Mikhail Filippov', None), ('ruwiki', '\xd0\xa4\xd0\xb8\xd0\xbb\xd0\xb8\xd0\xbf\xd0\xbf\xd0\xbe\xd0\xb2, \xd0\x9c\xd0\xb8\xd1\x85\xd0\xb0\xd0\xb8\xd0\xbb \xd0\x9c\xd0\xb8\xd1\x85\xd0\xb0\xd0\xb9\xd0\xbb\xd0\xbe\xd0\xb2\xd0\xb8\xd1\x87 (\xd1\x84\xd1\x83\xd1\x82\xd0\xb1\xd0\xbe\xd0\xbb\xd0\xb8\xd1\x81\xd1\x82)', None), ('arzwiki', '\xd9\x85\xd9\x8a\xd8\xae\xd8\xa7\xd9\x8a\xd9\x84 \xd9\x81\xd9\x8a\xd9\x84\xd9\x8a\xd9\xbe\xd9\x88\xda\xa4', None)), 'claims': ({'id': 'Q15621289', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 15621289, 'property': 'P735'}, {'id': 'Q201330', 'numeric-id': 201330, 'type': 'wikibase-entityid', 'property': 'P413', 'entity-type': 'item'}, {'property': 'P373', 'value': 'Mikhail Filippov', 'type': 'string'}, {'numeric-id': 2736, 'property': 'P641', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q2736'}, {'id': 'Q29112', 'numeric-id': 29112, 'property': 'P54', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P54', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q779049', 'numeric-id': 779049}, {'entity-type': 'item', 'id': 'Q477073', 'property': 'P54', 'numeric-id': 477073, 'type': 'wikibase-entityid'}, {'property': 'P54', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q779049', 'numeric-id': 779049}, {'id': 'Q779049', 'entity-type': 'item', 'property': 'P54', 'numeric-id': 779049, 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 329510, 'property': 'P54', 'type': 'wikibase-entityid', 'id': 'Q329510'}, {'property': 'P54', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q2382984', 'numeric-id': 2382984}, {'type': 'wikibase-entityid', 'numeric-id': 2619299, 'entity-type': 'item', 'id': 'Q2619299', 'property': 'P54'}, {'property': 'P54', 'numeric-id': 4430691, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q4430691'}, {'type': 'quantity', 'amount': '+2', 'property': 'P1350', 'unit': '1'}, {'id': 'Q159', 'numeric-id': 159, 'property': 'P27', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'type': 'quantity', 'unit': '1', 'amount': '+0', 'property': 'P6509'}, {'value': 'filippov_47', 'property': 'P2003', 'type': 'string'}, {'numeric-id': 5, 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q5'}, {'amount': '+4', 'property': 'P1359', 'unit': '1', 'type': 'quantity'}, {'numeric-id': 6581097, 'entity-type': 'item', 'property': 'P21', 'type': 'wikibase-entityid', 'id': 'Q6581097'}, {'id': 'Q21488860', 'entity-type': 'item', 'numeric-id': 21488860, 'property': 'P734', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'numeric-id': 7737, 'property': 'P1412', 'type': 'wikibase-entityid', 'id': 'Q7737'}, {'entity-type': 'item', 'id': 'Q937857', 'property': 'P106', 'numeric-id': 937857, 'type': 'wikibase-entityid'}, {'property': 'P18', 'value': 'Mikhail Filippov 2019.jpg', 'type': 'string'}, {'id': 'Q98995', 'numeric-id': 98995, 'entity-type': 'item', 'property': 'P19', 'type': 'wikibase-entityid'}, {'before': 0, 'precision': 11, 'timezone': 0, 'after': 0, 'time': '+1992-06-10T00:00:00Z', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'type': 'time'}), 'title': 'Q6849536'}
{'type': 'item', 'id': 'Q6849632', 'labels': (('en', 'Majdouline Idrissi'),), 'descriptions': (('en', 'Moroccan actress'), ('en-ca', 'Moroccan actress'), ('en-g', 'Moroccan actress')), 'aliases': (), 'sitelinks': (('enwiki', 'Majdouline Idrissi', None), ('arwiki', '\xd9\x85\xd8\xa7\xd8\xac\xd8\xaf\xd9\x88\xd9\x84\xd9\x8a\xd9\x86 \xd8\xa7\xd9\x84\xd8\xa5\xd8\xaf\xd8\xb1\xd9\x8a\xd8\xb3\xd9\x8a', None), ('frwiki', 'Majdouline Idrissi', None), ('eswiki', 'Majdouline Idrissi', None), ('hawiki', 'Majdouline Idrissi', None), ('yowiki', 'Majdouline Idrissi', None), ('arzwiki', '\xd9\x85\xd8\xa7\xd8\xac\xd8\xaf\xd9\x88\xd9\x84\xd9\x8a\xd9\x86 \xd8\xa7\xd9\x84\xd8\xa7\xd8\xaf\xd8\xb1\xd9\x8a\xd8\xb3\xd9\x89', None), ('mlwiki', '\xe0\xb4\xae\xe0\xb4\x9c\xe0\xb5\x8d\xe0\xb4\xa6\xe0\xb5\x8c\xe0\xb4\xb2\xe0\xb4\xbf\xe0\xb5\xbb \xe0\xb4\x87\xe0\xb4\xa6\xe0\xb5\x8d\xe0\xb4\xb0\xe0\xb4\xbf\xe0\xb4\xb8\xe0\xb5\x8d\xe0\xb4\xb8\xe0\xb4\xbf', None), ('igwiki', 'Majdouline Idrissi', None)), 'claims': ({'property': 'P27', 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q1028', 'numeric-id': 1028}, {'type': 'wikibase-entityid', 'numeric-id': 13955, 'id': 'Q13955', 'property': 'P1412', 'entity-type': 'item'}, {'property': 'P1412', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q25448', 'numeric-id': 25448}, {'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'after': 0, 'precision': 9, 'property': 'P2031', 'before': 0, 'time': '+2003-00-00T00:00:00Z'}, {'property': 'P21', 'numeric-id': 6581072, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q6581072'}, {'id': 'Q25448', 'type': 'wikibase-entityid', 'numeric-id': 25448, 'property': 'P103', 'entity-type': 'item'}, {'numeric-id': 3551, 'entity-type': 'item', 'id': 'Q3551', 'property': 'P19', 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'numeric-id': 33999, 'id': 'Q33999', 'entity-type': 'item', 'property': 'P106'}, {'property': 'P106', 'numeric-id': 10800557, 'id': 'Q10800557', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'before': 0, 'precision': 11, 'timezone': 0, 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P569', 'time': '+1977-03-10T00:00:00Z', 'type': 'time'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q5', 'numeric-id': 5, 'property': 'P31'}, {'value': 'majdouline-idrissi', 'property': 'P10302', 'type': 'string'}), 'title': 'Q6849632'}
{'type': 'item', 'id': 'Q6849843', 'labels': (('en', 'Miki Itakura'),), 'descriptions': (('en', 'athletics competitor'),), 'aliases': (), 'sitelinks': (('enwiki', 'Miki Itakura', None), ('jawiki', '\xe6\x9d\xbf\xe5\x80\x89\xe7\xbe\x8e\xe7\xb4\x80', None)), 'claims': ({'type': 'wikibase-entityid', 'id': 'Q6360883', 'numeric-id': 6360883, 'entity-type': 'item', 'property': 'P108'}, {'id': 'Q542', 'numeric-id': 542, 'type': 'wikibase-entityid', 'property': 'P641', 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'id': 'Q6581072', 'property': 'P21', 'entity-type': 'item', 'numeric-id': 6581072}, {'entity-type': 'item', 'id': 'Q8488', 'type': 'wikibase-entityid', 'numeric-id': 8488, 'property': 'P1344'}, {'id': 'Q3244340', 'type': 'wikibase-entityid', 'numeric-id': 3244340, 'property': 'P69', 'entity-type': 'item'}, {'entity-type': 'item', 'numeric-id': 5, 'property': 'P31', 'id': 'Q5', 'type': 'wikibase-entityid'}, {'before': 0, 'property': 'P569', 'time': '+1975-08-01T00:00:00Z', 'timezone': 0, 'after': 0, 'type': 'time', 'precision': 11, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'id': 'Q17', 'numeric-id': 17, 'entity-type': 'item', 'property': 'P27', 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'id': 'Q11513337', 'property': 'P106', 'type': 'wikibase-entityid', 'numeric-id': 11513337}, {'property': 'P1814', 'type': 'string', 'value': '\xe3\x81\x84\xe3\x81\x9f\xe3\x81\x8f\xe3\x82\x89 \xe3\x81\xbf\xe3\x81\x8d'}, {'property': 'P1559', 'type': 'monolingualtext', 'language': 'ja', 'text': '\xe6\x9d\xbf\xe5\x80\x89\xe7\xbe\x8e\xe7\xb4\x80'}, {'type': 'wikibase-entityid', 'property': 'P735', 'entity-type': 'item', 'numeric-id': 16279454, 'id': 'Q16279454'}), 'title': 'Q6849843'}
{'type': 'item', 'id': 'Q6850233', 'labels': (('en', 'mikseri.net'),), 'descriptions': (('en', 'Finnish music-sharing service'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mikseri.net', None), ('fiwiki', 'Mikseri.net', None)), 'claims': ({'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P31', 'numeric-id': 35127, 'id': 'Q35127'}, {'type': 'string', 'value': 'https://mikseri.net/', 'property': 'P856'}), 'title': 'Q6850233'}
{'type': 'item', 'id': 'Q6850885', 'labels': (('en', 'Mild and Hazy'),), 'descriptions': (('en', '1996 song performed by Hayden'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mild and Hazy', None),), 'claims': ({'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+1996-00-00T00:00:00Z', 'after': 0, 'property': 'P577', 'type': 'time', 'precision': 9, 'before': 0, 'timezone': 0}, {'id': 'Q286080', 'property': 'P136', 'type': 'wikibase-entityid', 'numeric-id': 286080, 'entity-type': 'item'}, {'property': 'P7937', 'id': 'Q7366', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 7366}, {'id': 'Q105543609', 'numeric-id': 105543609, 'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'id': 'Q1591845', 'entity-type': 'item', 'property': 'P175', 'type': 'wikibase-entityid', 'numeric-id': 1591845}, {'property': 'P264', 'numeric-id': 16975947, 'id': 'Q16975947', 'type': 'wikibase-entityid', 'entity-type': 'item'}), 'title': 'Q6850885'}
{'type': 'item', 'id': 'Q6851062', 'labels': (('en', 'Mile End'),), 'descriptions': (('en', 'suburb of Adelaide, South Australia'),), 'aliases': (('en', 'Mile End, South Australia'), ('en', 'Mile End, South Australia, Australia')), 'sitelinks': (('urwiki', '\xd9\x85\xd8\xa7\xd8\xa6\xd9\x84 \xd8\xa7\xdb\x8c\xd9\x86\xda\x88\xd8\x8c \xd8\xac\xd9\x86\xd9\x88\xd8\xa8\xdb\x8c \xd8\xa2\xd8\xb3\xd9\xb9\xd8\xb1\xdb\x8c\xd9\x84\xdb\x8c\xd8\xa7', None), ('enwiki', 'Mile End, South Australia', None)), 'claims': ({'type': 'wikibase-entityid', 'id': 'Q35715', 'property': 'P131', 'entity-type': 'item', 'numeric-id': 35715}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 5356115, 'property': 'P131', 'id': 'Q5356115'}, {'numeric-id': 2973361, 'type': 'wikibase-entityid', 'property': 'P131', 'entity-type': 'item', 'id': 'Q2973361'}, {'entity-type': 'item', 'numeric-id': 2973414, 'property': 'P131', 'type': 'wikibase-entityid', 'id': 'Q2973414'}, {'property': 'P131', 'type': 'wikibase-entityid', 'numeric-id': 1813391, 'id': 'Q1813391', 'entity-type': 'item'}, {'unit': '1', 'type': 'quantity', 'amount': '+2278', 'property': 'P1539'}, {'type': 'wikibase-entityid', 'numeric-id': 408, 'property': 'P17', 'entity-type': 'item', 'id': 'Q408'}, {'property': 'P1082', 'type': 'quantity', 'unit': '1', 'amount': '+4431'}, {'property': 'P1082', 'type': 'quantity', 'unit': '1', 'amount': '+4536'}, {'property': 'P31', 'type': 'wikibase-entityid', 'numeric-id': 188509, 'entity-type': 'item', 'id': 'Q188509'}, {'property': 'P1540', 'amount': '+2152', 'type': 'quantity', 'unit': '1'}, {'type': 'string', 'property': 'P18', 'value': 'Henley beach rd, mile end.jpg'}, {'property': 'P18', 'type': 'string', 'value': 'MileEndRailwayStationAdelaide.jpg'}, {'property': 'P18', 'type': 'string', 'value': 'Thomas Hardy & Sons Wine Cellars, Mile End.JPG'}), 'title': 'Q6851062'}
{'type': 'item', 'id': 'Q6851085', 'labels': (('en', 'Mile High Horror Film Festival'),), 'descriptions': (('en', 'film festival in Colorado'),), 'aliases': (), 'sitelinks': (('enwiki', 'Mile High Horror Film Festival', None),), 'claims': ({'numeric-id': 220505, 'property': 'P31', 'type': 'wikibase-entityid', 'id': 'Q220505', 'entity-type': 'item'}, {'type': 'string', 'property': 'P856', 'value': 'http://mhhff.com/'}, {'property': 'P17', 'type': 'wikibase-entityid', 'numeric-id': 30, 'entity-type': 'item', 'id': 'Q30'}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'time': '+2010-00-00T00:00:00Z', 'type': 'time', 'property': 'P571', 'timezone': 0, 'after': 0, 'before': 0, 'precision': 9}), 'title': 'Q6851085'}
{'type': 'item', 'id': 'Q6851533', 'labels': (('en', 'Miles Ryan'),), 'descriptions': (('en', 'recipient of the Victoria Cross'),), 'aliases': (), 'sitelinks': (('enwiki', 'Miles Ryan', None),), 'claims': ({'property': 'P735', 'type': 'wikibase-entityid', 'id': 'Q6851298', 'entity-type': 'item', 'numeric-id': 6851298}, {'id': 'Q4083685', 'entity-type': 'item', 'property': 'P241', 'numeric-id': 4083685, 'type': 'wikibase-entityid'}, {'entity-type': 'item', 'property': 'P607', 'numeric-id': 129864, 'type': 'wikibase-entityid', 'id': 'Q129864'}, {'entity-type': 'item', 'id': 'Q80338', 'property': 'P20', 'type': 'wikibase-entityid', 'numeric-id': 80338}, {'property': 'P7704', 'type': 'string', 'value': 'agent/base/152033'}, {'id': 'Q5263823', 'property': 'P734', 'entity-type': 'item', 'type': 'wikibase-entityid', 'numeric-id': 5263823}, {'entity-type': 'item', 'numeric-id': 6581097, 'property': 'P21', 'id': 'Q6581097', 'type': 'wikibase-entityid'}, {'numeric-id': 4991371, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P106', 'id': 'Q4991371'}, {'id': 'Q174193', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P27', 'numeric-id': 174193}, {'property': 'P570', 'time': '+1887-01-01T00:00:00Z', 'before': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'timezone': 0, 'type': 'time', 'precision': 10, 'after': 0}, {'id': 'Q163584', 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P19', 'numeric-id': 163584}, {'property': 'P31', 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q5', 'numeric-id': 5}, {'entity-type': 'item', 'id': 'Q219578', 'numeric-id': 219578, 'property': 'P166', 'type': 'wikibase-entityid'}, {'type': 'time', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 9, 'after': 0, 'before': 0, 'time': '+1826-01-01T00:00:00Z', 'timezone': 0, 'property': 'P569'}), 'title': 'Q6851533'}
{'type': 'item', 'id': 'Q6851554', 'labels': (('en', 'Miles Student'),), 'descriptions': (('en', 'lightweight trainer aircraft'),), 'aliases': (), 'sitelinks': (('dewiki', 'Miles Student', None), ('tgwiki', 'Miles Student', None), ('commonswiki', 'Category:Miles Student', None), ('enwiki', 'Miles Student', None)), 'claims': ({'type': 'string', 'property': 'P18', 'value': 'Student-G-MIOO.jpg'}, {'numeric-id': 11436, 'entity-type': 'item', 'property': 'P279', 'type': 'wikibase-entityid', 'id': 'Q11436'}, {'property': 'P606', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'time': '+1957-05-15T00:00:00Z', 'timezone': 0, 'after': 0, 'before': 0, 'type': 'time'}, {'property': 'P373', 'type': 'string', 'value': 'Miles Student'}, {'type': 'wikibase-entityid', 'property': 'P176', 'id': 'Q1780728', 'entity-type': 'item', 'numeric-id': 1780728}), 'title': 'Q6851554'}
{'type': 'item', 'id': 'Q6851486', 'labels': (('en', '(32187) 2000 NR23'),), 'descriptions': (('en-ca', 'asteroid'), ('en', 'asteroid'), ('en-g', 'asteroid')), 'aliases': (), 'sitelinks': (('ptwiki', '(32187) 2000 NR23', None), ('arwiki', '(32187) 2000 NR23', None), ('arzwiki', '(32187) 2000 NR23 (\xd9\x83\xd9\x88\xd9\x8a\xd9\x83\xd8\xa8)', None), ('frwiki', '(32187) 2000 NR23', None)), 'claims': ({'property': 'P2325', 'type': 'quantity', 'unit': 'http://www.wikidata.org/entity/Q28390', 'amount': '+4.16006'}, {'value': '1998 EX16', 'property': 'P490', 'type': 'string'}, {'value': '2000 NR23', 'property': 'P490', 'type': 'string'}, {'property': 'P156', 'id': 'Q6717699', 'entity-type': 'item', 'numeric-id': 6717699, 'type': 'wikibase-entityid'}, {'property': 'P1457', 'type': 'quantity', 'unit': '1', 'amount': '+14.6'}, {'property': 'P575', 'before': 0, 'type': 'time', 'after': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 11, 'time': '+2000-07-05T00:00:00Z', 'timezone': 0}, {'property': 'P2243', 'type': 'quantity', 'unit': 'http://www.wikidata.org/entity/Q1811', 'amount': '+3.144'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q2179', 'numeric-id': 2179, 'property': 'P196'}, {'entity-type': 'item', 'numeric-id': 3863, 'id': 'Q3863', 'type': 'wikibase-entityid', 'property': 'P31'}, {'amount': '+4.41', 'property': 'P2146', 'type': 'quantity', 'unit': 'http://www.wikidata.org/entity/Q577'}, {'property': 'P2248', 'amount': '+179.73232', 'type': 'quantity', 'unit': 'http://www.wikidata.org/entity/Q28390'}, {'id': 'Q213563', 'entity-type': 'item', 'numeric-id': 213563, 'type': 'wikibase-entityid', 'property': 'P61'}, {'unit': 'http://www.wikidata.org/entity/Q1811', 'property': 'P2244', 'amount': '+2.2367068', 'type': 'quantity'}, {'type': 'quantity', 'unit': '1', 'amount': '+0.075', 'property': 'P4501'}, {'amount': '+0.17', 'property': 'P1096', 'type': 'quantity', 'unit': '1'}, {'amount': '+0.1685835', 'type': 'quantity', 'unit': '1', 'property': 'P1096'}, {'entity-type': 'item', 'numeric-id': 6717669, 'id': 'Q6717669', 'property': 'P155', 'type': 'wikibase-entityid'}, {'amount': '+229.46309', 'type': 'quantity', 'unit': 'http://www.wikidata.org/entity/Q28390', 'property': 'P2213'}, {'amount': '+1.02286', 'property': 'P2045', 'type': 'quantity', 'unit': 'http://www.wikidata.org/entity/Q28390'}, {'property': 'P65', 'entity-type': 'item', 'numeric-id': 592248, 'type': 'wikibase-entityid', 'id': 'Q592248'}, {'property': 'P2233', 'amount': '+2.6902361', 'type': 'quantity', 'unit': 'http://www.wikidata.org/entity/Q1811'}, {'numeric-id': 525, 'id': 'Q525', 'entity-type': 'item', 'property': 'P397', 'type': 'wikibase-entityid'}), 'title': 'Q6851486'}
{'type': 'item', 'id': 'Q6851490', 'labels': (('en', 'Miles Nightingall'),), 'descriptions': (('en', 'British politician (1768-1829)'), ('en-g', 'British politician'), ('en-ca', 'British politician')), 'aliases': (), 'sitelinks': (('arzwiki', '\xd9\x85\xd9\x8a\xd9\x84\xd9\x8a\xd8\xb3 \xd9\x86\xd9\x8a\xd8\xac\xd8\xaa\xd9\x8a\xd9\x86\xd8\xac\xd8\xa7\xd9\x84', None), ('enwiki', 'Miles Nightingall', None)), 'claims': ({'after': 0, 'before': 0, 'time': '+1768-12-25T00:00:00Z', 'precision': 11, 'property': 'P569', 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'type': 'time', 'timezone': 0}, {'type': 'wikibase-entityid', 'numeric-id': 15987216, 'entity-type': 'item', 'id': 'Q15987216', 'property': 'P1343'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q95496849', 'numeric-id': 95496849, 'property': 'P734'}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'property': 'P570', 'type': 'time', 'precision': 11, 'after': 0, 'time': '+1829-09-12T00:00:00Z', 'timezone': 0, 'before': 0}, {'before': 0, 'property': 'P570', 'after': 0, 'type': 'time', 'precision': 11, 'time': '+1829-09-17T00:00:00Z', 'timezone': 0, 'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'}, {'property': 'P102', 'numeric-id': 499956, 'type': 'wikibase-entityid', 'entity-type': 'item', 'id': 'Q499956'}, {'type': 'wikibase-entityid', 'id': 'Q174193', 'entity-type': 'item', 'numeric-id': 174193, 'property': 'P27'}, {'id': 'Q161885', 'property': 'P27', 'type': 'wikibase-entityid', 'numeric-id': 161885, 'entity-type': 'item'}, {'property': 'P735', 'id': 'Q6851298', 'entity-type': 'item', 'numeric-id': 6851298, 'type': 'wikibase-entityid'}, {'type': 'wikibase-entityid', 'id': 'Q145', 'property': 'P945', 'numeric-id': 145, 'entity-type': 'item'}, {'type': 'wikibase-entityid', 'property': 'P106', 'entity-type': 'item', 'id': 'Q82955', 'numeric-id': 82955}, {'id': 'Q84', 'entity-type': 'item', 'property': 'P937', 'numeric-id': 84, 'type': 'wikibase-entityid'}, {'numeric-id': 41582542, 'property': 'P39', 'id': 'Q41582542', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'entity-type': 'item', 'numeric-id': 41582540, 'id': 'Q41582540', 'type': 'wikibase-entityid', 'property': 'P39'}, {'id': 'Q506369', 'numeric-id': 506369, 'type': 'wikibase-entityid', 'property': 'P166', 'entity-type': 'item'}, {'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P3602', 'id': 'Q580228', 'numeric-id': 580228}, {'property': 'P3602', 'id': 'Q623211', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 623211}, {'entity-type': 'item', 'id': 'Q6581097', 'property': 'P21', 'type': 'wikibase-entityid', 'numeric-id': 6581097}, {'id': 'Q1860', 'entity-type': 'item', 'numeric-id': 1860, 'property': 'P1412', 'type': 'wikibase-entityid'}, {'property': 'P410', 'id': 'Q83460', 'type': 'wikibase-entityid', 'entity-type': 'item', 'numeric-id': 83460}, {'type': 'wikibase-entityid', 'id': 'Q222595', 'entity-type': 'item', 'property': 'P241', 'numeric-id': 222595}, {'type': 'wikibase-entityid', 'property': 'P31', 'id': 'Q5', 'entity-type': 'item', 'numeric-id': 5}, {'value': 'Memorial to General Sir Miles Nightingall in Gloucester Cathedral.JPG', 'type': 'string', 'property': 'P1442'}), 'title': 'Q6851490'}
{'type': 'item', 'id': 'Q6852148', 'labels': (('en', 'Military Ridge Road'),), 'descriptions': (), 'aliases': (), 'sitelinks': (('commonswiki', 'Category:Military Road (Wisconsin)', None), ('enwiki', 'Military Ridge Road', None)), 'claims': ({'type': 'wikibase-entityid', 'id': 'Q34442', 'numeric-id': 34442, 'property': 'P31', 'entity-type': 'item'}, {'entity-type': 'item', 'id': 'Q30', 'numeric-id': 30, 'property': 'P17', 'type': 'wikibase-entityid'}, {'property': 'P18', 'type': 'string', 'value': 'Raube2.JPG'}, {'property': 'P373', 'type': 'string', 'value': 'Military Road (Wisconsin)'}, {'type': 'wikibase-entityid', 'property': 'P131', 'entity-type': 'item', 'numeric-id': 1537, 'id': 'Q1537'}), 'title': 'Q6852148'}
{'type': 'item', 'id': 'Q6852744', 'labels': (('en', 'Bediltahirbey'),), 'descriptions': (('en-ca', 'k\xc3\xb6y in Akyaz\xc4\xb1, Turkey'), ('en-g', 'k\xc3\xb6y in Akyaz\xc4\xb1, Turkey'), ('en', 'k\xc3\xb6y in Akyaz\xc4\xb1, Turkey')), 'aliases': (), 'sitelinks': (('cewiki', '\xd0\x91\xd0\xb5\xd0\xb4\xd0\xb8\xd0\xbb\xd1\x82\xd0\xb0\xd1\x85\xd3\x80\xd0\xb8\xd1\x80\xd0\xb1\xd0\xb5\xd0\xb9 (\xd0\x90\xd0\xba\xd0\xb9\xd0\xb0\xd0\xb7\xd0\xb8)', None), ('ttwiki', '\xd0\x91\xd0\xb5\xd0\xb4\xd0\xb8\xd0\xbb\xd1\x82\xd0\xb0\xd2\xbb\xd0\xb8\xd1\x80\xd0\xb1\xd0\xb5\xd0\xb9 (\xd0\x90\xd0\xba\xd1\x8a\xd1\x8f\xd0\xb7\xd1\x8b)', None), ('trwiki', 'Bediltahirbey, Akyaz\xc4\xb1', None), ('viwiki', 'Bediltahirbey, Akyaz\xc4\xb1', None)), 'claims': ({'id': 'Q43', 'numeric-id': 43, 'property': 'P17', 'entity-type': 'item', 'type': 'wikibase-entityid'}, {'id': 'Q1529096', 'property': 'P31', 'type': 'wikibase-entityid', 'numeric-id': 1529096, 'entity-type': 'item'}, {'entity-type': 'item', 'numeric-id': 424435, 'type': 'wikibase-entityid', 'property': 'P131', 'id': 'Q424435'}), 'title': 'Q6852744'}
{'type': 'item', 'id': 'Q6854109', 'labels': (('en', 'Ba\xc5\x9fdo\xc4\x9fan'),), 'descriptions': (('en-ca', 'k\xc3\xb6y in And\xc4\xb1r\xc4\xb1n, Turkey'), ('en-g', 'k\xc3\xb6y in And\xc4\xb1r\xc4\xb1n, Turkey'), ('en', 'village in And\xc4\xb1r\xc4\xb1n, Kahramanmara\xc5\x9f, Turkey')), 'aliases': (), 'sitelinks': (('viwiki', 'Ba\xc5\x9fdo\xc4\x9fan, And\xc4\xb1r\xc4\xb1n', None), ('cewiki', '\xd0\x91\xd0\xb0\xd1\x88\xd0\xb4\xd0\xbe\xd0\xb3\xd3\x80\xd0\xb0\xd0\xbd (\xd0\x90\xd0\xbd\xd0\xb4\xd0\xb8\xd1\x80\xd0\xb8\xd0\xbd)', None), ('trwiki', 'Ba\xc5\x9fdo\xc4\x9fan, And\xc4\xb1r\xc4\xb1n', None)), 'claims': ({'type': 'wikibase-entityid', 'property': 'P131', 'entity-type': 'item', 'numeric-id': 528602, 'id': 'Q528602'}, {'numeric-id': 1529096, 'id': 'Q1529096', 'entity-type': 'item', 'property': 'P31', 'type': 'wikibase-entityid'}, {'numeric-id': 43, 'property': 'P17', 'entity-type': 'item', 'id': 'Q43', 'type': 'wikibase-entityid'}), 'title': 'Q6854109'}
{'type': 'item', 'id': 'Q6855753', 'labels': (('en', 'Sherry Ansky'),), 'descriptions': (('en', 'Israeli Chef and cook books writer'),), 'aliases': (), 'sitelinks': (('hewiki', '\xd7\xa9\xd7\xa8\xd7\x99 \xd7\x90\xd7\xa0\xd7\xa1\xd7\xa7\xd7\x99', None), ('commonswiki', 'Category:Sherry Ansky', None), ('hewikiquote', '\xd7\xa9\xd7\xa8\xd7\x99 \xd7\x90\xd7\xa0\xd7\xa1\xd7\xa7\xd7\x99', None)), 'claims': ({'id': 'Q6581072', 'numeric-id': 6581072, 'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P21'}, {'property': 'P11496', 'value': '1140563741522379264', 'type': 'string'}, {'id': 'Q1218', 'property': 'P19', 'type': 'wikibase-entityid', 'numeric-id': 1218, 'entity-type': 'item'}, {'property': 'P373', 'type': 'string', 'value': 'Sherry Ansky'}, {'value': '\xd7\xa9\xd7\xa8\xd7\x99 \xd7\x90\xd7\xa0\xd7\xa1\xd7\xa7\xd7\x99.jpg', 'property': 'P18', 'type': 'string'}, {'type': 'wikibase-entityid', 'entity-type': 'item', 'property': 'P800', 'id': 'Q60056798', 'numeric-id': 60056798}, {'calendarmodel': 'http://www.wikidata.org/entity/Q1985727', 'precision': 9, 'property': 'P569', 'timezone': 0, 'type': 'time', 'time': '+1957-00-00T00:00:00Z', 'after': 0, 'before': 0}, {'entity-type': 'item', 'numeric-id': 36180, 'id': 'Q36180', 'property': 'P106', 'type': 'wikibase-entityid'}, {'id': 'Q156839', 'numeric-id': 156839, 'property': 'P106', 'type': 'wikibase-entityid', 'entity-type': 'item'}, {'property': 'P27', 'entity-type': 'item', 'id': 'Q801', 'type': 'wikibase-entityid', 'numeric-id': 801}, {'entity-type': 'item', 'numeric-id': 20796747, 'property': 'P735', 'type': 'wikibase-entityid', 'id': 'Q20796747'}, {'type': 'wikibase-entityid', 'numeric-id': 5, 'id': 'Q5', 'property': 'P31', 'entity-type': 'item'}, {'property': 'P40', 'type': 'wikibase-entityid', 'numeric-id': 1397411, 'entity-type': 'item', 'id': 'Q1397411'}), 'title': 'Q6855753'}
{'type': 'item', 'id': 'Q6855910', 'labels': (('en-ca', 'Bazlama\xc3\xa7'), ('en', 'Bazlama\xc3\xa7'), ('en-g', 'Bazlama\xc3\xa7')), 'descriptions': (('en', 'village in Terme, Samsun, Turkey'),), 'aliases': (), 'sitelinks': (('ttwiki', '\xd0\x91\xd0\xb0\xd0\xb7\xd0\xbb\xd0\xb0\xd0\xbc\xd0\xb0\xd1\x87 (\xd0\xa2\xd0\xb5\xd1\x80\xd0\xbc\xd0\xb5)', None), ('cewiki', '\xd0\x91\xd0\xb0\xd0\xb7\xd0\xbb\xd0\xb0\xd0\xbc\xd0\xb0\xd1\x87 (\xd0\xa2\xd0\xb5\xd1\x80\xd0\xbc\xd0\xb5)', None), ('trwiki', 'Bazlama\xc3\xa7, Terme', None), ('viwiki', 'Bazlama\xc3\xa7, Terme', None)), 'claims': ({'id': 'Q43', 'entity-type': 'item', 'numeric-id': 43, 'type': 'wikibase-entityid', 'property': 'P17'}, {'entity-type': 'item', 'numeric-id': 3055967, 'id': 'Q3055967', 'type': 'wikibase-entityid', 'property': 'P131'}, {'property': 'P31', 'numeric-id': 815324, 'type': 'wikibase-entityid', 'id': 'Q815324', 'entity-type': 'item'}, {'id': 'Q123705', 'property': 'P31', 'entity-type': 'item', 'numeric-id': 123705, 'type': 'wikibase-entityid'}), 'title': 'Q6855910'}
{'type': 'item', 'id': 'Q6856178', 'labels': (('en', 'Bay\xc4\xb1rk\xc3\xb6y'),), 'descriptions': (('en', 'k\xc3\xb6y in Daday, Turkey'), ('en-ca', 'k\xc3\xb6y in Daday, Turkey'), ('en-g', 'k\xc3\xb6y in Daday, Turkey')), 'aliases': (), 'sitelinks': (('uzwiki', 'Bay\xc4\xb1rk\xc3\xb6y (Daday)', None), ('cewiki', '\xd0\x91\xd0\xb0\xd0\xb9\xd0\xb8\xd1\x80\xd0\xba\xd0\xbe\xd1\x8c\xd0\xb9 (\xd0\x94\xd0\xb0\xd0\xb4\xd0\xb0\xd0\xb9)', None), ('viwiki', 'Bay\xc4\xb1rk\xc3\xb6y, Daday', None), ('ttwiki', '\xd0\x91\xd0\xb0\xd0\xb5\xd1\x80\xd0\xba\xd3\xa9\xd0\xb9 (\xd0\x94\xd0\xb0\xd0\xb4\xd0\xb0\xd0\xb9)', None), ('enwiki', 'Bay\xc4\xb1rk\xc3\xb6y, Daday', None), ('trwiki', 'Bay\xc4\xb1rk\xc3\xb6y, Daday', None)), 'claims': ({'property': 'P131', 'numeric-id': 2674056, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q2674056'}, {'property': 'P17', 'type': 'wikibase-entityid', 'id': 'Q43', 'entity-type': 'item', 'numeric-id': 43}, {'entity-type': 'item', 'numeric-id': 1529096, 'property': 'P31', 'id': 'Q1529096', 'type': 'wikibase-entityid'}), 'title': 'Q6856178'}
{'type': 'item', 'id': 'Q6856539', 'labels': (('en', 'Bay\xc4\xb1rk\xc3\xb6y'),), 'descriptions': (('en', 'village in Seydikemer, Mu\xc4\x9fla Province, Turkey'),), 'aliases': (('en', 'Bay\xc4\xb1r'),), 'sitelinks': (('ttwiki', '\xd0\x91\xd0\xb0\xd0\xb5\xd1\x80\xd0\xba\xd3\xa9\xd0\xb9 (\xd0\xa1\xd0\xb5\xd0\xb9\xd0\xb4\xd0\xb8\xd0\xba\xd0\xb5\xd0\xbc\xd0\xb5\xd1\x80)', None), ('cewiki', '\xd0\x91\xd0\xb0\xd0\xb9\xd0\xb8\xd1\x80\xd0\xba\xd0\xbe\xd1\x8c\xd0\xb9 (\xd0\xa1\xd0\xb5\xd0\xb9\xd0\xb4\xd0\xb8\xd0\xba\xd0\xb5\xd0\xbc\xd0\xb5\xd1\x80)', None), ('trwiki', 'Bay\xc4\xb1rk\xc3\xb6y, Seydikemer', None), ('viwiki', 'Bay\xc4\xb1rk\xc3\xb6y, Fethiye', None)), 'claims': ({'entity-type': 'item', 'numeric-id': 207998, 'property': 'P131', 'type': 'wikibase-entityid', 'id': 'Q207998'}, {'entity-type': 'item', 'property': 'P131', 'type': 'wikibase-entityid', 'numeric-id': 6620651, 'id': 'Q6620651'}, {'numeric-id': 1529096, 'entity-type': 'item', 'type': 'wikibase-entityid', 'id': 'Q1529096', 'property': 'P31'}, {'type': 'wikibase-entityid', 'id': 'Q123705', 'entity-type': 'item', 'numeric-id': 123705, 'property': 'P31'}, {'property': 'P17', 'entity-type': 'item', 'numeric-id': 43, 'type': 'wikibase-entityid', 'id': 'Q43'}), 'title': 'Q6856539'}
{'type': 'item', 'id': 'Q6856844', 'labels': (('en', 'Middle Island'),), 'descriptions': (('en', "island in People's Republic of China"), ('en-ca', "island in People's Republic of China"), ('en-g', "island in People's Republic of China")), 'aliases': (), 'sitelinks': (('viwiki', '\xc4\x90\xe1\xba\xa3o Trung', None), ('zhwiki', '\xe4\xb8\xad\xe5\xb2\x9b (\xe8\xa5\xbf\xe6\xb2\x99\xe7\xbe\xa4\xe5\xb2\x9b)', None), ('cebwiki', 'Middle Island (pulo sa Pangmasang Republika sa T\xc5\x9bina)', None), ('svwiki', 'Middle Island (\xc3\xb6 i Kina)', None)), 'claims': ({'id': 'Q148', 'entity-type': 'item', 'property': 'P17', 'type': 'wikibase-entityid', 'numeric-id': 148}, {'id': 'Q23442', 'type': 'wikibase-entityid', 'numeric-id': 23442, 'entity-type': 'item', 'property': 'P31'}, {'numeric-id': 274388, 'entity-type': 'item', 'type': 'wikibase-entityid', 'property': 'P706', 'id': 'Q274388'}), 'title': 'Q6856844'}