This repository has been archived by the owner on Mar 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoogle_capstone.twb
1967 lines (1966 loc) · 131 KB
/
google_capstone.twb
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
<?xml version='1.0' encoding='utf-8' ?>
<!-- build 20222.22.0624.2136 -->
<workbook original-version='18.1' source-build='2022.2.0 (20222.22.0624.2136)' source-platform='mac' version='18.1' xmlns:user='http://www.tableausoftware.com/xml/user'>
<document-format-change-manifest>
<_.fcp.AccessibleZoneTabOrder.true...AccessibleZoneTabOrder />
<_.fcp.AnimationOnByDefault.true...AnimationOnByDefault />
<AutoCreateAndUpdateDSDPhoneLayouts />
<_.fcp.MarkAnimation.true...MarkAnimation />
<_.fcp.ObjectModelEncapsulateLegacy.true...ObjectModelEncapsulateLegacy />
<_.fcp.ObjectModelTableType.true...ObjectModelTableType />
<_.fcp.SchemaViewerObjectModel.true...SchemaViewerObjectModel />
<SetMembershipControl />
<SheetIdentifierTracking />
<WindowsPersistSimpleIdentifiers />
</document-format-change-manifest>
<preferences>
<preference name='ui.encoding.shelf.height' value='24' />
<preference name='ui.shelf.height' value='26' />
</preferences>
<_.fcp.AnimationOnByDefault.false...style>
<_.fcp.AnimationOnByDefault.false..._.fcp.MarkAnimation.true...style-rule element='animation'>
<_.fcp.AnimationOnByDefault.false...format attr='animation-on' value='ao-on' />
</_.fcp.AnimationOnByDefault.false..._.fcp.MarkAnimation.true...style-rule>
</_.fcp.AnimationOnByDefault.false...style>
<datasources>
<datasource caption='google_proj' inline='true' name='federated.0n3tb880tdontw130j5tz1k5b7nc' version='18.1'>
<connection class='federated'>
<named-connections>
<named-connection caption='google_proj' name='textscan.0vo8qls1vx6hj41fwnzo20gqw90g'>
<connection class='textscan' directory='/Users/Thoma/google_data_analytics_data' filename='google_proj.csv' password='' server='' />
</named-connection>
</named-connections>
<_.fcp.ObjectModelEncapsulateLegacy.false...relation connection='textscan.0vo8qls1vx6hj41fwnzo20gqw90g' name='google_proj.csv' table='[google_proj#csv]' type='table'>
<columns character-set='UTF-8' header='yes' locale='en_NZ' separator=','>
<column datatype='string' name='ride_id' ordinal='0' />
<column datatype='string' name='rideable_type' ordinal='1' />
<column datatype='datetime' name='started_at' ordinal='2' />
<column datatype='datetime' name='ended_at' ordinal='3' />
<column datatype='string' name='start_station_name' ordinal='4' />
<column datatype='string' name='start_station_id' ordinal='5' />
<column datatype='string' name='end_station_name' ordinal='6' />
<column datatype='string' name='end_station_id' ordinal='7' />
<column datatype='real' name='start_lat' ordinal='8' />
<column datatype='real' name='start_lng' ordinal='9' />
<column datatype='real' name='end_lat' ordinal='10' />
<column datatype='real' name='end_lng' ordinal='11' />
<column datatype='string' name='member_casual' ordinal='12' />
<column datatype='integer' name='ride_length' ordinal='13' />
<column datatype='string' name='day_of_week' ordinal='14' />
<column datatype='string' name='season' ordinal='15' />
<column datatype='boolean' name='is_public_holiday' ordinal='16' />
<column datatype='string' name='which_public_holiday' ordinal='17' />
</columns>
</_.fcp.ObjectModelEncapsulateLegacy.false...relation>
<_.fcp.ObjectModelEncapsulateLegacy.true...relation connection='textscan.0vo8qls1vx6hj41fwnzo20gqw90g' name='google_proj.csv' table='[google_proj#csv]' type='table'>
<columns character-set='UTF-8' header='yes' locale='en_NZ' separator=','>
<column datatype='string' name='ride_id' ordinal='0' />
<column datatype='string' name='rideable_type' ordinal='1' />
<column datatype='datetime' name='started_at' ordinal='2' />
<column datatype='datetime' name='ended_at' ordinal='3' />
<column datatype='string' name='start_station_name' ordinal='4' />
<column datatype='string' name='start_station_id' ordinal='5' />
<column datatype='string' name='end_station_name' ordinal='6' />
<column datatype='string' name='end_station_id' ordinal='7' />
<column datatype='real' name='start_lat' ordinal='8' />
<column datatype='real' name='start_lng' ordinal='9' />
<column datatype='real' name='end_lat' ordinal='10' />
<column datatype='real' name='end_lng' ordinal='11' />
<column datatype='string' name='member_casual' ordinal='12' />
<column datatype='integer' name='ride_length' ordinal='13' />
<column datatype='string' name='day_of_week' ordinal='14' />
<column datatype='string' name='season' ordinal='15' />
<column datatype='boolean' name='is_public_holiday' ordinal='16' />
<column datatype='string' name='which_public_holiday' ordinal='17' />
</columns>
</_.fcp.ObjectModelEncapsulateLegacy.true...relation>
<metadata-records>
<metadata-record class='capability'>
<remote-name />
<remote-type>0</remote-type>
<parent-name>[google_proj.csv]</parent-name>
<remote-alias />
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='character-set'>"UTF-8"</attribute>
<attribute datatype='string' name='collation'>"en_GB"</attribute>
<attribute datatype='string' name='field-delimiter'>","</attribute>
<attribute datatype='string' name='header-row'>"true"</attribute>
<attribute datatype='string' name='locale'>"en_NZ"</attribute>
<attribute datatype='string' name='single-char'>""</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>ride_id</remote-name>
<remote-type>129</remote-type>
<local-name>[ride_id]</local-name>
<parent-name>[google_proj.csv]</parent-name>
<remote-alias>ride_id</remote-alias>
<ordinal>0</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<scale>1</scale>
<width>1073741823</width>
<contains-null>true</contains-null>
<collation flag='0' name='LEN_RGB' />
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[google_proj.csv_54654BA4B71D47C5AC8E1A891551DFE8]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>rideable_type</remote-name>
<remote-type>129</remote-type>
<local-name>[rideable_type]</local-name>
<parent-name>[google_proj.csv]</parent-name>
<remote-alias>rideable_type</remote-alias>
<ordinal>1</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<scale>1</scale>
<width>1073741823</width>
<contains-null>true</contains-null>
<collation flag='0' name='LEN_RGB' />
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[google_proj.csv_54654BA4B71D47C5AC8E1A891551DFE8]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>started_at</remote-name>
<remote-type>135</remote-type>
<local-name>[started_at]</local-name>
<parent-name>[google_proj.csv]</parent-name>
<remote-alias>started_at</remote-alias>
<ordinal>2</ordinal>
<local-type>datetime</local-type>
<aggregation>Year</aggregation>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[google_proj.csv_54654BA4B71D47C5AC8E1A891551DFE8]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>ended_at</remote-name>
<remote-type>135</remote-type>
<local-name>[ended_at]</local-name>
<parent-name>[google_proj.csv]</parent-name>
<remote-alias>ended_at</remote-alias>
<ordinal>3</ordinal>
<local-type>datetime</local-type>
<aggregation>Year</aggregation>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[google_proj.csv_54654BA4B71D47C5AC8E1A891551DFE8]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>start_station_name</remote-name>
<remote-type>129</remote-type>
<local-name>[start_station_name]</local-name>
<parent-name>[google_proj.csv]</parent-name>
<remote-alias>start_station_name</remote-alias>
<ordinal>4</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<scale>1</scale>
<width>1073741823</width>
<contains-null>true</contains-null>
<collation flag='0' name='LEN_RGB' />
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[google_proj.csv_54654BA4B71D47C5AC8E1A891551DFE8]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>start_station_id</remote-name>
<remote-type>129</remote-type>
<local-name>[start_station_id]</local-name>
<parent-name>[google_proj.csv]</parent-name>
<remote-alias>start_station_id</remote-alias>
<ordinal>5</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<scale>1</scale>
<width>1073741823</width>
<contains-null>true</contains-null>
<collation flag='0' name='LEN_RGB' />
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[google_proj.csv_54654BA4B71D47C5AC8E1A891551DFE8]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>end_station_name</remote-name>
<remote-type>129</remote-type>
<local-name>[end_station_name]</local-name>
<parent-name>[google_proj.csv]</parent-name>
<remote-alias>end_station_name</remote-alias>
<ordinal>6</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<scale>1</scale>
<width>1073741823</width>
<contains-null>true</contains-null>
<collation flag='0' name='LEN_RGB' />
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[google_proj.csv_54654BA4B71D47C5AC8E1A891551DFE8]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>end_station_id</remote-name>
<remote-type>129</remote-type>
<local-name>[end_station_id]</local-name>
<parent-name>[google_proj.csv]</parent-name>
<remote-alias>end_station_id</remote-alias>
<ordinal>7</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<scale>1</scale>
<width>1073741823</width>
<contains-null>true</contains-null>
<collation flag='0' name='LEN_RGB' />
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[google_proj.csv_54654BA4B71D47C5AC8E1A891551DFE8]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>start_lat</remote-name>
<remote-type>5</remote-type>
<local-name>[start_lat]</local-name>
<parent-name>[google_proj.csv]</parent-name>
<remote-alias>start_lat</remote-alias>
<ordinal>8</ordinal>
<local-type>real</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[google_proj.csv_54654BA4B71D47C5AC8E1A891551DFE8]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>start_lng</remote-name>
<remote-type>5</remote-type>
<local-name>[start_lng]</local-name>
<parent-name>[google_proj.csv]</parent-name>
<remote-alias>start_lng</remote-alias>
<ordinal>9</ordinal>
<local-type>real</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[google_proj.csv_54654BA4B71D47C5AC8E1A891551DFE8]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>end_lat</remote-name>
<remote-type>5</remote-type>
<local-name>[end_lat]</local-name>
<parent-name>[google_proj.csv]</parent-name>
<remote-alias>end_lat</remote-alias>
<ordinal>10</ordinal>
<local-type>real</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[google_proj.csv_54654BA4B71D47C5AC8E1A891551DFE8]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>end_lng</remote-name>
<remote-type>5</remote-type>
<local-name>[end_lng]</local-name>
<parent-name>[google_proj.csv]</parent-name>
<remote-alias>end_lng</remote-alias>
<ordinal>11</ordinal>
<local-type>real</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[google_proj.csv_54654BA4B71D47C5AC8E1A891551DFE8]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>member_casual</remote-name>
<remote-type>129</remote-type>
<local-name>[member_casual]</local-name>
<parent-name>[google_proj.csv]</parent-name>
<remote-alias>member_casual</remote-alias>
<ordinal>12</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<scale>1</scale>
<width>1073741823</width>
<contains-null>true</contains-null>
<collation flag='0' name='LEN_RGB' />
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[google_proj.csv_54654BA4B71D47C5AC8E1A891551DFE8]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>ride_length</remote-name>
<remote-type>20</remote-type>
<local-name>[ride_length]</local-name>
<parent-name>[google_proj.csv]</parent-name>
<remote-alias>ride_length</remote-alias>
<ordinal>13</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[google_proj.csv_54654BA4B71D47C5AC8E1A891551DFE8]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>day_of_week</remote-name>
<remote-type>129</remote-type>
<local-name>[day_of_week]</local-name>
<parent-name>[google_proj.csv]</parent-name>
<remote-alias>day_of_week</remote-alias>
<ordinal>14</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<scale>1</scale>
<width>1073741823</width>
<contains-null>true</contains-null>
<collation flag='0' name='LEN_RGB' />
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[google_proj.csv_54654BA4B71D47C5AC8E1A891551DFE8]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>season</remote-name>
<remote-type>129</remote-type>
<local-name>[season]</local-name>
<parent-name>[google_proj.csv]</parent-name>
<remote-alias>season</remote-alias>
<ordinal>15</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<scale>1</scale>
<width>1073741823</width>
<contains-null>true</contains-null>
<collation flag='0' name='LEN_RGB' />
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[google_proj.csv_54654BA4B71D47C5AC8E1A891551DFE8]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>is_public_holiday</remote-name>
<remote-type>11</remote-type>
<local-name>[is_public_holiday]</local-name>
<parent-name>[google_proj.csv]</parent-name>
<remote-alias>is_public_holiday</remote-alias>
<ordinal>16</ordinal>
<local-type>boolean</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[google_proj.csv_54654BA4B71D47C5AC8E1A891551DFE8]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>which_public_holiday</remote-name>
<remote-type>129</remote-type>
<local-name>[which_public_holiday]</local-name>
<parent-name>[google_proj.csv]</parent-name>
<remote-alias>which_public_holiday</remote-alias>
<ordinal>17</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<scale>1</scale>
<width>1073741823</width>
<contains-null>true</contains-null>
<collation flag='0' name='LEN_RGB' />
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[google_proj.csv_54654BA4B71D47C5AC8E1A891551DFE8]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
</metadata-records>
</connection>
<aliases enabled='yes' />
<_.fcp.ObjectModelTableType.true...column caption='google_proj.csv' datatype='table' name='[__tableau_internal_object_id__].[google_proj.csv_54654BA4B71D47C5AC8E1A891551DFE8]' role='measure' type='quantitative' />
<column caption='Day Of Week' datatype='string' name='[day_of_week]' role='dimension' type='nominal' />
<column aggregation='Avg' caption='End Lat' datatype='real' name='[end_lat]' role='measure' semantic-role='[Geographical].[Latitude]' type='quantitative' />
<column caption='End Lng' datatype='real' name='[end_lng]' role='measure' type='quantitative' />
<column caption='End Station Id' datatype='string' hidden='true' name='[end_station_id]' role='dimension' type='nominal' />
<column caption='End Station Name' datatype='string' hidden='true' name='[end_station_name]' role='dimension' type='nominal' />
<column caption='Ended At' datatype='datetime' name='[ended_at]' role='dimension' type='ordinal' />
<column caption='Is Public Holiday' datatype='boolean' name='[is_public_holiday]' role='dimension' type='nominal' />
<column caption='Member Casual' datatype='string' name='[member_casual]' role='dimension' type='nominal' />
<column caption='Ride Id' datatype='string' name='[ride_id]' role='dimension' type='nominal' />
<column caption='Ride Length' datatype='integer' name='[ride_length]' role='measure' type='quantitative' />
<column caption='Rideable Type' datatype='string' name='[rideable_type]' role='dimension' type='nominal' />
<column caption='Season' datatype='string' name='[season]' role='dimension' type='nominal' />
<column aggregation='Avg' caption='Start Lat' datatype='real' name='[start_lat]' role='dimension' semantic-role='[Geographical].[Latitude]' type='quantitative' />
<column aggregation='Avg' caption='Start Lng' datatype='real' name='[start_lng]' role='dimension' semantic-role='[Geographical].[Longitude]' type='quantitative' />
<column caption='Start Station Id' datatype='string' hidden='true' name='[start_station_id]' role='dimension' type='nominal' />
<column caption='Start Station Name' datatype='string' hidden='true' name='[start_station_name]' role='dimension' type='nominal' />
<column caption='Started At' datatype='datetime' name='[started_at]' role='dimension' type='ordinal' />
<column caption='Which Public Holiday' datatype='string' name='[which_public_holiday]' role='dimension' type='nominal' />
<column-instance column='[is_public_holiday]' derivation='None' name='[none:is_public_holiday:nk]' pivot='key' type='nominal' />
<column-instance column='[member_casual]' derivation='None' name='[none:member_casual:nk]' pivot='key' type='nominal' />
<group hidden='true' name='[Inclusions (Is Public Holiday,Member Casual)]' name-style='unqualified' user:auto-column='include'>
<groupfilter function='crossjoin'>
<groupfilter function='level-members' level='[none:is_public_holiday:nk]' />
<groupfilter function='level-members' level='[none:member_casual:nk]' />
</groupfilter>
</group>
<layout _.fcp.SchemaViewerObjectModel.false...dim-percentage='0.5' _.fcp.SchemaViewerObjectModel.false...measure-percentage='0.4' dim-ordering='alphabetic' measure-ordering='alphabetic' show-structure='true' />
<style>
<style-rule element='mark'>
<encoding attr='color' field='[none:member_casual:nk]' type='palette'>
<map to='#4e79a7'>
<bucket>"casual"</bucket>
</map>
<map to='#f28e2b'>
<bucket>"member"</bucket>
</map>
</encoding>
</style-rule>
</style>
<semantic-values>
<semantic-value key='[Country].[Name]' value='"New Zealand"' />
</semantic-values>
<date-options start-of-week='monday' />
<_.fcp.ObjectModelEncapsulateLegacy.true...object-graph>
<objects>
<object caption='google_proj.csv' id='google_proj.csv_54654BA4B71D47C5AC8E1A891551DFE8'>
<properties context=''>
<relation connection='textscan.0vo8qls1vx6hj41fwnzo20gqw90g' name='google_proj.csv' table='[google_proj#csv]' type='table'>
<columns character-set='UTF-8' header='yes' locale='en_NZ' separator=','>
<column datatype='string' name='ride_id' ordinal='0' />
<column datatype='string' name='rideable_type' ordinal='1' />
<column datatype='datetime' name='started_at' ordinal='2' />
<column datatype='datetime' name='ended_at' ordinal='3' />
<column datatype='string' name='start_station_name' ordinal='4' />
<column datatype='string' name='start_station_id' ordinal='5' />
<column datatype='string' name='end_station_name' ordinal='6' />
<column datatype='string' name='end_station_id' ordinal='7' />
<column datatype='real' name='start_lat' ordinal='8' />
<column datatype='real' name='start_lng' ordinal='9' />
<column datatype='real' name='end_lat' ordinal='10' />
<column datatype='real' name='end_lng' ordinal='11' />
<column datatype='string' name='member_casual' ordinal='12' />
<column datatype='integer' name='ride_length' ordinal='13' />
<column datatype='string' name='day_of_week' ordinal='14' />
<column datatype='string' name='season' ordinal='15' />
<column datatype='boolean' name='is_public_holiday' ordinal='16' />
<column datatype='string' name='which_public_holiday' ordinal='17' />
</columns>
</relation>
</properties>
</object>
</objects>
</_.fcp.ObjectModelEncapsulateLegacy.true...object-graph>
</datasource>
</datasources>
<worksheets>
<worksheet name='Ride Length per public holiday tye per member type'>
<table>
<view>
<datasources>
<datasource caption='google_proj' name='federated.0n3tb880tdontw130j5tz1k5b7nc' />
</datasources>
<datasource-dependencies datasource='federated.0n3tb880tdontw130j5tz1k5b7nc'>
<column caption='Is Public Holiday' datatype='boolean' name='[is_public_holiday]' role='dimension' type='nominal' />
<column caption='Member Casual' datatype='string' name='[member_casual]' role='dimension' type='nominal' />
<column-instance column='[is_public_holiday]' derivation='None' name='[none:is_public_holiday:nk]' pivot='key' type='nominal' />
<column-instance column='[member_casual]' derivation='None' name='[none:member_casual:nk]' pivot='key' type='nominal' />
<column-instance column='[which_public_holiday]' derivation='None' name='[none:which_public_holiday:nk]' pivot='key' type='nominal' />
<column caption='Ride Length' datatype='integer' name='[ride_length]' role='measure' type='quantitative' />
<column-instance column='[ride_length]' derivation='Sum' name='[sum:ride_length:qk]' pivot='key' type='quantitative' />
<column caption='Which Public Holiday' datatype='string' name='[which_public_holiday]' role='dimension' type='nominal' />
</datasource-dependencies>
<filter class='categorical' column='[federated.0n3tb880tdontw130j5tz1k5b7nc].[Inclusions (Is Public Holiday,Member Casual)]'>
<groupfilter function='crossjoin' user:ui-domain='database' user:ui-enumeration='inclusive' user:ui-marker='enumerate'>
<groupfilter function='member' level='[none:is_public_holiday:nk]' member='true' />
<groupfilter function='member' level='[none:member_casual:nk]' member='"casual"' />
</groupfilter>
</filter>
<slices>
<column>[federated.0n3tb880tdontw130j5tz1k5b7nc].[Inclusions (Is Public Holiday,Member Casual)]</column>
</slices>
<aggregation value='true' />
</view>
<style />
<panes>
<pane selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Circle' />
<encodings>
<size column='[federated.0n3tb880tdontw130j5tz1k5b7nc].[sum:ride_length:qk]' />
<text column='[federated.0n3tb880tdontw130j5tz1k5b7nc].[none:which_public_holiday:nk]' />
<color column='[federated.0n3tb880tdontw130j5tz1k5b7nc].[none:member_casual:nk]' />
</encodings>
<style>
<style-rule element='mark'>
<format attr='mark-labels-show' value='true' />
<format attr='mark-labels-cull' value='true' />
<format attr='mark-labels-line-first' value='true' />
<format attr='mark-labels-line-last' value='true' />
<format attr='mark-labels-range-min' value='true' />
<format attr='mark-labels-range-max' value='true' />
<format attr='mark-labels-mode' value='all' />
<format attr='mark-labels-range-scope' value='pane' />
<format attr='mark-labels-range-field' value='' />
</style-rule>
</style>
</pane>
</panes>
<rows />
<cols />
</table>
<simple-id uuid='{55BF01E7-5A7E-4D2B-A242-681791B1589F}' />
</worksheet>
<worksheet name='Ride length per Ride type per member type'>
<table>
<view>
<datasources>
<datasource caption='google_proj' name='federated.0n3tb880tdontw130j5tz1k5b7nc' />
</datasources>
<datasource-dependencies datasource='federated.0n3tb880tdontw130j5tz1k5b7nc'>
<column caption='Member Casual' datatype='string' name='[member_casual]' role='dimension' type='nominal' />
<column-instance column='[member_casual]' derivation='None' name='[none:member_casual:nk]' pivot='key' type='nominal' />
<column-instance column='[rideable_type]' derivation='None' name='[none:rideable_type:nk]' pivot='key' type='nominal' />
<column caption='Ride Length' datatype='integer' name='[ride_length]' role='measure' type='quantitative' />
<column caption='Rideable Type' datatype='string' name='[rideable_type]' role='dimension' type='nominal' />
<column-instance column='[ride_length]' derivation='Sum' name='[sum:ride_length:qk]' pivot='key' type='quantitative' />
</datasource-dependencies>
<aggregation value='true' />
</view>
<style>
<style-rule element='cell'>
<format attr='width' field='[federated.0n3tb880tdontw130j5tz1k5b7nc].[none:member_casual:nk]' value='81' />
<format attr='width' field='[federated.0n3tb880tdontw130j5tz1k5b7nc].[none:rideable_type:nk]' value='84' />
</style-rule>
</style>
<panes>
<pane selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Automatic' />
<encodings>
<color column='[federated.0n3tb880tdontw130j5tz1k5b7nc].[none:member_casual:nk]' />
</encodings>
<style>
<style-rule element='pane'>
<format attr='minwidth' value='-1' />
<format attr='maxwidth' value='-1' />
</style-rule>
</style>
</pane>
</panes>
<rows>[federated.0n3tb880tdontw130j5tz1k5b7nc].[sum:ride_length:qk]</rows>
<cols>[federated.0n3tb880tdontw130j5tz1k5b7nc].[none:rideable_type:nk]</cols>
</table>
<simple-id uuid='{A0AF6128-3B4D-45A9-A23E-56C459F88A0C}' />
</worksheet>
<worksheet name='Ride length per day of week per member type'>
<table>
<view>
<datasources>
<datasource caption='google_proj' name='federated.0n3tb880tdontw130j5tz1k5b7nc' />
</datasources>
<datasource-dependencies datasource='federated.0n3tb880tdontw130j5tz1k5b7nc'>
<column caption='Day Of Week' datatype='string' name='[day_of_week]' role='dimension' type='nominal' />
<column caption='Member Casual' datatype='string' name='[member_casual]' role='dimension' type='nominal' />
<column-instance column='[day_of_week]' derivation='None' name='[none:day_of_week:nk]' pivot='key' type='nominal' />
<column-instance column='[member_casual]' derivation='None' name='[none:member_casual:nk]' pivot='key' type='nominal' />
<column caption='Ride Length' datatype='integer' name='[ride_length]' role='measure' type='quantitative' />
<column-instance column='[ride_length]' derivation='Sum' name='[sum:ride_length:qk]' pivot='key' type='quantitative' />
</datasource-dependencies>
<aggregation value='true' />
</view>
<style />
<panes>
<pane selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Automatic' />
<encodings>
<color column='[federated.0n3tb880tdontw130j5tz1k5b7nc].[none:member_casual:nk]' />
</encodings>
</pane>
</panes>
<rows>[federated.0n3tb880tdontw130j5tz1k5b7nc].[sum:ride_length:qk]</rows>
<cols>[federated.0n3tb880tdontw130j5tz1k5b7nc].[none:day_of_week:nk]</cols>
</table>
<simple-id uuid='{815B3DA6-0407-4D2A-9296-9E2BA4518304}' />
</worksheet>
<worksheet name='Ride length per member type'>
<table>
<view>
<datasources>
<datasource caption='google_proj' name='federated.0n3tb880tdontw130j5tz1k5b7nc' />
</datasources>
<datasource-dependencies datasource='federated.0n3tb880tdontw130j5tz1k5b7nc'>
<column caption='Member Casual' datatype='string' name='[member_casual]' role='dimension' type='nominal' />
<column-instance column='[member_casual]' derivation='None' name='[none:member_casual:nk]' pivot='key' type='nominal' />
<column caption='Ride Length' datatype='integer' name='[ride_length]' role='measure' type='quantitative' />
<column-instance column='[ride_length]' derivation='Sum' name='[sum:ride_length:qk]' pivot='key' type='quantitative' />
</datasource-dependencies>
<aggregation value='true' />
</view>
<style>
<style-rule element='mark'>
<encoding attr='size-bar' field='[federated.0n3tb880tdontw130j5tz1k5b7nc].[sum:ride_length:qk]' field-type='quantitative' max-size='1' min-size='0.005' type='centersize' />
</style-rule>
</style>
<panes>
<pane selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Pie' />
<encodings>
<color column='[federated.0n3tb880tdontw130j5tz1k5b7nc].[none:member_casual:nk]' />
<wedge-size column='[federated.0n3tb880tdontw130j5tz1k5b7nc].[sum:ride_length:qk]' />
<size column='[federated.0n3tb880tdontw130j5tz1k5b7nc].[sum:ride_length:qk]' />
</encodings>
</pane>
</panes>
<rows />
<cols />
</table>
<simple-id uuid='{1FCD81B7-DF24-4005-AAF1-F282817CDA03}' />
</worksheet>
<worksheet name='ride length per season'>
<layout-options>
<title>
<formatted-text>
<run>Ride length per Season per member type</run>
</formatted-text>
</title>
</layout-options>
<table>
<view>
<datasources>
<datasource caption='google_proj' name='federated.0n3tb880tdontw130j5tz1k5b7nc' />
</datasources>
<datasource-dependencies datasource='federated.0n3tb880tdontw130j5tz1k5b7nc'>
<column caption='Member Casual' datatype='string' name='[member_casual]' role='dimension' type='nominal' />
<column-instance column='[member_casual]' derivation='None' name='[none:member_casual:nk]' pivot='key' type='nominal' />
<column-instance column='[season]' derivation='None' name='[none:season:nk]' pivot='key' type='nominal' />
<column caption='Ride Length' datatype='integer' name='[ride_length]' role='measure' type='quantitative' />
<column caption='Season' datatype='string' name='[season]' role='dimension' type='nominal' />
<column-instance column='[ride_length]' derivation='Sum' name='[sum:ride_length:qk]' pivot='key' type='quantitative' />
</datasource-dependencies>
<aggregation value='true' />
</view>
<style />
<panes>
<pane id='2' selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Automatic' />
<encodings>
<color column='[federated.0n3tb880tdontw130j5tz1k5b7nc].[none:member_casual:nk]' />
</encodings>
</pane>
</panes>
<rows>[federated.0n3tb880tdontw130j5tz1k5b7nc].[sum:ride_length:qk]</rows>
<cols>[federated.0n3tb880tdontw130j5tz1k5b7nc].[none:season:nk]</cols>
</table>
<simple-id uuid='{A30EB8AD-2117-43E2-A48C-423200CED221}' />
</worksheet>
</worksheets>
<dashboards>
<dashboard _.fcp.AccessibleZoneTabOrder.true...enable-sort-zone-taborder='true' name='Dashboard 1'>
<style />
<size maxheight='800' maxwidth='1000' minheight='800' minwidth='1000' />
<zones />
<devicelayouts>
<devicelayout auto-generated='true' name='Phone'>
<size maxheight='700' minheight='700' sizing-mode='vscroll' />
<zones>
<zone h='100000' id='18' type-v2='layout-basic' w='100000' x='0' y='0'>
<zone h='98000' id='17' param='vert' type-v2='layout-flow' w='98400' x='800' y='1000' />
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='8' />
</zone-style>
</zone>
</zones>
</devicelayout>
</devicelayouts>
<simple-id uuid='{3F13A844-7817-40C0-9B7F-EE519F937961}' />
</dashboard>
</dashboards>
<windows source-height='30'>
<window class='worksheet' name='ride length per season'>
<cards>
<edge name='left'>
<strip size='160'>
<card type='pages' />
<card type='filters' />
<card type='marks' />
</strip>
</edge>
<edge name='top'>
<strip size='2147483647'>
<card type='columns' />
</strip>
<strip size='2147483647'>
<card type='rows' />
</strip>
<strip size='31'>
<card type='title' />
</strip>
</edge>
<edge name='right'>
<strip size='160'>
<card pane-specification-id='2' param='[federated.0n3tb880tdontw130j5tz1k5b7nc].[none:member_casual:nk]' type='color' />
</strip>
</edge>
</cards>
<viewpoint>
<zoom type='fit-width' />
<highlight>
<color-one-way>
<field>[federated.0n3tb880tdontw130j5tz1k5b7nc].[none:member_casual:nk]</field>
<field>[federated.0n3tb880tdontw130j5tz1k5b7nc].[none:season:nk]</field>
<field>[federated.0n3tb880tdontw130j5tz1k5b7nc].[none:start_lat:qk]</field>
<field>[federated.0n3tb880tdontw130j5tz1k5b7nc].[none:start_lng:ok]</field>
</color-one-way>
</highlight>
</viewpoint>
<simple-id uuid='{DDD23626-F4AD-4B1B-B8FA-31D41B7F499B}' />
</window>
<window class='worksheet' name='Ride length per member type'>
<cards>
<edge name='left'>
<strip size='160'>
<card type='pages' />
<card type='filters' />
<card type='marks' />
</strip>
</edge>
<edge name='top'>
<strip size='2147483647'>
<card type='columns' />
</strip>
<strip size='2147483647'>
<card type='rows' />
</strip>
<strip size='31'>
<card type='title' />
</strip>
</edge>
<edge name='right'>
<strip size='160'>
<card pane-specification-id='0' param='[federated.0n3tb880tdontw130j5tz1k5b7nc].[none:member_casual:nk]' type='color' />
<card pane-specification-id='0' param='[federated.0n3tb880tdontw130j5tz1k5b7nc].[sum:ride_length:qk]' type='size' />
</strip>
</edge>
</cards>
<viewpoint>
<highlight>
<color-one-way>
<field>[federated.0n3tb880tdontw130j5tz1k5b7nc].[none:member_casual:nk]</field>
<field>[federated.0n3tb880tdontw130j5tz1k5b7nc].[sum:ride_length:qk]</field>
</color-one-way>
</highlight>
</viewpoint>
<simple-id uuid='{92944B4B-AF9F-4514-A84F-1639BA9F52FD}' />
</window>
<window class='worksheet' name='Ride length per Ride type per member type'>
<cards>
<edge name='left'>
<strip size='160'>
<card type='pages' />
<card type='filters' />
<card type='marks' />
</strip>
</edge>
<edge name='top'>
<strip size='2147483647'>
<card type='columns' />
</strip>
<strip size='2147483647'>
<card type='rows' />
</strip>
<strip size='31'>
<card type='title' />
</strip>
</edge>
<edge name='right'>
<strip size='160'>
<card pane-specification-id='0' param='[federated.0n3tb880tdontw130j5tz1k5b7nc].[none:member_casual:nk]' type='color' />
</strip>
</edge>
</cards>
<viewpoint>
<highlight>
<color-one-way>
<field>[federated.0n3tb880tdontw130j5tz1k5b7nc].[none:member_casual:nk]</field>
<field>[federated.0n3tb880tdontw130j5tz1k5b7nc].[none:rideable_type:nk]</field>
</color-one-way>
</highlight>
</viewpoint>
<simple-id uuid='{972C26E5-9408-40D0-9F13-C84FEAC8CDCA}' />
</window>
<window class='worksheet' maximized='true' name='Ride length per day of week per member type'>
<cards>
<edge name='left'>
<strip size='160'>
<card type='pages' />
<card type='filters' />
<card type='marks' />
</strip>
</edge>
<edge name='top'>
<strip size='2147483647'>
<card type='columns' />
</strip>
<strip size='2147483647'>
<card type='rows' />
</strip>
<strip size='31'>
<card type='title' />
</strip>
</edge>
<edge name='right'>
<strip size='160'>
<card pane-specification-id='0' param='[federated.0n3tb880tdontw130j5tz1k5b7nc].[none:member_casual:nk]' type='color' />
</strip>
</edge>
</cards>
<viewpoint>
<highlight>
<color-one-way>
<field>[federated.0n3tb880tdontw130j5tz1k5b7nc].[none:day_of_week:nk]</field>
<field>[federated.0n3tb880tdontw130j5tz1k5b7nc].[none:member_casual:nk]</field>
</color-one-way>
</highlight>
</viewpoint>
<simple-id uuid='{A6618EE6-949A-4C3E-ADAA-75DE5126DEE7}' />
</window>
<window class='worksheet' name='Ride Length per public holiday tye per member type'>
<cards>
<edge name='left'>
<strip size='160'>
<card type='pages' />
<card type='marks' />
</strip>
</edge>
<edge name='top'>
<strip size='2147483647'>
<card type='columns' />
</strip>
<strip size='2147483647'>
<card type='rows' />
</strip>
<strip size='31'>
<card type='title' />
</strip>
</edge>
<edge name='right'>
<strip size='160'>
<card pane-specification-id='0' param='[federated.0n3tb880tdontw130j5tz1k5b7nc].[none:member_casual:nk]' type='color' />
</strip>
</edge>
</cards>
<viewpoint>
<highlight>
<color-one-way>
<field>[federated.0n3tb880tdontw130j5tz1k5b7nc].[none:is_public_holiday:nk]</field>
<field>[federated.0n3tb880tdontw130j5tz1k5b7nc].[none:member_casual:nk]</field>
<field>[federated.0n3tb880tdontw130j5tz1k5b7nc].[none:ride_id:nk]</field>
<field>[federated.0n3tb880tdontw130j5tz1k5b7nc].[none:which_public_holiday:nk]</field>
</color-one-way>
</highlight>
</viewpoint>
<simple-id uuid='{39BE64A3-B058-4E30-884F-FFB5DCA9828D}' />
</window>
<window class='dashboard' name='Dashboard 1'>
<viewpoints />
<active id='-1' />
<simple-id uuid='{F450A0D4-71D6-496B-9017-08EC2D7E824F}' />
</window>
</windows>
<thumbnails>
<thumbnail height='384' name='Dashboard 1' width='384'>
iVBORw0KGgoAAAANSUhEUgAAAYAAAAGACAYAAACkx7W/AAAACXBIWXMAAA7DAAAOwwHHb6hk
AAAFXUlEQVR4nO3VMQEAIAzAMMC/5yFjRxMF/XpnZg4AOW87AIAdBgAQZQAAUQYAEGUAAFEG
ABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAA
UQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBl
AABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYA
EGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABR
BgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUA
AFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQ
ZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEG
ABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAA
UQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBl
AABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYA
EGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABR
BgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUA
AFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQ
ZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEG
ABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAA
UQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBl
AABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYA
EGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABR
BgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUA
AFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQ
ZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEG
ABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAA
UQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBl
AABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEGABBlAABRBgAQZQAAUQYA
EGUAAFEGABBlAABRBgAQZQAAUQYAEGUAAFEfFxoG/IiMv0YAAAAASUVORK5CYII=
</thumbnail>
<thumbnail height='384' name='Ride Length per public holiday tye per member type' width='384'>
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