Datasets:

Modalities:
Image
Tags:
code
Libraries:
Datasets
License:
File size: 18,990 Bytes
a01128b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "">
<html lang="en-US">
 <!--// This file starts each and every page in the website  -->
 <head>
  <style>
   #brochure,#purchaseinfo{position:absolute;top:60px;right:40px}#navbar li a,.tab-links a,.tab-links a:hover,a.sideBar:active,a.sideBar:link,a.sideBar:visited,a.sideBarHilite{text-decoration:none}#body,#navbar,li,p,td,th{font-family:Verdana,Arial,Helvetica,sans-serif}#navbar,#treeNavigation,.tab-links li,h1,h2,td,th{text-align:left}td,td.col3,th{vertical-align:top}.tab-links li,h3{text-indent:10px}#body{font-size:10pt;background:#fff;margin:0;text-align:center}#header{width:960px;height:110px;margin:0 auto;background:url(/graphics/page_bgnd_sprite.png) no-repeat;position:relative;z-index:100}#mobileRedirectBtn{position:absolute;left:200px;top:14px;width:100px;height:70px;display:none;background:url(/graphics/page_bgnd_sprite.png) -2880px 0 no-repeat}#searchBtn{position:relative;top:3px;left:2px;width:30px;height:20px;background:url(/graphics/page_bgnd_sprite.png) -2880px -70px no-repeat}#plus1Box{position:absolute;top:18px;right:380px;margin:2px}#translateBox{position:absolute;top:15px;right:250px;margin:6px}#searchBox{position:absolute;top:15px;right:22px;margin:2px}span.logoset{border:0;background:url(/graphics/logo_sprite.png) left top no-repeat}#topLogo{position:absolute;left:32px;top:14px;width:155px;height:76px;background-position:0 0}#botLogo{margin:10px;float:left;width:38px;height:50px;background-position:-155px 0}#navbar{position:absolute;right:22px;top:70px;font-size:12pt;font-weight:700;margin:0;padding:0;height:1em}#navbar li{list-style:none;float:left}#navbar a.activeMenu,#navbar a:hover{color:#000}#navbar li a{display:block;padding:5px 8px;margin-right:0;color:#698E80}#navbar li ul{display:none;width:15em;background-color:#F4F4F4}#navbar li.hover ul,#navbar li:hover ul{display:block;position:absolute;margin:0;padding:0;color:#000}#navbar li.hover li,#navbar li:hover li{float:none;color:#000}#navbar li.hover li a,#navbar li:hover li a{background-color:#F4F4F4;border:1px solid #698E80;color:#698E80}#navbar li li a:hover{background-color:#F4F4F4;color:#000}span.orderLink{float:right;color:#344740}ul.sideBar{list-style-type:none;margin-left:0;padding-left:10px}li.sideBar{font-size:8pt;font-weight:700;margin-bottom:2px}a.sideBar{color:#698E80}a.sideBarHilite{color:#000}a.sideBar:hover{color:#000}#mainBody{width:960px;margin:0 auto;background:url(/graphics/page_bgnd_sprite.png) -960px 0 repeat-y;position:relative;border-bottom:1px solid;min-height:400px}#pageNavigation{height:60px}td.contentMargin{width:30px}#treeNavigation{position:absolute;top:10px;left:10px}#toc{position:absolute;top:10px;right:10px;text-align:right}h1{font-size:18pt;font-weight:700;color:#698E80}#purchaseinfo,h2{font-size:14pt;font-weight:700}h2{margin-top:10px;margin-bottom:40px}div.titlebar{background-color:#C2E0D6;font-weight:700;width:auto;padding:5px}.selTab,.tab-links,.tabs{width:100%}fieldset{margin:0;padding:0;border:0}#purchaseinfo{background-color:#F4F4F4;border:1px solid #C2E0D6;padding:5px}a.purchaseinfo:active,a.purchaseinfo:link,a.purchaseinfo:visited{text-decoration:none;color:#306060}li,p{font-size:10pt}.tabs{display:inline-block}.tab-links{padding:0;height:25px;margin:0;background:#F4F4F4;border-bottom:1px solid #698E80;display:none}.tab-links a:hover,li.active a,li.active a:hover{border-bottom:3px solid #698E80}.tab-links:after{padding:0;display:block;clear:both;content:''}.tab-links li{margin:0;float:left;list-style:none;font-size:14pt;font-weight:700;color:#698E80}.tab-links a{display:inline-block;color:#698E80;transition:all linear .15s}#popupimgdiv,.js .hideIfJS{display:none}.stdPict,img{border:0}td,th{font-size:10pt;padding:0}td.sidePict{width:25%;text-align:center}td.col3{width:33%;text-align:center}table.standardTable{border:0;background:#fff}table.standardTable th{padding:5px;background:#C2E0D6}table.standardTable th.blank{padding:5px;background:#fff}table.standardTable ul{padding-left:15px}.partNumber{font-family:courier,courier new,monospace}table.standardTable td{padding:5px;background:#F4F4F4}.alignL{text-align:left}.alignC{text-align:center}.alignR{text-align:right}h3,h4{background:#F4F4F4;text-align:left;margin-bottom:20px;text-decoration:none;font-weight:700}.alignM{vertical-align:middle}.alignB{vertical-align:bottom}h3{height:25px;margin-top:0;border-bottom:1px solid #698E80;font-size:14pt;color:#698E80}h4{margin-top:40px}a.headerlink:active,a.headerlink:link,a.headerlink:visited{text-decoration:none;color:#306060}.stdPict{background-color:#F0F8F8}div.pictureBlock{text-align:center;color:#306060;margin-bottom:20px;position:relative}img.enlargeIcon{width:24px;height:24px;position:absolute;top:2px;right:2px}img.people{border:1px solid #000;float:left;margin:15px;width:200px;height:200px;box-shadow:5px 5px 3px #888}#popupimgdiv{position:absolute;z-index:100;background-color:#fff;padding:5px;border:1px solid gray;text-align:center;text-decoration:none;color:#00008B;margin:0 auto 0 -342px;width:675px;height:470px;left:50%}.tourtable td,.tourtablehead td,.tourtablehead th{padding-left:30px;vertical-align:middle}table.newsBox{position:relative;top:0;width:250px;height:400px;background:url(/graphics/news_bgnd.png) #fff}#maintext{font-size:larger;text-align:center}p.TandCtitle,span.TandCbody{font-family:Verdana,Arial,Helvetica,sans-serif;text-align:justify}p.TandCtitle{font-size:x-small;font-weight:700}span.TandCbody{font-size:xx-small;font-weight:400}#smallPrint,.tourtable img{text-align:center}.tourtablehead{background:url(/graphics/tour_header.png) top left no-repeat;width:660px}.tourtablehead tr{height:49px}.tourtable{background:url(/graphics/tour_table_bg.png) top left repeat-y;width:660px}.tourtable tr{height:50px}.notes{font-size:smaller}#smallPrint{width:960px;margin:0 auto;background:url(/graphics/page_bgnd_sprite.png) -1920px 0 repeat-y;border-bottom:1px solid;font-size:x-small}.js .showIfJS{display:block}@media print{dummy{display:block}}@media screen and (max-width:1060px){#primary{width:67%}#secondary{width:30%;margin-left:3%}}@media screen and (max-width:768px){#primary,#secondary{width:100%}#secondary{margin:0;border:none}}@media (min-width:640px){body{font-size:1rem}}@media (min-width:960px){body{font-size:1.2rem}}@media (min-width:1100px){body{font-size:1.5rem}}
  </style>
  <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
  <title>
   Vinci BMS downloads - Elithion
  </title>
  <meta content="Brochures, manuals, GUI" name="description">
  <meta content="Elithion" name="DC.Creator">
  <meta content="Brochures, manuals, GUI" name="DC.Description">
  <meta content="2023" name="DC.Date">
  <meta content="English" name="DC.Language">
  <meta content="40.036957;-105.249273" name="geo.position">
  <!-- "Mobile friendy". This is not actually used (because we have a separate site for mobile), but is placed here to satisfy bots that analyze this site for mobile compatibility-->
  <meta content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no" name="viewport">
  <meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
  <meta content="true" name="HandheldFriendly">
  <meta content="k2bd1FX2r2UYvrIBLzDapUu0u3aFQ3Q8LlnmPYf-77E" name="google-site-verification">
 </head>
 <!--// Body -->
 <body id="body">
  <!--// Header -->
  <div id="header">
   <a name="top">
   </a>
   <!--// Home logo button -->
   <a>
    <span class="logoset" id="topLogo">
    </span>
   </a>
   <!--// Redirect to mobile site button -->
   <a id="mobileRedirectBtn">
   </a>
   <!--// Search and translate -->
   <div id="translateBox">
    <select onchange="code=this[this.selectedIndex].value; if(!(code=='')){document.location.href='https://translate.google.com/translate?js=n&amp;prev=_t&amp;hl=en&amp;ie=UTF-8&amp;layout=2&amp;eotf=1&amp;sl=en&amp;u='+encodeURIComponent(window.location)+'&amp;act=url&amp;tl='+code}" title="Select language">
     <option value>
      Select language...
     </option>
     <option value="af">
      Afrikaans
     </option>
     <option value="sq">
      Albanian
     </option>
     <option value="ar">
      Arabic
     </option>
     <option value="hy">
      Armenian
     </option>
     <option value="az">
      Azerbaijani
     </option>
     <option value="eu">
      Basque
     </option>
     <option value="be">
      Belarusian
     </option>
     <option value="bg">
      Bulgarian
     </option>
     <option value="my">
      Burmese
     </option>
     <option value="ca">
      Catalan; Valencian
     </option>
     <option value="zh-CN">
      Chinese (simpl)
     </option>
     <option value="zh-TW">
      Chinese (trad)
     </option>
     <option value="hr">
      Croatian
     </option>
     <option value="cs">
      Czech
     </option>
     <option value="da">
      Danish
     </option>
     <option value="nl">
      Dutch
     </option>
     <option value="et">
      Estonian
     </option>
     <option value="tl">
      Filipino
     </option>
     <option value="fi">
      Finnish
     </option>
     <option value="fr">
      French
     </option>
     <option value="gl">
      Galician
     </option>
     <option value="ka">
      Georgian
     </option>
     <option value="de">
      German
     </option>
     <option value="el">
      Greek, Modern
     </option>
     <option value="ht">
      Haitian Creole
     </option>
     <option value="he">
      Hebrew (modern)
     </option>
     <option value="hi">
      Hindi
     </option>
     <option value="hu">
      Hungarian
     </option>
     <option value="is">
      Icelandic
     </option>
     <option value="id">
      Indonesian
     </option>
     <option value="it">
      Italian
     </option>
     <option value="ja">
      Japanese
     </option>
     <option value="ko">
      Korean
     </option>
     <option value="lv">
      Latvian
     </option>
     <option value="lt">
      Lithuanian
     </option>
     <option value="mk">
      Macedonian
     </option>
     <option value="ms">
      Malay
     </option>
     <option value="ml">
      Malayalam
     </option>
     <option value="mt">
      Maltese
     </option>
     <option value="nb">
      Norwegian
     </option>
     <option value="fa">
      Persian
     </option>
     <option value="pl">
      Polish
     </option>
     <option value="pt">
      Portuguese
     </option>
     <option value="ro">
      Romanian
     </option>
     <option value="ru">
      Russian
     </option>
     <option value="sr">
      Serbian
     </option>
     <option value="sk">
      Slovak
     </option>
     <option value="sl">
      Slovenian
     </option>
     <option value="es">
      Spanish
     </option>
     <option value="sw">
      Swahili
     </option>
     <option value="sv">
      Swedish
     </option>
     <option value="th">
      Thai
     </option>
     <option value="tr">
      Turkish
     </option>
     <option value="uk">
      Ukrainian
     </option>
     <option value="ur">
      Urdu
     </option>
     <option value="vi">
      Vietnamese
     </option>
     <option value="cy">
      Welsh
     </option>
     <option value="wo">
      Wolof
     </option>
    </select>
   </div>
   <div id="searchBox">
    <!-- The "margin:0" keeps IE from adding an extra line below the form -->
    <form action="" method="GET" style="margin:0;">
     <fieldset>
      <legend>
      </legend>
      <input name="ie" type="hidden" value="UTF-8">
      <input name="oe" type="hidden" value="UTF-8">
      <input name="domains" type="hidden" value="elithion.com">
      <input name="sitesearch" type="hidden" value="elithion.com">
      <input alt="search string entry field" maxlength="255" name="q" size="22" title="Search in Google" type="text" value>
      <input alt="Submit button" id="searchBtn" src="/graphics/dot.gif" type="image">
     </fieldset>
    </form>
   </div>
   <!--// Navigation menus -->
   <ul id="navbar">
    <!-- The strange spacing herein prevents an IE6 whitespace bug. -->
    <li>
     <a>
      Home
     </a>
    </li>
    <li>
     <a class="activeMenu">
      Products
     </a>
     <ul>
      <li>
       <a title="Battery management system">
        Battery management
       </a>
      </li>
      <li>
       <a title="Versatile battery management system for all applications">
        &bull;Lithiumate
        <span class="orderLink" onclick="location.href='lithiumate_ordering.php';return false;">
         Order
        </span>
       </a>
      </li>
      <li>
       <a title="Battery management system for traction packs">
        &bull;Vinci EV
       </a>
      </li>
      <li>
       <a title="Battery management system for grid applications">
        &bull;Vinci HV
       </a>
      </li>
     </ul>
    </li>
    <li>
     <a>
      Applications
     </a>
    </li>
    <li>
     <a>
      Technology
     </a>
     <ul>
      <li>
       <a>
        The Elithion Edge
       </a>
      </li>
      <li>
       <a>
        Consulting services
       </a>
      </li>
      <li>
      </li>
     </ul>
    </li>
   </ul>
  </div>
  <!-- header -->
  <!--// Main body -->
  <div id="mainBody">
   <div id="pageNavigation">
   </div>
   <table cellpadding="0" cellspacing="0" width="100%">
    <!--// Central body of page: left menu (if applicable), left white column, actual contents, right while column -->
    <tbody>
     <tr>
      <td class="contentMargin">
       <!--// Left white margin -->
      </td>
      <td>
       <!--// Page contents -->
       <div id="pageContents">
        <div id="treeNavigation">
         <a>
          home
         </a>
         <span style="color:#698E80;"></span>
         <a>
          products
         </a>
         <span style="color:#698E80;"></span>
         <a>
          vinci
         </a>
         <span style="color:#698E80;"></span>
         vinci_downloads
        </div>
        <table cellpadding="0" cellspacing="0" width="100%">
         <tbody>
          <tr>
           <td style="width:620px;">
            <h1>
             Vinci BMS downloads
            </h1>
            <h2>
             Brochures, manuals, GUI
            </h2>
           </td>
           <td style="width:130px;">
           </td>
          </tr>
         </tbody>
        </table>
        <!--// The remainder of the page is defined in the individual php file, and then by _pageend -->
        <!--//-->
        <a id="Documentation">
        </a>
        <h3>
         <a>
          <span style="color:#698E80;font-weight:bold;float:right;position:relative;top:-10px;font-size:150%;" title="back to top"></span>
         </a>
         <a class="headerlink">
          Documentation
         </a>
        </h3>
        <table cellspacing="4" class="standardTable">
         <tbody>
          <tr>
           <th>
            Vinci EV
           </th>
           <td>
            <a>
             Brochure
            </a>
           </td>
           <td>
            <a href>
             Pamphlet
            </a>
           </td>
           <td>
            <a href>
             Quick manual
            </a>
           </td>
          </tr>
          <tr>
           <th>
            Vinci HV
           </th>
           <td>
            <a>
             Brochure
            </a>
           </td>
           <td>
            <a href>
             Pamphlet
            </a>
           </td>
           <td>
            <a href>
             Quick manual
            </a>
           </td>
          </tr>
         </tbody>
        </table>
        <p>
         The full manual is integrated in the GUI.
         <!--//-->
         <a id="Software">
         </a>
        </p>
        <h3>
         <a>
          <span style="color:#698E80;font-weight:bold;float:right;position:relative;top:-10px;font-size:150%;" title="back to top"></span>
         </a>
         <a class="headerlink">
          Software
         </a>
        </h3>
        <!--//-->
        <h4>
         <a name="Windows">
         </a>
         <a class="headerlink">
          Windows
         </a>
        </h4>
        <ol>
         <li>
          Download the
          <a href>
           Graphics User Interface
          </a>
         </li>
         <li>
          Download the
          <a>
           driver for the CAN-USB adapter
          </a>
         </li>
         <li>
          Run the GUI
         </li>
         <li>
          To connect to the BMS, follow the instructions in the manual, included in the GUI.
         </li>
        </ol>
        <!--// This file ends each and every page in the website  -->
        <!--// The previous portion of the page is defined in _pagestart and in the individual php file  -->
        <p>
         &nbsp;
        </p>
       </div>
      </td>
      <td class="contentMargin">
       <!--// Right white margin -->
      </td>
     </tr>
    </tbody>
   </table>
   <!--// Central body of page: left menu (if applicable), left white column, actual contents, right while column -->
   <!--// TOC: list of links to anchors in the page  -->
   <!-- We do this last, because we had to first collect the anchors in an array, as the page was being built  -->
   <div id="toc">
    In this page:
    <br>
    <a>
     Documentation
    </a>
    <span style="color:#698E80;"></span>
    <br>
    <a>
     Software
    </a>
    <span style="color:#698E80;"></span>
    <br>
   </div>
  </div>
  <!--// Small print at the bottom of the page, maintenance links just for the home page -->
  <div id="smallPrint">
   <a>
    <span class="logoset" id="botLogo">
    </span>
   </a>
   &nbsp;
   <br>
   &copy; 2008~2023 Elithion&trade;, Inc.. All rights reserved.
			The Elithion brand and the logo with an 'ə' (upside down 'e') are Trademarks of Elithion Inc.
   <br>
   <a>
    Policies
   </a>
   &nbsp;-&nbsp;
   <a>
    Contact us
   </a>
   &nbsp;-&nbsp;
   <a>
    Mobile site
   </a>
   Page published on May 26 2017.
   <br>
   &nbsp;
   <br>
   <!--// Extra space, so that when going to the last anchor in the page, the anchor can start at the top of the page  -->
   &nbsp;
   <br>
   &nbsp;
   <br>
   &nbsp;
   <br>
   &nbsp;
   <br>
   &nbsp;
   <br>
   &nbsp;
   <br>
   &nbsp;
   <br>
   &nbsp;
   <br>
   &nbsp;
   <br>
   &nbsp;
   <br>
   &nbsp;
   <br>
   &nbsp;
   <br>
   &nbsp;
   <br>
   &nbsp;
   <br>
   &nbsp;
   <br>
   &nbsp;
   <br>
   &nbsp;
   <br>
   &nbsp;
   <br>
  </div>
  <!--// Pop-up image for enlargements, hidden until needed  -->
  <div id="popupimgdiv" onclick="this.style.display='none'">
   <img alt="Pop-up enlargement" height="450" id="popupimage" src="rick.jpg" width="675">
   <br>
   <span id="popupimgcaption">
   </span>
  </div>
  <!--// Chat  -->
  <!--
-->
  <!-- Piwik web analytics -->
 </body>
</html>