-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path1820-Papers.xxp
1680 lines (1616 loc) · 51.6 KB
/
1820-Papers.xxp
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
{% set companies_br = [
{
"name": "British Rail",
"token": "BR",
"token_top": "${L_BLUE}",
"token_top_stripe": "transparent",
"token_bottom": "${L_BLUE}",
"token_bottom_stripe": "transparent",
"share_stripe": "${M_GRAY}",
"tile_colour": "${H_GRAY}",
"company_type": 100,
"token_colour": "${BLACK}",
"token_name_colour": "${WHITE}",
"box_colour": "${P_BLUE}",
"size": "1",
"size_colour": "${WHITE}",
},
]
%}
{% set companies_mono = [
{
"name": "London\n& Southampton\nRailway",
"token": "LSR",
"token_top": "${L_YELLOW}",
"token_top_stripe": "transparent",
"token_bottom": "${L_YELLOW}",
"token_bottom_stripe": "transparent",
"share_stripe": "${P_YELLOW}",
"url": "https://en.wikipedia.org/wiki/London_and_Southampton_Railway",
"company_type": 50,
},
{
"name": "Oxford, Worcester\n& Wolverhampton\nRailway",
"token": "OW&WR",
"token_top": "${L_GRAY}",
"token_top_stripe": "transparent",
"token_bottom": "${L_GRAY}",
"token_bottom_stripe": "transparent",
"share_stripe": "${P_GRAY}",
"description": "The Old Worse & Worse",
"url": "https://en.wikipedia.org/wiki/Oxford,_Worcester_and_Wolverhampton_Railway",
"token_name_font": '"Times-Roman", 7',
"company_type": 50,
},
{
"name": "Northampton\n& Peterborough\nRailway",
"token": "N&PR",
"token_top": "${L_BROWN}",
"token_top_stripe": "transparent",
"token_bottom": "${L_BROWN}",
"token_bottom_stripe": "transparent",
"share_stripe": "${P_BROWN}",
"url": "https://en.wikipedia.org/wiki/Northampton_and_Peterborough_Railway",
"company_type": 10,
},
{
"name": "Lancashire Union\nRailway",
"token": "LUR",
"token_top": "${M_PURPLE}",
"token_top_stripe": "transparent",
"token_bottom": "${M_PURPLE}",
"token_bottom_stripe": "transparent",
"share_stripe": "${P_PURPLE}",
"description": "The Whelley",
"url": "https://en.wikipedia.org/wiki/Lancashire_Union_Railway",
"company_type": 10,
},
{
"name": "London, Chatham\n& Dover Railway",
"token": "LC&DR",
"token_top": "${L_GREEN}",
"token_top_stripe": "transparent",
"token_bottom": "${L_GREEN}",
"token_bottom_stripe": "transparent",
"share_stripe": "${P_GREEN}",
"description": "The Chatham",
"url": "https://en.wikipedia.org/wiki/London,_Chatham_and_Dover_Railway",
"company_type": 10,
},
{
"name": "Wrexham, Mold &\nConnah's Quay\nRailway",
"token": "WM&CQR",
"token_top": "${D_RED}",
"token_top_stripe": "transparent",
"token_bottom": "${D_RED}",
"token_bottom_stripe": "transparent",
"share_stripe": "${P_RED}",
"description": "The Mid Wirral Line",
"url": "https://en.wikipedia.org/wiki/Wrexham,_Mold_and_Connah%27s_Quay_Railway",
"token_name_font": '"Times-Roman", 6',
"company_type": 10,
},
{
"name": "Manchester\n& Birmingham\nRailway",
"token": "M&BR",
"token_top": "${D_GRAY}",
"token_top_stripe": "transparent",
"token_bottom": "${D_GRAY}",
"token_bottom_stripe": "transparent",
"share_stripe": "${P_GRAY}",
"url": "https://en.wikipedia.org/wiki/Manchester_and_Birmingham_Railway",
"company_type": 10,
},
]
%}
{% set companies_bicolour = [
{
"name": "London\n& Birmingham\nRailway",
"token": "L&BR",
"token_top": "${M_YELLOW}",
"token_top_stripe": "transparent",
"token_bottom": "${D_GRAY}",
"token_bottom_stripe": "transparent",
"share_stripe": "${P_GRAY}",
"description": "The greatest public work\never executed either in\nancient or modern times",
"url": "https://en.wikipedia.org/wiki/London_and_Birmingham_Railway",
"company_type": 50,
},
{
"name": "Liverpool, Ormskirk\n& Preston Railway",
"token": "LO&PR",
"token_top": "${L_RED}",
"token_top_stripe": "transparent",
"token_bottom": "${M_PURPLE}",
"token_bottom_stripe": "transparent",
"share_stripe": "${P_PURPLE}",
"url": "https://en.wikipedia.org/wiki/Liverpool,_Ormskirk_and_Preston_Railway",
"company_type": 50,
},
{
"name": "Stockport, Timperley\n& Altrincham Junction\nRailway",
"token": "ST&AR",
"token_top": "${L_YELLOW}",
"token_top_stripe": "transparent",
"token_bottom": "${L_RED}",
"token_bottom_stripe": "transparent",
"share_stripe": "${P_RED}",
"url": "https://en.wikipedia.org/wiki/Stockport,_Timperley_and_Altrincham_Junction_Railway",
"company_type": 10,
},
{
"name": "Yarmouth & Norwich\nRailway",
"token": "Y&NR",
"token_top": "${L_GREEN}",
"token_top_stripe": "transparent",
"token_bottom": "${M_RED}",
"token_bottom_stripe": "transparent",
"share_stripe": "${P_RED}",
"description": "The first railway in Norfolk",
"url": "https://en.wikipedia.org/wiki/Yarmouth_%26_Norwich_Railway",
"company_type": 10,
},
{
"name": "London & Brighton\nRailway",
"token": "LBR",
"token_top": "${L_GREEN}",
"token_top_stripe": "transparent",
"token_bottom": "${D_BLUE}",
"token_bottom_stripe": "transparent",
"share_stripe": "${P_BLUE}",
"url": "https://en.wikipedia.org/wiki/London_and_Brighton_Railway",
"company_type": 10,
},
{
"name": "Sheffield,\nAshton-under-Lyne\n& Manchester Railway",
"token": "SA&MR",
"token_top": "${L_GRAY}",
"token_top_stripe": "transparent",
"token_bottom": "${L_BROWN}",
"token_bottom_stripe": "transparent",
"share_stripe": "${P_BROWN}",
"description": "The Woodhead Route",
"url": "https://en.wikipedia.org/wiki/Sheffield,_Ashton-under-Lyne_and_Manchester_Railway",
"company_type": 10,
},
{
"name": "Bristol & Gloucester\nRailway",
"token": "B&GR",
"token_top": "${L_GRAY}",
"token_top_stripe": "transparent",
"token_bottom": "${M_BLUE}",
"token_bottom_stripe": "transparent",
"share_stripe": "${P_BLUE}",
"description": "Coalpit Heath Railway\nThe Dramway",
"url": "https://en.wikipedia.org/wiki/Bristol_and_Gloucester_Railway",
"company_type": 50,
},
{
"name": "Somerset & Dorset\nJoint Railway",
"token": "S&D",
"token_top": "${L_GRAY}",
"token_top_stripe": "transparent",
"token_bottom": "${D_GREEN}",
"token_bottom_stripe": "transparent",
"share_stripe": "${P_GREEN}",
"description": "The S&D",
"url": "https://en.wikipedia.org/wiki/Somerset_and_Dorset_Joint_Railway",
"company_type": 10,
},
]
%}
{% set companies_stripey = [
{
"name": "Charnwood Forest\nRailway",
"token": "CFR",
"token_top": "${L_GREEN}",
"token_top_stripe": "${WHITE}",
"token_bottom": "${D_GREEN}",
"token_bottom_stripe": "${WHITE}",
"share_stripe": "${P_GREEN}",
"description": "The Bluebell Line\nThe Bread & Herring Line",
"url": "https://en.wikipedia.org/wiki/Charnwood_Forest_Railway",
"company_type": 10,
},
{
"name": "London & Greenwich\nRailway",
"token": "L&GR",
"token_top": "${M_RED}",
"token_top_stripe": "${M_GREEN}",
"token_bottom": "${M_RED}",
"token_bottom_stripe": "${M_GREEN}",
"share_stripe": "${P_RED}",
"description": "First steam railway in London",
"url": "https://en.wikipedia.org/wiki/London_and_Greenwich_Railway",
"company_type": 50,
},
{
"name": "Sheffield, Rotherham,\nBarnsley, Wakefield,\nHuddersfield & Goole\nRailway",
"token": "SRBWH&G",
"token_top": "${L_GREEN}",
"token_top_stripe": "${BLACK}",
"token_bottom": "${L_GREEN}",
"token_bottom_stripe": "${BLACK}",
"share_stripe": "${P_GREEN}",
"url": "https://en.wikipedia.org/wiki/Sheffield,_Rotherham,_Barnsley,_Wakefield,_Huddersfield_and_Goole_Railway",
"token_name_font": '"Times-Roman", 6',
"company_type": 50,
},
{
"name": "Cromford\n& High Peak\nRailway",
"token": "C&HPR",
"token_top": "${M_BLUE}",
"token_top_stripe": "${L_BROWN}",
"token_bottom": "${M_BLUE}",
"token_bottom_stripe": "${L_BROWN}",
"share_stripe": "${P_BLUE}",
"url": "https://en.wikipedia.org/wiki/Cromford_and_High_Peak_Railway",
"company_type": 10,
},
{
"name": "Mansfield & Pinxton\nRailway",
"token": "M&PR",
"token_top": "${L_BROWN}",
"token_top_stripe": "${L_GREEN}",
"token_bottom": "${L_BROWN}",
"token_bottom_stripe": "${L_GREEN}",
"share_stripe": "${P_BROWN}",
"url": "https://en.wikipedia.org/wiki/Mansfield_and_Pinxton_Railway",
"company_type": 10,
},
{
"name": "Midland &\nGreat Northern\nJoint Railway",
"token": "M&GN",
"token_top": "${L_GRAY}",
"token_top_stripe": "${D_GRAY}",
"token_bottom": "${L_GRAY}",
"token_bottom_stripe": "${D_GRAY}",
"share_stripe": "${P_GRAY}",
"description": "Muddle & Get Nowhere",
"url": "https://en.wikipedia.org/wiki/Midland_and_Great_Northern_Joint_Railway",
"company_type": 10,
},
{
"name": "Stockton & Darlington\nRailway",
"token": "S&DR",
"token_top": "${M_BLUE}",
"token_top_stripe": "${M_RED}",
"token_bottom": "${M_BLUE}",
"token_bottom_stripe": "${M_RED}",
"share_stripe": "${P_BLUE}",
"description": "Periculum privatum utilitas publica\nAt private risk for public service",
"url": "https://en.wikipedia.org/wiki/Stockton_and_Darlington_Railway",
"company_type": 50,
},
{
"name": "Southampton\n& Dorchester\nRailway",
"token": "SDR",
"token_top": "${D_YELLOW}",
"token_top_stripe": "${WHITE}",
"token_bottom": "${D_YELLOW}",
"token_bottom_stripe": "${WHITE}",
"share_stripe": "${P_YELLOW}",
"description": "Castleman's Corkscrew",
"url": "https://en.wikipedia.org/wiki/Southampton_and_Dorchester_Railway",
"company_type": 10,
},
{
"name": "Preston & Wyre Joint\nRailway",
"token": "P&WR",
"token_top": "${L_RED}",
"token_top_stripe": "${BLACK}",
"token_bottom": "${L_RED}",
"token_bottom_stripe": "${BLACK}",
"share_stripe": "${P_RED}",
"url": "https://en.wikipedia.org/wiki/Preston_and_Wyre_Joint_Railway",
"company_type": 10,
},
{
"name": "Canterbury\n& Whitstable\nRailway",
"token": "C&WR",
"token_top": "${M_GRAY}",
"token_top_stripe": "${L_GREEN}",
"token_bottom": "${M_GRAY}",
"token_bottom_stripe": "${L_GREEN}",
"share_stripe": "${P_GRAY}",
"description": "The Crab and Winkle Line",
"url": "https://en.wikipedia.org/wiki/Canterbury_and_Whitstable_Railway",
"company_type": 10,
},
{
"name": "Colne Valley\n& Halstead Railway",
"token": "CVHR",
"token_top": "${L_PURPLE}",
"token_top_stripe": "${L_YELLOW}",
"token_bottom": "${D_PURPLE}",
"token_bottom_stripe": "transparent",
"share_stripe": "${P_PURPLE}",
"url": "https://en.wikipedia.org/wiki/Colne_Valley_and_Halstead_Railway",
"company_type": 10,
},
{
"name": "Manchester,\nSouth Junction &\nAltrincham Railway",
"token": "MSJ&AR",
"token_top": "${D_RED}",
"token_top_stripe": "${WHITE}",
"token_bottom": "${D_RED}",
"token_bottom_stripe": "${WHITE}",
"share_stripe": "${P_RED}",
"description": "Many Short Journeys\n& Absolute Reliability",
"url": "https://en.wikipedia.org/wiki/Manchester,_South_Junction_and_Altrincham_Railway",
"token_name_font": '"Times-Roman", 7',
"company_type": 10,
},
{
"name": "Birmingham & Derby\nJunction Railway",
"token": "B&DJR",
"token_top": "${L_BROWN}",
"token_top_stripe": "${L_YELLOW}",
"token_bottom": "${L_BROWN}",
"token_bottom_stripe": "${M_BLUE}",
"share_stripe": "${P_BROWN}",
"description": "First Class carriages were yellow,\nSecond Class blue, and the\nThird Class brown",
"url": "https://en.wikipedia.org/wiki/Birmingham_and_Derby_Junction_Railway",
"company_type": 50,
},
{
"name": "Mid-Hants Railway",
"token": "MHR",
"token_top": "${D_PURPLE}",
"token_top_stripe": "${WHITE}",
"token_bottom": "${D_PURPLE}",
"token_bottom_stripe": "${WHITE}",
"share_stripe": "${P_PURPLE}",
"description": "The Watercress Line",
"url": "https://en.wikipedia.org/wiki/Watercress_Line",
"company_type": 10,
},
{
"name": "Chipping Norton\nRailway",
"token": "CNR",
"token_top": "${L_YELLOW}",
"token_top_stripe": "${BLACK}",
"token_bottom": "${L_YELLOW}",
"token_bottom_stripe": "${BLACK}",
"share_stripe": "${P_YELLOW}",
"url": "https://en.wikipedia.org/wiki/Chipping_Norton_Railway",
"company_type": 50,
},
]
%}
{% set companies_removed = [
{
"name": "Cheshire Midland\nRailway",
"token": "CMR",
"token_top": "${D_RED}",
"token_top_stripe": "transparent",
"token_bottom": "${D_RED}",
"token_bottom_stripe": "transparent",
"share_stripe": "${P_RED}",
"url": "https://en.wikipedia.org/wiki/Cheshire_Midland_Railway",
"company_type": 10,
},
{
"name": "Bolton & Leigh\nRailway",
"token": "B&LR",
"token_top": "${D_YELLOW}",
"token_top_stripe": "${L_GREEN}",
"token_bottom": "${D_YELLOW}",
"token_bottom_stripe": "${L_GREEN}",
"share_stripe": "${P_YELLOW}",
"description": "The first public railway in the\nhistoric county of Lancashire",
"url": "https://en.wikipedia.org/wiki/Bolton_and_Leigh_Railway",
"company_type": 10,
},
{
"name": "London & Croydon\nRailway",
"token": "L&CR",
"token_top": "${D_PURPLE}",
"token_top_stripe": "${WHITE}",
"token_bottom": "${D_PURPLE}",
"token_bottom_stripe": "${WHITE}",
"share_stripe": "${P_PURPLE}",
"url": "https://en.wikipedia.org/wiki/London_and_Croydon_Railway",
"company_type": 10,
},
{
"name": "Norwich & Brandon\nRailway",
"token": "N&BR",
"token_top": "${L_BROWN}",
"token_top_stripe": "${L_PURPLE}",
"token_bottom": "${L_BROWN}",
"token_bottom_stripe": "${L_PURPLE}",
"share_stripe": "${P_BROWN}",
"url": "https://en.wikipedia.org/wiki/Norwich_%26_Brandon_Railway",
"company_type": 10,
},
{
"name": "Wrexham, Mold &\nConnah's Quay\nRailway",
"token": "WM&CQR",
"token_top": "${L_BROWN}",
"token_top_stripe": "transparent",
"token_bottom": "${M_BLUE}",
"token_bottom_stripe": "transparent",
"share_stripe": "${P_BLUE}",
"description": "The Mid Wirral Line",
"url": "https://en.wikipedia.org/wiki/Wrexham,_Mold_and_Connah%27s_Quay_Railway",
"company_type": 10,
},
{
"name": "Cheltenham &\nGreat Western Union\nRailway",
"token": "CGWUR",
"token_top": "${M_GREEN}",
"token_top_stripe": "${L_RED}",
"token_bottom": "${M_GREEN}",
"token_bottom_stripe": "${L_RED}",
"share_stripe": "${P_GREEN}",
"url": "https://en.wikipedia.org/wiki/Cheltenham_and_Great_Western_Union_Railway",
"company_type": 10,
},
{
"name": "Sheffield\n& Lincolnshire\nJunction Railway",
"token": "S&LR",
"token_top": "${M_YELLOW}",
"token_top_stripe": "transparent",
"token_bottom": "${D_GRAY}",
"token_bottom_stripe": "transparent",
"share_stripe": "${P_GRAY}",
"url": "https://en.wikipedia.org/wiki/Sheffield_and_Lincolnshire_Junction_Railway",
"company_type": 10,
},
{
"name": "Canterbury\n& Whitstable\nRailway",
"token": "C&WR",
"token_top": "${M_GRAY}",
"token_top_stripe": "${L_GREEN}",
"token_bottom": "${M_GRAY}",
"token_bottom_stripe": "${L_GREEN}",
"share_stripe": "${P_GRAY}",
"description": "The Crab and Winkle Line",
"url": "https://en.wikipedia.org/wiki/Canterbury_and_Whitstable_Railway",
"company_type": 10,
},
{
"name": "Leicester\n& Swannington\nRailway",
"token": "L&SR",
"token_top": "${M_GRAY}",
"token_top_stripe": "${L_GREEN}",
"token_bottom": "${M_GRAY}",
"token_bottom_stripe": "${L_GREEN}",
"share_stripe": "${P_GRAY}",
"url": "https://en.wikipedia.org/wiki/Leicester_and_Swannington_Railway",
"company_type": 10,
},
{
"name": "West Cheshire\nRailway",
"token": "WCR",
"token_top": "${L_GRAY}",
"token_top_stripe": "transparent",
"token_bottom": "${L_GRAY}",
"token_bottom_stripe": "transparent",
"share_stripe": "${P_GRAY}",
"url": "https://en.wikipedia.org/wiki/West_Cheshire_Railway",
"company_type": 10,
},
{
"name": "Great Grimsby\n& Sheffield Junction\nRailway",
"token": "GG&SR",
"token_top": "${D_PURPLE}",
"token_top_stripe": "${L_YELLOW}",
"token_bottom": "${D_PURPLE}",
"token_bottom_stripe": "${L_YELLOW}",
"share_stripe": "${P_PURPLE}",
"url": "https://en.wikipedia.org/wiki/Great_Grimsby_and_Sheffield_Junction_Railway",
"company_type": 10,
},
{
"name": "Manchester & Leeds\nRailway",
"token": "M&LR",
"token_top": "${D_YELLOW}",
"token_top_stripe": "transparent",
"token_bottom": "${D_YELLOW}",
"token_bottom_stripe": "transparent",
"share_stripe": "${P_YELLOW}",
"url": "https://en.wikipedia.org/wiki/Manchester_and_Leeds_Railway",
"company_type": 10,
},
{
"name": "Bristol & Gloucester\nRailway",
"token": "B&GR",
"token_top": "${D_GREEN}",
"token_top_stripe": "transparent",
"token_bottom": "${D_GREEN}",
"token_bottom_stripe": "transparent",
"share_stripe": "${P_GREEN}",
"description": "Coalpit Heath Railway\nThe Dramway",
"url": "https://en.wikipedia.org/wiki/Bristol_and_Gloucester_Railway",
"company_type": 10,
},
{
"name": "Blackburn, Clitheroe &\nNorth Western Junction\nRailway",
"token": "BCNWJ",
"token_top": "${D_GREEN}",
"token_top_stripe": "transparent",
"token_bottom": "${M_BROWN}",
"token_bottom_stripe": "transparent",
"share_stripe": "${P_BROWN}",
"url": "https://en.wikipedia.org/wiki/Ribble_Valley_Line#Early_history",
"company_type": 10,
},
{
"name": "Fleetwood, Preston\n& West Riding\nJunction Railway",
"token": "FP&WRR",
"token_top": "${L_GREEN}",
"token_top_stripe": "transparent",
"token_bottom": "${M_PURPLE}",
"token_bottom_stripe": "transparent",
"share_stripe": "${P_PURPLE}",
"url": "https://en.wikipedia.org/wiki/Preston_and_Longridge_Railway",
"token_name_font": '"Times-Roman", 7',
"company_type": 10,
},
{
"name": "Sheffield, Rotherham,\nBarnsley, Wakefield,\nHuddersfield & Goole\nRailway",
"token": "SRBWH&G",
"token_top": "${L_BLUE}",
"token_top_stripe": "transparent",
"token_bottom": "${D_RED}",
"token_bottom_stripe": "transparent",
"share_stripe": "${P_RED}",
"url": "https://en.wikipedia.org/wiki/Sheffield,_Rotherham,_Barnsley,_Wakefield,_Huddersfield_and_Goole_Railway",
"token_name_font": '"Times-Roman", 6',
"company_type": 10,
},
{
"name": "Preston & Wyre Joint\nRailway",
"token": "P&WR",
"token_top": "${L_GRAY}",
"token_top_stripe": "${D_GRAY}",
"token_bottom": "${L_GRAY}",
"token_bottom_stripe": "${D_GRAY}",
"share_stripe": "${P_GRAY}",
"url": "https://en.wikipedia.org/wiki/Preston_and_Wyre_Joint_Railway",
"company_type": 10,
},
]
%}
{% set companies = companies_mono + companies_bicolour + companies_stripey %}
{% set colours = ["GRAY", "BROWN", "PURPLE", "GREEN", "RED", "BLUE", "YELLOW",] %}
{% set company_map = {
"GRAY": [],
"BROWN": [],
"PURPLE": [],
"GREEN": [],
"RED": [],
"BLUE": [],
"YELLOW": [],
}
%}
{% set colour_map = {
"${P_GRAY}": "GRAY",
"${P_BROWN}": "BROWN",
"${P_PURPLE}": "PURPLE",
"${P_GREEN}": "GREEN",
"${P_RED}": "RED",
"${P_BLUE}": "BLUE",
"${P_YELLOW}": "YELLOW",
}
%}
{% for company in companies %}
{% do company_map[colour_map[company["share_stripe"]]].append (company) %}
{% endfor %}
{% set trains = [
{
"cost": "$80",
"frame_colour": "${L_YELLOW}",
"name": "2+",
"rust_stripe": "${L_BLUE}",
"trade_stripe": "${L_GREEN}",
},
{
"cost": "$200",
"frame_colour": "${L_GREEN}",
"name": "3+",
"rust_stripe": "${M_BROWN}",
"trade_stripe": "${L_BLUE}",
},
{
"cost": "$400",
"frame_colour": "${P_BLUE}",
"name": "6+",
"rust_stripe": "${M_RED}",
"trade_stripe": "${M_BROWN}",
},
{
"cost": "$800",
"frame_colour": "${L_BROWN}",
"name": "EXPRESS",
"rust_stripe": "${L_GRAY}",
"trade_stripe": "${M_RED}",
"TGC_micro_train_font": '"Times-Roman", 16',
"train_font": '"Times-Roman", 16',
"default_train_font": '"Times-Roman", 28',
},
{
"cost": "$1,600",
"frame_colour": "${L_RED}",
"name": "5D+",
"rust_stripe": "${L_GRAY}",
"trade_stripe": "${L_GRAY}",
"TGC_micro_train_font": '"Times-Roman", 36',
"train_font": '"Times-Roman", 36',
},
{
"cost": "$2,000",
"frame_colour": "${L_GRAY}",
"name": "FLOOD",
"rust_stripe": "${BLACK}",
"trade_stripe": "${BLACK}",
"TGC_micro_train_font": '"Times-Roman", 22',
"train_font": '"Times-Roman", 22',
"default_train_font": '"Times-Roman", 36',
}
]
%}
{% set cousins_blue = [
{
"title": """Great Western
Steamship Company""",
"desc": """
Investments can have a port at both ends
of a train route; one route per share held.
Half of the smallest port on each such route
is paid by the bank to this treasury
each time""",
"url": "https://en.wikipedia.org/wiki/Great_Western_Steamship_Company",
"face_value": "$120",
"stripe_colour": "${D_BLUE}",
"box": "${H_BLUE}",
},
{
"title": "Sassoon David Sassoon",
"desc": """
Investments can double the revenue of the off-board
for routes between a port and an off-board, one
route for each share held. Half the revenue
of the port on each such route is paid by
the bank to this treasury each time.""",
"url": "https://en.wikipedia.org/wiki/Sassoon_David_Sassoon",
"face_value": "$130",
"stripe_colour": "${D_BLUE}",
"box": "${H_BLUE}",
},
]
%}
{% set cousins_brown = [
{
"title": "Charles Blacker Vignoles",
"desc": """
Investment's distance fees are reduced by half for
an additional placed station marker when floating
the company. Half of any distance fees paid go to
this treasury.""",
"url": "https://en.wikipedia.org/wiki/Charles_Blacker_Vignoles",
"face_value": "$120",
"stripe_colour": "${D_BROWN}",
"box": "${H_BROWN}",
},
{
"title": """Robert Stephenson
& Charles Fox""",
"desc": """
Investments can place an available station marker
or acquire a station marker for free, once per
share held per game (maximum 3). The bank pays
$50 to this treasury each time.""",
"url": "https://en.wikipedia.org/wiki/Robert_Stephenson, https://en.wikipedia.org/wiki/Charles_Fox_(civil_and_railway_engineer)",
"face_value": "$130",
"stripe_colour": "${D_BROWN}",
"box": "${H_BROWN}",
},
]
%}
{% set cousins_green = [
{
"title": "Bedlington Ironworks",
"desc": """
Investments can upgrade a city track tile in addition
to their normal track build. Half the revenue of
the upgraded city is paid to this treasury.""",
"url": "https://en.wikipedia.org/wiki/Bedlington_Ironworks",
"face_value": "$130",
"stripe_colour": "${D_GREEN}",
"box": "${H_GREEN}",
},
{
"title": "Joseph Locke",
"desc": """
Investments have a 50% discount on terrain & barrier
costs. The discount claimed by the company is paid
by the bank to this treasury each time.",
"url": "https://en.wikipedia.org/wiki/Joseph_Locke",
"face_value": "$120",
"stripe_colour": "${D_GREEN}",
"box": "${H_GREEN}",
},
{
"title": """Gas Light
& Coke Company""",
"desc": """
Investments can place a yellow big city spaced
as if it were a normal city, or upgrade a yellow
small city tile to a green big city tile, once per
company per game. The value of the big city tile
is paid to this treasury each time.""",
"url": "https://en.wikipedia.org/wiki/Gas_Light_and_Coke_Company",
"face_value": "$130",
"stripe_colour": "${D_GREEN}",
"box": "${H_GREEN}",
},
]
%}
{% set cousins_red = [
{
"title": "James Holden",
"desc": """
Investments can buy a train from the supply
& immediately run it, thrice per game, once
per company per game.""",
"url": "https://en.wikipedia.org/wiki/James_Holden_(locomotive_engineer)",
"face_value": "$130",
"stripe_colour": "${M_RED}",
"box": "${H_RED}",
},
{
"title": "Vulcan Foundry",
"desc": """
Investments can run one train per share held
as if it were one stop longer. Half the revenue
of the added city is paid by the bank to
this treasury each time.""",
"url": "https://en.wikipedia.org/wiki/Vulcan_Foundry",
"face_value": "$120",
"stripe_colour": "${M_RED}",
"box": "${H_RED}",
},
]
%}
{% set cousins = cousins_blue + cousins_green + cousins_brown + cousins_red %}
{% set cousins_relegated = [
{
"title": """R. B. Longridge & Co.""",
"desc": """
Investments have a 50% discount on the purchase of
a train from the supply, once per company.""",
"url": "https://en.wikipedia.org/wiki/R._B._Longridge_and_Company",
"face_value": "$130",
"stripe_colour": "${M_RED}",
"box": "${H_RED}",
},
{
"title": "Coutts & Co.",
"desc": """
Investments may freely choose which if
any takeover bid to accept or reject.""",
"url": "https://en.wikipedia.org/wiki/Coutts",
"face_value": "$130",
"stripe_colour": "${M_RED}",
"box": "${H_RED}",
},
{
"title": "John Birkinshaw",
"desc": """
Investments may upgrade any or all city tiles
connected to its station markers instead of its
normal track build.""",
"url": "https://en.wikipedia.org/wiki/John_Birkinshaw",
"face_value": "130",
"stripe_colour": "${D_GREEN}",
"box": "${H_GREEN}",
},
{
"title": "George Leeman",
"desc": """
Investments can place or acquire a station
marker for free, once per share held,
maximum 3. Half the cost of placing a
station marker is paid to this treasury
each time.""",
"url": "https://en.wikipedia.org/wiki/George_Leeman",
"face_value": "$120",
"stripe_colour": "${D_BROWN}",
"box": "${H_BROWN}",
},
{
"title": "Samuel Montagu & Co.",
"desc": """
Investments can place a second station marker in
London and have two independent train routes
reaching the London Docks. The current revenue
of London is paid to this treasury each time.""",
"url": "https://en.wikipedia.org/wiki/Samuel_Montagu_%26_Co.",
"face_value": "$130",
"stripe_colour": "${D_BROWN}",
"box": "${H_BROWN}",
},
{
"title": """Robert Stephenson
& Charles Fox""",
"desc": """
Investments can gain and immediately place an
additional station marker, once for each 2
shares held, maximum 4. Half of the placement
cost of the station is paid to this treasury
when it is placed.""",
"url": "https://en.wikipedia.org/wiki/Robert_Stephenson, https://en.wikipedia.org/wiki/Charles_Fox_(civil_and_railway_engineer)",
"face_value": "$130",
"stripe_colour": "${D_BROWN}",
"box": "${H_BROWN}",
},
{
"title": "Harrison Mudd",
"desc": """
Investments may add one port passed-by on a
train route, per share held, maximum 3. Half
the revenue of the smallest port included on
a route is paid to this treasury.""",
"url": "https://books.google.com/books?id=fF-vAwAAQBAJ&pg=PA43&lpg=PA43&dq=english+19th+century+fishing+magnate&source=bl&ots=DMSmbM2UKw&sig=6mTXbk5LlduSIAjWAhqnQccLE7k&hl=en&sa=X&ved=0ahUKEwiT4c_tsvXPAhXkwVQKHWqEDvQQ6AEIMTAD#v=onepage&q=english%2019th%20century%20fishing%20magnate&f=false",
"face_value": "$130",
},
{
"title": "Enoch Train & Co.",
"desc": """
Investments can double the revenue of a port
\(not Liverpool or London\), one per share
held, maximum 3, Half of the revenue of the
largest port to be doubled is paid to this
treasury each time.""",
"url": "",
"face_value": "$130",
},
{
"title": "Child & Co.",
"desc": """Current investments:
Stock price falls only once per
two shares in the pool or issued
(rounding up).""",
"url": "https://en.wikipedia.org/wiki/Child_%26_Co.",
},
{
"title": "Carl Joachim Hambro",
"desc": """Current investments:
Double the revenues of all towns for routes ending
in the London Docks.""",
"url": "https://en.wikipedia.org/wiki/Hambros_Bank",
},
{
"title": "Sassoon David Sassoon",
"desc": """Current investments:
Double the revenue of one city (not London) for routes
ending in Liverpool port.""",
"url": "https://en.wikipedia.org/wiki/Sassoon_David_Sassoon",
},
{
"title": "George Hudson",
"desc": """Cannot sell shares but can
buy one share in each parliament or stock round at half price.
Current investments:
Can supplement dividends with capital in their treasury.""",
"url": "https://en.wikipedia.org/wiki/George_Hudson",
},
{
"title": "Henry Dubs",
"desc": """Current investments:
Can forgo paying train maintenance for one train,
once per share held per game.""",
"url": "https://en.wikipedia.org/wiki/Henry_D%C3%BCbs",
},
{
"title": "Nelson & Co.",
"desc": """Current investments:
Can buy trains in pairs from the supply, paying for only one,
that cannot run until the operating round after next.""",
"url": "https://en.wikipedia.org/wiki/Neilson_and_Company",
},
{
"title": "Charles Frederick Beyer",
"desc": """Current investments:
Can pay one-step lower train maintenance
on one type of train once per game.""",
"url": "https://en.wikipedia.org/wiki/Charles_Beyer",
},
{
"title": "James Pearson",
"desc": """Current investments:
Add $20 to the revenue of all towns.""",
"url": "https://en.wikipedia.org/wiki/James_Pearson_(engineer)",
},
{
"title": "Isambard Kingdom Brunel",
"desc": """Half the cost of all connections across
blue barriers are paid to this treasury.""",
"url": "https://en.wikipedia.org/wiki/Isambard_Kingdom_Brunel",
},
{
"title": "Richard Roberts",
"desc": """Current investments:
Pay 20% less on train maintenance..""",
"url": "https://en.wikipedia.org/wiki/Richard_Roberts_(engineer)",
},
{
"title": "Beyer, Peacock and Company",
"desc": """Current investments:
May purchase trains from the supply at a 20% discount.
Half of any savings are paid to this treasury.""",
"url": "https://en.wikipedia.org/wiki/Beyer,_Peacock_and_Company",
},
{
"title": "John Ramsbottom",
"desc": """Current investments:
Can replace a track tile with an available track-tile of the same type
and connections to adjacent tiles as part of its normal track-build.
Half the revenue of any such tile placed is paid to this treasury.""",
"url": "https://en.wikipedia.org/wiki/John_Ramsbottom_(engineer)",
},
]
%}
[DEFAULT]
print_instruction = "Print one copy of this page."
PRESIDENT_STRIPE = ${ORANGE}
[charter]
desc1 = "Assets, Treasury & Trains"
token_count = 2
note1 = """Shares start in treasury.
Purchase price of shares goes to treasury.
Treasury shares pay dividends to treasury.
Bank pool shares pay dividends to bank.
Round dividends for shareholders
& against the company."""
{% set page_size = 4 %}
{% set company_count = companies | count %}
{% set blocks = ((companies|count + 3) / page_size) | int %}
{% set tiles = ["1.1", "1.2", "2.1", "2.2",] %}
{% for sheet in range (blocks) %}
[[sheet{{ sheet + 1 }}]]
{% set index = sheet * page_size %}
{% for tile in range (page_size) %}
{% if index + tile >= company_count %}
{% continue %}
{% endif %}
{% set company = companies[index + tile] %}
[[[tile_{{ tiles[tile] }}]]]
token_bottom_colour = {{ company.token_bottom }}
token_bottom_stripe_colour = {{ company.token_bottom_stripe }}
token_colour = ${WHITE}
token_top_colour = {{ company.token_top }}