-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrm_lau.gpml
1347 lines (1347 loc) · 106 KB
/
rm_lau.gpml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<gpml:FeatureCollection xmlns:gpml="http://www.gplates.org/gplates" xmlns:gml="http://www.opengis.net/gml" xmlns:xsi="http://www.w3.org/XMLSchema-instance" gpml:version="1.6.0338" xsi:schemaLocation="http://www.gplates.org/gplates ../xsd/gpml.xsd http://www.opengis.net/gml ../../../gml/current/base">
<gml:featureMember>
<gpml:UnclassifiedFeature>
<gpml:identity>GPlates-c2e63c64-f4b4-4463-9886-07b46d709ee4</gpml:identity>
<gpml:revision>GPlates-466aa8e0-e5b0-4b4a-8142-f0ea66e21ef7</gpml:revision>
<gpml:unclassifiedGeometry>
<gpml:ConstantValue>
<gpml:value>
<gml:Polygon>
<gml:exterior>
<gml:LinearRing>
<gml:posList gml:dimension="2">-2.0888761616889822 -55.067172776495454 -2.2059013660519495 -54.174014006835357 -2.3693171887063618 -53.282587163196894 -2.5784558680845571 -52.397417792026843 -2.8322954345633722 -51.52300435760575 -3.1294725428931889 -50.663759835257288 -3.4683029011924891 -49.823955996372582 -3.846808566142379 -49.007672018033652 -4.2627280895738879 -48.218789977676558 -4.71358649667261 -47.460882521153039 -5.1967595656118926 -46.737163759848407 -5.7094720117336717 -46.050549418588822 -6.2488578163729072 -45.403611399036379 -6.8120040045334713 -44.798573206971724 -7.3959925390120933 -44.237313812320089 -7.9979391536358699 -43.721379476683346 -8.6150280594185968 -43.252002882599157 -9.24454158871999 -42.830128714173021 -9.8838839946821544 -42.456444666221898 -10.530598799675007 -42.131416697832087 -11.182379291276492 -41.855327200649022 -11.837071999149805 -41.62831463282145 -12.492673246678674 -41.450413092005519 -13.147319143785799 -41.321590282345817 -13.799269648579029 -41.241782383280004 -14.446887545957976 -41.210924452841589 -15.088613344564791 -41.228975178680841 -15.722937167546114 -41.29593499500519 -16.348368102692774 -41.41185663722392 -16.963430360048172 -41.576855937946142 -17.566589936375166 -41.791100614506533 -18.156223404749387 -42.054788282740063 -18.73060597887055 -42.368123256038643 -19.287889867226099 -42.731282750764763 -19.826087907828363 -43.144375006093306 -20.343063650597003 -43.607390179591249 -20.836529005646213 -44.120145325732736 -21.304050418099092 -44.682225249176 -21.743064257642885 -45.29292149122665 -22.150901742456217 -45.95117210337159 -22.524823284465576 -46.655505145494942 -22.862061680336069 -47.403988990907109 -23.159873109673793 -48.19419250708669 -23.415594462037856 -49.023157996047878 -23.626705117215888 -49.887389410751645 -23.790890968102669 -50.782857809169158 -23.906108223476789 -51.705025272192444 -23.970644381607961 -52.648887619942712 -23.983173746611961 -53.60903525940811 -23.942804984403001 -54.579730453063512 -23.849114330865358 -55.555032015700142 -23.70217933459195 -56.528797456709782 -23.502597260930024 -57.494839883820575 -23.251469973426065 -58.447098406453392 -22.950390609423156 -59.379700041902211 -22.601414166151248 -60.287057176300287 -22.207016326212287 -61.163953612717542 -21.770043343606357 -62.005614588863565 -21.29370387629675 -62.807683526618483 -20.78136957042765 -63.566496603013924 -20.236619753911899 -64.278885779737152 -19.663144084599814 -64.942245221137838 -19.064677505286326 -65.554520086408473 -18.444939226625046 -66.114182075659045 -17.807577420443216 -66.620193838419766 -17.156120977775583 -67.071964482084255 -16.493939352846532 -67.469298436605982 -15.824211187176266 -67.812339874799804 -15.149902090984193 -68.101514784321253 -14.473751651313886 -68.337472657994624 -13.798269435669663 -68.521029622654197 -13.125739467214714 -68.653114661744226 -12.458232370379639 -68.734720395770339 -11.797624140488788 -68.766859659378781 -11.145620300976573 -68.750528853770689 -10.503784100142189 -68.68667877077192 -9.8735673788084259 -68.576193305984859 -9.2563428028080725 -68.41987623490698 -8.6534295389525013 -68.218443512436494 -8.0661106228271144 -67.972516556963299 -7.4957163550598684 -67.682652564626281 -6.9436228760934773 -67.349358275041808 -6.4112719577202677 -66.973114815442472 -5.9001873787366401 -66.554408644344107 -5.411985553902193 -66.093767185706341 -4.9483797726626246 -65.591797994684057 -4.5111775524184869 -65.049230059241779 -4.1022708410688198 -64.466955638024089 -3.723619096901388 -63.846070903890059 -3.3772255970426692 -63.187913626782766 -3.0651076427717063 -62.494096192461491 -2.7892616125499918 -61.766532404667231 -2.5516240442816214 -61.007456740786182 -2.3540300998036394 -60.219435007925881 -2.1981708761423295 -59.405365663021421 -2.0855510816803111 -58.568471405369394 -2.0174485933520447 -57.712281012310051 -1.9948773548948935 -56.840601757473621 -2.0185549671950471 -55.957483112944544 -2.0888761616889822 -55.067172776495454 </gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gpml:value>
<gml:description></gml:description>
<gpml:valueType xmlns:gml="http://www.opengis.net/gml">gml:Polygon</gpml:valueType>
</gpml:ConstantValue>
</gpml:unclassifiedGeometry>
<gpml:shapefileAttributes>
<gpml:KeyValueDictionary>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>Name</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>Lau</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>PlateID</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>101</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>FROMAGE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:double</gpml:valueType>
<gpml:value>445</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>TOAGE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:double</gpml:valueType>
<gpml:value>435.10000000000002</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>PLATEID1</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>101</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>NAME_1</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value></gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>DESCR</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value></gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>PLATEID2</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>0</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>GPGIM_TYPE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>gpml:UnclassifiedFeature</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>FEATURE_ID</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>GPlates-c2e63c64-f4b4-4463-9886-07b46d709ee4</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>RECON_METH</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value></gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>L_PLATE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>0</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>R_PLATE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>0</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>SPREAD_ASY</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:double</gpml:valueType>
<gpml:value>0</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>IMPORT_AGE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:double</gpml:valueType>
<gpml:value>0</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>TYPE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value></gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
</gpml:KeyValueDictionary>
</gpml:shapefileAttributes>
<gpml:reconstructionPlateId>
<gpml:ConstantValue>
<gpml:value>101</gpml:value>
<gml:description></gml:description>
<gpml:valueType xmlns:gpml="http://www.gplates.org/gplates">gpml:plateId</gpml:valueType>
</gpml:ConstantValue>
</gpml:reconstructionPlateId>
<gml:validTime>
<gml:TimePeriod>
<gml:begin>
<gml:TimeInstant>
<gml:timePosition gml:frame="http://gplates.org/TRS/flat">445</gml:timePosition>
</gml:TimeInstant>
</gml:begin>
<gml:end>
<gml:TimeInstant>
<gml:timePosition gml:frame="http://gplates.org/TRS/flat">435.10000000000002</gml:timePosition>
</gml:TimeInstant>
</gml:end>
</gml:TimePeriod>
</gml:validTime>
<gml:description></gml:description>
<gpml:conjugatePlateId>0</gpml:conjugatePlateId>
<gpml:spreadingAsymmetry>0</gpml:spreadingAsymmetry>
<gpml:leftPlate>0</gpml:leftPlate>
<gpml:rightPlate>0</gpml:rightPlate>
<gpml:geometryImportTime>
<gml:TimeInstant>
<gml:timePosition gml:frame="http://gplates.org/TRS/flat">0</gml:timePosition>
</gml:TimeInstant>
</gpml:geometryImportTime>
</gpml:UnclassifiedFeature>
</gml:featureMember>
<gml:featureMember>
<gpml:UnclassifiedFeature>
<gpml:identity>GPlates-1f166077-377c-4df2-9f6a-4dfc1c48bb52</gpml:identity>
<gpml:revision>GPlates-3b01c661-1b8e-4f66-91c3-cc4f2ee0ff89</gpml:revision>
<gpml:unclassifiedGeometry>
<gpml:ConstantValue>
<gpml:value>
<gml:Polygon>
<gml:exterior>
<gml:LinearRing>
<gml:posList gml:dimension="2">0.77708337752512335 -52.207319762257953 0.61988226254696732 -51.019950903820344 0.40895901875399726 -49.836325379991614 0.14556322676954431 -48.663432822545005 -0.1685401636268066 -47.508128346302009 -0.53109380105817361 -46.377060781596086 -0.93935739581332933 -45.276644050094028 -1.3903111047614105 -44.212577216860993 -1.8806056130909059 -43.190144767905849 -2.4066651314274865 -42.214056481755954 -2.9647628088178148 -41.288406950492138 -3.5510964217809655 -40.416652853371822 -4.161726496624035 -39.601779252695771 -4.793050596028035 -38.845764429696395 -5.4414928157195774 -38.150163262884234 -6.10365429882307 -37.515992281165879 -6.776368930310122 -36.943772039766984 -7.4567381715615202 -36.433595103347365 -8.1421543673003569 -35.98520272422801 -8.8303118145392414 -35.598067485367707 -9.5191323118657607 -35.271510243245388 -10.20683335913975 -35.004725722435111 -10.892131149615434 -34.796808626267115 -11.573842995625281 -34.646990851631429 -12.250974287027292 -34.554640101627399 -12.922667588529219 -34.519314478567246 -13.588149306390264 -34.540803563361138 -14.246693780266414 -34.619159085086949 -14.897648886552854 -34.754738107729395 -15.540156033929845 -34.948172947071107 -16.173189785594186 -35.200343156673789 -16.795520539818284 -35.512340034728972 -17.405666536747848 -35.885413429833768 -18.001992255550469 -36.321012933476034 -18.582300758632769 -36.820448633982323 -19.144038293634413 -37.38487805230443 -19.684368108422106 -38.015274811631301 -20.200115179572027 -38.712263702439117 -20.687793860944176 -39.475996246203422 -21.143653560725539 -40.306028471484026 -21.563742069182744 -41.201206821631445 -21.943985257662028 -42.159568198598343 -22.280281064361265 -43.178260037777648 -22.568604927543593 -44.25348597798191 -22.805133074139235 -45.380536901851343 -22.986354298936057 -46.553877727339405 -23.109107661404121 -47.766600719011258 -23.17082936711541 -49.01122167873492 -23.169590801045217 -50.279556342533134 -23.10417810831304 -51.562874925289371 -22.97414317457779 -52.852136237741611 -22.779859029013977 -54.13797745902869 -22.522527314324883 -55.41107910526393 -22.204131349275869 -56.662449919367454 -21.827393168117055 -57.883528067516366 -21.395760950246338 -59.066193857785009 -20.913211582271842 -60.203241102454378 -20.384160651719004 -61.288349309604214 -19.813384050779671 -62.316063477757538 -19.205882021961674 -63.281876594906436 -18.566760118297115 -64.182233660841547 -17.90118505560331 -65.014425451439905 -17.214161480110011 -65.776709743640268 -16.510359743237359 -66.46827692695112 -15.794257998453091 -67.088913206787097 -15.069991445199522 -67.639022464032536 -14.341308556920282 -68.119520704138381 -13.611544296339563 -68.531726598695869 -12.883610152886202 -68.877251617029941 -12.160000286013405 -69.157893134216451 -11.442999059494237 -69.375484893388133 -10.734170703143281 -69.531979901821487 -10.034854709522293 -69.629179416114624 -9.3461556359676674 -69.668706875122652 -8.6689694718138561 -69.651966487844732 -8.0040451260760648 -69.580105935909032 -7.352047732929984 -69.453994711963247 -6.7135245604589731 -69.274186760365922 -6.0890826246377436 -69.040934560175216 -5.4794922031003095 -68.754244782826348 -4.8856645106650909 -68.413903761970744 -4.3086920191554752 -68.019525425218319 -3.7498485106382144 -67.570582131415591 -3.2105682154232267 -67.066406285895468 -2.6928423195069411 -66.506646790816177 -2.1987608602049651 -65.890980877353286 -1.730652395008734 -65.219316522786556 -1.2910591784066214 -64.491882243518802 -0.88269950767322869 -63.709312520737441 -0.50841834372324091 -62.872724954065632 -0.17112796558455418 -61.983785687289121 0.12625916157733807 -61.04476020161998 0.3809028753384735 -60.058547152829924 0.59011058981859976 -59.028693522521145 0.75143660084426334 -57.959199723819587 0.86266976180117161 -56.854997149355746 0.92198755081773331 -55.721586444749413 0.92801123744292957 -54.564885854078334 0.87983910894437767 -53.391239292164386 0.77708337752512335 -52.207319762257953 </gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gpml:value>
<gml:description></gml:description>
<gpml:valueType xmlns:gml="http://www.opengis.net/gml">gml:Polygon</gpml:valueType>
</gpml:ConstantValue>
</gpml:unclassifiedGeometry>
<gpml:shapefileAttributes>
<gpml:KeyValueDictionary>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>Name</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>Lau</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>PlateID</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>101</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>FROMAGE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:double</gpml:valueType>
<gpml:value>455</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>TOAGE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:double</gpml:valueType>
<gpml:value>445.10000000000002</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>PLATEID1</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>101</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>NAME_1</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value></gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>DESCR</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value></gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>PLATEID2</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>0</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>GPGIM_TYPE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>gpml:UnclassifiedFeature</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>FEATURE_ID</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>GPlates-1f166077-377c-4df2-9f6a-4dfc1c48bb52</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>RECON_METH</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value></gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>L_PLATE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>0</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>R_PLATE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>0</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>SPREAD_ASY</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:double</gpml:valueType>
<gpml:value>0</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>IMPORT_AGE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:double</gpml:valueType>
<gpml:value>0</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>TYPE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value></gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
</gpml:KeyValueDictionary>
</gpml:shapefileAttributes>
<gpml:reconstructionPlateId>
<gpml:ConstantValue>
<gpml:value>101</gpml:value>
<gml:description></gml:description>
<gpml:valueType xmlns:gpml="http://www.gplates.org/gplates">gpml:plateId</gpml:valueType>
</gpml:ConstantValue>
</gpml:reconstructionPlateId>
<gml:validTime>
<gml:TimePeriod>
<gml:begin>
<gml:TimeInstant>
<gml:timePosition gml:frame="http://gplates.org/TRS/flat">455</gml:timePosition>
</gml:TimeInstant>
</gml:begin>
<gml:end>
<gml:TimeInstant>
<gml:timePosition gml:frame="http://gplates.org/TRS/flat">445.10000000000002</gml:timePosition>
</gml:TimeInstant>
</gml:end>
</gml:TimePeriod>
</gml:validTime>
<gml:description></gml:description>
<gpml:conjugatePlateId>0</gpml:conjugatePlateId>
<gpml:spreadingAsymmetry>0</gpml:spreadingAsymmetry>
<gpml:leftPlate>0</gpml:leftPlate>
<gpml:rightPlate>0</gpml:rightPlate>
<gpml:geometryImportTime>
<gml:TimeInstant>
<gml:timePosition gml:frame="http://gplates.org/TRS/flat">0</gml:timePosition>
</gml:TimeInstant>
</gpml:geometryImportTime>
</gpml:UnclassifiedFeature>
</gml:featureMember>
<gml:featureMember>
<gpml:UnclassifiedFeature>
<gpml:identity>GPlates-54cd2223-8a10-4191-9964-a0d83e73da3e</gpml:identity>
<gpml:revision>GPlates-378ee837-c06c-477e-b712-481f13358daa</gpml:revision>
<gpml:unclassifiedGeometry>
<gpml:ConstantValue>
<gpml:value>
<gml:Polygon>
<gml:exterior>
<gml:LinearRing>
<gml:posList gml:dimension="2">-2.3388918277352744 -41.338074215650806 -2.4506066302224156 -40.153015378925183 -2.610202196629746 -38.973178763852779 -2.8165245251032909 -37.805885743448435 -3.0679358427581507 -36.65826823999209 -3.3622692272685759 -35.537437345175292 -3.6970738761117792 -34.449576216463313 -4.0695328491109164 -33.400517487174916 -4.4765642376538892 -32.39548917968817 -4.9148798338941191 -31.439080627722227 -5.380924478674741 -30.535434272090196 -5.8714097503547427 -29.687334631669462 -6.3829374974939999 -28.897171414958166 -6.9122057137097945 -28.166640332898847 -7.4560697708494805 -27.496784584130008 -8.0115961155754718 -26.88805367288457 -8.5761066660553578 -26.340377751742182 -9.1472121357311291 -25.853255121532925 -9.7228326266806011 -25.425849799110015 -10.301204252035227 -25.057095208211216 -10.880768858736824 -24.745849285734796 -11.460264125416469 -24.49090304315348 -12.039066020053225 -24.290967575634468 -12.616548444437573 -24.145055815132235 -13.192252709732937 -24.052422179763475 -13.765815254386695 -24.012615801269778 -14.337064202038581 -24.025519697872078 -14.905875557442458 -24.091421349180258 -15.471910281508354 -24.210991833256955 -16.034704687681327 -24.385258166129141 -16.593861100445835 -24.615692164017297 -17.148390351733021 -24.903958012804544 -17.69696960714505 -25.251875989526514 -18.237999847245529 -25.661396395171277 -18.769499883369395 -26.134467515981093 -19.289081954602814 -26.672910509215946 -19.793944936220633 -27.278281732335348 -20.280887558808963 -27.951728805985358 -20.746342295503734 -28.693846933310656 -21.186429341291753 -29.504541785677844 -21.597029316681308 -30.382904977357789 -21.973872769332711 -31.327107938962293 -22.312644025344362 -32.334319826497854 -22.609096342589329 -33.400654828531692 -22.859174620392785 -34.521153684049487 -23.059141178378937 -35.689803247005706 -23.205726437754667 -36.899875273161335 -23.296136985956331 -38.143186396878257 -23.328293764506871 -39.410947448066224 -23.300880158443334 -40.693900671376248 -23.213382020163849 -41.982447957749713 -23.066137419909481 -43.266677643365732 -22.860333676280529 -44.536816580596039 -22.597959213839964 -45.783471243964634 -22.281791957029689 -46.997604594855062 -21.915277301824105 -48.170949902230703 -21.502351482259407 -49.296298132059107 -21.047411011866711 -50.367281793371973 -20.555160439387677 -51.378555861571513 -20.030600466831959 -52.325632450229179 -19.478657933941257 -53.205358536418537 -18.904105767484868 -54.015691566384305 -18.311621687622225 -54.755381864699551 -17.705618088087288 -55.424037292892955 -17.090167355980942 -56.022017923575184 -16.468944940962903 -56.550317551549938 -15.845191114588621 -57.01043651481455 -15.221691922063394 -57.40425028319877 -14.600779273629989 -57.733878420609493 -13.984349266044852 -58.001558743355837 -13.374168107611997 -58.20945150665797 -12.771101136507491 -58.3598277324257 -12.175855673459266 -58.454658612032546 -11.588965694143445 -58.495616676639258 -11.010794619782198 -58.484052257117334 -10.441611215360352 -58.420965372080275 -9.8814049589647652 -58.306935695969791 -9.3303683782361517 -58.1421575474888 -8.7888109666768823 -57.926478023814916 -8.2571009409483214 -57.659385879951529 -7.7356623957782507 -57.339982387982282 -7.2255728994185571 -56.967400548389399 -6.7279975623531714 -56.540588682059749 -6.2443800467621156 -56.058476075229095 -5.7764548858356202 -55.520074945251224 -5.3262453504787155 -54.924589141871834 -4.8960455121167969 -54.271523698694729 -4.4883870492216698 -53.560789572298198 -4.1059926316680171 -52.792798762171891 -3.7517183583843319 -51.968546014129231 -3.4284879099848951 -51.089674208680215 -3.1392210330474373 -50.158521253605414 -2.8867588609544717 -49.178146878504862 -2.67378848312002 -48.152338248716582 -2.5027691214468746 -47.085593850308328 -2.3758537214888591 -45.982994250676647 -2.2948479031213038 -44.850202841769942 -2.2611644673947615 -43.693873119216413 -2.275709473912273 -42.520793141167438 -2.3388918277352744 -41.338074215650806 </gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gpml:value>
<gml:description></gml:description>
<gpml:valueType xmlns:gml="http://www.opengis.net/gml">gml:Polygon</gpml:valueType>
</gpml:ConstantValue>
</gpml:unclassifiedGeometry>
<gpml:shapefileAttributes>
<gpml:KeyValueDictionary>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>Name</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>Lau</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>PlateID</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>101</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>FROMAGE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:double</gpml:valueType>
<gpml:value>465</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>TOAGE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:double</gpml:valueType>
<gpml:value>455.10000000000002</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>PLATEID1</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>101</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>NAME_1</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value></gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>DESCR</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value></gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>PLATEID2</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>0</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>GPGIM_TYPE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>gpml:UnclassifiedFeature</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>FEATURE_ID</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>GPlates-54cd2223-8a10-4191-9964-a0d83e73da3e</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>RECON_METH</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value></gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>L_PLATE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>0</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>R_PLATE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>0</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>SPREAD_ASY</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:double</gpml:valueType>
<gpml:value>0</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>IMPORT_AGE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:double</gpml:valueType>
<gpml:value>0</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>TYPE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value></gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
</gpml:KeyValueDictionary>
</gpml:shapefileAttributes>
<gpml:reconstructionPlateId>
<gpml:ConstantValue>
<gpml:value>101</gpml:value>
<gml:description></gml:description>
<gpml:valueType xmlns:gpml="http://www.gplates.org/gplates">gpml:plateId</gpml:valueType>
</gpml:ConstantValue>
</gpml:reconstructionPlateId>
<gml:validTime>
<gml:TimePeriod>
<gml:begin>
<gml:TimeInstant>
<gml:timePosition gml:frame="http://gplates.org/TRS/flat">465</gml:timePosition>
</gml:TimeInstant>
</gml:begin>
<gml:end>
<gml:TimeInstant>
<gml:timePosition gml:frame="http://gplates.org/TRS/flat">455.10000000000002</gml:timePosition>
</gml:TimeInstant>
</gml:end>
</gml:TimePeriod>
</gml:validTime>
<gml:description></gml:description>
<gpml:conjugatePlateId>0</gpml:conjugatePlateId>
<gpml:spreadingAsymmetry>0</gpml:spreadingAsymmetry>
<gpml:leftPlate>0</gpml:leftPlate>
<gpml:rightPlate>0</gpml:rightPlate>
<gpml:geometryImportTime>
<gml:TimeInstant>
<gml:timePosition gml:frame="http://gplates.org/TRS/flat">0</gml:timePosition>
</gml:TimeInstant>
</gpml:geometryImportTime>
</gpml:UnclassifiedFeature>
</gml:featureMember>
<gml:featureMember>
<gpml:UnclassifiedFeature>
<gpml:identity>GPlates-0da3e382-90ba-438f-ba6a-59e50e1fbe41</gpml:identity>
<gpml:revision>GPlates-990d0e6d-398f-4d4c-a18e-e2d573dfcdd4</gpml:revision>
<gpml:unclassifiedGeometry>
<gpml:ConstantValue>
<gpml:value>
<gml:Polygon>
<gml:exterior>
<gml:LinearRing>
<gml:posList gml:dimension="2">-1.1357769306571244 -25.843443173020333 -1.0879373735027589 -25.131321635693151 -1.0799426499345837 -24.424561933366014 -1.1114314390572446 -23.726383408518785 -1.1818052330920699 -23.039866856180026 -1.2902484633474847 -22.367927552370521 -1.435752024364048 -21.713293413582257 -1.6171393409805757 -21.07848881900486 -1.8330940418121939 -20.465824407426766 -2.0821882576929744 -19.87739293046657 -2.362910556846765 -19.31507101306978 -2.6736925605941053 -18.780526450747875 -3.0129333537140255 -18.275230470114188 -3.3790209100046558 -17.800474203654968 -3.7703498918726788 -17.357388489422988 -4.185335346088765 -16.946966008208971 -4.6224219966425926 -16.570084719179722 -5.0800890183445579 -16.227531550856387 -5.5568503494644519 -15.920025343958439 -6.0512507582509878 -15.648238117709019 -6.561858011023177 -15.412813830002049 -7.087251598842113 -15.214383912117663 -7.6260178402380907 -15.053576559482138 -8.1767214275828906 -14.931029794178096 -8.7378805169936236 -14.847393714311293 -9.3079571267847871 -14.803324319681666 -9.8853379395972674 -14.799476004650845 -10.468317137564579 -14.836488806524995 -11.055081145297999 -14.914970938931274 -11.643696095517777 -15.035476963063248 -12.232098784397754 -15.19848210159806 -12.818091801054319 -15.404353350348684 -13.399343399555656 -15.653318183585384 -13.973392537556341 -15.945431774250613 -14.537659340242826 -16.280543756112142 -15.089461068840567 -16.658265639172392 -15.626033485574039 -17.077940050891414 -16.144557316472319 -17.538613011690391 -16.642189323708045 -18.039010459653724 -17.116097314132297 -18.577520210045979 -17.563508485224776 -19.152194468453491 -17.981728457613208 -19.760722535378378 -18.368172885291617 -20.400409996155279 -18.720450422191526 -21.068251752951255 -19.036381208839853 -21.760929934860812 -19.314032913641221 -22.474845671250158 -19.551752457729503 -23.206159297677821 -19.748192269008857 -23.950838035511335 -19.902330086563893 -24.704709789278368 -20.013481568614846 -25.463521355756185 -20.081303790224663 -26.222975309313476 -20.10579927515704 -26.978829069538097 -20.087300378610578 -27.726973755063376 -20.026447786249783 -28.4634356323348 -19.924168641798005 -29.18444463189277 -19.781647054222276 -29.886475411306879 -19.600290555293583 -30.56627968902982 -19.381693860177098 -31.220909124637558 -19.127601341533108 -31.847728487084254 -18.839869618012564 -32.444419306534705 -18.520431585142077 -33.008974620372676 -18.171263087343085 -33.539685779024467 -17.794353253293895 -34.03512255733154 -17.391679303875193 -34.494108013398595 -16.965186405027566 -34.915689645774371 -16.516772890932543 -35.299108423415149 -16.048280940813008 -35.643767208246686 -15.561492569684903 -35.949199969482457 -15.058130601425145 -36.215043018836582 -14.539864138583633 -36.441009295828628 -14.008317928088101 -36.626866521815309 -13.465082667938882 -36.772420354894848 -12.91172111348158 -36.8775024189748 -12.349811406037938 -36.941956822322553 -11.780950582881372 -36.965643933224563 -11.206772060150927 -36.94844376933171 -10.628961818555085 -36.890264191707523 -10.049272820869744 -36.791053370996629 -9.4695369377616831 -36.650815959010451 -8.8916737300135456 -36.469632281871881 -8.3176955349828905 -36.247679769742618 -7.7497084313942368 -35.985255760594605 -7.1899088033508312 -35.682800767110628 -6.6405753833464969 -35.340921278983053 -6.1040568163114788 -34.960411186758108 -5.5827549448447273 -34.542270954823273 -5.0791041642520556 -34.087723736154899 -4.5955473312221091 -33.598227706348197 -4.1345088296761805 -33.075483996602614 -3.6983654998870916 -32.521439723290925 -3.2893958360331741 -31.938254909438768 -2.9098173273188306 -31.328391388386525 -2.5616840259489377 -30.694508038285107 -2.2468766579362627 -30.039462202634965 -1.9670793777071112 -29.366290445240882 -1.7237559685758559 -28.678179771602295 -1.5181299033363034 -27.978434920469848 -1.3511689044946062 -27.270442564237893 -1.2235745030440379 -26.557633394441968 -1.1357769306571244 -25.843443173020333 </gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gpml:value>
<gml:description></gml:description>
<gpml:valueType xmlns:gml="http://www.opengis.net/gml">gml:Polygon</gpml:valueType>
</gpml:ConstantValue>
</gpml:unclassifiedGeometry>
<gpml:shapefileAttributes>
<gpml:KeyValueDictionary>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>Name</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>Lau</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>PlateID</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>101</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>FROMAGE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:double</gpml:valueType>
<gpml:value>475</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>TOAGE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:double</gpml:valueType>
<gpml:value>465.10000000000002</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>PLATEID1</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>101</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>NAME_1</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value></gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>DESCR</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value></gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>PLATEID2</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>0</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>GPGIM_TYPE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>gpml:UnclassifiedFeature</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>FEATURE_ID</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>GPlates-0da3e382-90ba-438f-ba6a-59e50e1fbe41</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>RECON_METH</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value></gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>L_PLATE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>0</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>R_PLATE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>0</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>SPREAD_ASY</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:double</gpml:valueType>
<gpml:value>0</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>IMPORT_AGE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:double</gpml:valueType>
<gpml:value>0</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>TYPE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value></gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
</gpml:KeyValueDictionary>
</gpml:shapefileAttributes>
<gpml:reconstructionPlateId>
<gpml:ConstantValue>
<gpml:value>101</gpml:value>
<gml:description></gml:description>
<gpml:valueType xmlns:gpml="http://www.gplates.org/gplates">gpml:plateId</gpml:valueType>
</gpml:ConstantValue>
</gpml:reconstructionPlateId>
<gml:validTime>
<gml:TimePeriod>
<gml:begin>
<gml:TimeInstant>
<gml:timePosition gml:frame="http://gplates.org/TRS/flat">475</gml:timePosition>
</gml:TimeInstant>
</gml:begin>
<gml:end>
<gml:TimeInstant>
<gml:timePosition gml:frame="http://gplates.org/TRS/flat">465.10000000000002</gml:timePosition>
</gml:TimeInstant>
</gml:end>
</gml:TimePeriod>
</gml:validTime>
<gml:description></gml:description>
<gpml:conjugatePlateId>0</gpml:conjugatePlateId>
<gpml:spreadingAsymmetry>0</gpml:spreadingAsymmetry>
<gpml:leftPlate>0</gpml:leftPlate>
<gpml:rightPlate>0</gpml:rightPlate>
<gpml:geometryImportTime>
<gml:TimeInstant>
<gml:timePosition gml:frame="http://gplates.org/TRS/flat">0</gml:timePosition>
</gml:TimeInstant>
</gpml:geometryImportTime>
</gpml:UnclassifiedFeature>
</gml:featureMember>
<gml:featureMember>
<gpml:UnclassifiedFeature>
<gpml:identity>GPlates-6f5d7344-dfb9-430b-aaa7-ccc40d9d5472</gpml:identity>
<gpml:revision>GPlates-1a0260a4-d3bc-4707-a231-b3648ff7763e</gpml:revision>
<gpml:unclassifiedGeometry>
<gpml:ConstantValue>
<gpml:value>
<gml:Polygon>
<gml:exterior>
<gml:LinearRing>
<gml:posList gml:dimension="2">1.10019946160268 -20.446698243614065 1.1942934023552811 -19.85343772548331 1.251798925643659 -19.266144849425405 1.2731077339678039 -18.687259857041795 1.2587894344822796 -18.119060293070604 1.2095651052929328 -17.563650751371995 1.1262797857781017 -17.02295822648782 1.0098749458936167 -16.498732986272231 0.86136196992923908 -15.992554648856908 0.68179762196311977 -15.505842930930024 0.47226234644214027 -15.039872348699609 0.23385691599756572 -14.595815395500836 -0.032357057363991124 -14.174677493712634 -0.3253257893408581 -13.777407842708053 -0.64401845060878959 -13.404893766725909 -0.98742767002104359 -13.057980109978004 -1.3545648922983586 -12.73748819040023 -1.7444516419605833 -12.444232174521824 -2.1561071640326173 -12.179032253707526 -2.5885329996035984 -11.942724120213461 -3.0406951403703961 -11.736164349594699 -3.5115044971058973 -11.560231403838506 -3.9997965080672966 -11.4158220895801 -4.5043107911035829 -11.303843445845477 -5.0236717905493151 -11.225200195136319 -5.55637137293626 -11.180778060734269 -6.1007542778546435 -11.171423417171464 -6.6550072345075098 -11.197919885189586 -7.2171524200063351 -11.260962596650483 -7.7850457749057886 -11.361130934339602 -8.3563805173415773 -11.498860597765264 -8.9286960193964156 -11.674415864164748 -9.4993920346005964 -11.887862910774849 -10.065748097345898 -12.139045046197561 -10.624947754944309 -12.427560669510783 -11.17410714168083 -12.752744736992572 -11.710307262209485 -13.113654466506995 -12.230629220627234 -13.509059945012192 -12.732191514407569 -13.937440220144696 -13.212188413291365 -14.396985346936496 -13.66792967967603 -14.885606209786815 -14.09686517287707 -15.400934003031081 -14.496637389446153 -15.940357497908469 -14.865115700892368 -16.501057005789569 -15.200416195674816 -17.080029925120257 -15.500923719098727 -17.674128522421565 -15.765307981131988 -18.280101399295003 -15.992533222274419 -18.894637405331462 -16.181861159001997 -19.514410596001316 -16.332847181659709 -20.13612473655612 -16.44532632667126 -20.756531207926059 -16.519409224040043 -21.372521431808732 -16.55545162821657 -21.98115789333594 -16.554022342128434 -22.579650912738501 -16.515879549234363 -23.165405161086959 -16.441939861098085 -23.736033851818501 -16.333246671867265 -24.289365662372596 -16.190939062256856 -24.823444600904576 -16.016222423906346 -25.336523359655814 -15.810341846636184 -25.827050980235317 -15.574566489440416 -26.293642533093024 -15.310157339842617 -26.735089661142997 -15.018345589131656 -27.150337309099445 -14.700345169489884 -27.538423601106683 -14.357341160280166 -27.898474081738346 -13.990491322399011 -28.229679698687288 -13.600932114469479 -28.531277331023357 -13.189788670074233 -28.802533622429479 -12.758188126158041 -29.042732699044063 -12.307275616766017 -29.251168187531853 -11.83823217207115 -29.427139795581173 -11.352293688843167 -29.569954562911693 -10.850770074416122 -29.678932726515971 -10.335063627412184 -29.753417967513641 -9.8066857200767501 -29.792791626515829 -9.2672708977869309 -29.796490304455592 -8.718587610785427 -29.764026122676331 -8.1625449330089594 -29.695008812388121 -7.6011947897538317 -29.589168745552662 -7.036729395608555 -29.446380006040481 -6.4714737843759629 -29.266682625370407 -5.9078734849517565 -29.050303162512211 -5.3484775563579934 -28.797672882751147 -4.7959173392901064 -28.50944287853655 -4.2528814103160704 -28.186495570003988 -3.7220873385698949 -27.829952121503354 -3.2062509434685329 -27.441175412279975 -2.7080538349450638 -27.021768305355849 -2.2301100832890368 -26.573567070360802 -1.7749329114364609 -26.098629935279625 -1.3449028914415218 -25.599221563611898 -0.94224916593299046 -25.077808785069823 -0.56899366109447047 -24.537003078677586 -0.22694100455052504 -23.979545132778327 0.082340253939373248 -23.408274210605171 0.35753235501256997 -22.826094513472533 0.59757770300483193 -22.23594037030399 0.80168264133118594 -21.640741234399108 0.9693155599151555 -21.043387511182459 1.10019946160268 -20.446698243614065 </gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gpml:value>
<gml:description></gml:description>
<gpml:valueType xmlns:gml="http://www.opengis.net/gml">gml:Polygon</gpml:valueType>
</gpml:ConstantValue>
</gpml:unclassifiedGeometry>
<gpml:shapefileAttributes>
<gpml:KeyValueDictionary>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>Name</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>Lau</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>PlateID</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>101</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>FROMAGE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:double</gpml:valueType>
<gpml:value>485</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>TOAGE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:double</gpml:valueType>
<gpml:value>475.10000000000002</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>PLATEID1</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>101</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>NAME_1</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value></gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>DESCR</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value></gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>PLATEID2</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>0</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>GPGIM_TYPE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>gpml:UnclassifiedFeature</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>FEATURE_ID</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>GPlates-6f5d7344-dfb9-430b-aaa7-ccc40d9d5472</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>RECON_METH</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value></gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>L_PLATE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>0</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>R_PLATE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>0</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>SPREAD_ASY</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:double</gpml:valueType>
<gpml:value>0</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>IMPORT_AGE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:double</gpml:valueType>
<gpml:value>0</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>TYPE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value></gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
</gpml:KeyValueDictionary>
</gpml:shapefileAttributes>
<gpml:reconstructionPlateId>
<gpml:ConstantValue>
<gpml:value>101</gpml:value>
<gml:description></gml:description>
<gpml:valueType xmlns:gpml="http://www.gplates.org/gplates">gpml:plateId</gpml:valueType>
</gpml:ConstantValue>
</gpml:reconstructionPlateId>
<gml:validTime>
<gml:TimePeriod>
<gml:begin>
<gml:TimeInstant>
<gml:timePosition gml:frame="http://gplates.org/TRS/flat">485</gml:timePosition>
</gml:TimeInstant>
</gml:begin>
<gml:end>
<gml:TimeInstant>
<gml:timePosition gml:frame="http://gplates.org/TRS/flat">475.10000000000002</gml:timePosition>
</gml:TimeInstant>
</gml:end>
</gml:TimePeriod>
</gml:validTime>
<gml:description></gml:description>
<gpml:conjugatePlateId>0</gpml:conjugatePlateId>
<gpml:spreadingAsymmetry>0</gpml:spreadingAsymmetry>
<gpml:leftPlate>0</gpml:leftPlate>
<gpml:rightPlate>0</gpml:rightPlate>
<gpml:geometryImportTime>
<gml:TimeInstant>
<gml:timePosition gml:frame="http://gplates.org/TRS/flat">0</gml:timePosition>
</gml:TimeInstant>
</gpml:geometryImportTime>
</gpml:UnclassifiedFeature>
</gml:featureMember>
<gml:featureMember>
<gpml:UnclassifiedFeature>
<gpml:identity>GPlates-6ec75b05-c50c-494d-ad7a-7ce7782d4347</gpml:identity>
<gpml:revision>GPlates-811cce95-7d47-4500-9acd-947b4c7201a6</gpml:revision>
<gpml:unclassifiedGeometry>
<gpml:ConstantValue>
<gpml:value>
<gml:Polygon>
<gml:exterior>
<gml:LinearRing>
<gml:posList gml:dimension="2">2.7168739225711138 -18.053842842733815 2.7782746575718638 -17.520803881613322 2.8057797450787407 -16.992368010229605 2.7997431617699666 -16.47061207503717 2.7606501197202444 -15.957499096980394 2.6890981202273641 -15.454873599056258 2.5857782363558237 -14.964460590563373 2.4514573891053604 -14.487868213378096 2.2869666719214119 -14.026604541791654 2.0931737623219013 -13.582047548850662 1.8709825564225029 -13.155494397164274 1.6213214926733475 -12.748160679938957 1.3451380691030268 -12.361192771157585 1.0433965427433283 -11.995680162057619 0.71707873156636337 -11.652667141590506 0.36718772337267902 -11.33316323674245 -0.0052458060671628712 -11.038151901427556 -0.39915505231473303 -10.768597024739172 -0.81342678282380254 -10.525446917575591 -1.2468898082069375 -10.309635530038541 -1.698302806438319 -10.122080750551723 -2.1663421190355114 -9.9636797410187441 -2.6495901551526608 -9.8353013687689845 -3.1465250330213768 -9.7377759020351426 -3.6555120565193726 -9.6718822365358701 -4.1747975683755589 -9.6383330114297419 -4.7025056434212491 -9.637758049316874 -5.2366379897838273 -9.6706866145137713 -5.7750773181522108 -9.7375290257540179 -6.315594324315378 -9.8385581845831336 -6.8558583125417956 -9.9738915908365424 -7.3934513705993323 -10.143474413851736 -7.9258858940410599 -10.347064174300829 -8.450625149903777 -10.584217567815356 -8.965106469974998 -10.854279928025852 -9.4667665730465966 -11.1563777824226 -9.9530684360595849 -11.48941489802217 -10.421534944473869 -11.852076972431412 -10.869751083170483 -12.242814727348067 -11.295424437870437 -12.659875649831383 -11.696401063194669 -13.101310822882263 -12.07068746009838 -13.564989966152547 -12.416471951095499 -14.048621793739391 -12.732142752369816 -14.549777742404105 -13.016302234958873 -15.065918508934137 -13.267776985675207 -15.594422704407039 -13.485623416872809 -16.132616823558088 -13.669128827601339 -16.677805648111359 -13.81780798090762 -17.227302161342593 -13.931395425922535 -17.778456052746954 -14.009832943944678 -18.328670859036379 -14.053258589852868 -18.875449284184327 -14.061985095229147 -19.416406819625227 -14.036479493661755 -19.949268823561646 -13.977344475237981 -20.471891433966306 -13.885297687567133 -20.982267875486087 -13.761151544465067 -21.478530459677689 -13.605796713083251 -21.958941874970208 -13.420180933283888 -22.421905171130994 -13.205292223583051 -22.86595319741533 -12.962152314059812 -23.28972473891497 -12.691806399538741 -23.691958704609743 -12.395318037923802 -24.07148140264459 -12.073767340813911 -24.427194020335218 -11.728252290468136 -24.758061006914488 -11.359892901890195 -25.063099968436767 -10.969837850596255 -25.341373581768114 -10.559273104209129 -25.591983924182902 -10.129432028132205 -25.814069500146353 -9.6816063823084395 -26.006805128936925 -9.2171575893911211 -26.169404736960338 -8.7375276377626427 -26.301126978911778 -8.2442489890210844 -26.401283495894894 -7.7389528908360656 -26.469249511101722 -7.2233755523061163 -26.504476370054419 -6.6993617175922822 -26.506505557386756 -6.168865270183935 -26.474983668746372 -5.6339466091185226 -26.409677785595814 -5.0967666541012475 -26.310490691452575 -4.5595774535932341 -26.177475377933277 -4.0247094843610398 -26.010848314577053 -3.4945558395655723 -25.811000994484807 -2.9715536029720413 -25.578509315475696 -2.4581627976602238 -25.314140411694936 -1.9568433773948788 -25.018856612278118 -1.4700307963202357 -24.693816271440987 -1.0001075849047583 -24.34036876878719 -0.54938783706593042 -23.960055989091735 -0.12009088072745611 -23.554604979592924 0.2856987801647472 -23.125900890294972 0.66604359405298708 -22.675978041424962 1.0191726411728448 -22.207001109315261 1.3434984029768158 -21.721243863197628 1.6376301713554935 -21.221065938473295 1.9003837469561202 -20.708888216068054 2.1307871913886878 -20.187167446068592 2.3280825259707352 -19.658370801833343 2.4917234054220549 -19.124951073680535 2.6213689334228527 -18.589323205650718 2.7168739225711138 -18.053842842733815 </gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gpml:value>
<gml:description></gml:description>
<gpml:valueType xmlns:gml="http://www.opengis.net/gml">gml:Polygon</gpml:valueType>
</gpml:ConstantValue>
</gpml:unclassifiedGeometry>
<gpml:shapefileAttributes>
<gpml:KeyValueDictionary>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>Name</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>Lau</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>PlateID</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>101</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>FROMAGE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:double</gpml:valueType>
<gpml:value>495</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>TOAGE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:double</gpml:valueType>
<gpml:value>485.10000000000002</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>PLATEID1</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>101</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>NAME_1</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value></gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>DESCR</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value></gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>PLATEID2</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>0</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>GPGIM_TYPE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>gpml:UnclassifiedFeature</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>FEATURE_ID</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>GPlates-6ec75b05-c50c-494d-ad7a-7ce7782d4347</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>RECON_METH</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value></gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>L_PLATE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>0</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>R_PLATE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value>0</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>SPREAD_ASY</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:double</gpml:valueType>
<gpml:value>0</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>IMPORT_AGE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:double</gpml:valueType>
<gpml:value>0</gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
<gpml:element>
<gpml:KeyValueDictionaryElement>
<gpml:key>TYPE</gpml:key>
<gpml:valueType xmlns:xsi="http://www.w3.org/XMLSchema-instance">xsi:string</gpml:valueType>
<gpml:value></gpml:value>
</gpml:KeyValueDictionaryElement>
</gpml:element>
</gpml:KeyValueDictionary>
</gpml:shapefileAttributes>
<gpml:reconstructionPlateId>
<gpml:ConstantValue>
<gpml:value>101</gpml:value>
<gml:description></gml:description>
<gpml:valueType xmlns:gpml="http://www.gplates.org/gplates">gpml:plateId</gpml:valueType>
</gpml:ConstantValue>
</gpml:reconstructionPlateId>
<gml:validTime>
<gml:TimePeriod>
<gml:begin>
<gml:TimeInstant>
<gml:timePosition gml:frame="http://gplates.org/TRS/flat">495</gml:timePosition>
</gml:TimeInstant>
</gml:begin>
<gml:end>
<gml:TimeInstant>
<gml:timePosition gml:frame="http://gplates.org/TRS/flat">485.10000000000002</gml:timePosition>
</gml:TimeInstant>
</gml:end>
</gml:TimePeriod>
</gml:validTime>
<gml:description></gml:description>
<gpml:conjugatePlateId>0</gpml:conjugatePlateId>