-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1211 Minor Planets Google News Analysis Daily Collection Public.nb
10178 lines (10133 loc) · 438 KB
/
1211 Minor Planets Google News Analysis Daily Collection Public.nb
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
(* Content-type: application/vnd.wolfram.mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='WolframDesktop 12.2' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 161, 7]
NotebookDataLength[ 437866, 10170]
NotebookOptionsPosition[ 434370, 10102]
NotebookOutlinePosition[ 434929, 10123]
CellTagsIndexPosition[ 434886, 10120]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[CellGroupData[{
Cell["\<\
NEWS PRESENCE OF ASTEROID NAMES RELATES TO ANGLES TO SUN -- COLLECTION \
STARTED ON Feb 15, 2022, EVALUATED DAILY \
\>", "Title",
CellChangeTimes->{{3.830361911463018*^9, 3.830361928724457*^9}, {
3.831291359556777*^9, 3.8312913973645287`*^9}, {3.831296128962059*^9,
3.8312961793090305`*^9}, {3.83287029025057*^9, 3.8328702931230545`*^9}, {
3.833103759845621*^9, 3.8331037804596305`*^9}, {3.852318490842189*^9,
3.8523185177633476`*^9}, {3.8562561409905033`*^9, 3.8562561676875057`*^9}, {
3.857513759353984*^9, 3.85751378325028*^9}, {3.857513814427532*^9,
3.857513821114399*^9}, {3.8578457131574306`*^9, 3.85784573280726*^9}, {
3.879503746610313*^9,
3.879503756155246*^9}},ExpressionUUID->"8e69bfa6-fa19-4646-afe5-\
afa55a667472"],
Cell[BoxData[""], "Input",
CellChangeTimes->{{3.879503752042531*^9,
3.879503752105628*^9}},ExpressionUUID->"b16860e6-147f-4a71-8442-\
1cc83ee04e20"],
Cell[BoxData[
StyleBox[
RowBox[{"\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{
"SetDirectory", "[",
"\"\</home/rko/Documents/Wolfram Desktop/Asteroids1211\>\"", "]"}], " ",
";"}],
RowBox[{"(*",
RowBox[{"use", " ", "your", " ", "own", " ", "directory", " ", "here"}],
"*)"}], "\[IndentingNewLine]"}]}],
Background->RGBColor[1, 0.925, 0.925]]], "Input",
CellChangeTimes->{{3.8322657203964243`*^9, 3.8322657280139256`*^9}, {
3.8328603981059847`*^9, 3.8328603988812475`*^9}, 3.8401798504290104`*^9,
3.848001852743375*^9, 3.856561116123707*^9, {3.8567259939514523`*^9,
3.8567260077071466`*^9}, 3.8575136232894363`*^9, {3.858283197176193*^9,
3.858283198478406*^9}, {3.860788142435668*^9, 3.8607882059308987`*^9},
3.8619591361110697`*^9},
CellLabel->"In[2]:=",ExpressionUUID->"f395f2d6-dac9-4fcb-ac6c-361adf4f8348"],
Cell[BoxData[
RowBox[{
RowBox[{"asteroididentitylist", "=",
RowBox[{"Import", "[", "\"\<asteroidentities1211.m\>\"", "]"}]}],
";"}]], "Input",
CellChangeTimes->{{3.825832956915039*^9, 3.825832979561098*^9}, {
3.8268661004057264`*^9, 3.826866100892112*^9}, {3.8270738555118065`*^9,
3.8270738560192137`*^9}, {3.8302920275557194`*^9, 3.830292028365761*^9}, {
3.832275381821548*^9, 3.8322754070912333`*^9}, {3.8322756868876247`*^9,
3.83227569230931*^9}, {3.833129695297626*^9, 3.8331296959056683`*^9}, {
3.8331868618408365`*^9, 3.833186863064111*^9}, 3.8331908780659075`*^9},
CellLabel->"In[3]:=",ExpressionUUID->"fb476d55-8946-421c-bbfe-704f8bf79755"],
Cell[CellGroupData[{
Cell[BoxData["asteroididentitylist"], "Input",
CellChangeTimes->{{3.86446786658355*^9, 3.864467868583873*^9}},
CellLabel->"In[3]:=",ExpressionUUID->"1539eb08-4494-4fd7-95ca-cdbda47a46de"],
Cell[BoxData[
RowBox[{"{",
RowBox[{
TemplateBox[{"\"11664 Kashiwagi (1997 GX24)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Kashiwagi\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Kashiwagi\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"12734 Haruna (1991 UF3)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Haruna\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Haruna\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"819 Barnardiana (1916 ZA)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Barnardiana\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Barnardiana\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"3746 Heyuan (1964 TC1)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Heyuan\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Heyuan\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"10012 Tmutarakania (1978 RE3)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Tmutarakania\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Tmutarakania\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"10005 Chernega (1976 SS2)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Chernega\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Chernega\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"22694 Tyndall (1998 QF104)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Tyndall\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Tyndall\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"2216 Kerch (1971 LF)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Kerch\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Kerch\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"12659 Schlegel (1973 UR5)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Schlegel\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Schlegel\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"12042 Laques (1997 FC)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Laques\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Laques\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"33480 Bartolucci (1999 GA1)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Bartolucci\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Bartolucci\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"12800 Oobayashiarata (1995 WQ7)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Oobayashiarata\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Oobayashiarata\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"6586 Seydler (1984 UK1)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Seydler\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Seydler\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"10138 Ohtanihiroshi (1993 SS1)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Ohtanihiroshi\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Ohtanihiroshi\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"17358 Lozino-Lozinskij (1978 SU4)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"LozinoLozinskij\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"LozinoLozinskij\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"27049 Kraus (1998 SB3)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Kraus\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Kraus\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"4885 Grange (1980 LU)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Grange\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Grange\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"1296 Andree (1933 WE)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Andree\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Andree\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"9258 Johnpauljones (2137 T-2)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Johnpauljones\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Johnpauljones\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"9693 Bleeker (6547 P-L)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Bleeker\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Bleeker\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"8420 Angrogna (1996 WQ)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Angrogna\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Angrogna\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"22442 Blaha (1996 TM9)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Blaha\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Blaha\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"26757 Bastei (2001 KU17)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Bastei\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Bastei\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"928 Hildrun (1920 GP)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Hildrun\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Hildrun\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"20323 Tomlindstom (1998 HC21)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Tomlindstom\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Tomlindstom\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"3996 Fugaku (1988 XG1)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Fugaku\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Fugaku\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"7015 Schopenhauer (1990 QC8)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Schopenhauer\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Schopenhauer\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"6332 Vorarlberg (1992 FP3)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Vorarlberg\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Vorarlberg\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"777 Gutemberga (1914 TZ)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Gutemberga\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Gutemberga\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"278 Paulina\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Paulina\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Paulina\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"4687 Brunsandrej (1979 SJ11)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Brunsandrej\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Brunsandrej\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"6898 Saint-Marys (1988 LE)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"SaintMarys\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"SaintMarys\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"9661 Hohmann (1996 FU13)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Hohmann\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Hohmann\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"8906 Yano (1995 WF2)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Yano\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Yano\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"5239 Reiki (1990 VC4)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Reiki\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Reiki\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"786 Bredichina (1914 UO)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Bredichina\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Bredichina\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"6128 Lasorda (1989 LA)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Lasorda\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Lasorda\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"22581 Rosahemphill (1998 HH77)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Rosahemphill\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Rosahemphill\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"3523 Arina (1975 TV2)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Arina\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Arina\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"11147 Delmas (1997 XT5)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Delmas\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Delmas\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"17720 Manuboccuni (1997 XH10)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Manuboccuni\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Manuboccuni\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"17097 Ronneuman (1999 JX31)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Ronneuman\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Ronneuman\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"1841 Masaryk (1971 UO1)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Masaryk\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Masaryk\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"11322 Aquamarine (1995 QT)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Aquamarine\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Aquamarine\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"1244 Deira (1932 KE)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Deira\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Deira\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"22998 Waltimyer (1999 VY70)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Waltimyer\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Waltimyer\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"8443 Svecica (4343 T-3)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Svecica\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Svecica\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"10965 van Leverink (3297 T-1)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"vanLeverink\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"vanLeverink\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"1269 Rollandia (1930 SH)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Rollandia\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Rollandia\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"3765 Texereau (1982 SU1)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Texereau\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Texereau\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"721 Tabora (1911 MZ)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Tabora\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Tabora\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"8296 Miyama (1993 AD)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Miyama\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Miyama\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"7506 Lub (4837 P-L)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Lub\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Lub\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"9657 Ucka (1996 DG2)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Ucka\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Ucka\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"2307 Garuda (1957 HJ)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Garuda\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Garuda\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"24778 Nemsu (1993 KW1)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Nemsu\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Nemsu\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"3047 Goethe (6091 P-L)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Goethe\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Goethe\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"9154 Kol'tsovo (1982 SP6)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Koltsovo\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Koltsovo\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"2890 Vilyujsk (1978 SY7)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Vilyujsk\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Vilyujsk\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"897 Lysistrata (1918 DZ)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Lysistrata\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Lysistrata\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"20964 Mons Naklethi (1977 UA)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"MonsNaklethi\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"MonsNaklethi\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"1859 Kovalevskaya (1972 RS2)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Kovalevskaya\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Kovalevskaya\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"3803 Tuchkova (1981 TP1)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Tuchkova\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Tuchkova\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"19517 Robertocarlos (1998 SK164)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Robertocarlos\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Robertocarlos\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"3654 AAS (1949 QH1)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"AAS\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"AAS\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"5837 Hedin (2548 P-L)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Hedin\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Hedin\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"29 Amphitrite\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Amphitrite\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Amphitrite\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"8966 Hortulana (3287 T-1)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Hortulana\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Hortulana\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"7665 Putignano (1994 TK3)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Putignano\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Putignano\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"1592 Mathieu (1951 LA)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Mathieu\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Mathieu\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"1550 Tito (1937 WD)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Tito\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Tito\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"368 Haidea (1893 AB)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Haidea\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Haidea\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"24028 Veronicaduys (1999 RP182)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Veronicaduys\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Veronicaduys\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"13234 Natashaowen (1998 FC74)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Natashaowen\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Natashaowen\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"2225 Serkowski (6546 P-L)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Serkowski\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Serkowski\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"2866 Hardy (1961 TA)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Hardy\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Hardy\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"994 Otthild (1923 NL)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Otthild\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Otthild\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"26821 Baehr (1988 FM1)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Baehr\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Baehr\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"1263 Varsavia (1933 FF)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Varsavia\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Varsavia\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"8001 Ramsden (1986 TR3)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Ramsden\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Ramsden\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"5544 Kazakov (1978 TH6)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Kazakov\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Kazakov\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"1233 Kobresia (1931 TG2)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Kobresia\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Kobresia\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"1299 Mertona (1934 BA)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Mertona\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Mertona\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"16085 Laffan (1999 TM27)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Laffan\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Laffan\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"5196 Bustelli (3102 T-2)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Bustelli\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Bustelli\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"7565 Zipfel (1988 RD11)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Zipfel\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Zipfel\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"2882 Tedesco (1981 OG)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Tedesco\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Tedesco\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"1669 Dagmar (1934 RS)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Dagmar\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Dagmar\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"1409 Isko (1937 AK)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Isko\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Isko\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"2230 Yunnan (1978 UT1)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Yunnan\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Yunnan\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"1354 Botha (1935 GK)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Botha\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Botha\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"11006 Gilson (1980 TZ3)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Gilson\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Gilson\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"8117 Yuanlongping (1996 SD1)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Yuanlongping\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Yuanlongping\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"5366 Rhianjones (1981 EY30)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Rhianjones\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Rhianjones\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"544 Jetta (1904 OU)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Jetta\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Jetta\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"20840 Borishanin (2000 UF58)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Borishanin\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Borishanin\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"1538 Detre (1940 RF)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Detre\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Detre\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"11129 Hayachine (1996 VS5)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Hayachine\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Hayachine\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"3342 Fivesparks (1982 BD3)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Fivesparks\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Fivesparks\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"21432 Polingloh (1998 FJ115)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Polingloh\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Polingloh\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"706 Hirundo (1910 KX)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Hirundo\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Hirundo\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"16908 Groeselenberg (1998 DD33)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Groeselenberg\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Groeselenberg\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"7788 Tsukuba (1994 XS)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Tsukuba\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Tsukuba\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"4488 Tokitada (1987 UK)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Tokitada\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Tokitada\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"11444 Peshekhonov (1978 QA2)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Peshekhonov\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Peshekhonov\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"20309 Batalden (1998 FD110)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Batalden\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Batalden\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"19420 Vivekbuch (1998 FB54)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Vivekbuch\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Vivekbuch\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"6218 Mizushima (1977 EG7)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Mizushima\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Mizushima\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"9255 Inoutadataka (3174 T-1)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Inoutadataka\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Inoutadataka\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"4544 Xanthus (1989 FB)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Xanthus\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Xanthus\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"6966 Vietoris (1991 RD5)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Vietoris\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Vietoris\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"8574 Makotoirie (1996 VC2)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Makotoirie\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Makotoirie\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"18376 Quirk (1991 SQ)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Quirk\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Quirk\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"8347 Lallaward (1987 HK)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Lallaward\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Lallaward\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"5568 Mufson (1953 TS2)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Mufson\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Mufson\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"15128 Patrickjones (2000 EG46)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Patrickjones\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Patrickjones\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"18818 Yasuhiko (1999 MB2)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Yasuhiko\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Yasuhiko\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"8387 Fujimori (1993 DO)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Fujimori\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Fujimori\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"12191 Vorontsova (1978 TT8)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Vorontsova\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Vorontsova\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"402920 Tsawout (2007 TH142)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Tsawout\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Tsawout\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"204 Kallisto\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Kallisto\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Kallisto\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"20837 Ramanlal (2000 UX52)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Ramanlal\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Ramanlal\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"5757 Ticha (1967 JN)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Ticha\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Ticha\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"5824 Inagaki (1989 YM)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Inagaki\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Inagaki\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"11945 Amsterdam (1993 PC5)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Amsterdam\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Amsterdam\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"9022 Drake (1988 PC1)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Drake\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Drake\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"643 Scheherezade (1907 ZZ)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Scheherezade\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Scheherezade\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"9822 Hajdukova (4114 T-1)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Hajdukova\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Hajdukova\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"2654 Ristenpart (1968 OG)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Ristenpart\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Ristenpart\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"3557 Sokolsky (1977 QE1)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Sokolsky\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Sokolsky\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"10638 McGlothlin (1998 SV54)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"McGlothlin\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"McGlothlin\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"5861 Glynjones (1982 RW)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Glynjones\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Glynjones\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"10927 Vaucluse (1998 BB42)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Vaucluse\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Vaucluse\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"23730 Suncar (1998 HX89)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Suncar\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Suncar\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"17076 Betti (1999 HO)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Betti\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Betti\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"9813 Rozgaj (1998 TP5)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Rozgaj\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Rozgaj\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"775 Lumiere (1914 TX)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Lumiere\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Lumiere\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"5432 Imakiire (1988 VN)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Imakiire\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Imakiire\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"12722 Petrarca (1991 PT1)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Petrarca\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Petrarca\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"2170 Byelorussia (1971 SZ)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Byelorussia\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Byelorussia\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"306367 Nut (5025 P-L)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Nut\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Nut\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"6865 Dunkerley (1991 TE2)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Dunkerley\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Dunkerley\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"2347 Vinata (1936 TK)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Vinata\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Vinata\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"7599 Munari (1994 PB)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Munari\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Munari\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"11790 Goode (1978 RU)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Goode\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Goode\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"7011 Worley (1987 SK1)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Worley\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Worley\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"2854 Rawson (1964 JE)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Rawson\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Rawson\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"6800 Saragamine (1994 UC)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Saragamine\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Saragamine\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"6761 Haroldconnolly (1981 EV19)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Haroldconnolly\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Haroldconnolly\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"4020 Dominique (1981 ET38)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Dominique\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Dominique\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"1848 Delvaux (1933 QD)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Delvaux\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Delvaux\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"18679 Heatherenae (1998 FW102)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Heatherenae\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Heatherenae\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"4014 Heizman (1979 SG10)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Heizman\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Heizman\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"31823 Viete (1999 TN3)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Viete\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Viete\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"3192 A'Hearn (1982 BY1)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"AHearn\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"AHearn\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"20272 Duyha (1998 FH33)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Duyha\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Duyha\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"5981 Kresilas (2140 P-L)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Kresilas\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Kresilas\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"22562 Wage (1998 HC19)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Wage\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Wage\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"2891 McGetchin (1980 MD)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"McGetchin\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"McGetchin\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"689 Zita (1909 HJ)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Zita\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Zita\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"21571 Naegeli (1998 RD51)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Naegeli\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Naegeli\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"5852 Nanette (1991 HO)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Nanette\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Nanette\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"5095 Escalante (1983 NL)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Escalante\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Escalante\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"16251 Barbifrank (2000 HX48)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Barbifrank\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Barbifrank\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"20480 Antonschraut (1999 NT31)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Antonschraut\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Antonschraut\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"18117 Jonhodge (2000 NY23)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Jonhodge\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Jonhodge\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"88611 Teharonhiawako (2001 QT297)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Teharonhiawako\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Teharonhiawako\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"11241 Eckhout (6792 P-L)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Eckhout\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Eckhout\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"6995 Minoyama (1996 BZ1)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Minoyama\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Minoyama\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"4252 Godwin (1985 RG4)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Godwin\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Godwin\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"569 Misa (1905 QT)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Misa\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Misa\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"16203 Jessicastahl (2000 CH32)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Jessicastahl\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Jessicastahl\\\"]\"",
"\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"6603 Marycragg (1990 KG)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Marycragg\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Marycragg\\\"]\"", "\"minor planet\""},
"Entity"], ",",
TemplateBox[{"\"6474 Choate (1987 SG1)\"",
RowBox[{"Entity", "[",
RowBox[{"\"MinorPlanet\"", ",", "\"Choate\""}], "]"}],
"\"Entity[\\\"MinorPlanet\\\", \\\"Choate\\\"]\"", "\"minor planet\""},