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
|
{
"metadata": {
"name": ""
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Chapter - 3 : Special-Purpose Diode"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 3.1\n",
": Page No 179"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"from __future__ import division\n",
"# Given data\n",
"V1 = 18 # in V\n",
"V2 = 10 # in V\n",
"R = 270 # in ohm\n",
"I_S = (V1-V2)/R # in A\n",
"V_L = 10 # in V\n",
"R_L = 1 # in K ohm\n",
"R_L = R_L*1000 # in ohm\n",
"I_L = V_L/R_L # in A\n",
"I_Z = I_S-I_L # in A\n",
"print \"The zener current = %0.1f mA\" %(I_Z*10**3)"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"The zener current = 19.6 mA\n"
]
}
],
"prompt_number": 2
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 3.5\n",
": Page No 186"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"# Given data\n",
"I_Z = 2*10**-3 # in A\n",
"R_Z = 8.5 # in V\n",
"del_VL = I_Z*R_Z # in V\n",
"V1 = 10 # in V\n",
"print \"Change in load voltage = %0.2f V\" %del_VL\n",
"V_L = V1 + del_VL # in V\n",
"print \"The load voltage = %0.2f V\" %V_L\n",
"\n",
"# Note: There is calculation error to evaluate the value of del_VL. So the answer in the book is wrong."
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Change in load voltage = 0.02 V\n",
"The load voltage = 10.02 V\n"
]
}
],
"prompt_number": 3
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 3.6\n",
": Page No 194"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"# Given data\n",
"R_L = 1.2 # in K ohm\n",
"R_L = R_L * 10**3 # in ohm\n",
"V_i = 16 # in V\n",
"R_i = 1 # in K ohm\n",
"R_i = R_i * 10**3 # in ohm\n",
"V = (R_L * V_i)/(R_L + R_i) # in V\n",
"V_L = V # in V\n",
"print \"The load voltage = %0.2f V\" %V_L\n",
"V_R = V_i - V_L # in V\n",
"print \"The voltage = %0.2f V\" %V_R\n",
"I_Z = 0 # A\n",
"print \"The zener diode current = %0.f A\" %I_Z\n",
"V_Z = 10 # in V\n",
"P_Z = V_Z*I_Z # in W\n",
"print \"Power dissipation = %0.f watt\" %P_Z"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"The load voltage = 8.73 V\n",
"The voltage = 7.27 V\n",
"The zener diode current = 0 A\n",
"Power dissipation = 0 watt\n"
]
}
],
"prompt_number": 4
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 3.7\n",
": Page No 195"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"# Given data\n",
"I_Z1 = 20 # in mA\n",
"I_Z1= I_Z1*10**-3 # in A\n",
"I_Z2 = 30 # in mA\n",
"I_Z2= I_Z2*10**-3 # in A\n",
"V_Z1 = 5.6 # in V\n",
"V_Z2 = 5.75 # in V\n",
"del_IZ = I_Z2-I_Z1 # in A\n",
"del_VZ = V_Z2-V_Z1 # in V\n",
"r_Z = del_VZ/del_IZ # in ohm\n",
"print \"Resistance of zener diode = %0.f ohm\" %r_Z"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Resistance of zener diode = 15 ohm\n"
]
}
],
"prompt_number": 5
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 3.8\n",
": Page No 195"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"# Given data\n",
"R = 1 # in K ohm\n",
"R = R * 10**3 # in ohm\n",
"V_Z = 10 # in V\n",
"V_i = 50 # in V\n",
"I_ZM = 32 # in mA\n",
"I_ZM= I_ZM*10**-3 # in A\n",
"R_Lmin = (R*V_Z)/(V_i-V_Z) # in ohm\n",
"print \"The minimum value of R_L = %0.f ohm\" %R_Lmin\n",
"V_R = V_i-V_Z # in V\n",
"I_R = V_R/R # in A\n",
"I_Lmin = I_R-I_ZM # in A\n",
"print \"The minimum value of I_L = %0.f mA\" %(I_Lmin*10**3)\n",
"R_Lmax = V_Z/I_Lmin # in ohm\n",
"print \"The maximum value of R_L = %0.2f kohm\" %(R_Lmax*10**-3)"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"The minimum value of R_L = 250 ohm\n",
"The minimum value of I_L = 8 mA\n",
"The maximum value of R_L = 1.25 kohm\n"
]
}
],
"prompt_number": 7
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 3.9\n",
": Page No 196"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"# Given data\n",
"V_Z = 20 # in V\n",
"R_L = 1.2 # in K ohm\n",
"R_L = R_L * 10**3 # in ohm\n",
"R = 220 # in ohm\n",
"I_ZM = 60 # in mA\n",
"I_ZM= I_ZM*10**-3 # in A\n",
"Vi_min = (R_L + R)/R_L*V_Z # in V\n",
"print \"The minimum value of Vi = %0.2f V\" %Vi_min\n",
"V_L= V_Z # in V\n",
"I_L= V_L/R_L # in A\n",
"Vi_max= (I_ZM+I_L)*R+V_Z # in V\n",
"print \"The maximum value of Vi = %0.2f V\" %Vi_max"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"The minimum value of Vi = 23.67 V\n",
"The maximum value of Vi = 36.87 V\n"
]
}
],
"prompt_number": 8
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 3.10\n",
": Page No 197"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"# Given data\n",
"V1 = 18 # in V\n",
"V2 = 270 # in V\n",
"R = 1 # in K ohm\n",
"R = R*1000 # in ohm\n",
"V = (V1*R)/(V2+R) # in V\n",
"print \"The open circuit voltage = %0.1f volts\" %V\n",
"if V>=10 :\n",
" print \"The zener diode is operating in the breakdown region.\"\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"The open circuit voltage = 14.2 volts\n",
"The zener diode is operating in the breakdown region.\n"
]
}
],
"prompt_number": 11
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 3.11\n",
": Page No 198"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"# Given data\n",
"R_L = 300 # in ohm\n",
"R = 200 # in ohm\n",
"V_i = 20 # in V\n",
"V = (R_L/(R_L+R))*V_i # in V\n",
"print \"The value of V_L = %0.f Volts\" %V\n",
"V_L = 10 # in V\n",
"V_Z= V_L # in V\n",
"I_L = V_L/R_L # A\n",
"print \"The value of I_L = %0.2f mA\" %(I_L*10**3)\n",
"I_R = (V_i-V_L)/R # in A\n",
"print \"The value of I_R = %0.f mA\" %(I_R*10**3)\n",
"I_Z = I_R-I_L # in A\n",
"print \"The value of I_Z = %0.2f mA\" %(I_Z*10**3)\n",
"# Formula V_Z= R_L*V_i/(R_L+R)\n",
"R_L= R*V_Z/(V_i-V_Z) # in ohm\n",
"print \"The value of R_L = %0.f ohm\" %R_L"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"The value of V_L = 12 Volts\n",
"The value of I_L = 33.33 mA\n",
"The value of I_R = 50 mA\n",
"The value of I_Z = 16.67 mA\n",
"The value of R_L = 200 ohm\n"
]
}
],
"prompt_number": 13
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 3.12\n",
": Page No 199"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"# Given data\n",
"V_Z = 5 # in V\n",
"I_Zmin = 2 # in mA\n",
"I_Zmin= I_Zmin*10**-3 # in A\n",
"I_Zmax = 20 # in mA\n",
"I_Zmax=I_Zmax*10**-3 # in A\n",
"R_L = 1 # in kohm\n",
"R_L = R_L * 10**3 # in ohm\n",
"I_L = V_Z/R_L # in A\n",
"I = I_L + I_Zmin # in A\n",
"Vin_min = V_Z + (I*R_L) # in V\n",
"print \"The minimum input voltage = %0.f V\" %Vin_min\n",
"I = I_L + I_Zmax # in A\n",
"Vin_max = V_Z + I* R_L # in V\n",
"print \"The maximum input voltage = %0.f V\" %Vin_max"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"The minimum input voltage = 12 V\n",
"The maximum input voltage = 30 V\n"
]
}
],
"prompt_number": 14
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 3.13\n",
": Page No 200"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"# Given data\n",
"V_in1 = 18 # in V\n",
"V_in2 = 22 # in V\n",
"V_o = 6 # in V\n",
"I_L = 50 # in mA\n",
"I_L= I_L*10**-3 # in A\n",
"I_Zmin = 5 # in mA\n",
"I_Zmin= I_Zmin*10**-3 # in A\n",
"P_Z = 0.5 # in Watt\n",
"V_Z= 6 # in V\n",
"I_Zmax = P_Z/V_Z # in A\n",
"print \"Zener diode current = %0.2f mA\" %(I_Zmax*10**3)\n",
"R_S1 = (V_in2 - V_Z)/(I_L+I_Zmax) # in ohm\n",
"print \"The minimum value of Rs = %0.f ohm\" %R_S1\n",
"R_S2 = (V_in1-V_Z)/(I_L+I_Zmin) # in ohm\n",
"print \"The maximum value of Rs = %0.1f ohm\" %R_S2"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Zener diode current = 83.33 mA\n",
"The minimum value of Rs = 120 ohm\n",
"The maximum value of Rs = 218.2 ohm\n"
]
}
],
"prompt_number": 16
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 3.14\n",
": Page No 201"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"# Given data\n",
"R_S = 91 # in ohm\n",
"V_Z = 8 # in V\n",
"P_Z = 400 # in mW\n",
"P_Z= P_Z*10**-3 # in W\n",
"R_L = 0.22 # in K ohm\n",
"R_L = R_L * 10**3 # in ohm\n",
"I_L = V_Z/R_L # in A\n",
"I_Z = P_Z/V_Z # in A\n",
"print \"The value of I_Zmax = %0.f mA\" %(I_Z*10**3)\n",
"Vin_min = (V_Z*(R_S+R_L))/R_L # in V\n",
"print \"The minimum input voltage = %0.2f V\" %Vin_min\n",
"I_R = I_L + I_Z # in A\n",
"Vin_max = V_Z + (I_R*R_S) # in V\n",
"print \"The maximum input voltage =%0.2f V\" %Vin_max"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"The value of I_Zmax = 50 mA\n",
"The minimum input voltage = 11.31 V\n",
"The maximum input voltage =15.86 V\n"
]
}
],
"prompt_number": 19
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 3.15\n",
": Page No 202"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"# Given data\n",
"V_L = 12 # in V\n",
"I_Lmin = 0 # in mA\n",
"I_Lmin =I_Lmin *10**-3 # in A\n",
"I_Lmax = 200 # in mA\n",
"I_Lmax =I_Lmax *10**-3 # in A\n",
"I_Zmin = 5 # in mA\n",
"I_Zmin= I_Zmin*10**-3 # in A\n",
"I_Zmax = 200 # in mA\n",
"I_Zmax= I_Zmax*10**-3 # in A\n",
"V_i = 16 # in V\n",
"V_Z = V_L # in V\n",
"print \"The value of V_Z = %0.f V\" %V_Z\n",
"R_Lmin = V_L/I_Lmax # in ohm\n",
"print \"The minimum value of R_L = %0.f ohm\" %R_Lmin\n",
"# R_L2 = V_L/I_Lmin # in ohm\n",
"print \"The maximum value of R_L = infinite\" \n",
"I_Z = I_Zmin+I_Zmax # in A\n",
"print \"The zener current = %0.f mA\" %(I_Z*10**3)\n",
"P_Zmax = V_Z*I_Z # in Watt\n",
"print \"The maximum value of Pz = %0.2f Watt\" %P_Zmax\n",
"R_S = (V_i-V_L)/(I_Zmin+I_Lmax) # in ohm\n",
"print \"The value of R_S = %0.2f ohm\" %R_S"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"The value of V_Z = 12 V\n",
"The minimum value of R_L = 60 ohm\n",
"The maximum value of R_L = infinite\n",
"The zener current = 205 mA\n",
"The maximum value of Pz = 2.46 Watt\n",
"The value of R_S = 19.51 ohm\n"
]
}
],
"prompt_number": 23
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 3.16\n",
": Page No 203"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"# Given data\n",
"V_in = 20 # in V\n",
"R_S = 220 # in ohm\n",
"V_Z = 10 # in V\n",
"P_Z = 400 # in mW\n",
"# Part (I)\n",
"R_L = 200 # in ohm\n",
"print \"Part (I) For R_L= 200 \u03a9\"\n",
"V_L = V_Z # in V\n",
"print \"Load voltage = %0.f V\" %V_L\n",
"I_L = V_L/R_L # in A\n",
"print \"Load current = %0.2f A\" %I_L\n",
"I_R = (V_in-V_Z)/R_S # in A\n",
"print \"The current through resistor = %0.3f A\" %I_R\n",
"I_Z = I_R-I_L # in A\n",
"print \"The value of I_Z = %0.2e A\" %I_Z\n",
"# Part (II)\n",
"R_L = 50 # in ohm\n",
"print \"Part (II) For R_L= 50 \u03a9\"\n",
"V_L = V_Z #\n",
"print \"Load voltage = %0.f V\" %V_L\n",
"I_L = V_L/R_L # in A\n",
"print \"Load current = %0.1f A\" %I_L\n",
"I_R = (V_in-V_Z)/R_S # in A\n",
"print \"The current through resistor = %0.3f A\" %I_R\n",
"I_Z = I_R-I_L # in A\n",
"print \"Zener current = %0.3f A\" %I_Z\n",
"print \"For both values of R_L, the current I_R is less than I_L and I_Z is negative.\"\n",
"print \"It shows that given circuit can not work successfully as a voltage regulator\""
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Part (I) For R_L= 200 \u03a9\n",
"Load voltage = 10 V\n",
"Load current = 0.05 A\n",
"The current through resistor = 0.045 A\n",
"The value of I_Z = -4.55e-03 A\n",
"Part (II) For R_L= 50 \u03a9\n",
"Load voltage = 10 V\n",
"Load current = 0.2 A\n",
"The current through resistor = 0.045 A\n",
"Zener current = -0.155 A\n",
"For both values of R_L, the current I_R is less than I_L and I_Z is negative.\n",
"It shows that given circuit can not work successfully as a voltage regulator\n"
]
}
],
"prompt_number": 25
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 3.17\n",
": Page No 204"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"# Given data\n",
"I_Zmin = 1 # in mA\n",
"I_Zmin=I_Zmin*10**-3 # in A\n",
"I_Zmax = 5 # in mA\n",
"I_Zmax=I_Zmax*10**-3 # in A\n",
"I_Lmin = 0 # in mA\n",
"I_Lmin=I_Lmin*10**-3 # in A\n",
"I_Lmax = 4 # in mA\n",
"I_Lmax=I_Lmax*10**-3 # in A\n",
"R = 5 # in kohm\n",
"R = R * 10**3 # in ohm\n",
"V_Z = 50 # in V\n",
"print \"Part (A)\"\n",
"V_max = (I_Zmax+ I_Lmin)*R+V_Z # in V\n",
"print \"The maximum Voltage = %0.f V\" %V_max\n",
"V_min = (I_Zmin+I_Lmax)*R + V_Z # in V\n",
"print \"The minimum Voltage = %0.f V\" %V_min\n",
"print \"Part (B)\"\n",
"V_L = 50 # in V\n",
"V_in = 75 # in V\n",
"R_L = 15 # in kohm\n",
"R_L= R_L*10**3 # in ohm\n",
"I_L = V_L/R_L # in A\n",
"V_max = (I_Zmax+I_L)*R+V_Z # in V\n",
"print \"The maximum Voltage = %0.f V\" %round(V_max)\n",
"V_min = (I_Zmin+I_L)*R+V_Z # in V\n",
"print \"The minimum Voltage = %0.f V\" %round(V_min)"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Part (A)\n",
"The maximum Voltage = 75 V\n",
"The minimum Voltage = 75 V\n",
"Part (B)\n",
"The maximum Voltage = 92 V\n",
"The minimum Voltage = 72 V\n"
]
}
],
"prompt_number": 27
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 3.18\n",
": Page No 205"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"# Given data\n",
"V_S = 7.5 # in V\n",
"V_Z = 5 # in V\n",
"R_S = 4.75 # in ohm\n",
"I_Zmin= 0.05 # in A\n",
"I_Zmax=1.0 # in A\n",
"I_S = (V_S-V_Z)/R_S # in A\n",
"I_Lmax= I_S-I_Zmin # in A\n",
"print \"The maximum value of load current = %0.3f A\" %I_Lmax\n",
"# when\n",
"V_S= 10 # in V\n",
"I_S = (V_S-V_Z)/R_S # in A\n",
"I_Lmin= I_S-I_Zmax # in A\n",
"print \"The minimum value of load current = %0.2f A\" %I_Lmin\n",
"print \"Thus, the range of load current for regulation =\",round(I_Lmin,2),\"<= I_L <=\",round(I_Lmax,3),\"A\""
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"The maximum value of load current = 0.476 A\n",
"The minimum value of load current = 0.05 A\n",
"Thus, the range of load current for regulation = 0.05 <= I_L <= 0.476 A\n"
]
}
],
"prompt_number": 32
}
],
"metadata": {}
}
]
}
|