license.html
42 KB
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
<html>
<head>
<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
<meta name=Generator content="Microsoft Word 15 (filtered)">
<style>
<!--
/* Font Definitions */
@font-face
{font-family:Wingdings;
panose-1:5 0 0 0 0 0 0 0 0 0;}
@font-face
{font-family:"MS Mincho";
panose-1:2 2 6 9 4 2 5 8 3 4;}
@font-face
{font-family:SimSun;
panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
{font-family:"Cambria Math";
panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
{font-family:Calibri;
panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
{font-family:Tahoma;
panose-1:2 11 6 4 3 5 4 4 2 4;}
@font-face
{font-family:"\@MS Mincho";
panose-1:2 2 6 9 4 2 5 8 3 4;}
@font-face
{font-family:"\@SimSun";
panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
{font-family:"Trebuchet MS";
panose-1:2 11 6 3 2 2 2 2 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:0in;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
h1
{mso-style-link:"Heading 1 Char";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:17.85pt;
text-indent:-17.85pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
h2
{mso-style-link:"Heading 2 Char";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:.5in;
text-indent:-18.15pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
h3
{mso-style-link:"Heading 3 Char";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:53.85pt;
text-indent:-17.85pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;
font-weight:normal;}
h4
{mso-style-link:"Heading 4 Char";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:71.75pt;
text-indent:-17.9pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;
font-weight:normal;}
h5
{mso-style-link:"Heading 5 Char";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:89.6pt;
text-indent:-17.85pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;
font-weight:normal;}
h6
{mso-style-link:"Heading 6 Char";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:107.45pt;
text-indent:-17.85pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;
font-weight:normal;}
p.MsoHeading7, li.MsoHeading7, div.MsoHeading7
{mso-style-link:"Heading 7 Char";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:125.3pt;
text-indent:-17.85pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
p.MsoHeading8, li.MsoHeading8, div.MsoHeading8
{mso-style-link:"Heading 8 Char";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:143.15pt;
text-indent:-17.85pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
p.MsoHeading9, li.MsoHeading9, div.MsoHeading9
{mso-style-link:"Heading 9 Char";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:161.05pt;
text-indent:-17.9pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
p.MsoFootnoteText, li.MsoFootnoteText, div.MsoFootnoteText
{mso-style-link:"Footnote Text Char";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:0in;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
p.MsoCommentText, li.MsoCommentText, div.MsoCommentText
{mso-style-link:"Comment Text Char";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:0in;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
p.MsoHeader, li.MsoHeader, div.MsoHeader
{mso-style-link:"Header Char";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:0in;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
p.MsoFooter, li.MsoFooter, div.MsoFooter
{mso-style-link:"Footer Char";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:0in;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
span.MsoFootnoteReference
{font-family:"Times New Roman",serif;
vertical-align:super;}
span.MsoCommentReference
{font-family:"Times New Roman",serif;}
span.MsoPageNumber
{font-family:"Times New Roman",serif;}
span.MsoEndnoteReference
{font-family:"Times New Roman",serif;
vertical-align:super;}
p.MsoEndnoteText, li.MsoEndnoteText, div.MsoEndnoteText
{mso-style-link:"Endnote Text Char";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:0in;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
p.MsoBodyTextIndent, li.MsoBodyTextIndent, div.MsoBodyTextIndent
{mso-style-link:"Body Text Indent Char";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:0in;
line-height:200%;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
p.MsoBodyText2, li.MsoBodyText2, div.MsoBodyText2
{mso-style-link:"Body Text 2 Char";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:0in;
line-height:200%;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
a:link, span.MsoHyperlink
{mso-style-name:"Hyperlink\,Char Char7";
font-family:"Times New Roman",serif;
color:blue;
text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
{color:purple;
text-decoration:underline;}
p.MsoCommentSubject, li.MsoCommentSubject, div.MsoCommentSubject
{mso-style-link:"Comment Subject Char";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:0in;
text-autospace:none;
font-size:10.0pt;
font-family:"Tahoma",sans-serif;
font-weight:bold;}
p.MsoAcetate, li.MsoAcetate, div.MsoAcetate
{mso-style-link:"Balloon Text Char";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:0in;
text-autospace:none;
font-size:8.0pt;
font-family:"Tahoma",sans-serif;}
p.MsoListParagraph, li.MsoListParagraph, div.MsoListParagraph
{margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:.5in;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
p.MsoListParagraphCxSpFirst, li.MsoListParagraphCxSpFirst, div.MsoListParagraphCxSpFirst
{margin-top:6.0pt;
margin-right:0in;
margin-bottom:0in;
margin-left:.5in;
margin-bottom:.0001pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
p.MsoListParagraphCxSpMiddle, li.MsoListParagraphCxSpMiddle, div.MsoListParagraphCxSpMiddle
{margin-top:0in;
margin-right:0in;
margin-bottom:0in;
margin-left:.5in;
margin-bottom:.0001pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
p.MsoListParagraphCxSpLast, li.MsoListParagraphCxSpLast, div.MsoListParagraphCxSpLast
{margin-top:0in;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:.5in;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
span.Heading1Char
{mso-style-name:"Heading 1 Char";
mso-style-link:"Heading 1";
font-family:"Tahoma",sans-serif;
font-weight:bold;}
span.Heading2Char
{mso-style-name:"Heading 2 Char";
mso-style-link:"Heading 2";
font-family:"Tahoma",sans-serif;
font-weight:bold;}
span.Heading3Char
{mso-style-name:"Heading 3 Char";
mso-style-link:"Heading 3";
font-family:"Tahoma",sans-serif;}
span.Heading4Char
{mso-style-name:"Heading 4 Char";
mso-style-link:"Heading 4";
font-family:"Tahoma",sans-serif;}
span.Heading5Char
{mso-style-name:"Heading 5 Char";
mso-style-link:"Heading 5";
font-family:"Tahoma",sans-serif;}
span.Heading6Char
{mso-style-name:"Heading 6 Char";
mso-style-link:"Heading 6";
font-family:"Tahoma",sans-serif;}
span.Heading7Char
{mso-style-name:"Heading 7 Char";
mso-style-link:"Heading 7";
font-family:"Tahoma",sans-serif;}
span.Heading8Char
{mso-style-name:"Heading 8 Char";
mso-style-link:"Heading 8";
font-family:"Tahoma",sans-serif;}
span.Heading9Char
{mso-style-name:"Heading 9 Char";
mso-style-link:"Heading 9";
font-family:"Tahoma",sans-serif;}
p.Body1, li.Body1, div.Body1
{mso-style-name:"Body 1";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:17.85pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
p.Body2, li.Body2, div.Body2
{mso-style-name:"Body 2";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:.5in;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
p.Body3, li.Body3, div.Body3
{mso-style-name:"Body 3";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:53.85pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
p.Body4, li.Body4, div.Body4
{mso-style-name:"Body 4";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:71.75pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
p.Body5, li.Body5, div.Body5
{mso-style-name:"Body 5";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:90.15pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
p.Body6, li.Body6, div.Body6
{mso-style-name:"Body 6";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:1.5in;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
p.Body7, li.Body7, div.Body7
{mso-style-name:"Body 7";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:125.3pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
p.Body8, li.Body8, div.Body8
{mso-style-name:"Body 8";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:143.15pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
p.Body9, li.Body9, div.Body9
{mso-style-name:"Body 9";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:161.05pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
p.Bullet1, li.Bullet1, div.Bullet1
{mso-style-name:"Bullet 1";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:17.85pt;
text-indent:-17.85pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
p.Bullet2, li.Bullet2, div.Bullet2
{mso-style-name:"Bullet 2";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:.5in;
text-indent:-18.15pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
p.Bullet3, li.Bullet3, div.Bullet3
{mso-style-name:"Bullet 3";
mso-style-link:"Bullet 3 Char1";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:71.7pt;
text-indent:-17.85pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
p.Bullet4, li.Bullet4, div.Bullet4
{mso-style-name:"Bullet 4";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:89.6pt;
text-indent:-17.9pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
p.Bullet5, li.Bullet5, div.Bullet5
{mso-style-name:"Bullet 5";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:89.6pt;
text-indent:-17.85pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
p.Bullet6, li.Bullet6, div.Bullet6
{mso-style-name:"Bullet 6";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:107.45pt;
text-indent:-17.85pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
p.Bullet7, li.Bullet7, div.Bullet7
{mso-style-name:"Bullet 7";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:125.3pt;
text-indent:-17.85pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
p.Bullet8, li.Bullet8, div.Bullet8
{mso-style-name:"Bullet 8";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:143.15pt;
text-indent:-17.85pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
p.Bullet9, li.Bullet9, div.Bullet9
{mso-style-name:"Bullet 9";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:161.05pt;
text-indent:-17.9pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
p.HeadingEULA, li.HeadingEULA, div.HeadingEULA
{mso-style-name:"Heading EULA";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:0in;
text-autospace:none;
font-size:14.0pt;
font-family:"Tahoma",sans-serif;
font-weight:bold;}
p.HeadingSoftwareTitle, li.HeadingSoftwareTitle, div.HeadingSoftwareTitle
{mso-style-name:"Heading Software Title";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:0in;
text-autospace:none;
border:none;
padding:0in;
font-size:14.0pt;
font-family:"Tahoma",sans-serif;
font-weight:bold;}
p.Preamble, li.Preamble, div.Preamble
{mso-style-name:Preamble;
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:0in;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;
font-weight:bold;}
p.PreambleBorder, li.PreambleBorder, div.PreambleBorder
{mso-style-name:"Preamble Border";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:0in;
text-autospace:none;
border:none;
padding:0in;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;
font-weight:bold;}
p.HeadingWarranty, li.HeadingWarranty, div.HeadingWarranty
{mso-style-name:"Heading Warranty";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:0in;
text-align:center;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;
font-weight:bold;}
p.Heading1Warranty, li.Heading1Warranty, div.Heading1Warranty
{mso-style-name:"Heading 1 Warranty";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:.25in;
text-indent:-.25in;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
p.Heading2Warranty, li.Heading2Warranty, div.Heading2Warranty
{mso-style-name:"Heading 2 Warranty";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:.5in;
text-indent:-.25in;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
p.Heading3Bold, li.Heading3Bold, div.Heading3Bold
{mso-style-name:"Heading 3 Bold";
mso-style-link:"Heading 3 Bold Char";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:53.85pt;
text-indent:-17.85pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;
font-weight:bold;}
p.Bullet4Underline, li.Bullet4Underline, div.Bullet4Underline
{mso-style-name:"Bullet 4 Underline";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:89.6pt;
text-indent:-17.9pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;
text-decoration:underline;}
p.Bullet3Underline, li.Bullet3Underline, div.Bullet3Underline
{mso-style-name:"Bullet 3 Underline";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:0in;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;
text-decoration:underline;}
p.Body2Underline, li.Body2Underline, div.Body2Underline
{mso-style-name:"Body 2 Underline";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:.5in;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;
text-decoration:underline;}
p.Body3Underline, li.Body3Underline, div.Body3Underline
{mso-style-name:"Body 3 Underline";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:53.85pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;
text-decoration:underline;}
span.BodyTextIndentChar
{mso-style-name:"Body Text Indent Char";
mso-style-link:"Body Text Indent";
font-family:"Tahoma",sans-serif;}
p.Bullet4Italics, li.Bullet4Italics, div.Bullet4Italics
{mso-style-name:"Bullet 4 Italics";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:89.6pt;
text-indent:-17.9pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;
font-style:italic;}
span.Body2Char
{mso-style-name:"Body 2 Char";
font-family:"Tahoma",sans-serif;}
span.Body3Char
{mso-style-name:"Body 3 Char";
font-family:"Tahoma",sans-serif;}
span.Body4Char
{mso-style-name:"Body 4 Char";
font-family:"Tahoma",sans-serif;}
span.Body1Char
{mso-style-name:"Body 1 Char";
font-family:"Tahoma",sans-serif;}
p.PreambleBorderAbove, li.PreambleBorderAbove, div.PreambleBorderAbove
{mso-style-name:"Preamble Border Above";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:0in;
text-autospace:none;
border:none;
padding:0in;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;
font-weight:bold;}
span.FootnoteTextChar
{mso-style-name:"Footnote Text Char";
mso-style-link:"Footnote Text";
font-family:"Tahoma",sans-serif;}
span.EndnoteTextChar
{mso-style-name:"Endnote Text Char";
mso-style-link:"Endnote Text";
font-family:"Tahoma",sans-serif;}
span.CommentTextChar
{mso-style-name:"Comment Text Char";
mso-style-link:"Comment Text";
font-family:"Tahoma",sans-serif;}
p.Char, li.Char, div.Char
{mso-style-name:Char;
margin-top:0in;
margin-right:0in;
margin-bottom:8.0pt;
margin-left:0in;
line-height:12.0pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
p.CharCharCharChar, li.CharCharCharChar, div.CharCharCharChar
{mso-style-name:"Char Char Char Char";
margin-top:0in;
margin-right:0in;
margin-bottom:8.0pt;
margin-left:0in;
line-height:12.0pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
span.BalloonTextChar
{mso-style-name:"Balloon Text Char";
mso-style-link:"Balloon Text";
font-family:"Tahoma",sans-serif;}
span.Heading2Char1
{mso-style-name:"Heading 2 Char1";
font-family:"Trebuchet MS",sans-serif;
font-weight:bold;}
p.CharCharCharChar1, li.CharCharCharChar1, div.CharCharCharChar1
{mso-style-name:"Char Char Char Char1";
margin-top:0in;
margin-right:0in;
margin-bottom:8.0pt;
margin-left:0in;
line-height:12.0pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
p.Body0Bold, li.Body0Bold, div.Body0Bold
{mso-style-name:"Body 0 Bold";
mso-style-link:"Body 0 Bold Char";
margin:0in;
margin-bottom:.0001pt;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;
font-weight:bold;}
p.Body0, li.Body0, div.Body0
{mso-style-name:"Body 0";
margin:0in;
margin-bottom:.0001pt;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
span.HeaderChar
{mso-style-name:"Header Char";
mso-style-link:Header;
font-family:"Tahoma",sans-serif;}
span.FooterChar
{mso-style-name:"Footer Char";
mso-style-link:Footer;
font-family:"Tahoma",sans-serif;}
span.CommentSubjectChar
{mso-style-name:"Comment Subject Char";
mso-style-link:"Comment Subject";
font-family:"Tahoma",sans-serif;
font-weight:bold;}
span.Bullet3Char1
{mso-style-name:"Bullet 3 Char1";
mso-style-link:"Bullet 3";
font-family:"Tahoma",sans-serif;}
p.Bullet3Underlined, li.Bullet3Underlined, div.Bullet3Underlined
{mso-style-name:"Bullet 3 Underlined";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:71.7pt;
text-indent:-17.85pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;
text-decoration:underline;}
span.CharChar
{mso-style-name:"Char Char";
font-family:"Tahoma",sans-serif;}
p.AdditionalSoftware, li.AdditionalSoftware, div.AdditionalSoftware
{mso-style-name:AdditionalSoftware;
margin:0in;
margin-bottom:.0001pt;
line-height:12.0pt;
font-size:9.0pt;
font-family:"Trebuchet MS",sans-serif;}
span.CharChar1
{mso-style-name:"Char Char1";
font-family:"Trebuchet MS",sans-serif;
font-weight:bold;}
p.Bullet4Underlined, li.Bullet4Underlined, div.Bullet4Underlined
{mso-style-name:"Bullet 4 Underlined";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:89.6pt;
text-indent:-17.9pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;
text-decoration:underline;}
p.HeadingFrenchWarranty, li.HeadingFrenchWarranty, div.HeadingFrenchWarranty
{mso-style-name:"Heading French Warranty";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:.25in;
text-indent:-.25in;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
span.Body3CharCarCarCarCarCarCarCarCarCarCarCarCarCarCarCarCarCarCarCarCarCarCarCarCar
{mso-style-name:"Body 3 Char Car Car Car Car Car Car Car Car Car Car Car Car Car Car Car Car Car Car Car Car Car Car Car Car";
font-family:"Tahoma",sans-serif;}
span.tw4winExternal
{mso-style-name:tw4winExternal;
font-family:"Courier New";
color:gray;}
span.tw4winMark
{mso-style-name:tw4winMark;
font-family:"Courier New";
color:purple;
display:none;
vertical-align:sub;}
span.PreambleChar
{mso-style-name:"Preamble Char";
font-family:"Tahoma",sans-serif;
font-weight:bold;}
span.tw4winError
{mso-style-name:tw4winError;
font-family:"Courier New";
color:lime;}
span.tw4winTerm
{mso-style-name:tw4winTerm;
color:blue;}
span.tw4winPopup
{mso-style-name:tw4winPopup;
font-family:"Courier New";
color:green;}
span.tw4winJump
{mso-style-name:tw4winJump;
font-family:"Courier New";
color:teal;}
span.tw4winInternal
{mso-style-name:tw4winInternal;
font-family:"Courier New";
color:red;}
span.DONOTTRANSLATE
{mso-style-name:DO_NOT_TRANSLATE;
font-family:"Courier New";
color:maroon;}
span.BodyText2Char
{mso-style-name:"Body Text 2 Char";
mso-style-link:"Body Text 2";
font-family:"Tahoma",sans-serif;}
p.StyleHeading3BoldAsianTimesNewRoman95pt, li.StyleHeading3BoldAsianTimesNewRoman95pt, div.StyleHeading3BoldAsianTimesNewRoman95pt
{mso-style-name:"Style Heading 3 Bold + \(Asian\) Times New Roman 9\.5 pt";
mso-style-link:"Style Heading 3 Bold + \(Asian\) Times New Roman 9\.5 pt Char";
margin-top:6.0pt;
margin-right:0in;
margin-bottom:6.0pt;
margin-left:53.85pt;
text-indent:-17.85pt;
text-autospace:none;
font-size:9.5pt;
font-family:"Tahoma",sans-serif;}
span.Heading3BoldChar
{mso-style-name:"Heading 3 Bold Char";
mso-style-link:"Heading 3 Bold";
font-family:"Tahoma",sans-serif;
font-weight:bold;}
span.StyleHeading3BoldAsianTimesNewRoman95ptChar
{mso-style-name:"Style Heading 3 Bold + \(Asian\) Times New Roman 9\.5 pt Char";
mso-style-link:"Style Heading 3 Bold + \(Asian\) Times New Roman 9\.5 pt";
font-family:"Tahoma",sans-serif;
font-weight:normal;}
span.Body0BoldChar
{mso-style-name:"Body 0 Bold Char";
mso-style-link:"Body 0 Bold";
font-family:"Tahoma",sans-serif;
font-weight:bold;}
p.LIMPAT4WINEXTERNAL, li.LIMPAT4WINEXTERNAL, div.LIMPAT4WINEXTERNAL
{mso-style-name:LIMPA_T4WINEXTERNAL;
mso-style-link:"LIMPA_T4WINEXTERNAL Char";
margin:0in;
margin-bottom:.0001pt;
text-autospace:none;
font-size:10.0pt;
font-family:"Tahoma",sans-serif;
font-weight:bold;
vertical-align:super;}
span.LIMPAT4WINEXTERNALChar
{mso-style-name:"LIMPA_T4WINEXTERNAL Char";
mso-style-link:LIMPA_T4WINEXTERNAL;
font-family:"Tahoma",sans-serif;
font-weight:bold;
vertical-align:super;}
.MsoPapDefault
{margin-bottom:10.0pt;
line-height:115%;}
/* Page Definitions */
@page WordSection1
{size:8.5in 11.0in;
margin:.5in .5in .5in .5in;}
div.WordSection1
{page:WordSection1;}
/* List Definitions */
ol
{margin-bottom:0in;}
ul
{margin-bottom:0in;}
-->
</style>
<script>var w=window;if(w.performance||w.mozPerformance||w.msPerformance||w.webkitPerformance){var d=document;AKSB=w.AKSB||{},AKSB.q=AKSB.q||[],AKSB.mark=AKSB.mark||function(e,_){AKSB.q.push(["mark",e,_||(new Date).getTime()])},AKSB.measure=AKSB.measure||function(e,_,t){AKSB.q.push(["measure",e,_,t||(new Date).getTime()])},AKSB.done=AKSB.done||function(e){AKSB.q.push(["done",e])},AKSB.mark("firstbyte",(new Date).getTime()),AKSB.prof={custid:"331274",ustr:"",originlat:"0",clientrtt:"8",ghostip:"104.96.91.92",ipv6:false,pct:"10",clientip:"194.88.44.97",requestid:"14675498",region:"25187",protocol:"",blver:13,akM:"dspb",akN:"ae",akTT:"O",akTX:"1",akTI:"14675498",ai:"205055",ra:"false",pmgn:"",pmgi:"",pmp:"",qc:""},function(e){var _=d.createElement("script");_.async="async",_.src=e;var t=d.getElementsByTagName("script"),t=t[t.length-1];t.parentNode.insertBefore(_,t)}(("https:"===d.location.protocol?"https:":"http:")+"//ds-aksb-a.akamaihd.net/aksb.min.js")}</script>
</head>
<body lang=EN-US link=blue vlink=purple>
<div class=WordSection1>
<p class=HeadingEULA><span style='font-size:12.0pt'>MICROSOFT SOFTWARE LICENSE
TERMS</span></p>
<div style='border:none;border-bottom:solid windowtext 1.0pt;padding:0in 0in 1.0pt 0in'>
<p class=HeadingSoftwareTitle><span style='font-size:12.0pt'>MICROSOFT .NET
LIBRARY </span></p>
</div>
<p class=Preamble>These license terms are an agreement between Microsoft
Corporation (or based on where you live, one of its affiliates) and you. Please
read them. They apply to the software named above, which includes the media on
which you received it, if any. The terms also apply to any Microsoft</p>
<p class=Bullet2><span style='font-family:Symbol'><span style='font:7.0pt "Times New Roman"'>
</span></span>updates,</p>
<p class=Bullet2><span style='font-family:Symbol'><span style='font:7.0pt "Times New Roman"'>
</span></span>supplements,</p>
<p class=Bullet2><span style='font-family:Symbol'><span style='font:7.0pt "Times New Roman"'>
</span></span>Internet-based services, and</p>
<p class=Bullet2><span style='font-family:Symbol'><span style='font:7.0pt "Times New Roman"'>
</span></span>support services</p>
<p class=Preamble>for this software, unless other terms accompany those items.
If so, those terms apply.</p>
<p class=Preamble>BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT
ACCEPT THEM, DO NOT USE THE SOFTWARE.</p>
<div style='border:none;border-top:solid windowtext 1.0pt;padding:1.0pt 0in 0in 0in'>
<p class=PreambleBorderAbove>IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE
THE PERPETUAL RIGHTS BELOW.</p>
</div>
<h1><span style='font-size:10.0pt'>1.<span style='font:7.0pt "Times New Roman"'>
</span></span>INSTALLATION AND USE RIGHTS. </h1>
<h2><span class=Body2Char><span style='font-size:10.0pt'>a.<span
style='font:7.0pt "Times New Roman"'> </span></span></span>Installation
and Use.<span class=Body2Char><span style='font-size:10.0pt;font-weight:normal'>
You may install and use any number of copies of the software to design, develop
and test your programs. You may modify, copy, distribute or deploy any .js
files contained in the software as part of your programs.</span></span></h2>
<h2><span style='font-size:10.0pt'>b.<span style='font:7.0pt "Times New Roman"'>
</span></span>Third Party Programs.<span class=Body2Char><span
style='font-size:10.0pt;font-weight:normal'> The software may include third
party programs that Microsoft, not the third party, licenses to you under this
agreement. Notices, if any, for the third party program are included for your
information only.</span></span></h2>
<h1 style='text-autospace:ideograph-numeric ideograph-other'><span
style='font-size:10.0pt'>2.<span style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:10.0pt'>ADDITIONAL LICENSING REQUIREMENTS
AND/OR USE RIGHTS.</span></h1>
<h2><span style='font-size:10.0pt'>a.<span style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:10.0pt'>DISTRIBUTABLE CODE. </span><span
style='font-size:10.0pt;font-weight:normal'>In addition to the .js files
described above,</span><span style='font-size:10.0pt'> </span><span
style='font-size:10.0pt;font-weight:normal'>the software is comprised of
Distributable Code. Distributable Code is code that you are permitted to
distribute in programs you develop if you comply with the terms below.</span></h2>
<h3><b><span style='font-size:10.0pt'>i.<span style='font:7.0pt "Times New Roman"'>
</span></span></b><b><span style='font-size:10.0pt'>Right to Use and
Distribute. </span></b></h3>
<p class=Bullet3><span style='font-size:10.0pt;font-family:Symbol'><span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:10.0pt'>You may copy and distribute the
object code form of the software.</span></p>
<p class=Bullet3><span style='font-size:10.0pt;font-family:Symbol'><span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:10.0pt'>Third Party Distribution. You may
permit distributors of your programs to copy and distribute the Distributable
Code as part of those programs.</span></p>
<h3><b><span style='font-size:10.0pt'>ii.<span style='font:7.0pt "Times New Roman"'>
</span></span></b><b><span style='font-size:10.0pt'>Distribution Requirements.</span></b><span
style='font-size:10.0pt'> <b>For any Distributable Code you distribute, you
must</b></span></h3>
<p class=Bullet3><span style='font-size:10.0pt;font-family:Symbol'><span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:10.0pt'>use the Distributable Code in your
programs and not as a standalone distribution;</span></p>
<p class=Bullet3><span style='font-size:10.0pt;font-family:Symbol'><span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:10.0pt'>require distributors and external
end users to agree to terms that protect it at least as much as this agreement;</span></p>
<p class=Bullet3><span style='font-size:10.0pt;font-family:Symbol'><span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:10.0pt'>display your valid copyright
notice on your programs; and</span></p>
<p class=Bullet3><span style='font-size:10.0pt;font-family:Symbol'><span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:10.0pt'>indemnify, defend, and hold
harmless Microsoft from any claims, including attorneys fees, related to the
distribution or use of your programs.</span></p>
<h3><b><span style='font-size:10.0pt'>iii.<span style='font:7.0pt "Times New Roman"'>
</span></span></b><b><span style='font-size:10.0pt'>Distribution Restrictions.</span></b><span
style='font-size:10.0pt'> <b>You may not</b></span></h3>
<p class=Bullet3><span style='font-size:10.0pt;font-family:Symbol'><span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:10.0pt'>alter any copyright, trademark or
patent notice in the Distributable Code;</span></p>
<p class=Bullet3><span style='font-size:10.0pt;font-family:Symbol'><span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:10.0pt'>use Microsofts trademarks in your
programs names or in a way that suggests your programs come from or are
endorsed by Microsoft;</span></p>
<p class=Bullet3><span style='font-size:10.0pt;font-family:Symbol'><span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:10.0pt'>include Distributable Code in
malicious, deceptive or unlawful programs; or</span></p>
<p class=Bullet3><span style='font-size:10.0pt;font-family:Symbol'><span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:10.0pt'>modify or distribute the source
code of any Distributable Code so that any part of it becomes subject to an
Excluded License. An Excluded License is one that requires, as a condition of
use, modification or distribution, that</span></p>
<p class=Bullet4><span style='font-size:10.0pt;font-family:Symbol;color:black'><span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:10.0pt'>the code be disclosed or
distributed in source code form; or</span></p>
<p class=Bullet4><span style='font-size:10.0pt;font-family:Symbol;color:black'><span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:10.0pt'>others have the right to modify
it.</span></p>
<h1><span style='font-size:10.0pt'>3.<span style='font:7.0pt "Times New Roman"'>
</span></span>SCOPE OF LICENSE. <span style='font-weight:normal'>The software
is licensed, not sold. This agreement only gives you some rights to use the
software. Microsoft reserves all other rights. Unless applicable law gives you
more rights despite this limitation, you may use the software only as expressly
permitted in this agreement. In doing so, you must comply with any technical
limitations in the software that only allow you to use it in certain ways. You
may not</span></h1>
<p class=Bullet2><span style='font-family:Symbol'><span style='font:7.0pt "Times New Roman"'>
</span></span>work around any technical limitations in the software;</p>
<p class=Bullet2><span style='font-family:Symbol'><span style='font:7.0pt "Times New Roman"'>
</span></span>reverse engineer, decompile or disassemble the software, except
and only to the extent that applicable law expressly permits, despite this
limitation;</p>
<p class=Bullet2><span style='font-family:Symbol'><span style='font:7.0pt "Times New Roman"'>
</span></span>publish the software for others to copy;</p>
<p class=Bullet2><span style='font-family:Symbol'><span style='font:7.0pt "Times New Roman"'>
</span></span>rent, lease or lend the software; or</p>
<p class=Bullet2><span style='font-family:Symbol'><span style='font:7.0pt "Times New Roman"'>
</span></span>transfer the software or this agreement to any third party.</p>
<h1><span style='font-size:10.0pt'>4.<span style='font:7.0pt "Times New Roman"'>
</span></span>BACKUP COPY. <span style='font-weight:normal'>You may make one
backup copy of the software. You may use it only to reinstall the software.</span></h1>
<h1><span style='font-size:10.0pt'>5.<span style='font:7.0pt "Times New Roman"'>
</span></span>DOCUMENTATION. <span style='font-weight:normal'>Any person that
has valid access to your computer or internal network may copy and use the
documentation for your internal, reference purposes.</span></h1>
<h1><span class=MsoHyperlink><span style='font-size:10.0pt;font-family:"Tahoma",sans-serif;
color:windowtext;text-decoration:none'>6.<span style='font:7.0pt "Times New Roman"'>
</span></span></span>EXPORT RESTRICTIONS. <span style='font-weight:normal'>The
software is subject to United States export laws and regulations. You must
comply with all domestic and international export laws and regulations that
apply to the software. These laws include restrictions on destinations, end
users and end use. For additional information, see </span><span
class=MsoHyperlink><span style='font-size:10.0pt;font-family:"Tahoma",sans-serif;
color:windowtext;font-weight:normal;text-decoration:none'>www.microsoft.com/exporting</span></span><span
style='font-weight:normal'>.</span></h1>
<h1><span style='font-size:10.0pt'>7.<span style='font:7.0pt "Times New Roman"'>
</span></span>SUPPORT SERVICES. <span style='font-weight:normal'>Because this
software is as is, we may not provide support services for it.</span></h1>
<h1><span style='font-size:10.0pt'>8.<span style='font:7.0pt "Times New Roman"'>
</span></span>ENTIRE AGREEMENT. <span style='font-weight:normal'>This
agreement, and the terms for supplements, updates, Internet-based services and
support services that you use, are the entire agreement for the software and
support services.</span></h1>
<h1><span style='font-size:10.0pt'>9.<span style='font:7.0pt "Times New Roman"'>
</span></span>APPLICABLE LAW.</h1>
<h2><span style='font-size:10.0pt'>a.<span style='font:7.0pt "Times New Roman"'>
</span></span>United States. <span style='font-weight:normal'>If you acquired
the software in the United States, Washington state law governs the
interpretation of this agreement and applies to claims for breach of it,
regardless of conflict of laws principles. The laws of the state where you live
govern all other claims, including claims under state consumer protection laws,
unfair competition laws, and in tort.</span></h2>
<h2><span style='font-size:10.0pt'>b.<span style='font:7.0pt "Times New Roman"'>
</span></span>Outside the United States. If you acquired the software in any
other country, the laws of that country apply.</h2>
<h1><span style='font-size:10.0pt'>10.<span style='font:7.0pt "Times New Roman"'>
</span></span>LEGAL EFFECT. <span style='font-weight:normal'>This agreement
describes certain legal rights. You may have other rights under the laws of
your country. You may also have rights with respect to the party from whom you
acquired the software. This agreement does not change your rights under the
laws of your country if the laws of your country do not permit it to do so.</span></h1>
<h1><span style='font-size:10.0pt'>11.<span style='font:7.0pt "Times New Roman"'>
</span></span>DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED AS-IS. YOU
BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR
CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS OR STATUTORY GUARANTEES
UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT
PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.</h1>
<p class=Body1><b>FOR AUSTRALIA YOU HAVE STATUTORY GUARANTEES UNDER THE
AUSTRALIAN CONSUMER LAW AND NOTHING IN THESE TERMS IS INTENDED TO AFFECT THOSE
RIGHTS.</b></p>
<h1><span style='font-size:10.0pt'>12.<span style='font:7.0pt "Times New Roman"'>
</span></span>LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN
RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00.
YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS,
SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.</h1>
<p class=Body1>This limitation applies to</p>
<p class=Bullet2><span style='font-family:Symbol'><span style='font:7.0pt "Times New Roman"'>
</span></span>anything related to the software, services, content (including
code) on third party Internet sites, or third party programs; and</p>
<p class=Bullet2><span style='font-family:Symbol'><span style='font:7.0pt "Times New Roman"'>
</span></span>claims for breach of contract, breach of warranty, guarantee or
condition, strict liability, negligence, or other tort to the extent permitted
by applicable law.</p>
<p class=MsoNormal>It also applies even if Microsoft knew or should have known
about the possibility of the damages. The above limitation or exclusion may not
apply to you because your country may not allow the exclusion or limitation of
incidental, consequential or other damages.</p>
<p class=MsoNormal><span lang=EN>Please note: As this software is distributed
in Quebec, Canada, some of the clauses in this agreement are provided below in
French.</span></p>
<p class=MsoNormal><span lang=EN>Remarque : Ce logiciel tant distribu au
Qubec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous
en franais.</span></p>
<h1 style='margin-left:0in;text-indent:0in'>EXONRATION DE GARANTIE. <span
style='font-weight:normal'>Le logiciel vis par une licence est offert tel quel
. Toute utilisation de ce logiciel est votre seule risque et pril.
Microsoft naccorde aucune autre garantie expresse. Vous pouvez bnficier de
droits additionnels en vertu du droit local sur la protection des
consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par
le droit locale, les garanties implicites de qualit marchande, dadquation
un usage particulier et dabsence de contrefaon sont exclues.</span></h1>
<h1 style='margin-left:0in;text-indent:0in'>LIMITATION DES DOMMAGES-INTRTS ET
EXCLUSION DE RESPONSABILIT POUR LES DOMMAGES. <span style='font-weight:normal'>Vous
pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de
dommages directs uniquement hauteur de 5,00 $ US. Vous ne pouvez prtendre
aucune indemnisation pour les autres dommages, y compris les dommages spciaux,
indirects ou accessoires et pertes de bnfices.</span></h1>
<p class=MsoNormal><span lang=EN>Cette limitation concerne :</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:0in'><span lang=EN
style='font-family:Symbol'><span style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN>tout ce qui est reli au logiciel, aux services ou
au contenu (y compris le code) figurant sur des sites Internet tiers ou dans
des programmes tiers ; et</span></p>
<p class=MsoListParagraphCxSpLast style='text-indent:0in'><span lang=EN
style='font-family:Symbol'><span style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN>les rclamations au titre de violation de contrat
ou de garantie, ou au titre de responsabilit stricte, de ngligence ou dune
autre faute dans la limite autorise par la loi en vigueur.</span></p>
<p class=MsoNormal><span lang=EN>Elle sapplique galement, mme si Microsoft
connaissait ou devrait connatre lventualit dun tel dommage. Si votre pays
nautorise pas lexclusion ou la limitation de responsabilit pour les dommages
indirects, accessoires ou de quelque nature que ce soit, il se peut que la
limitation ou lexclusion ci-dessus ne sappliquera pas votre gard.</span></p>
<h1 style='margin-left:0in;text-indent:0in'>EFFET JURIDIQUE. <span
style='font-weight:normal'>Le prsent contrat dcrit certains droits
juridiques. Vous pourriez avoir dautres droits prvus par les lois de votre
pays. Le prsent contrat ne modifie pas les droits que vous confrent les lois
de votre pays si celles-ci ne le permettent pas.</span></h1>
<p class=Body0Bold style='margin-top:6.0pt;margin-right:0in;margin-bottom:6.0pt;
margin-left:0in'><span lang=FR style='font-size:10.0pt'> </span></p>
</div>
</body>
</html>