-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbluehouse.dae
1613 lines (1613 loc) · 832 KB
/
bluehouse.dae
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"?>
<COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<asset>
<contributor>
<author>Morina Ramiz</author>
<authoring_tool>OpenCOLLADA2016; Version: 1.6; Revision: 32</authoring_tool>
<comments>
ColladaMaya export options:
bakeTransforms=0;relativePaths=0;preserveSourceTree=0;copyTextures=0;exportTriangles=0;exportCgfxFileReferences=1;
isSampling=0;curveConstrainSampling=0;removeStaticCurves=1;exportPhysics=0;exportConvexMeshGeometries=1;exportPolygonMeshes=1;exportLights=1;
exportCameras=1;exportAnimationsOnly=0;exportSeparateFile=0;modelNameDAE=;exportJoints=1;exportSkin=1;exportAnimations=1;exportOptimizedBezierAnimation=0;exportInvisibleNodes=0;exportDefaultCameras=0;
exportTexCoords=1;exportNormals=1;exportNormalsPerVertex=1;exportVertexColors=1;exportVertexColorsPerVertex=1;
exportTexTangents=0;exportTangents=0;exportReferencedMaterials=0;exportMaterialsOnly=0;
exportXRefs=1;dereferenceXRefs=1;exportCameraAsLookat=0;cameraXFov=0;cameraYFov=0;doublePrecision=0
</comments>
<source_data></source_data>
</contributor>
<created>2016-10-11T16:52:39</created>
<modified>2016-10-11T16:52:39</modified>
<unit name="centimeter" meter="0.01"/>
<up_axis>Z_UP</up_axis>
</asset>
<library_materials>
<material id="housesmall_mat" name="housesmall_mat">
<instance_effect url="#housesmall_mat-fx"/>
</material>
<material id="plank_mat" name="plank_mat">
<instance_effect url="#plank_mat-fx"/>
</material>
<material id="grasshouse_mat" name="grasshouse_mat">
<instance_effect url="#grasshouse_mat-fx"/>
</material>
<material id="mushroom_mat" name="mushroom_mat">
<instance_effect url="#mushroom_mat-fx"/>
</material>
<material id="base_mat" name="base_mat">
<instance_effect url="#base_mat-fx"/>
</material>
<material id="fence_mat" name="fence_mat">
<instance_effect url="#fence_mat-fx"/>
</material>
<material id="stone_mat" name="stone_mat">
<instance_effect url="#stone_mat-fx"/>
</material>
<material id="cog_mat" name="cog_mat">
<instance_effect url="#cog_mat-fx"/>
</material>
<material id="grass_mat" name="grass_mat">
<instance_effect url="#grass_mat-fx"/>
</material>
<material id="girder_mat" name="girder_mat">
<instance_effect url="#girder_mat-fx"/>
</material>
<material id="housebig_mat" name="housebig_mat">
<instance_effect url="#housebig_mat-fx"/>
</material>
</library_materials>
<library_effects>
<effect id="base_mat-fx">
<profile_COMMON>
<newparam sid="bluehouse_base_col_png-surface">
<surface type="2D">
<init_from>bluehouse_base_col_png</init_from>
</surface>
</newparam>
<newparam sid="bluehouse_base_col_png-sampler">
<sampler2D>
<source>bluehouse_base_col_png-surface</source>
</sampler2D>
</newparam>
<technique sid="common">
<phong>
<emission>
<color>0 0 0 1</color>
</emission>
<ambient>
<color>1 1 1 1</color>
</ambient>
<diffuse>
<texture texture="bluehouse_base_col_png-sampler" texcoord="TEX0">
<extra>
<technique profile="OpenCOLLADAMaya">
<blend_mode sid="blend_mode" type="string">NONE</blend_mode>
</technique>
</extra>
</texture>
</diffuse>
<specular>
<color>0.5 0.5 0.5 1</color>
</specular>
<shininess>
<float>20</float>
</shininess>
<reflective>
<color>0 0 0 1</color>
</reflective>
<reflectivity>
<float>0.5</float>
</reflectivity>
<transparent opaque="RGB_ZERO">
<color>0 0 0 1</color>
</transparent>
<transparency>
<float>1</float>
</transparency>
</phong>
</technique>
</profile_COMMON>
<extra>
<technique profile="OpenCOLLADAMaya">
<originalMayaNodeId sid="originalMayaNodeId" type="string">base_mat</originalMayaNodeId>
</technique>
</extra>
</effect>
<effect id="cog_mat-fx">
<profile_COMMON>
<newparam sid="cog_col_png-surface">
<surface type="2D">
<init_from>cog_col_png</init_from>
</surface>
</newparam>
<newparam sid="cog_col_png-sampler">
<sampler2D>
<source>cog_col_png-surface</source>
</sampler2D>
</newparam>
<technique sid="common">
<phong>
<emission>
<color>0 0 0 1</color>
</emission>
<ambient>
<color>1 1 1 1</color>
</ambient>
<diffuse>
<texture texture="cog_col_png-sampler" texcoord="TEX0">
<extra>
<technique profile="OpenCOLLADAMaya">
<blend_mode sid="blend_mode" type="string">NONE</blend_mode>
</technique>
</extra>
</texture>
</diffuse>
<specular>
<color>0.5 0.5 0.5 1</color>
</specular>
<shininess>
<float>20</float>
</shininess>
<reflective>
<color>0 0 0 1</color>
</reflective>
<reflectivity>
<float>0.5</float>
</reflectivity>
<transparent opaque="RGB_ZERO">
<color>0 0 0 1</color>
</transparent>
<transparency>
<float>1</float>
</transparency>
</phong>
</technique>
</profile_COMMON>
<extra>
<technique profile="OpenCOLLADAMaya">
<originalMayaNodeId sid="originalMayaNodeId" type="string">cog_mat</originalMayaNodeId>
</technique>
</extra>
</effect>
<effect id="fence_mat-fx">
<profile_COMMON>
<newparam sid="bluehouse_fence_col_png-surface">
<surface type="2D">
<init_from>bluehouse_fence_col_png</init_from>
</surface>
</newparam>
<newparam sid="bluehouse_fence_col_png-sampler">
<sampler2D>
<source>bluehouse_fence_col_png-surface</source>
</sampler2D>
</newparam>
<technique sid="common">
<phong>
<emission>
<color>0 0 0 1</color>
</emission>
<ambient>
<color>1 1 1 1</color>
</ambient>
<diffuse>
<texture texture="bluehouse_fence_col_png-sampler" texcoord="TEX0">
<extra>
<technique profile="OpenCOLLADAMaya">
<blend_mode sid="blend_mode" type="string">NONE</blend_mode>
</technique>
</extra>
</texture>
</diffuse>
<specular>
<color>0.5 0.5 0.5 1</color>
</specular>
<shininess>
<float>20</float>
</shininess>
<reflective>
<color>0 0 0 1</color>
</reflective>
<reflectivity>
<float>0.5</float>
</reflectivity>
<transparent opaque="A_ONE">
<texture texture="bluehouse_fence_col_png-sampler" texcoord="TEX1">
<extra>
<technique profile="OpenCOLLADAMaya">
<blend_mode sid="blend_mode" type="string">NONE</blend_mode>
</technique>
</extra>
</texture>
</transparent>
<transparency>
<float>1</float>
</transparency>
</phong>
</technique>
</profile_COMMON>
<extra>
<technique profile="OpenCOLLADAMaya">
<originalMayaNodeId sid="originalMayaNodeId" type="string">fence_mat</originalMayaNodeId>
</technique>
</extra>
</effect>
<effect id="girder_mat-fx">
<profile_COMMON>
<newparam sid="girder_col_png-surface">
<surface type="2D">
<init_from>girder_col_png</init_from>
</surface>
</newparam>
<newparam sid="girder_col_png-sampler">
<sampler2D>
<source>girder_col_png-surface</source>
</sampler2D>
</newparam>
<technique sid="common">
<phong>
<emission>
<color>0 0 0 1</color>
</emission>
<ambient>
<color>1 1 1 1</color>
</ambient>
<diffuse>
<texture texture="girder_col_png-sampler" texcoord="TEX0">
<extra>
<technique profile="OpenCOLLADAMaya">
<blend_mode sid="blend_mode" type="string">NONE</blend_mode>
</technique>
</extra>
</texture>
</diffuse>
<specular>
<color>0.5 0.5 0.5 1</color>
</specular>
<shininess>
<float>20</float>
</shininess>
<reflective>
<color>0 0 0 1</color>
</reflective>
<reflectivity>
<float>0.5</float>
</reflectivity>
<transparent opaque="RGB_ZERO">
<color>0 0 0 1</color>
</transparent>
<transparency>
<float>1</float>
</transparency>
</phong>
</technique>
</profile_COMMON>
<extra>
<technique profile="OpenCOLLADAMaya">
<originalMayaNodeId sid="originalMayaNodeId" type="string">girder_mat</originalMayaNodeId>
</technique>
</extra>
</effect>
<effect id="grass_mat-fx">
<profile_COMMON>
<newparam sid="grass_col_png-surface">
<surface type="2D">
<init_from>grass_col_png</init_from>
</surface>
</newparam>
<newparam sid="grass_col_png-sampler">
<sampler2D>
<source>grass_col_png-surface</source>
</sampler2D>
</newparam>
<technique sid="common">
<phong>
<emission>
<color>0 0 0 1</color>
</emission>
<ambient>
<color>1 1 1 1</color>
</ambient>
<diffuse>
<texture texture="grass_col_png-sampler" texcoord="TEX0">
<extra>
<technique profile="OpenCOLLADAMaya">
<blend_mode sid="blend_mode" type="string">NONE</blend_mode>
</technique>
</extra>
</texture>
</diffuse>
<specular>
<color>0.5 0.5 0.5 1</color>
</specular>
<shininess>
<float>20</float>
</shininess>
<reflective>
<color>0 0 0 1</color>
</reflective>
<reflectivity>
<float>0.5</float>
</reflectivity>
<transparent opaque="RGB_ZERO">
<color>0 0 0 1</color>
</transparent>
<transparency>
<float>1</float>
</transparency>
</phong>
</technique>
</profile_COMMON>
<extra>
<technique profile="OpenCOLLADAMaya">
<originalMayaNodeId sid="originalMayaNodeId" type="string">grass_mat</originalMayaNodeId>
</technique>
</extra>
</effect>
<effect id="grasshouse_mat-fx">
<profile_COMMON>
<newparam sid="bluehouse_grass_col_png-surface">
<surface type="2D">
<init_from>bluehouse_grass_col_png</init_from>
</surface>
</newparam>
<newparam sid="bluehouse_grass_col_png-sampler">
<sampler2D>
<source>bluehouse_grass_col_png-surface</source>
</sampler2D>
</newparam>
<technique sid="common">
<phong>
<emission>
<color>0 0 0 1</color>
</emission>
<ambient>
<color>1 1 1 1</color>
</ambient>
<diffuse>
<texture texture="bluehouse_grass_col_png-sampler" texcoord="TEX0">
<extra>
<technique profile="OpenCOLLADAMaya">
<blend_mode sid="blend_mode" type="string">NONE</blend_mode>
</technique>
</extra>
</texture>
</diffuse>
<specular>
<color>0.5 0.5 0.5 1</color>
</specular>
<shininess>
<float>20</float>
</shininess>
<reflective>
<color>0 0 0 1</color>
</reflective>
<reflectivity>
<float>0.5</float>
</reflectivity>
<transparent opaque="A_ONE">
<texture texture="bluehouse_grass_col_png-sampler" texcoord="TEX1">
<extra>
<technique profile="OpenCOLLADAMaya">
<blend_mode sid="blend_mode" type="string">NONE</blend_mode>
</technique>
</extra>
</texture>
</transparent>
<transparency>
<float>1</float>
</transparency>
</phong>
</technique>
</profile_COMMON>
<extra>
<technique profile="OpenCOLLADAMaya">
<originalMayaNodeId sid="originalMayaNodeId" type="string">grasshouse_mat</originalMayaNodeId>
</technique>
</extra>
</effect>
<effect id="housebig_mat-fx">
<profile_COMMON>
<newparam sid="bluehouse_bighouse_col_png-surface">
<surface type="2D">
<init_from>bluehouse_bighouse_col_png</init_from>
</surface>
</newparam>
<newparam sid="bluehouse_bighouse_col_png-sampler">
<sampler2D>
<source>bluehouse_bighouse_col_png-surface</source>
</sampler2D>
</newparam>
<technique sid="common">
<phong>
<emission>
<color>0 0 0 1</color>
</emission>
<ambient>
<color>1 1 1 1</color>
</ambient>
<diffuse>
<texture texture="bluehouse_bighouse_col_png-sampler" texcoord="TEX0">
<extra>
<technique profile="OpenCOLLADAMaya">
<blend_mode sid="blend_mode" type="string">NONE</blend_mode>
</technique>
</extra>
</texture>
</diffuse>
<specular>
<color>0.5 0.5 0.5 1</color>
</specular>
<shininess>
<float>20</float>
</shininess>
<reflective>
<color>0 0 0 1</color>
</reflective>
<reflectivity>
<float>0.5</float>
</reflectivity>
<transparent opaque="RGB_ZERO">
<color>0 0 0 1</color>
</transparent>
<transparency>
<float>1</float>
</transparency>
</phong>
</technique>
</profile_COMMON>
<extra>
<technique profile="OpenCOLLADAMaya">
<originalMayaNodeId sid="originalMayaNodeId" type="string">housebig_mat</originalMayaNodeId>
</technique>
</extra>
</effect>
<effect id="housesmall_mat-fx">
<profile_COMMON>
<newparam sid="bluehouse_smallhouse_col_png-surface">
<surface type="2D">
<init_from>bluehouse_smallhouse_col_png</init_from>
</surface>
</newparam>
<newparam sid="bluehouse_smallhouse_col_png-sampler">
<sampler2D>
<source>bluehouse_smallhouse_col_png-surface</source>
</sampler2D>
</newparam>
<technique sid="common">
<phong>
<emission>
<color>0 0 0 1</color>
</emission>
<ambient>
<color>1 1 1 1</color>
</ambient>
<diffuse>
<texture texture="bluehouse_smallhouse_col_png-sampler" texcoord="TEX0">
<extra>
<technique profile="OpenCOLLADAMaya">
<blend_mode sid="blend_mode" type="string">NONE</blend_mode>
</technique>
</extra>
</texture>
</diffuse>
<specular>
<color>0.5 0.5 0.5 1</color>
</specular>
<shininess>
<float>20</float>
</shininess>
<reflective>
<color>0 0 0 1</color>
</reflective>
<reflectivity>
<float>0.5</float>
</reflectivity>
<transparent opaque="RGB_ZERO">
<color>0 0 0 1</color>
</transparent>
<transparency>
<float>1</float>
</transparency>
</phong>
</technique>
</profile_COMMON>
<extra>
<technique profile="OpenCOLLADAMaya">
<originalMayaNodeId sid="originalMayaNodeId" type="string">housesmall_mat</originalMayaNodeId>
</technique>
</extra>
</effect>
<effect id="mushroom_mat-fx">
<profile_COMMON>
<newparam sid="bluehouse_mushroom_col_png-surface">
<surface type="2D">
<init_from>bluehouse_mushroom_col_png</init_from>
</surface>
</newparam>
<newparam sid="bluehouse_mushroom_col_png-sampler">
<sampler2D>
<source>bluehouse_mushroom_col_png-surface</source>
</sampler2D>
</newparam>
<technique sid="common">
<phong>
<emission>
<color>0 0 0 1</color>
</emission>
<ambient>
<color>1 1 1 1</color>
</ambient>
<diffuse>
<texture texture="bluehouse_mushroom_col_png-sampler" texcoord="TEX0">
<extra>
<technique profile="OpenCOLLADAMaya">
<blend_mode sid="blend_mode" type="string">NONE</blend_mode>
</technique>
</extra>
</texture>
</diffuse>
<specular>
<color>0.5 0.5 0.5 1</color>
</specular>
<shininess>
<float>20</float>
</shininess>
<reflective>
<color>0 0 0 1</color>
</reflective>
<reflectivity>
<float>0.5</float>
</reflectivity>
<transparent opaque="RGB_ZERO">
<color>0 0 0 1</color>
</transparent>
<transparency>
<float>1</float>
</transparency>
</phong>
</technique>
</profile_COMMON>
<extra>
<technique profile="OpenCOLLADAMaya">
<originalMayaNodeId sid="originalMayaNodeId" type="string">mushroom_mat</originalMayaNodeId>
</technique>
</extra>
</effect>
<effect id="plank_mat-fx">
<profile_COMMON>
<newparam sid="bluehouse_plank_col_png-surface">
<surface type="2D">
<init_from>bluehouse_plank_col_png</init_from>
</surface>
</newparam>
<newparam sid="bluehouse_plank_col_png-sampler">
<sampler2D>
<source>bluehouse_plank_col_png-surface</source>
</sampler2D>
</newparam>
<technique sid="common">
<phong>
<emission>
<color>0 0 0 1</color>
</emission>
<ambient>
<color>1 1 1 1</color>
</ambient>
<diffuse>
<texture texture="bluehouse_plank_col_png-sampler" texcoord="TEX0">
<extra>
<technique profile="OpenCOLLADAMaya">
<blend_mode sid="blend_mode" type="string">NONE</blend_mode>
</technique>
</extra>
</texture>
</diffuse>
<specular>
<color>0.5 0.5 0.5 1</color>
</specular>
<shininess>
<float>20</float>
</shininess>
<reflective>
<color>0 0 0 1</color>
</reflective>
<reflectivity>
<float>0.5</float>
</reflectivity>
<transparent opaque="RGB_ZERO">
<color>0 0 0 1</color>
</transparent>
<transparency>
<float>1</float>
</transparency>
</phong>
</technique>
</profile_COMMON>
<extra>
<technique profile="OpenCOLLADAMaya">
<originalMayaNodeId sid="originalMayaNodeId" type="string">plank_mat</originalMayaNodeId>
</technique>
</extra>
</effect>
<effect id="stone_mat-fx">
<profile_COMMON>
<newparam sid="stone_col_png-surface">
<surface type="2D">
<init_from>stone_col_png</init_from>
</surface>
</newparam>
<newparam sid="stone_col_png-sampler">
<sampler2D>
<source>stone_col_png-surface</source>
</sampler2D>
</newparam>
<technique sid="common">
<phong>
<emission>
<color>0 0 0 1</color>
</emission>
<ambient>
<color>1 1 1 1</color>
</ambient>
<diffuse>
<texture texture="stone_col_png-sampler" texcoord="TEX0">
<extra>
<technique profile="OpenCOLLADAMaya">
<blend_mode sid="blend_mode" type="string">NONE</blend_mode>
</technique>
</extra>
</texture>
</diffuse>
<specular>
<color>0.5 0.5 0.5 1</color>
</specular>
<shininess>
<float>20</float>
</shininess>
<reflective>
<color>0 0 0 1</color>
</reflective>
<reflectivity>
<float>0.5</float>
</reflectivity>
<transparent opaque="RGB_ZERO">
<color>0 0 0 1</color>
</transparent>
<transparency>
<float>1</float>
</transparency>
</phong>
</technique>
</profile_COMMON>
<extra>
<technique profile="OpenCOLLADAMaya">
<originalMayaNodeId sid="originalMayaNodeId" type="string">stone_mat</originalMayaNodeId>
</technique>
</extra>
</effect>
</library_effects>
<library_images>
<image id="bluehouse_base_col_png" name="bluehouse_base_col_png">
<init_from>bluehouse_base_col.png</init_from>
<extra>
<technique profile="OpenCOLLADAMaya">
<originalMayaNodeId sid="originalMayaNodeId" type="string">bluehouse_base_col_png</originalMayaNodeId>
<dgnode_type sid="dgnode_type" type="string">kFile</dgnode_type>
<image_sequence sid="image_sequence" type="bool">0</image_sequence>
</technique>
</extra>
</image>
<image id="bluehouse_bighouse_col_png" name="bluehouse_bighouse_col_png">
<init_from>bluehouse_bighouse_col.png</init_from>
<extra>
<technique profile="OpenCOLLADAMaya">
<originalMayaNodeId sid="originalMayaNodeId" type="string">bluehouse_bighouse_col_png</originalMayaNodeId>
<dgnode_type sid="dgnode_type" type="string">kFile</dgnode_type>
<image_sequence sid="image_sequence" type="bool">0</image_sequence>
</technique>
</extra>
</image>
<image id="bluehouse_fence_col_png" name="bluehouse_fence_col_png">
<init_from>bluehouse_fence_col.png</init_from>
<extra>
<technique profile="OpenCOLLADAMaya">
<originalMayaNodeId sid="originalMayaNodeId" type="string">bluehouse_fence_col_png</originalMayaNodeId>
<dgnode_type sid="dgnode_type" type="string">kFile</dgnode_type>
<image_sequence sid="image_sequence" type="bool">0</image_sequence>
<dgnode_type sid="dgnode_type" type="string">kFile</dgnode_type>
<image_sequence sid="image_sequence" type="bool">0</image_sequence>
</technique>
</extra>
</image>
<image id="bluehouse_grass_col_png" name="bluehouse_grass_col_png">
<init_from>bluehouse_grass_col.png</init_from>
<extra>
<technique profile="OpenCOLLADAMaya">
<originalMayaNodeId sid="originalMayaNodeId" type="string">bluehouse_grass_col_png</originalMayaNodeId>
<dgnode_type sid="dgnode_type" type="string">kFile</dgnode_type>
<image_sequence sid="image_sequence" type="bool">0</image_sequence>
<dgnode_type sid="dgnode_type" type="string">kFile</dgnode_type>
<image_sequence sid="image_sequence" type="bool">0</image_sequence>
</technique>
</extra>
</image>
<image id="bluehouse_mushroom_col_png" name="bluehouse_mushroom_col_png">
<init_from>bluehouse_mushroom_col.png</init_from>
<extra>
<technique profile="OpenCOLLADAMaya">
<originalMayaNodeId sid="originalMayaNodeId" type="string">bluehouse_mushroom_col_png</originalMayaNodeId>
<dgnode_type sid="dgnode_type" type="string">kFile</dgnode_type>
<image_sequence sid="image_sequence" type="bool">0</image_sequence>
</technique>
</extra>
</image>
<image id="bluehouse_plank_col_png" name="bluehouse_plank_col_png">
<init_from>bluehouse_plank_col.png</init_from>
<extra>
<technique profile="OpenCOLLADAMaya">
<originalMayaNodeId sid="originalMayaNodeId" type="string">bluehouse_plank_col_png</originalMayaNodeId>
<dgnode_type sid="dgnode_type" type="string">kFile</dgnode_type>
<image_sequence sid="image_sequence" type="bool">0</image_sequence>
</technique>
</extra>
</image>
<image id="bluehouse_smallhouse_col_png" name="bluehouse_smallhouse_col_png">
<init_from>bluehouse_smallhouse_col.png</init_from>
<extra>
<technique profile="OpenCOLLADAMaya">
<originalMayaNodeId sid="originalMayaNodeId" type="string">bluehouse_smallhouse_col_png</originalMayaNodeId>
<dgnode_type sid="dgnode_type" type="string">kFile</dgnode_type>
<image_sequence sid="image_sequence" type="bool">0</image_sequence>
</technique>
</extra>
</image>
<image id="cog_col_png" name="cog_col_png">
<init_from>cog_col.png</init_from>
<extra>
<technique profile="OpenCOLLADAMaya">
<originalMayaNodeId sid="originalMayaNodeId" type="string">cog_col_png</originalMayaNodeId>
<dgnode_type sid="dgnode_type" type="string">kFile</dgnode_type>
<image_sequence sid="image_sequence" type="bool">0</image_sequence>
</technique>
</extra>
</image>
<image id="girder_col_png" name="girder_col_png">
<init_from>girder_col.png</init_from>
<extra>
<technique profile="OpenCOLLADAMaya">
<originalMayaNodeId sid="originalMayaNodeId" type="string">girder_col_png</originalMayaNodeId>
<dgnode_type sid="dgnode_type" type="string">kFile</dgnode_type>
<image_sequence sid="image_sequence" type="bool">0</image_sequence>
</technique>
</extra>
</image>
<image id="grass_col_png" name="grass_col_png">
<init_from>grass_col.png</init_from>
<extra>
<technique profile="OpenCOLLADAMaya">
<originalMayaNodeId sid="originalMayaNodeId" type="string">grass_col_png</originalMayaNodeId>
<dgnode_type sid="dgnode_type" type="string">kFile</dgnode_type>
<image_sequence sid="image_sequence" type="bool">0</image_sequence>
</technique>
</extra>
</image>
<image id="stone_col_png" name="stone_col_png">
<init_from>stone_col.png</init_from>
<extra>
<technique profile="OpenCOLLADAMaya">
<originalMayaNodeId sid="originalMayaNodeId" type="string">stone_col_png</originalMayaNodeId>
<dgnode_type sid="dgnode_type" type="string">kFile</dgnode_type>
<image_sequence sid="image_sequence" type="bool">0</image_sequence>
</technique>
</extra>
</image>
</library_images>
<library_geometries>
<geometry id="housesmallShape" name="housesmallShape">
<mesh>
<source id="housesmallShape-positions" name="housesmallShape-positions">
<float_array id="housesmallShape-positions-array" count="735">-0.03066371 0.04282102 0.110899 -0.03988614 0.05906105 0.110898 -0.05586161 0.06843676 0.110898 -0.07430644 0.06843676 0.110898 -0.0902798 0.05906105 0.110898 -0.09950222 0.04282101 0.110899 -0.09950222 0.0240675 0.110899 -0.03988614 0.007827459 0.110899 -0.03066371 0.0240675 0.110899 -0.03183751 0.04250079 0.1199566 -0.04074497 0.05818752 0.1199566 -0.07399358 0.06724406 0.1199566 -0.08942305 0.05818752 0.1199566 -0.09833051 0.04250184 0.1199566 -0.09833052 0.02438667 0.1199571 -0.04074496 0.008699937 0.1199571 -0.03183752 0.02438772 0.1199571 -0.03527702 0.04156427 0.1283979 -0.04326475 0.05562889 0.1283979 -0.07306965 0.06374995 0.1283979 -0.08690327 0.05562784 0.1283979 -0.09489101 0.04156531 0.1283979 -0.09489101 0.02532319 0.1283979 -0.04326476 0.01125963 0.1283979 -0.03527702 0.02532424 0.1283979 -0.04074497 0.04007445 0.1356465 -0.04726702 0.05155838 0.1356465 -0.05856407 0.05818752 0.1356465 -0.07160398 0.05818752 0.1356465 -0.08290102 0.05155838 0.1356465 -0.08942308 0.04007445 0.1356465 -0.08821777 0.02550797 0.1369258 -0.04895108 0.01480937 0.1369255 -0.04074497 0.02681406 0.135646 -0.04787597 0.03813211 0.1412079 -0.05248717 0.04625212 0.1412079 -0.0604707 0.05094104 0.1412079 -0.06969313 0.05094104 0.1412079 -0.07768085 0.04625213 0.1412079 -0.08229207 0.03813211 0.1412079 -0.08229207 0.0287564 0.1412079 -0.07768086 0.02063639 0.1412079 -0.0604707 0.01594748 0.1412079 -0.05248718 0.02063534 0.1412079 -0.04787597 0.0287564 0.1412079 -0.05617446 0.03101687 0.1447041 -0.05441482 0.03909068 0.1440993 -0.07170897 0.04392552 0.1440048 -0.07399356 0.0358706 0.1447041 -0.07475372 0.03137069 0.1447041 -0.06629562 0.02884249 0.1449839 -0.05772833 0.02673427 0.1447041 -0.06508192 0.0334432 0.1458968 -0.03066371 0.04282101 0.07245125 -0.03988614 0.05906105 0.0724502 -0.05586159 0.06843676 0.0724502 -0.07430644 0.06843676 0.0724502 -0.0902798 0.05906105 0.0724502 -0.09950222 0.04282102 0.07245125 -0.09950222 0.02406749 0.07245072 -0.03988614 0.007827459 0.072451 -0.03066371 0.02406749 0.07245073 -0.1025995 0.02224905 0.1111216 -0.09281428 0.005250983 0.1111272 -0.09187566 0.006202199 0.1208514 -0.1013165 0.02263542 0.1208343 -0.07523247 -0.00506755 0.1111272 -0.0748923 -0.003767766 0.1208514 -0.05493347 -0.005067553 0.1111272 -0.05527574 -0.003767762 0.1208514 -0.03809919 0.004678778 0.1111215 -0.03902312 0.005664641 0.1208346 -0.08830597 0.008789182 0.1301292 -0.09758299 0.02374412 0.1301029 -0.07388018 0 0.1301291 -0.0570942 2.87e-4 0.1301291 -0.04170669 0.008521454 0.1301029 -0.08177973 0.01267595 0.1381025 -0.0903176 0.02417457 0.1393563 -0.07227172 0.006170698 0.1381024 -0.06083608 0.006970733 0.1381024 -0.04779197 0.0125888 0.1393563 -0.07920533 0.01908461 0.1439697 -0.05991216 0.01382875 0.1439694 -0.1026121 0.02224275 0.07245072 -0.09273239 0.005334973 0.072451 -0.07520308 -0.004954159 0.07245097 -0.05496287 -0.004955221 0.072451 -0.03809079 0.004666172 0.072451 -0.06670719 0.02728023 0.1505358 -0.07553905 0.03003939 0.1495536 -0.05770314 0.02518039 0.1495531 -0.06241934 0.04357696 0.1513479 -0.08234246 0.01127117 0.1399947 -0.08097338 0.0108386 0.1419523 -0.0724145 0.005626854 0.1413895 -0.0725027 0.005286671 0.1393346 -0.07946151 0.01879904 0.1455277 -0.07847039 0.01737326 0.1467824 -0.06104185 0.00546727 0.1399947 -0.06244035 0.005788524 0.1419521 -0.06139463 0.01272215 0.1467826 -0.05983657 0.01345289 0.145528 -0.06719014 0.02544289 0.1515101 -0.07482091 0.02785558 0.1506319 -0.0593998 0.02365384 0.1506319 -0.05143307 0.04804433 0.1458684 -0.05285674 0.04787949 0.1477814 -0.06018513 0.05202033 0.1477971 -0.05997514 0.05284137 0.1458842 -0.05353709 0.04010594 0.1489331 -0.05471299 0.04082723 0.1505248 -0.06860963 0.05215473 0.1477793 -0.06973092 0.05302195 0.1458695 -0.07061705 0.0452778 0.1504345 -0.07196514 0.04529671 0.1488281 -0.05635926 0.03330042 0.151224 -0.05546053 0.03133604 0.1497373 -0.06496433 0.03393457 0.1509038 -0.06452336 0.03553673 0.1522214 -0.07275888 0.03778984 0.1512072 -0.07446814 0.03653625 0.149731 -0.05455761 0.0733829 0.1215672 -0.05564111 0.06927774 0.131514 -0.03744404 0.06336778 0.1115027 -0.03817058 0.06529542 0.113191 -0.05430983 0.07432782 0.1131784 -0.05465841 0.07299653 0.1115069 -0.03832177 0.06242706 0.1208217 -0.03900632 0.06441665 0.1215756 -0.07272528 0.07470892 0.113191 -0.07430224 0.07340914 0.1115027 -0.07243551 0.07352463 0.1215756 -0.07400617 0.07214715 0.1208217 -0.04093815 0.0595881 0.130294 -0.04182008 0.06134985 0.1314342 -0.07150736 0.06943837 0.1314342 -0.07313684 0.06835907 0.130294 -0.05758975 0.06188111 0.1385106 -0.0570228 0.06403448 0.1382146 -0.04538979 0.05756911 0.1381999 -0.04526378 0.05504409 0.1385075 -0.07027268 0.06434629 0.1381999 -0.07162498 0.06222548 0.1385064 -0.0546836 0.01615327 0.1398571 -0.05384366 0.01398834 0.1424533 -0.08259024 0.02375673 0.1398571 -0.0843877 0.02230996 0.142453 -0.07261609 0.01180243 0.1452526 -0.06662738 0.01304761 0.1468023 -0.06768151 0.01621206 0.148352 -0.07366601 0.01496476 0.1468023 -0.06909259 0.01084491 0.1452526 -0.0712008 0.01716958 0.148352 -0.06956714 0.002395216 0.1659366 -0.07203653 1.904e-4 0.164387 -0.07660995 0.004312359 0.1659366 -0.07414056 0.006517179 0.1674861 -0.07555585 0.001150027 0.1643871 -0.07062126 0.005557556 0.1674861 -0.07340142 0.002057157 0.167958 -0.06851723 0.006445777 0.1583273 -0.06957135 0.009610206 0.1598769 -0.07309064 0.01056772 0.1598769 -0.07555585 0.008365016 0.1583275 -0.07450593 0.005200583 0.1567778 -0.07098663 0.004243068 0.1567778 -0.06825266 0.007411703 0.1565935 -0.06930257 0.01057404 0.1581432 -0.07282186 0.01153365 0.1581432 -0.07529126 0.009328827 0.1565935 -0.07423715 0.006166492 0.155044 -0.07071784 0.005206879 0.155044 -0.0676017 0.01703938 0.1617552 -0.07112101 0.01799901 0.1617552 -0.07138559 0.0170331 0.1634886 -0.06786628 0.01607556 0.1634886 -0.08244326 0.007833764 0.1547551 -0.08139335 0.004671425 0.1532057 -0.08165793 0.003705502 0.1549395 -0.08271203 0.006867841 0.1564891 -0.06526671 2.38698e-4 0.1532701 -0.06280152 0.002443504 0.1548197 -0.06306609 0.001477603 0.1565535 -0.06553549 -7.2721e-4 0.1550039 -0.06235635 0.0109247 0.1602176 -0.06648041 0.01544983 0.1620497 -0.07261188 0.01712129 0.1620497 -0.07840739 0.01529863 0.1602176 -0.08165793 0.01068112 0.1572526 -0.08111617 0.005030505 0.1542879 -0.07699212 5.05373e-4 0.1524555 -0.07086064 -0.001166083 0.1524555 -0.06506092 6.56571e-4 0.154288 -0.06181459 0.00527408 0.1572526 -0.06141143 0.009881075 0.1631749 -0.06611923 0.01504664 0.1652674 -0.07312424 0.01695538 0.1652676 -0.07974289 0.01487445 0.1631749 -0.08345118 0.009599723 0.1597892 -0.08283383 0.003146946 0.1564035 -0.07812182 -0.002020702 0.1543109 -0.07112101 -0.00392735 0.1543109 -0.06450237 -0.001846429 0.1564036 -0.06079408 0.003426239 0.1597892 -0.0582155 0.01118508 0.1635886 -0.06429239 0.01785412 0.1662887 -0.07332583 0.02031511 0.1662887 -0.08186791 0.01762944 0.1635888 -0.0866555 0.01082391 0.1592201 -0.08585758 0.002498113 0.1548514 -0.07978068 -0.004168823 0.1521512 -0.07074304 -0.006629817 0.1521512 -0.06220097 -0.003946245 0.1548513 -0.05741757 0.002859283 0.1592201 -0.05672882 0.01269485 0.1619961 -0.06332648 0.01993294 0.164928 -0.07313684 0.02260601 0.164928 -0.08241386 0.01969146 0.1619961 -0.08760882 0.01230218 0.1572526 -0.08674369 0.003260352 0.152509 -0.08014604 -0.003977746 0.1495774 -0.07033569 -0.00665082 0.1495774 -0.06105866 -0.003736261 0.152509 -0.0558637 0.003653016 0.1572526 -0.05776194 0.0133332 0.1597603 -0.06378422 0.01994135 0.162436 -0.07273787 0.02238135 0.162436 -0.08120436 0.01972086 0.1597603 -0.08594576 0.01297624 0.1554313 -0.08515622 0.004723921 0.1511016 -0.07913393 -0.001882121 0.148426 -0.07018028 -0.004322104 0.148426 -0.06171381 -0.001661643 0.1511016 -0.05697241 0.005083006 0.1554311 -0.06041612 0.01285444 0.1582185 -0.0652247 0.01813339 0.1603556 -0.07238091 0.02008202 0.1603556 -0.07914233 0.01795701 0.1582185 -0.08293042 0.01256888 0.1547599 -0.08229627 0.005977504 0.1513018 -0.07748768 7.00675e-4 0.1491642 -0.07033569 -0.001247972 0.1491643 -0.06357424 8.77053e-4 0.1513018 -0.05978617 0.006263096 0.15476</float_array>
<technique_common>
<accessor source="#housesmallShape-positions-array" count="245" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="housesmallShape-normals" name="housesmallShape-normals">
<float_array id="housesmallShape-normals-array" count="735">0.9666771 0.254795 0.02479964 0.7485731 0.6616533 -0.04304735 0.2598543 0.9539086 -0.1501135 -0.3143449 0.9482929 -0.04390782 -0.7126563 0.7010701 0.02493041 -0.9666787 0.2547928 0.02475693 -0.9873694 0.1568198 0.02256955 0.9363385 -0.3503684 0.02262901 0.9666764 -0.2547976 0.02479636 0.9353823 0.2466584 0.253416 0.9387847 0.2630316 0.2224812 -0.6839893 0.6942617 0.2239629 -0.6891962 0.6782625 0.2548893 -0.9354098 0.2466671 0.2533056 -0.9568844 0.1786183 0.2290585 0.9206375 -0.3160686 0.2291882 0.9353839 -0.2466476 0.2534204 0.8435269 0.2223792 0.4888864 0.8827505 0.1961304 0.4269479 -0.6684546 0.6072494 0.4294378 -0.6208363 0.6108299 0.4913746 -0.8420874 0.2147591 0.4947397 -0.8594992 0.193742 0.4729957 0.8435279 -0.2547908 0.4728026 0.8384711 -0.2283127 0.4948126 0.6991721 0.1841936 0.6908192 0.5516344 0.2026966 0.8090819 0.01772876 0.06809831 0.9975211 -0.3755842 0.4467565 0.8120007 -0.5139361 0.5053183 0.6931977 -0.7043957 0.175981 0.6876463 -0.6880704 0.2298763 0.6882704 0.7125039 -0.1398435 0.6875914 0.6996522 -0.1938128 0.6876944 0.531865 0.1195142 0.8383532 0.6168003 0.4621905 0.6371321 0.2232069 0.8168167 0.5319673 -0.2962609 0.7111822 0.6375338 -0.4015492 0.3660124 0.8395196 -0.5108406 0.1463179 0.8471322 -0.5161635 -0.03553325 0.8557526 -0.812944 0.4407527 0.3806036 0.9247515 -0.02044674 0.3800218 0.4297832 -0.2851041 0.8567392 0.516758 -0.1239759 0.8471075 0.4207355 -0.3679072 0.8292321 0.8452379 -0.1245272 0.5196787 -0.7967187 0.3078764 0.5200495 -0.5560156 -0.1192426 0.8225739 -0.4544558 0.3328557 0.8262428 0.162809 0.5967545 0.7857336 0.5626448 0.06602436 0.8240581 -0.2034298 -0.7440366 0.6364163 0.9669816 0.2548461 0 0.712894 0.7012717 0 0.2628136 0.9648467 0 -0.2628284 0.9648426 0 -0.7129233 0.7012419 0 -0.9669816 0.2548459 0 -0.9887556 0.149541 0 0.9339414 -0.3574263 0 0.9669816 -0.2548462 0 -0.9387367 -0.3436758 0.02569366 -0.7053646 -0.7084008 0.02508085 -0.6847801 -0.6785377 0.2658251 -0.9034626 -0.3328618 0.2701077 -0.2627138 -0.9645631 0.02448579 -0.2534999 -0.9310411 0.2624889 0.2525956 -0.967242 0.02526678 0.2498894 -0.9306179 0.2674049 0.6432348 -0.7652305 0.02590797 0.6176135 -0.7379578 0.2719778 -0.6085733 -0.6097872 0.5077381 -0.8006784 -0.283594 0.5277202 -0.2269636 -0.8334289 0.5038688 0.2181627 -0.8318961 0.5102489 0.5521792 -0.6430329 0.5306665 -0.5830598 -0.554354 0.5939133 -0.6607579 -0.2442942 0.7097319 -0.2241066 -0.8200455 0.5265944 0.2239261 -0.7705938 0.5966928 0.45003 -0.5382831 0.7125478 -0.8867178 0.1235012 0.4455097 0.8330334 -0.3274633 0.445896 -0.9411756 -0.3379157 -0.001254498 -0.7054037 -0.7088023 -0.002191546 -0.2628468 -0.9648328 -0.003029526 0.2523916 -0.9676227 -0.002176695 0.6482716 -0.7614083 -0.001228358 0.2276932 0.8363572 0.4986607 -0.5036994 0.8017623 0.3216581 0.8381423 0.4415551 0.3202289 0.06147605 0.2336994 0.9703635 -0.89115 -0.4431154 -0.09746962 -0.5520295 -0.5670097 0.6113621 -0.2214675 -0.8118935 0.5401676 -0.2539059 -0.9347846 -0.248414 -0.9029399 0.1269857 0.410578 -0.4369234 -0.2880641 0.852125 0.5507364 -0.8289187 -0.09789366 0.1938141 -0.7672554 0.6113553 0.2368944 -0.4658382 0.8525701 0.847607 -0.3350236 0.4114868 -0.01809418 -0.06414964 0.9977762 -0.3734342 0.004533888 0.9276456 0.3262154 -0.1799284 0.9280137 0.8924329 0.4320138 -0.1301059 0.3877902 0.3940039 0.8332945 0.1379903 0.5104522 0.8487622 0.2572468 0.9481903 -0.1864386 0.9705811 -0.2049624 0.1263443 0.2979967 0.1557551 0.941774 -0.1327249 0.5338551 0.8350946 -0.5432562 0.8286401 -0.1350122 -0.1821554 0.2841012 0.941332 -0.9464108 0.300101 0.1193557 0.245055 -0.145553 0.9585209 0.4873239 -0.851455 0.1937519 -0.2485477 -0.9086726 0.3354669 -0.01745137 -0.0556628 0.998297 -0.2841493 3.65631e-4 0.9587799 -0.8477023 -0.4934149 0.1947885 0.2530153 0.9293087 0.2690139 0.2305156 0.8460822 0.4806325 0.5386292 0.05799362 -0.8405447 0.5658896 0.8220752 -0.06293911 0.2624913 0.964664 -0.02284419 0.1011631 0.3708335 -0.923173 0.9533266 -0.2768761 0.1204495 0.5454808 0.7944542 0.2670079 -0.07288564 0.9953556 -0.06288879 -0.4391972 0.3175056 -0.8404142 -0.06900582 0.9609435 0.268003 -0.9659376 0.2291299 0.1202676 0.9221916 -0.3166332 0.22205 0.5093485 0.7150772 0.4787784 -0.07797423 0.8735727 0.4804068 -0.9584681 0.17929 0.221797 -0.08745223 -0.3228533 0.9424001 0.1864832 0.6828189 0.7063868 0.4254437 0.540175 0.7260914 0.3122578 -0.5304774 0.7880919 -0.09408085 0.679822 0.7273176 -0.5404045 -0.3024442 0.785169 0.3528126 0.3465049 0.8691707 0.3023262 -0.3445083 0.8887703 -0.1293694 0.4749791 0.8704358 -0.4359952 -0.1497497 0.8874026 -0.6187429 -0.737371 0.2710001 0.4906562 -0.495887 0.7164863 0.3735123 0.06126313 0.9256002 -0.6753287 -0.1869373 0.7134322 0.1639075 -0.9469179 0.2765516 -0.2899132 0.2380762 0.9269682 0.9420351 -0.3134389 0.1196917 0.2707886 -0.9149068 -0.2993643 -0.9739975 0.1896848 0.1238888 -0.3002471 0.785596 0.5410088 -0.6933905 -0.6573001 -0.2952393 0.6575506 0.5293151 0.5361462 -0.1283471 -0.4810769 0.8672324 0.8788533 -0.2151102 0.4258457 0.7283782 0.2379239 0.6425399 -0.5143291 0.5647241 0.6454087 -0.8713257 0.2430566 0.4262805 -0.5036191 -0.8562415 -0.1149711 -0.004114271 -0.9931017 -0.1171843 0.9853563 0.03835575 -0.1661377 0.8137987 0.5701402 0.1125684 -0.4174898 0.9033645 0.09815634 -0.8275822 0.5301263 -0.1845911 -0.4585628 -0.5189669 -0.721383 0.1327608 -0.6824136 -0.7188089 0.5672543 0.282741 -0.7734857 -0.3498744 0.5254633 -0.7755489 -0.5822256 -0.2741783 0.7654016 0.3599614 -0.5254397 0.7709352 -0.02854761 0.8268875 -0.5616423 0.2487209 7.71978e-4 -0.9685749 0.02701675 -0.8243161 0.5654848 -0.2474102 -0.007447496 0.9688822 -0.210459 0.1157347 -0.9707278 0.4504801 0.6945511 -0.5609514 0.2008625 -0.1263691 0.9714346 -0.4480734 -0.6930913 0.5646722 -0.9049064 -0.2532408 -0.3420725 -0.5064568 -0.6805917 -0.5294303 0.09202144 -0.8417761 -0.5319258 0.6592599 -0.66823 -0.3447393 0.9720319 -0.2308614 -0.04309154 0.9187994 0.299794 0.2567709 0.5207461 0.7288626 0.444503 -0.07973133 0.8911012 0.4467455 -0.6482 0.7161794 0.2586964 -0.959894 0.2770341 -0.04307766 -0.3680624 -0.5276024 0.7656146 -0.261515 -0.6445566 0.7184405 -0.1012595 -0.6869403 0.7196246 0.04957226 -0.6390781 0.7675426 0.1329531 -0.520125 0.8436786 0.1164211 -0.3772163 0.9187786 0.00942234 -0.2665613 0.9637719 -0.1448464 -0.2271326 0.9630318 -0.2913678 -0.2704467 0.9175856 -0.3781361 -0.3837519 0.8424652 0.4630825 -0.1975407 0.864021 0.2156359 0.06667306 0.9741951 -0.152142 0.1646617 0.9745458 -0.5014525 0.05799277 0.8632393 -0.6987067 -0.2130468 0.6829495 -0.6697091 -0.5464398 0.502885 -0.4228929 -0.817453 0.3910656 -0.04886686 -0.9188125 0.3916575 0.3048383 -0.8072904 0.5053274 0.4985264 -0.5299317 0.6860349 0.9160194 0.2903169 0.2768117 0.516685 0.7203101 0.4628068 -0.08268496 0.881747 0.4644194 -0.6498441 0.7072486 0.278392 -0.9632719 0.2676624 -0.02154174 -0.9093047 -0.2661791 -0.3198653 -0.5097871 -0.6959255 -0.5057715 0.08896291 -0.8570479 -0.5074983 0.655977 -0.6828347 -0.3216069 0.9696506 -0.2435359 -0.02163291 0.6684618 0.5463184 -0.5046731 0.4223551 0.8168343 -0.3929353 0.04923148 0.9179969 -0.39352 -0.3037457 0.8066608 -0.506988 -0.4968175 0.5298983 -0.6872993 -0.4611816 0.1984488 -0.8648292 -0.2143415 -0.06457578 -0.9746218 0.1521112 -0.1620534 -0.9749877 0.5001854 -0.05587807 -0.8641136 0.6969735 0.2140129 -0.6844168 -0.09682876 0.3855999 -0.9175712 0.002059694 0.283814 -0.9588772 0.1438459 0.2476626 -0.9581083 0.2784995 0.2875324 -0.9163859 0.3585028 0.3916561 -0.8473967 0.3494076 0.5243906 -0.7764849 0.2510961 0.6319563 -0.7331998 0.1037586 0.6708244 -0.7343219 -0.03484836 0.6269618 -0.7782701 -0.1119361 0.5174563 -0.8483568</float_array>
<technique_common>
<accessor source="#housesmallShape-normals-array" count="245" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="housesmallShape-map1" name="housesmallShape-map1">
<float_array id="housesmallShape-map1-array" count="704">0.2269524 0.2343883 0.3301277 0.238667 0.324568 0.2951965 0.2263924 0.2848575 0.5374986 0.2373804 0.6403528 0.2324684 0.6413866 0.2829003 0.5431156 0.2935035 0.7429866 0.2353792 0.7390773 0.2857508 0.8458574 0.2463908 0.8363492 0.3027598 0.6612148 0.7506303 0.5538899 0.7617386 0.5487699 0.7069715 0.6513484 0.6929342 0.442935 0.7654254 0.4432355 0.7103956 0.3321986 0.7608263 0.337686 0.7060663 0.2252823 0.7486081 0.2359347 0.6907792 0.02163565 0.2495311 0.1242959 0.2379827 0.1286452 0.2882216 0.03128111 0.3056151 0.3104064 0.3506037 0.2234434 0.335091 0.6447376 0.3331154 0.5571374 0.3488165 0.7326869 0.3356789 0.8182906 0.3573321 0.5371862 0.6502175 0.6338627 0.6362468 0.4436226 0.6536338 0.3497623 0.6498059 0.2541198 0.6344736 0.1354479 0.3380071 0.04938304 0.3602439 0.2876657 0.4033793 0.217867 0.3852862 0.6507058 0.3832108 0.5796368 0.4016779 0.7236047 0.3852255 0.7949549 0.4206882 0.5178442 0.5897616 0.5997125 0.5774775 0.4435825 0.5964247 0.3700824 0.5910417 0.2887031 0.5768744 0.1450983 0.3876446 0.07244092 0.4231902 0.2598315 0.4505067 0.2096118 0.4356822 0.3414872 0.4537684 0.2990355 0.4851049 0.5259039 0.4529887 0.6076359 0.4491712 0.5690117 0.4834898 0.6585943 0.4335316 0.7118708 0.434593 0.7600105 0.4535911 0.7880307 0.4601489 0.7924825 0.4939779 0.1077139 0.4563668 0.07968777 0.462938 0.1564777 0.4369835 0.6510518 0.4719092 0.7002031 0.4846536 0.7255139 0.4909967 0.07535154 0.4968235 0.1426805 0.4939516 0.1681414 0.4872047 0.6918529 0.5365964 0.7186589 0.540329 0.2218263 0.01354007 0.3279792 0.01354007 0.4339082 0.2372976 0.4327443 0.01354007 0.5377047 0.01354007 0.6429317 0.01354019 0.7493471 0.01354007 0.8551216 0.01354007 0.6707993 0.9855899 0.5605306 0.9855899 0.4429293 0.9855898 0.3250451 0.9855899 0.2136619 0.9855899 0.0110414 0.01354019 0.1155145 0.01354019 0.5385022 0.5398163 0.5709438 0.5530287 0.3179852 0.5530753 0.3506892 0.5406315 0.6705416 0.6882471 0.6814014 0.7493855 0.2053196 0.7472613 0.2168832 0.6858251 0.651888 0.6286622 0.2361062 0.6267817 0.615088 0.5680052 0.2730301 0.5664951 0.6911703 0.9855899 0.1933716 0.9855899 0.549686 0.5222577 0.5829442 0.5370871 0.3063489 0.5367954 0.1772755 0.5389643 0.1505052 0.5431667 0.2169288 0.4747939 0.7317963 0.9070359 0.7283939 0.8614 0.7610953 0.8541829 0.7600782 0.9075203 0.8172787 0.9899851 0.763001 0.9933952 0.7573435 0.9598373 0.8171095 0.9617392 0.4322281 0.4602278 0.376552 0.45924 0.3712258 0.423026 0.4323187 0.4246775 0.3380166 0.4212331 0.3363811 0.3494421 0.3571301 0.3428264 0.5296993 0.3507502 0.5266811 0.4225638 0.4914139 0.4260698 0.5089088 0.344014 0.4876865 0.4597452 0.3623421 0.2799733 0.3736444 0.2895035 0.3794225 0.3418056 0.3668721 0.3446085 0.4335285 0.2642872 0.4334033 0.2769215 0.5057788 0.2829868 0.4930363 0.290369 0.3829234 0.4134402 0.499096 0.3455825 0.4865796 0.3425812 0.4819813 0.4142457 0.4325122 0.412166 0.7705231 0.8638791 0.7716252 0.9076907 0.8161391 0.8453245 0.8160343 0.8564051 0.8737779 0.8551295 0.8631539 0.862938 0.7685091 0.9508852 0.8741955 0.9058675 0.862717 0.9063426 0.8752899 0.9608495 0.8657486 0.9503335 0.8170142 0.9502981 0.8170087 0.9059274 0.3604469 0.2633322 0.4336074 0.2552485 0.3446741 0.2867813 0.5219048 0.2877621 0.5064654 0.2640755 0.8160941 0.8175306 0.7612693 0.8216444 0.8704783 0.8210733 0.9025492 0.9053902 0.9051858 0.8602697 0.7260606 0.9541131 0.9081524 0.9530029 0.8716727 0.9925691 0.7048401 0.6082239 0.7150255 0.6186269 0.7202638 0.6675637 0.7084088 0.666766 0.8178273 0.6045861 0.8177103 0.6161814 0.9335005 0.6118905 0.9213752 0.6199534 0.7302862 0.7280411 0.7179203 0.7258334 0.9268084 0.668615 0.9147817 0.6690693 0.9160562 0.7272889 0.9037887 0.7293209 0.7405493 0.7763218 0.7330995 0.7878744 0.9012991 0.7876663 0.892826 0.7768036 0.8169051 0.781161 0.8169888 0.7691799 0.8176349 0.662497 0.817237 0.7219875 0.7079331 0.578013 0.8181863 0.5795224 0.6819569 0.6739667 0.6726664 0.6186809 0.9286712 0.578731 0.9628924 0.621126 0.9527031 0.6762415 0.6917785 0.7325269 0.9425584 0.7341374 0.8167787 0.8076866 0.7398154 0.8173546 0.7006422 0.7876867 0.9332862 0.7888341 0.8934668 0.817606 0.3399956 0.5228029 0.4554722 0.3370673 0.4447414 0.3180892 0.4443988 0.3559718 0.4112113 0.3367874 0.4222175 0.3558353 0.4222391 0.317911 0.1650351 0.6299532 0.1340757 0.6299532 0.1340761 0.5553418 0.1650356 0.5553419 0.07226992 0.6299533 0.0412811 0.6299534 0.04250735 0.5553454 0.07104373 0.5553383 0.196072 0.6299534 0.0306161 0.5327077 0.1031871 0.6299531 0.1031882 0.5553418 0.01026559 0.6299536 0.01026517 0.5553418 0.0563367 0.5322702 0.1340755 0.6471138 0.1031875 0.6471137 0.07227033 0.6471137 0.04128152 0.6471135 0.1960719 0.6471135 0.1650356 0.6471137 0.1340757 0.7451597 0.1031873 0.7451594 0.07226938 0.7451599 0.04128104 0.7451597 0.01026559 0.7451593 0.01026517 0.6471138 0.1960719 0.7451593 0.1650351 0.7451594 0.1786208 0.7550126 0.1786207 0.8295991 0.02424967 0.8296001 0.02424937 0.7550122 0.1786206 0.8709947 0.02425003 0.8709944 0.1786209 0.9455838 0.02424979 0.9455844 0.178621 0.98698 0.02424985 0.9869785 0.02425003 0.8295999 0.02424985 0.755011 0.1786205 0.7550113 0.1786206 0.8296001 0.02424896 0.9869792 0.02424878 0.9455842 0.1786209 0.9455837 0.1786209 0.9869797 0.02424967 0.8709952 0.1786205 0.8709953 0.1786207 0.7550122 0.1786206 0.8296001 0.02425003 0.8295999 0.02424896 0.7550122 0.1786207 0.8709959 0.02424967 0.8709952 0.1786211 0.945584 0.02424961 0.9455834 0.1786209 0.9869797 0.02424985 0.9869785 0.1960721 0.5553417 0.08290505 0.5327971 0.0699569 0.5101142 0.04375184 0.5100021 0.9660761 0.4484227 0.966072 0.501631 0.9442139 0.5016276 0.9442221 0.4484323 0.9660794 0.3958276 0.9442271 0.3958269 0.9660805 0.3432712 0.9442295 0.3432679 0.9660807 0.2907249 0.9442293 0.2907251 0.9660784 0.2382123 0.9442272 0.2382152 0.9660748 0.1855844 0.9442218 0.1855848 0.9660695 0.1329783 0.9442139 0.1329783 0.9660628 0.08022085 0.9442023 0.08011329 0.9660576 0.01625669 0.9442022 0.01625681 0.9660709 0.5653652 0.944217 0.5653652 0.9218237 0.5016249 0.9218248 0.4483931 0.9218253 0.3958212 0.9218254 0.3432233 0.9218255 0.2907243 0.9218252 0.2382094 0.9218246 0.1855843 0.9218239 0.1329883 0.9218232 0.07995629 0.9218231 0.01625666 0.9218233 0.5653653 0.9033464 0.501624 0.9033383 0.4483922 0.9033335 0.3958211 0.9033316 0.3432268 0.903332 0.2907246 0.9033344 0.2382134 0.903339 0.1855848 0.9033458 0.1329806 0.9033549 0.07995445 0.9033697 0.01625675 0.9033659 0.5653653 0.8854981 0.5016254 0.8855277 0.4483777 0.8855458 0.3958203 0.8855544 0.343227 0.8855532 0.2907248 0.8855415 0.2382168 0.8855204 0.1855852 0.8854911 0.1329716 0.8854551 0.08001813 0.885338 0.01625669 0.8853639 0.5653652 0.860782 0.5016302 0.8607821 0.4483081 0.860782 0.3958152 0.860782 0.3431896 0.860782 0.2907239 0.8607821 0.2382133 0.8607821 0.1855851 0.8607821 0.1329685 0.8607822 0.0801281 0.8607822 0.01625675 0.8607821 0.5653651 0.9886923 0.448451 0.9886657 0.5016293 0.9887146 0.3958293 0.9887256 0.3432767 0.9887246 0.2907248 0.9887103 0.2382094 0.9886837 0.185584 0.9886463 0.1329848 0.9886139 0.08017418 0.9885479 0.01625669 0.9886266 0.5653651</float_array>
<technique_common>
<accessor source="#housesmallShape-map1-array" count="352" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="housesmallShape-vertices" name="housesmallShape-vertices">
<input semantic="POSITION" source="#housesmallShape-positions"/>
<input semantic="NORMAL" source="#housesmallShape-normals"/>
</vertices>
<polylist material="housesmall1" count="245">
<input semantic="VERTEX" source="#housesmallShape-vertices" offset="0"/>
<input semantic="TEXCOORD" source="#housesmallShape-map1" offset="1" set="0"/>
<vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 4 4 3 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 3 4 4 3 4 3 3 4 3 4 3 3 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>
<p>0 0 1 1 10 2 9 3 3 4 4 5 12 6 11 7 4 5 5 8 13 9 12 6 5 8 6 10 14 11 13 9 62 12 63 13 64 14 65 15 63 13 66 16 67 17 64 14 66 16 68 18 69 19 67 17 68 18 70 20 71 21 69 19 7 22 8 23 16 24 15 25 8 23 0 0 9 3 16 24 9 3 10 2 18 26 17 27 11 7 12 6 20 28 19 29 12 6 13 9 21 30 20 28 13 9 14 11 22 31 21 30 65 15 64 14 72 32 73 33 64 14 67 17 74 34 72 32 67 17 69 19 75 35 74 34 69 19 71 21 76 36 75 35 15 25 16 24 24 37 23 38 16 24 9 3 17 27 24 37 17 27 18 26 26 39 25 40 19 29 20 28 29 41 28 42 20 28 21 30 30 43 29 41 21 30 22 31 31 44 30 43 73 33 72 32 77 45 78 46 72 32 74 34 79 47 77 45 74 34 75 35 80 48 79 47 75 35 76 36 81 49 80 48 23 38 24 37 33 50 32 51 24 37 17 27 25 40 33 50 25 40 26 39 35 52 34 53 26 39 27 54 36 55 35 52 27 56 28 42 37 57 36 58 28 42 29 41 38 59 37 57 29 41 30 43 39 60 38 59 30 43 31 44 40 61 39 60 40 61 146 62 41 63 43 64 144 65 32 51 32 51 33 50 44 66 43 64 33 50 25 40 34 53 44 66 37 57 38 59 47 67 38 59 39 60 48 68 47 67 39 60 40 61 49 69 48 68 40 61 41 63 49 69 42 70 43 64 51 71 43 64 44 66 45 72 51 71 52 73 48 68 49 69 50 74 1 1 0 0 53 75 54 76 2 77 1 1 54 76 55 78 3 4 2 77 55 78 56 79 4 5 3 4 56 79 57 80 5 8 4 5 57 80 58 81 6 10 5 8 58 81 59 82 63 13 62 12 84 83 85 84 66 16 63 13 85 84 86 85 68 18 66 16 86 85 87 86 70 20 68 18 87 86 88 87 8 23 7 22 60 88 61 89 0 0 8 23 61 89 53 75 77 45 82 90 147 91 78 46 80 48 81 49 145 92 83 93 14 94 6 95 62 12 65 15 7 96 15 97 71 21 70 20 22 98 14 94 65 15 73 33 15 97 23 99 76 36 71 21 31 100 22 98 73 33 78 46 23 99 32 101 81 49 76 36 6 95 59 102 84 83 62 12 60 103 7 96 70 20 88 87 41 104 146 105 147 91 82 90 32 101 144 106 145 92 81 49 52 107 50 108 51 71 45 72 44 66 34 53 46 109 45 72 34 53 35 52 46 109 46 110 35 111 106 112 110 113 52 114 45 115 117 116 118 117 50 118 49 119 90 120 89 121 49 122 41 123 82 124 90 120 42 125 51 126 91 127 83 128 51 129 50 118 89 121 91 127 93 130 94 131 98 132 97 133 94 131 93 130 96 134 95 135 95 135 96 134 99 136 100 137 97 133 98 132 104 138 90 120 100 137 99 136 102 139 101 140 101 140 102 139 91 127 105 141 89 121 103 142 105 141 91 127 103 142 89 121 90 120 104 138 106 112 107 143 111 144 110 113 107 143 106 112 109 145 108 146 108 146 109 145 113 147 112 148 110 113 111 144 116 149 117 116 112 148 113 147 115 150 114 151 114 151 115 150 121 152 120 153 117 116 116 149 119 154 118 117 118 117 119 154 120 153 121 152 107 143 108 146 92 155 111 144 108 146 112 148 114 151 92 155 119 154 116 149 111 144 92 155 119 154 92 155 114 151 120 153 77 156 79 157 96 134 93 130 82 124 77 158 93 130 97 133 80 159 83 128 102 139 99 136 79 157 80 160 99 136 96 134 90 120 82 124 97 133 83 128 91 127 102 139 36 161 109 145 106 112 35 162 37 163 113 147 109 145 36 161 47 164 115 150 113 147 37 165 46 110 110 113 117 116 45 166 48 167 121 152 115 150 47 164 52 114 118 117 121 152 48 168 124 169 125 170 129 171 128 172 125 170 124 169 127 173 126 174 126 174 127 173 131 175 130 176 128 172 129 171 135 177 134 178 130 176 131 175 133 179 132 180 132 180 133 179 137 181 136 182 134 178 135 177 140 183 141 184 136 182 137 181 143 185 142 186 138 187 139 188 142 186 143 185 139 188 138 187 141 184 140 183 125 170 126 174 122 189 129 171 126 174 130 176 132 180 122 189 129 171 122 189 123 190 135 177 122 189 132 180 136 182 123 190 135 177 123 190 139 188 140 183 123 190 136 182 142 186 139 188 1 191 2 192 127 173 124 169 10 193 1 194 124 169 128 172 2 192 3 195 131 175 127 173 3 196 11 197 133 179 131 175 18 198 10 193 128 172 134 178 11 197 19 199 137 181 133 179 27 200 26 201 141 184 138 187 26 202 18 198 134 178 141 184 19 199 28 203 143 185 137 181 28 204 27 200 138 187 143 185 42 70 144 65 43 64 145 92 144 106 42 205 83 93 31 44 146 62 40 61 147 91 146 105 31 100 78 46 100 137 101 140 149 206 152 207 150 208 105 141 103 142 98 132 151 209 153 210 104 138 94 131 95 135 148 211 95 135 152 207 148 211 105 141 150 208 149 206 101 140 103 142 153 210 150 208 94 131 148 211 151 209 98 132 104 138 153 210 103 142 100 137 152 207 95 135 166 212 161 213 154 214 155 215 163 216 164 217 156 218 157 219 165 220 166 212 155 215 158 271 161 213 162 222 159 223 154 214 162 222 163 216 157 219 159 223 164 217 165 224 158 225 156 218 155 274 154 273 160 226 157 219 156 218 160 226 158 221 155 274 160 226 154 273 159 272 160 226 159 272 157 219 160 226 156 218 158 221 160 226 167 227 168 228 162 222 161 213 169 229 170 230 164 217 163 216 171 231 172 232 166 212 165 220 149 233 150 234 168 228 167 227 150 234 153 235 169 229 168 228 153 235 151 236 170 230 169 229 151 236 148 237 171 238 170 230 148 239 152 240 172 232 171 231 152 240 149 233 167 227 172 232 168 241 169 242 174 243 173 244 169 242 163 245 175 246 174 243 163 245 162 247 176 248 175 246 162 247 168 249 173 250 176 248 170 251 171 252 178 253 177 254 171 255 165 256 179 257 178 258 165 256 164 259 180 260 179 257 164 259 170 251 177 254 180 260 172 261 167 262 182 263 181 264 167 262 161 265 183 266 182 263 161 265 166 267 184 268 183 266 166 267 172 269 181 270 184 268 186 275 185 276 195 277 196 278 187 279 186 275 196 278 197 280 188 281 187 279 197 280 198 282 189 283 188 281 198 282 199 284 190 285 189 283 199 284 200 286 191 287 190 285 200 286 201 288 192 289 191 287 201 288 202 290 193 291 192 289 202 290 203 292 194 293 193 291 203 292 204 294 185 276 194 295 204 296 195 277 196 278 195 277 205 297 206 298 197 280 196 278 206 298 207 299 198 282 197 280 207 299 208 300 199 284 198 282 208 300 209 301 200 286 199 284 209 301 210 302 201 288 200 286 210 302 211 303 202 290 201 288 211 303 212 304 203 292 202 290 212 304 213 305 204 294 203 292 213 305 214 306 195 277 204 296 214 307 205 297 206 298 205 297 215 308 216 309 207 299 206 298 216 309 217 310 208 300 207 299 217 310 218 311 209 301 208 300 218 311 219 312 210 302 209 301 219 312 220 313 211 303 210 302 220 313 221 314 212 304 211 303 221 314 222 315 213 305 212 304 222 315 223 316 214 306 213 305 223 316 224 317 205 297 214 307 224 318 215 308 216 309 215 308 225 319 226 320 217 310 216 309 226 320 227 321 218 311 217 310 227 321 228 322 219 312 218 311 228 322 229 323 220 313 219 312 229 323 230 324 221 314 220 313 230 324 231 325 222 315 221 314 231 325 232 326 223 316 222 315 232 326 233 327 224 317 223 316 233 327 234 328 215 308 224 318 234 329 225 319 226 320 225 319 235 330 236 331 227 321 226 320 236 331 237 332 228 322 227 321 237 332 238 333 229 323 228 322 238 333 239 334 230 324 229 323 239 334 240 335 231 325 230 324 240 335 241 336 232 326 231 325 241 336 242 337 233 327 232 326 242 337 243 338 234 328 233 327 243 338 244 339 225 319 234 329 244 340 235 330 236 341 235 342 185 276 186 275 237 343 236 341 186 275 187 279 238 344 237 343 187 279 188 281 239 345 238 344 188 281 189 283 240 346 239 345 189 283 190 285 241 347 240 346 190 285 191 287 242 348 241 347 191 287 192 289 243 349 242 348 192 289 193 291 244 350 243 349 193 291 194 293 235 342 244 351 194 295 185 276</p>
</polylist>
</mesh>
<extra>
<technique profile="OpenCOLLADAMaya">
<originalMayaNodeId sid="originalMayaNodeId">housesmallShape</originalMayaNodeId>
<double_sided sid="double_sided">1</double_sided>
</technique>
</extra>
</geometry>
<geometry id="plankShape" name="plankShape">
<mesh>
<source id="plankShape-positions" name="plankShape-positions">
<float_array id="plankShape-positions-array" count="108">0.1876818 -0.05290993 1.7953e-4 0.1302163 -0.05290993 0.05661963 0.1902508 -0.05290993 0.002702471 0.1327865 -0.05290993 0.05914257 0.1902508 -0.07462209 0.002702471 0.1327865 -0.07462209 0.05914361 0.1876819 -0.07462209 1.7849e-4 0.1302163 -0.07462209 0.05661963 0.155683 -0.05290993 0.0278699 0.1583582 -0.05290993 0.0302889 0.1583582 -0.07462209 0.03028785 0.155683 -0.07462209 0.02787096 0.08749543 0.06150524 0.07063805 0.09215284 0.1127409 0.1203451 0.08728755 0.05921642 0.07285966 0.09194706 0.11045 0.1225667 0.06855922 0.0609761 0.07285967 0.07321663 0.1122097 0.1225667 0.06876712 0.06326699 0.07063805 0.07342662 0.1145006 0.1203451 0.09009081 0.09003554 0.09502541 0.08987243 0.08765015 0.09715462 0.07114411 0.0894098 0.09715462 0.07136249 0.09179519 0.09502541 0.1591435 0.09795818 -4.97656e-4 0.1016782 0.1563816 0.002523989 0.1591435 0.09795816 0.003072045 0.1016783 0.1563815 0.006089489 0.1440426 0.08260426 0.003072045 0.08657742 0.1410297 0.006089489 0.1440426 0.08260426 -4.97656e-4 0.08657736 0.1410297 0.002523989 0.1290473 0.1285568 0.001289291 0.1291538 0.1284476 0.004858991 0.114053 0.1130958 0.004858991 0.1139464 0.1132029 0.001291395</float_array>
<technique_common>
<accessor source="#plankShape-positions-array" count="36" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="plankShape-normals" name="plankShape-normals">
<float_array id="plankShape-normals-array" count="108">-0.5801262 0.1690326 -0.7967945 -0.7954391 0.1676407 -0.5823857 0.707689 0.1554006 0.689222 0.6746191 0.158236 0.7210066 0.7076849 -0.1554357 0.6892182 0.6746228 -0.1582003 0.7210109 -0.58013 -0.1689966 -0.7967994 -0.7954346 -0.1676735 -0.5823824 -0.6920696 0.1566021 -0.7046385 0.69046 0.1705378 0.7029808 0.6904571 -0.1705436 0.7029821 -0.6920714 -0.1566043 -0.7046363 0.227374 0.5546808 -0.8003939 0.2433467 0.7713355 -0.5880679 0.09145603 -0.7131984 0.6949704 0.1002746 -0.6804401 0.7259107 -0.2221984 -0.6842603 0.6945614 -0.225584 -0.6499534 0.7257221 -0.1197189 0.5870394 -0.8006574 -0.09600695 0.8027533 -0.5885319 0.2236903 0.6680622 -0.7096869 0.1099535 -0.6971797 0.7084143 -0.2379133 -0.6651752 0.7077706 -0.09549061 0.6976663 -0.7100306 0.1407974 0.0822384 -0.9866168 0.03298483 0.2025739 -0.9787113 0.2045581 0.0305089 0.9783788 0.07258078 0.15508 0.9852321 -0.03226022 -0.2048176 0.9782684 -0.153948 -0.07034484 0.9855717 -0.08476724 -0.1420284 -0.9862264 -0.2021838 -0.03134864 -0.9788457 0.09107464 0.1404971 -0.9858834 0.1421135 0.08894137 0.9858465 -0.09022851 -0.1397479 0.9860677 -0.1428161 -0.08941667 -0.9857019</float_array>
<technique_common>
<accessor source="#plankShape-normals-array" count="36" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="plankShape-map1" name="plankShape-map1">
<float_array id="plankShape-map1-array" count="122">0.5213863 0.04367533 0.5621685 0.95517 0.5213863 0.04367533 0.5213863 0.95517 0.2831824 0.04367533 0.2831824 0.95517 0.2430002 0.04367533 0.2430002 0.95517 0.004891369 0.04367533 0.004891369 0.95517 0.2831824 0.9947956 0.2831824 0.04367533 0.5621685 0.5209966 0.004891369 0.5210226 0.5213863 0.5209976 0.2831824 0.5210087 0.2430002 0.5210115 0.5621685 0.04367533 0.5213863 0.9947956 0.5213864 0.04367533 0.2831825 0.51275 0.2430001 0.5127612 0.2430001 0.04367533 0.5621685 0.512751 0.5621685 0.04367533 0.5213864 0.5127555 0.5213864 0.04367533 0.2831825 0.95517 0.5213864 0.9947956 0.2831825 0.9947956 0.2430001 0.95517 0.5213864 0.04367533 0.2831824 0.04367533 0.5621685 0.95517 0.5213864 0.95517 0.5621685 0.04367533 0.5621685 0.5209966 0.5213863 0.5209976 0.5213863 0.04367533 0.2831824 0.5210087 0.2831824 0.04367533 0.2430002 0.5210115 0.2430002 0.04367533 0.004891369 0.5210226 0.004891369 0.04367533 0.5213863 0.9947956 0.2831824 0.9947956 0.2831824 0.95517 0.5213863 0.95517 0.2831824 0.04367533 0.5213863 0.04367533 0.5621685 0.95517 0.2430002 0.95517 0.004891369 0.95517 0.5213864 0.95517 0.2831825 0.95517 0.2831825 0.04367533 0.2831824 0.04367533 0.004891396 0.512764 0.004891396 0.95517 0.004891396 0.04367533</float_array>
<technique_common>
<accessor source="#plankShape-map1-array" count="61" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="plankShape-vertices" name="plankShape-vertices">
<input semantic="POSITION" source="#plankShape-positions"/>
<input semantic="NORMAL" source="#plankShape-normals"/>
</vertices>
<polylist material="plank1" count="30">
<input semantic="VERTEX" source="#plankShape-vertices" offset="0"/>
<input semantic="TEXCOORD" source="#plankShape-map1" offset="1" set="0"/>
<vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>
<p>0 17 8 12 9 14 2 2 2 2 9 14 10 15 4 4 4 4 10 15 11 16 6 6 6 6 11 16 8 13 0 8 1 18 7 10 5 5 3 3 6 11 0 0 2 2 4 4 9 14 8 12 1 1 3 3 10 15 9 14 3 3 5 5 11 16 10 15 5 5 7 7 8 13 11 16 7 7 1 9 12 56 20 20 21 21 14 22 14 22 21 21 22 58 16 60 16 24 22 23 23 25 18 26 18 26 23 25 20 20 12 56 13 54 19 28 17 29 15 55 18 31 12 19 14 57 16 32 21 21 20 20 13 27 15 30 22 58 21 21 15 30 17 59 23 25 22 23 17 33 19 34 20 20 23 25 19 34 13 27 24 35 32 36 33 37 26 38 26 38 33 37 34 39 28 40 28 40 34 39 35 41 30 42 30 42 35 41 32 43 24 44 25 45 31 46 29 47 27 48 30 49 24 50 26 38 28 40 33 37 32 36 25 51 27 48 34 39 33 37 27 48 29 47 35 41 34 39 29 47 31 52 32 43 35 41 31 52 25 53</p>
</polylist>
</mesh>
<extra>
<technique profile="OpenCOLLADAMaya">
<originalMayaNodeId sid="originalMayaNodeId">plankShape</originalMayaNodeId>
<double_sided sid="double_sided">1</double_sided>
</technique>
</extra>
</geometry>
<geometry id="grasshouseShape" name="grasshouseShape">
<mesh>
<source id="grasshouseShape-positions" name="grasshouseShape-positions">
<float_array id="grasshouseShape-positions-array" count="1530">0.07039395 0.2531246 0.005669524 0.04915029 0.281573 0.005669524 0.003052503 0.297222 0.002889357 -0.05737188 0.2918705 0.002956552 -0.08906674 0.2539393 0.003905669 0.0855119 0.2141267 0.005669524 0.04544018 0.2199674 0.003796482 0 0.2237089 -2.72977e-4 -0.0617348 0.2208881 5.9215e-4 -0.1064814 0.2130747 0.003296725 -0.1410765 0.1891997 0.005669524 0.2199166 0.1335711 0.005669524 0.1910724 0.15942 0.005669524 0.1257477 0.1632669 0.005669524 0.1033331 0.166488 0.005669524 0.04505304 0.1638884 2.93975e-4 0 0.1677817 0.001142304 -0.05500959 0.1677815 0.002427395 -0.1096563 0.1670801 0.001268296 -0.1634818 0.1647913 0.005669524 -0.2065817 0.1533095 0.005669524 0.2448852 0.1080247 0.005669524 0.1898756 0.1080205 0 0.1446733 0.1092678 0.001646254 0.1100192 0.1118548 0.001646262 0.05500959 0.1118548 2.93975e-4 0 0.1118544 0 -0.0550096 0.1118548 0 -0.1100192 0.1118548 0.002862062 -0.1621689 0.111985 0 -0.2014157 0.1176209 0.005669524 0.2448852 0.05209383 0.005669524 0.1990331 0.03554302 0.005669524 0.1519786 0.05426925 0.001227346 0.1100192 0.05592811 0.001227346 -0.1100192 0.05592811 0.00167461 -0.1615054 0.0560919 0.002222658 -0.1897795 0.08304103 0.005669524 -0.2214653 0.05817072 0.005669524 0.2060297 -0.001779228 0.005669297 0.1650288 0 0 0.1100192 0 0.004254907 -0.1100192 0 0.002034284 -0.1645548 0 0.002034284 -0.1972696 0.003352746 0.005669329 -0.2167451 0.02913436 0.005669524 0.2277114 -0.05837786 0.005669524 0.1650288 -0.05592527 0.002947098 0.1100192 -0.05592737 0 -0.1100192 -0.05592737 0.002034726 -0.161977 -0.05592526 0.002034726 -0.1955312 -0.05592526 0.005669524 -0.2359695 -0.0673357 0.005669524 0.2200384 -0.1118562 0.005669524 0.1650288 -0.1118562 5.69058e-4 0.1100192 -0.1118541 0.002330801 0.0550096 -0.1118541 0.001366986 0 -0.1118388 0.002702472 -0.05500959 -0.1079641 0.001996933 -0.1100192 -0.1086098 0.003338715 -0.1618787 -0.1094918 0.002080925 -0.1949606 -0.1080723 0.003750287 -0.2529476 -0.09888348 0.005669524 0.204393 -0.1376504 0.005669524 0.1650288 -0.1394226 0.005669524 0.1143729 -0.1573782 0.005669524 0.0550096 -0.1664547 0.002175419 0 -0.1627452 0.002175417 -0.0550096 -0.1444559 0 -0.1100192 -0.1473222 0.003800678 -0.1636624 -0.1514504 0.002078829 -0.1972848 -0.1429503 0.005669524 -0.2329001 -0.1284322 0.005669524 0.1124313 -0.184951 0.005669524 0.04585212 -0.1878467 0.005669524 0 -0.1948494 0.005669523 -0.0416979 -0.1877049 0.005669524 -0.1068824 -0.1744519 0.003683093 -0.1673684 -0.18207 0.005669524 -0.1914422 -0.1688832 0.005669524 0.09557098 -0.222204 0.005669524 0.05847722 -0.2341478 0.005669524 -0.05433175 -0.2249621 0.005669524 -0.1063867 -0.2459257 0.005669524 -0.1496078 -0.2140713 0.005669524 0.08452997 0.2652322 0 0.05466981 0.2956124 0 0.09075432 0.2243675 0 0.003197938 0.3109656 0 -0.05365041 0.3094545 0 -0.1058357 0.2743328 0 -0.1164683 0.2268537 0 0.1101759 0.1836582 0 -0.1592026 0.2027352 0 -0.1700152 0.1698015 0 0.2451995 0.1531037 0 0.2033084 0.167265 0 0.2579911 0.1129299 0 0.1278933 0.169285 0 -0.216606 0.1601885 0 -0.2121366 0.1225681 0 0.2642684 0.04002403 0 -0.2005551 0.08592618 0 0.2162314 0.02267951 0 0.2121583 -0.002753541 0 -0.2517901 0.07184055 0 -0.2422141 0.01625405 0 0.2381962 -0.0614562 0 -0.2074926 -0.004509002 0 -0.2139749 -0.04360351 0 0.2305232 -0.1176055 0 -0.252987 -0.05216661 0 -0.2700065 -0.1050653 0 0.2170825 -0.1469022 0 -0.2455696 -0.13962 0 0.1728923 -0.1515386 0 0.1248553 -0.1633522 0 0.1176738 -0.1960297 0 -0.21088 -0.1515092 0 -0.2055014 -0.1967982 0 0.1046018 -0.2437251 0 0.04100503 -0.2123726 0 0 -0.2060383 0 0.0505988 -0.2644619 0 -0.03255504 -0.2019344 0 -0.04835515 -0.2470008 0 -0.1725206 -0.1946228 0 -0.1647463 -0.2394498 0 -0.1118018 -0.2629363 0 0.09771067 0.2759287 0 0.06325631 0.3169466 0 0.1031095 0.2345223 0 0.004843861 0.3315987 0 -0.05777079 0.3315834 0 -0.1167955 0.2909865 0 -0.1269708 0.2411871 0 0.1205516 0.1967926 0 -0.1725257 0.2170811 0 -0.1820969 0.1789358 0 0.2618853 0.1659883 0 0.2147885 0.1823921 0 0.277988 0.1183979 0 0.134062 0.1829674 0 -0.231483 0.1725145 0 -0.2301431 0.128582 0 0.2821026 0.03904134 0 -0.2161888 0.09371652 0 0.2313157 0.01998335 0 0.2278081 -0.004404008 0 -0.2706096 0.07724974 0 -0.2664259 0.001714885 0 0.2557624 -0.063934 0 -0.2216708 -0.009640977 0 -0.2282331 -0.03019823 0 0.2481384 -0.1231406 0 -0.2792159 -0.02819499 0 -0.2914621 -0.1129271 0 0.2325313 -0.1632388 0 -0.263367 -0.1613574 0 0.1815962 -0.1631003 0 0.1358009 -0.1731626 0 0.1300692 -0.2066632 0 -0.2254942 -0.159077 0 -0.2211937 -0.2194637 0 0.1148143 -0.2619893 0 0.0291563 -0.2284268 0 4.19393e-4 -0.2243338 0 0.04098219 -0.2830127 0 -0.0285103 -0.2221662 0 -0.03471181 -0.2695476 0 -0.1825203 -0.2147139 0 -0.1771565 -0.2584532 0 -0.1164671 -0.2836595 0 0.05950111 0.185168 0.008634473 -0.1375519 0.1398454 0.006803416 0.1668148 0.07415879 0.006440164 0.1925234 -0.08392011 0.008430788 -0.1759237 -0.08386971 0.007026009 0.1382904 -0.1384861 0.008092723 -0.07848062 -0.1595873 0.007135201 -0.0339793 0.2601097 0.001822644 -0.1375298 0.02797107 0.004045305 -0.1992892 0.04705006 0.009159422 -0.2754702 0.04140994 0 -0.2545986 0.04565997 0 -0.2235842 0.0444295 0.005669524 -0.2909657 -0.06627741 0 -0.2642506 -0.07880913 0 -0.2433702 -0.08461305 0.006864321 -0.1955784 -0.08358413 0.005684215 -0.2738237 -0.1427866 0 -0.2547913 -0.1302884 0 -0.239507 -0.1182018 0.007748353 -0.07813416 -0.1968738 0.006496852 -0.08029068 -0.2397963 0.008012928 -0.0762012 -0.2597215 0 -0.07090718 -0.2831618 0 -0.13664 -0.1755984 0.004745599 -0.1244384 -0.2361993 0.006148282 -0.1378555 -0.2572017 0 -0.1472289 -0.2774566 0 0.08914118 -0.1791324 0.00901664 0.07819718 -0.235815 0.00856728 0.08359984 -0.2613006 0 0.08624217 -0.2827566 0 0.2024808 0.0715256 0.003951868 0.2484398 0.08021468 0.007244392 0.2691709 0.07026991 0 0.2887814 0.07209256 0 0.1625273 0.1810104 0 0.1535104 0.1662276 0 0.1477446 0.1558797 0.005669524 0.1611194 0.1169868 2.26785e-4 0.09329304 0.09683058 0.07553905 0.0582197 0.09410289 0.07553905 0.03864514 0.07825764 0.0760094 0 0.0784343 0.0760094 -0.03823778 0.07825028 0.0760094 -0.04323956 0.1017085 0.07553905 -0.06178519 0.1017085 0.07553905 -0.09658976 0.09410289 0.07553905 0.1069839 0.06598416 0.07553905 0.0724418 0.06998013 0.07553904 0.04829594 0.06997908 0.07553905 0 0.06997947 0.07553905 -0.02414797 0.0699796 0.07553905 -0.04829593 0.06997907 0.07553905 -0.0724418 0.06998013 0.07553905 -0.1048148 0.05575173 0.07553905 0.1069839 0.04585527 0.07553905 0.0724418 0.04585527 0.07553904 0.04829593 0.0458563 0.07553905 0.02414797 0.04585578 0.07553905 0 0.04585584 0.07684617 -0.02414797 0.04585578 0.07553905 -0.04829592 0.0458563 0.07553905 -0.07244179 0.04585526 0.07553905 -0.1048148 0.03743077 0.07553905 0.09658977 0.02173249 0.07553851 0.0724418 0.02173249 0.0755385 0.04829593 0.02173249 0.07553852 0.02414797 0.02173197 0.07553852 0 0.02173219 0.07553852 -0.02414797 0.02173197 0.07553852 -0.04829593 0.02173249 0.07553852 -0.07244179 0.02173249 0.07553851 -0.1089304 0.01144756 0.07553851 0.1048925 0.002361618 0.07553859 0.0724418 -0.002392381 0.07553858 0.04829593 -0.002391323 0.07553858 0.02414797 -0.002391323 0.07553858 0 -0.002391454 0.07553858 -0.02414797 -0.002391323 0.07553858 -0.04829593 -0.002391327 0.07722396 -0.07244179 -0.002392381 0.07553858 -0.1089304 -0.007173672 0.07553864 0.1048925 -0.01579345 0.07553851 0.0724418 -0.02651514 0.0755385 0.04829593 -0.02651514 0.07553852 0.02414797 -0.02651514 0.07553852 0 -0.02651511 0.07553852 -0.02414797 -0.02651514 0.07553852 -0.04829593 -0.02651514 0.07553852 -0.07244179 -0.02651514 0.07553851 -0.09658977 -0.02651514 0.07553851 0.101896 -0.05446589 0.07553904 0.0724418 -0.05063792 0.07553904 0.04829594 -0.05063896 0.07553905 0.02414797 -0.05063897 0.07553905 0 -0.05063876 0.07553905 -0.02414797 -0.05063897 0.07553905 -0.04829593 -0.05063897 0.07553905 -0.07244179 -0.05063792 0.07553905 -0.1044074 -0.05063792 0.07553905 0.101896 -0.0732677 0.07553904 0.07244182 -0.07476278 0.07553904 0.04829593 -0.07476278 0.07553905 0.02414797 -0.07476226 0.07553905 0 -0.07476239 0.07553905 -0.02414796 -0.07476226 0.07553905 -0.04829593 -0.07476278 0.07553905 -0.0724418 -0.07476278 0.07553905 -0.1044074 -0.06782708 0.07553905 0.09658977 -0.09888555 0.07553905 0.06496432 -0.09888555 0.07553905 0.04829593 -0.09888661 0.07553905 0.02414797 -0.09888609 0.07553905 0.006853826 -0.1052804 0.07553905 -0.01138734 -0.1052803 0.07553905 -0.05544163 -0.1034611 0.07553905 -0.07244179 -0.1034611 0.07553905 -0.1017238 -0.1009455 0.07553905 0.1005815 0.1273557 0.05911003 0.1247778 0.09735763 0.05771994 0.04085836 0.1273567 0.05911003 -0.04075965 0.1254848 0.05661963 -0.05989327 0.1254848 0.05771153 -0.101159 0.1254848 0.05771153 -0.1247778 0.1023006 0.05791942 0.1280052 0.06829187 0.05771994 -0.1247778 0.05791875 0.05791942 0.1280052 0.04748262 0.05771994 -0.1247778 0.04748262 0.06107231 0.1247778 0.02254513 0.05771942 -0.1247778 0.01191582 0.06107257 0.1276944 0.002521209 0.05771948 -0.1247778 -0.007335357 0.05924232 0.1276944 -0.01624701 0.05771942 -0.1247778 -0.02732989 0.05924232 0.1249458 -0.05622344 0.06033213 -0.1247778 -0.05226739 0.05679076 0.1249458 -0.07565941 0.06033213 -0.1247778 -0.07003608 0.05779343 0.1247778 -0.1021424 0.05771994 -0.1247778 -0.1021424 0.05779343 0.1010624 -0.1270799 0.05658184 0.06713976 -0.1270799 0.05961818 0.04991069 -0.1270788 0.05961818 0.02495639 -0.1270794 0.05658184 0.007082708 -0.1270792 0.06086127 -0.01176951 -0.1270794 0.06086127 -0.05729578 -0.1266935 0.05658184 -0.07486709 -0.1268783 0.05658184 -0.1112329 -0.1264835 0.05658184 0.1009889 0.1248128 0.07082283 0.0973457 0.1183286 0.07553905 0.05963917 0.1183286 0.07553905 0.04138541 0.1197533 0.07082284 -0.04040059 0.1197533 0.07206173 -0.04040058 0.1161069 0.07553905 -0.04431255 0.1161069 0.07553905 -0.06260622 0.1197522 0.07206173 -0.06329076 0.1161069 0.07553905 -0.09894365 0.1161069 0.07553905 -0.1006886 0.1197522 0.07206172 0.1200511 0.09568197 0.07553905 0.1236796 0.09532498 0.07205963 0.1236796 0.06685139 0.07205963 0.1200511 0.06685139 0.07553905 -0.1236796 0.09893669 0.07205963 -0.1200511 0.09754661 0.07553905 -0.1200511 0.05648666 0.07553905 -0.1236796 0.05652027 0.07205963 0.1200511 0.04646632 0.07553905 0.1236796 0.04646632 0.07205963 0.1236796 0.02203697 0.07206017 0.1200511 0.02203697 0.07553851 -0.1236796 0.0394235 0.07205963 -0.1200511 0.03793262 0.07553905 -0.1200511 0.01162185 0.07553851 -0.1236796 0.01162185 0.07206015 0.1236796 0.002420418 0.0720601 0.1200511 -0.01596563 0.07553851 0.1236796 -0.01596563 0.07206017 -0.1236796 -0.007234566 0.07206002 -0.1200511 -0.007234566 0.07553864 -0.1200511 -0.02682172 0.07553851 -0.1236796 -0.02682172 0.07206015 0.1236796 -0.05512314 0.07205963 0.1200511 -0.05512314 0.07553905 -0.1200511 -0.05125107 0.07553905 -0.1236796 -0.05125105 0.07205963 0.1200511 -0.07416433 0.07553905 0.1236796 -0.07416433 0.07205963 0.1236796 -0.1001056 0.07205963 0.1200511 -0.1001056 0.07625718 -0.1236796 -0.0686544 0.07205963 -0.1200511 -0.0686544 0.07553905 -0.1200511 -0.1004961 0.07553905 -0.1236796 -0.1001056 0.07205963 0.09872529 -0.1208896 0.07625718 0.1001028 -0.1245349 0.07206174 0.0665476 -0.1245349 0.07206174 0.0665476 -0.1208896 0.07553905 0.04947183 -0.1208896 0.07553905 0.04947184 -0.1245359 0.07206173 0.02473591 -0.1208896 0.07553905 0.02473593 -0.1245359 0.07206173 0.007019714 -0.1245359 0.07206173 0.007019714 -0.1208896 0.07553904 -0.01166452 -0.1208896 0.07553905 -0.01166452 -0.1245359 0.07206173 -0.05679182 -0.1245359 0.07206173 -0.05679182 -0.1208896 0.07553905 -0.07420775 -0.1208896 0.07553905 -0.07420774 -0.1245349 0.07206172 -0.1102533 -0.1245349 0.07206172 -0.1092664 -0.1208896 0.07553905 0.03864515 0.07970231 0.05676663 0 0.07987966 0.06015574 -0.03823778 0.07969496 0.06015574 0.1208049 0.002403617 0.07493836 0.1237069 0.1085539 0.05771994 0.1228817 0.1062693 0.07205963 0.119713 0.1046566 0.07553905 -0.1197634 0.1056813 0.07553905 -0.1224554 0.1081927 0.07205963 -0.1231851 0.1087009 0.05559072 -0.1230465 -0.116081 0.05679182 -0.1220165 -0.113809 0.07205963 -0.1199062 -0.1118772 0.07553905 0.1207629 -0.1096765 0.07625718 0.1231399 -0.1117008 0.07205963 0.1241626 -0.114019 0.05771994 0.1105326 -0.1261055 0.05658184 0.1095478 -0.1236488 0.07206175 0.1077923 -0.1206166 0.07625718 0.1079078 0.1167264 0.07553905 0.1107867 0.11958 0.07206174 0.1114397 0.1270848 0.05663223 -0.1071728 0.1169658 0.07553905 -0.1092916 0.1201659 0.07206172 -0.1115972 0.1260601 0.05661963 0.03864515 0.09237999 0.05783964 0 0.09255698 0.05783963 -0.03823778 0.09237264 0.05783962 0.0386441 0.09237999 0.04195657 0 0.09255698 0.04195657 -0.03823882 0.09237264 0.03821468 0.0386441 0.105337 0.03821468 0 0.1055136 0.03821468 -0.03823882 0.1053296 0.03821468 0.0386441 0.105337 0.01941076 0 0.1055136 0.02181296 -0.03823882 0.1053296 0.02181296 0.0386441 0.1188315 0.01941076 0 0.1190085 0.01941076 -0.03823882 0.1188241 0.01941076 0.0386441 0.1237524 0.01630723 0 0.1239295 0.01630723 -0.03823882 0.123745 0.01630723 0.03864431 0.1263489 0 0 0.1265257 0 -0.03823878 0.123745 0 -0.1340559 0.1023006 0.05679182 -0.1340559 0.05791875 0.05679076 -0.1340559 0.04748262 0.05679076 -0.1340559 0.01191582 0.05679128 -0.1340559 -0.007335365 0.05679128 -0.1340559 -0.02732989 0.05679128 -0.1340559 -0.05226739 0.05679076 -0.1340559 -0.07003608 0.05679182 -0.1340559 -0.1021424 0.05679182 -0.1323245 -0.116081 0.05679182 -0.134056 0.1023006 0 -0.134056 0.05791875 0 -0.134056 0.04748263 0 -0.134056 0.01191582 0 -0.134056 -0.007335372 0 -0.1380358 -0.02732986 0 -0.1380358 -0.05226739 0 -0.134056 -0.07003609 0 -0.134056 -0.1021424 0 -0.1323247 -0.116081 0 0.1010624 -0.1353658 0.05658184 0.06713976 -0.1353658 0.05658184 0.04991071 -0.1353658 0.05658184 0.02495641 -0.1353658 0.05658184 0.007082716 -0.1353658 0.05658184 -0.0117695 -0.1353658 0.05658183 -0.05729578 -0.1349794 0.05658184 -0.0748671 -0.1351642 0.05658184 -0.1112329 -0.1347694 0.05658184 0.1105326 -0.1343936 0.05658184 0.1010629 -0.1353658 0.001612665 0.06713903 -0.1353658 0.001612665 0.04991123 -0.1353658 0.001612665 0.02495562 -0.1368126 0.001612663 0.007082731 -0.1368124 0.001612664 -0.01176882 -0.1400004 0.001612664 -0.05729625 -0.1396137 0.001612665 -0.07486685 -0.1351642 0.001612665 -0.1112327 -0.1347694 0.001612665 0.1105321 -0.1343936 0.001612665 0.1336474 0.09735763 0.05771994 0.1336474 0.06829187 0.05771994 0.1336474 0.04748262 0.05771994 0.1336474 0.02254513 0.05771942 0.1336474 0.002521209 0.05771948 0.1336474 -0.01624701 0.05771942 0.1336475 -0.05622344 0.05771994 0.1336475 -0.07565941 0.05771994 0.1336475 -0.1021424 0.05771994 0.1325765 0.1085539 0.05771994 0.1330301 -0.114019 0.05771994 0.1336476 0.09735763 0.001961236 0.1403362 0.06829187 0.001961228 0.1403362 0.04748262 0.001960188 0.1336476 0.02254513 0.001960188 0.1336476 0.002521209 0.001960188 0.1336476 -0.01624701 0.001960188 0.1336476 -0.05622344 0.001960188 0.1336476 -0.07565941 0.001961236 0.1336476 -0.1021424 0.001961236 0.1325765 0.1085539 0.001961236 0.1330312 -0.114019 0.001961236 0.1005815 0.1305264 0.05663223 0.04085836 0.1305275 0.05663224 -0.04075965 0.1307427 0.05661963 -0.05989327 0.1307427 0.05661963 -0.10116 0.1307427 0.05661963 -0.1115972 0.1313181 0.05661963 0.1114397 0.1323428 0.05663223 0.100582 0.1305264 0.001747053 0.04059569 0.1305275 0.001747053 -0.04075991 0.1307427 0.001747053 -0.05989338 0.1307427 0.001747053 -0.1011597 0.1307427 0.001747053 -0.1115972 0.1313181 0.001747053 0.1114393 0.1323428 0.001747053</float_array>
<technique_common>
<accessor source="#grasshouseShape-positions-array" count="510" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="grasshouseShape-normals" name="grasshouseShape-normals">
<float_array id="grasshouseShape-normals-array" count="1530">0.08220068 0.03875222 0.9958621 -0.009869386 0.04639338 0.9988745 -0.02775997 0.056786 0.9980004 -0.03327332 0.07396694 0.9967055 -0.01280133 0.009387111 0.9998739 0.1568386 0.07575346 0.9847147 -0.06193572 -0.01769129 0.9979233 -0.02761598 -0.01111242 0.9995568 0.03016653 -0.004363074 0.9995354 0.001171115 0.01856336 0.999827 -0.003852226 0.03704717 0.9993061 0.003004695 0.005203528 0.9999819 -0.004197414 0.08765233 0.9961423 0.02936639 0.0207595 0.9993531 -7.33173e-4 -0.02546338 0.9996755 -0.03840885 -0.03798785 0.9985398 5.27489e-4 -0.006519547 0.9999786 0.01518959 -0.001503351 0.9998835 0.04162874 -0.009092637 0.9990917 -0.01405005 0.03754085 0.9991964 -0.07906047 0.0678227 0.9945599 0.05871902 0.05527654 0.996743 -0.03285827 -0.008639353 0.9994227 0.003484417 -0.009155801 0.999952 -0.02716754 -0.0422142 0.9987392 -0.03221709 -0.03170724 0.9989778 0.008629839 -0.02173324 0.9997265 0.01361472 -0.01979399 0.9997115 0.004201698 -0.008756116 0.9999529 0.03403211 -0.01620753 0.9992893 -0.02862899 -0.04954059 0.9983617 0.07453271 -0.1057774 0.9915926 -0.03676187 -0.0455657 0.9982846 -0.02229881 -0.01145534 0.9996858 0.02391495 0.008306462 0.9996794 -0.00827426 0.01538543 0.9998474 0.04975087 0.007817426 0.9987311 0.06731939 0.04929178 0.9965131 -0.1467276 0.1498872 0.977755 -0.006989707 0.01407707 0.9998764 -0.03543792 -0.00465333 0.999361 0.02690931 0.003760185 0.9996307 0.008110571 -0.006747822 0.9999444 0.05601785 -0.00514853 0.9984165 0.02253129 -0.03330369 0.9991912 -0.1630099 -0.1207496 0.9792075 0.140772 0.05310075 0.9886169 -0.03482479 0.004318623 0.9993841 5.49618e-4 -0.006053593 0.9999815 -0.005876747 0.006108487 0.9999641 0.03036743 0.01030018 0.9994858 0.008211749 0.04718701 0.9988523 -0.07336901 0.1401373 0.98741 0.169226 -0.04323698 0.9846285 -0.03588918 0.03080297 0.9988809 -0.02806208 0.03338793 0.9990485 -0.01480117 0.02102639 0.9996694 -0.008294065 -0.01196913 0.999894 0.005479125 -0.02487299 0.9996756 6.73942e-4 8.81949e-4 0.9999994 0.009904277 0.004474249 0.9999409 0.05354158 0.003504459 0.9985595 -0.123993 -0.01632323 0.9921488 0.03260715 -0.08739389 0.99564 0.03049611 -0.1102415 0.9934368 -9.83422e-4 0.01293349 0.9999158 -0.0187226 0.05415344 0.9983571 -0.001069238 0.04561987 0.9989583 0.01728478 0.02207037 0.999607 -0.001293199 0.01070075 0.9999419 0.02223573 0.03133367 0.9992616 0.00536088 -0.002260936 0.999983 -0.1480782 -0.3208028 0.935499 0.225745 -0.004019289 0.9741781 -0.0633517 0.01622488 0.9978594 -0.005534272 -0.03601673 0.9993359 0.0442494 0.03398575 0.9984422 -0.02052671 0.02103293 0.999568 -0.03274414 -0.03845173 0.9987239 -0.08835778 -0.04736204 0.9949622 0.249127 -0.1075642 0.962479 -0.1780866 -0.0830868 0.9805008 0.1693554 -0.07977621 0.982321 -0.02859454 -0.09529179 0.9950386 -0.09891155 -0.05036391 0.9938208 0.1148103 0.06630538 0.9911721 0.04702297 0.08601439 0.9951835 0.2176667 0.06877112 0.9735973 0.006940816 0.08054452 0.9967269 -0.01467845 0.05749276 0.998238 -0.05345834 0.04304893 0.9976417 -0.09942184 0.08010951 0.9918154 0.2197041 0.1338026 0.9663473 -0.06882231 0.07530804 0.9947826 -0.1403754 0.2354 0.9617077 0.06159856 0.05967321 0.9963157 0.04881795 0.1243656 0.9910348 0.1217107 0.05000686 0.9913051 0.07618277 0.2364898 0.9686427 -0.06873338 0.05607164 0.9960581 -0.2075484 -0.03947805 0.9774278 0.0854324 -0.08411934 0.9927865 -0.1981239 0.1264032 0.9719923 0.160485 -0.1557417 0.9746738 0.2963696 0.08986604 0.950836 -0.05525471 0.04610785 0.9974072 -0.06901047 -0.05065609 0.9963289 0.1643882 0.01085833 0.9863359 -0.2145157 -0.06304877 0.9746835 -0.1523303 0.1218004 0.9807957 0.1404478 -0.04136165 0.9892238 -0.04077413 0.05670427 0.9975581 -0.08247032 -0.01684744 0.9964511 0.05820008 -0.07653115 0.9953671 -0.05902411 -0.1144167 0.9916779 0.03852729 -0.223367 0.9739727 0.1673906 -0.2266373 0.9594873 0.2044741 -0.06424794 0.9767612 -0.1432448 -0.1271203 0.9814894 -0.03269286 -0.03967932 0.9986775 0.104988 -0.07042215 0.9919769 -0.1737009 -0.1310776 0.9760363 -0.01102928 -0.185362 0.9826084 -0.03665737 -0.05425852 0.9978538 0.1294578 -0.1893893 0.9733305 0.08086371 -0.08183087 0.9933603 -0.1485021 -0.1239255 0.9811165 -0.0778959 -0.06430508 0.9948854 -0.01336008 -0.1124725 0.9935651 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999999 0 0 0.9999999 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999999 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999999 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999999 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.113239 -0.07454699 0.9907672 0.0151622 -0.03525791 0.9992633 -0.03159931 0.04074245 0.9986699 -0.06954579 -0.01223471 0.9975037 0.1065696 -0.019229 0.9941193 -0.001326481 0.08352534 0.9965048 0.01262291 0.0955887 0.9953409 0.00988622 -0.03855435 0.9992076 0.004120372 7.10164e-4 0.9999913 0.1103119 1.7753e-4 0.993897 0 0 1 -0.07058556 -0.009220078 0.9974632 -0.1685036 -0.03151685 0.985197 0 0 1 -0.08382847 0.03433853 0.9958884 -0.0668024 -9.65678e-4 0.9977657 -0.01164465 -0.03388248 0.999358 0 0 1 -0.1034554 -0.07171236 0.9920455 -0.02181988 0.01288849 0.9996788 -0.03379707 0.01018272 0.9993768 0.00686264 -0.08832574 0.9960681 0.03695535 -0.1150844 0.992668 0 0 1 0.01145196 0.03727966 0.9992392 -0.02072413 -0.05401548 0.998325 -0.05474092 -0.08960038 0.9944723 0 0 0.9999999 -0.002314552 0.06049723 0.9981658 0.0101329 -0.1082585 0.9940712 0.02557822 -0.09616651 0.9950366 0 0 0.9999999 -0.01150927 0.05563617 0.9983848 0.05902433 0.0389275 0.9974972 0.1227071 -0.005529999 0.9924276 0 0 1 0 0 1 0.003518635 0.2571533 0.9663642 0.02026057 0.01419926 0.9996939 0.01743723 -0.03038813 0.9993861 0 0 1 0.00279913 -0.001151575 0.9999954 0.008732037 0.5354595 0.8445157 0.001817622 0.8622522 0.506476 -0.01821953 0.7621083 0.6471932 -0.009661715 2.62397e-4 0.9999533 0 0 1 0 0 0.9999999 0 0 1 0.001281363 -5.27226e-4 0.999999 0.008223715 -0.002453989 0.9999632 0 -0.001707667 0.9999986 -0.01084214 -0.006019995 0.9999231 -0.003158301 -0.001900322 0.9999933 0 0 1 0 0 0.9999999 0 0 1 0 0 1 0 0 1 0.01503431 0.002997202 0.9998825 0 0 1 -0.01353117 0 0.9999084 0 0 1 0 0 1 0 0 1 0.001935251 -0.001501125 0.999997 0 0 1 0 0 1 0.006765848 -0.006782298 0.9999542 0 -0.01355459 0.9999081 0.001958305 0.001950498 0.9999962 0 0.01745352 0.9998477 -0.007260189 0.007257636 0.9999474 0 0 1 0.004556332 -0.003509304 0.9999834 0 0 1 0 0 1 0 0 1 0 0 0.9999999 0.01744585 0 0.9998478 0 0 1 -0.0154731 0 0.9998803 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999999 0 0 0.9999999 0.008723536 -0.008722702 0.9999239 0 -0.01745378 0.9998477 -0.008080666 -0.008079259 0.9999347 0 0 1 0 0 0.9999999 0 0 1 0 0 1 0 0 0.9999999 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999999 -0.005194631 0.004930025 0.9999744 0 0 1 0 0 1 0 0 0.9999999 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.007866696 0.009140334 0.9999272 -0.004038746 0.005514523 0.9999766 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999999 0 0 1 0.01573862 0.8639615 0.5033117 0.815272 0.05295149 0.5766521 -0.03004468 0.8625946 0.5050028 0.01562341 0.8208159 0.5709791 0.005714197 0.8127594 0.5825715 0.002284244 0.8101947 0.5861565 -0.8428766 0.03509926 0.5369611 0.8100322 0.02760128 0.5857353 -0.8308071 0.01578151 0.5563367 0.8065929 -0.0272949 0.5904766 -0.8133745 0.02035001 0.5813844 0.8383175 -0.004178275 0.5451664 -0.8206191 -0.009487911 0.5713969 0.8064349 0.03038596 0.5905417 -0.8185087 -0.0134491 0.5743366 0.8084933 -0.005734775 0.5884774 -0.8343121 -0.01503855 0.5510871 0.8274255 -0.006736956 0.5615351 -0.8114959 -0.009788779 0.5842762 0.8301147 -0.01762341 0.5573141 -0.8316683 0.005547482 0.5552452 0.797271 -0.03594206 0.6025507 -0.811618 -0.0414564 0.5827156 0.03943862 -0.8011007 0.597229 0.01669946 -0.8285117 0.5597226 -0.0200665 -0.8282489 0.5600008 0.008173554 -0.7987623 0.6015911 0.03178348 -0.8348581 0.5495467 -0.02122817 -0.8314366 0.555214 -0.0210683 -0.8160421 0.5776083 -0.001729941 -0.8277928 0.5610313 -0.1910044 -0.8521131 0.487258 0.01670234 0.8818799 0.4711784 -0.005665394 0.2985607 0.9543738 -0.01662731 0.3197932 0.9473414 -0.03894744 0.9066087 0.420171 0.008016541 0.9049027 0.425543 -0.03235349 0.06908973 0.9970857 -0.01405405 0.4626707 0.8864188 0.002244772 0.8904833 0.4550103 0 0.2203236 0.9754269 0.002028621 0.2192868 0.9756584 0.007122069 0.8953987 0.4452083 0.174472 0.00277504 0.9846582 0.9489047 0.05101224 0.3114124 0.9282992 0.02314711 0.3711131 0.209547 0 0.9777985 -0.9742787 0.02270604 0.2241997 -0.2110008 0.002394884 0.9774829 -0.1994556 0 0.9799067 -0.9606401 0.001843317 0.2777902 0.2552911 0 0.9668642 0.9307566 -0.02781482 0.3645799 0.9458876 -0.001224289 0.3244924 0.1517851 -0.004426327 0.9884036 -0.960173 0.0013505 0.2794032 -0.3044144 0 0.9525397 -0.2960512 0 0.9551722 -0.9570017 -0.001334316 0.2900792 0.9370217 0.02906493 0.3480597 0.2202566 -2.35226e-4 0.9754419 0.9311236 -0.01386429 0.3644402 -0.9587211 -0.001576256 0.2843439 -0.2692277 0 0.9630765 -0.1557094 0 0.9878029 -0.963504 -0.00168582 0.2676889 0.940951 -0.01498653 0.3382108 0.2330073 0 0.972475 -0.2310522 0 0.9729413 -0.9671324 -0.001121861 0.2542706 0.2140254 0.01356594 0.976734 0.9572118 -0.001491062 0.2893845 0.9683237 -0.01275086 0.2493725 0.2016101 0.01485198 0.9793532 -0.9666283 6.47455e-4 0.2561822 -0.2223074 0 0.9749766 -0.2080992 -0.004582348 0.978097 -0.9698266 -0.03052269 0.2418774 -0.008124269 -0.1997267 0.979818 0.02391333 -0.9521257 0.3047701 0.00266711 -0.9408144 0.3389117 -0.010259 -0.1880822 0.9820997 0 -0.2114728 0.9773839 -0.005217367 -0.9390023 0.343871 0 -0.1423389 0.989818 0.002145509 -0.9409333 0.3385851 0.008794703 -0.930541 0.3660822 0 -0.2624507 0.9649455 0 -0.2211865 0.9752315 -0.006847331 -0.9366099 0.3503067 -0.005482622 -0.9463293 0.3231574 0 -0.2279214 0.9736796 0 -0.2143972 0.9767466 -0.001437505 -0.9559962 0.2933755 -0.2029805 -0.9392715 0.2767091 -0.05935992 -0.2670666 0.9618481 0.0311644 0.7762692 0.6296307 0.01330744 0.7969606 0.6038847 -0.003810806 0.7903038 0.6127034 0.2508581 -0.008545929 0.9679862 0.8199293 0.4325984 0.3749327 0.8557227 0.4158244 0.3079425 0.5907114 0.3201001 0.7406727 -0.5742747 0.3510992 0.7395526 -0.8045413 0.5127081 0.2997396 -0.8247851 0.5377814 0.1747015 -0.7862454 -0.4830619 0.3853174 -0.8506247 -0.4661106 0.2432665 -0.6555439 -0.320962 0.6835536 0.6771244 -0.3693928 0.6364365 0.8309476 -0.4919654 0.2598003 0.7763982 -0.5120854 0.3673885 0.4459133 -0.8255239 0.345936 0.4627282 -0.8398224 0.2838678 0.3501574 -0.6838949 0.6400605 0.3223929 0.5408369 0.77689 0.6065949 0.6835699 0.4059247 0.5747895 0.7223635 0.3844579 -0.2839358 0.6073791 0.7419373 -0.5150978 0.7726783 0.371002 -0.5256993 0.7525532 0.3966158 0.03037325 0.7918462 0.6099647 0.01208329 0.822358 0.5688421 -0.004073282 0.8448167 0.5350404 0.003824088 0.8351049 0.5500774 -0.01317262 0.8426285 0.5383342 -0.03193147 0.8197264 0.5718643 0.003905277 0.8542948 0.5197741 -0.01306772 0.8375227 0.5462461 -0.03225752 0.8145629 0.5791777 0.02220309 0.8024125 0.5963567 0.008952225 0.8176106 0.5757021 -0.003912973 0.8131578 0.5820301 0.02324624 0.227025 0.9736114 0.01087273 0.2576947 0.9661652 -0.001378504 0.2860048 0.9582272 0.004269523 0.9321693 0.3619974 -0.01346561 0.9426271 0.3335758 -0.03171094 0.9515752 0.3057761 0.004522757 0.9875135 0.1574697 -0.01678474 0.9927439 0.1190702 -0.03862013 0.9960932 0.07941562 -0.9874042 0 0.1582177 -0.987522 0.004525376 0.1574162 -0.9885054 0.005179069 0.1510967 -0.9885287 -0.002519872 0.1510124 -0.9845006 0.04392367 0.1697918 -0.9776934 0.03776179 0.2066147 -0.9764737 -0.0474344 0.2103546 -0.9846195 -0.03712518 0.1707227 -0.9871338 -0.03846785 0.155201 -0.9770575 -0.1274893 0.1706027 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.9985582 0.05063158 0.0178324 -0.9975485 0.04396448 0.05444446 -0.9973913 -0.04621009 0.05545452 -0.9991273 -0.03986137 0.01247705 -0.9992938 -0.03757389 0 -0.9923741 -0.1232622 0 0.02680197 -0.9892306 0.143891 0.004269082 -0.989589 0.1438594 0.01115404 -0.9884948 0.1508428 0.01823232 -0.9866385 0.1619014 0.04843347 -0.9828089 0.1781598 0.01259403 -0.97754 0.2103735 -0.04300274 -0.9761301 0.2128866 -0.04619047 -0.9858522 0.1611271 -0.01073176 -0.98862 0.1500518 0.1008519 -0.9823162 0.1577455 0.02239977 -0.9997491 0 0 -1 0 0.01714561 -0.9998227 0.007783744 0.01687665 -0.9996836 0.01864871 0.04338175 -0.9982107 0.04114994 0.01853579 -0.9969628 0.07563997 -0.03947622 -0.9965914 0.07243825 -0.04679788 -0.9988102 0.01371608 -0.01085466 -0.9999411 0 0.1021306 -0.994771 0 0.9787033 0.1073281 0.1749873 0.9778908 0.0655698 0.1985709 0.9772721 -0.07144588 0.1995867 0.9840696 -0.07319895 0.1620153 0.9928456 0 0.1194051 0.9926851 0.002320512 0.1207091 0.9909721 0.002257101 0.13405 0.9886546 -0.004328895 0.1501439 0.9881456 -0.02090464 0.1520895 0.9817047 0.09390448 0.1656432 0.985473 -0.05118568 0.1619353 0.9931211 0.1089092 0.04300353 0.9942006 0.06618476 0.08476143 0.9936044 -0.07198378 0.08699732 0.9966967 -0.07413653 0.03315866 0.9999999 0 0 1 0 0 1 0 0 1 0 0 0.9998707 -0.01607927 0 0.9954563 0.09521988 0 0.9986538 -0.05187032 0 -0.02344965 0.9979845 0.05896778 0 0.9984911 0.05491476 0.002695078 0.9955258 0.09445322 8.4809e-4 0.9955882 0.09382664 0.009970686 0.9954893 0.09434868 0.050061 0.9945837 0.09108911 -0.1554347 0.9856149 0.06635821 -0.02566362 0.9996706 0 0 1 0 0 1 0 0 1 0 0.011127 0.9999381 0 0.05504047 0.9984841 0 -0.1649948 0.9862944 0</float_array>
<technique_common>
<accessor source="#grasshouseShape-normals-array" count="510" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="grasshouseShape-map1" name="grasshouseShape-map1">
<float_array id="grasshouseShape-map1-array" count="1020">0.4229286 0.6119758 0.3986399 0.643828 0.3939967 0.5745787 0.4401841 0.5681992 0.3461003 0.6619145 0.3418908 0.5789519 0.303395 0.6203571 0.2712519 0.5763748 0.2769707 0.6563821 0.2402933 0.6140525 0.2197674 0.5681516 0.4604654 0.5138886 0.4109906 0.5357198 0.3929731 0.5109495 0.3413956 0.515826 0.2783788 0.5163542 0.2158751 0.5162038 0.1798002 0.5415671 0.1538402 0.5141963 0.593916 0.4755879 0.5611862 0.5045111 0.5590124 0.4468015 0.622229 0.4469508 0.5114052 0.5014091 0.5261744 0.4570599 0.4861878 0.5097463 0.4673377 0.4518235 0.5071162 0.4484634 0.4040732 0.4521664 0.3409474 0.4528001 0.2778207 0.4530906 0.2147053 0.4536971 0.1833768 0.48582 0.1548699 0.4541712 0.1046399 0.5012791 0.109617 0.4614686 0.5734456 0.4056312 0.6260193 0.4157143 0.5693419 0.3648838 0.5326613 0.4085984 0.5148603 0.3862497 0.4667013 0.388596 0.1547069 0.3909743 0.2141097 0.3904565 0.1222082 0.4217879 0.5293274 0.3250179 0.5768341 0.322597 0.466097 0.3253941 0.2137288 0.3272404 0.1822671 0.3591917 0.1511737 0.3275923 0.1131724 0.3316922 0.1101779 0.3811907 0.09034359 0.3609745 0.5288197 0.2620595 0.6008213 0.2586422 0.465753 0.2621293 0.2132506 0.2640869 0.1537285 0.2645111 0.1144687 0.2646139 0.5916622 0.1986543 0.5605908 0.2303471 0.5283483 0.1989609 0.4652971 0.1990395 0.21272 0.2044696 0.1531709 0.2039249 0.1364258 0.232915 0.1148619 0.2055587 0.06779242 0.2516221 0.0594351 0.2322031 0.1134526 0.2333389 0.5285905 0.1673204 0.5737779 0.169981 0.4977196 0.1684847 0.4702247 0.1472307 0.4018083 0.1377199 0.4021293 0.1995205 0.3389972 0.1997178 0.3385554 0.1423505 0.2759281 0.204863 0.2755991 0.1636742 0.2122766 0.160752 0.1506166 0.1565908 0.1117219 0.1662184 0.04851767 0.2162413 0.06351304 0.1942908 0.4396747 0.1196628 0.4669673 0.1161526 0.3380719 0.1059673 0.3907536 0.1128289 0.2902726 0.1141161 0.2481678 0.1457959 0.2152804 0.1299679 0.2480348 0.1042253 0.1812088 0.1288674 0.1182902 0.13687 0.1459665 0.1217201 0.4282136 0.05828032 0.4483509 0.07306382 0.2448549 0.05617678 0.2745271 0.07210416 0.1945839 0.06047976 0.2150797 0.04942471 0.4399886 0.6262159 0.4056636 0.6606497 0.4481467 0.5804006 0.3464292 0.6777836 0.2812722 0.6764908 0.2210931 0.637507 0.208213 0.5841646 0.4696175 0.534119 0.1587982 0.5580896 0.145348 0.5219329 0.6235316 0.4980126 0.5756407 0.5149379 0.6384861 0.4528399 0.5184506 0.5148157 0.4898102 0.5187292 0.09201759 0.5103337 0.09553349 0.4670603 0.6510569 0.4044929 0.1082676 0.4267001 0.6221154 0.3842162 0.590091 0.3500263 0.6451759 0.3702326 0.5865461 0.3220364 0.08501622 0.393744 0.04964474 0.4092351 0.08257744 0.3782499 0.0464721 0.3796557 0.6146231 0.2552738 0.06043243 0.3464095 0.09973922 0.3227717 0.09258229 0.2791449 0.6050345 0.191534 0.04772025 0.2692649 0.03453112 0.2391619 0.5888892 0.1582674 0.02781785 0.2094076 0.04466745 0.1802041 0.538104 0.1524748 0.4832591 0.1388658 0.474914 0.1026747 0.0707576 0.182639 0.05525133 0.1694165 0.09498674 0.155728 0.1010896 0.1048706 0.4593448 0.04816723 0.3378104 0.09174481 0.3840538 0.08436474 0.4055187 0.06012356 0.3960213 0.02525824 0.3009771 0.09668845 0.2819026 0.04634953 0.1383767 0.1068265 0.1660479 0.08552921 0.1480055 0.05649382 0.4345166 0.02844486 0.249668 0.03215122 0.1787625 0.0361734 0.208618 0.02923602 0.4549761 0.6384106 0.4154465 0.6846923 0.4621691 0.591908 0.3483763 0.7010249 0.2767611 0.7014531 0.2087549 0.6564074 0.1964592 0.6005387 0.4815499 0.5490284 0.1439525 0.5746173 0.1315748 0.5321378 0.6427104 0.512428 0.5891277 0.5316927 0.6613865 0.4589234 0.5291536 0.5312683 0.4968975 0.5340006 0.07507485 0.5242188 0.07527435 0.4746882 0.6735259 0.4064758 0.09022981 0.4350539 0.6075229 0.347228 0.6656767 0.3693309 0.6043225 0.3199187 0.02792829 0.4148801 0.02258033 0.3748428 0.6346756 0.2520798 0.0326269 0.3302121 0.08356157 0.3171035 0.07613966 0.2941456 0.6250768 0.1850584 0.01757035 0.2961846 0.004045665 0.253393 0.6066874 0.139956 0.003153384 0.2007502 0.02270243 0.1665816 0.5482017 0.1395386 0.4958326 0.1279012 0.4889662 0.09041321 0.03446567 0.1453031 0.07818402 0.1472845 0.08300452 0.07944804 0.470732 0.02740055 0.3380466 0.07110581 0.3707269 0.06612599 0.3851863 0.004298776 0.3051627 0.07387307 0.2971246 0.02070385 0.1271616 0.08422726 0.1339202 0.03505141 0.4373617 0.004249066 0.2553797 0.005688727 0.1678526 0.01342052 0.2029609 0.005991876 0.6299158 0.627856 0.6721352 0.6191003 0.6792073 0.6484985 0.6384035 0.6501559 0.8055986 0.6214777 0.8100584 0.622164 0.8061861 0.6393826 0.7962167 0.6669236 0.8318462 0.6259072 0.8715499 0.6326422 0.8656248 0.6560993 0.8273013 0.6421263 0.6091858 0.6851144 0.6085548 0.6541194 0.6245822 0.6856044 0.6645328 0.6776473 0.7130514 0.6667221 0.7074192 0.6765192 0.7504453 0.6670352 0.7503762 0.6766514 0.7791708 0.6765229 0.8074213 0.6773949 0.8357364 0.6798759 0.8729259 0.6986496 0.8924713 0.654182 0.890811 0.6986461 0.6653591 0.7053244 0.6251721 0.7077804 0.6935469 0.7044216 0.7218218 0.7041332 0.7501835 0.704208 0.7784593 0.7044817 0.8065524 0.705377 0.8347114 0.7071339 0.8722394 0.7189369 0.6103153 0.7348409 0.6098059 0.7075955 0.6377363 0.7340928 0.6658103 0.7328686 0.6938522 0.7320859 0.7218977 0.73179 0.7499486 0.7318732 0.7779393 0.7322321 0.8058971 0.7330376 0.8339453 0.7344011 0.8761067 0.748193 0.8901025 0.7192067 0.8890778 0.7486594 0.6661596 0.7602062 0.6283868 0.7562145 0.6940756 0.7596096 0.7219211 0.759394 0.7497302 0.7594948 0.7775078 0.7598581 0.8053451 0.76057 0.83328 0.7616435 0.8754286 0.7690478 0.6665635 0.7874377 0.6287999 0.776576 0.6942995 0.7870507 0.721944 0.7869598 0.7495456 0.7870981 0.7771447 0.7874306 0.8047938 0.7880119 0.8325244 0.78882 0.8603762 0.7900028 0.6670138 0.8146167 0.6333536 0.8196626 0.6945266 0.8144614 0.7219511 0.8145257 0.7493547 0.8147046 0.7767686 0.8149806 0.804225 0.8153781 0.8317537 0.8159938 0.8682775 0.8172714 0.6674938 0.8417144 0.6339923 0.840448 0.6946657 0.8419131 0.7218918 0.8421384 0.7491511 0.8423491 0.7764289 0.8425584 0.8037086 0.8427419 0.8310272 0.8431045 0.8674646 0.8363037 0.6149891 0.8706017 0.6133871 0.8425108 0.6409129 0.8681442 0.6759006 0.869177 0.6945093 0.8694635 0.7216843 0.8698075 0.7411249 0.8773107 0.7617431 0.8774326 0.8114433 0.8753964 0.8303574 0.8752835 0.8627137 0.872493 0.8852918 0.8384009 0.8828017 0.8731895 0.6732264 0.8942077 0.6378065 0.892281 0.8133435 0.8952281 0.7620351 0.8953224 0.8714998 0.8938851 0.8328595 0.8949795 0.6911465 0.6090555 0.6235356 0.6202406 0.6187732 0.6046232 0.6870992 0.5901624 0.8749107 0.6274632 0.8322481 0.6199085 0.8337181 0.6003364 0.8813828 0.60974 0.6028019 0.6541657 0.6032157 0.6851838 0.5847015 0.683165 0.5844914 0.6493837 0.8967327 0.698757 0.898284 0.6524317 0.9157192 0.6455613 0.9157072 0.6974456 0.6038726 0.7077318 0.6043951 0.735056 0.5856174 0.7350668 0.5850207 0.7068488 0.8949831 0.748957 0.8960908 0.7177757 0.9152526 0.7092295 0.9138684 0.749552 0.6076242 0.8430264 0.6088242 0.8714492 0.5926875 0.8780456 0.5894251 0.8466474 0.8882998 0.8736727 0.8911094 0.838946 0.9090492 0.8428155 0.9054562 0.8804227 0.6353496 0.89833 0.672927 0.9000838 0.6707867 0.9180725 0.6301818 0.9158627 0.7620471 0.9011783 0.8135301 0.9010546 0.8148947 0.9192709 0.7622218 0.9197279 0.8332367 0.9007254 0.8734825 0.8992143 0.8798994 0.9147574 0.8353688 0.9188912 0.8069114 0.6153412 0.6053643 0.777795 0.6112362 0.7775323 0.6125023 0.8214406 0.6066732 0.8218092 0.8883469 0.7698145 0.8942436 0.7701461 0.8933762 0.7921857 0.8875133 0.7918077 0.8920361 0.8196043 0.886221 0.8191369 0.6922585 0.9003838 0.6924882 0.8945563 0.7205825 0.8950008 0.7204692 0.9008679 0.7407568 0.8952156 0.7407041 0.9010878 0.6049759 0.7571021 0.5866781 0.7790167 0.5861474 0.7577429 0.9130155 0.7713733 0.9120399 0.794071 0.5883126 0.8244725 0.9105396 0.8224301 0.7197888 0.9193611 0.6909106 0.9187995 0.7404415 0.9195885 0.7138444 0.6438924 0.7505815 0.644294 0.7954031 0.6442379 0.6097787 0.7569215 0.8118591 0.5957492 0.6108784 0.8838037 0.5966578 0.8933434 0.61528 0.8804283 0.9002239 0.8985947 0.885686 0.887655 0.8819477 0.8846217 0.8923036 0.6460143 0.8968304 0.6430413 0.9134819 0.6361974 0.6030408 0.6428924 0.6079633 0.644836 0.5865061 0.6349195 0.6139669 0.6271709 0.6055956 0.609948 0.6186338 0.6309336 0.8804469 0.6330367 0.8840441 0.6289581 0.8946885 0.6133119 0.6255462 0.8966547 0.6285734 0.8915629 0.6172455 0.9127412 0.7141963 0.6294397 0.7506344 0.6297764 0.7951429 0.6297838 0.7143632 0.6063766 0.7507617 0.6065937 0.7950938 0.6066976 0.7144965 0.5916559 0.7507976 0.5918178 0.7950655 0.5919608 0.7145112 0.5695308 0.7508878 0.5696292 0.7951542 0.5698045 0.7145967 0.5541763 0.7509127 0.5542582 0.795157 0.554443 0.7146301 0.5474859 0.7509241 0.5475668 0.7951623 0.5477517 0.714635 0.5283014 0.7509889 0.5283754 0.7952417 0.5285596 0.9244906 0.6461661 0.9240703 0.6974936 0.9237633 0.7094488 0.9223875 0.7499523 0.9215262 0.7718697 0.9205003 0.7946727 0.9188907 0.8232154 0.9173343 0.8436879 0.9135633 0.8809296 0.9108059 0.897152 0.9913037 0.648902 0.9900315 0.6997314 0.989741 0.7118092 0.9885072 0.7530698 0.9875762 0.7754822 0.9864091 0.7988132 0.9846103 0.827957 0.9829915 0.848723 0.9795725 0.8859798 0.9780672 0.9021032 0.670268 0.9273697 0.6301546 0.9251441 0.7195707 0.9287874 0.6904841 0.9281399 0.7403412 0.9290389 0.8152252 0.9286217 0.7622265 0.9291521 0.8792526 0.9248486 0.8359399 0.927953 0.6189603 0.9241468 0.6684058 0.9920138 0.6284708 0.9902151 0.7185503 0.9934973 0.6888546 0.9927769 0.7398615 0.993799 0.8165819 0.9929752 0.7623626 0.9938912 0.8799561 0.9907264 0.8374815 0.9922562 0.6173949 0.9898033 0.5744815 0.6831671 0.5743982 0.6496978 0.5753126 0.73537 0.5747623 0.7069715 0.5764298 0.7795372 0.5758444 0.7581569 0.5781779 0.82523 0.5826899 0.8785733 0.5795911 0.8476715 0.5747834 0.6367219 0.584315 0.8922569 0.5104668 0.6844611 0.5101496 0.6510319 0.5112895 0.7373402 0.5107551 0.7084831 0.5125264 0.7824337 0.5118529 0.7605829 0.5147538 0.829087 0.5186287 0.8823382 0.5162796 0.8517808 0.509948 0.6381635 0.5196034 0.8958825 0.61785 0.6011863 0.6862285 0.5866197 0.8351164 0.5944815 0.8827732 0.6040984 0.8133596 0.5897604 0.8948664 0.6069219 0.6050811 0.6038509 0.6042507 0.5380279 0.6723534 0.523321 0.8493983 0.5311472 0.896145 0.5412607 0.8278201 0.5262386 0.9080017 0.543833 0.5917871 0.5407014</float_array>
<technique_common>
<accessor source="#grasshouseShape-map1-array" count="510" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="grasshouseShape-vertices" name="grasshouseShape-vertices">
<input semantic="POSITION" source="#grasshouseShape-positions"/>
<input semantic="NORMAL" source="#grasshouseShape-normals"/>
</vertices>
<polylist material="grasshouse1" count="438">
<input semantic="VERTEX" source="#grasshouseShape-vertices" offset="0"/>
<input semantic="TEXCOORD" source="#grasshouseShape-map1" offset="1" set="0"/>
<vcount>4 4 3 4 3 4 4 4 4 4 4 4 4 4 4 4 3 4 4 3 4 4 4 4 4 3 4 3 4 4 4 4 3 4 4 3 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 3 4 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 3 4 4 4 4 4 4 4 3 4 4 4 3 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>
<p>0 0 1 1 6 2 5 3 1 1 2 4 7 5 6 2 7 5 180 6 8 7 3 8 4 9 9 10 8 7 14 11 173 12 15 13 6 2 7 5 16 14 15 13 7 5 8 7 17 15 16 14 8 7 9 10 18 16 17 15 9 10 10 17 19 18 18 16 11 19 12 20 22 21 21 22 12 20 211 23 212 24 22 21 13 25 14 11 24 26 23 27 14 11 15 13 25 28 24 26 15 13 16 14 26 29 25 28 16 14 17 15 27 30 26 29 17 15 18 16 28 31 27 30 28 31 174 32 29 33 19 18 20 34 30 35 29 33 21 22 22 21 205 36 206 37 32 38 175 39 33 40 23 27 24 26 34 41 33 40 28 31 29 33 36 42 35 43 29 33 30 35 37 44 36 42 32 38 33 40 40 45 39 46 33 40 34 41 41 47 40 45 42 48 181 49 43 50 36 42 37 44 44 51 43 50 44 51 182 52 45 53 39 46 40 45 47 54 46 55 40 45 41 47 48 56 47 54 49 57 42 48 43 50 50 58 43 50 44 51 51 59 50 58 53 60 176 61 54 62 47 54 48 56 55 63 54 62 59 64 49 57 50 58 60 65 60 65 177 66 61 67 51 59 52 68 188 69 189 70 53 60 54 62 64 71 63 72 64 71 178 73 65 74 66 75 65 74 55 63 56 76 56 76 57 77 67 78 66 75 57 77 58 79 68 80 67 78 58 79 59 64 69 81 68 80 70 82 69 81 59 64 60 65 60 65 61 67 71 83 70 82 61 67 62 84 192 85 71 83 65 74 66 75 201 86 73 87 66 75 67 78 75 88 74 89 67 78 68 80 76 90 75 88 76 90 179 91 77 92 193 93 69 81 70 82 197 94 77 92 70 82 71 83 79 95 78 96 73 87 201 86 202 97 80 98 76 90 193 93 194 99 82 100 77 92 197 94 198 101 83 102 1 1 0 0 85 103 86 104 0 0 5 3 87 105 85 103 2 4 1 1 86 104 88 106 3 8 2 4 88 106 89 107 4 9 3 8 89 107 90 108 9 10 4 9 90 108 91 109 5 3 14 11 92 110 87 105 10 17 9 10 91 109 93 111 19 18 10 17 93 111 94 112 12 20 11 19 95 113 96 114 11 19 21 22 97 115 95 113 211 23 12 20 96 114 210 116 14 11 13 25 98 117 92 110 20 34 19 18 94 112 99 118 30 35 20 34 99 118 100 119 21 22 206 37 207 120 97 115 37 44 30 35 100 119 102 121 31 122 32 38 103 123 101 124 32 38 39 46 104 125 103 123 38 126 37 44 102 121 105 127 185 128 38 126 105 127 184 129 39 46 46 55 107 130 104 125 44 51 45 53 106 131 108 132 51 59 44 51 108 132 109 133 46 55 53 60 110 134 107 130 52 68 51 59 109 133 111 135 188 69 52 68 111 135 187 136 53 60 63 72 113 137 110 134 192 85 62 84 112 138 191 139 63 72 64 71 115 140 113 137 64 71 65 74 116 141 115 140 65 74 73 87 117 142 116 141 71 83 72 143 114 144 118 145 79 95 71 83 118 145 119 146 73 87 80 98 120 147 117 142 74 89 75 88 122 148 121 149 81 150 74 89 121 149 123 151 75 88 76 90 124 152 122 148 76 90 82 100 125 153 124 152 78 96 79 95 119 146 126 154 84 155 78 96 126 154 127 156 80 98 202 97 203 157 120 147 82 100 194 99 195 158 125 153 83 102 198 101 199 159 128 160 86 104 85 103 129 161 130 162 85 103 87 105 131 163 129 161 88 106 86 104 130 162 132 164 89 107 88 106 132 164 133 165 90 108 89 107 133 165 134 166 91 109 90 108 134 166 135 167 87 105 92 110 136 168 131 163 93 111 91 109 135 167 137 169 94 112 93 111 137 169 138 170 96 114 95 113 139 171 140 172 95 113 97 115 141 173 139 171 210 116 96 114 140 172 209 174 92 110 98 117 142 175 136 168 99 118 94 112 138 170 143 176 100 119 99 118 143 176 144 177 97 115 207 120 208 178 141 173 102 121 100 119 144 177 146 179 101 124 103 123 147 180 145 181 103 123 104 125 148 182 147 180 105 127 102 121 146 179 149 183 184 129 105 127 149 183 183 184 104 125 107 130 151 185 148 182 108 132 106 131 150 186 152 187 109 133 108 132 152 187 153 188 107 130 110 134 154 189 151 185 111 135 109 133 153 188 155 190 187 136 111 135 155 190 186 191 110 134 113 137 157 192 154 189 191 139 112 138 156 193 190 194 113 137 115 140 159 195 157 192 115 140 116 141 160 196 159 195 116 141 117 142 161 197 160 196 118 145 114 144 158 198 162 199 119 146 118 145 162 199 163 200 117 142 120 147 164 201 161 197 121 149 122 148 166 202 165 203 123 151 121 149 165 203 167 204 122 148 124 152 168 205 166 202 124 152 125 153 169 206 168 205 126 154 119 146 163 200 170 207 127 156 126 154 170 207 171 208 120 147 203 157 204 209 164 201 125 153 195 158 196 210 169 206 128 160 199 159 200 211 172 212 5 3 6 2 173 12 173 12 6 2 15 13 5 3 173 12 14 11 18 16 19 18 174 32 174 32 19 18 29 33 18 16 174 32 28 31 22 21 212 24 23 27 175 39 175 39 23 27 33 40 22 21 175 39 32 38 205 36 46 55 47 54 176 61 176 61 47 54 54 62 46 55 176 61 53 60 50 58 51 59 177 66 177 66 51 59 189 70 61 67 50 58 177 66 60 65 54 62 55 63 178 73 178 73 55 63 65 74 54 62 178 73 64 71 68 80 69 81 179 91 179 91 69 81 77 92 68 80 179 91 76 90 2 4 3 8 180 6 180 6 3 8 8 7 2 4 180 6 7 5 35 43 36 42 181 49 181 49 36 42 43 50 35 43 181 49 42 48 37 44 38 126 182 52 182 52 38 126 185 128 45 53 37 44 182 52 44 51 106 131 184 129 183 184 150 186 45 53 185 128 184 129 106 131 112 138 187 136 186 191 156 193 62 84 188 69 187 136 112 138 189 70 188 69 62 84 61 67 114 144 191 139 190 194 158 198 72 143 192 85 191 139 114 144 71 83 192 85 72 143 193 93 77 92 83 102 194 99 195 158 194 99 83 102 128 160 196 210 195 158 128 160 172 212 197 94 70 82 78 96 198 101 197 94 78 96 84 155 199 159 198 101 84 155 127 156 200 211 199 159 127 156 171 208 201 86 66 75 74 89 202 97 201 86 74 89 81 150 203 157 202 97 81 150 123 151 204 209 203 157 123 151 167 204 206 37 205 36 32 38 31 122 207 120 206 37 31 122 101 124 208 178 207 120 101 124 145 181 98 117 210 116 209 174 142 175 13 25 211 23 210 116 98 117 212 24 211 23 13 25 23 27 325 213 326 214 214 215 213 216 329 217 330 218 218 219 217 220 332 221 333 222 220 223 219 224 338 225 335 226 213 216 221 227 213 216 214 215 222 228 221 227 214 215 215 229 223 230 222 228 215 229 216 231 224 232 223 230 216 231 217 220 225 233 224 232 217 220 218 219 226 234 225 233 218 219 219 224 227 235 226 234 219 224 220 223 228 236 227 235 220 223 340 237 341 238 228 236 221 227 222 228 230 239 229 240 222 228 223 230 231 241 230 239 223 230 232 242 231 241 223 230 224 232 233 243 232 242 224 232 225 233 234 244 233 243 225 233 226 234 235 245 234 244 226 234 227 235 236 246 235 245 227 235 228 236 237 247 236 246 346 248 343 249 229 240 238 250 229 240 230 239 239 251 238 250 230 239 231 241 240 252 239 251 231 241 232 242 241 253 240 252 232 242 233 243 242 254 241 253 233 243 234 244 243 255 242 254 234 244 235 245 244 256 243 255 235 245 236 246 245 257 244 256 236 246 237 247 246 258 245 257 237 247 348 259 349 260 246 258 238 250 239 251 248 261 247 262 239 251 240 252 249 263 248 261 240 252 241 253 250 264 249 263 241 253 242 254 251 265 250 264 242 254 243 255 252 266 251 265 243 255 244 256 253 267 252 266 244 256 245 257 254 268 253 267 245 257 246 258 255 269 254 268 247 262 248 261 257 270 256 271 248 261 249 263 258 272 257 270 249 263 250 264 259 273 258 272 250 264 251 265 260 274 259 273 251 265 252 266 261 275 260 274 252 266 253 267 262 276 261 275 253 267 254 268 263 277 262 276 254 268 255 269 264 278 263 277 256 271 257 270 266 279 265 280 257 270 258 272 267 281 266 279 258 272 259 273 268 282 267 281 259 273 260 274 269 283 268 282 260 274 261 275 270 284 269 283 261 275 262 276 271 285 270 284 262 276 263 277 272 286 271 285 263 277 264 278 273 287 272 286 265 280 266 279 275 288 274 289 266 279 267 281 276 290 275 288 267 281 268 282 277 291 276 290 268 282 269 283 278 292 277 291 269 283 270 284 279 293 278 292 270 284 271 285 280 294 279 293 271 285 272 286 281 295 280 294 272 286 273 287 282 296 281 295 365 297 362 298 274 289 283 299 274 289 275 288 284 300 283 299 275 288 276 290 285 301 284 300 276 290 277 291 286 302 285 301 277 291 278 292 287 303 286 302 278 292 279 293 288 304 287 303 279 293 280 294 289 305 288 304 280 294 281 295 290 306 289 305 281 295 282 296 291 307 290 306 282 296 367 308 368 309 291 307 283 299 284 300 373 310 370 311 288 304 289 305 383 312 380 313 290 306 291 307 387 314 384 315 327 316 324 317 292 318 294 319 334 320 331 321 296 322 297 323 336 324 337 325 299 326 293 327 342 328 339 329 298 330 300 331 344 332 345 333 303 334 301 335 350 336 347 337 302 338 304 339 363 340 364 341 313 342 311 343 369 344 366 345 312 346 314 347 371 348 372 349 316 350 315 351 381 352 382 353 321 354 320 355 385 356 386 357 323 358 322 359 325 213 324 317 327 316 326 214 329 217 328 360 330 218 332 221 331 321 334 320 333 222 336 324 335 226 338 225 337 325 340 237 339 329 342 328 341 238 344 332 343 249 346 248 345 333 348 259 347 337 350 336 349 260 353 361 352 362 359 363 358 364 355 365 354 366 357 367 356 368 356 368 357 367 361 369 360 370 363 340 362 298 365 297 364 341 367 308 366 345 369 344 368 309 371 348 370 311 373 310 372 349 375 371 374 372 376 373 377 374 377 374 376 373 379 375 378 376 381 352 380 313 383 312 382 353 385 356 384 315 387 314 386 357 255 269 355 365 356 368 264 278 352 362 256 271 265 280 359 363 264 278 356 368 360 370 273 287 285 301 286 302 376 373 374 372 286 302 287 303 379 375 376 373 351 377 353 361 307 378 305 379 357 367 354 366 306 380 308 381 353 361 358 364 309 382 307 378 361 369 357 367 308 381 310 383 375 371 377 374 318 384 317 385 377 374 378 376 319 386 318 384 216 231 215 229 388 387 389 388 217 220 216 231 389 388 390 389 299 326 337 325 344 332 301 335 303 334 345 333 351 377 305 379 346 248 238 250 247 262 391 390 345 333 346 248 391 390 351 377 309 382 358 364 363 340 311 343 316 350 372 349 375 371 317 385 319 386 378 376 381 352 320 355 321 354 382 353 385 356 322 359 312 346 366 345 361 369 310 383 366 345 367 308 360 370 361 369 354 366 355 365 349 260 350 336 306 380 354 366 350 336 304 339 302 338 347 337 342 328 300 331 296 322 331 321 328 360 295 391 331 321 332 221 330 218 328 360 337 325 338 225 343 249 344 332 352 362 353 361 351 377 391 390 358 364 359 363 362 298 363 340 313 342 364 341 402 392 403 393 364 341 365 297 401 394 402 392 372 349 373 310 374 372 375 371 378 376 379 375 380 313 381 352 382 353 383 312 384 315 385 356 369 344 314 347 398 395 399 396 399 396 400 397 368 309 369 344 341 238 342 328 347 337 348 259 339 329 340 237 395 398 396 399 396 399 397 400 298 330 339 329 335 226 336 324 393 401 394 402 392 403 393 401 336 324 293 327 292 318 324 317 408 404 409 405 407 406 408 404 324 317 325 213 396 399 395 398 410 407 411 408 411 408 412 409 397 400 396 399 399 396 398 395 323 358 386 357 386 357 387 314 400 397 399 396 405 410 406 411 370 311 371 348 404 412 405 410 371 348 315 351 403 393 402 392 405 410 404 412 402 392 401 394 406 411 405 410 394 402 393 401 408 404 407 406 409 405 408 404 393 401 392 403 411 408 410 407 333 222 334 320 334 320 297 323 412 409 411 408 389 388 388 387 413 413 414 414 390 389 389 388 414 414 415 415 414 414 413 413 416 416 417 417 415 415 414 414 417 417 418 418 417 417 416 416 419 419 420 420 418 418 417 417 420 420 421 421 420 420 419 419 422 422 423 423 421 421 420 420 423 423 424 424 423 423 422 422 425 425 426 426 424 424 423 423 426 426 427 427 426 426 425 425 428 428 429 429 427 427 426 426 429 429 430 430 429 429 428 428 431 431 432 432 430 430 429 429 432 432 433 433 300 331 298 330 434 434 435 435 304 339 302 338 436 436 437 437 308 381 306 380 438 438 439 439 310 383 308 381 439 439 440 440 314 347 312 346 441 441 442 442 312 346 310 383 440 440 441 441 306 380 304 339 437 437 438 438 302 338 300 331 435 435 436 436 398 395 314 347 442 442 443 443 435 435 434 434 444 444 445 445 437 437 436 436 446 446 447 447 439 439 438 438 448 448 449 449 440 440 439 439 449 449 450 450 442 442 441 441 451 451 452 452 441 441 440 440 450 450 451 451 438 438 437 437 447 447 448 448 436 436 435 435 445 445 446 446 443 443 442 442 452 452 453 453 315 351 316 350 455 454 454 455 317 385 318 384 457 456 456 457 318 384 319 386 458 458 457 456 320 355 321 354 460 459 459 460 322 359 323 358 462 461 461 462 316 350 317 385 456 457 455 454 319 386 320 355 459 460 458 458 321 354 322 359 461 462 460 459 404 412 315 351 454 455 463 463 454 455 455 454 465 464 464 465 456 457 457 456 467 466 466 467 457 456 458 458 468 468 467 466 459 460 460 459 470 469 469 470 461 462 462 461 472 471 471 472 455 454 456 457 466 467 465 464 458 458 459 460 469 470 468 468 460 459 461 462 471 472 470 469 463 463 454 455 464 465 473 473 293 327 299 326 475 474 474 475 301 335 303 334 477 476 476 477 305 379 307 378 479 478 478 479 307 378 309 382 480 480 479 478 311 343 313 342 482 481 481 482 299 326 301 335 476 477 475 474 303 334 305 379 478 479 477 476 309 382 311 343 481 482 480 480 392 403 293 327 474 475 483 483 313 342 403 393 484 484 482 481 474 475 475 474 486 485 485 486 476 477 477 476 488 487 487 488 478 479 479 478 490 489 489 490 479 478 480 480 491 491 490 489 481 482 482 481 493 492 492 493 475 474 476 477 487 488 486 485 477 476 478 479 489 490 488 487 480 480 481 482 492 493 491 491 483 483 474 475 485 486 494 494 482 481 484 484 495 495 493 492 294 319 292 318 496 496 497 497 297 323 296 322 499 498 500 499 296 322 295 391 498 500 499 498 412 409 297 323 500 499 501 501 292 318 409 405 502 502 496 496 497 497 496 496 503 503 504 504 500 499 499 498 506 505 507 506 499 498 498 500 505 507 506 505 501 501 500 499 507 506 508 508 496 496 502 502 509 509 503 503</p>
</polylist>
</mesh>
<extra>
<technique profile="OpenCOLLADAMaya">
<originalMayaNodeId sid="originalMayaNodeId">grasshouseShape</originalMayaNodeId>
<double_sided sid="double_sided">1</double_sided>
</technique>
</extra>
</geometry>
<geometry id="mushroomShape" name="mushroomShape">
<mesh>
<source id="mushroomShape-positions" name="mushroomShape-positions">
<float_array id="mushroomShape-positions-array" count="1728">-0.09224996 0.1321811 0.02391698 -0.1357137 0.1671053 0.02665094 -0.09710422 0.1347303 0.03454209 -0.1330868 0.1620952 0.03498726 -0.1090407 0.1146182 0.03496205 -0.1440867 0.1063323 0.03461978 -0.1084976 0.113667 0.008483283 -0.1452343 0.1044382 0.02225392 -0.1370754 0.1701585 0.03129995 -0.1121631 0.1547878 0.03569699 -0.09906337 0.1209491 0.03536942 -0.1520335 0.1294765 0.03602877 -0.1195839 0.09965903 0.03537571 -0.1059308 0.1093182 0.03044743 -0.1497982 0.1007425 0.0309094 -0.1184476 0.09742482 0.009995159 -0.09729214 0.1191706 0.01081409 -0.1555035 0.1318997 0.02538686 -0.1122119 0.1580278 0.02576062 -0.09035644 0.1342767 0.03118238 -0.1094502 0.1619608 0.03134615 -0.121922 0.1357046 0.03818318 -0.120196 0.08987385 0.03049153 -0.1233489 0.1388753 0.02018769 -0.1609042 0.1299763 0.03134196 -0.09141581 0.1170204 0.03110678 -0.1492565 0.1552833 0.02562624 -0.1536818 0.1569296 0.03134615 -0.145902 0.1508863 0.03586917 -0.1260944 0.1180157 0.01719335 -0.1145044 0.1270575 0.01492974 -0.1063434 0.1303605 0.01764271 -0.09252188 0.1171884 0.02294267 -0.1065571 0.1104521 0.01919659 -0.1191707 0.09200308 0.01920708 0.1322301 0.0395159 0.02767148 0.171124 0.05526456 0.02971985 0.1351688 0.0419139 0.035634 0.1669412 0.05540735 0.03596892 0.122279 0.0573308 0.03595002 0.1364602 0.0835702 0.0356928 0.1213672 0.05737279 0.01610039 0.1352396 0.08530885 0.02642208 0.173584 0.05501679 0.0332045 0.154358 0.04433709 0.03650018 0.124214 0.04837294 0.0362545 0.153285 0.08013907 0.03675111 0.1244901 0.06989613 0.03625974 0.1193015 0.05730979 0.03256511 0.1350081 0.08952948 0.03291052 0.1225289 0.07060167 0.01723325 0.1223053 0.04753301 0.01784639 0.156062 0.08152075 0.02877178 0.1565187 0.04315279 0.02905316 0.1329892 0.03757566 0.03311737 0.1579949 0.03985606 0.03323914 0.1454999 0.05793135 0.03836378 0.1211126 0.07455355 0.03259766 0.1484643 0.05768357 0.02487346 0.1568578 0.0858044 0.033236 0.1207451 0.04447567 0.03305962 0.1686525 0.06863204 0.02895027 0.1713613 0.07093765 0.0332402 0.1645862 0.06806929 0.03662721 0.1334091 0.06442401 0.02091215 0.1351509 0.05678485 0.02014991 0.1342307 0.05104393 0.02106228 0.1206291 0.04351816 0.02693968 0.119302 0.05751558 0.02413012 0.1210895 0.07603602 0.02413957 0.1282131 -0.03393172 0.01230916 0.1574379 -0.0222105 0.01384834 0.1304211 -0.03223927 0.01829262 0.1542945 -0.02210132 0.01854408 0.1207356 -0.02065664 0.0185299 0.1313917 -9.43497e-4 0.0183369 0.1200504 -0.02065664 0.003615371 0.1304746 1.61007e-4 0.01137115 0.1592858 -0.02239529 0.01646733 0.14484 -0.03042081 0.01894355 0.1221903 -0.02738867 0.0187593 0.1440332 -0.003517881 0.01913176 0.1223971 -0.01121584 0.01876323 0.1184988 -0.02070704 0.01598648 0.1303003 0.003461927 0.01624666 0.1209234 -0.01114864 0.004466586 0.1207557 -0.02776664 0.004927233 0.1461201 -0.002480567 0.01313701 0.1464635 -0.03131114 0.01334754 0.1287837 -0.03546039 0.01640172 0.1475729 -0.03378893 0.01649306 0.1381841 -0.02020727 0.02034362 0.1198595 -0.008154295 0.01601168 0.1404115 -0.02039207 0.01020725 0.1467183 7.36356e-4 0.01649113 0.1195839 -0.03007644 0.01635867 0.1555809 -0.01216495 0.01327114 0.1576164 -0.0104347 0.01649332 0.1525254 -0.01258911 0.01903963 0.129099 -0.01532728 0.007231263 0.1304079 -0.0210682 0.006658012 0.1297163 -0.02538124 0.007343607 0.1194962 -0.02957248 0.01175901 0.1184988 -0.02071543 0.009649212 0.1198419 -0.009263001 0.009656037 0.01804274 -0.1331536 0.0248955 0.03338456 -0.1726965 0.02694493 0.02025488 -0.1361406 0.03285804 0.03352578 -0.1684432 0.033194 0.03541878 -0.1230367 0.03317301 0.06122559 -0.1374551 0.03291683 0.03541693 -0.1221085 0.01332548 0.06266817 -0.1362141 0.02364821 0.03314361 -0.1751973 0.03042644 0.02263609 -0.1556511 0.03372316 0.0266079 -0.1250042 0.03347958 0.05785222 -0.1545592 0.03397514 0.04777728 -0.1252845 0.03348378 0.03535368 -0.1200098 0.02978809 0.06699382 -0.1359768 0.03013667 0.0478639 -0.1232907 0.01445518 0.02611287 -0.1230635 0.01506833 0.05921082 -0.1573824 0.02599581 0.02147384 -0.157847 0.02627719 0.01604161 -0.1339258 0.03034245 0.01823068 -0.1593484 0.03046424 0.03600672 -0.146645 0.03558781 0.05178376 -0.1218503 0.02982169 0.03576419 -0.1496582 0.02209854 0.06342623 -0.158193 0.03046003 0.02309071 -0.1214776 0.03028365 0.0465342 -0.170184 0.0261764 0.04880095 -0.1729379 0.03046423 0.04597878 -0.1660495 0.03385335 0.04239334 -0.1343526 0.01813827 0.03487912 -0.1361228 0.01737394 0.02923477 -0.1351873 0.01828526 0.02374689 -0.1213589 0.02416477 0.03534213 -0.1200098 0.0213552 0.05033275 -0.1218272 0.0213636 0.03053693 -0.1220823 0.01354386 0.02526404 -0.1214324 0.01888161 0.02902375 -0.1200098 0.02266969 0.01981236 -0.1251738 0.02486611 0.01871467 -0.1258804 0.03034245 0.0244115 -0.1216177 0.0320895 0.0286458 -0.1200098 0.03003587 0.03058182 -0.1234965 0.0332234 0.05338801 -0.1648179 0.02634018 0.05675192 -0.1668988 0.03048943 0.05255648 -0.1616923 0.03384914 0.02487975 -0.1432154 0.02329544 0.03236878 -0.1352849 0.01707996 0.0497275 -0.1349364 0.01967534 0.04157124 -0.1403791 0.0202339 0.03481716 -0.1410742 0.01918819 0.03016922 -0.1404684 0.02045648 0.02298835 -0.121455 0.02782686 0.03532061 -0.1200098 0.02605461 0.05150183 -0.1218975 0.02597902 -0.1014976 0.1467371 0.02587822 -0.09017321 0.1341024 0.02838121 -0.1098271 0.1614526 0.02855759 -0.09785596 0.1486962 0.03126637 -0.1259238 0.1652491 0.02592441 -0.1373789 0.1703601 0.02848199 -0.1235819 0.1689952 0.03133356 -0.1100328 0.1597434 0.03374415 -0.1354029 0.1666518 0.03363916 -0.1239253 0.1604531 0.03557941 -0.09308936 0.1339953 0.0332738 -0.1025953 0.1438057 0.03520983 -0.09695934 0.1274082 0.03506704 -0.1164289 0.1470814 0.03714166 -0.1075529 0.1295731 0.0367553 -0.1391889 0.1581475 0.0355542 -0.1355772 0.1466615 0.03721306 -0.1391794 0.1296949 0.03721306 -0.1233856 0.1153195 0.0367994 -0.1492922 0.1162644 0.03538621 -0.1331739 0.1014817 0.03509644 -0.1121127 0.1198257 0.03654532 -0.1130933 0.1063533 0.03502715 -0.1067246 0.1104962 0.03324439 -0.1195398 0.09209127 0.03351738 -0.1118933 0.09855872 0.03038445 -0.1480753 0.1028088 0.03330109 -0.1349882 0.09157471 0.03067631 -0.1317172 0.09325878 0.02102343 -0.1185487 0.09507722 0.01348297 -0.1278976 0.09821436 0.01511662 -0.1119179 0.1002743 0.01861073 -0.1072248 0.1114033 0.01253594 -0.1124324 0.1049863 0.008386694 -0.1108681 0.118528 0.01003716 -0.1195414 0.106769 0.01162882 -0.1412367 0.1234332 0.02198094 -0.1454621 0.1388291 0.02339203 -0.152612 0.1189816 0.02510968 -0.1283207 0.1510249 0.02353901 -0.1425722 0.1636868 0.02583622 -0.09955418 0.1238868 0.01347666 -0.09420595 0.1233366 0.01675659 -0.1536572 0.1573412 0.02846521 -0.1467566 0.1657993 0.03131256 -0.1605519 0.130518 0.02833501 -0.1493295 0.1015405 0.02725361 -0.1581524 0.1144586 0.03115716 -0.1586584 0.1293883 0.03395413 -0.1515296 0.1545778 0.03384075 -0.1029226 0.1170855 0.008777263 -0.09516294 0.1177238 0.01589986 -0.09913684 0.1145237 0.02095203 -0.08969657 0.1228873 0.02387918 -0.08851174 0.1237755 0.03118657 -0.09379804 0.1176335 0.03351738 -0.09816357 0.113837 0.030775 -0.1036872 0.1183118 0.03502924 -0.1536545 0.1444399 0.02584881 -0.1589062 0.1445616 0.03137976 -0.1506434 0.1413909 0.03586498 -0.1067487 0.1418697 0.02269909 -0.09124257 0.1169931 0.02782686 -0.1060006 0.1095303 0.02546456 -0.1200427 0.09036521 0.02536796 0.1452941 0.04031383 0.02914135 0.1328243 0.03736147 0.03101649 0.1578122 0.04029702 0.03114878 0.1451797 0.0371767 0.03317932 0.1662682 0.04949845 0.02917389 0.1738276 0.05514279 0.03109103 0.1677843 0.0465461 0.03323074 0.156798 0.04107396 0.03503765 0.1707188 0.05522677 0.03495891 0.1624591 0.04997721 0.03641199 0.1336632 0.03954108 0.03468278 0.1435366 0.04213648 0.03613481 0.1294247 0.04456387 0.03602877 0.1508145 0.0500402 0.03758474 0.133912 0.05074576 0.03729497 0.1667071 0.06091309 0.03639203 0.158018 0.06283654 0.03763723 0.1489488 0.07157178 0.03763725 0.1340149 0.06653641 0.03732646 0.1440353 0.08328041 0.03626605 0.1305282 0.07818624 0.03605186 0.129115 0.0574064 0.03713747 0.1227315 0.06310531 0.03599937 0.1193015 0.05734758 0.03466178 0.121228 0.07270572 0.03486756 0.1193015 0.0656251 0.03251786 0.1355257 0.08752206 0.03470377 0.1265437 0.08348618 0.03273624 0.1261044 0.08249088 0.02550025 0.121207 0.07311307 0.01984753 0.1268162 0.07690534 0.02107383 0.119302 0.06694798 0.02369231 0.119302 0.05751558 0.01913779 0.1212044 0.06357147 0.01602795 0.1275616 0.05707042 0.01726579 0.1273706 0.06720416 0.01845744 0.1335635 0.0596994 0.01985593 0.1431686 0.07330206 0.02554436 0.1536283 0.0738312 0.02713181 0.1467283 0.08445631 0.028566 0.1615237 0.06323549 0.0273691 0.1546462 0.04958665 0.02740585 0.1715115 0.06107268 0.02910775 0.1276278 0.04957405 0.01863068 0.1257101 0.04373655 0.02230118 0.1332847 0.04695767 0.02294582 0.1716164 0.07076547 0.03107949 0.1744292 0.06304231 0.0332129 0.157072 0.08537184 0.03098288 0.1353105 0.0892145 0.03017025 0.1459167 0.08980665 0.03309741 0.1556399 0.08454451 0.03519514 0.1690515 0.0704001 0.03510905 0.1213409 0.05215262 0.01631983 0.1207015 0.04580697 0.02165862 0.119302 0.04954465 0.02544671 0.1243809 0.04026343 0.02764312 0.125077 0.04013324 0.03311947 0.1208837 0.04613873 0.03486652 0.1193015 0.05022919 0.03280974 0.1227315 0.05241302 0.03599831 0.1633746 0.07559925 0.02911614 0.165422 0.07902198 0.0332654 0.1603005 0.07475513 0.03662721 0.1421271 0.04661749 0.02607141 0.1343267 0.05423145 0.01985699 0.1339834 0.07187836 0.02245131 0.1393375 0.06358826 0.02300777 0.1400204 0.05672185 0.02196415 0.1394251 0.05199304 0.02323454 0.1207241 0.04340896 0.03060283 0.1193015 0.0574064 0.02883057 0.1211587 0.07602343 0.02875707 0.1380292 -0.03344456 0.01341368 0.1286593 -0.03550239 0.01482266 0.1474354 -0.03345715 0.01492239 0.1379431 -0.03580057 0.01644792 0.1537895 -0.02654454 0.01343834 0.1594695 -0.0223029 0.01487935 0.1549286 -0.02876195 0.01648677 0.1466732 -0.03287341 0.0178443 0.1571334 -0.0222399 0.0177855 0.1509269 -0.02618337 0.01887687 0.1292898 -0.03402412 0.01757762 0.136709 -0.03207548 0.01866953 0.1261054 -0.03025284 0.01858973 0.1421774 -0.02613717 0.01975883 0.1294767 -0.02560802 0.01954044 0.1541192 -0.01796467 0.01886324 0.1475897 -0.01651999 0.01979714 0.1407753 -0.009955943 0.01979845 0.1295538 -0.01373982 0.01956432 0.1370838 -0.001157679 0.01876815 0.1269343 -0.004987754 0.01860588 0.1258718 -0.02060205 0.01942232 0.1210758 -0.0163184 0.01856664 0.1184988 -0.02064404 0.01756187 0.1199456 -0.009107605 0.01771621 0.1184988 -0.01471834 0.01595131 0.1306888 0.002025649 0.01759422 0.1239405 -0.001300469 0.01611578 0.12361 -0.003396094 0.01067865 0.1199305 -0.0104389 0.006431235 0.124145 -0.006684415 0.00735174 0.1184988 -0.0151929 0.009319541 0.1184989 -0.02065244 0.005897878 0.1199284 -0.01626381 0.003560251 0.1247051 -0.02085402 0.004490994 0.1245617 -0.01324006 0.005386571 0.129215 -0.01887599 0.006437532 0.1364321 -0.008658245 0.01071173 0.1442914 -0.008259289 0.01190365 0.139107 -2.75761e-4 0.01298136 0.1502243 -0.01622181 0.01208185 0.1450566 -0.02647734 0.01211021 0.157729 -0.01784708 0.013389 0.124755 -0.02648575 0.005516239 0.1233139 -0.03047121 0.008274349 0.1290055 -0.02845118 0.008758891 0.1578075 -0.01056488 0.01487042 0.1599215 -0.0163646 0.01647416 0.146879 4.13001e-4 0.01479732 0.1305276 0.003008366 0.01418785 0.138497 0.003743306 0.01638716 0.1458033 -2.08557e-4 0.01796264 0.1558809 -0.01083787 0.01789863 0.1200309 -0.02438592 0.003780203 0.1195503 -0.02841339 0.00779192 0.1184988 -0.02554083 0.01063823 0.1223152 -0.03257943 0.01228816 0.1228381 -0.03341936 0.01640277 0.1196873 -0.02906433 0.01771621 0.1184988 -0.0258306 0.01617074 0.1210758 -0.02435233 0.01856664 0.1516151 -0.006927982 0.0133957 0.1531532 -0.004362017 0.01651288 0.1493053 -0.007566333 0.0190383 0.1356496 -0.02870736 0.01110754 0.1297884 -0.02298744 0.006437532 0.1295307 -0.00972496 0.008386962 0.1335532 -0.01595723 0.00880613 0.1340669 -0.0211186 0.008021321 0.1336194 -0.0246673 0.008975699 0.1195671 -0.03015204 0.01451188 0.1184988 -0.02073223 0.01318059 0.1198944 -0.008372679 0.01312547 0.01868004 -0.1464355 0.02636538 0.01598597 -0.1337573 0.02823842 0.01866323 -0.1591626 0.02837281 0.01559433 -0.146319 0.03040124 0.02771398 -0.1677598 0.02639898 0.03326541 -0.1754451 0.02831402 0.02481151 -0.169301 0.03045584 0.01942652 -0.158131 0.03226168 0.03334938 -0.1722849 0.03218189 0.02818382 -0.1638866 0.03363497 0.01791884 -0.1346104 0.03190471 0.02047329 -0.1446491 0.03335779 0.02285972 -0.1303015 0.0332528 0.02824576 -0.1520478 0.03480667 0.0289387 -0.1348634 0.03451689 0.03894228 -0.168206 0.03361817 0.04083316 -0.159372 0.03486127 0.04942669 -0.1501506 0.03486127 0.04447216 -0.1349679 0.03455049 0.06094317 -0.1451552 0.03349218 0.05592984 -0.1314234 0.0332738 0.03549331 -0.129986 0.03436151 0.04109669 -0.1234965 0.0332234 0.03543451 -0.1200098 0.03188372 0.05053855 -0.1219679 0.0320895 0.04319125 -0.1200098 0.0297419 0.06511343 -0.1365039 0.03192991 0.06075943 -0.1273717 0.02996028 0.05801497 -0.1269245 0.02272429 0.04879464 -0.1219469 0.01707156 0.0537077 -0.1276489 0.01829786 0.04257391 -0.1200098 0.02091424 0.0354256 -0.1200098 0.01636183 0.04117177 -0.1219437 0.01324989 0.03516366 -0.128407 0.01448878 0.04512939 -0.1282127 0.01568148 0.03774852 -0.1345091 0.01707996 0.05112493 -0.1442743 0.02277048 0.0516483 -0.1549088 0.02435375 0.06209649 -0.1478933 0.02579003 0.04122478 -0.1629354 0.02459313 0.02780218 -0.1559435 0.02463092 0.03909765 -0.1730902 0.02633178 0.02778749 -0.1284747 0.01585367 0.02257414 -0.126525 0.01952416 0.02521679 -0.1342256 0.0201709 0.04863191 -0.1731962 0.02830142 0.0410358 -0.1760561 0.03043904 0.06299731 -0.1584092 0.02820482 0.06639536 -0.1362855 0.02739429 0.06736128 -0.1470681 0.03032144 0.06218523 -0.1569541 0.03241707 0.04827075 -0.1705893 0.03233308 -0.09795779 0.1482888 0.0284904 -0.123993 0.168802 0.0285324 -0.122889 0.1659043 0.03372315 -0.09971009 0.1474993 0.03349217 -0.1055854 0.1367209 0.03644873 -0.1286981 0.1535867 0.03677211 -0.1355488 0.1159243 0.03656632 -0.1151522 0.1150234 0.03652433 -0.1119174 0.1002743 0.03338088 -0.1337419 0.09400631 0.03338088 -0.1273858 0.09328397 0.01585996 -0.1119376 0.1016497 0.01214537 -0.1138765 0.1122496 0.01003716 -0.1311744 0.1582693 0.02410176 -0.1469078 0.1661646 0.02846521 -0.1576951 0.1151599 0.02794025 -0.1560883 0.1152985 0.03361187 -0.1446956 0.1626705 0.03370637 -0.1005841 0.1152481 0.01370554 -0.09143941 0.12143 0.01858343 -0.09133916 0.1240527 0.03337879 -0.09980564 0.114698 0.03338089 -0.1587057 0.1450194 0.02846521 -0.1566605 0.1429826 0.03397933 -0.142642 0.1402318 0.03732225 -0.106597 0.1210331 0.01003716 -0.1277635 0.1033799 0.01445518 -0.08826134 0.1236978 0.02828461 -0.09813525 0.1139168 0.02663625 -0.111898 0.098901 0.02507608 -0.1346491 0.09225925 0.02624569 -0.1086826 0.1236957 0.03652433 0.1449571 0.03739506 0.03109732 0.1678137 0.04689047 0.03113092 0.165549 0.04725164 0.0350219 0.1451104 0.03884816 0.03484867 0.1392445 0.04676868 0.03706398 0.1598637 0.05569714 0.0373065 0.139529 0.07433936 0.03715217 0.1288283 0.06121126 0.03712067 0.1193015 0.06460458 0.03476468 0.1270047 0.08136117 0.03476468 0.1245946 0.07951753 0.02163028 0.119302 0.06566709 0.01884591 0.1269123 0.06141284 0.01726685 0.147448 0.07725392 0.02689244 0.1637805 0.05557954 0.02780795 0.1283055 0.04561798 0.02105703 0.17472 0.06300451 0.03107949 0.1461928 0.08924392 0.0306868 0.1456805 0.088131 0.03493686 0.1716606 0.06285332 0.03500615 0.119302 0.05065756 0.02001552 0.1231893 0.04201889 0.02367026 0.1256293 0.04211126 0.03476362 0.1193015 0.05120772 0.03476362 0.1598144 0.07076126 0.02741949 0.1656393 0.0787154 0.03107948 0.163571 0.07813165 0.03521192 0.1565628 0.06990872 0.03771912 0.1461797 0.04459326 0.02744153 0.1274572 0.05331592 0.01726579 0.1289837 0.07390259 0.02057616 0.1390041 0.06936699 0.02414377 0.1394692 0.05836391 0.02192215 0.1401957 0.05508819 0.02192215 0.1383253 0.04860394 0.02462463 0.1249888 0.03935631 0.0309451 0.1193015 0.04954046 0.0297083 0.1193015 0.06666662 0.02853869 0.1267306 0.08417495 0.02941432 0.1288284 0.05369391 0.03712067 0.1377762 -0.03563678 0.01488459 0.1549507 -0.02850158 0.01490927 0.1532493 -0.0282328 0.01783274 0.1378917 -0.03454486 0.01770257 0.1334836 -0.02859397 0.0193672 0.1489767 -0.02188294 0.01954937 0.1336973 -0.007877119 0.01943333 0.1256571 -0.01774208 0.01940972 0.1184988 -0.0151929 0.01763904 0.124287 -0.002602354 0.01763898 0.1224756 -0.005550511 0.007770136 0.1184988 -0.01556666 0.005677926 0.1242171 -0.0175909 0.004490994 0.1396477 -0.005689099 0.0117249 0.1519199 -0.02197532 0.01241257 0.1252639 -0.0294591 0.007339934 0.1601399 -0.016394 0.0148699 0.1387049 0.003319144 0.01457501 0.1383201 0.002483428 0.01776876 0.1578405 -0.01650739 0.0178212 0.1184989 -0.02502847 0.006557221 0.1214197 -0.03130694 0.009303266 0.1232528 -0.03209227 0.01763852 0.1184988 -0.02525945 0.01763904 0.1489397 -0.01056489 0.01211965 0.153317 -0.004588783 0.01487095 0.1517626 -0.005029768 0.0179758 0.1464963 -0.01120743 0.01985881 0.1386949 -0.03022763 0.01213697 0.1246267 -0.02367619 0.004490994 0.1257736 -0.008204684 0.006978762 0.1333028 -0.01161479 0.009659709 0.1336524 -0.0198839 0.007989828 0.1341984 -0.02234489 0.007989828 0.1327928 -0.02721649 0.01002036 0.1227719 -0.03352015 0.01476911 0.1184988 -0.02586839 0.01383993 0.1184988 -0.01481493 0.01296064 0.1240807 -0.001661636 0.01361962 0.1256571 -0.02339061 0.01940972 0.01581062 -0.1460927 0.02832242 0.02515063 -0.169331 0.02835601 0.02550235 -0.1670285 0.03224489 0.0172385 -0.1462492 0.0320727 0.02502674 -0.1402846 0.03428591 0.03381345 -0.1612482 0.03452949 0.05214596 -0.1405744 0.0343741 0.03923625 -0.1296952 0.03434471 0.04257391 -0.1200098 0.03198871 0.05905439 -0.12784 0.03198871 0.05519332 -0.1253906 0.01885222 0.04208098 -0.1200098 0.01606785 0.03943153 -0.1277466 0.01448878 0.05501485 -0.1486251 0.02411857 0.03369533 -0.1652305 0.02502989 0.0238986 -0.1291629 0.01828106 0.040998 -0.1763522 0.02830142 0.06680536 -0.1473495 0.02791085 0.06571083 -0.1468287 0.03216089 0.04084995 -0.1732413 0.03223229 0.02969623 -0.1200098 0.01723955 0.02148066 -0.1239617 0.02089324 0.02044807 -0.1264421 0.0319887 0.02939333 -0.1200098 0.03198871 0.04862823 -0.1611978 0.02464353 0.05645269 -0.1671204 0.02830562 0.05587736 -0.1650174 0.03243807 0.04778883 -0.1578916 0.03494105 0.0228886 -0.1473358 0.02466452 0.03146742 -0.1283009 0.01448878 0.05171761 -0.1298527 0.0178023 0.04725549 -0.14004 0.0213678 0.0364335 -0.1405135 0.01914619 0.03321186 -0.1412516 0.01914619 0.02683364 -0.1393502 0.02184656 0.01858133 -0.1257911 0.02816703 0.02859803 -0.1200098 0.02693233 0.04306738 -0.1200098 0.02576063 0.06028593 -0.1275628 0.02663836 0.03183961 -0.1296952 0.03434471</float_array>
<technique_common>
<accessor source="#mushroomShape-positions-array" count="576" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="mushroomShape-normals" name="mushroomShape-normals">
<float_array id="mushroomShape-normals-array" count="1728">0.5706595 0.4253595 -0.7024364 -0.02740751 0.3886889 -0.9209613 0.2851496 0.09682989 0.9535794 -0.03387721 0.2438365 0.9692245 0.2218257 -0.1837278 0.9576207 -0.1277864 -0.1539718 0.9797772 0.2259903 -0.2026527 -0.952817 -0.4646882 -0.1959419 -0.8635228 -0.1186567 0.8315316 0.5426562 0.1606088 0.1873092 0.9690821 0.1657479 -0.1165892 0.979252 -0.1801207 -0.03691109 0.9829517 0.04323949 -0.1625212 0.9857572 0.7502786 -0.6453847 0.1433896 -0.6639161 -0.7066964 0.2445314 -0.1199755 -0.2868234 -0.9504409 0.5229382 -0.0496857 -0.8509213 -0.339128 0.008701785 -0.9406999 0.1912799 0.2882751 -0.938248 0.8462902 0.3150173 0.4296009 0.5787697 0.7597152 0.296409 0.01471198 3.09184e-4 0.9998917 0.2443347 -0.9510791 0.1890744 -0.09337124 0.2300384 -0.968692 -0.9528659 -0.0298526 0.3019196 0.6712452 -0.6500896 0.3561086 -0.2031107 0.1408575 -0.9689713 -0.7480719 0.436372 0.4999679 -0.1611884 0.1345422 0.9777099 -0.3370248 0.1660594 -0.9267355 -0.1952005 0.359861 -0.9123579 0.179292 0.526419 -0.8311061 0.6584675 -0.7196331 -0.2203379 0.7508963 -0.6426578 -0.152137 0.3559326 -0.9048486 -0.2335833 0.1012586 -0.6944882 -0.7123431 0.3545608 -0.1704776 -0.9193606 -0.05406698 -0.2978706 0.9530739 0.2310779 -0.09280138 0.9684992 -0.2601131 0 0.9655781 -0.08260366 0.1843126 0.9793904 -0.3257813 -0.0232584 -0.945159 0.09255514 0.4780626 -0.8734356 0.7830803 -0.31135 0.5383738 0.08240245 -0.2286387 0.9700177 -0.163739 -0.1399432 0.9765272 0.05925277 0.1732022 0.9831023 -0.1695936 0.08670817 0.9816923 -1 0 0 -0.3028061 0.8963751 0.3237594 -0.07252154 0.2906524 -0.9540765 -0.1869284 -0.511197 -0.8388893 0.19103 0.2988897 -0.934972 0.1705579 -0.3613909 -0.9166824 -0.1220788 -0.8687167 0.4800291 0.3792873 -0.8762288 0.2972611 -0.007113505 -0.01466325 0.9998671 -0.9010689 0.369114 0.227661 0.1867503 -0.03644298 -0.9817312 0.4550675 0.8365335 0.3051643 -0.8175669 -0.4577813 0.3493145 0.2847376 0.1349496 -0.9490591 0.7577957 0.4195334 0.4997374 0.1992343 0.06987386 0.9774576 0.3949005 0.1804171 -0.9008348 0.3531197 0.04476097 -0.9345067 0.3965522 -0.4001557 -0.8262093 -0.8706414 -0.4838448 -0.08875753 -1 0 0 -0.9059132 0.4097117 -0.1070401 0.05579208 -0.7047691 -0.7072394 0.3545678 -0.1704575 -0.9193617 -0.0541033 -0.2980545 0.9530143 0.2310333 -0.09283888 0.9685064 -0.2601467 0 0.9655691 -0.08269816 0.1842888 0.9793868 -0.2974326 -0.02482718 -0.95442 0.03317394 0.4879344 -0.8722497 0.7831296 -0.3111617 0.5384111 0.08245185 -0.2286499 0.9700108 -0.1637502 -0.1399635 0.9765224 0.05931542 0.1732089 0.9830973 -0.1696426 0.08675768 0.9816794 -1 0 0 -0.3344847 0.9152859 0.2244361 -0.1081709 0.3256704 -0.9392752 -0.2252718 -0.5356974 -0.8138064 0.1909849 0.2988914 -0.9349806 0.1705503 -0.3614433 -0.9166631 -0.1404949 -0.8927012 0.428189 0.3792714 -0.8762898 0.2971017 -0.007110393 -0.01464513 0.9998675 -0.9101099 0.401863 0.1010256 0.1867041 -0.03644104 -0.9817401 0.4550976 0.836498 0.3052166 -0.8261955 -0.5031232 0.2535115 0.2847911 0.1349601 -0.9490415 0.7578021 0.4196244 0.4996512 0.1991044 0.06991962 0.9774808 0.3949718 0.1804233 -0.9008022 0.353154 0.04481586 -0.9344912 0.3965565 -0.4002769 -0.8261485 -0.8804342 -0.4661248 -0.08696786 -1 0 0 -0.9185261 0.3834161 -0.09644564 -0.7106215 -0.05543988 -0.7013867 -0.1742796 -0.3498011 -0.9204704 -0.3022828 0.05287967 0.9517504 -0.09488738 -0.2276698 0.9691041 0 0.2564399 0.9665602 0.1867779 0.08102609 0.979055 -0.02536502 0.2928961 -0.9558077 0.4929315 -0.03446402 -0.8693853 -0.3188356 -0.7776558 0.5418444 -0.231849 -0.080841 0.9693868 -0.1426744 0.1611162 0.9765682 0.1761469 -0.05828116 0.982637 0.08860686 0.1672646 0.9819223 0 1 0 0.9187447 0.3264468 0.2221278 0.3303043 0.1059258 -0.937912 -0.5419341 0.2204147 -0.8110024 0.303522 -0.1874165 -0.9342106 -0.3662414 -0.1670801 -0.9153969 -0.8958974 0.1367813 0.4226804 -0.8809304 -0.3704593 0.2944849 -0.0149181 0.007272733 0.9998623 0.4124283 0.9053056 0.1016101 -0.03694994 -0.1832578 -0.9823702 0.8429309 -0.4447067 0.3028259 -0.5144138 0.8190959 0.2538903 0.1373119 -0.2800392 -0.9501176 0.4288411 -0.7505736 0.5027272 0.07127456 -0.1958476 0.9780407 0.1838635 -0.3893359 -0.9025584 0.04573527 -0.3480158 -0.9363723 -0.4069881 -0.3899868 -0.8259969 -0.4781518 0.8738801 -0.08777367 0 1 0 0.3941932 0.9138243 -0.09765783 -0.2080931 0.3177608 -0.9250541 -0.5320909 0.7906206 -0.3029823 -0.1273255 0.9915712 -0.023974 -0.850587 0.3976625 -0.344044 -0.7947745 0.4359154 0.4222692 -0.307156 0.5028892 0.8079342 -0.1232325 0.9915265 0.04109742 -0.03261591 0.2302095 0.9725944 0.2388264 -0.2560427 -0.9366985 0.6482587 -0.6462597 0.4026275 0.1450922 -0.151552 0.9777424 -0.336086 -0.1903149 -0.9224026 -0.1977138 -0.3685395 -0.9083434 0.2143517 -0.3348531 -0.9175657 0.1705044 -0.2999197 -0.9386035 0.02000052 -0.3487261 -0.9370112 -0.3574931 -0.3444364 -0.8680797 -0.5051832 0.8622754 -0.03565406 0 1 0 0.4048621 0.9107748 -0.08109243 0.2989678 0.3096196 -0.9026372 0.83694 0.370407 -0.4029021 0.4851214 0.6249875 -0.6115944 0.7743157 0.5374465 0.3340456 0.1036718 0.3163154 -0.9429722 -0.1264431 0.8553709 -0.5023471 0.2476981 0.8756261 0.4146378 0.3328208 0.4092143 0.8495728 -0.05915451 0.4332694 0.899321 0.05579847 0.2244598 0.9728845 0.4837125 0.1707243 0.8584145 0.2346923 0.132226 0.9630347 0.2279393 0.01497773 0.9735602 0.07422262 0.08806153 0.9933459 0.1084735 -0.01534762 0.9939809 -0.09751536 0.176941 0.9793787 -0.04457137 0.06554259 0.9968538 -0.06058164 -0.03980902 0.9973691 -0.001529126 -0.07937068 0.9968441 -0.1466118 -0.1013448 0.983989 -0.06463176 -0.1522681 0.9862238 0.08624168 -0.08424583 0.9927059 0.1974981 -0.1384283 0.9704804 0.4655917 -0.3879005 0.7954606 0.1622103 -0.4942357 0.8540602 0.7951767 -0.5974972 0.1033976 -0.3254957 -0.3469236 0.8796002 -0.3347679 -0.9124908 0.2351404 -0.3899813 -0.7402559 -0.5476639 0.3294377 -0.8050926 -0.4932512 -0.4519577 -0.1231143 -0.8835027 0.8115593 -0.5659251 -0.1452597 0.7428517 -0.5959629 -0.3049584 0.1815804 -0.1748996 -0.9676976 -0.3184802 0.2618811 -0.911037 -0.4005588 0.1712814 -0.9001196 -0.2349434 0.05609516 -0.9703891 -0.1587296 0.07827961 -0.984214 -0.3726857 -0.05458754 -0.9263507 -0.01368385 0.171003 -0.9851755 -0.1529576 0.2177839 -0.9639367 0.2272833 0.6144137 -0.7555383 0.5287781 0.4912032 -0.6921801 -0.6809071 0.3868777 -0.6218449 -0.5046633 0.6445121 0.5743859 -0.7496405 -0.01438902 -0.6616889 -0.6282173 -0.5482095 -0.5520955 -0.8974507 -0.3650152 0.2476818 -0.4810907 -0.03007035 0.876155 -0.3716289 0.2319499 0.898939 0.3310237 -0.1295228 -0.934691 0.6574869 -0.6493689 -0.3821401 0.4749047 -0.8610908 -0.1816265 0.9162232 -0.006519119 -0.4006152 0.8832612 -0.05717532 0.4653822 0.3604976 -0.3570506 0.8617171 0.4510843 -0.8695964 0.2008116 0.1254249 -0.2086471 0.9699149 -0.2560644 0.1142503 -0.9598843 -0.8845924 0.2392348 0.4003287 -0.2013725 0.05830803 0.9777778 0.1516049 0.2927622 -0.9440902 0.7039514 -0.7027863 -0.1026835 0.752181 -0.6512926 -0.1002086 0.2826043 -0.9447671 -0.1659815 0.1121366 -0.4889837 -0.8650551 -0.05341651 -0.9265959 -0.3722456 0.3078777 -0.7277471 -0.6128585 0.0882564 -0.9327912 0.3494444 0.2526848 -0.2604606 -0.9318319 0.8071792 -0.3162479 -0.4984468 0.642774 -0.6457037 0.4121993 0.1932225 -0.4869153 0.851809 0.4094262 -0.1655098 0.897205 0.1673493 -0.1588036 0.973024 -0.0851393 -0.5030091 0.8600775 -7.40488e-4 -0.2644485 0.9643996 -0.08836318 -0.220925 0.9712796 0.03767588 -0.1081507 0.9934204 -0.05826085 -0.08749026 0.9944603 0.20408 -0.005400543 0.9789394 0.07946464 0.004297205 0.9968284 -0.00403967 0.07129256 0.9974473 -0.06965562 0.05373864 0.9961225 -0.01701 0.1767869 0.9841021 -0.1192698 0.1347658 0.9836732 -0.09801647 -0.001296363 0.9951839 -0.2245657 0.02662705 0.974095 -0.7645884 0 0.6445187 -0.5570048 0.2300842 0.7980018 -0.9928989 0.1061168 0.05376796 -0.1710535 0.4485762 0.877223 -0.6796321 0.6467189 0.346201 -0.4523418 0.7349536 -0.5052031 -0.7783862 0.3974337 -0.4859644 0.1988104 0.3917742 -0.8983247 -0.9933179 0.1120629 -0.02759837 -0.9758896 -0.0138923 -0.2178224 -0.239005 0.09479483 -0.9663801 0.2727452 0.01390388 -0.9619859 0.3657325 0.1771867 -0.9136983 0.3785854 0.1474328 -0.9137486 0.2037199 0.1600433 -0.9658594 0.1393369 0.1278425 -0.9819581 0.1507308 0.342018 -0.9275257 0.1635383 0.01776044 -0.986377 0.1534324 -0.1730623 -0.9728864 0.3026867 0.008118477 -0.9530555 0.3133545 -0.4005679 -0.8610194 0.1148163 -0.7080814 -0.6967338 0.3361486 -0.4954959 -0.8009293 0.6804798 0.3873506 -0.6220183 0.8137938 0.1075797 0.5711096 0.3647112 0.6509171 -0.6658024 -0.1430306 0.8385346 -0.5257394 0.1415209 0.9511465 0.274394 0.2163807 0.4286122 0.8771949 0.3895074 0.2002998 0.8989794 -0.330315 -0.1891536 -0.9247231 -0.7677217 -0.5208969 -0.3731885 -0.9932564 -0.1132896 -0.02464496 -0.3028593 -0.8779377 -0.3708119 -0.4051622 -0.7392837 0.5378692 -0.5063668 -0.293051 0.8109955 -0.9924684 -0.1057078 0.06190548 -0.2334758 -0.03214904 0.971831 0.2602167 0.234966 -0.9365246 0.6563552 0.63828 0.4022392 0.1538379 0.142625 0.9777485 0.195244 -0.3295793 -0.9237194 0.3740166 -0.1944098 -0.9068167 0.3452163 0.2052025 -0.9158152 0.3043804 0.1674379 -0.937719 0.3539308 0.01856895 -0.9350872 0.3500261 -0.3517238 -0.8682004 -0.8674014 -0.4917768 0.07596285 -1 0 0 -0.9167727 0.3974707 0.03930387 0.1087148 -0.4912174 -0.864226 -0.08805899 -0.9106322 -0.4037261 0.3078601 -0.7277786 -0.61283 0.08559511 -0.9370154 0.3386379 0.2527162 -0.2605158 -0.9318079 0.8072634 -0.3163719 -0.4982313 0.6428638 -0.6457825 0.411936 0.1931764 -0.4869469 0.8518013 0.4094437 -0.1655762 0.8971847 0.1673457 -0.1587848 0.9730276 -0.0877378 -0.5088901 0.8563486 -7.51612e-4 -0.2645372 0.9643751 -0.0883722 -0.2210174 0.9712577 0.03769714 -0.108113 0.9934237 -0.05825776 -0.08745625 0.9944633 0.2040221 -0.005436226 0.9789512 0.07942265 0.004318917 0.9968316 -0.003996758 0.07126604 0.9974492 -0.06966873 0.05374269 0.9961215 -0.01703633 0.1768438 0.9840915 -0.1193156 0.1348115 0.9836613 -0.09801447 -0.001293999 0.9951841 -0.2246165 0.02660772 0.9740838 -0.7602829 0 0.649592 -0.562236 0.2404361 0.791253 -0.9924429 0.1210628 0.02002301 -0.1771472 0.4575243 0.8713727 -0.71498 0.67465 0.1834421 -0.5707354 0.6840885 -0.4541849 -0.8401368 0.4091171 -0.3560808 0.1101802 0.4521175 -0.8851271 -0.9925449 0.1191206 -0.02578565 -0.9728924 -0.01677199 -0.2306493 -0.2286995 0.1130505 -0.9669107 0.2739521 0.0141133 -0.9616398 0.3576424 0.1842295 -0.9155061 0.3786701 0.1474914 -0.9137041 0.2022614 0.160931 -0.9660184 0.1392708 0.1278805 -0.9819625 0.145526 0.3449756 -0.9272615 0.1635692 0.01772831 -0.9863726 0.1534017 -0.173054 -0.9728926 0.3026613 0.008111712 -0.9530636 0.3013303 -0.4112091 -0.8602948 0.0308927 -0.748906 -0.6619559 0.3282578 -0.5040466 -0.7988641 0.6805094 0.3873542 -0.6219836 0.8138255 0.1076514 0.5710509 0.3647675 0.651178 -0.6655163 -0.1911087 0.8026987 -0.5649356 0.135367 0.9581958 0.2520645 0.2164738 0.4287083 0.8771251 0.3895831 0.2004437 0.8989146 -0.3217877 -0.2047666 -0.9244043 -0.7987463 -0.5206571 -0.3015303 -0.992098 -0.1232265 -0.0235932 -0.4083681 -0.8443359 -0.3468898 -0.4453299 -0.7873327 0.4263666 -0.5087553 -0.301536 0.8063772 -0.9920118 -0.1194327 0.04059815 -0.2334713 -0.03209253 0.9718339 0.2602889 0.2350172 -0.9364916 0.6563757 0.6381493 0.4024134 0.1537997 0.14261 0.9777567 0.1937301 -0.3306034 -0.923672 0.3740189 -0.1944173 -0.906814 0.3399549 0.2103273 -0.9166204 0.3043754 0.167443 -0.9377198 0.3539375 0.01860974 -0.9350838 0.3500312 -0.3517853 -0.8681735 -0.8692516 -0.4930854 -0.03561731 -1 0 0 -0.9156343 0.3939263 -0.0802239 -0.4972299 -0.1065392 -0.8610528 -0.9131542 0.08551822 -0.3985423 -0.7337959 -0.3010423 -0.6090296 -0.938992 -0.08319926 0.3337245 -0.2654177 -0.2489291 -0.9314439 -0.3240837 -0.80198 -0.5017946 -0.6550804 -0.6328251 0.412798 -0.4928088 -0.1892438 0.8493092 -0.1692587 -0.4042032 0.8988723 -0.1618716 -0.1648229 0.9729496 -0.5150644 0.08576011 0.8528504 -0.2679374 7.83596e-4 0.963436 -0.2241548 0.0864957 0.9707075 -0.1098304 -0.03714992 0.9932558 -0.08886552 0.05744007 0.994386 -0.005533713 -0.2011942 0.9795358 0.00420419 -0.07821395 0.9969277 0.07245307 0.003914234 0.9973641 0.0547101 0.06862672 0.9961411 0.1791503 0.01684162 0.9836776 0.1367208 0.1170039 0.9836755 -0.001380953 0.096351 0.9953465 0.02709931 0.2215953 0.9747621 0 0.7550406 0.655678 0.2456076 0.5569403 0.7934068 0.1248542 0.9919673 0.0203049 0.4627178 0.1728992 0.8694816 0.6856561 0.7046593 0.1825673 0.6937844 0.5595204 -0.4534315 0.4193294 0.8339544 -0.3587238 0.4596933 -0.1069845 -0.8816102 0.1231005 0.9920471 -0.02624695 -0.01733931 0.9720032 -0.2343268 0.1150087 0.2266255 -0.967168 0.01440967 -0.2698962 -0.9627815 0.1881343 -0.3524264 -0.916734 0.1503231 -0.3733577 -0.9154273 0.1639066 -0.1988329 -0.9662299 0.1298861 -0.1367468 -0.9820539 0.3497736 -0.1427578 -0.9258934 0.01761118 -0.1611265 -0.9867766 -0.1754479 -0.1509154 -0.9728528 0.008507187 -0.299096 -0.9541851 -0.4179659 -0.295918 -0.8589162 -0.7549297 -0.02964047 -0.6551356 -0.5114214 -0.3219986 -0.7967215 0.3952149 -0.6735789 -0.6245772 0.1104324 -0.8099809 0.5759649 0.6579338 -0.3574003 -0.6628635 0.8074803 0.186125 -0.5597615 0.9596695 -0.1314993 0.2484802 0.4345707 -0.2124319 0.8752263 0.2042537 -0.3842908 0.9003338 0.6856326 0.4982858 -0.5306779 0.2516413 0.7695854 -0.5868688 0.143953 0.4703411 0.8706646 0.4486783 0.2962579 0.8431602 0.1485841 0.04975384 0.9876474 -0.004055633 0.1203026 0.9927289 -0.05346873 -0.08305127 0.9951098 0.09424359 -0.08668894 0.9917676 0.5506706 -0.3797441 0.7433414 -0.1481478 -0.43288 0.8891946 -0.3219804 -0.7200744 -0.614672 0.7829695 -0.5486931 -0.2930779 -0.3884212 0.2115863 -0.8968612 -0.01114454 0.1390691 -0.99022 -0.5249776 0.625789 -0.5768766 -0.7195361 -0.2435833 -0.6503345 -0.4409498 -0.1873813 0.8777536 -0.2465948 0.3248011 0.9130691 0.4932299 -0.8102725 -0.3165168 0.8890582 -0.04682449 -0.4553935 0.4573039 -0.02835408 0.8888584 0.2638338 -0.5177504 0.8138342 -0.747656 0.2022797 -0.6325294 -0.4601786 0.1249986 0.878983 -0.08601176 0.02550937 0.9959674 0.01738091 0.5218596 -0.8528544 -0.4007839 0.1210917 -0.908135 0.9797727 -0.02663158 -0.1983339 0.4651808 -0.8793994 -0.101309 0.8061562 -0.5859511 -0.08230139 -0.3837272 -0.8463183 -0.3694574 0.08669212 -0.09076852 0.9920915 0.1021754 -0.8409 -0.5314578 0.5485113 -0.5967762 -0.5856564 0.3402542 -0.3563108 0.8702125 0.03723507 -0.5293688 0.8475744 -0.02683527 -0.1521902 0.9879869 0.1059568 -0.05693882 0.9927391 -0.04916153 0.0879867 0.9949078 -0.1059455 0.01993937 0.994172 -0.7260859 0.07050472 0.6839797 -0.3858095 0.3439394 0.8560706 -0.3581741 0.6478575 -0.6723034 -0.9536407 0.1185446 -0.2766165 0.3143948 0.1009139 -0.9439132 0.1463723 0.1689295 -0.9746989 0.1812172 -0.09453951 -0.9788885 0.3185668 -0.553661 -0.769399 0.8073047 0.1346031 -0.574579 0.1646485 0.7395577 -0.6526448 0.05748548 0.4715816 0.8799466 0.407809 0.04738279 0.911837 -0.9600393 -0.1492306 -0.2367592 -0.3025721 -0.8210755 -0.4840302 -0.2370496 -0.4253553 0.8734303 -0.7303382 -0.06987595 0.6795024 0.1564523 0.1067677 -0.9818979 0.5540292 0.5384185 -0.6349466 0.3414066 0.3303016 0.8799672 0.06665539 0.05943616 0.9960043 0.1321318 -0.2835072 -0.9498236 0.2777846 -0.1615907 -0.9469553 0.3666016 0.2407026 -0.8987021 0.2904132 0.1751692 -0.9407316 0.3347671 0.1701434 -0.9268129 0.3885676 -0.2581983 -0.8845049 0.3143068 -0.4182174 -0.8522355 -0.3930638 -0.9165103 -0.07422633 -0.9949563 -0.09905098 0.01583643 -0.9943671 0.1043499 0.01857858 -0.6162152 0.7637524 -0.1922531 -0.106104 -0.02924934 0.9939248 0.09566043 -0.8399748 -0.5341268 0.5486265 -0.5967998 -0.5855245 0.3402038 -0.356285 0.8702427 0.03698246 -0.5305644 0.8468375 -0.0268489 -0.1521737 0.987989 0.1059497 -0.05690927 0.9927417 -0.04920003 0.0879868 0.9949059 -0.1059516 0.01991624 0.9941718 -0.7258752 0.07654236 0.6835544 -0.3988905 0.3558258 0.8451476 -0.5500334 0.6559781 -0.5168713 -0.9571561 0.1315552 -0.2579639 0.3137426 0.1039211 -0.943804 0.144876 0.1692863 -0.9748605 0.1812041 -0.09453917 -0.978891 0.2927017 -0.5749389 -0.7640491 0.807292 0.134592 -0.5745995 0.1529856 0.7393616 -0.6556979 0.05706904 0.4733192 0.8790404 0.407852 0.04737418 0.9118182 -0.9589581 -0.163966 -0.2313323 -0.4302147 -0.8121631 -0.3940895 -0.2449162 -0.4363093 0.8658234 -0.7258211 -0.07389789 0.6839026 0.1564893 0.1068014 -0.9818883 0.5542156 0.5385909 -0.6346376 0.3414606 0.3303515 0.8799276 0.06669875 0.05940846 0.996003 0.1311977 -0.2837644 -0.9498762 0.2761628 -0.1653897 -0.9467737 0.3470866 0.2570266 -0.9019247 0.2902653 0.1762475 -0.9405759 0.3347599 0.1702102 -0.9268032 0.388656 -0.2584264 -0.8843994 0.3139521 -0.4208158 -0.8510865 -0.4548389 -0.8721862 -0.1800354 -0.9939029 -0.1101169 -0.005600197 -0.9932383 0.1152924 -0.01361422 -0.6541696 0.6914315 -0.3065687 -0.1060672 -0.02923993 0.993929 -0.8437797 -0.09296157 -0.5285774 -0.605872 -0.539968 -0.5842549 -0.3625626 -0.3349824 0.8696753 -0.5362293 -0.0362468 0.8432937 -0.1544778 0.02638893 0.9876438 -0.05814138 -0.1042396 0.9928513 0.08935463 0.04837347 0.9948245 0.02034373 0.1044298 0.9943242 0.07864414 0.7209605 0.688499 0.3614494 0.3920394 0.8459666 0.6647229 0.5401998 -0.5160695 0.1353776 0.9556057 -0.261707 0.1057596 -0.3089438 -0.9451818 0.1715774 -0.1422445 -0.9748476 -0.09608258 -0.1780171 -0.9793253 -0.5820614 -0.2871825 -0.7607436 0.1375364 -0.8036982 -0.5789239 0.7441367 -0.1491238 -0.6511702 0.478271 -0.05592072 0.8764301 0.04829727 -0.4030741 0.913892 -0.168769 0.9573371 -0.2345691 -0.8187128 0.4202606 -0.3912674 -0.4420991 0.2399175 0.8642847 -0.07580151 0.7205514 0.6892458 0.1087642 -0.1540072 -0.9820652 0.5471704 -0.5456337 -0.6347349 0.3359918 -0.3359961 0.8798955 0.06067494 -0.06531919 0.9960181 -0.2876074 -0.1291577 -0.9489996 -0.1681601 -0.2717563 -0.9475604 0.2612915 -0.3421113 -0.9025998 0.1796127 -0.2857895 -0.9413095 0.1734902 -0.3298602 -0.9279512 -0.262817 -0.3827589 -0.8856764 -0.4279565 -0.3081836 -0.8496329 -0.8783959 0.4435231 -0.1780673 -0.1136111 0.9935094 -0.005644045 0.1190486 0.9927922 -0.01381948 0.7021306 0.6429443 -0.3059987 -0.02993758 0.1044377 0.9940807</float_array>
<technique_common>
<accessor source="#mushroomShape-normals-array" count="576" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="mushroomShape-map1" name="mushroomShape-map1">
<float_array id="mushroomShape-map1-array" count="1320">0.5494192 0.4919394 0.5450792 0.3963281 0.5604165 0.3964616 0.5690085 0.4746012 0.5407393 0.3007168 0.5705007 0.3110383 0.585627 0.3162759 0.5765391 0.3967879 0.5851915 0.4709118 0.5966855 0.2336576 0.6086743 0.2408104 0.6526318 0.1665984 0.6618007 0.1936281 0.6692272 0.2085561 0.6207008 0.2513703 0.6328031 0.2687447 0.6016263 0.325622 0.6763063 0.2313932 0.6810551 0.2550147 0.6529065 0.2869426 0.6248295 0.3395427 0.5942324 0.3974996 0.60314 0.4644647 0.6166725 0.4047485 0.6180956 0.4520823 0.6470354 0.4246865 0.6364363 0.4801699 0.6615676 0.3585043 0.7137511 0.3877768 0.6763464 0.4492226 0.6622353 0.5011133 0.6889365 0.299973 0.7137656 0.2521501 0.7575539 0.2581912 0.7324871 0.3070696 0.7899709 0.3499218 0.8221295 0.411384 0.7763968 0.4573644 0.8402213 0.3143234 0.8690644 0.367349 0.8806038 0.4165872 0.8578535 0.4667436 0.8162597 0.5165777 0.7263318 0.5061026 0.7186789 0.460034 0.7519081 0.4817332 0.7723557 0.5236031 0.7847924 0.5467578 0.7283211 0.5311572 0.8404344 0.5442291 0.8650299 0.582205 0.7884148 0.5648572 0.7262204 0.5498732 0.8833675 0.4908913 0.9051051 0.4160016 0.9261957 0.4178837 0.9054842 0.4982848 0.9323838 0.6013603 0.9544369 0.5161287 0.9702215 0.5464756 0.9632691 0.6130645 0.9841264 0.4132977 0.9891404 0.5190333 0.9941543 0.6247687 0.7148213 0.6089861 0.7712434 0.6226627 0.7593244 0.6539555 0.7062217 0.6427208 0.834191 0.6356381 0.8203859 0.6630284 0.8065808 0.6904185 0.7398245 0.6849002 0.6927814 0.6765048 0.7059054 0.7149575 0.6714768 0.7087118 0.7414777 0.7311535 0.6962566 0.7913918 0.6355358 0.7503027 0.5986263 0.816637 0.6999242 0.8707209 0.6374519 0.9149182 0.8097041 0.8803706 0.7555764 0.9280216 0.7014487 0.9756725 0.5537286 0.8637438 0.5288885 0.893238 0.5716995 0.9895479 0.5286978 0.9723413 0.4856962 0.9551346 0.4765048 0.8834313 0.4673134 0.8117281 0.6422037 0.6463138 0.6135275 0.6794776 0.5870499 0.6518146 0.5959939 0.7253748 0.5318961 0.6573153 0.7148523 0.1637635 0.7167434 0.1773415 0.7770729 0.1609286 0.774573 0.1870796 0.7710543 0.2039271 0.7186729 0.1943184 0.9111021 0.2494705 0.9476143 0.3313841 0.9317248 0.3372097 0.8920834 0.2685151 0.9473476 0.4176375 0.9151389 0.3430242 0.879981 0.2793868 0.8971597 0.3488165 0.866459 0.292734 0.720679 0.2180933 0.7678955 0.2257207 0.6619213 0.6627387 0.6690363 0.6271628 0.6398096 0.6094429 0.6374155 0.5725721 0.6722578 0.5942438 0.5073816 0.6112189 0.5284004 0.5515792 0.5497372 0.555366 0.5498962 0.5870794 0.5696078 0.5333057 0.5924108 0.5629399 0.6262912 0.5500043 0.6033392 0.5166531 0.6208671 0.5066047 0.6474439 0.527344 0.6760374 0.5466902 0.6829001 0.530107 0.6906056 0.507973 0.6365741 0.9826102 0.8363595 0.2179713 0.8283882 0.2326522 0.8440875 0.2051996 0.8199298 0.2511515 0.8043847 0.2754344 0.7751529 0.3074661 0.5443259 0.7517998 0.4996048 0.7345217 0.6489581 0.6972094 0.8081425 0.7853945 0.7674273 0.7725069 0.5868639 0.5229775 0.609351 0.5564721 0.6735407 0.5677443 0.7216041 0.5769266 0.6318533 0.5612882 0.7824193 0.591561 0.8496104 0.6089215 0.9310159 0.5033811 0.8987069 0.5917827 0.6956312 0.4702657 0.04725425 0.5046152 0.02948327 0.4105697 0.0446863 0.4085406 0.06420462 0.4846895 0.0117123 0.3165242 0.04263142 0.3225486 0.05834495 0.3256024 0.06069401 0.4065916 0.07970621 0.4787564 0.05764988 0.2422501 0.07052699 0.247642 0.1035875 0.1679759 0.116474 0.1934437 0.1259301 0.2071763 0.08392175 0.2564018 0.09835178 0.2718973 0.07550159 0.3326006 0.136157 0.2287879 0.1441873 0.2515045 0.1208191 0.2870804 0.100435 0.3431124 0.07831105 0.4048027 0.09656687 0.4698443 0.1015487 0.4088169 0.1096282 0.4554778 0.1344184 0.4242769 0.1317442 0.4807003 0.1394788 0.3567072 0.1952668 0.3783334 0.1668948 0.4444374 0.1602372 0.4977989 0.1583259 0.2949032 0.1761677 0.2440586 0.2203704 0.2438685 0.2024421 0.2957915 0.2653911 0.3301149 0.3058906 0.3864317 0.2670942 0.4383982 0.3101232 0.2877902 0.3461513 0.3362218 0.3645147 0.3833425 0.3490598 0.4362044 0.314904 0.4914027 0.2243972 0.4937054 0.2103284 0.4491751 0.2462839 0.4659748 0.272428 0.5045453 0.2880037 0.5257164 0.2298974 0.5182298 0.3427341 0.5153714 0.3724359 0.5495021 0.2941407 0.5431246 0.2304554 0.5370551 0.3777222 0.4565156 0.3886887 0.3793098 0.4098341 0.3782012 0.40066 0.4607185 0.441817 0.5589746 0.4516388 0.4714857 0.4715426 0.4993052 0.4740436 0.5662093 0.4665406 0.365497 0.4864053 0.4694705 0.5062701 0.573444 0.2275008 0.5971844 0.285287 0.6027732 0.2778972 0.6354333 0.2237411 0.6317943 0.3494347 0.6067482 0.3396279 0.6358104 0.3298211 0.6648725 0.2629529 0.6688172 0.215196 0.6671354 0.2336081 0.7033547 0.1986428 0.7020233 0.2711077 0.7143759 0.2309941 0.7501177 0.200945 0.7364964 0.1786825 0.7366579 0.141729 0.8191381 0.246065 0.8385715 0.2532103 0.8782418 0.2082389 0.8964823 0.3596815 0.8524892 0.3128095 0.9072926 0.2659374 0.9620961 0.1341822 0.911128 0.08348216 0.9048026 0.07365362 0.8330761 0.1394386 0.9941179 0.09444119 0.9831432 0.0494438 0.9721684 0.03023909 0.9024761 0.01103438 0.8327836 0.1608682 0.6443734 0.1523414 0.6841222 0.1219624 0.6783726 0.10704 0.6575919 0.143866 0.7189412 0.1099979 0.7015195 0.05321185 0.6708105 0.1647877 0.1564008 0.1685732 0.1695767 0.225988 0.1448257 0.227198 0.1710679 0.2260886 0.1882432 0.1728758 0.1861124 0.3711573 0.2135955 0.418849 0.2895463 0.4039389 0.297553 0.3550123 0.2351304 0.4307403 0.3749766 0.3883379 0.3056469 0.3445625 0.2475993 0.3713545 0.3139151 0.3330565 0.2627188 0.1782125 0.2093673 0.2260326 0.2102646 0.1827038 0.6578556 0.1847342 0.621632 0.1533019 0.6082079 0.1457356 0.5720424 0.1832844 0.5885876 0.02244557 0.6286289 0.03484991 0.5666221 0.05650745 0.5673643 0.06113404 0.5987388 0.07307088 0.5427237 0.09982251 0.5688487 0.131542 0.5512674 0.1041189 0.5214837 0.1200558 0.5090654 0.14929 0.5258524 0.1803246 0.5409758 0.1847817 0.5235911 0.1892911 0.5005919 0.179796 0.9254515 0.202688 0.978107 0.2927215 0.192944 0.2868984 0.2086018 0.2985727 0.1792106 0.2811316 0.2281085 0.2691638 0.2543398 0.2447378 0.2901712 0.09158002 0.7506225 0.06608604 0.7745781 0.03212312 0.7517971 0.1747277 0.6938092 0.1640354 0.7282156 0.3447513 0.7586808 0.3026261 0.7516596 0.2795099 0.7862953 0.2373563 0.8034155 0.1914475 0.7817163 0.1760459 0.7656929 0.1599161 0.7712381 0.1538565 0.7597983 0.1381714 0.7592084 0.1130103 0.7369615 0.08869933 0.5300667 0.1156822 0.5600581 0.18082 0.5621718 0.2296977 0.5644891 0.1386388 0.5616549 0.2919683 0.5704069 0.3609353 0.5781252 0.4266551 0.462166 0.4071265 0.5542384 0.1889526 0.4625528 0.5494192 0.4919394 0.5450792 0.3963281 0.5604165 0.3964616 0.5690085 0.4746012 0.5407393 0.3007168 0.5705007 0.3110383 0.585627 0.3162759 0.5765391 0.3967879 0.5851915 0.4709118 0.5966855 0.2336576 0.6086743 0.2408104 0.6526318 0.1665984 0.6618007 0.1936281 0.6692272 0.2085561 0.6207008 0.2513703 0.6328031 0.2687447 0.6016263 0.325622 0.6763063 0.2313932 0.6810551 0.2550147 0.6529065 0.2869426 0.6248295 0.3395427 0.5942324 0.3974996 0.60314 0.4644647 0.6166725 0.4047485 0.6180956 0.4520823 0.6470354 0.4246865 0.6364363 0.4801699 0.6615676 0.3585043 0.7137511 0.3877768 0.6763464 0.4492226 0.6622353 0.5011133 0.6889365 0.299973 0.7137656 0.2521501 0.7575539 0.2581912 0.7324871 0.3070696 0.7899709 0.3499218 0.8221295 0.411384 0.7763968 0.4573644 0.8402213 0.3143234 0.8690644 0.367349 0.8806038 0.4165872 0.8578535 0.4667436 0.8162597 0.5165777 0.7263318 0.5061026 0.7186789 0.460034 0.7519081 0.4817332 0.7723557 0.5236031 0.7847924 0.5467578 0.7283211 0.5311572 0.8404344 0.5442291 0.8650299 0.582205 0.7884148 0.5648572 0.7262204 0.5498732 0.8833675 0.4908913 0.9051051 0.4160016 0.9261957 0.4178837 0.9054842 0.4982848 0.9323838 0.6013603 0.9544369 0.5161287 0.9702215 0.5464756 0.9632691 0.6130645 0.9841264 0.4132977 0.9891404 0.5190333 0.9941543 0.6247687 0.7148213 0.6089861 0.7712434 0.6226627 0.7593244 0.6539555 0.7062217 0.6427208 0.834191 0.6356381 0.8203859 0.6630284 0.8065808 0.6904185 0.7398245 0.6849002 0.6927814 0.6765048 0.7059054 0.7149575 0.6714768 0.7087118 0.7414777 0.7311535 0.6967276 0.7608852 0.668898 0.7431653 0.646835 0.7401876 0.5986263 0.816637 0.6991825 0.8505803 0.700666 0.8908615 0.6535727 0.9025823 0.8097041 0.8803706 0.7555764 0.9280216 0.7014487 0.9756725 0.578191 0.9066454 0.5288885 0.893238 0.5292662 0.8208423 0.5716995 0.9895479 0.5286978 0.9723413 0.4856962 0.9551346 0.4765048 0.8834313 0.4673134 0.8117281 0.6422037 0.6463138 0.6281603 0.6844643 0.5988948 0.6744907 0.5870499 0.6518146 0.6148626 0.7177412 0.5837877 0.6957206 0.5318961 0.6573153 0.7148523 0.1637635 0.7167434 0.1773415 0.7770729 0.1609286 0.774573 0.1870796 0.7710543 0.2039271 0.7186729 0.1943184 0.9111021 0.2494705 0.9476143 0.3313841 0.9317248 0.3372097 0.8920834 0.2685151 0.9473476 0.4176375 0.9151389 0.3430242 0.879981 0.2793868 0.8971597 0.3488165 0.866459 0.292734 0.720679 0.2180933 0.7678955 0.2257207 0.6619213 0.6627387 0.6690363 0.6271628 0.6398096 0.6094429 0.6374155 0.5725721 0.6722578 0.5942438 0.5073816 0.6112189 0.5284004 0.5515792 0.5497372 0.555366 0.5498962 0.5870794 0.5696078 0.5333057 0.5924108 0.5629399 0.6262912 0.5500043 0.6033392 0.5166531 0.6208671 0.5066047 0.6474439 0.527344 0.6760374 0.5466902 0.6829001 0.530107 0.6906056 0.507973 0.6213311 0.927254 0.6365741 0.9826102 0.8363595 0.2179713 0.8283882 0.2326522 0.8440875 0.2051996 0.8199298 0.2511515 0.8043847 0.2754344 0.7751529 0.3074661 0.5586336 0.741738 0.5300182 0.7618616 0.4996048 0.7345217 0.6489581 0.6972094 0.6335238 0.7297657 0.8081425 0.7853945 0.7674273 0.7725069 0.7396609 0.8035391 0.6955154 0.8145477 0.6531225 0.7865955 0.6401329 0.7685614 0.6233825 0.7717782 0.6189955 0.7595987 0.6035501 0.7568042 0.5817753 0.7312334 0.5868639 0.5229775 0.609351 0.5564721 0.6735407 0.5677443 0.7216041 0.5769266 0.6318533 0.5612882 0.7824193 0.591561 0.8496104 0.6089215 0.9310159 0.5033811 0.8987069 0.5917827 0.6956312 0.4702657 0.04725425 0.5046152 0.02948327 0.4105697 0.0446863 0.4085406 0.06420462 0.4846895 0.0117123 0.3165242 0.04263142 0.3225486 0.05834495 0.3256024 0.06069401 0.4065916 0.07970621 0.4787564 0.05764988 0.2422501 0.07052699 0.247642 0.1035875 0.1679759 0.116474 0.1934437 0.1259301 0.2071763 0.08392175 0.2564018 0.09835178 0.2718973 0.07550159 0.3326006 0.136157 0.2287879 0.1441873 0.2515045 0.1208191 0.2870804 0.100435 0.3431124 0.07831105 0.4048027 0.09656687 0.4698443 0.1015487 0.4088169 0.1096282 0.4554778 0.1344184 0.4242769 0.1317442 0.4807003 0.1394788 0.3567072 0.1952668 0.3783334 0.1668948 0.4444374 0.1602372 0.4977989 0.1583259 0.2949032 0.1761677 0.2440586 0.2203704 0.2438685 0.2024421 0.2957915 0.2653911 0.3301149 0.3058906 0.3864317 0.2670942 0.4383982 0.3101232 0.2877902 0.3461513 0.3362218 0.3645147 0.3833425 0.3490598 0.4362044 0.314904 0.4914027 0.2243972 0.4937054 0.2103284 0.4491751 0.2462839 0.4659748 0.272428 0.5045453 0.2880037 0.5257164 0.2298974 0.5182298 0.3427341 0.5153714 0.3724359 0.5495021 0.2941407 0.5431246 0.2304554 0.5370551 0.3777222 0.4565156 0.3886887 0.3793098 0.4098341 0.3782012 0.40066 0.4607185 0.441817 0.5589746 0.4516388 0.4714857 0.4715426 0.4993052 0.4740436 0.5662093 0.4665406 0.365497 0.4864053 0.4694705 0.5062701 0.573444 0.2275008 0.5971844 0.285287 0.6027732 0.2778972 0.6354333 0.2237411 0.6317943 0.3494347 0.6067482 0.3396279 0.6358104 0.3298211 0.6648725 0.2629529 0.6688172 0.215196 0.6671354 0.2336081 0.7033547 0.1986428 0.7020233 0.2711077 0.7143759 0.2309941 0.7501177 0.200945 0.7364964 0.1786825 0.7366579 0.141729 0.8191381 0.246065 0.8385715 0.2532103 0.8782418 0.2082389 0.8964823 0.3596815 0.8524892 0.3128095 0.9072926 0.2659374 0.9620961 0.1341822 0.911128 0.08348216 0.9048026 0.07365362 0.8330761 0.1394386 0.9941179 0.09444119 0.9831432 0.0494438 0.9721684 0.03023909 0.9024761 0.01103438 0.8327836 0.1608682 0.6443734 0.1523414 0.6841222 0.1219624 0.6783726 0.10704 0.6575919 0.143866 0.7189412 0.1099979 0.7015195 0.05321185 0.6708105 0.1647877 0.1564008 0.1685732 0.1695767 0.225988 0.1448257 0.227198 0.1710679 0.2260886 0.1882432 0.1728758 0.1861124 0.3711573 0.2135955 0.418849 0.2895463 0.4039389 0.297553 0.3550123 0.2351304 0.4307403 0.3749766 0.3883379 0.3056469 0.3445625 0.2475993 0.3713545 0.3139151 0.3330565 0.2627188 0.1782125 0.2093673 0.2260326 0.2102646 0.1827038 0.6578556 0.1847342 0.621632 0.1533019 0.6082079 0.1457356 0.5720424 0.1832844 0.5885876 0.02244557 0.6286289 0.03484991 0.5666221 0.05650745 0.5673643 0.06113404 0.5987388 0.07307088 0.5427237 0.09982251 0.5688487 0.131542 0.5512674 0.1041189 0.5214837 0.1200558 0.5090654 0.14929 0.5258524 0.1803246 0.5409758 0.1847817 0.5235911 0.1892911 0.5005919 0.179796 0.9254515 0.202688 0.978107 0.2927215 0.192944 0.2868984 0.2086018 0.2985727 0.1792106 0.2811316 0.2281085 0.2691638 0.2543398 0.2447378 0.2901712 0.09158002 0.7506225 0.06608604 0.7745781 0.03212312 0.7517971 0.1747277 0.6938092 0.1640354 0.7282156 0.3447513 0.7586808 0.3026261 0.7516596 0.2795099 0.7862953 0.2373563 0.8034155 0.1914475 0.7817163 0.1760459 0.7656929 0.1599161 0.7712381 0.1538565 0.7597983 0.1381714 0.7592084 0.1130103 0.7369615 0.08869933 0.5300667 0.1156822 0.5600581 0.18082 0.5621718 0.2296977 0.5644891 0.1386388 0.5616549 0.2919683 0.5704069 0.3609353 0.5781252 0.4266551 0.462166 0.4071265 0.5542384 0.1889526 0.4625528</float_array>
<technique_common>
<accessor source="#mushroomShape-map1-array" count="660" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="mushroomShape-vertices" name="mushroomShape-vertices">
<input semantic="POSITION" source="#mushroomShape-positions"/>
<input semantic="NORMAL" source="#mushroomShape-normals"/>
</vertices>
<polylist material="mushroom1" count="576">
<input semantic="VERTEX" source="#mushroomShape-vertices" offset="0"/>
<input semantic="TEXCOORD" source="#mushroomShape-map1" offset="1" set="0"/>
<vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 3 3 4 4 3 4 4 4 4 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>
<p>0 0 160 1 424 2 161 3 160 1 18 4 162 5 424 2 424 2 162 5 20 6 163 7 161 3 424 2 163 7 19 8 18 4 164 9 425 10 162 5 164 9 1 11 165 12 425 10 425 10 165 12 8 13 166 14 162 5 425 10 166 14 20 6 20 6 166 14 426 15 167 16 166 14 8 13 168 17 426 15 426 15 168 17 3 18 169 19 167 16 426 15 169 19 9 20 19 8 163 7 427 21 170 22 163 7 20 6 167 16 427 21 427 21 167 16 9 20 171 23 170 22 427 21 171 23 2 24 2 24 171 23 428 25 172 26 171 23 9 20 173 27 428 25 428 25 173 27 21 28 174 29 172 26 428 25 174 29 10 30 9 20 169 19 429 31 173 27 169 19 3 18 175 32 429 31 429 31 175 32 28 33 176 34 173 27 429 31 176 34 21 28 21 28 177 35 430 36 178 37 177 35 11 38 179 39 430 36 430 36 179 39 5 40 180 41 178 37 430 36 180 41 12 42 4 43 181 44 431 45 182 46 21 28 178 37 431 45 181 44 12 42 182 46 431 45 178 37 4 43 182 46 432 47 183 48 182 46 12 42 184 49 432 47 432 47 184 49 22 50 185 51 183 48 432 47 185 51 13 52 12 42 180 41 433 53 184 49 180 41 5 40 186 54 433 53 433 53 186 54 14 55 187 56 184 49 433 53 187 56 22 50 34 57 188 58 434 59 189 60 7 61 190 62 434 59 188 58 15 63 189 60 434 59 190 62 33 64 191 65 435 66 192 67 191 65 34 68 189 69 435 66 435 66 189 69 15 70 193 71 192 67 435 66 193 71 6 72 6 72 193 71 436 73 194 74 193 71 15 70 195 75 436 73 436 73 195 75 29 76 30 77 194 74 436 73 30 77 23 78 196 79 197 80 7 81 198 82 196 79 17 83 197 80 196 79 198 82 199 84 26 86 200 87 437 85 437 85 200 87 1 88 164 89 199 84 437 85 164 89 18 90 16 91 201 92 202 93 0 95 202 93 201 92 31 94 1 11 200 96 438 97 165 12 200 96 26 98 203 99 438 97 438 97 203 99 27 100 204 101 165 12 438 97 204 101 8 13 17 102 198 103 439 104 205 105 198 103 7 61 206 106 439 104 439 104 206 106 14 55 207 107 205 105 439 104 207 107 24 108 24 108 207 107 440 109 208 110 207 107 14 55 186 54 440 109 440 109 186 54 5 40 179 39 208 110 440 109 179 39 11 38 8 13 204 101 441 111 168 17 204 101 27 100 209 112 441 111 441 111 209 112 28 33 175 32 168 17 441 111 175 32 3 18 6 72 210 113 442 114 192 67 210 113 16 91 211 115 442 114 442 114 211 115 32 116 212 117 192 67 442 114 212 117 33 64 16 118 202 119 443 120 211 121 0 0 213 122 443 120 202 119 32 123 211 121 443 120 213 122 25 124 214 125 444 126 215 127 214 125 19 8 170 22 444 126 444 126 170 22 2 24 172 26 215 127 444 126 172 26 10 30 13 52 216 128 445 129 183 48 216 128 25 124 215 127 445 129 445 129 215 127 10 30 217 130 183 48 445 129 217 130 4 43 23 78 197 80 199 84 17 83 218 131 197 80 26 86 199 84 197 80 218 131 27 100 203 99 446 132 219 133 203 99 26 98 218 134 446 132 446 132 218 134 17 102 205 105 219 133 446 132 205 105 24 108 28 33 209 112 447 135 220 136 209 112 27 100 219 133 447 135 447 135 219 133 24 108 208 110 220 136 447 135 208 110 11 38 21 28 176 34 448 137 177 35 28 33 220 136 448 137 176 34 11 38 177 35 448 137 220 136 0 95 221 138 160 139 23 78 199 84 221 138 18 90 160 139 221 138 199 84 6 72 194 74 449 140 210 113 194 74 30 77 449 140 449 140 30 77 31 94 201 92 210 113 449 140 201 92 16 91 15 70 190 141 450 142 195 75 7 81 29 76 450 142 190 141 29 76 195 75 450 142 7 81 196 79 29 76 23 78 29 76 196 79 23 78 30 77 29 76 23 78 31 94 30 77 0 95 31 94 221 138 23 78 221 138 31 94 32 123 213 122 451 143 222 144 213 122 0 0 161 3 451 143 451 143 161 3 19 8 214 125 222 144 451 143 214 125 25 124 33 64 212 117 452 145 223 146 212 117 32 116 222 147 452 145 452 145 222 147 25 124 216 128 223 146 452 145 216 128 13 52 13 52 185 51 453 148 223 146 185 51 22 50 224 149 453 148 453 148 224 149 34 68 191 65 223 146 453 148 191 65 33 64 22 50 187 56 454 150 224 151 187 56 14 55 206 106 454 150 454 150 206 106 7 61 188 58 224 151 454 150 188 58 34 57 10 30 174 29 455 152 217 130 21 28 181 44 455 152 174 29 4 43 217 130 455 152 181 44 35 153 225 154 456 155 226 156 225 154 53 157 227 158 456 155 456 155 227 158 55 159 228 160 226 156 456 155 228 160 54 161 53 157 229 162 457 163 227 158 229 162 36 164 230 165 457 163 457 163 230 165 43 166 231 167 227 158 457 163 231 167 55 159 55 159 231 167 458 168 232 169 231 167 43 166 233 170 458 168 458 168 233 170 38 171 234 172 232 169 458 168 234 172 44 173 54 161 228 160 459 174 235 175 228 160 55 159 232 169 459 174 459 174 232 169 44 173 236 176 235 175 459 174 236 176 37 177 37 177 236 176 460 178 237 179 236 176 44 173 238 180 460 178 460 178 238 180 56 181 239 182 237 179 460 178 239 182 45 183 44 173 234 172 461 184 238 180 234 172 38 171 240 185 461 184 461 184 240 185 63 186 241 187 238 180 461 184 241 187 56 181 56 181 242 188 462 189 243 190 242 188 46 191 244 192 462 189 462 189 244 192 40 193 245 194 243 190 462 189 245 194 47 195 39 196 246 197 463 198 247 199 56 181 243 190 463 198 246 197 47 195 247 199 463 198 243 190 39 196 247 199 464 200 248 201 247 199 47 195 249 202 464 200 464 200 249 202 57 203 250 204 248 201 464 200 250 204 48 205 47 195 245 194 465 206 249 202 245 194 40 193 251 207 465 206 465 206 251 207 49 208 252 209 249 202 465 206 252 209 57 203 69 210 253 211 466 212 254 213 42 214 255 215 466 212 253 211 50 216 254 213 466 212 255 215 68 217 256 218 467 219 257 220 256 218 69 221 254 222 467 219 467 219 254 222 50 223 258 224 257 220 467 219 258 224 41 225 41 225 258 224 468 226 259 227 258 224 50 223 260 228 468 226 468 226 260 228 64 229 261 230 259 227 468 226 261 230 65 231 58 232 262 233 469 234 263 235 42 236 264 237 469 234 262 233 52 238 263 235 469 234 264 237 58 232 265 239 470 240 266 241 265 239 61 242 267 243 470 240 470 240 267 243 36 244 229 245 266 241 470 240 229 245 53 246 51 247 268 248 471 249 269 250 66 251 270 252 471 249 268 248 35 253 269 250 471 249 270 252 36 164 267 254 472 255 230 165 267 254 61 256 271 257 472 255 472 255 271 257 62 258 272 259 230 165 472 255 272 259 43 166 52 260 264 261 473 262 273 263 264 261 42 214 274 264 473 262 473 262 274 264 49 208 275 265 273 263 473 262 275 265 59 266 59 266 275 265 474 267 276 268 275 265 49 208 251 207 474 267 474 267 251 207 40 193 244 192 276 268 474 267 244 192 46 191 43 166 272 259 475 269 233 170 272 259 62 258 277 270 475 269 475 269 277 270 63 186 240 185 233 170 475 269 240 185 38 171 41 225 278 271 476 272 257 220 278 271 51 247 279 273 476 272 476 272 279 273 67 274 280 275 257 220 476 272 280 275 68 217 51 276 269 277 477 278 279 279 35 153 281 280 477 278 269 277 67 281 279 279 477 278 281 280 60 282 282 283 478 284 283 285 282 283 54 161 235 175 478 284 478 284 235 175 37 177 237 179 283 285 478 284 237 179 45 183 48 205 284 286 479 287 248 201 284 286 60 282 283 285 479 287 479 287 283 285 45 183 285 288 248 201 479 287 285 288 39 196 58 232 263 235 480 289 265 239 52 238 286 290 480 289 263 235 61 242 265 239 480 289 286 290 62 258 271 257 481 291 287 292 271 257 61 256 286 293 481 291 481 291 286 293 52 260 273 263 287 292 481 291 273 263 59 266 63 186 277 270 482 294 288 295 277 270 62 258 287 292 482 294 482 294 287 292 59 266 276 268 288 295 482 294 276 268 46 191 56 181 241 187 483 296 242 188 63 186 288 295 483 296 241 187 46 191 242 188 483 296 288 295 35 253 289 297 484 298 225 299 58 232 266 241 484 298 289 297 53 246 225 299 484 298 266 241 41 225 259 227 485 300 278 271 259 227 65 231 290 301 485 300 485 300 290 301 66 251 268 248 278 271 485 300 268 248 51 247 50 223 255 302 486 303 260 228 42 236 291 304 486 303 255 302 64 229 260 228 486 303 291 304 64 229 291 304 487 305 292 306 42 236 262 233 487 305 291 304 58 232 292 306 487 305 262 233 65 231 261 230 488 307 293 308 64 229 292 306 488 307 261 230 58 232 293 308 488 307 292 306 66 251 290 301 489 309 294 310 65 231 293 308 489 309 290 301 58 232 294 310 489 309 293 308 35 253 270 252 490 311 289 297 66 251 294 310 490 311 270 252 58 232 289 297 490 311 294 310 67 281 281 280 491 312 295 313 281 280 35 153 226 156 491 312 491 312 226 156 54 161 282 283 295 313 491 312 282 283 60 282 68 217 280 275 492 314 296 315 280 275 67 274 295 316 492 314 492 314 295 316 60 282 284 286 296 315 492 314 284 286 48 205 48 205 250 204 493 317 296 315 250 204 57 203 297 318 493 317 493 317 297 318 69 221 256 218 296 315 493 317 256 218 68 217 57 203 252 209 494 319 297 320 252 209 49 208 274 264 494 319 494 319 274 264 42 214 253 211 297 320 494 319 253 211 69 210 45 183 239 182 495 321 285 288 56 181 246 197 495 321 239 182 39 196 285 288 495 321 246 197 70 322 298 323 496 324 299 325 298 323 88 326 300 327 496 324 496 324 300 327 90 328 301 329 299 325 496 324 301 329 89 330 88 326 302 331 497 332 300 327 302 331 71 333 303 334 497 332 497 332 303 334 78 335 304 336 300 327 497 332 304 336 90 328 90 328 304 336 498 337 305 338 304 336 78 335 306 339 498 337 498 337 306 339 73 340 307 341 305 338 498 337 307 341 79 342 89 330 301 329 499 343 308 344 301 329 90 328 305 338 499 343 499 343 305 338 79 342 309 345 308 344 499 343 309 345 72 346 72 346 309 345 500 347 310 348 309 345 79 342 311 349 500 347 500 347 311 349 91 350 312 351 310 348 500 347 312 351 80 352 79 342 307 341 501 353 311 349 307 341 73 340 313 354 501 353 501 353 313 354 98 355 314 356 311 349 501 353 314 356 91 350 91 350 315 357 502 358 316 359 315 357 81 360 317 361 502 358 502 358 317 361 75 362 318 363 316 359 502 358 318 363 82 364 74 365 319 366 503 367 320 368 91 350 316 359 503 367 319 366 82 364 320 368 503 367 316 359 74 365 320 368 504 369 321 370 320 368 82 364 322 371 504 369 504 369 322 371 92 372 323 373 321 370 504 369 323 373 83 374 82 364 318 363 505 375 322 371 318 363 75 362 324 376 505 375 505 375 324 376 84 377 325 378 322 371 505 375 325 378 92 372 104 379 326 380 506 381 327 382 77 383 328 384 506 381 326 380 85 385 327 382 506 381 328 384 103 386 329 387 507 388 330 389 329 387 104 390 327 391 507 388 507 388 327 391 85 392 331 393 330 389 507 388 331 393 76 394 76 394 331 393 508 395 332 396 331 393 85 392 333 397 508 395 508 395 333 397 99 398 334 399 332 396 508 395 334 399 100 400 93 401 335 402 509 403 336 404 77 405 337 406 509 403 335 402 87 407 336 404 509 403 337 406 93 401 338 408 510 409 339 410 338 408 96 411 340 412 510 409 510 409 340 412 71 413 302 414 339 410 510 409 302 414 88 415 86 416 341 417 511 418 342 419 101 420 343 421 511 418 341 417 70 422 342 419 511 418 343 421 71 333 340 423 512 424 303 334 340 423 96 425 344 426 512 424 512 424 344 426 97 427 345 428 303 334 512 424 345 428 78 335 87 429 337 430 513 431 346 432 337 430 77 383 347 433 513 431 513 431 347 433 84 377 348 434 346 432 513 431 348 434 94 435 94 435 348 434 514 436 349 437 348 434 84 377 324 376 514 436 514 436 324 376 75 362 317 361 349 437 514 436 317 361 81 360 78 335 345 428 515 438 306 339 345 428 97 427 350 439 515 438 515 438 350 439 98 355 313 354 306 339 515 438 313 354 73 340 76 394 351 440 516 441 330 389 351 440 86 416 352 442 516 441 516 441 352 442 102 443 353 444 330 389 516 441 353 444 103 386 86 445 342 446 517 447 352 448 70 322 354 449 517 447 342 446 102 450 352 448 517 447 354 449 95 451 355 452 518 453 356 454 355 452 89 330 308 344 518 453 518 453 308 344 72 346 310 348 356 454 518 453 310 348 80 352 83 374 357 455 519 456 321 370 357 455 95 451 356 454 519 456 519 456 356 454 80 352 358 457 321 370 519 456 358 457 74 365 93 401 336 404 520 458 338 408 87 407 359 459 520 458 336 404 96 411 338 408 520 458 359 459 97 427 344 426 521 460 360 461 344 426 96 425 359 462 521 460 521 460 359 462 87 429 346 432 360 461 521 460 346 432 94 435 98 355 350 439 522 463 361 464 350 439 97 427 360 461 522 463 522 463 360 461 94 435 349 437 361 464 522 463 349 437 81 360 91 350 314 356 523 465 315 357 98 355 361 464 523 465 314 356 81 360 315 357 523 465 361 464 70 422 362 466 524 467 298 468 93 401 339 410 524 467 362 466 88 415 298 468 524 467 339 410 76 394 332 396 525 469 351 440 332 396 100 400 363 470 525 469 525 469 363 470 101 420 341 417 351 440 525 469 341 417 86 416 85 392 328 471 526 472 333 397 77 405 364 473 526 472 328 471 99 398 333 397 526 472 364 473 99 398 364 473 527 474 365 475 77 405 335 402 527 474 364 473 93 401 365 475 527 474 335 402 100 400 334 399 528 476 366 477 99 398 365 475 528 476 334 399 93 401 366 477 528 476 365 475 101 420 363 470 529 478 367 479 100 400 366 477 529 478 363 470 93 401 367 479 529 478 366 477 70 422 343 421 530 480 362 466 101 420 367 479 530 480 343 421 93 401 362 466 530 480 367 479 102 450 354 449 531 481 368 482 354 449 70 322 299 325 531 481 531 481 299 325 89 330 355 452 368 482 531 481 355 452 95 451 103 386 353 444 532 483 369 484 353 444 102 443 368 485 532 483 532 483 368 485 95 451 357 455 369 484 532 483 357 455 83 374 83 374 323 373 533 486 369 484 323 373 92 372 370 487 533 486 533 486 370 487 104 390 329 387 369 484 533 486 329 387 103 386 92 372 325 378 534 488 370 489 325 378 84 377 347 433 534 488 534 488 347 433 77 383 326 380 370 489 534 488 326 380 104 379 80 352 312 351 535 490 358 457 91 350 319 366 535 490 312 351 74 365 358 457 535 490 319 366 105 491 371 492 536 493 372 494 371 492 123 495 373 496 536 493 536 493 373 496 125 497 374 498 372 494 536 493 374 498 124 499 123 495 375 500 537 501 373 496 375 500 106 502 376 503 537 501 537 501 376 503 113 504 377 505 373 496 537 501 377 505 125 497 125 497 377 505 538 506 378 507 377 505 113 504 379 508 538 506 538 506 379 508 108 509 380 510 378 507 538 506 380 510 114 511 124 499 374 498 539 512 381 513 374 498 125 497 378 507 539 512 539 512 378 507 114 511 382 514 381 513 539 512 382 514 107 515 107 515 382 514 540 516 383 517 382 514 114 511 384 518 540 516 540 516 384 518 126 519 385 520 383 517 540 516 385 520 115 521 114 511 380 510 541 522 384 518 380 510 108 509 386 523 541 522 541 522 386 523 133 524 387 525 384 518 541 522 387 525 126 519 126 519 388 526 542 527 389 528 388 526 116 529 390 530 542 527 542 527 390 530 110 531 391 532 389 528 542 527 391 532 117 533 109 534 392 535 543 536 393 537 126 519 389 528 543 536 392 535 117 533 393 537 543 536 389 528 109 534 393 537 544 538 394 539 393 537 117 533 395 540 544 538 544 538 395 540 127 541 396 542 394 539 544 538 396 542 118 543 117 533 391 532 545 544 395 540 391 532 110 531 397 545 545 544 545 544 397 545 119 546 398 547 395 540 545 544 398 547 127 541 139 548 399 549 546 550 400 551 112 552 401 553 546 550 399 549 120 554 400 551 546 550 401 553 138 555 402 556 547 557 403 558 402 556 139 559 400 560 547 557 547 557 400 560 120 561 404 562 403 558 547 557 404 562 111 563 111 563 404 562 548 564 405 565 404 562 120 561 406 566 548 564 548 564 406 566 134 567 407 568 405 565 548 564 407 568 135 569 128 570 408 571 549 572 409 573 112 574 410 575 549 572 408 571 122 576 409 573 549 572 410 575 128 570 411 577 550 578 412 579 411 577 131 580 413 581 550 578 550 578 413 581 106 582 375 583 412 579 550 578 375 583 123 584 121 585 414 586 551 587 415 588 136 589 416 590 551 587 414 586 105 591 415 588 551 587 416 590 106 502 413 592 552 593 376 503 413 592 131 594 417 595 552 593 552 593 417 595 132 596 418 597 376 503 552 593 418 597 113 504 122 598 410 599 553 600 419 601 410 599 112 552 420 602 553 600 553 600 420 602 119 546 421 603 419 601 553 600 421 603 129 604 129 604 421 603 554 605 422 606 421 603 119 546 397 545 554 605 554 605 397 545 110 531 390 530 422 606 554 605 390 530 116 529 113 504 418 597 555 607 379 508 418 597 132 596 423 608 555 607 555 607 423 608 133 524 386 523 379 508 555 607 386 523 108 509 111 563 140 609 556 610 403 558 140 609 121 585 141 611 556 610 556 610 141 611 137 612 142 613 403 558 556 610 142 613 138 555 121 614 415 615 557 616 141 617 105 491 143 618 557 616 415 615 137 619 141 617 557 616 143 618 130 620 144 621 558 622 145 623 144 621 124 499 381 513 558 622 558 622 381 513 107 515 383 517 145 623 558 622 383 517 115 521 118 543 146 624 559 625 394 539 146 624 130 620 145 623 559 625 559 625 145 623 115 521 147 626 394 539 559 625 147 626 109 534 128 570 409 573 560 627 411 577 122 576 148 628 560 627 409 573 131 580 411 577 560 627 148 628 132 596 417 595 561 629 149 630 417 595 131 594 148 631 561 629 561 629 148 631 122 598 419 601 149 630 561 629 419 601 129 604 133 524 423 608 562 632 150 633 423 608 132 596 149 630 562 632 562 632 149 630 129 604 422 606 150 633 562 632 422 606 116 529 126 519 387 525 563 634 388 526 133 524 150 633 563 634 387 525 116 529 388 526 563 634 150 633 105 591 151 635 564 636 371 637 128 570 412 579 564 636 151 635 123 584 371 637 564 636 412 579 111 563 405 565 565 638 140 609 405 565 135 569 152 639 565 638 565 638 152 639 136 589 414 586 140 609 565 638 414 586 121 585 120 561 401 640 566 641 406 566 112 574 153 642 566 641 401 640 134 567 406 566 566 641 153 642 134 567 153 642 567 643 154 644 112 574 408 571 567 643 153 642 128 570 154 644 567 643 408 571 135 569 407 568 568 645 155 646 134 567 154 644 568 645 407 568 128 570 155 646 568 645 154 644 136 589 152 639 569 647 156 648 135 569 155 646 569 647 152 639 128 570 156 648 569 647 155 646 105 591 416 590 570 649 151 635 136 589 156 648 570 649 416 590 128 570 151 635 570 649 156 648 137 619 143 618 571 650 157 651 143 618 105 491 372 494 571 650 571 650 372 494 124 499 144 621 157 651 571 650 144 621 130 620 138 555 142 613 572 652 158 653 142 613 137 612 157 654 572 652 572 652 157 654 130 620 146 624 158 653 572 652 146 624 118 543 118 543 396 542 573 655 158 653 396 542 127 541 159 656 573 655 573 655 159 656 139 559 402 556 158 653 573 655 402 556 138 555 127 541 398 547 574 657 159 658 398 547 119 546 420 602 574 657 574 657 420 602 112 552 399 549 159 658 574 657 399 549 139 548 115 521 385 520 575 659 147 626 126 519 392 535 575 659 385 520 109 534 147 626 575 659 392 535</p>
</polylist>
</mesh>
<extra>
<technique profile="OpenCOLLADAMaya">
<originalMayaNodeId sid="originalMayaNodeId">mushroomShape</originalMayaNodeId>
<double_sided sid="double_sided">1</double_sided>
</technique>
</extra>
</geometry>