-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimezone-world.nt
1957 lines (1957 loc) · 284 KB
/
timezone-world.nt
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
<http://www.w3.org/2006/timezone-world#YTZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#YTZ> <http://www.w3.org/2006/timezone#name> "Yankee Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#YTZ> <http://www.w3.org/2006/timezone#name> "International Date Line West"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#YTZ> <http://www.w3.org/2006/timezone#GMToffset> "-PT12H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#XTZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#XTZ> <http://www.w3.org/2006/timezone#name> "X-ray Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#XTZ> <http://www.w3.org/2006/timezone#name> "Samoa Standard Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#XTZ> <http://www.w3.org/2006/timezone#GMToffset> "-PT11H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#WTZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#WTZ> <http://www.w3.org/2006/timezone#name> "Whiskey Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#WTZ> <http://www.w3.org/2006/timezone#name> "Hawaii-Aleutian Standard Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#WTZ> <http://www.w3.org/2006/timezone#GMToffset> "-PT10H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#VTZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#VTZ> <http://www.w3.org/2006/timezone#name> "Victor Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#VTZ> <http://www.w3.org/2006/timezone#name> "Alaska Standard Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#VTZ> <http://www.w3.org/2006/timezone#GMToffset> "-PT9H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#V1TZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#V1TZ> <http://www.w3.org/2006/timezone#name> "V1 Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#V1TZ> <http://www.w3.org/2006/timezone#GMToffset> "-PT9.5H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#UTZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#UTZ> <http://www.w3.org/2006/timezone#name> "Uniform Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#UTZ> <http://www.w3.org/2006/timezone#name> "Pacific Standard Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#UTZ> <http://www.w3.org/2006/timezone#GMToffset> "-PT8H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#U1TZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#U1TZ> <http://www.w3.org/2006/timezone#name> "U1 Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#U1TZ> <http://www.w3.org/2006/timezone#GMToffset> "-PT8.5H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#TTZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#TTZ> <http://www.w3.org/2006/timezone#name> "Tango Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#TTZ> <http://www.w3.org/2006/timezone#name> "Mountain Standard Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#TTZ> <http://www.w3.org/2006/timezone#GMToffset> "-PT7H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#STZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#STZ> <http://www.w3.org/2006/timezone#name> "Sierra Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#STZ> <http://www.w3.org/2006/timezone#name> "Central Standard Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#STZ> <http://www.w3.org/2006/timezone#GMToffset> "-PT6H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#RTZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#RTZ> <http://www.w3.org/2006/timezone#name> "Romeo Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#RTZ> <http://www.w3.org/2006/timezone#name> "Eastern Standard Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#RTZ> <http://www.w3.org/2006/timezone#GMToffset> "-PT5H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#QTZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#QTZ> <http://www.w3.org/2006/timezone#name> "Quebec Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#QTZ> <http://www.w3.org/2006/timezone#name> "Atlantic Standard Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#QTZ> <http://www.w3.org/2006/timezone#GMToffset> "-PT4H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#PTZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#PTZ> <http://www.w3.org/2006/timezone#name> "Papa Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#PTZ> <http://www.w3.org/2006/timezone#GMToffset> "-PT3H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#P1TZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#P1TZ> <http://www.w3.org/2006/timezone#name> "P1 Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#P1TZ> <http://www.w3.org/2006/timezone#name> "Newfoundland Standard Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#P1TZ> <http://www.w3.org/2006/timezone#GMToffset> "-PT3.5H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#OTZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#OTZ> <http://www.w3.org/2006/timezone#name> "Oscar Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#OTZ> <http://www.w3.org/2006/timezone#GMToffset> "-PT2H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#NTZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#NTZ> <http://www.w3.org/2006/timezone#name> "November Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#NTZ> <http://www.w3.org/2006/timezone#GMToffset> "-PT1H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#ZTZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#ZTZ> <http://www.w3.org/2006/timezone#name> "Zulu Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#ZTZ> <http://www.w3.org/2006/timezone#name> "Greenwich Mean Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#ZTZ> <http://www.w3.org/2006/timezone#name> "Western Europe Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#ZTZ> <http://www.w3.org/2006/timezone#name> "Universal Time Coordinated"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#ZTZ> <http://www.w3.org/2006/timezone#GMToffset> "PT0H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#ATZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#ATZ> <http://www.w3.org/2006/timezone#name> "Alpha Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#ATZ> <http://www.w3.org/2006/timezone#name> "Central Europe Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#ATZ> <http://www.w3.org/2006/timezone#GMToffset> "PT1H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#BTZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#BTZ> <http://www.w3.org/2006/timezone#name> "Bravo Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#BTZ> <http://www.w3.org/2006/timezone#name> "Eastern Europe Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#BTZ> <http://www.w3.org/2006/timezone#GMToffset> "PT2H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#CTZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#CTZ> <http://www.w3.org/2006/timezone#name> "Charlie Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CTZ> <http://www.w3.org/2006/timezone#name> "Moscow Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CTZ> <http://www.w3.org/2006/timezone#GMToffset> "PT3H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#C1TZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#C1TZ> <http://www.w3.org/2006/timezone#name> "C1 Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#C1TZ> <http://www.w3.org/2006/timezone#GMToffset> "PT3.5H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#DTZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#DTZ> <http://www.w3.org/2006/timezone#name> "Delta Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#DTZ> <http://www.w3.org/2006/timezone#GMToffset> "PT4H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#D1TZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#D1TZ> <http://www.w3.org/2006/timezone#name> "D1 Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#D1TZ> <http://www.w3.org/2006/timezone#GMToffset> "PT4.5H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#ETZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#ETZ> <http://www.w3.org/2006/timezone#name> "Echo Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#ETZ> <http://www.w3.org/2006/timezone#GMToffset> "PT5H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#E1TZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#E1TZ> <http://www.w3.org/2006/timezone#name> "E1 Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#E1TZ> <http://www.w3.org/2006/timezone#GMToffset> "PT5.5H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#FTZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#FTZ> <http://www.w3.org/2006/timezone#name> "Foxtrot Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#FTZ> <http://www.w3.org/2006/timezone#GMToffset> "PT6H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#F1TZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#F1TZ> <http://www.w3.org/2006/timezone#name> "F1 Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#F1TZ> <http://www.w3.org/2006/timezone#GMToffset> "PT6.5H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#GTZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#GTZ> <http://www.w3.org/2006/timezone#name> "Golf Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#GTZ> <http://www.w3.org/2006/timezone#GMToffset> "PT7H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#HTZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#HTZ> <http://www.w3.org/2006/timezone#name> "Hotel Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#HTZ> <http://www.w3.org/2006/timezone#name> "Australian Western Standard Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#HTZ> <http://www.w3.org/2006/timezone#GMToffset> "PT8H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#ITZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#ITZ> <http://www.w3.org/2006/timezone#name> "India Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#ITZ> <http://www.w3.org/2006/timezone#GMToffset> "PT9H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#I1TZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#I1TZ> <http://www.w3.org/2006/timezone#name> "I1 Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#I1TZ> <http://www.w3.org/2006/timezone#name> "Australian Central Standard Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#I1TZ> <http://www.w3.org/2006/timezone#GMToffset> "PT9.5H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#KTZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#KTZ> <http://www.w3.org/2006/timezone#name> "Kilo Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#KTZ> <http://www.w3.org/2006/timezone#name> "Australian Eastern Standard Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#KTZ> <http://www.w3.org/2006/timezone#GMToffset> "PT10H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#K1TZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#K1TZ> <http://www.w3.org/2006/timezone#name> "K1 Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#K1TZ> <http://www.w3.org/2006/timezone#GMToffset> "PT10.5H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#LTZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#LTZ> <http://www.w3.org/2006/timezone#name> "Lima Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#LTZ> <http://www.w3.org/2006/timezone#GMToffset> "PT11H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#L1TZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#L1TZ> <http://www.w3.org/2006/timezone#name> "L1 Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#L1TZ> <http://www.w3.org/2006/timezone#GMToffset> "PT11.5H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#MTZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#MTZ> <http://www.w3.org/2006/timezone#name> "Mike Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#MTZ> <http://www.w3.org/2006/timezone#name> "International Date Line East"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#MTZ> <http://www.w3.org/2006/timezone#GMToffset> "PT12H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#M1TZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#M1TZ> <http://www.w3.org/2006/timezone#name> "M1 Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#M1TZ> <http://www.w3.org/2006/timezone#GMToffset> "PT13H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#M2TZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#M2TZ> <http://www.w3.org/2006/timezone#name> "M2 Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#M2TZ> <http://www.w3.org/2006/timezone#GMToffset> "PT14H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#ChathamTZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#TimeZone> .
<http://www.w3.org/2006/timezone-world#ChathamTZ> <http://www.w3.org/2006/timezone#name> "Chatham Island Time"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#ChathamTZ> <http://www.w3.org/2006/timezone#GMToffset> "PT12.75H"^^<http://www.w3.org/2001/XMLSchema#duration> .
<http://www.w3.org/2006/timezone-world#USA2006DLS> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#EnumeratedDaylightSavingsPolicy> .
<http://www.w3.org/2006/timezone-world#USA2006DLS> <http://www.w3.org/2006/timezone#DLSstartDate> "2006-04-02"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.w3.org/2006/timezone-world#USA2006DLS> <http://www.w3.org/2006/timezone#DLSendDate> "2006-10-29"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.w3.org/2006/timezone-world#EU2006DLS> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#EnumeratedDaylightSavingsPolicy> .
<http://www.w3.org/2006/timezone-world#EU2006DLS> <http://www.w3.org/2006/timezone#DLSstartDate> "2006-03-26"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.w3.org/2006/timezone-world#EU2006DLS> <http://www.w3.org/2006/timezone#DLSendDate> "2006-10-29"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.w3.org/2006/timezone-world#AU2006DLS> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#EnumeratedDaylightSavingsPolicy> .
<http://www.w3.org/2006/timezone-world#AU2006DLS> <http://www.w3.org/2006/timezone#DLSstartDate> "2006-10-29"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.w3.org/2006/timezone-world#AU2006DLS> <http://www.w3.org/2006/timezone#DLSendDate> "2006-04-02"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.w3.org/2006/timezone-world#AUT2006DLS> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#EnumeratedDaylightSavingsPolicy> .
<http://www.w3.org/2006/timezone-world#AUT2006DLS> <http://www.w3.org/2006/timezone#DLSstartDate> "2006-10-01"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.w3.org/2006/timezone-world#AUT2006DLS> <http://www.w3.org/2006/timezone#DLSendDate> "2006-04-02"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.w3.org/2006/timezone-world#RU2006DLS> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#EnumeratedDaylightSavingsPolicy> .
<http://www.w3.org/2006/timezone-world#RU2006DLS> <http://www.w3.org/2006/timezone#DLSstartDate> "2006-03-26"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.w3.org/2006/timezone-world#RU2006DLS> <http://www.w3.org/2006/timezone#DLSendDate> "2006-10-29"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.w3.org/2006/timezone-world#EG2006DLS> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#EnumeratedDaylightSavingsPolicy> .
<http://www.w3.org/2006/timezone-world#EG2006DLS> <http://www.w3.org/2006/timezone#DLSstartDate> "2006-04-28"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.w3.org/2006/timezone-world#EG2006DLS> <http://www.w3.org/2006/timezone#DLSendDate> "2006-09-28"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.w3.org/2006/timezone-world#IQ2006DLS> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#EnumeratedDaylightSavingsPolicy> .
<http://www.w3.org/2006/timezone-world#IQ2006DLS> <http://www.w3.org/2006/timezone#DLSstartDate> "2006-04-01"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.w3.org/2006/timezone-world#IQ2006DLS> <http://www.w3.org/2006/timezone#DLSendDate> "2006-10-01"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.w3.org/2006/timezone-world#IL2006DLS> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#EnumeratedDaylightSavingsPolicy> .
<http://www.w3.org/2006/timezone-world#IL2006DLS> <http://www.w3.org/2006/timezone#DLSstartDate> "2006-03-31"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.w3.org/2006/timezone-world#IL2006DLS> <http://www.w3.org/2006/timezone#DLSendDate> "2006-10-01"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.w3.org/2006/timezone-world#JO2006DLS> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#EnumeratedDaylightSavingsPolicy> .
<http://www.w3.org/2006/timezone-world#JO2006DLS> <http://www.w3.org/2006/timezone#DLSstartDate> "2006-03-30"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.w3.org/2006/timezone-world#JO2006DLS> <http://www.w3.org/2006/timezone#DLSendDate> "2006-09-29"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.w3.org/2006/timezone-world#NA2006DLS> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#EnumeratedDaylightSavingsPolicy> .
<http://www.w3.org/2006/timezone-world#NA2006DLS> <http://www.w3.org/2006/timezone#DLSstartDate> "2006-09-03"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.w3.org/2006/timezone-world#NA2006DLS> <http://www.w3.org/2006/timezone#DLSendDate> "2006-04-02"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.w3.org/2006/timezone-world#PK2006DLS> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#EnumeratedDaylightSavingsPolicy> .
<http://www.w3.org/2006/timezone-world#PK2006DLS> <http://www.w3.org/2006/timezone#DLSstartDate> "2006-04-21"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.w3.org/2006/timezone-world#PK2006DLS> <http://www.w3.org/2006/timezone#DLSendDate> "2006-10-20"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.w3.org/2006/timezone-world#SY2006DLS> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#EnumeratedDaylightSavingsPolicy> .
<http://www.w3.org/2006/timezone-world#SY2006DLS> <http://www.w3.org/2006/timezone#DLSstartDate> "2006-03-31"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.w3.org/2006/timezone-world#SY2006DLS> <http://www.w3.org/2006/timezone#DLSendDate> "2006-10-29"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.w3.org/2006/timezone-world#CL2006DLS> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#EnumeratedDaylightSavingsPolicy> .
<http://www.w3.org/2006/timezone-world#CL2006DLS> <http://www.w3.org/2006/timezone#DLSstartDate> "2006-10-15"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.w3.org/2006/timezone-world#CL2006DLS> <http://www.w3.org/2006/timezone#DLSendDate> "2006-03-12"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.w3.org/2006/timezone-world#CLE2006DLS> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#EnumeratedDaylightSavingsPolicy> .
<http://www.w3.org/2006/timezone-world#CLE2006DLS> <http://www.w3.org/2006/timezone#DLSstartDate> "2006-10-14"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.w3.org/2006/timezone-world#CLE2006DLS> <http://www.w3.org/2006/timezone#DLSendDate> "2006-03-11"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.w3.org/2006/timezone-world#NZ2006DLS> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#EnumeratedDaylightSavingsPolicy> .
<http://www.w3.org/2006/timezone-world#NZ2006DLS> <http://www.w3.org/2006/timezone#DLSstartDate> "2006-10-01"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.w3.org/2006/timezone-world#NZ2006DLS> <http://www.w3.org/2006/timezone#DLSendDate> "2006-03-19"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.w3.org/2006/timezone-world#PY2006DLS> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#EnumeratedDaylightSavingsPolicy> .
<http://www.w3.org/2006/timezone-world#PY2006DLS> <http://www.w3.org/2006/timezone#DLSstartDate> "2006-10-15"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.w3.org/2006/timezone-world#PY2006DLS> <http://www.w3.org/2006/timezone#DLSendDate> "2006-03-12"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.w3.org/2006/timezone-world#FK2006DLS> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#EnumeratedDaylightSavingsPolicy> .
<http://www.w3.org/2006/timezone-world#FK2006DLS> <http://www.w3.org/2006/timezone#DLSstartDate> "2006-09-03"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.w3.org/2006/timezone-world#FK2006DLS> <http://www.w3.org/2006/timezone#DLSendDate> "2006-04-16"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://www.daml.org/2001/09/countries/iso#VN> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#VN> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#GTZ> .
<http://www.daml.org/2001/09/countries/iso#VN> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#VI> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#VI> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#QTZ> .
<http://www.daml.org/2001/09/countries/iso#VI> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#VG> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#VG> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#QTZ> .
<http://www.daml.org/2001/09/countries/iso#VG> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#VE> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#VE> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#QTZ> .
<http://www.daml.org/2001/09/countries/iso#VE> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#VC> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#VC> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#QTZ> .
<http://www.daml.org/2001/09/countries/iso#VC> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#VA> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#VA> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#VA> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#IT> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#IT> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#IT> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#IT> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#EU2006DLS> .
<http://www.daml.org/2001/09/countries/iso#IS> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#IS> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ZTZ> .
<http://www.daml.org/2001/09/countries/iso#IS> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#IR> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#IR> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#C1TZ> .
<http://www.daml.org/2001/09/countries/iso#IR> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#IR> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#IR2006DLS> .
<http://www.daml.org/2001/09/countries/iso#IQ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#IQ> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#CTZ> .
<http://www.daml.org/2001/09/countries/iso#IQ> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#IQ> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#IQ2006DLS> .
<http://www.daml.org/2001/09/countries/iso#IO> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#IO> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ETZ> .
<http://www.daml.org/2001/09/countries/iso#IO> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#UZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#UZ> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ETZ> .
<http://www.daml.org/2001/09/countries/iso#UZ> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#IN> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#IN> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#E1TZ> .
<http://www.daml.org/2001/09/countries/iso#IN> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#UY> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#UY> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#UTZ> .
<http://www.daml.org/2001/09/countries/iso#UY> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#IL> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#IL> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#PTZ> .
<http://www.daml.org/2001/09/countries/iso#IL> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#IL> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#IL2006DLS> .
<http://www.daml.org/2001/09/countries/iso#US> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#US> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#USA2006DLS> .
<http://www.w3.org/2006/timezone-world#USGuam> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#State> .
<http://www.w3.org/2006/timezone-world#USGuam> <http://www.w3.org/2006/timezone#name> "Guang"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#USGuam> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#US> .
<http://www.w3.org/2006/timezone-world#USGuam> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#LTZ> .
<http://www.daml.org/2001/09/countries/iso#IE> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#IE> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ZTZ> .
<http://www.daml.org/2001/09/countries/iso#IE> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#IE> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#EU2006DLS> .
<http://www.daml.org/2001/09/countries/iso#ID> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#ID> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#UM> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#UM> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#WTZ> .
<http://www.daml.org/2001/09/countries/iso#UM> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#UM> <http://www.w3.org/2006/timezone#exceptionalRegion> <http://www.w3.org/2006/timezone-world#UMNavassaIsland> .
<http://www.daml.org/2001/09/countries/iso#UM> <http://www.w3.org/2006/timezone#exceptionalRegion> <http://www.w3.org/2006/timezone-world#UMWakeIsland> .
<http://www.w3.org/2006/timezone-world#UMNavassaIsland> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Region> .
<http://www.w3.org/2006/timezone-world#UMNavassaIsland> <http://www.w3.org/2006/timezone#name> "Navassa Island"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#UMNavassaIsland> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#UM> .
<http://www.w3.org/2006/timezone-world#UMNavassaIsland> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#RTZ> .
<http://www.w3.org/2006/timezone-world#UMWakeIsland> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Region> .
<http://www.w3.org/2006/timezone-world#UMWakeIsland> <http://www.w3.org/2006/timezone#name> "Wake Island"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#UMWakeIsland> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#UM> .
<http://www.w3.org/2006/timezone-world#UMWakeIsland> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#XTZ> .
<http://www.daml.org/2001/09/countries/iso#UG> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#UG> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#CTZ> .
<http://www.daml.org/2001/09/countries/iso#UG> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#HU> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#HU> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#HU> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#HU> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#EU2006DLS> .
<http://www.daml.org/2001/09/countries/iso#UA> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#UA> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#BTZ> .
<http://www.daml.org/2001/09/countries/iso#UA> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#UA> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#EU2006DLS> .
<http://www.daml.org/2001/09/countries/iso#HT> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#HT> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#RTZ> .
<http://www.daml.org/2001/09/countries/iso#HT> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#HR> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#HR> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#HR> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#HR> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#EU2006DLS> .
<http://www.daml.org/2001/09/countries/iso#TZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#TZ> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#CTZ> .
<http://www.daml.org/2001/09/countries/iso#TZ> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#HN> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#HN> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#STZ> .
<http://www.daml.org/2001/09/countries/iso#HN> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#HM> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#HM> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ETZ> .
<http://www.daml.org/2001/09/countries/iso#HM> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#TW> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#TW> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#HTZ> .
<http://www.daml.org/2001/09/countries/iso#TW> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#HK> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#HK> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#HTZ> .
<http://www.daml.org/2001/09/countries/iso#HK> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#TV> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#TV> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#MTZ> .
<http://www.daml.org/2001/09/countries/iso#TV> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#TT> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#TT> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#QTZ> .
<http://www.daml.org/2001/09/countries/iso#TT> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#TR> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#TR> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#BTZ> .
<http://www.daml.org/2001/09/countries/iso#TR> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#TR> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#EU2006DLS> .
<http://www.daml.org/2001/09/countries/iso#TO> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#TO> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#M1TZ> .
<http://www.daml.org/2001/09/countries/iso#TO> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#TN> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#TN> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#TN> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#TM> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#TM> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ETZ> .
<http://www.daml.org/2001/09/countries/iso#TM> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#TL> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#TL> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ITZ> .
<http://www.daml.org/2001/09/countries/iso#TL> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#TK> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#TK> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#WTZ> .
<http://www.daml.org/2001/09/countries/iso#TK> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#TJ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#TJ> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#FTZ> .
<http://www.daml.org/2001/09/countries/iso#TJ> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#TH> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#TH> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#GTZ> .
<http://www.daml.org/2001/09/countries/iso#TH> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#TG> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#TG> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ZTZ> .
<http://www.daml.org/2001/09/countries/iso#TG> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#TF> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#TF> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ETZ> .
<http://www.daml.org/2001/09/countries/iso#TF> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#TF> <http://www.w3.org/2006/timezone#exceptionalRegion> <http://www.w3.org/2006/timezone-world#TFIleCrozet> .
<http://www.w3.org/2006/timezone-world#TFIleCrozet> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Region> .
<http://www.w3.org/2006/timezone-world#TFIleCrozet> <http://www.w3.org/2006/timezone#name> "Ile Crozet"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#TFIleCrozet> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#TF> .
<http://www.w3.org/2006/timezone-world#TFIleCrozet> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#DTZ> .
<http://www.daml.org/2001/09/countries/iso#GY> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#GY> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#PTZ> .
<http://www.daml.org/2001/09/countries/iso#GY> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#TD> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#TD> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#TD> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#GW> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#GW> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ZTZ> .
<http://www.daml.org/2001/09/countries/iso#GW> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#TC> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#TC> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#RTZ> .
<http://www.daml.org/2001/09/countries/iso#TC> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#TC> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#USA2006DLS> .
<http://www.daml.org/2001/09/countries/iso#GU> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#GU> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#KTZ> .
<http://www.daml.org/2001/09/countries/iso#GU> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#GT> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#GT> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#STZ> .
<http://www.daml.org/2001/09/countries/iso#GT> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#GS> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#GS> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#OTZ> .
<http://www.daml.org/2001/09/countries/iso#GS> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#GR> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#GR> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#BTZ> .
<http://www.daml.org/2001/09/countries/iso#GR> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#GR> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#EU2006DLS> .
<http://www.daml.org/2001/09/countries/iso#GQ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#GQ> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#GQ> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#GP> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#GP> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#QTZ> .
<http://www.daml.org/2001/09/countries/iso#GP> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#SZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#SZ> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#BTZ> .
<http://www.daml.org/2001/09/countries/iso#SZ> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#GN> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#GN> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ZTZ> .
<http://www.daml.org/2001/09/countries/iso#GN> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#SY> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#SY> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#BTZ> .
<http://www.daml.org/2001/09/countries/iso#SY> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#SY> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#SY2006DLS> .
<http://www.daml.org/2001/09/countries/iso#GM> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#GM> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ZTZ> .
<http://www.daml.org/2001/09/countries/iso#GM> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#GL> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#GL> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#PTZ> .
<http://www.daml.org/2001/09/countries/iso#GL> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#GL> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#EU2006DLS> .
<http://www.daml.org/2001/09/countries/iso#GL> <http://www.w3.org/2006/timezone#exceptionalRegion> <http://www.w3.org/2006/timezone-world#GLScoresbysundCity> .
<http://www.daml.org/2001/09/countries/iso#GL> <http://www.w3.org/2006/timezone#exceptionalRegion> <http://www.w3.org/2006/timezone-world#GLThuleCity> .
<http://www.w3.org/2006/timezone-world#GLScoresbysundCity> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#City> .
<http://www.w3.org/2006/timezone-world#GLScoresbysundCity> <http://www.w3.org/2006/timezone#name> "Scoresbysund City"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#GLScoresbysundCity> <http://www.w3.org/2006/timezone#countryOf> <http://www.daml.org/2001/09/countries/iso#GL> .
<http://www.w3.org/2006/timezone-world#GLScoresbysundCity> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#NTZ> .
<http://www.w3.org/2006/timezone-world#GLThuleCity> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#City> .
<http://www.w3.org/2006/timezone-world#GLThuleCity> <http://www.w3.org/2006/timezone#name> "Thule City"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#GLThuleCity> <http://www.w3.org/2006/timezone#countryOf> <http://www.daml.org/2001/09/countries/iso#GL> .
<http://www.w3.org/2006/timezone-world#GLThuleCity> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#QTZ> .
<http://www.daml.org/2001/09/countries/iso#SV> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#SV> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#STZ> .
<http://www.daml.org/2001/09/countries/iso#SV> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#GI> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#GI> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#GI> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#GI> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#EU2006DLS> .
<http://www.daml.org/2001/09/countries/iso#ST> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#ST> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ZTZ> .
<http://www.daml.org/2001/09/countries/iso#ST> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#GH> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#GH> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ZTZ> .
<http://www.daml.org/2001/09/countries/iso#GH> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#SR> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#SR> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#PTZ> .
<http://www.daml.org/2001/09/countries/iso#SR> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#GF> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#GF> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#PTZ> .
<http://www.daml.org/2001/09/countries/iso#GF> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#GE> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#GE> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#DTZ> .
<http://www.daml.org/2001/09/countries/iso#GE> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#GE> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#RU2006DLS> .
<http://www.daml.org/2001/09/countries/iso#GD> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#GD> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#QTZ> .
<http://www.daml.org/2001/09/countries/iso#GD> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#SO> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#SO> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#CTZ> .
<http://www.daml.org/2001/09/countries/iso#SO> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#SN> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#SN> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ZTZ> .
<http://www.daml.org/2001/09/countries/iso#SN> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#GB> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#GB> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ZTZ> .
<http://www.daml.org/2001/09/countries/iso#GB> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#GB> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#EU2006DLS> .
<http://www.daml.org/2001/09/countries/iso#SM> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#SM> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#SM> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#GA> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#GA> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#GA> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#SL> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#SL> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ZTZ> .
<http://www.daml.org/2001/09/countries/iso#SL> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#SK> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#SK> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#SK> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#SK> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#EU2006DLS> .
<http://www.daml.org/2001/09/countries/iso#SJ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#SJ> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#SJ> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#SI> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#SI> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#SI> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#SH> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#SH> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ZTZ> .
<http://www.daml.org/2001/09/countries/iso#SH> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#SG> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#SG> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#HTZ> .
<http://www.daml.org/2001/09/countries/iso#SG> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#SE> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#SE> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#SE> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#SE> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#EU2006DLS> .
<http://www.daml.org/2001/09/countries/iso#SD> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#SD> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#BTZ> .
<http://www.daml.org/2001/09/countries/iso#SD> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#SC> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#SC> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#DTZ> .
<http://www.daml.org/2001/09/countries/iso#SC> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#SB> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#SB> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#LTZ> .
<http://www.daml.org/2001/09/countries/iso#SB> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#SA> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#SA> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#CTZ> .
<http://www.daml.org/2001/09/countries/iso#SA> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#FR> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#FR> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#FR> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#FR> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#EU2006DLS> .
<http://www.daml.org/2001/09/countries/iso#FO> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#FO> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ZTZ> .
<http://www.daml.org/2001/09/countries/iso#FO> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#FO> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#EU2006DLS> .
<http://www.daml.org/2001/09/countries/iso#FM> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#FM> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.w3.org/2006/timezone-world#FMKosrae> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#State> .
<http://www.w3.org/2006/timezone-world#FMKosrae> <http://www.w3.org/2006/timezone#name> "Kosrae"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#FMKosrae> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#FM> .
<http://www.w3.org/2006/timezone-world#FMKosrae> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#MTZ> .
<http://www.w3.org/2006/timezone-world#FMKosrae> <http://www.w3.org/2006/timezone#exceptionalRegion> <http://www.w3.org/2006/timezone-world#FMKosraeKwajalein> .
<http://www.w3.org/2006/timezone-world#FMKosraeKwajalein> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Region> .
<http://www.w3.org/2006/timezone-world#FMKosraeKwajalein> <http://www.w3.org/2006/timezone#name> "Kwajalein"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#FMKosraeKwajalein> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.w3.org/2006/timezone-world#FMKosrae> .
<http://www.w3.org/2006/timezone-world#FMKosraeKwajalein> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#YTZ> .
<http://www.w3.org/2006/timezone-world#FMPohnpei> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#State> .
<http://www.w3.org/2006/timezone-world#FMPohnpei> <http://www.w3.org/2006/timezone#name> "Pohnpei"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#FMPohnpei> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#FM> .
<http://www.w3.org/2006/timezone-world#FMPohnpei> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#MTZ> .
<http://www.w3.org/2006/timezone-world#FMYap> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#State> .
<http://www.w3.org/2006/timezone-world#FMYap> <http://www.w3.org/2006/timezone#name> "Yap"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#FMYap> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#FM> .
<http://www.w3.org/2006/timezone-world#FMYap> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#LTZ> .
<http://www.w3.org/2006/timezone-world#FMChuuk> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#State> .
<http://www.w3.org/2006/timezone-world#FMChuuk> <http://www.w3.org/2006/timezone#name> "Chuuk"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#FMChuuk> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#FM> .
<http://www.w3.org/2006/timezone-world#FMChuuk> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#LTZ> .
<http://www.daml.org/2001/09/countries/iso#RW> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#RW> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#BTZ> .
<http://www.daml.org/2001/09/countries/iso#RW> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#FK> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#FK> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#QTZ> .
<http://www.daml.org/2001/09/countries/iso#FK> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#FK> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#FK2006DLS> .
<http://www.daml.org/2001/09/countries/iso#FJ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#FJ> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#MTZ> .
<http://www.daml.org/2001/09/countries/iso#FJ> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#RU> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#RU> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#RU> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#RU2006DLS> .
<http://www.daml.org/2001/09/countries/iso#FI> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#FI> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#BTZ> .
<http://www.daml.org/2001/09/countries/iso#FI> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#FI> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#EU2006DLS> .
<http://www.daml.org/2001/09/countries/iso#RO> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#RO> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#BTZ> .
<http://www.daml.org/2001/09/countries/iso#RO> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#RO> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#EU2006DLS> .
<http://www.daml.org/2001/09/countries/iso#RE> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#RE> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#DTZ> .
<http://www.daml.org/2001/09/countries/iso#RE> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#ET> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#ET> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#CTZ> .
<http://www.daml.org/2001/09/countries/iso#ET> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#ES> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#ES> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#ES> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#ES> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#EU2006DLS> .
<http://www.daml.org/2001/09/countries/iso#ES> <http://www.w3.org/2006/timezone#exceptionalRegion> <http://www.w3.org/2006/timezone-world#ESCanary> .
<http://www.w3.org/2006/timezone-world#ESCanary> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#State> .
<http://www.w3.org/2006/timezone-world#ESCanary> <http://www.w3.org/2006/timezone#name> "Canary Islands"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#ESCanary> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#ES> .
<http://www.w3.org/2006/timezone-world#ESCanary> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ZTZ> .
<http://www.daml.org/2001/09/countries/iso#ER> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#ER> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#CTZ> .
<http://www.daml.org/2001/09/countries/iso#ER> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#EH> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#EH> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ZTZ> .
<http://www.daml.org/2001/09/countries/iso#EH> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#EG> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#EG> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#BTZ> .
<http://www.daml.org/2001/09/countries/iso#EG> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#EG> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#EG2006DLS> .
<http://www.daml.org/2001/09/countries/iso#EE> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#EE> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#BTZ> .
<http://www.daml.org/2001/09/countries/iso#EE> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#EE> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#EU2006DLS> .
<http://www.daml.org/2001/09/countries/iso#EC> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#EC> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#RTZ> .
<http://www.daml.org/2001/09/countries/iso#EC> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#EC> <http://www.w3.org/2006/timezone#exceptionalRegion> <http://www.w3.org/2006/timezone-world#ECGalapagos> .
<http://www.w3.org/2006/timezone-world#ECGalapagos> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#State> .
<http://www.w3.org/2006/timezone-world#ECGalapagos> <http://www.w3.org/2006/timezone#name> "Galapagos"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#ECGalapagos> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#EC> .
<http://www.w3.org/2006/timezone-world#ECGalapagos> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#STZ> .
<http://www.daml.org/2001/09/countries/iso#DZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#DZ> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#DZ> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#QA> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#QA> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#CTZ> .
<http://www.daml.org/2001/09/countries/iso#QA> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#DO> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#DO> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#QTZ> .
<http://www.daml.org/2001/09/countries/iso#DO> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#PY> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#PY> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#QTZ> .
<http://www.daml.org/2001/09/countries/iso#PY> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#DM> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#DM> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#QTZ> .
<http://www.daml.org/2001/09/countries/iso#DM> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#PW> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#PW> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ITZ> .
<http://www.daml.org/2001/09/countries/iso#PW> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#DK> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#DK> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#DK> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#DK> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#EU2006DLS> .
<http://www.daml.org/2001/09/countries/iso#DJ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#DJ> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#CTZ> .
<http://www.daml.org/2001/09/countries/iso#DJ> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#PT> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#PT> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#PT> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#PT> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#EU2006DLS> .
<http://www.daml.org/2001/09/countries/iso#PT> <http://www.w3.org/2006/timezone#exceptionalRegion> <http://www.w3.org/2006/timezone-world#PTAzores> .
<http://www.daml.org/2001/09/countries/iso#PT> <http://www.w3.org/2006/timezone#exceptionalRegion> <http://www.w3.org/2006/timezone-world#PTMadeira> .
<http://www.w3.org/2006/timezone-world#PTAzores> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#State> .
<http://www.w3.org/2006/timezone-world#PTAzores> <http://www.w3.org/2006/timezone#name> "Azores"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#PTAzores> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#PT> .
<http://www.w3.org/2006/timezone-world#PTAzores> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#NTZ> .
<http://www.w3.org/2006/timezone-world#PTMadeira> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#State> .
<http://www.w3.org/2006/timezone-world#PTMadeira> <http://www.w3.org/2006/timezone#name> "Madeira"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#PTMadeira> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#PT> .
<http://www.w3.org/2006/timezone-world#PTMadeira> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ZTZ> .
<http://www.daml.org/2001/09/countries/iso#PS> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#PS> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#BTZ> .
<http://www.daml.org/2001/09/countries/iso#PS> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#PR> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#PR> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#QTZ> .
<http://www.daml.org/2001/09/countries/iso#PR> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#DE> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#DE> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#DE> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#DE> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#EU2006DLS> .
<http://www.daml.org/2001/09/countries/iso#PN> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#PN> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#UTZ> .
<http://www.daml.org/2001/09/countries/iso#PN> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#PM> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#PM> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#PTZ> .
<http://www.daml.org/2001/09/countries/iso#PM> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#PL> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#PL> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#PL> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#PL> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#EU2006DLS> .
<http://www.daml.org/2001/09/countries/iso#PK> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#PK> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ETZ> .
<http://www.daml.org/2001/09/countries/iso#PK> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#PK> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#PK2006DLS> .
<http://www.daml.org/2001/09/countries/iso#PH> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#PH> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#HTZ> .
<http://www.daml.org/2001/09/countries/iso#PH> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#PG> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#PG> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#KTZ> .
<http://www.daml.org/2001/09/countries/iso#PG> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#CZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#CZ> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#CZ> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#CZ> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#EU2006DLS> .
<http://www.daml.org/2001/09/countries/iso#PF> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#PF> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#WTZ> .
<http://www.daml.org/2001/09/countries/iso#PF> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#PF> <http://www.w3.org/2006/timezone#exceptionalRegion> <http://www.w3.org/2006/timezone-world#PFGambierIsland> .
<http://www.daml.org/2001/09/countries/iso#PF> <http://www.w3.org/2006/timezone#exceptionalRegion> <http://www.w3.org/2006/timezone-world#PFMarquesasIsland> .
<http://www.w3.org/2006/timezone-world#PFGambierIsland> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Region> .
<http://www.w3.org/2006/timezone-world#PFGambierIsland> <http://www.w3.org/2006/timezone#name> "Gambier Island"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#PFGambierIsland> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#PF> .
<http://www.w3.org/2006/timezone-world#PFGambierIsland> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#VTZ> .
<http://www.w3.org/2006/timezone-world#PFMarquesasIsland> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Region> .
<http://www.w3.org/2006/timezone-world#PFMarquesasIsland> <http://www.w3.org/2006/timezone#name> "Marquesas Island"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#PFMarquesasIsland> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#PF> .
<http://www.w3.org/2006/timezone-world#PFMarquesasIsland> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#V1TZ> .
<http://www.daml.org/2001/09/countries/iso#PE> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#PE> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#RTZ> .
<http://www.daml.org/2001/09/countries/iso#PE> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#CY> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#CY> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#BTZ> .
<http://www.daml.org/2001/09/countries/iso#CY> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#CY> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#EU2006DLS> .
<http://www.daml.org/2001/09/countries/iso#CX> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#CX> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#WTZ> .
<http://www.daml.org/2001/09/countries/iso#CX> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#CV> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#CV> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#NTZ> .
<http://www.daml.org/2001/09/countries/iso#CV> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#CU> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#CU> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#RTZ> .
<http://www.daml.org/2001/09/countries/iso#CU> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#CU> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#USA2006DLS> .
<http://www.daml.org/2001/09/countries/iso#PA> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#PA> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#RTZ> .
<http://www.daml.org/2001/09/countries/iso#PA> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#CR> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#CR> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#STZ> .
<http://www.daml.org/2001/09/countries/iso#CR> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#CO> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#CO> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#RTZ> .
<http://www.daml.org/2001/09/countries/iso#CO> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#CN> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#CN> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#HTZ> .
<http://www.daml.org/2001/09/countries/iso#CN> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#CM> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#CM> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#CM> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#CL> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#CL> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#QTZ> .
<http://www.daml.org/2001/09/countries/iso#CL> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#CL> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#CL2006DLS> .
<http://www.daml.org/2001/09/countries/iso#CL> <http://www.w3.org/2006/timezone#exceptionalRegion> <http://www.w3.org/2006/timezone-world#CLEasterIsland> .
<http://www.w3.org/2006/timezone-world#CLEasterIsland> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Region> .
<http://www.w3.org/2006/timezone-world#CLEasterIsland> <http://www.w3.org/2006/timezone#name> "Easter Island"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CLEasterIsland> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#CL> .
<http://www.w3.org/2006/timezone-world#CLEasterIsland> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#STZ> .
<http://www.w3.org/2006/timezone-world#CLEasterIsland> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#CLE2006DLS> .
<http://www.daml.org/2001/09/countries/iso#CK> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#CK> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#WTZ> .
<http://www.daml.org/2001/09/countries/iso#CK> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#CI> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#CI> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ZTZ> .
<http://www.daml.org/2001/09/countries/iso#CI> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#CH> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#CH> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#CH> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#CH> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#EU2006DLS> .
<http://www.daml.org/2001/09/countries/iso#CG> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#CG> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#CG> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#CF> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#CF> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#CF> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#CD> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#CD> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.w3.org/2006/timezone-world#CDBandundu> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#State> .
<http://www.w3.org/2006/timezone-world#CDBandundu> <http://www.w3.org/2006/timezone#name> "Bandundu"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CDBandundu> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#CD> .
<http://www.w3.org/2006/timezone-world#CDBandundu> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.w3.org/2006/timezone-world#CDBasCongo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#State> .
<http://www.w3.org/2006/timezone-world#CDBasCongo> <http://www.w3.org/2006/timezone#name> "Bas-Congo"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CDBasCongo> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#CD> .
<http://www.w3.org/2006/timezone-world#CDBasCongo> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.w3.org/2006/timezone-world#CDEquateur> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#State> .
<http://www.w3.org/2006/timezone-world#CDEquateur> <http://www.w3.org/2006/timezone#name> "Equateur"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CDEquateur> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#CD> .
<http://www.w3.org/2006/timezone-world#CDEquateur> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.w3.org/2006/timezone-world#CDKinshasaCity> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#City> .
<http://www.w3.org/2006/timezone-world#CDKinshasaCity> <http://www.w3.org/2006/timezone#name> "Kinshasa City"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CDKinshasaCity> <http://www.w3.org/2006/timezone#countryOf> <http://www.daml.org/2001/09/countries/iso#CD> .
<http://www.w3.org/2006/timezone-world#CDKinshasaCity> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.w3.org/2006/timezone-world#CDKasaiOccidental> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#State> .
<http://www.w3.org/2006/timezone-world#CDKasaiOccidental> <http://www.w3.org/2006/timezone#name> "Kasai-Occidental"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CDKasaiOccidental> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#CD> .
<http://www.w3.org/2006/timezone-world#CDKasaiOccidental> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#BTZ> .
<http://www.w3.org/2006/timezone-world#CDKasaiOriental> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#State> .
<http://www.w3.org/2006/timezone-world#CDKasaiOriental> <http://www.w3.org/2006/timezone#name> "Kasai-Oriental"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CDKasaiOriental> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#CD> .
<http://www.w3.org/2006/timezone-world#CDKasaiOriental> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#BTZ> .
<http://www.w3.org/2006/timezone-world#CDKatanga> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#State> .
<http://www.w3.org/2006/timezone-world#CDKatanga> <http://www.w3.org/2006/timezone#name> "Katanga"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CDKatanga> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#CD> .
<http://www.w3.org/2006/timezone-world#CDKatanga> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#BTZ> .
<http://www.w3.org/2006/timezone-world#CDManiema> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#State> .
<http://www.w3.org/2006/timezone-world#CDManiema> <http://www.w3.org/2006/timezone#name> "Maniema"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CDManiema> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#CD> .
<http://www.w3.org/2006/timezone-world#CDManiema> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#BTZ> .
<http://www.w3.org/2006/timezone-world#CDNordKivu> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#State> .
<http://www.w3.org/2006/timezone-world#CDNordKivu> <http://www.w3.org/2006/timezone#name> "Nord-Kivu"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CDNordKivu> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#CD> .
<http://www.w3.org/2006/timezone-world#CDNordKivu> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#BTZ> .
<http://www.w3.org/2006/timezone-world#CDOrientale> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#State> .
<http://www.w3.org/2006/timezone-world#CDOrientale> <http://www.w3.org/2006/timezone#name> "Orientale"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CDOrientale> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#CD> .
<http://www.w3.org/2006/timezone-world#CDOrientale> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#BTZ> .
<http://www.w3.org/2006/timezone-world#CDSudKivu> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#State> .
<http://www.w3.org/2006/timezone-world#CDSudKivu> <http://www.w3.org/2006/timezone#name> "Sud-Kivu"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CDSudKivu> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#CD> .
<http://www.w3.org/2006/timezone-world#CDSudKivu> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#BTZ> .
<http://www.daml.org/2001/09/countries/iso#CC> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#CC> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#F1TZ> .
<http://www.daml.org/2001/09/countries/iso#CC> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#OM> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#OM> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#DTZ> .
<http://www.daml.org/2001/09/countries/iso#OM> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#CA> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#CA> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#USA2006DLS> .
<http://www.w3.org/2006/timezone-world#CAAB> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#State> .
<http://www.w3.org/2006/timezone-world#CAAB> <http://www.w3.org/2006/timezone#name> "Alberta"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CAAB> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#CA> .
<http://www.w3.org/2006/timezone-world#CAAB> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#TTZ> .
<http://www.w3.org/2006/timezone-world#CAAB> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.w3.org/2006/timezone-world#CABC> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#State> .
<http://www.w3.org/2006/timezone-world#CABC> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#CA> .
<http://www.w3.org/2006/timezone-world#CABC> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#UTZ> .
<http://www.w3.org/2006/timezone-world#CABC> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.w3.org/2006/timezone-world#CABC> <http://www.w3.org/2006/timezone#exceptionalRegion> <http://www.w3.org/2006/timezone-world#CABCCranbrookCity> .
<http://www.w3.org/2006/timezone-world#CABC> <http://www.w3.org/2006/timezone#exceptionalRegion> <http://www.w3.org/2006/timezone-world#CABCGoldenCity> .
<http://www.w3.org/2006/timezone-world#CABC> <http://www.w3.org/2006/timezone#exceptionalRegion> <http://www.w3.org/2006/timezone-world#CABCInvermereCity> .
<http://www.w3.org/2006/timezone-world#CABC> <http://www.w3.org/2006/timezone#exceptionalRegion> <http://www.w3.org/2006/timezone-world#CABCDawsonCreekCity> .
<http://www.w3.org/2006/timezone-world#CABC> <http://www.w3.org/2006/timezone#exceptionalRegion> <http://www.w3.org/2006/timezone-world#CABCFortStJohnCity> .
<http://www.w3.org/2006/timezone-world#CABCCranbrookCity> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#City> .
<http://www.w3.org/2006/timezone-world#CABCCranbrookCity> <http://www.w3.org/2006/timezone#name> "Cranbrook City"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CABCCranbrookCity> <http://www.w3.org/2006/timezone#stateOf> <http://www.w3.org/2006/timezone-world#CABC> .
<http://www.w3.org/2006/timezone-world#CABCCranbrookCity> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#TTZ> .
<http://www.w3.org/2006/timezone-world#CABCGoldenCity> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#City> .
<http://www.w3.org/2006/timezone-world#CABCGoldenCity> <http://www.w3.org/2006/timezone#name> "Golden City"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CABCGoldenCity> <http://www.w3.org/2006/timezone#stateOf> <http://www.w3.org/2006/timezone-world#CABC> .
<http://www.w3.org/2006/timezone-world#CABCGoldenCity> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#TTZ> .
<http://www.w3.org/2006/timezone-world#CABCInvermereCity> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#City> .
<http://www.w3.org/2006/timezone-world#CABCInvermereCity> <http://www.w3.org/2006/timezone#name> "Invermere City"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CABCInvermereCity> <http://www.w3.org/2006/timezone#stateOf> <http://www.w3.org/2006/timezone-world#CABC> .
<http://www.w3.org/2006/timezone-world#CABCInvermereCity> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#TTZ> .
<http://www.w3.org/2006/timezone-world#CABCDawsonCreekCity> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#City> .
<http://www.w3.org/2006/timezone-world#CABCDawsonCreekCity> <http://www.w3.org/2006/timezone#name> "Dawson Creek City"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CABCDawsonCreekCity> <http://www.w3.org/2006/timezone#stateOf> <http://www.w3.org/2006/timezone-world#CABC> .
<http://www.w3.org/2006/timezone-world#CABCDawsonCreekCity> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#TTZ> .
<http://www.w3.org/2006/timezone-world#CABCDawsonCreekCity> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.w3.org/2006/timezone-world#CABCFortStJohnCity> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#City> .
<http://www.w3.org/2006/timezone-world#CABCFortStJohnCity> <http://www.w3.org/2006/timezone#name> "Fort St. John City"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CABCFortStJohnCity> <http://www.w3.org/2006/timezone#stateOf> <http://www.w3.org/2006/timezone-world#CABC> .
<http://www.w3.org/2006/timezone-world#CABCFortStJohnCity> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#TTZ> .
<http://www.w3.org/2006/timezone-world#CABCFortStJohnCity> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.w3.org/2006/timezone-world#CAMB> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#State> .
<http://www.w3.org/2006/timezone-world#CAMB> <http://www.w3.org/2006/timezone#name> "Manitoba"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CAMB> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#CA> .
<http://www.w3.org/2006/timezone-world#CAMB> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#STZ> .
<http://www.w3.org/2006/timezone-world#CAMB> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.w3.org/2006/timezone-world#CANB> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#State> .
<http://www.w3.org/2006/timezone-world#CANB> <http://www.w3.org/2006/timezone#name> "New Brunswick"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CANB> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#CA> .
<http://www.w3.org/2006/timezone-world#CANB> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#QTZ> .
<http://www.w3.org/2006/timezone-world#CANB> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.w3.org/2006/timezone-world#CANF> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#State> .
<http://www.w3.org/2006/timezone-world#CANF> <http://www.w3.org/2006/timezone#name> "Newfoundland"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CANF> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#CA> .
<http://www.w3.org/2006/timezone-world#CANF> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#P1TZ> .
<http://www.w3.org/2006/timezone-world#CANF> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.w3.org/2006/timezone-world#CANT> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#State> .
<http://www.w3.org/2006/timezone-world#CANT> <http://www.w3.org/2006/timezone#name> "Northwest Territories"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CANT> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#CA> .
<http://www.w3.org/2006/timezone-world#CANT> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#TTZ> .
<http://www.w3.org/2006/timezone-world#CANT> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.w3.org/2006/timezone-world#CANS> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#State> .
<http://www.w3.org/2006/timezone-world#CANS> <http://www.w3.org/2006/timezone#name> "Nova Scotia"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CANS> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#CA> .
<http://www.w3.org/2006/timezone-world#CANS> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#QTZ> .
<http://www.w3.org/2006/timezone-world#CANS> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.w3.org/2006/timezone-world#CANU> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#State> .
<http://www.w3.org/2006/timezone-world#CANU> <http://www.w3.org/2006/timezone#name> "Nunavut"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CANU> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#CA> .
<http://www.w3.org/2006/timezone-world#CANU> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#STZ> .
<http://www.w3.org/2006/timezone-world#CANU> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.w3.org/2006/timezone-world#CAON> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#State> .
<http://www.w3.org/2006/timezone-world#CAON> <http://www.w3.org/2006/timezone#name> "Ontario"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CAON> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#CA> .
<http://www.w3.org/2006/timezone-world#CAON> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#RTZ> .
<http://www.w3.org/2006/timezone-world#CAON> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.w3.org/2006/timezone-world#CAON> <http://www.w3.org/2006/timezone#exceptionalRegion> <http://www.w3.org/2006/timezone-world#CAONBigTroutLakeCity> .
<http://www.w3.org/2006/timezone-world#CAON> <http://www.w3.org/2006/timezone#exceptionalRegion> <http://www.w3.org/2006/timezone-world#CAONAtilokanCity> .
<http://www.w3.org/2006/timezone-world#CAONBigTroutLakeCity> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#City> .
<http://www.w3.org/2006/timezone-world#CAONBigTroutLakeCity> <http://www.w3.org/2006/timezone#name> "Big Trout Lake City"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CAONBigTroutLakeCity> <http://www.w3.org/2006/timezone#stateOf> <http://www.w3.org/2006/timezone-world#CAON> .
<http://www.w3.org/2006/timezone-world#CAONBigTroutLakeCity> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#STZ> .
<http://www.w3.org/2006/timezone-world#CAONAtilokanCity> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#City> .
<http://www.w3.org/2006/timezone-world#CAONAtilokanCity> <http://www.w3.org/2006/timezone#name> "Atilokan City"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CAONAtilokanCity> <http://www.w3.org/2006/timezone#stateOf> <http://www.w3.org/2006/timezone-world#CAON> .
<http://www.w3.org/2006/timezone-world#CAONAtilokanCity> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.w3.org/2006/timezone-world#CAPE> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#State> .
<http://www.w3.org/2006/timezone-world#CAPE> <http://www.w3.org/2006/timezone#name> "Prince Edward Isl"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CAPE> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#CA> .
<http://www.w3.org/2006/timezone-world#CAPE> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#QTZ> .
<http://www.w3.org/2006/timezone-world#CAPE> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.w3.org/2006/timezone-world#CAQC> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#State> .
<http://www.w3.org/2006/timezone-world#CAQC> <http://www.w3.org/2006/timezone#name> "Quebec"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CAQC> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#CA> .
<http://www.w3.org/2006/timezone-world#CAQC> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#RTZ> .
<http://www.w3.org/2006/timezone-world#CAQC> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.w3.org/2006/timezone-world#CAQC> <http://www.w3.org/2006/timezone#exceptionalRegion> <http://www.w3.org/2006/timezone-world#CAQCQTZ> .
<http://www.w3.org/2006/timezone-world#CAQCQTZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Region> .
<http://www.w3.org/2006/timezone-world#CAQCQTZ> <http://www.w3.org/2006/timezone#name> "Quebec QTZ Part"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CAQCQTZ> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.w3.org/2006/timezone-world#CAQC> .
<http://www.w3.org/2006/timezone-world#CAQCQTZ> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#QTZ> .
<http://www.w3.org/2006/timezone-world#CAQCQTZ> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.w3.org/2006/timezone-world#CASK> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#State> .
<http://www.w3.org/2006/timezone-world#CASK> <http://www.w3.org/2006/timezone#name> "Saskatchewan"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CASK> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#CA> .
<http://www.w3.org/2006/timezone-world#CASK> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#STZ> .
<http://www.w3.org/2006/timezone-world#CASK> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.w3.org/2006/timezone-world#CASK> <http://www.w3.org/2006/timezone#exceptionalRegion> <http://www.w3.org/2006/timezone-world#CASKLloydminsterCity> .
<http://www.w3.org/2006/timezone-world#CASK> <http://www.w3.org/2006/timezone#exceptionalRegion> <http://www.w3.org/2006/timezone-world#CASKCreightonCity> .
<http://www.w3.org/2006/timezone-world#CASK> <http://www.w3.org/2006/timezone#exceptionalRegion> <http://www.w3.org/2006/timezone-world#CASKDenareBeachCity> .
<http://www.w3.org/2006/timezone-world#CASKLloydminsterCity> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#City> .
<http://www.w3.org/2006/timezone-world#CASKLloydminsterCity> <http://www.w3.org/2006/timezone#name> "Lloydminster City"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CASKLloydminsterCity> <http://www.w3.org/2006/timezone#stateOf> <http://www.w3.org/2006/timezone-world#CASK> .
<http://www.w3.org/2006/timezone-world#CASKLloydminsterCity> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#TTZ> .
<http://www.w3.org/2006/timezone-world#CASKLloydminsterCity> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.w3.org/2006/timezone-world#CASKCreightonCity> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#City> .
<http://www.w3.org/2006/timezone-world#CASKCreightonCity> <http://www.w3.org/2006/timezone#name> "Creighton City"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CASKCreightonCity> <http://www.w3.org/2006/timezone#stateOf> <http://www.w3.org/2006/timezone-world#CASK> .
<http://www.w3.org/2006/timezone-world#CASKCreightonCity> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.w3.org/2006/timezone-world#CASKDenareBeachCity> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#City> .
<http://www.w3.org/2006/timezone-world#CASKDenareBeachCity> <http://www.w3.org/2006/timezone#name> "Denare Beach City"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CASKDenareBeachCity> <http://www.w3.org/2006/timezone#stateOf> <http://www.w3.org/2006/timezone-world#CASK> .
<http://www.w3.org/2006/timezone-world#CASKDenareBeachCity> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.w3.org/2006/timezone-world#CAYK> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#State> .
<http://www.w3.org/2006/timezone-world#CAYK> <http://www.w3.org/2006/timezone#name> "Yukon"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#CAYK> <http://www.w3.org/2006/timezone#hasParentRegion> <http://www.daml.org/2001/09/countries/iso#CA> .
<http://www.w3.org/2006/timezone-world#CAYK> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#UTZ> .
<http://www.w3.org/2006/timezone-world#CAYK> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#BZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#BZ> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#STZ> .
<http://www.daml.org/2001/09/countries/iso#BZ> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#BY> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#BY> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#BTZ> .
<http://www.daml.org/2001/09/countries/iso#BY> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#BY> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#EU2006DLS> .
<http://www.daml.org/2001/09/countries/iso#BW> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#BW> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#BTZ> .
<http://www.daml.org/2001/09/countries/iso#BW> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#BV> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#BV> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ZTZ> .
<http://www.daml.org/2001/09/countries/iso#BV> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#BT> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#BT> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#FTZ> .
<http://www.daml.org/2001/09/countries/iso#BT> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#BS> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#BS> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#RTZ> .
<http://www.daml.org/2001/09/countries/iso#BS> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#BS> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#USA2006DLS> .
<http://www.daml.org/2001/09/countries/iso#BR> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#BR> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#BO> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#BO> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#QTZ> .
<http://www.daml.org/2001/09/countries/iso#BO> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#NZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#NZ> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#MTZ> .
<http://www.daml.org/2001/09/countries/iso#NZ> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#NZ> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#NZ2006DLS> .
<http://www.daml.org/2001/09/countries/iso#NZ> <http://www.w3.org/2006/timezone#exceptionalRegion> <http://www.w3.org/2006/timezone-world#NZChathamIsland> .
<http://www.w3.org/2006/timezone-world#NZChathamIsland> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Region> .
<http://www.w3.org/2006/timezone-world#NZChathamIsland> <http://www.w3.org/2006/timezone#name> "Chatham Island"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2006/timezone-world#NZChathamIsland> <http://www.w3.org/2006/timezone#countryOf> <http://www.daml.org/2001/09/countries/iso#NZ> .
<http://www.w3.org/2006/timezone-world#NZChathamIsland> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ChathamTZ> .
<http://www.daml.org/2001/09/countries/iso#BN> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#BN> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#HTZ> .
<http://www.daml.org/2001/09/countries/iso#BN> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#BM> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#BM> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#QTZ> .
<http://www.daml.org/2001/09/countries/iso#BM> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#BM> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#USA2006DLS> .
<http://www.daml.org/2001/09/countries/iso#BJ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#BJ> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#BJ> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#NU> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#NU> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#XTZ> .
<http://www.daml.org/2001/09/countries/iso#NU> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#BI> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#BI> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#BTZ> .
<http://www.daml.org/2001/09/countries/iso#BI> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#BH> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#BH> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#CTZ> .
<http://www.daml.org/2001/09/countries/iso#BH> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#BG> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#BG> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#BTZ> .
<http://www.daml.org/2001/09/countries/iso#BG> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#BG> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#EU2006DLS> .
<http://www.daml.org/2001/09/countries/iso#NR> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#NR> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#MTZ> .
<http://www.daml.org/2001/09/countries/iso#NR> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#BF> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#BF> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ZTZ> .
<http://www.daml.org/2001/09/countries/iso#BF> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#BE> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#BE> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#BE> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#BE> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#EU2006DLS> .
<http://www.daml.org/2001/09/countries/iso#NP> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#NP> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#E1TZ> .
<http://www.daml.org/2001/09/countries/iso#NP> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#NO> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#NO> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#NO> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#NO> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#EU2006DLS> .
<http://www.daml.org/2001/09/countries/iso#BD> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#BD> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#FTZ> .
<http://www.daml.org/2001/09/countries/iso#BD> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#BB> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#BB> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#QTZ> .
<http://www.daml.org/2001/09/countries/iso#BB> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#BA> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#BA> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#BA> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#NL> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#NL> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#NL> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#NL> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#EU2006DLS> .
<http://www.daml.org/2001/09/countries/iso#ZW> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#ZW> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#BTZ> .
<http://www.daml.org/2001/09/countries/iso#ZW> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#NI> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#NI> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#STZ> .
<http://www.daml.org/2001/09/countries/iso#NI> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#NG> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#NG> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#NG> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#AZ> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#AZ> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#CTZ> .
<http://www.daml.org/2001/09/countries/iso#AZ> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#AZ> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#RU2006DLS> .
<http://www.daml.org/2001/09/countries/iso#NF> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#NF> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#L1TZ> .
<http://www.daml.org/2001/09/countries/iso#NF> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#NE> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#NE> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#NE> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#NC> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#NC> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#LTZ> .
<http://www.daml.org/2001/09/countries/iso#NC> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#AW> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#AW> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#QTZ> .
<http://www.daml.org/2001/09/countries/iso#AW> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#ZM> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#ZM> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#BTZ> .
<http://www.daml.org/2001/09/countries/iso#ZM> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#NA> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .
<http://www.daml.org/2001/09/countries/iso#NA> <http://www.w3.org/2006/timezone#hasTimeZone> <http://www.w3.org/2006/timezone-world#ATZ> .
<http://www.daml.org/2001/09/countries/iso#NA> <http://www.w3.org/2006/timezone#observesDaylightSavingsTime> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> .
<http://www.daml.org/2001/09/countries/iso#NA> <http://www.w3.org/2006/timezone#hasDaylightSavingsPolicy> <http://www.w3.org/2006/timezone-world#NA2006DLS> .
<http://www.daml.org/2001/09/countries/iso#AU> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/timezone#Country> .