-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
549 lines (509 loc) · 22.4 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<link rel='stylesheet' href='Styles/style.css' />
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<!-- <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script> -->
<script src="Scripts/papaparse.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/luxon@2.0.2/build/global/luxon.min.js"></script>
</head>
<body>
<div id="app">
<div class=title-container>
<h1 class="title">Taxing 212</h1>
<h5 class="subtitle">A UK capital gains tax calculator for Trading 212</h5>
<div class="back-button button" v-if="calculated" title="Back to File and Tax Year Selection" v-on:click="back()">
Back</div>
</div>
<div style="height:100px"></div>
<div class="g2" v-if="!calculated">
<div class="c1">
<div style="margin:0 40px">
<div class="instruction">
<h3 class="summary-box-title">Step 1</h3>
<p>Load your T212 trade history CSV files. Full history is required to
calculate Section 104 Holdings prices. If history is spread across multiple files please ensure there are
no
overlaps.</p>
<div v-if="fileList.length > 0" class="files">
<strong>Files Loaded:</strong>
<template v-for="i in fileList">
<p>{{fileList[0]}}</p>
</template>
</div>
<div class="centre">
<input id="fileButton" style="display:none" type="file" ref="csvFile" @change="addFile"></input><br>
<div class="button" onclick="document.getElementById('fileButton').click();" />Add CSV File
</div>
<div class="button" v-on:click="clearFiles()">Clear Files</div>
</div>
<p>Note: If you have made changes to a csv file it must be removed and re-added.</p>
</div>
<div class="instruction">
<h3 class="summary-box-title">Step 2</h3>
<p>Select Tax Year to report on</p>
<div class="centre">
<div class="fy-select">{{fyText}}</div>
<div class="button" v-on:click="taxYear.target -= 1">-</div>
<div class="button" v-on:click="taxYear.target += 1">+</div>
</div>
</div>
<div class="instruction">
<h3 class="summary-box-title">Step 3</h3>
<div class="centre">
<input type="checkbox" name="" id=""> I have read and accept the disclaimer </input>
<div class="button" v-on:click="calculate()">Calculate</div>
</div>
</div>
</div>
</div>
<div class="c2">
<div class="instruction">
<h3 class="summary-box-title">How it works</h3>
Reads in account history CSV files in the format provided by Trading 212 and provides data useful for filling in
a
self assessment tax return.
<h4 class="summary-box-subheading">Capital Gains Calculations</h4>
<p>1. Groups multiple purchases or disposals on the same day into single transactions in accordance with the <a
href="https://www.gov.uk/hmrc-internal-manuals/capital-gains-manual/cg51560#IDATX33F">same day rule</a>.</p>
<p>2. Identifies same day disposals and calculates gains in accordance with the <a
href="https://www.gov.uk/hmrc-internal-manuals/capital-gains-manual/cg51560#IDATX33F">same day rule</a>.</p>
<p>3. Identifies purchases within 30 days of a disposal of the same asset in accordance with the <a
href="https://www.gov.uk/hmrc-internal-manuals/capital-gains-manual/cg51560#IDATR33F">"bed and breakfast
rule"</a>.</p>
<p>4. Remaining purchases are appointed to a Section 104 holding, and gains calculated in accordance with <a
href="https://www.gov.uk/hmrc-internal-manuals/capital-gains-manual/cg51575"></a>.</p>
<p>5. Shows trades and fully a commented calculation ledger for each holding.</p>
<p>6. Generates a round trips report for the tax year, noting the tax scheme applied to each round trip.</p>
<p>7. Generates a tax year summary with data required for Self Assessment Tax form.</p>
<h4 class="summary-box-subheading">Dividends</h4>
<p>Splits dividends into UK Companies, UK Other and Non-UK, sums taxes paid on non-UK dividends and provides a
tax year summary.</p>
<h4 class="summary-box-subheading">Privacy</h4>
<p>All calculations are done locally in your browser, no data is uploaded to a server, no cookies are used and
there are no analytics running.</p>
<p>All code is open source on <a href="https://github.com/GryphonR/taxing212">github</a> for verifying the above statement.</p>
<h4 id="disclaimer" class="summary-box-subheading">Disclaimer</h4>
<p>These calculations may only be used for tax purposes after they has been checked for accuracy and
completeness by yourself or your tax advisor.</p>
<p>THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.</p>
</div>
</div>
</div>
<div v-if="calculated">
<h2 class="centre">Calculations for {{fyText}}</h2>
<h4 class="centre">These calculations may be used for tax purposes after they has been checked for accuracy and
completeness by yourself or
your tax advisor.</h4>
<div class="error-container" v-if="errorList.length > 0">
<h2 class="summary-box-title">Errors Detected</h2>
<p>Errors were found during calculations - normally caused by missing data, stock splits or ticker changes
(i.e. SPACs). Fix or understand these before
proceeding.</p>
<p>It is best to change the raw CSV data for the purchase event in to match the disposal event data, then go
back, clear and re-load CSV files.</p>
<template v-for="error in errorList">
<div class="error">
{{error.msg}}
<span v-if="Number(error.linkedUid)">(GoTo:<span v-html="getIdLink(error.linkedUid)"></span>)</span>
</div>
</template>
</div>
<div class="summary-master-container">
<div class="summary-container g2">
<h2 class="summary-box-title"> Tax Year {{fyText}} Summary </h2>
<div class="summary-item c1">
Disposal Count:
</div>
<div class="summary-item c2">
{{taxYearData.disposals}}
</div>
<div class="summary-item c1">
Disposal Proceeds:
</div>
<div class="summary-item c2">
£{{taxYearData.proceeds.toFixed(2)}}
</div>
<div class="summary-item c1">
Total acquisition costs:
</div>
<div class="summary-item c2">
£{{taxYearData.costs.toFixed(2)}}
</div>
<div class="summary-item c1">
Total Realised Profit:
</div>
<div class="summary-item c2">
£{{taxYearData.realisedProfit.toFixed(2)}}
</div>
<div class="summary-item c1">
Total Realised Loss:
</div>
<div class="summary-item c2">
£{{taxYearData.realisedLoss.toFixed(2)}}
</div>
<div class="summary-item c1">
Combined P/L:
</div>
<div class="summary-item c2">
£{{(taxYearData.realisedProfit - taxYearData.realisedLoss).toFixed(2)}}
</div>
<div class="summary-item c1">
Dividends Received:
</div>
<div class="summary-item c2">
£{{taxYearData.dividends.toFixed(2)}}
</div>
</div>
<div class="summary-container g2">
<h2 class="summary-box-title"> All Data Summary: </h2>
<div class="summary-item c1">
Disposal Count:
</div>
<div class="summary-item c2">
{{disposalCount}}
</div>
<div class="summary-item c1">
Total Realised Profit:
</div>
<div class="summary-item c2">
£{{realisedProfit.toFixed(2)}}
</div>
<div class="summary-item c1">
Total Realised Loss:
</div>
<div class="summary-item c2">
£{{realisedLoss.toFixed(2)}}
</div>
<div class="summary-item c1">
Combined P/L:
</div>
<div class="summary-item c2">
£{{(realisedProfit - realisedLoss).toFixed(2)}}
</div>
<div class="summary-item c1">
Dividends Received:
</div>
<div class="summary-item c2">
£{{dividendsTotal.toFixed(2)}}
</div>
</div>
<div v-if="deposits.length" class="summary-container g2">
<h2 class="summary-box-title"> Deposits </h2>
<template v-for="dep in deposits">
<div class="summary-item c1">
{{getDmyString(dep.timestamp)}}
</div>
<div class="summary-item c2">
£{{dep.value}}
</div>
</template>
</div>
<div f-if="withdrawals.length" class="summary-container g2">
<h2 class="summary-box-title"> Withdrawals </h2>
<template v-for="itm in withdrawals">
<div class="summary-item c1">
{{getDmyString(itm.timestamp)}}
</div>
<div class="summary-item c2">
£{{itm.value}}
</div>
</template>
</div>
</div>
<div class="round-trip-master-container">
<h2 class="summary-box-title">{{fyText}} Round Trips</h2>
<h2 class="centre" style="margin:20px auto;" v-if="!taxYearData.roundTrips.length">No Round Trips Found</h2>
<div v-if="taxYearData.roundTrips.length" class="round-trip-container">
<h5 class="ledger-entry c1">Date Sold</h5>
<h5 class="ledger-entry c2">Date Aquired</h5>
<h5 class="ledger-entry c3">Asset</h5>
<h5 class="ledger-entry c4">Amount</h5>
<h5 class="ledger-entry c5">Cost £</h5>
<h5 class="ledger-entry c6">Proceeds £</h5>
<h5 class="ledger-entry c7">P/L £</h5>
<h5 class="ledger-entry c8">Notes</h5>
<template v-for="t in taxYearData.roundTrips">
<div class="trade-row">
<span :class="getTradeClass(t.gainLoss)" class="ledger-entry c1">{{t.dateSold}}</span>
<span :class="getTradeClass(t.gainLoss)" class="ledger-entry c2">{{t.dateBought}}</span>
<span :title="t.name" :class="getTradeClass(t.gainLoss)" class="ledger-entry c3">{{t.asset}}</span>
<span :class="getTradeClass(t.gainLoss)" class="ledger-entry c4">{{t.amount.toFixed(2)}}</span>
<span :class="getTradeClass(t.gainLoss)" class="ledger-entry c5">{{t.cost}}</span>
<span :class="getTradeClass(t.gainLoss)" class="ledger-entry c6">{{t.proceeds}}</span>
<span :class="getTradeClass(t.gainLoss)" class="ledger-entry c7">{{t.gainLoss}}</span>
<span :class="getTradeClass(t.gainLoss)" class="ledger-entry c8">{{t.note}}</span>
</div>
</template>
<div class="download-button" v-on:click="downloadRoundTrips()">Download RoundTrip CSV</div>
</div>
</div>
<!-- <div v-if="dividends.length" class="summary-master-container"> -->
<div v-if="dividends.length" class="dividends-container">
<h2 class="summary-box-title"> Dividends </h2>
<h4 class="summary-box-subheading">Tax Year Dividends Summary</h4>
<h5 class="c2">
Uk Companies Total
</h5>
<h5 class="c3">
Uk Other (Funds/Trusts) Total
</h5>
<h5 class="c4">
Foreign Total
</h5>
<h5 class="c5">
Foreign Taxes Paid
</h5>
<div class="c2">
£{{divTyUkC}}
</div>
<div class="c3">
£{{divTyUkO}}
</div>
<div class="c4">
£{{dividendDetails.nonUk.toFixed(2)}}
</div>
<div class="c5">
£{{dividendDetails.taxPaid.toFixed(2)}}
</div>
<h4 class="summary-box-subheading">Uk Company Dividends</h4>
<h5 class="c2">
Date Received
</h5>
<h5 class="c3">
Name
</h5>
<h5 class="c4">
Value
</h5>
<h5 title="Is the dividend from a UK company or is it from a UK Trust/Fund/Other" class="c5">
UK Company?
</h5>
<template v-for="itm in dividends">
<!-- <div v-if="itm.isUk && itm.ukCompany"> -->
<div v-if="itm.isUk && itm.ukCompany" class="summary-item c2">
{{getDmyString(itm.timestamp)}} <span v-if="itm.inTaxYear">*</span>
</div>
<div v-if="itm.isUk && itm.ukCompany" class="summary-item c3">
{{itm.name}}({{itm.ticker}})
</div>
<div v-if="itm.isUk && itm.ukCompany" class="summary-item c4">
£{{itm.value}}
</div>
<div v-if="itm.isUk && itm.ukCompany" class="summary-item c5">
<input type="checkbox" id="checkbox" v-model="itm.ukCompany">
</div>
<!-- </div> -->
</template>
<h4 class="summary-box-subheading">Other UK Dividends</h4>
<h5 class="c2">
Date Received
</h5>
<h5 class="c3">
Name
</h5>
<h5 class="c4">
Value
</h5>
<h5 title="Is the dividend from a UK company or is it from a UK Trust/Fund/Other" class="c5">
UK Company?
</h5>
<template v-for="itm in dividends">
<div v-if="itm.isUk && !itm.ukCompany" class="summary-item c2">
{{getDmyString(itm.timestamp)}} <span v-if="itm.inTaxYear">*</span>
</div>
<div v-if="itm.isUk && !itm.ukCompany" class="summary-item c3">
{{itm.name}}({{itm.ticker}})
</div>
<div v-if="itm.isUk && !itm.ukCompany" class="summary-item c4">
£{{itm.value}}
</div>
<div v-if="itm.isUk && !itm.ukCompany" class="summary-item c5">
<input type="checkbox" id="checkbox" v-model="itm.ukCompany">
</div>
</template>
<h4 class="summary-box-subheading">Non-UK Dividends</h4>
<h5 class="c2">
Date Received
</h5>
<h5 class="c3">
Name
</h5>
<h5 class="c4">
Value
</h5>
<h5 class="c5">
Tax Paid
</h5>
<template v-for="itm in dividends">
<div v-if="!itm.isUk" class="summary-item c2">
{{getDmyString(itm.timestamp)}} <span v-if="itm.inTaxYear">*</span>
</div>
<div v-if="!itm.isUk" class="summary-item c3">
{{itm.name}}({{itm.ticker}})
</div>
<div v-if="!itm.isUk" class="summary-item c4">
£{{itm.value}}
</div>
<div v-if="!itm.isUk"
:title="`Paid ${itm.taxPaid}${itm.taxCurrency} @ ${itm.exchangeRate.toFixed(2)}${itm.taxCurrency}/GBP`"
class="summary-item c5">
£{{itm.taxPaidGBP.toFixed(2)}}
</div>
</template>
<div class="c2" style="font-size:0.6em; margin-top:10px">* in Tax Year {{fyText}}</div>
</div>
<!-- </div> -->
<div style="height: 100px"></div>
<div class="holdings-master-container">
<h2 class="section-title">All Holdings</h2>
<div class="all-holdings-button" v-on:click="uiAllHoldings(1)">Expand All Holdings</div>
<div class="all-holdings-button" v-on:click="uiAllHoldings(0)">Collapse All Holdings</div>
<template v-for="inst in holdings">
<div class="holding">
<div :title="`ISIN: ${inst.isin}`" class="holding-title"><strong>{{inst.name}} ({{inst.ticker}})</strong>
</div>
<!-- Collapsed Holding Summary -->
<div v-show="!inst.uiExpand" class="collapsed-holding-summary">
<div class="r1 c1">Total Realised Profit </div>
<div class="r1 c2">{{fyText}} Realised Profit
</div>
<div class="r1 c3"> Trades </div>
<div class="r1 c4"> Open Position</div>
<div class="r2 c1">£{{inst.realisedPl.toFixed(2)}} </div>
<div class="r2 c2">£{{(inst.tyData.realisedProfit - inst.tyData.realisedLoss).toFixed(2)}}
</div>
<div class="r2 c3"> {{inst.tradeCount}} </div>
<div class="r2 c4"> {{inst.holdings.toFixed(2)}}</div>
</div>
<div v-show="inst.uiExpand" class="g5">
<h4 class="summary-box-subheading">All Data Summary</h4>
<h5 class="c1">
Open Position
</h5>
<h5 class="c2">
Trade Count
</h5>
<h5 class="c3">
Total Gain GBP
</h5>
<div class="c1">
{{inst.holdings.toFixed(2)}}
</div>
<div class="c2">
{{inst.tradeCount}}
</div>
<div class="c3">
{{inst.realisedPl.toFixed(2)}}
</div>
<h4 class="summary-box-subheading">Tax Year Summary</h4>
<h5 class="c1">
Disposal Count
</h5>
<h5 class="c2">
Realised Profit GBP
</h5>
<h5 class="c3">
Realised Loss GBP
</h5>
<h5 class="c4">
Overall Gain GBP
</h5>
<div class="c1">
{{inst.tyData.disposalCount}}
</div>
<div class="c2">
{{inst.tyData.realisedProfit.toFixed(2)}}
</div>
<div class="c3">
{{inst.tyData.realisedLoss.toFixed(2)}}
</div>
<div class="c4">
{{(inst.tyData.realisedProfit - inst.tyData.realisedLoss).toFixed(2)}}
</div>
</div>
<h4 v-show="inst.uiExpand" class="summary-box-subheading">Trade Log</h4>
<div v-show="inst.uiExpand" class="trade-container">
<h5 class="ledger-entry c1">ID</h5>
<h5 class="ledger-entry c2">Date</h5>
<h5 class="ledger-entry c3">Type</h5>
<h5 class="ledger-entry c4"># Shares</h5>
<h5 class="ledger-entry c5">Price GBP</h5>
<h5 class="ledger-entry c6">Total GBP</h5>
<template v-for="t,key in inst.trades">
<span v-bind:class="getTradeClass(t.rawType)" class="ledger-entry c1">{{t.uid}}</span>
<span v-bind:class="getTradeClass(t.rawType)" class="ledger-entry c2">{{getDmyString(t.timestamp)}}</span>
<span v-bind:class="getTradeClass(t.rawType)" class="ledger-entry c3">{{t.rawType}}</span>
<span v-bind:class="getTradeClass(t.rawType)" class="ledger-entry c4">{{t.number}}</span>
<span v-bind:class="getTradeClass(t.rawType)" class="ledger-entry c5">{{t.priceGBP.toFixed(2)}}</span>
<span v-bind:class="getTradeClass(t.rawType)" class="ledger-entry c6">{{t.total.toFixed(2)}}</span>
</template>
</div>
<h4 v-show="inst.uiExpand" class="summary-box-subheading">Calculation Ledger</h4>
<div v-show="inst.uiExpand" class="disposal-container">
<!-- Ledger Length: {{inst.ledger.length}} -->
<!-- titles -->
<!-- <div class="trade-row"> -->
<h5 class="ledger-entry ledger-uid">ID</h5>
<h5 class="ledger-entry ledger-date">Date</h5>
<h5 class="ledger-entry ledger-change">Change</h5>
<h5 class="ledger-entry ledger-price">Price £</h5>
<h5 class="ledger-entry ledger-gain">Gain £</h5>
<h5 class="ledger-entry ledger-loss">Loss £</h5>
<h5 class="ledger-entry ledger-s104t">S104 Holdings</h5>
<h5 class="ledger-entry ledger-s104p">S104 Price</h5>
<h5 class="ledger-entry ledger-comment">Comment</h5>
<!-- </div> -->
<template v-for="d in inst.ledger">
<!-- {{JSON.stringify(d)}} -->
<!-- <div v-bind:class="getTradeClass(d.change)" class="trade-row"> -->
<span v-bind:class="getTradeClass(d.change)" v-bind:id="d.uid"
class="ledger-entry ledger-uid">{{d.uid}}</span>
<span v-bind:class="getTradeClass(d.change)"
class="ledger-entry ledger-date">{{getDmyString(d.timestamp)}}</span>
<span v-bind:class="getTradeClass(d.change)"
class="ledger-entry ledger-change">{{d.change.toFixed(2)}}</span>
<span v-bind:class="getTradeClass(d.change)"
class="ledger-entry ledger-price">{{d.price.toFixed(2)}}</span>
<span v-bind:class="getTradeClass(d.change)" class="ledger-entry ledger-gain">{{d.gain.toFixed(2)}}</span>
<span v-bind:class="getTradeClass(d.change)" class="ledger-entry ledger-loss">{{d.loss.toFixed(2)}}</span>
<span v-bind:class="getTradeClass(d.change)"
class="ledger-entry ledger-s104t">{{d.s104Total.toFixed(2)}}</span>
<span v-bind:class="getTradeClass(d.change)"
class="ledger-entry ledger-s104p">{{d.s104Price.toFixed(2)}}</span>
<span v-bind:class="getTradeClass(d.change)" class="ledger-entry ledger-comment">
<template v-for="comm in d.comment">
<p>{{comm}}</p>
</template>
</span>
</template>
</div>
<div v-on:click="inst.uiExpand = !inst.uiExpand" class="holding-expand-button">
{{inst.uiExpand ? "Hide Details" : "Show Details"}}
</div>
</div>
</template>
</div>
</div>
<div style="height:100px"></div>
<div style="margin:0 40px">
<!-- <p>This tool is a work in progress and the results are assumed to be inaccurate.</p> -->
<p class="centre">THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.</p>
</div>
<script type='text/javascript' src="Scripts/script.js"></script>
</body>
</html>