forked from De7vID/klingon-assistant-data
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsources.yaml
More file actions
998 lines (998 loc) · 24 KB
/
sources.yaml
File metadata and controls
998 lines (998 loc) · 24 KB
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
sources:
kli_mailing_list:
name: KLI mailing list
short_name: KLI mailing list
type: mailing_list
qepa_2021:
name: qep'a' (2021)
short_name: qep'a' 2021
type: event
year: 2021
tkd:
name: The Klingon Dictionary
short_name: TKD
type: book
kgt:
name: Klingon for the Galactic Traveler
short_name: KGT
type: book
qephom_2024:
name: qepHom'a' (2024)
short_name: qepHom'a' 2024
type: event
year: 2024
skybox_s14:
name: SkyBox S14
short_name: SkyBox S14
type: media
holqed:
name: HolQeD
short_name: HQ
type: journal
tkda:
name: The Klingon Dictionary Addendum
short_name: TKDA
type: book
qephom_2014:
name: qepHom'a' (2014)
short_name: qepHom'a' 2014
type: event
year: 2014
startrek_klingon:
name: startrek.klingon newsgroup
short_name: s.k
type: newsgroup
tnk:
name: Talk Now! Klingon
short_name: TNK
type: software
qepa_2023:
name: qep'a' (2023)
short_name: qep'a' 2023
type: event
year: 2023
bop:
name: Bird of Prey poster
short_name: BoP
type: media
qephom_2013:
name: qepHom'a' (2013)
short_name: qepHom'a' 2013
type: event
year: 2013
star_trek_into_darkness:
name: star_trek_into_darkness
short_name: star_trek_into_darkness
type: unknown
qepa_2018:
name: qep'a' (2018)
short_name: qep'a' 2018
type: event
year: 2018
qepa_2019:
name: qep'a' (2019)
short_name: qep'a' 2019
type: event
year: 2019
qepa_2020:
name: qep'a' (2020)
short_name: qep'a' 2020
type: event
year: 2020
qephom_2016:
name: qepHom'a' (2016)
short_name: qepHom'a' 2016
type: event
year: 2016
qephom_2015:
name: qepHom'a' (2015)
short_name: qepHom'a' 2015
type: event
year: 2015
tng_the_chase:
name: tng_the_chase
short_name: tng_the_chase
type: unknown
tkw:
name: The Klingon Way
short_name: TKW
type: book
star_trek_iii:
name: star_trek_iii
short_name: star_trek_iii
type: unknown
pk:
name: Power Klingon
short_name: PK
type: audio
qepa_2017:
name: qep'a' (2017)
short_name: qep'a' 2017
type: event
year: 2017
qephom_2017:
name: qepHom'a' (2017)
short_name: qepHom'a' 2017
type: event
year: 2017
star_trek_constellations_p_259:
name: star_trek_constellations_p_259
short_name: star_trek_constellations_p_259
type: unknown
qepa_2024:
name: qep'a' (2024)
short_name: qep'a' 2024
type: event
year: 2024
qephom_2021:
name: qepHom'a' (2021)
short_name: qepHom'a' 2021
type: event
year: 2021
qephom_2025:
name: qepHom'a' (2025)
short_name: qepHom'a' 2025
type: event
year: 2025
qephom_2020:
name: qepHom'a' (2020)
short_name: qepHom'a' 2020
type: event
year: 2020
cha_monmey:
name: cha_monmey
short_name: cha_monmey
type: unknown
qepa_2016:
name: qep'a' (2016)
short_name: qep'a' 2016
type: event
year: 2016
skybox_s8:
name: SkyBox S8
short_name: SkyBox S8
type: media
paqbatlh:
name: paq'batlh
short_name: paq'batlh
type: book
kcd:
name: 'Star Trek: Klingon (CD game)'
short_name: KCD
type: game
skybox_s31:
name: SkyBox S31
short_name: SkyBox S31
type: media
klingon_monopoly:
name: klingon_monopoly
short_name: klingon_monopoly
type: unknown
skybox_s26:
name: SkyBox S26
short_name: SkyBox S26
type: media
esriv_6_feb_2020:
name: esriv_6_feb_2020
short_name: esriv_6_feb_2020
type: unknown
qepa_2025:
name: qep'a' (2025)
short_name: qep'a' 2025
type: event
year: 2025
qephom_2023:
name: qepHom'a' (2023)
short_name: qepHom'a' 2023
type: event
year: 2023
diplomatic_implausibility:
name: diplomatic_implausibility
short_name: diplomatic_implausibility
type: unknown
pittsburgh_art_tour:
name: pittsburgh_art_tour
short_name: pittsburgh_art_tour
type: unknown
qepa_2005:
name: qep'a' (2005)
short_name: qep'a' 2005
type: event
year: 2005
skybox_s33:
name: SkyBox S33
short_name: SkyBox S33
type: media
qephom_2018:
name: qepHom'a' (2018)
short_name: qepHom'a' 2018
type: event
year: 2018
langfest_2019:
name: langfest_2019
short_name: langfest_2019
type: unknown
star_trek_picard_season_3_credits:
name: star_trek_picard_season_3_credits
short_name: star_trek_picard_season_3_credits
type: unknown
qephom_2019:
name: qepHom'a' (2019)
short_name: qepHom'a' 2019
type: event
year: 2019
qephom_2010:
name: qepHom'a' (2010)
short_name: qepHom'a' 2010
type: event
year: 2010
dsc_si_vis_pacem_para_bellum:
name: dsc_si_vis_pacem_para_bellum
short_name: dsc_si_vis_pacem_para_bellum
type: unknown
star_trek_i:
name: star_trek_i
short_name: star_trek_i
type: unknown
qepa_2010:
name: qep'a' (2010)
short_name: qep'a' 2010
type: event
year: 2010
qepa_2022:
name: qep'a' (2022)
short_name: qep'a' 2022
type: event
year: 2022
skybox_sp1:
name: SkyBox SP1
short_name: SkyBox SP1
type: media
qepa_2011:
name: qep'a' (2011)
short_name: qep'a' 2011
type: event
year: 2011
ck:
name: Conversational Klingon
short_name: CK
type: audio
msn:
name: MSN expert forum
short_name: msn
type: newsgroup
star_trek_vi:
name: star_trek_vi
short_name: star_trek_vi
type: unknown
star_trek_customizable_card_game_fajo_collection:
name: star_trek_customizable_card_game_fajo_collection
short_name: star_trek_customizable_card_game_fajo_collection
type: unknown
skybox_s25:
name: SkyBox S25
short_name: SkyBox S25
type: media
qepa_2008:
name: qep'a' (2008)
short_name: qep'a' 2008
type: event
year: 2008
smithsonian_go_flight_app:
name: smithsonian_go_flight_app
short_name: smithsonian_go_flight_app
type: unknown
radio_times_star_trek_30th_anniversary_special_issue:
name: radio_times_star_trek_30th_anniversary_special_issue
short_name: radio_times_star_trek_30th_anniversary_special_issue
type: unknown
ftg:
name: Federation Travel Guide
short_name: FTG
type: book
qelis_boqharmey:
name: qelis_boqharmey
short_name: qelis_boqharmey
type: unknown
a_burning_house:
name: a_burning_house
short_name: a_burning_house
type: unknown
skybox_99:
name: SkyBox 99
short_name: SkyBox 99
type: media
paq_batlh_2ed_p_150_151_182_183:
name: paq_batlh_2ed_p_150_151_182_183
short_name: paq_batlh_2ed_p_150_151_182_183
type: unknown
dsc_battle_at_the_binary_stars:
name: dsc_battle_at_the_binary_stars
short_name: dsc_battle_at_the_binary_stars
type: unknown
star_trek_2009_deleted_scene:
name: star_trek_2009_deleted_scene
short_name: star_trek_2009_deleted_scene
type: unknown
the_little_prince:
name: the_little_prince
short_name: the_little_prince
type: unknown
ds9_blood_oath:
name: ds9_blood_oath
short_name: ds9_blood_oath
type: unknown
a_klingon_christmas_carol_trailer:
name: a_klingon_christmas_carol_trailer
short_name: a_klingon_christmas_carol_trailer
type: unknown
a_good_day_to_die:
name: a_good_day_to_die
short_name: a_good_day_to_die
type: unknown
stc_104:
name: stc_104
short_name: stc_104
type: unknown
qephom_2011:
name: qepHom'a' (2011)
short_name: qepHom'a' 2011
type: event
year: 2011
haynes_bop_manual:
name: haynes_bop_manual
short_name: haynes_bop_manual
type: unknown
message_to_kli_discord_2024_11_27:
name: message_to_kli_discord_2024_11_27
short_name: message_to_kli_discord_2024_11_27
type: unknown
the_klingon_art_of_war:
name: the_klingon_art_of_war
short_name: the_klingon_art_of_war
type: unknown
facebook_learn_klingon_group_2017_10_07:
name: facebook_learn_klingon_group_2017_10_07
short_name: facebook_learn_klingon_group_2017_10_07
type: unknown
star_trek_the_exhibition:
name: star_trek_the_exhibition
short_name: star_trek_the_exhibition
type: unknown
dsc:
name: dsc
short_name: dsc
type: unknown
kauderwelsch_klingonisch:
name: kauderwelsch_klingonisch
short_name: kauderwelsch_klingonisch
type: unknown
star_trek_v:
name: star_trek_v
short_name: star_trek_v
type: unknown
the_time_machine:
name: the_time_machine
short_name: the_time_machine
type: unknown
tkw_p_ix_24:
name: tkw_p_ix_24
short_name: tkw_p_ix_24
type: unknown
skybox_sp2:
name: SkyBox SP2
short_name: SkyBox SP2
type: media
ent_the_augments:
name: ent_the_augments
short_name: ent_the_augments
type: unknown
pop_culture_hero_coalition_announcement:
name: pop_culture_hero_coalition_announcement
short_name: pop_culture_hero_coalition_announcement
type: unknown
hq_5_1_mar_1996_p_20:
name: hq_5_1_mar_1996_p_20
short_name: hq_5_1_mar_1996_p_20
type: unknown
dsc_announcement:
name: dsc_announcement
short_name: dsc_announcement
type: unknown
paq_batlh:
name: paq_batlh
short_name: paq_batlh
type: unknown
qephom_2022:
name: qepHom'a' (2022)
short_name: qepHom'a' 2022
type: event
year: 2022
letter_from_mo_2011_01_07:
name: letter_from_mo_2011_01_07
short_name: letter_from_mo_2011_01_07
type: unknown
facebook_learn_klingon_group_2013_08_28:
name: facebook_learn_klingon_group_2013_08_28
short_name: facebook_learn_klingon_group_2013_08_28
type: unknown
tng_birthright_part_ii:
name: tng_birthright_part_ii
short_name: tng_birthright_part_ii
type: unknown
tkw_p_vii:
name: tkw_p_vii
short_name: tkw_p_vii
type: unknown
tng_sins_of_the_father:
name: tng_sins_of_the_father
short_name: tng_sins_of_the_father
type: unknown
haynes_bop_manual_p_110:
name: haynes_bop_manual_p_110
short_name: haynes_bop_manual_p_110
type: unknown
dsc_magic_to_make_the_sanest_man_go_mad:
name: dsc_magic_to_make_the_sanest_man_go_mad
short_name: dsc_magic_to_make_the_sanest_man_go_mad
type: unknown
star_trek_insurrection:
name: star_trek_insurrection
short_name: star_trek_insurrection
type: unknown
how_to_speak_klingon_p_7:
name: how_to_speak_klingon_p_7
short_name: how_to_speak_klingon_p_7
type: unknown
kgt_p_49_68:
name: kgt_p_49_68
short_name: kgt_p_49_68
type: unknown
skybox_s20:
name: SkyBox S20
short_name: SkyBox S20
type: media
sarek:
name: sarek
short_name: sarek
type: unknown
skybox_s15:
name: SkyBox S15
short_name: SkyBox S15
type: media
air_space_magazine_august_2016:
name: air_space_magazine_august_2016
short_name: air_space_magazine_august_2016
type: unknown
paq_batlh_2ed_p_31_52_53:
name: paq_batlh_2ed_p_31_52_53
short_name: paq_batlh_2ed_p_31_52_53
type: unknown
qepa_2014:
name: qep'a' (2014)
short_name: qep'a' 2014
type: event
year: 2014
qepa_2012:
name: qep'a' (2012)
short_name: qep'a' 2012
type: event
year: 2012
ent_affliction:
name: ent_affliction
short_name: ent_affliction
type: unknown
skybox_cards:
name: SkyBox CARDS
short_name: SkyBox CARDS
type: media
skybox_sp3:
name: SkyBox SP3
short_name: SkyBox SP3
type: media
twitter_2013_08_11:
name: twitter_2013_08_11
short_name: twitter_2013_08_11
type: unknown
tng_the_icarus_factor:
name: tng_the_icarus_factor
short_name: tng_the_icarus_factor
type: unknown
star_trek_the_experience:
name: star_trek_the_experience
short_name: star_trek_the_experience
type: unknown
startrek_expertforum:
name: startrek.expertforum
short_name: s.e
type: newsgroup
dsc_the_butcher_s_knife_cares_not_for_the_lamb_s_cry:
name: dsc_the_butcher_s_knife_cares_not_for_the_lamb_s_cry
short_name: dsc_the_butcher_s_knife_cares_not_for_the_lamb_s_cry
type: unknown
klingon_at_conventions:
name: klingon_at_conventions
short_name: klingon_at_conventions
type: unknown
skybox_s27:
name: SkyBox S27
short_name: SkyBox S27
type: media
the_tale_of_peter_rabbit:
name: the_tale_of_peter_rabbit
short_name: the_tale_of_peter_rabbit
type: unknown
star_trek_constellations_p_232:
name: star_trek_constellations_p_232
short_name: star_trek_constellations_p_232
type: unknown
hq_5_1_mar_1996_p_10:
name: hq_5_1_mar_1996_p_10
short_name: hq_5_1_mar_1996_p_10
type: unknown
skybox_s32:
name: SkyBox S32
short_name: SkyBox S32
type: media
dsc_lethe:
name: dsc_lethe
short_name: dsc_lethe
type: unknown
skybox_3:
name: SkyBox 3
short_name: SkyBox 3
type: media
skybox_s13:
name: SkyBox S13
short_name: SkyBox S13
type: media
ds9_the_house_of_quark:
name: ds9_the_house_of_quark
short_name: ds9_the_house_of_quark
type: unknown
u:
name: u
short_name: u
type: unknown
conlanging:
name: conlanging
short_name: conlanging
type: unknown
ds9_sons_of_mogh:
name: ds9_sons_of_mogh
short_name: ds9_sons_of_mogh
type: unknown
kgt_p_219_245:
name: kgt_p_219_245
short_name: kgt_p_219_245
type: unknown
the_star_trek_encyclopedia:
name: the_star_trek_encyclopedia
short_name: the_star_trek_encyclopedia
type: unknown
hamlet:
name: hamlet
short_name: hamlet
type: unknown
kgt_p_35_142:
name: kgt_p_35_142
short_name: kgt_p_35_142
type: unknown
tkd_6_2_5:
name: tkd_6_2_5
short_name: tkd_6_2_5
type: unknown
skybox_s9:
name: SkyBox S9
short_name: SkyBox S9
type: media
tkd_p_70_170:
name: tkd_p_70_170
short_name: tkd_p_70_170
type: unknown
skybox_s19:
name: SkyBox S19
short_name: SkyBox S19
type: media
matlh_jupna:
name: matlh_jupna
short_name: matlh_jupna
type: unknown
stonewall_campaign_2013:
name: stonewall_campaign_2013
short_name: stonewall_campaign_2013
type: unknown
qepa_1996:
name: qep'a' (1996)
short_name: qep'a' 1996
type: event
year: 1996
skybox_s21:
name: SkyBox S21
short_name: SkyBox S21
type: media
honor_bound:
name: honor_bound
short_name: honor_bound
type: unknown
festival_of_the_spoken_nerd_dvd:
name: festival_of_the_spoken_nerd_dvd
short_name: festival_of_the_spoken_nerd_dvd
type: unknown
haynes_bop_manual_p_107:
name: haynes_bop_manual_p_107
short_name: haynes_bop_manual_p_107
type: unknown
tng_heart_of_glory:
name: tng_heart_of_glory
short_name: tng_heart_of_glory
type: unknown
dsc_through_the_valley_of_shadows:
name: dsc_through_the_valley_of_shadows
short_name: dsc_through_the_valley_of_shadows
type: unknown
skybox_s7:
name: SkyBox S7
short_name: SkyBox S7
type: media
qepa_2007:
name: qep'a' (2007)
short_name: qep'a' 2007
type: event
year: 2007
ds9_you_are_cordially_invited:
name: ds9_you_are_cordially_invited
short_name: ds9_you_are_cordially_invited
type: unknown
tng_rightful_heir:
name: tng_rightful_heir
short_name: tng_rightful_heir
type: unknown
facebook_tlhingan_hol_jatlhwi_pu_group_2014_12_26:
name: facebook_tlhingan_hol_jatlhwi_pu_group_2014_12_26
short_name: facebook_tlhingan_hol_jatlhwi_pu_group_2014_12_26
type: unknown
facebook_learn_klingon_group_2013_08_10:
name: facebook_learn_klingon_group_2013_08_10
short_name: facebook_learn_klingon_group_2013_08_10
type: unknown
tng_the_measure_of_a_man:
name: tng_the_measure_of_a_man
short_name: tng_the_measure_of_a_man
type: unknown
paq_batlh_2ed_p_52_53_130_131:
name: paq_batlh_2ed_p_52_53_130_131
short_name: paq_batlh_2ed_p_52_53_130_131
type: unknown
voy_prophecy:
name: voy_prophecy
short_name: voy_prophecy
type: unknown
voy_author_author:
name: voy_author_author
short_name: voy_author_author
type: unknown
dsc_the_vulcan_hello:
name: dsc_the_vulcan_hello
short_name: dsc_the_vulcan_hello
type: unknown
sherlock_holmes_the_red_headed_league_p_6:
name: sherlock_holmes_the_red_headed_league_p_6
short_name: sherlock_holmes_the_red_headed_league_p_6
type: unknown
tkd_4_2_7:
name: tkd_4_2_7
short_name: tkd_4_2_7
type: unknown
stockholm_trekkers_trekdag_2024_11_30:
name: stockholm_trekkers_trekdag_2024_11_30
short_name: stockholm_trekkers_trekdag_2024_11_30
type: unknown
dsc_context_is_for_kings:
name: dsc_context_is_for_kings
short_name: dsc_context_is_for_kings
type: unknown
qepa_2003:
name: qep'a' (2003)
short_name: qep'a' 2003
type: event
year: 2003
paq_batlh_website:
name: paq_batlh_website
short_name: paq_batlh_website
type: unknown
dsc_such_sweet_sorrow_part_2:
name: dsc_such_sweet_sorrow_part_2
short_name: dsc_such_sweet_sorrow_part_2
type: unknown
dsc_trailer:
name: dsc_trailer
short_name: dsc_trailer
type: unknown
tng_parallels:
name: tng_parallels
short_name: tng_parallels
type: unknown
source:
name: source
short_name: source
type: unknown
ds9_soldiers_of_the_empire:
name: ds9_soldiers_of_the_empire
short_name: ds9_soldiers_of_the_empire
type: unknown
tos_errand_of_mercy:
name: tos_errand_of_mercy
short_name: tos_errand_of_mercy
type: unknown
kgt_p_127_168_172:
name: kgt_p_127_168_172
short_name: kgt_p_127_168_172
type: unknown
voy_barge_of_the_dead:
name: voy_barge_of_the_dead
short_name: voy_barge_of_the_dead
type: unknown
a_final_reflection:
name: a_final_reflection
short_name: a_final_reflection
type: unknown
kgt_p_172:
name: kgt_p_172
short_name: kgt_p_172
type: unknown
tng_the_mind_s_eye:
name: tng_the_mind_s_eye
short_name: tng_the_mind_s_eye
type: unknown
tng_ethics:
name: tng_ethics
short_name: tng_ethics
type: unknown
qepa_2009:
name: qep'a' (2009)
short_name: qep'a' 2009
type: event
year: 2009
qephom_2012:
name: qepHom'a' (2012)
short_name: qepHom'a' 2012
type: event
year: 2012
hallmark_commercial:
name: hallmark_commercial
short_name: hallmark_commercial
type: unknown
tng_redemption:
name: tng_redemption
short_name: tng_redemption
type: unknown
ds9_the_way_of_the_warrior:
name: ds9_the_way_of_the_warrior
short_name: ds9_the_way_of_the_warrior
type: unknown
qepa_2006:
name: qep'a' (2006)
short_name: qep'a' 2006
type: event
year: 2006
tkd_3_3_1:
name: tkd_3_3_1
short_name: tkd_3_3_1
type: unknown
tkda_3_3_1:
name: tkda_3_3_1
short_name: tkda_3_3_1
type: unknown
tkd_3_3_2:
name: tkd_3_3_2
short_name: tkd_3_3_2
type: unknown
tkd_3_3_3:
name: tkd_3_3_3
short_name: tkd_3_3_3
type: unknown
tkd_3_3_4:
name: tkd_3_3_4
short_name: tkd_3_3_4
type: unknown
tkd_3_3_5_3_4_4_4:
name: tkd_3_3_5_3_4_4_4
short_name: tkd_3_3_5_3_4_4_4
type: unknown
tkd_3_3_5:
name: tkd_3_3_5
short_name: tkd_3_3_5
type: unknown
tkd_4_2_1:
name: tkd_4_2_1
short_name: tkd_4_2_1
type: unknown
tkd_4_2_2:
name: tkd_4_2_2
short_name: tkd_4_2_2
type: unknown
tkd_4_2_3:
name: tkd_4_2_3
short_name: tkd_4_2_3
type: unknown
tkd_4_2_4:
name: tkd_4_2_4
short_name: tkd_4_2_4
type: unknown
tkd_4_2_5:
name: tkd_4_2_5
short_name: tkd_4_2_5
type: unknown
tkd_4_2_6:
name: tkd_4_2_6
short_name: tkd_4_2_6
type: unknown
tkda_4_2_6:
name: tkda_4_2_6
short_name: tkda_4_2_6
type: unknown
tkd_4_2_8:
name: tkd_4_2_8
short_name: tkd_4_2_8
type: unknown
tkd_4_2_9_6_2_2:
name: tkd_4_2_9_6_2_2
short_name: tkd_4_2_9_6_2_2
type: unknown
tkda_4_2_9:
name: tkda_4_2_9
short_name: tkda_4_2_9
type: unknown
tkd_4_2_9_6_2_3:
name: tkd_4_2_9_6_2_3
short_name: tkd_4_2_9_6_2_3
type: unknown
tkd_4_2_9_6_2_4:
name: tkd_4_2_9_6_2_4
short_name: tkd_4_2_9_6_2_4
type: unknown
tkd_4_2_9:
name: tkd_4_2_9
short_name: tkd_4_2_9
type: unknown
tkd_3_2_2_4_2_9:
name: tkd_3_2_2_4_2_9
short_name: tkd_3_2_2_4_2_9
type: unknown
tkd_4_3_4_4:
name: tkd_4_3_4_4
short_name: tkd_4_3_4_4
type: unknown
star_trek_v_deleted_scene:
name: star_trek_v_deleted_scene
short_name: star_trek_v_deleted_scene
type: unknown
star_trek_iii_dvd_case:
name: star_trek_iii_dvd_case
short_name: star_trek_iii_dvd_case
type: unknown
star_trek_v_special_edition_that_klingon_couple:
name: star_trek_v_special_edition_that_klingon_couple
short_name: star_trek_v_special_edition_that_klingon_couple
type: unknown
ent:
name: ent
short_name: ent
type: unknown
dsc_despite_yourself:
name: dsc_despite_yourself
short_name: dsc_despite_yourself
type: unknown
dsc_the_wolf_inside:
name: dsc_the_wolf_inside
short_name: dsc_the_wolf_inside
type: unknown
paq_batlh_2ed_p_35_73_92:
name: paq_batlh_2ed_p_35_73_92
short_name: paq_batlh_2ed_p_35_73_92
type: unknown
paq_batlh_2ed_p_31_35_195:
name: paq_batlh_2ed_p_31_35_195
short_name: paq_batlh_2ed_p_31_35_195
type: unknown
qugh_5_feb_2021:
name: qugh_5_feb_2021
short_name: qugh_5_feb_2021
type: unknown
kopikon_2023:
name: kopikon_2023
short_name: kopikon_2023
type: unknown
toki_pona_the_language_of_good:
name: toki_pona_the_language_of_good
short_name: toki_pona_the_language_of_good
type: unknown
cassinisaturn_tweet_2013_06_28:
name: cassinisaturn_tweet_2013_06_28
short_name: cassinisaturn_tweet_2013_06_28
type: unknown
sepqep_wa_dich:
name: sepqep_wa_dich
short_name: sepqep_wa_dich
type: unknown
duolingo:
name: duolingo
short_name: duolingo
type: unknown
dsc_the_war_without_the_war_within:
name: dsc_the_war_without_the_war_within
short_name: dsc_the_war_without_the_war_within
type: unknown
tas_more_tribbles_more_troubles:
name: tas_more_tribbles_more_troubles
short_name: tas_more_tribbles_more_troubles
type: unknown
how_to_speak_klingon_p_4:
name: how_to_speak_klingon_p_4
short_name: how_to_speak_klingon_p_4
type: unknown
tng_firstborn:
name: tng_firstborn
short_name: tng_firstborn
type: unknown
star_trek_vanguard_harbinger_p_202:
name: star_trek_vanguard_harbinger_p_202
short_name: star_trek_vanguard_harbinger_p_202
type: unknown
dsc_will_you_take_my_hand:
name: dsc_will_you_take_my_hand
short_name: dsc_will_you_take_my_hand
type: unknown
tng_new_ground:
name: tng_new_ground
short_name: tng_new_ground
type: unknown
star_trek_prey:
name: star_trek_prey
short_name: star_trek_prey
type: unknown
enemy_territory:
name: enemy_territory
short_name: enemy_territory
type: unknown
kahless:
name: kahless
short_name: kahless
type: unknown
haynes_bop_manual_p_43:
name: haynes_bop_manual_p_43
short_name: haynes_bop_manual_p_43
type: unknown
haynes_bop_manual_p_44:
name: haynes_bop_manual_p_44
short_name: haynes_bop_manual_p_44
type: unknown
haynes_bop_manual_p_42:
name: haynes_bop_manual_p_42
short_name: haynes_bop_manual_p_42
type: unknown
ds9_sons_and_daughters:
name: ds9_sons_and_daughters
short_name: ds9_sons_and_daughters
type: unknown
facebook:
name: facebook
short_name: facebook
type: unknown
klingon_academy:
name: klingon_academy
short_name: klingon_academy
type: unknown
star_trek_vanguard_harbinger_p_200:
name: star_trek_vanguard_harbinger_p_200
short_name: star_trek_vanguard_harbinger_p_200
type: unknown
how_to_speak_klingon:
name: how_to_speak_klingon
short_name: how_to_speak_klingon
type: unknown
to_qipo_na_paq_chap:
name: to_qipo_na_paq_chap
short_name: to_qipo_na_paq_chap
type: unknown