-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1520 lines (1423 loc) · 42.2 KB
/
index.html
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0, shrink-to-fit=no" name="viewport">
<link rel="icon" type="image/png" sizes="32x32" href="s1p-blue.png">
<link href="css/s1p-icon-font.css" rel="stylesheet">
<meta name="description" content="">
<meta name="author" content="s1pierro@free.fr">
<title>s1pierro.fr</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/s1pierro.css" rel="stylesheet">
</head>
<body id="page-top">
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand js-scroll-trigger" href="#page-top">
<!--img src="img/s1p-white.svg" width="30" height="30" class="d-inline-block align-top" alt="" -->
s1pierro.fr</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#jeuxhtml">Jeux HTML</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#recettes">Recettes</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#credits">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<header id="hdr">
<div class="container" >
<div class="row">
<div class="abslt">
<div class="col-lg-10">
<div id="header-title">
Artisan numérique
</div>
<p id="header-desc">
Prototypages et développements en tout genre
</p>
</div>
</div>
</div>
</div>
<svg id="svg8" version="1.1" viewbox="-100 -50 200 100" width="100%" xmlns="http://www.w3.org/2000/svg" shape-rendering="optimizeSpeed">
<metadata id="metadata998">
<rdf:rdf>
<cc:work rdf:about>
<dc:format>
image/svg+xml
</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"></dc:type>
<dc:title></dc:title>
</cc:work>
</rdf:rdf>
</metadata>
<g id="arp" transform="translate(373.44049,-131.44643)">
<rect height="279.31503" id="rect924" style="opacity:1;fill:#aaeeff;fill-opacity:1;stroke-width:0.25417414" width="562.29901" x="-800.59039" y="-52.886654"></rect>
<path d="m -800.10192,134.20203 c 42.92492,-16.6759 67.72793,4.35011 122.19876,-4.12629 18.76119,-3.07277 55.91119,2.21528 55.91119,2.21528 12.97961,-5.83803 15.95965,3.44552 25.0502,-1.02452 10.63066,-5.22735 18.39053,-8.33355 45.42753,-6.7 12.67798,0.76599 14.05858,1.37401 22.85445,0.8671 9.96214,-0.57413 27.00975,-2.36181 36.23049,-2.99454 17.362,-1.19138 41.96299,1.8692 80.70031,4.56051 l 77.65158,7.20246 h 96.27461 v 92.22619 h -562.29912 z" id="rect815" style="opacity:1;fill:#bad25a;fill-opacity:1;stroke-width:0.25417414"></path>
<path d="m -800.10192,134.20203 c 317.54054,30.30297 311.39181,-43.12608 562.29912,0 V 271.3295 h -562.29912 z" id="rect815-3" style="opacity:1;fill:#a1be28;fill-opacity:1;stroke-width:0.25417414"></path>
</g>
<g id="renderbox"></g></svg>
</header>
<section id="services" >
<div class="container">
<div class="row">
<div class="card col-xs12 col-md-6 col-lg-4 bg-light"id="protofdm-tgl">
<h5 class="card-title">Prototypage 3D FDM</h5>
<h6 class="card-subtitle mb-2 text-muted">impression 3D</h6>
<p class="card-text">De l'idée a l'objet. Maitrise complete de la chaine de mise en oeuvre</p>
<a href="#" class="card-link">lire plus</a>
</div>
<div class="card col-xs12 col-md-6 col-lg-4 bg-light"id="paperseed-tgl">
<h5 class="card-title">Prototypage 3D papier</h5>
<h6 class="card-subtitle mb-2 text-muted">papercrafting avancé</h6>
<p class="card-text">Nos bonnes vielles imprimantes de bureau n'ont pas fini de nous surprendre.</p>
<a href="#" class="card-link">détails</a>
</div>
<div class="card col-md-12 col-lg-4 bg-light">
<h5 class="card-title">Developpement logiciel</h5>
<h6 class="card-subtitle mb-2 text-muted">C/C++, Js, HTML/CSS/SVG</h6>
<p class="card-text">Creation d'interfaces et de traitements de données sur mesure et accessibles</p>
<a href="#" class="card-link">détails</a>
</div>
</div>
</div>
</section>
<section id="paperseed" class="bg-light" hidden>
<div class="container bg-light">
<br>
<div class="row">
<div class="col-lg-12">
<h3>Prototypage papier</h3>
<p> lorem Lorem Ipsum est un générateur de faux textes aléatoires. Vous choisissez le nombre de paragraphes, de mots ou de listes. Vous obtenez alors un texte aléatoire que vous pourrez ensuite utiliser librement dans vos maquettes.
Le texte généré est du pseudo latin et peut donner l'impression d'être du vrai texte.
Faux-Texte est une réalisation du studio de création de sites internet indépendant Prélude Prod.</p>
</div>
</div>
</div>
</section>
<section id="protofdm" class="bg-light" hidden>
<div class="container bg-light">
<br>
<div class="row">
<div class="col-lg-12">
<h3>Prototypage 3D FDM</h3>
<p> lorem Lorem Ipsum est un générateur de faux textes aléatoires. Vous choisissez le nombre de paragraphes, de mots ou de listes. Vous obtenez alors un texte aléatoire que vous pourrez ensuite utiliser librement dans vos maquettes.
Le texte généré est du pseudo latin et peut donner l'impression d'être du vrai texte.
Faux-Texte est une réalisation du studio de création de sites internet indépendant Prélude Prod.</p>
</div>
</div>
</div>
</section>
<section id="jeuxhtml">
<div class="container">
<h3>Applications HTML</h3>
<br>
<div class="row">
<div class="col-lg-4">
<a href="http://s1pierro.free.fr/echiquierJS/index.html">
<div class="card rounded border-0 shadow">
<img class="card-img-top" src="images/echiquier-b.png" alt="">
<div class="card-body">
<h4 class="card-title">Échiquier</h4>
</div>
</div>
</a>
</div>
<div class="col-lg-4">
<a href="https://github.com/s1pierro/Papier">
<div class="card rounded border-0 shadow">
<img class="card-img-top" src="images/papier-screen.png" alt="">
<div class="card-body">
<h4 class="card-title">Papier</h4>
</div>
</div>
</a>
</div>
<div class="col-lg-4">
<a href="http://s1pierro.free.fr/ThreeExperiment/stl.html">
<div class="card rounded border-0 shadow">
<img class="card-img-top" src="images/three_js.png" alt="">
<div class="card-body">
<h4 class="card-title">Bac a sable Three.js</h4>
</div>
</div>
</a>
</div>
<!--div class="col-lg-4">
<h4>Bac a sable Three.js</h4>
<a href="http://s1pierro.free.fr/ThreeExperiment/stl.html">
<img src="images/three_js.png" class="img-fluid full" alt="Responsive image">
</a>
</div-->
</div>
</div>
</section>
<section id="recettes">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h2>Recettes</h2>
<p class="text-secondary">
Certaines de ces recettes sont de ma conception, mais la plupart ont été trouvée sur l'internet. Le but de cette section est de me fournir un aide memoire, mais aussi de partager.
</p>
</div>
<div class="col-lg-4">
<div class="card rounded border-0 shadow">
<img class="card-img-top" src="images/reset-root-passworld.png" alt="Card image cap">
<div class="card-body">
<h4 class="card-title">redéfinir le MDP du compte root</h4>
<p class="card-text">Un petit guide pour redefnr le MDP du compte root, dans un contexte SELinux</p>
<a href="memos/reset-root-passworld.html" class="btn btn-primary">Lire</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="credits" class="shadow">
<div class="container">
<div class="row">
<div class="col-lg-8">
<h3>Credits/Remerciements</h3>
Ce site est redigé a l'aide des outils et technologies suivantes :<br>
<strong>Langages et normes</strong> : HTML5, CSS3, javascript, PHP5. <br>
<strong>framework</strong> (visuel) : <a href="http://getbootstrap.com/">twitter Bootstrap 4</a>. <br>
<strong>Plugins js</strong> : <a class="tlt" href="http://textillate.js.org/">textillate.js</a>, <a href="https://jquery.com/">jquery</a>, <a href="http://masonry.desandro.com/">masonry.js</a>. <br>
<strong>Outils de developpement</strong> : <a href="https://getfedora.org/fr/workstation/">Fedora 27</a> ( <a href="https://www.mozilla.org/fr/firefox/new/">Firefox</a>+<a href="https://wiki.gnome.org/Apps/Gedit">gedit</a>+<a href="https://wiki.gnome.org/Apps/Nautilus">nautilus</a> )<br>
<strong>Outils en ligne</strong> : <a href="http://caniuse.com/">caniuse.com</a>, <a href="http://fontello.com/">fontello.com</a>, <a href="https://dirtymarkup.com/">dirtymarkup.com</a>. <br>
<strong>Sources d'apprentissage</strong> : <a href="">developpez.com</a>, <a href="">alsacréation</a>, <a href="">OC</a>, <a href="https://www.stackoverflow.com">stackoverflow</a>.<br>
<strong>Hébergement</strong> : <a href="https://github.com">Github</a>
</div>
<div class="col-lg-4">
<h3> Contact </h3>
<p>
<i class="demo-icon icon-mail-squared"></i>
s1pierro@protonmail.com
<br>
<i class="demo-icon icon-git-squared"></i>
https://github.com/s1pierro
<br>
<i class="demo-icon icon-facebook-squared"></i>
https://www.facebook.com/s1pierro
<br>
</p>
</div>
</div>
</div>
</section>
<!--section id="comments">
<div class="container">
<div id="disqus_thread"></div>
<script>
/**
* RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT THE SECTION BELOW TO INSERT DYNAMIC VALUES FROM YOUR PLATFORM OR CMS.
* LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT: https://disqus.com/admin/universalcode/#configuration-variables*/
var disqus_config = function () {
this.page.url = 'https://s1pierro.github.io/s1pierro.fr/'; // Replace PAGE_URL with your page's canonical URL variable
this.page.identifier = 'gitthread3462FGVS'; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
};
(function() { // DON'T EDIT BELOW THIS LINE
var d = document, s = d.createElement('script');
s.src = 'https://http-s1pierro-free-fr.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
</div>
</div>
</section-->
<!-- Footer -->
<footer class="py-5">
<div class="container">
<p class="m-0 text-center text-white">voir sur <a href="https://github.com/s1pierro/s1pierro.fr"> Github</a></p>
</div>
<!-- /.container -->
</footer>
<div id="logo" hidden >
# Blender v2.79 (sub 0) OBJ File: ''
# www.blender.org
mtllib site.mtl
v -75.995369 -47.736614 -274.964508
v -75.995361 -138.189301 -274.964508
v -52.793064 -47.736614 -284.676849
v 35.942726 -89.856277 -321.821045
v 60.252060 -47.736599 -331.996765
v 37.049728 -47.736603 -322.284424
v -52.733116 -89.856285 -284.701935
v 60.252060 -138.189301 -331.996765
v -0.760284 -18.490570 -410.734131
v -89.436127 -18.490574 -373.614990
v -86.829208 -46.897198 -367.387207
v 1.846626 -46.897186 -404.506348
v -82.868896 -90.051331 -357.926208
v 5.806938 -90.051331 -395.045349
v -91.552505 -138.189331 7.733295
v -136.722473 -138.189331 -132.892807
v -128.663269 -89.856285 -107.802238
v -99.264618 -89.856308 -16.276543
v -184.563141 -46.897232 10.622555
v -174.798065 -90.051361 7.485939
v -204.196716 -90.051361 -84.039734
v -213.961777 -46.897221 -80.903122
v -91.552498 -47.736641 7.733318
v -99.244751 -47.736641 -16.214664
v -136.722473 -47.736618 -132.892807
v -129.030243 -47.736629 -108.944794
v -220.389709 -18.490597 -78.838425
v -190.991074 -18.490608 12.687254
v -120.494331 -47.736607 -381.270569
v -7.449242 -47.736595 -428.590485
v -97.292046 -47.736607 -390.982910
v 15.753082 -47.736595 -438.302856
v -98.399284 -23.295914 -395.066895
v -9.723438 -23.295906 -432.185974
v -201.274994 -47.736641 42.976875
v -238.752762 -47.736626 -73.701225
v -208.967270 -47.736641 19.028912
v -246.445038 -47.736626 -97.649231
v -213.130951 -23.295948 19.782787
v -242.529587 -23.295935 -71.742882
v -120.494331 -138.189301 -381.270569
v 15.753082 -138.189301 -438.302856
v -246.445038 -138.189331 -97.649246
v -201.274994 -138.189316 42.976868
v -142.678787 -6.849508 178.037277
v -142.678787 -6.849508 182.876663
v -99.002457 -6.849508 182.876663
v -99.002457 -6.849508 178.037277
v -89.616776 -2.663844 200.374039
v -89.616776 2.511912 200.374039
v -89.616783 2.511910 218.208145
v -89.616783 -2.663846 218.208145
v -155.572922 -10.320263 209.047562
v -155.572922 -17.185448 209.047562
v -151.738586 -17.185452 217.928909
v -151.738586 -10.320264 217.928909
v -89.942627 -10.320261 200.166183
v -89.942627 -17.185452 200.166183
v -98.745590 -17.185452 197.532639
v -98.745590 -10.320261 197.532639
v -94.867233 -2.663844 200.374039
v -94.867233 2.511912 200.374039
v -142.935638 -10.320261 197.532639
v -151.738602 -10.320260 200.166122
v -142.935638 -10.320262 220.562424
v -94.867233 -2.663846 218.208145
v -151.738602 -17.185452 200.166122
v -86.108307 -17.185450 209.047562
v -86.108307 -10.320264 209.047562
v -89.942627 -17.185452 217.928970
v -89.942627 -10.320264 217.928970
v -98.745590 -17.185453 220.562454
v -98.745590 -10.320262 220.562454
v -146.666199 -2.663846 218.208145
v -146.666199 2.511910 218.208145
v -151.916656 2.511910 218.208115
v -151.916656 -2.663846 218.208115
v -99.002457 -17.125298 178.037277
v -142.678787 -17.125298 178.037277
v -142.935638 -17.185452 197.532639
v -142.935638 -17.185453 220.562424
v -142.935623 -10.320259 182.904221
v -142.935623 -17.185450 182.904221
v -94.867233 2.511910 218.208145
v -99.002457 -17.125298 182.876663
v -142.678787 -6.849514 235.204147
v -142.678787 -6.849514 240.043533
v -99.002457 -6.849514 240.043503
v -99.002457 -6.849514 235.204117
v -142.678787 -17.125298 182.876663
v -99.002457 -17.125305 240.043503
v -99.002457 -17.125301 235.204117
v -142.678787 -17.125305 240.043533
v -142.678787 -17.125301 235.204147
v -142.935638 -17.185452 235.190872
v -142.935638 -10.320265 235.190872
v -146.666199 -2.663844 200.374039
v -146.666199 2.511912 200.374039
v -151.916656 2.511912 200.374008
v -151.916656 -2.663844 200.374008
v -98.745590 -10.320265 235.190872
v -98.745590 -17.185452 235.190872
v -98.745583 -17.185450 182.904251
v -98.745583 -10.320259 182.904251
v 194.575897 17.030088 406.919556
v 200.525208 19.932226 406.919556
v 202.138519 16.640097 406.919556
v 196.546539 13.355542 406.919556
v 157.307922 -76.270058 406.919617
v 145.131165 -72.040771 406.919556
v 151.197586 -27.744751 406.919617
v 172.526215 -29.288733 406.919556
v 233.340302 104.077179 406.919556
v 243.834045 96.989105 406.919556
v 236.631805 69.284821 406.919556
v 232.337830 69.375717 406.919556
v 278.685059 45.107063 406.919495
v 281.308716 32.265305 406.919556
v 242.127350 31.904957 406.919556
v 242.642029 45.102684 406.919495
v 268.738434 68.677948 406.919556
v 274.455811 57.283768 406.919556
v 242.096039 51.525597 406.919617
v 240.946381 57.741684 406.919556
v 186.979752 61.130638 406.919556
v 188.330811 72.013336 406.919556
v 202.127472 58.084484 406.919495
v 199.456696 54.895519 406.919556
v 135.284439 -38.951912 406.919617
v 146.818802 -13.919274 406.919556
v 144.463013 -20.122381 406.919617
v 137.201370 -5.198762 406.919556
v 159.137405 -24.511311 406.919556
v 161.896027 -24.011518 406.919617
v 98.336823 68.678825 406.919556
v 105.424774 79.172897 406.919556
v 127.326202 74.323921 406.919617
v 126.428528 60.058392 406.919556
v 183.025589 70.831291 406.919556
v 177.289474 73.066650 406.919556
v 128.443512 30.669197 406.919617
v 88.389847 45.107582 406.919617
v 92.619263 57.284531 406.919556
v 105.425873 -41.419102 406.919556
v 98.337784 -30.925341 406.919556
v 226.674683 69.139099 406.919556
v 133.737000 -66.323494 406.919617
v 175.882690 -19.977615 406.919556
v 170.377060 -12.155456 406.919617
v 177.823853 -3.335917 406.919617
v 174.488525 75.983383 406.919556
v 142.631638 70.580627 406.919617
v 145.130432 109.795738 406.919617
v 157.307404 114.025177 406.919556
v 133.854218 4.740776 406.919617
v 92.620071 -19.531372 406.919617
v 88.390472 -7.354788 406.919617
v 214.187744 66.283104 406.919617
v 211.040100 64.835823 406.919556
v 196.928040 116.648621 406.919556
v 209.769684 114.024490 406.919556
v 186.852692 50.299297 406.919617
v 196.997742 51.169624 406.919556
v 195.621979 47.550461 406.919556
v 172.243912 10.729686 406.919556
v 207.956238 63.014008 406.919556
v 204.973022 60.777115 406.919556
v 253.310028 88.648170 406.919617
v 261.650696 79.171913 406.919556
v 133.736176 104.078217 406.919556
v 134.488983 73.177475 406.919617
v 179.399002 71.419495 406.919495
v 178.407501 72.101631 406.919556
v 178.071030 39.828590 406.919617
v 168.386322 48.886593 406.919556
v 182.077347 70.726265 406.919556
v 181.187698 70.766289 406.919556
v 183.538910 117.549568 406.919556
v 170.149429 116.648972 406.919617
v 113.765762 88.649239 406.919617
v 187.361328 -15.953891 406.919556
v 185.988342 -4.938587 406.919495
v 192.930420 -3.044166 406.919556
v 188.605927 9.665727 406.919556
v 190.615601 11.627916 406.919556
v 195.175934 8.676480 406.919556
v 193.936752 6.856379 406.919556
v 113.766785 -50.895084 406.919495
v 220.688904 -3.013893 406.919556
v 222.208221 0.261263 406.919556
v 231.405090 -5.668088 406.919556
v 164.739166 -23.857435 406.919556
v 184.266312 -29.682667 406.919556
v 191.855759 -36.571678 406.919495
v 85.766022 32.265591 406.919617
v 224.301575 -42.804615 406.919617
v 221.945587 -72.039909 406.919556
v 209.769196 -76.269432 406.919556
v 218.483063 -40.338726 406.919556
v 226.117981 -33.598095 406.919556
v 222.280853 -25.602980 406.919556
v 196.908081 9.856637 406.919495
v 193.248901 12.865973 406.919556
v 220.901794 -21.624563 406.919617
v 192.796722 21.047537 406.919556
v 194.805145 36.919979 406.919617
v 187.847855 39.812805 406.919556
v 194.591583 40.426109 406.919556
v 268.737457 -30.924437 406.919495
v 261.649628 -41.418091 406.919556
v 278.684387 -7.354240 406.919556
v 274.454895 -19.530632 406.919495
v 236.100433 5.982381 406.919556
v 176.384247 -27.644463 406.919617
v 178.117615 -27.428015 406.919556
v 179.750275 -27.562963 406.919556
v 155.097824 63.786572 406.919556
v 151.029480 66.451431 406.919617
v 239.810669 18.685802 406.919495
v 282.209259 18.876120 406.919556
v 158.958176 60.707928 406.919556
v 196.927795 -78.893387 406.919556
v 132.293777 10.596205 406.919556
v 85.766312 5.486934 406.919556
v 84.865417 18.876125 406.919556
v 194.841919 43.969456 406.919556
v 281.308350 5.487203 406.919556
v 233.339386 -66.322464 406.919495
v 230.625793 -44.641144 406.919556
v 186.294556 3.666077 406.919617
v 187.179199 7.003677 406.919556
v 193.165771 4.336220 406.919495
v 192.838501 1.056048 406.919556
v 239.142059 63.683792 406.919556
v 123.243042 -59.235741 406.919617
v 170.149719 -78.893745 406.919617
v 165.692993 53.268181 406.919617
v 162.520126 57.205189 406.919617
v 189.863144 29.964403 406.919556
v 195.416687 33.450672 406.919556
v 185.911163 -0.322754 406.919556
v 253.308960 -50.894028 406.919556
v 243.833038 -59.234673 406.919556
v 234.088074 -45.277969 406.919556
v 123.242065 96.990166 406.919617
v 167.684006 -24.083078 406.919556
v 219.925293 -17.695253 406.919556
v 180.310333 70.985886 406.919556
v 221.946381 109.794868 406.919556
v 196.360413 30.017683 406.919556
v 183.538910 -79.794312 406.919556
v 196.997742 -28.846560 406.919556
v 174.390915 -25.738712 406.919556
v 170.509369 44.050171 406.919617
v 149.089355 -4.917076 406.919556
v 219.308685 -10.092898 406.919556
v 219.733124 -6.474358 406.919556
v 205.307343 10.157664 406.919556
v 201.949219 10.537198 406.919495
v 156.446289 -25.322828 406.919556
v 181.304443 -28.009941 406.919495
v 182.802353 -28.729620 406.919617
v 174.527863 -28.251577 406.919495
v 219.383484 -13.842275 406.919617
v 199.157654 10.456878 406.919617
v 220.525970 68.216515 406.919556
v 149.829254 1.405979 406.919556
v -225.640427 -138.990768 177.300034
v -266.480896 -138.990768 177.300064
v -266.480865 -138.990784 267.752869
v -225.640427 -138.990784 267.752869
v -228.476135 -89.856293 -175.653793
v -176.847229 -89.856293 -197.739609
v -176.847229 -138.189270 -197.739609
v -228.476135 -138.189285 -175.653793
v -154.761383 -138.189331 -146.110733
v -206.390305 -138.189316 -124.024910
v -67.649277 -89.856300 -196.233627
v 38.306831 -89.856285 -241.559601
v 38.306831 -138.189285 -241.559601
v -67.649277 -138.189285 -196.233627
v -22.323326 -89.856300 -90.277542
v -22.323326 -138.189331 -90.277542
v -206.390305 -89.856293 -124.024895
v 27.221252 -13.545588 184.459793
v 37.490723 -13.545595 226.992172
v 37.357468 -16.678898 226.440292
v 27.221252 -16.678892 184.459793
v -161.980194 -60.173992 -319.131287
v -188.137299 -60.174000 -277.712769
v -188.137283 -137.701126 -277.712769
v -161.980179 -137.701141 -319.131287
v 124.966919 -60.173988 -367.923828
v 76.442825 -60.173988 -374.638550
v 76.442810 -137.701141 -374.638550
v 124.966919 -137.701126 -367.923828
v 24.447716 28.743210 172.972733
v -28.732340 28.743212 185.813156
v -25.958759 -13.385414 197.300186
v 27.221237 -13.385412 184.459793
v -15.822556 -16.678898 239.280655
v -15.689301 -13.545597 239.832596
v -25.958759 -13.545591 197.300186
v -25.958759 -16.678894 197.300186
v -28.968391 28.461140 184.835617
v -26.194817 -13.667491 196.322678
v 24.211647 28.461138 171.995224
v 26.985214 -13.667488 183.482285
v 63.885399 -138.189377 267.906494
v 63.885391 -17.188562 267.906494
v -202.034439 -17.188562 267.906555
v -202.034424 -138.189346 267.906555
v -154.761383 -89.856293 -146.110733
v 63.885414 -17.188545 152.662704
v -202.034485 -17.188545 152.662735
v 83.632797 -89.856285 -135.603485
v -202.034485 -138.189285 152.662735
v 63.885406 -138.189301 152.662674
v 83.632782 -138.189331 -135.603500
v -200.371155 -86.571678 -156.786057
v -185.641479 -86.571678 -167.664703
v -185.641479 -89.688164 -167.664703
v -200.371155 -89.688164 -156.786057
v -179.377625 -86.571678 -159.183456
v -194.107254 -86.571678 -148.304810
v -194.107254 -89.688164 -148.304810
v -179.377625 -89.688164 -159.183456
v -99.002457 -5.424035 230.383041
v -99.002457 -5.424031 188.030228
v -142.678787 -5.424031 188.030228
v -142.678772 -5.424035 230.383041
v -90.898567 2.530845 214.799393
v -90.898567 35.100533 214.799393
v -93.479324 35.100533 214.799393
v -93.479324 2.530845 214.799393
v -92.188934 35.100533 212.564377
v -92.188934 2.530845 212.564377
v -93.479324 -9.980906 214.799393
v -93.479324 -2.656312 214.799393
v -92.188934 -2.656312 212.564377
v -92.188934 -9.980906 212.564377
v -90.898567 -2.656312 214.799393
v -90.898567 -9.980906 214.799393
v -92.188950 2.530846 203.081650
v -92.188950 35.100533 203.081650
v -90.898567 35.100533 205.316635
v -90.898567 2.530846 205.316635
v -93.479324 35.100533 205.316666
v -93.479324 2.530846 205.316666
v -92.188950 -9.980904 203.081650
v -92.188950 -2.656312 203.081650
v -90.898567 -2.656312 205.316635
v -90.898567 -9.980904 205.316635
v -93.479324 -2.656312 205.316666
v -93.479324 -9.980904 205.316666
v -148.060455 2.530845 214.799393
v -148.060455 35.100536 214.799393
v -150.641205 35.100536 214.799393
v -150.641205 2.530845 214.799393
v -149.350830 35.100536 212.564438
v -149.350830 2.530845 212.564438
v -150.641205 -9.980906 214.799393
v -150.641205 -2.656312 214.799393
v -149.350830 -2.656312 212.564438
v -149.350830 -9.980906 212.564438
v -148.060455 -2.656312 214.799393
v -148.060455 -9.980906 214.799393
v -149.350815 2.530846 203.081650
v -149.350815 35.100536 203.081650
v -148.060455 35.100536 205.316635
v -148.060455 2.530846 205.316635
v -150.641205 35.100536 205.316666
v -150.641205 2.530846 205.316666
v -149.350815 -9.980904 203.081650
v -149.350815 -2.656312 203.081650
v -148.060455 -2.656312 205.316635
v -148.060455 -9.980904 205.316635
v -150.641205 -2.656312 205.316666
v -150.641205 -9.980904 205.316666
v -146.561005 1.517162 214.799393
v -126.415909 1.517162 214.799423
v -126.415909 0.226788 212.564407
v -146.561005 0.226787 212.564407
v -126.415909 -1.063587 214.799423
v -146.561005 -1.063588 214.799393
v -146.560989 0.226787 203.081619
v -126.415901 0.226788 203.081650
v -126.415901 -1.063587 205.316666
v -146.561005 -1.063588 205.316635
v -126.415901 1.517162 205.316666
v -146.561005 1.517162 205.316635
v -121.442802 1.517162 214.799423
v -94.663147 1.517162 214.799423
v -94.663132 0.226788 212.564407
v -121.442818 0.226787 212.564407
v -94.663147 -1.063587 214.799423
v -121.442802 -1.063588 214.799423
v -121.442818 0.226787 203.081619
v -94.663147 0.226788 203.081619
v -94.663132 -1.063587 205.316666
v -121.442818 -1.063588 205.316666
v -94.663132 1.517162 205.316666
v -121.442818 1.517161 205.316666
v -126.514435 -3.343200 200.723373
v -121.469650 -3.343200 200.723343
v -121.469650 -3.343202 217.858871
v -126.514450 -3.343202 217.858871
v -121.469650 4.899645 200.723343
v -121.469650 4.899643 217.858871
v -126.514435 4.899646 200.723373
v -126.514450 4.899643 217.858871
v -264.203430 113.915642 -338.281433
v -264.203491 113.915596 -54.983040
v -264.203461 -27.695930 -54.983002
v -264.203491 -27.695890 -338.281372
v -264.203491 113.915573 128.474197
v -264.203552 113.915550 351.083923
v -264.203491 -27.695976 351.083984
v -264.203430 -27.695948 128.474258
v 83.157486 -60.173981 -423.162689
v 131.681625 -60.173985 -416.447998
v 131.681625 -137.701126 -416.447998
v 83.157471 -137.701141 -423.162720
v -203.398651 -60.173988 -345.288330
v -229.555801 -60.174000 -303.869904
v -229.555786 -137.701126 -303.869904
v -203.398651 -137.701126 -345.288330
v 23.968304 -74.219849 -174.259628
v 20.972399 -66.321915 -176.235168
v 20.566017 -66.375198 -173.314178
v 23.406567 -74.020935 -169.377243
v 22.244724 -63.622547 -175.586029
v 21.626726 -57.986942 -174.908951
v 25.433916 -64.970528 -166.614502
v 24.971386 -67.804115 -168.113083
v 13.112939 -70.741264 -180.433060
v 11.915650 -64.417107 -181.143127
v 18.554510 -64.209358 -181.289520
v 17.383722 -72.080376 -180.570557
v 19.996117 -78.768204 -168.765869
v 20.873604 -74.020935 -167.549683
v 16.447515 -73.950851 -168.496719
v 17.223274 -78.697906 -169.056442
v 18.033068 -66.375198 -171.486618
v 15.260221 -66.399231 -171.777206
v 12.374890 -56.950432 -175.260284
v 13.204256 -55.915390 -179.465500
v 10.885582 -64.226715 -174.971008
v 14.225440 -78.979233 -172.777908
v 11.669964 -83.475677 -168.449112
v 16.541307 -83.475677 -161.697540
v 20.299545 -83.475677 -184.941772
v 16.983372 -79.121033 -178.303207
v 20.006090 -78.964417 -177.628616
v 13.549072 -83.475685 -180.071243
v 30.042234 -83.475677 -171.438629
v 25.170891 -83.475677 -178.190186
v 23.009550 -78.964417 -173.465881
v 6.798613 -83.475685 -175.200684
v 8.706427 -92.325394 -174.891083
v 19.991856 -92.325394 -183.033661
v 28.134426 -92.325394 -171.748230
v 13.941285 -79.213165 -176.050522
v 23.291767 -83.475677 -166.568069
v 22.529072 -78.768204 -170.593430
v 22.263737 -67.256508 -171.095474
v 19.644144 -67.077271 -169.354980
v 11.910124 -72.174667 -175.176514
v 22.497446 -58.375000 -170.641983
v 20.005611 -58.427254 -169.398209
v 16.610371 -58.320992 -170.803467
v 23.303360 -65.009338 -165.046677
v 19.114193 -51.416912 -178.572632
v 18.456532 -56.853989 -179.658478
v 18.993568 -53.678905 -174.433472
v 14.200240 -62.910522 -171.175598
v 22.494019 -67.730766 -166.250839
v 12.708370 -51.592709 -174.715637
v 16.967054 -53.744289 -173.392838
v 16.848995 -92.325394 -163.605652
v 10.018649 -53.062912 -155.082718
v 4.308236 -71.364647 -160.053711
v 3.697690 -68.094788 -147.286423
v 15.873899 -71.437912 -148.782745
v 13.153734 -63.128456 -157.896439
v 6.852427 -81.606621 -157.952591
v 7.979761 -81.531548 -152.508698
v 11.599219 -81.410286 -157.950272
v 15.729441 -71.205811 -161.416046
v 9.817406 -83.195511 -143.126923
v -2.175108 -83.195511 -154.674606
v -1.417700 -89.620758 -154.688950
v 9.803065 -89.620758 -143.884384
v 14.413717 -67.243187 -159.732422
v 9.372558 -83.195503 -166.667145
v 12.217352 -81.218887 -152.529572
v 21.365072 -83.195503 -155.119461
v 20.607687 -89.620758 -155.105148
v 9.386895 -89.620750 -165.909744
v -82.045258 -17.188562 267.906525
v -82.045273 -138.189301 152.662704
v -82.045273 -17.188545 152.662720
v -82.045250 -138.189362 267.906525
usemtl siege-c
s off
f 1 2 3
f 4 5 6
f 3 2 7
f 4 8 5
f 2 8 4 7
f 9 10 11 12
f 11 13 14 12
f 15 16 17 18
f 19 20 21 22
f 23 15 24
f 17 25 26
f 24 15 18
f 17 16 25
f 27 28 19 22
usemtl siege-b
f 1 11 29
f 30 12 6 5
f 31 29 11
f 1 3 11
f 13 7 4 14
f 5 32 30
f 33 10 9 34
f 23 19 35
f 36 22 26 25
f 37 35 19
f 23 24 19
f 20 18 17 21
f 25 38 36
f 39 28 27 40
usemtl siege-a
f 41 2 1 29
f 42 30 32
f 41 29 31
f 30 31 33 34
f 13 11 3 7
f 9 12 30 34
f 10 33 31 11
f 6 12 14 4
f 42 41 31 30
f 8 42 32 5
f 16 43 38 25
f 27 22 36 40
f 36 37 39 40
f 43 44 37 36
f 28 39 37 19
f 26 22 21 17
f 43 36 38
f 20 19 24 18
f 44 35 37
f 44 15 23 35
usemtl HARDwhite
f 45 46 47 48
f 49 50 51 52
f 53 54 55 56
f 57 58 59 60
f 61 62 50 49
f 63 64 56 65
f 61 49 52 66
f 64 67 54 53
f 68 58 57 69
f 70 68 69 71
f 71 57 69
f 72 70 71 73
f 74 75 76 77
f 78 79 45 48
f 63 80 67 64
f 60 57 71 73
f 56 64 53
f 56 55 81 65
f 80 63 82 83
f 51 50 62 84
f 66 84 62 61
f 52 51 84 66
f 85 78 48 47
f 86 87 88 89
f 79 90 46 45
f 91 92 89 88
f 93 91 88 87
f 94 93 87 86
f 81 95 96 65
f 97 98 75 74
f 75 98 99 76
f 77 76 99 100
f 100 99 98 97
f 63 96 82
f 101 102 72 73
f 103 104 60 59
f 60 101 104
f 100 97 74 77
f 63 65 96
f 60 73 101
f 481 482 483
f 481 483 484
f 485 481 484
f 482 486 487 483
f 488 486 482 489
f 490 491 492 493
f 482 481 485
f 494 489 482
f 484 489 494
f 487 491 490
f 491 486 495
f 490 496 487
f 487 486 491
f 497 495 488
f 496 490 497
f 495 486 488
f 488 496 497
f 487 496 484 483
f 497 490 493 498
f 492 491 495 499
f 484 496 488 489
f 498 499 495 497
s 1
f 105 106 107 108
f 109 110 111 112
f 113 114 115 116
f 117 118 119 120
f 121 122 123 124
f 125 126 127 128
f 129 111 110
f 130 131 132
f 133 134 112
f 135 136 137 138
f 126 139 140
f 138 141 142 143
f 120 123 122 117
f 144 145 132 129
f 116 146 113
f 110 147 129
f 148 149 150
f 151 152 153 154
f 155 132 156 157
f 158 159 126
f 126 160 161
f 162 163 164
f 150 149 165
f 166 167 126
f 115 168 169
f 162 125 128 163
f 170 153 152 171
f 172 173 139
f 151 174 175
f 176 177 172
f 173 140 139
f 160 126 151 178
f 179 178 151
f 168 115 114
f 136 180 137
f 181 182 183
f 184 185 186 187
f 188 144 129
f 189 190 191
f 134 192 112