bsc

Comprehensive codebase and cou...
Log | Files | Refs | README | LICENSE

commit 4f6bff45f3178a7a3ba580d668d0db026c2cb51a
parent 86b030bf464a7bf4f838d35b1bf67c29dde2c676
Author: Amit Dutta <amitdutta4255@gmail.com>
Date:   Thu, 19 Mar 2026 21:17:39 +0530

[2026-03-19] : .\{root} : uploaded CMSSEC R programs

Diffstat:
A.vscode/settings.json | 4++++
ASemester_1/R/Code/R_Code-1.r | 13+++++++++++++
ASemester_1/R/Code/R_Code-2.r | 10++++++++++
ASemester_1/R/Code/R_Code-4.r | 17+++++++++++++++++
ASemester_1/R/Code/R_Code-5.r | 11+++++++++++
ASemester_1/R/Code/R_Code-6.r | 18++++++++++++++++++
ASemester_1/R/Code/R_Code-7.r | 11+++++++++++
ASemester_1/R/Code/R_Code-8.r | 14++++++++++++++
ASemester_1/R/Code/R_Code-9.r | 15+++++++++++++++
ASemester_1/R/Code/R_code-3.r | 11+++++++++++
MSemester_1/R/Material_PDF/R2.pdf | 662+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
MSemester_1/R/Material_PDF/R3.pdf | 1317+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
MSemester_1/R/Material_PDF/R4.pdf | 677+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
MSemester_1/R/Material_PDF/R5.pdf | 74++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
MSemester_1/R/temp.r | 26++++++++++++++------------
Mdocs/index.html | 3021++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
16 files changed, 5878 insertions(+), 23 deletions(-)

diff --git a/.vscode/settings.json b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "r.lsp.promptToInstall": false +}+ \ No newline at end of file diff --git a/Semester_1/R/Code/R_Code-1.r b/Semester_1/R/Code/R_Code-1.r @@ -0,0 +1,12 @@ +# Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 19 Mar 2026 +# Repo: https://github.com/notamitgamer/bsc +# License: MIT + +# R allows you to assign values to variables in three different ways. + +# Write three lines of code assigning the string "R is fun" to a variable +# using Simple Assignment, Leftward Assignment, and Rightward Assignment. + +simple = "R is fun" +left <- "R is fun" +"R is fun" -> right+ \ No newline at end of file diff --git a/Semester_1/R/Code/R_Code-2.r b/Semester_1/R/Code/R_Code-2.r @@ -0,0 +1,9 @@ +# Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 19 Mar 2026 +# Repo: https://github.com/notamitgamer/bsc +# License: MIT + +# How do you declare an explicitly integer variable (e.g., the number 14) +# so that its class returns "integer" instead of the default floating-point "numeric"? + +num <- 12L +print(class(num))+ \ No newline at end of file diff --git a/Semester_1/R/Code/R_Code-4.r b/Semester_1/R/Code/R_Code-4.r @@ -0,0 +1,16 @@ +# Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 19 Mar 2026 +# Repo: https://github.com/notamitgamer/bsc +# License: MIT + +# Write a standard if...else block that checks if a variable named +# age is greater than 18. If the condition is true, print "You are eligible to vote.", +# otherwise print "You cannot vote.". + +age <- -1 +if (age < 0) { + print("Not a valid age.") +} else if (age < 18) { + print("Not eligible to vote.") +} else { + print("Eligible to vote.") +}+ \ No newline at end of file diff --git a/Semester_1/R/Code/R_Code-5.r b/Semester_1/R/Code/R_Code-5.r @@ -0,0 +1,10 @@ +# Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 19 Mar 2026 +# Repo: https://github.com/notamitgamer/bsc +# License: MIT + +# You have a vector of numbers: x <- c(12, 9, 23, 14). +# Use R's shorthand ifelse() function to output "EVEN" if a number +# in the vector is divisible by 2 (x %% 2 == 0), and "ODD" if it is not. + +x <- c(12, 9, 23, 14) +ifelse(x %% 2 == 0, "EVEN", "ODD")+ \ No newline at end of file diff --git a/Semester_1/R/Code/R_Code-6.r b/Semester_1/R/Code/R_Code-6.r @@ -0,0 +1,17 @@ +# Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 19 Mar 2026 +# Repo: https://github.com/notamitgamer/bsc +# License: MIT + +# Write a while loop with a number variable starting at 1. +# The loop should print the number and increment it by 1, +# but you must include an if statement with a break command to +# stop the loop's execution exactly when number == 6 + +number <- 1 +while (TRUE) { + if(number == 6) { + break + } + print(number) + number = number + 1 +}+ \ No newline at end of file diff --git a/Semester_1/R/Code/R_Code-7.r b/Semester_1/R/Code/R_Code-7.r @@ -0,0 +1,10 @@ +# Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 19 Mar 2026 +# Repo: https://github.com/notamitgamer/bsc +# License: MIT + +# Create a numerical vector containing the sequence of +# numbers from 1 to 5 using the : operator. Then, use the rep() +# function with the times argument to repeat that entire sequence exactly 2 times. + +s <- rep(c(1:5), times= 2) +print(s)+ \ No newline at end of file diff --git a/Semester_1/R/Code/R_Code-8.r b/Semester_1/R/Code/R_Code-8.r @@ -0,0 +1,13 @@ +# Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 19 Mar 2026 +# Repo: https://github.com/notamitgamer/bsc +# License: MIT + +# Create a list named list1 containing the number 24, +# the string "Sabby", the float 5.4, and the string "Nepal". +# Then, write the code using the append() function to add the number 3.14 to the very end of this list. + +list1 <- list(24L, "Sabby", 5.4, "Nepal") +print("Before update") +print(list1) +print("After Update") +append(list1, 3.14)+ \ No newline at end of file diff --git a/Semester_1/R/Code/R_Code-9.r b/Semester_1/R/Code/R_Code-9.r @@ -0,0 +1,14 @@ +# Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 19 Mar 2026 +# Repo: https://github.com/notamitgamer/bsc +# License: MIT + +# Define a function called power that takes two parameters, +# a and b. Give a a default value of 2. The function should print the result +# of a raised to the power of b (a^b). + +power <- function (a, b) { + return (a^b) +} +a <- 2 +b <- 3 +print(power(a, b))+ \ No newline at end of file diff --git a/Semester_1/R/Code/R_code-3.r b/Semester_1/R/Code/R_code-3.r @@ -0,0 +1,10 @@ +# Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 19 Mar 2026 +# Repo: https://github.com/notamitgamer/bsc +# License: MIT + +# Assume you have a variable company <- "Programiz". +# Write a line of code using the paste0() function to print "Welcome toProgramiz" +# ensuring there is no default space between the string and the variable. + +company <- "Programiz" +print(paste0("welcome to", company))+ \ No newline at end of file diff --git a/Semester_1/R/Material_PDF/R2.pdf b/Semester_1/R/Material_PDF/R2.pdf @@ -16236,3 +16236,665 @@ trailer startxref 685977 %%EOF +24 0 obj +<</Type/Page/MediaBox[ 0 0 595.32 841.92]/Resources<</ExtGState<</GS5 986 0 R/GS11 987 0 R>>/Font<</F4 991 0 R/F3 990 0 R/F2 989 0 R/F7 1001 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Contents 1005 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 10/Parent 7 0 R/Annots 1429 0 R>> +endobj +25 0 obj +<</Type/Page/MediaBox[ 0 0 595.32 841.92]/Resources<</ExtGState<</GS5 986 0 R/GS11 987 0 R>>/Font<</F4 991 0 R/F3 990 0 R/F2 989 0 R/F5 992 0 R/F7 1001 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Contents 1006 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 11/Parent 7 0 R/Annots 1470 0 R>> +endobj +27 0 obj +<</Type/Page/MediaBox[ 0 0 595.32 841.92]/Resources<</ExtGState<</GS5 986 0 R/GS11 987 0 R>>/Font<</F3 990 0 R/F4 991 0 R/F7 1001 0 R/F2 989 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Contents 1008 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 13/Parent 7 0 R/Annots 1481 0 R>> +endobj +28 0 obj +<</Type/Page/MediaBox[ 0 0 595.32 841.92]/Resources<</ExtGState<</GS5 986 0 R/GS11 987 0 R>>/Font<</F4 991 0 R/F3 990 0 R/F2 989 0 R/F7 1001 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Contents 1009 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 14/Parent 7 0 R/Annots 1492 0 R>> +endobj +36 0 obj +<</Type/Page/MediaBox[ 0 0 595.32 841.92]/Resources<</ExtGState<</GS5 986 0 R/GS11 987 0 R>>/Font<</F1 988 0 R/F2 989 0 R/F3 990 0 R/F4 991 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Contents 1020 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 24/Parent 8 0 R/Annots 1503 0 R>> +endobj +37 0 obj +<</Type/Page/MediaBox[ 0 0 595.32 841.92]/Resources<</ExtGState<</GS5 986 0 R/GS11 987 0 R>>/Font<</F3 990 0 R/F4 991 0 R/F2 989 0 R/F1 988 0 R/F5 992 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Contents 1021 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 25/Parent 8 0 R/Annots 1514 0 R>> +endobj +38 0 obj +<</Type/Page/MediaBox[ 0 0 595.32 841.92]/Resources<</ExtGState<</GS5 986 0 R/GS11 987 0 R>>/Font<</F5 992 0 R/F3 990 0 R/F9 1022 0 R/F2 989 0 R/F4 991 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Annots[ 1023 0 R 1535 0 R 1536 0 R]/Contents 1024 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 27/Parent 8 0 R>> +endobj +39 0 obj +<</Type/Page/MediaBox[ 0 0 595.32 841.92]/Resources<</ExtGState<</GS5 986 0 R/GS11 987 0 R>>/Font<</F4 991 0 R/F2 989 0 R/F3 990 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Contents 1025 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 28/Parent 8 0 R/Annots 1545 0 R>> +endobj +40 0 obj +<</Type/Page/MediaBox[ 0 0 595.32 841.92]/Resources<</ExtGState<</GS5 986 0 R/GS11 987 0 R>>/Font<</F4 991 0 R/F2 989 0 R/F3 990 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Contents 1026 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 29/Parent 8 0 R/Annots 1556 0 R>> +endobj +1429 0 obj +[ 1430 0 R 1431 0 R 1440 0 R 1441 0 R 1460 0 R 1461 0 R] +endobj +1430 0 obj +<</Type/Annot/Subtype/Highlight/P 24 0 R/F 4/M(D:20260318192841+05'30')/NM(e608fda0-7344-435f-9837-0ddd1f9e45f6)/Rect[ 72.024 691.072 483.5822 729.106]/C[ .490196 .941176 .4]/Popup 1431 0 R/CA 1/CreationDate(D:20260318192841+05'30')/QuadPoints[ 72.024 729.106 483.5822 729.106 72.024 713.512 483.5822 713.512 72.024 706.666 291.89648 706.666 72.024 691.072 291.89648 691.072]/AP<</N 1438 0 R>>>> +endobj +1431 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 609.106 792 729.106]/Parent 1430 0 R>> +endobj +1436 0 obj +<</Length 182/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 691.072 483.5822 729.106]/Matrix[ 1 0 0 1 -72.024 -691.072]/Resources<</ProcSet[/PDF]>>>> +stream +.490196 .941176 .4 rg +.974625 w +72.024 713.512 m +72.024 729.106 l +483.5822 729.106 l +483.5822 713.512 l +f +72.024 691.072 m +72.024 706.666 l +291.89648 706.666 l +291.89648 691.072 l +f + +endstream +endobj +1437 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 411.5582 38.034]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 1436 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +1438 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 411.5582 38.034]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 1437 0 R>>/ExtGState<</R0 1439 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +1439 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +1440 0 obj +<</Type/Annot/Subtype/Highlight/P 24 0 R/F 4/M(D:20260318192846+05'30')/NM(c31a56f6-d028-444b-b7e5-96edd1c696d1)/Rect[ 72.024 646.072 507.62966 684.106]/C[ .560784 .870588 .976471]/Popup 1441 0 R/CA 1/CreationDate(D:20260318192846+05'30')/QuadPoints[ 72.024 684.106 507.62966 684.106 72.024 668.512 507.62966 668.512 72.024 661.666 345.35968 661.666 72.024 646.072 345.35968 646.072]/AP<</N 1448 0 R>>>> +endobj +1441 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 564.106 792 684.106]/Parent 1440 0 R>> +endobj +1446 0 obj +<</Length 189/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 646.072 507.62966 684.106]/Matrix[ 1 0 0 1 -72.024 -646.072]/Resources<</ProcSet[/PDF]>>>> +stream +.560784 .870588 .976471 rg +.974625 w +72.024 668.512 m +72.024 684.106 l +507.62966 684.106 l +507.62966 668.512 l +f +72.024 646.072 m +72.024 661.666 l +345.35968 661.666 l +345.35968 646.072 l +f + +endstream +endobj +1447 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 435.60566 38.034]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 1446 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +1448 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 435.60566 38.034]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 1447 0 R>>/ExtGState<</R0 1449 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +1449 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +1460 0 obj +<</Type/Annot/Subtype/Highlight/P 24 0 R/F 4/M(D:20260318192909+05'30')/NM(d19af37e-18a2-4cda-923a-815c0d012a2f)/Rect[ 72.024 513.322 408.23968 528.916]/C[ .921569 .286275 .286275]/Popup 1461 0 R/CA 1/CreationDate(D:20260318192909+05'30')/QuadPoints[ 72.024 528.916 408.23968 528.916 72.024 513.322 408.23968 513.322]/AP<</N 1468 0 R>>>> +endobj +1461 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 408.916 792 528.916]/Parent 1460 0 R>> +endobj +1466 0 obj +<</Length 113/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 513.322 408.23968 528.916]/Matrix[ 1 0 0 1 -72.024 -513.322]/Resources<</ProcSet[/PDF]>>>> +stream +.921569 .286275 .286275 rg +.974625 w +72.024 513.322 m +72.024 528.916 l +408.23968 528.916 l +408.23968 513.322 l +f + +endstream +endobj +1467 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 336.21568 15.594]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 1466 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +1468 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 336.21568 15.594]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 1467 0 R>>/ExtGState<</R0 1469 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +1469 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +1470 0 obj +[ 1471 0 R 1472 0 R] +endobj +1471 0 obj +<</Type/Annot/Subtype/Highlight/P 25 0 R/F 4/M(D:20260318193333+05'30')/NM(fcfaea22-3f13-4aac-9771-38c827a8b59f)/Rect[ 72.024 229.862 508.67192 313.016]/C[ 1 .941176 .4]/Popup 1472 0 R/CA 1/CreationDate(D:20260318193333+05'30')/QuadPoints[ 72.024 313.016 487.50524 313.016 72.024 297.422 487.50524 297.422 72.024 290.096 262.77968 290.096 72.024 274.502 262.77968 274.502 72.024 268.016 508.67192 268.016 72.024 252.422 508.67192 252.422 72.024 245.456 286.17968 245.456 72.024 229.862 286.17968 229.862]/AP<</N 1479 0 R>>>> +endobj +1472 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 193.016 792 313.016]/Parent 1471 0 R>> +endobj +1477 0 obj +<</Length 133/Filter/FlateDecode/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 229.862 508.67192 313.016]/Matrix[ 1 0 0 1 -72.024 -229.862]/Resources<</ProcSet[/PDF]>>>> +stream +xt;@ =O~4ؠ B;֌UP!0]*-roItFu'=kl$K;Ziz "b)[]17x19_kF@k+endstream +endobj +1478 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 436.64792 83.154]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 1477 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +1479 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 436.64792 83.154]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 1478 0 R>>/ExtGState<</R0 1480 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +1480 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +1481 0 obj +[ 1482 0 R 1483 0 R] +endobj +1482 0 obj +<</Type/Annot/Subtype/Highlight/P 27 0 R/F 4/M(D:20260318193458+05'30')/NM(10b3f50a-d7a2-478c-8871-7e5be6926ada)/Rect[ 72.024 746.512 497.06968 784.686]/C[ .490196 .941176 .4]/Popup 1483 0 R/CA 1/CreationDate(D:20260318193458+05'30')/QuadPoints[ 72.024 784.686 476.74412 784.686 72.024 769.092 476.74412 769.092 72.024 762.106 497.06968 762.106 72.024 746.512 497.06968 746.512]/AP<</N 1490 0 R>>>> +endobj +1483 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 664.686 792 784.686]/Parent 1482 0 R>> +endobj +1488 0 obj +<</Length 184/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 746.512 497.06968 784.686]/Matrix[ 1 0 0 1 -72.024 -746.512]/Resources<</ProcSet[/PDF]>>>> +stream +.490196 .941176 .4 rg +.974625 w +72.024 769.092 m +72.024 784.686 l +476.74412 784.686 l +476.74412 769.092 l +f +72.024 746.512 m +72.024 762.106 l +497.06968 762.106 l +497.06968 746.512 l +f + +endstream +endobj +1489 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 425.04568 38.174]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 1488 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +1490 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 425.04568 38.174]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 1489 0 R>>/ExtGState<</R0 1491 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +1491 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +1492 0 obj +[ 1493 0 R 1494 0 R] +endobj +1493 0 obj +<</Type/Annot/Subtype/Highlight/P 28 0 R/F 4/M(D:20260318193607+05'30')/NM(69d0c573-4b2d-49ee-b231-dd57fd77f3e2)/Rect[ 72.024 533.242 523.43924 571.276]/C[ .560784 .870588 .976471]/Popup 1494 0 R/CA 1/CreationDate(D:20260318193607+05'30')/QuadPoints[ 72.024 571.276 523.43924 571.276 72.024 555.682 523.43924 555.682 72.024 548.836 391.07968 548.836 72.024 533.242 391.07968 533.242]/AP<</N 1501 0 R>>>> +endobj +1494 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 451.276 792 571.276]/Parent 1493 0 R>> +endobj +1499 0 obj +<</Length 189/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 533.242 523.43924 571.276]/Matrix[ 1 0 0 1 -72.024 -533.242]/Resources<</ProcSet[/PDF]>>>> +stream +.560784 .870588 .976471 rg +.974625 w +72.024 555.682 m +72.024 571.276 l +523.43924 571.276 l +523.43924 555.682 l +f +72.024 533.242 m +72.024 548.836 l +391.07968 548.836 l +391.07968 533.242 l +f + +endstream +endobj +1500 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 451.41524 38.034]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 1499 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +1501 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 451.41524 38.034]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 1500 0 R>>/ExtGState<</R0 1502 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +1502 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +1503 0 obj +[ 1504 0 R 1505 0 R] +endobj +1504 0 obj +<</Type/Annot/Subtype/Highlight/P 36 0 R/F 4/M(D:20260318194551+05'30')/NM(c5729d2b-4675-440d-8d8c-f3bd4c177647)/Rect[ 72.024 137.792 525.16972 176.186]/C[ .921569 .286275 .286275]/Popup 1505 0 R/CA 1/CreationDate(D:20260318194551+05'30')/QuadPoints[ 72.024 176.186 525.16972 176.186 72.024 160.592 525.16972 160.592 72.024 153.386 344.58 153.386 72.024 137.792 344.58 137.792]/AP<</N 1512 0 R>>>> +endobj +1505 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 56.186 792 176.186]/Parent 1504 0 R>> +endobj +1510 0 obj +<</Length 183/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 137.792 525.16972 176.186]/Matrix[ 1 0 0 1 -72.024 -137.792]/Resources<</ProcSet[/PDF]>>>> +stream +.921569 .286275 .286275 rg +.974625 w +72.024 160.592 m +72.024 176.186 l +525.16972 176.186 l +525.16972 160.592 l +f +72.024 137.792 m +72.024 153.386 l +344.58 153.386 l +344.58 137.792 l +f + +endstream +endobj +1511 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 453.14572 38.394]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 1510 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +1512 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 453.14572 38.394]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 1511 0 R>>/ExtGState<</R0 1513 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +1513 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +1514 0 obj +[ 1515 0 R 1516 0 R 1525 0 R 1526 0 R] +endobj +1515 0 obj +<</Type/Annot/Subtype/Highlight/P 37 0 R/F 4/M(D:20260318194603+05'30')/NM(2b38a4d7-4db7-4d90-b2bf-c068d463bc42)/Rect[ 72.024 723.712 518.6194 784.686]/C[ 1 .941176 .4]/Popup 1516 0 R/CA 1/CreationDate(D:20260318194603+05'30')/QuadPoints[ 72.024 784.686 518.6194 784.686 72.024 769.092 518.6194 769.092 72.024 762.106 506.32036 762.106 72.024 746.512 506.32036 746.512 72.024 739.306 147.1464 739.306 72.024 723.712 147.1464 723.712]/AP<</N 1523 0 R>>>> +endobj +1516 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 664.686 792 784.686]/Parent 1515 0 R>> +endobj +1521 0 obj +<</Length 250/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 723.712 518.6194 784.686]/Matrix[ 1 0 0 1 -72.024 -723.712]/Resources<</ProcSet[/PDF]>>>> +stream +1 .941176 .4 rg +.974625 w +72.024 769.092 m +72.024 784.686 l +518.6194 784.686 l +518.6194 769.092 l +f +72.024 746.512 m +72.024 762.106 l +506.32036 762.106 l +506.32036 746.512 l +f +72.024 723.712 m +72.024 739.306 l +147.1464 739.306 l +147.1464 723.712 l +f + +endstream +endobj +1522 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 446.5954 60.974]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 1521 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +1523 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 446.5954 60.974]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 1522 0 R>>/ExtGState<</R0 1524 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +1524 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +1525 0 obj +<</Type/Annot/Subtype/Highlight/P 37 0 R/F 4/M(D:20260318194700+05'30')/NM(be81350d-4ec7-439e-8701-58f715d321d2)/Rect[ 54 86.676 287.49968 136.826]/C[ .490196 .941176 .4]/Popup 1526 0 R/CA 1/CreationDate(D:20260318194700+05'30')/QuadPoints[ 72.024 136.826 287.49968 136.826 72.024 121.232 287.49968 121.232 54 102.27 142.62968 102.27 54 86.676 142.62968 86.676]/AP<</N 1533 0 R>>>> +endobj +1526 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 16.826 792 136.826]/Parent 1525 0 R>> +endobj +1531 0 obj +<</Length 182/Type/XObject/Subtype/Form/FormType 1/BBox[ 54 86.676 287.49968 136.826]/Matrix[ 1 0 0 1 -54 -86.676]/Resources<</ProcSet[/PDF]>>>> +stream +.490196 .941176 .4 rg +.974625 w +72.024 121.232 m +72.024 136.826 l +287.49968 136.826 l +287.49968 121.232 l +f +.974625 w +54 86.676 m +54 102.27 l +142.62968 102.27 l +142.62968 86.676 l +f + +endstream +endobj +1532 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 233.49968 50.15]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 1531 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +1533 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 233.49968 50.15]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 1532 0 R>>/ExtGState<</R0 1534 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +1534 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +1535 0 obj +<</Type/Annot/Subtype/Highlight/P 38 0 R/F 4/M(D:20260318194700+05'30')/NM(04bac54a-a437-42b6-b891-483cba30ca75)/Rect[ 54 746.152 150.06968 784.326]/C[ .490196 .941176 .4]/Popup 1536 0 R/CA 1/CreationDate(D:20260318194700+05'30')/QuadPoints[ 54 784.326 127.62968 784.326 54 768.732 127.62968 768.732 54 761.746 150.06968 761.746 54 746.152 150.06968 746.152]/AP<</N 1543 0 R>>>> +endobj +1536 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 664.326 792 784.326]/Parent 1535 0 R>> +endobj +1541 0 obj +<</Length 168/Type/XObject/Subtype/Form/FormType 1/BBox[ 54 746.152 150.06968 784.326]/Matrix[ 1 0 0 1 -54 -746.152]/Resources<</ProcSet[/PDF]>>>> +stream +.490196 .941176 .4 rg +.974625 w +54 768.732 m +54 784.326 l +127.62968 784.326 l +127.62968 768.732 l +f +54 746.152 m +54 761.746 l +150.06968 761.746 l +150.06968 746.152 l +f + +endstream +endobj +1542 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 96.06968 38.174]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 1541 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +1543 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 96.06968 38.174]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 1542 0 R>>/ExtGState<</R0 1544 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +1544 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +1545 0 obj +[ 1546 0 R 1547 0 R] +endobj +1546 0 obj +<</Type/Annot/Subtype/Highlight/P 39 0 R/F 4/M(D:20260318200825+05'30')/NM(51116277-c5f8-43c8-9fba-4efdc1addd3a)/Rect[ 72.024 296.222 519.25876 334.256]/C[ .490196 .941176 .4]/Popup 1547 0 R/CA 1/CreationDate(D:20260318200825+05'30')/QuadPoints[ 72.024 334.256 519.25876 334.256 72.024 318.662 519.25876 318.662 72.024 311.816 300.09968 311.816 72.024 296.222 300.09968 296.222]/AP<</N 1554 0 R>>>> +endobj +1547 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 214.256 792 334.256]/Parent 1546 0 R>> +endobj +1552 0 obj +<</Length 194/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 296.222 519.25876 334.256]/Matrix[ 1 0 0 1 -72.024 -296.222]/Resources<</ProcSet[/PDF]>>>> +stream +.490196 .941176 .4 rg +.974625 w +72.024 318.662 m +72.024 334.256 l +519.25876 334.256 l +519.25876 318.662 l +f +.974625 w +72.024 296.222 m +72.024 311.816 l +300.09968 311.816 l +300.09968 296.222 l +f + +endstream +endobj +1553 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 447.23476 38.034]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 1552 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +1554 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 447.23476 38.034]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 1553 0 R>>/ExtGState<</R0 1555 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +1555 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +1556 0 obj +[ 1557 0 R 1558 0 R] +endobj +1557 0 obj +<</Type/Annot/Subtype/Highlight/P 40 0 R/F 4/M(D:20260318201200+05'30')/NM(c55353c1-c04b-4249-827d-745bb4ef085f)/Rect[ 72.024 279.662 510.39388 317.816]/C[ .560784 .870588 .976471]/Popup 1558 0 R/CA 1/CreationDate(D:20260318201200+05'30')/QuadPoints[ 72.024 317.816 510.39388 317.816 72.024 302.222 510.39388 302.222 72.024 295.256 219.57968 295.256 72.024 279.662 219.57968 279.662]/AP<</N 1565 0 R>>>> +endobj +1558 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 197.816 792 317.816]/Parent 1557 0 R>> +endobj +1563 0 obj +<</Length 189/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 279.662 510.39388 317.816]/Matrix[ 1 0 0 1 -72.024 -279.662]/Resources<</ProcSet[/PDF]>>>> +stream +.560784 .870588 .976471 rg +.974625 w +72.024 302.222 m +72.024 317.816 l +510.39388 317.816 l +510.39388 302.222 l +f +72.024 279.662 m +72.024 295.256 l +219.57968 295.256 l +219.57968 279.662 l +f + +endstream +endobj +1564 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 438.36988 38.154]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 1563 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +1565 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 438.36988 38.154]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 1564 0 R>>/ExtGState<</R0 1566 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +1566 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +6 0 obj +<</Author(Abhik)/Creator<FEFF004D006900630072006F0073006F0066007400AE00200057006F0072006400200032003000310036>/CreationDate(D:20240603093044+00'00')/Producer(www.ilovepdf.com)/ModDate(D:20260318201202+05'30')>> +endobj +xref +6 1 +0000709488 00000 n +24 2 +0000688949 00000 n +0000689276 00000 n +27 2 +0000689614 00000 n +0000689941 00000 n +36 5 +0000690268 00000 n +0000690594 00000 n +0000690931 00000 n +0000691289 00000 n +0000691604 00000 n +1429 3 +0000691919 00000 n +0000691994 00000 n +0000692408 00000 n +1436 6 +0000692519 00000 n +0000692892 00000 n +0000693116 00000 n +0000693357 00000 n +0000693417 00000 n +0000693839 00000 n +1446 4 +0000693950 00000 n +0000694331 00000 n +0000694556 00000 n +0000694798 00000 n +1460 2 +0000694858 00000 n +0000695214 00000 n +1466 7 +0000695325 00000 n +0000695630 00000 n +0000695855 00000 n +0000696097 00000 n +0000696157 00000 n +0000696196 00000 n +0000696739 00000 n +1477 7 +0000696850 00000 n +0000697194 00000 n +0000697419 00000 n +0000697661 00000 n +0000697721 00000 n +0000697760 00000 n +0000698177 00000 n +1488 7 +0000698288 00000 n +0000698664 00000 n +0000698889 00000 n +0000699131 00000 n +0000699191 00000 n +0000699230 00000 n +0000699652 00000 n +1499 7 +0000699763 00000 n +0000700144 00000 n +0000700369 00000 n +0000700611 00000 n +0000700671 00000 n +0000700710 00000 n +0000701126 00000 n +1510 7 +0000701236 00000 n +0000701611 00000 n +0000701836 00000 n +0000702078 00000 n +0000702138 00000 n +0000702195 00000 n +0000702667 00000 n +1521 6 +0000702778 00000 n +0000703219 00000 n +0000703443 00000 n +0000703684 00000 n +0000703744 00000 n +0000704144 00000 n +1531 6 +0000704254 00000 n +0000704618 00000 n +0000704842 00000 n +0000705083 00000 n +0000705143 00000 n +0000705540 00000 n +1541 7 +0000705651 00000 n +0000706003 00000 n +0000706227 00000 n +0000706468 00000 n +0000706528 00000 n +0000706567 00000 n +0000706984 00000 n +1552 7 +0000707095 00000 n +0000707481 00000 n +0000707706 00000 n +0000707948 00000 n +0000708008 00000 n +0000708047 00000 n +0000708469 00000 n +1563 4 +0000708580 00000 n +0000708961 00000 n +0000709186 00000 n +0000709428 00000 n +trailer +<</Size 1567/Root 1 0 R/Info 6 0 R/ID[<D25AEF4A8043834B0539CD0FBA5D952C><9D340A11BB17F344C13690568CADBA47>]/Prev 685977>> +startxref +709714 +%%EOF diff --git a/Semester_1/R/Material_PDF/R3.pdf b/Semester_1/R/Material_PDF/R3.pdf @@ -9369,3 +9369,1320 @@ trailer startxref 486595 %%EOF +7 0 obj +<</Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources<</ExtGState<</GS5 31 0 R/GS8 32 0 R>>/Font<</F1 33 0 R/F2 34 0 R/F3 35 0 R/F4 36 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Contents 37 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 0/Parent 2 0 R/Annots 693 0 R>> +endobj +9 0 obj +<</Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources<</ExtGState<</GS5 31 0 R/GS8 32 0 R>>/Font<</F5 38 0 R/F2 34 0 R/F3 35 0 R/F4 36 0 R/F1 33 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Contents 40 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 2/Parent 2 0 R/Annots 714 0 R>> +endobj +10 0 obj +<</Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources<</ExtGState<</GS5 31 0 R/GS8 32 0 R>>/Font<</F1 33 0 R/F2 34 0 R/F3 35 0 R/F4 36 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Contents 41 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 3/Parent 2 0 R/Annots 725 0 R>> +endobj +693 0 obj +[ 694 0 R 695 0 R 704 0 R 705 0 R] +endobj +694 0 obj +<</Type/Annot/Subtype/Highlight/P 7 0 R/F 4/M(D:20260318201908+05'30')/NM(dbeab364-4d16-4628-8f16-cdb5dad5b4b2)/Rect[ 72.024 703.438 475.19624 741.484]/C[ 1 .941176 .4]/Popup 695 0 R/CA 1/CreationDate(D:20260318201908+05'30')/QuadPoints[ 72.024 741.484 475.19624 741.484 72.024 726.028 475.19624 726.028 72.024 718.894 134.02272 718.894 72.024 703.438 134.02272 703.438]/AP<</N 702 0 R>>>> +endobj +695 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 621.484 792 741.484]/Parent 694 0 R>> +endobj +700 0 obj +<</Length 175/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 703.438 475.19624 741.484]/Matrix[ 1 0 0 1 -72.024 -703.438]/Resources<</ProcSet[/PDF]>>>> +stream +1 .941176 .4 rg +.966 w +72.024 726.028 m +72.024 741.484 l +475.19624 741.484 l +475.19624 726.028 l +f +72.024 703.438 m +72.024 718.894 l +134.02272 718.894 l +134.02272 703.438 l +f + +endstream +endobj +701 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 403.17224 38.046]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 700 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +702 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 403.17224 38.046]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 701 0 R>>/ExtGState<</R0 703 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +703 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +704 0 obj +<</Type/Annot/Subtype/Highlight/P 7 0 R/F 4/M(D:20260318201953+05'30')/NM(c0e9aaca-3cae-41f2-90fe-8bcccbfb7e68)/Rect[ 72.024 587.738 501.0776 625.994]/C[ .490196 .941176 .4]/Popup 705 0 R/CA 1/CreationDate(D:20260318201953+05'30')/QuadPoints[ 72.024 625.994 501.0776 625.994 72.024 610.538 501.0776 610.538 72.024 603.194 415.1348 603.194 72.024 587.738 415.1348 587.738]/AP<</N 712 0 R>>>> +endobj +705 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 505.994 792 625.994]/Parent 704 0 R>> +endobj +710 0 obj +<</Length 177/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 587.738 501.0776 625.994]/Matrix[ 1 0 0 1 -72.024 -587.738]/Resources<</ProcSet[/PDF]>>>> +stream +.490196 .941176 .4 rg +.966 w +72.024 610.538 m +72.024 625.994 l +501.0776 625.994 l +501.0776 610.538 l +f +72.024 587.738 m +72.024 603.194 l +415.1348 603.194 l +415.1348 587.738 l +f + +endstream +endobj +711 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 429.0536 38.256]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 710 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +712 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 429.0536 38.256]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 711 0 R>>/ExtGState<</R0 713 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +713 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +714 0 obj +[ 715 0 R 716 0 R] +endobj +715 0 obj +<</Type/Annot/Subtype/Highlight/P 9 0 R/F 4/M(D:20260318204418+05'30')/NM(3f7b1373-a05c-4154-95b3-e29135fa7b9e)/Rect[ 72.024 571.178 506.76272 586.634]/C[ .490196 .941176 .4]/Popup 716 0 R/CA 1/CreationDate(D:20260318204418+05'30')/QuadPoints[ 72.024 586.634 506.76272 586.634 72.024 571.178 506.76272 571.178]/AP<</N 723 0 R>>>> +endobj +716 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 466.634 792 586.634]/Parent 715 0 R>> +endobj +721 0 obj +<</Length 105/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 571.178 506.76272 586.634]/Matrix[ 1 0 0 1 -72.024 -571.178]/Resources<</ProcSet[/PDF]>>>> +stream +.490196 .941176 .4 rg +.966 w +72.024 571.178 m +72.024 586.634 l +506.76272 586.634 l +506.76272 571.178 l +f + +endstream +endobj +722 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 434.73872 15.456]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 721 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +723 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 434.73872 15.456]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 722 0 R>>/ExtGState<</R0 724 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +724 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +725 0 obj +[ 726 0 R 727 0 R] +endobj +726 0 obj +<</Type/Annot/Subtype/Highlight/P 10 0 R/F 4/M(D:20260318204432+05'30')/NM(40d08f7f-5f42-4237-b3b1-90b540c96462)/Rect[ 72.024 703.438 445.9248 741.244]/C[ .490196 .941176 .4]/Popup 727 0 R/CA 1/CreationDate(D:20260318204432+05'30')/QuadPoints[ 72.024 741.244 445.9248 741.244 72.024 725.788 445.9248 725.788 72.024 718.894 185.8964 718.894 72.024 703.438 185.8964 703.438]/AP<</N 734 0 R>>>> +endobj +727 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 621.244 792 741.244]/Parent 726 0 R>> +endobj +732 0 obj +<</Length 177/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 703.438 445.9248 741.244]/Matrix[ 1 0 0 1 -72.024 -703.438]/Resources<</ProcSet[/PDF]>>>> +stream +.490196 .941176 .4 rg +.966 w +72.024 725.788 m +72.024 741.244 l +445.9248 741.244 l +445.9248 725.788 l +f +72.024 703.438 m +72.024 718.894 l +185.8964 718.894 l +185.8964 703.438 l +f + +endstream +endobj +733 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 373.9008 37.806]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 732 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +734 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 373.9008 37.806]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 733 0 R>>/ExtGState<</R0 735 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +735 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +6 0 obj +<</Author(Abhik)/Creator<FEFF004D006900630072006F0073006F0066007400AE00200057006F0072006400200032003000310036>/CreationDate(D:20240603093105+00'00')/Producer(www.ilovepdf.com)/ModDate(D:20260318204433+05'30')>> +endobj +xref +6 2 +0000507170 00000 n +0000500613 00000 n +9 2 +0000500926 00000 n +0000501249 00000 n +693 3 +0000501563 00000 n +0000501615 00000 n +0000502022 00000 n +700 6 +0000502131 00000 n +0000502497 00000 n +0000502720 00000 n +0000502959 00000 n +0000503018 00000 n +0000503426 00000 n +710 7 +0000503535 00000 n +0000503902 00000 n +0000504124 00000 n +0000504362 00000 n +0000504421 00000 n +0000504457 00000 n +0000504804 00000 n +721 7 +0000504913 00000 n +0000505209 00000 n +0000505432 00000 n +0000505671 00000 n +0000505730 00000 n +0000505766 00000 n +0000506175 00000 n +732 4 +0000506284 00000 n +0000506651 00000 n +0000506873 00000 n +0000507111 00000 n +trailer +<</Size 736/Root 1 0 R/Info 6 0 R/ID[<8E5C4230D76EB8262802CD0C72637B53><292DDEEE5DF0CBAB0469FA71DAD6F32F>]/Prev 486595>> +startxref +507396 +%%EOF +12 0 obj +<</Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources<</ExtGState<</GS5 31 0 R/GS8 32 0 R>>/Font<</F3 35 0 R/F6 43 0 R/F1 33 0 R/F2 34 0 R/F5 38 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Contents 44 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 5/Parent 2 0 R/Annots 736 0 R>> +endobj +13 0 obj +<</Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources<</ExtGState<</GS5 31 0 R/GS8 32 0 R>>/Font<</F3 35 0 R/F1 33 0 R/F2 34 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Contents 45 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 6/Parent 2 0 R/Annots 747 0 R>> +endobj +14 0 obj +<</Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources<</ExtGState<</GS5 31 0 R/GS8 32 0 R>>/Font<</F3 35 0 R/F1 33 0 R/F2 34 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Contents 46 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 7/Parent 2 0 R/Annots 758 0 R>> +endobj +16 0 obj +<</Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources<</ExtGState<</GS5 31 0 R/GS8 32 0 R>>/Font<</F1 33 0 R/F2 34 0 R/F3 35 0 R/F7 49 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Contents 50 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 9/Parent 2 0 R/Annots 769 0 R>> +endobj +17 0 obj +<</Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources<</ExtGState<</GS5 31 0 R/GS8 32 0 R>>/Font<</F2 34 0 R/F5 38 0 R/F3 35 0 R/F1 33 0 R>>/XObject<</Image49 51 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Contents 52 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 10/Parent 2 0 R/Annots 810 0 R>> +endobj +18 0 obj +<</Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources<</ExtGState<</GS5 31 0 R/GS8 32 0 R>>/Font<</F3 35 0 R/F2 34 0 R/F1 33 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Contents 53 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 11/Parent 2 0 R/Annots 831 0 R>> +endobj +19 0 obj +<</Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources<</ExtGState<</GS5 31 0 R/GS8 32 0 R>>/Font<</F2 34 0 R/F3 35 0 R/F1 33 0 R/F5 38 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Contents 54 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 12/Parent 2 0 R/Annots 852 0 R>> +endobj +20 0 obj +<</Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources<</ExtGState<</GS5 31 0 R/GS8 32 0 R>>/Font<</F3 35 0 R/F2 34 0 R/F1 33 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Annots[ 55 0 R 56 0 R 863 0 R 864 0 R]/Contents 57 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 15/Parent 2 0 R>> +endobj +21 0 obj +<</Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources<</ExtGState<</GS5 31 0 R/GS8 32 0 R>>/Font<</F2 34 0 R/F3 35 0 R/F1 33 0 R/F5 38 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Contents 58 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 16/Parent 2 0 R/Annots 873 0 R>> +endobj +22 0 obj +<</Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources<</ExtGState<</GS5 31 0 R/GS8 32 0 R>>/Font<</F2 34 0 R/F7 49 0 R/F3 35 0 R/F5 38 0 R/F1 33 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Contents 59 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 17/Parent 2 0 R/Annots 904 0 R>> +endobj +23 0 obj +<</Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources<</ExtGState<</GS5 31 0 R/GS8 32 0 R>>/Font<</F3 35 0 R/F2 34 0 R/F1 33 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Contents 60 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 18/Parent 2 0 R/Annots 925 0 R>> +endobj +24 0 obj +<</Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources<</ExtGState<</GS5 31 0 R/GS8 32 0 R>>/Font<</F2 34 0 R/F3 35 0 R/F1 33 0 R/F5 38 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Contents 61 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 19/Parent 2 0 R/Annots 936 0 R>> +endobj +25 0 obj +<</Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources<</ExtGState<</GS5 31 0 R/GS8 32 0 R>>/Font<</F2 34 0 R/F3 35 0 R/F1 33 0 R/F6 43 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Annots[ 62 0 R 947 0 R 948 0 R 957 0 R 958 0 R]/Contents 63 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 21/Parent 2 0 R>> +endobj +736 0 obj +[ 737 0 R 738 0 R] +endobj +737 0 obj +<</Type/Annot/Subtype/Highlight/P 12 0 R/F 4/M(D:20260319143933+05'30')/NM(956917ed-50bb-435d-95a6-32c4488b1557)/Rect[ 54.024 485.948 495.06064 568.874]/C[ .490196 .941176 .4]/Popup 738 0 R/CA 1/CreationDate(D:20260319143933+05'30')/QuadPoints[ 72.024 568.874 495.06064 568.874 72.024 553.418 495.06064 553.418 72.024 546.284 430.14632 546.284 72.024 530.828 430.14632 530.828 54.024 523.964 295.93632 523.964 54.024 508.508 295.93632 508.508 54.024 501.404 276.39368 501.404 54.024 485.948 276.39368 485.948]/AP<</N 745 0 R>>>> +endobj +738 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 448.874 792 568.874]/Parent 737 0 R>> +endobj +743 0 obj +<</Length 142/Filter/FlateDecode/Type/XObject/Subtype/Form/FormType 1/BBox[ 54.024 485.948 495.06064 568.874]/Matrix[ 1 0 0 1 -54.024 -485.948]/Resources<</ProcSet[/PDF]>>>> +stream +xt1! {^ ,cc(i.M|?p+Hƞ 5?U'u!*X~]@# ވ[ZL-(M/FZeϖ8Z뼆_ERccx-q$ +!-.^W!ږh}+endstream +endobj +744 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 441.03664 82.926]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 743 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +745 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 441.03664 82.926]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 744 0 R>>/ExtGState<</R0 746 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +746 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +747 0 obj +[ 748 0 R 749 0 R] +endobj +748 0 obj +<</Type/Annot/Subtype/Highlight/P 13 0 R/F 4/M(D:20260319144252+05'30')/NM(a2938ffd-da8f-4e35-ae41-0896f8893df4)/Rect[ 72.024 298.708 513.9024 336.964]/C[ .560784 .870588 .976471]/Popup 749 0 R/CA 1/CreationDate(D:20260319144252+05'30')/QuadPoints[ 72.024 336.964 513.9024 336.964 72.024 321.508 513.9024 321.508 72.024 314.164 423.4128 314.164 72.024 298.708 423.4128 298.708]/AP<</N 756 0 R>>>> +endobj +749 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 216.964 792 336.964]/Parent 748 0 R>> +endobj +754 0 obj +<</Length 189/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 298.708 513.9024 336.964]/Matrix[ 1 0 0 1 -72.024 -298.708]/Resources<</ProcSet[/PDF]>>>> +stream +.560784 .870588 .976471 rg +.966 w +72.024 321.508 m +72.024 336.964 l +513.9024 336.964 l +513.9024 321.508 l +f +.966 w +72.024 298.708 m +72.024 314.164 l +423.4128 314.164 l +423.4128 298.708 l +f + +endstream +endobj +755 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 441.8784 38.256]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 754 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +756 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 441.8784 38.256]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 755 0 R>>/ExtGState<</R0 757 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +757 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +758 0 obj +[ 759 0 R 760 0 R] +endobj +759 0 obj +<</Type/Annot/Subtype/Highlight/P 14 0 R/F 4/M(D:20260319144344+05'30')/NM(88273c62-3c41-462e-b6fd-76f31219f675)/Rect[ 72.024 321.268 524.46152 359.524]/C[ 1 .941176 .4]/Popup 760 0 R/CA 1/CreationDate(D:20260319144344+05'30')/QuadPoints[ 72.024 359.524 524.46152 359.524 72.024 344.068 524.46152 344.068 72.024 336.724 235.42752 336.724 72.024 321.268 235.42752 321.268]/AP<</N 767 0 R>>>> +endobj +760 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 239.524 792 359.524]/Parent 759 0 R>> +endobj +765 0 obj +<</Length 175/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 321.268 524.46152 359.524]/Matrix[ 1 0 0 1 -72.024 -321.268]/Resources<</ProcSet[/PDF]>>>> +stream +1 .941176 .4 rg +.966 w +72.024 344.068 m +72.024 359.524 l +524.46152 359.524 l +524.46152 344.068 l +f +72.024 321.268 m +72.024 336.724 l +235.42752 336.724 l +235.42752 321.268 l +f + +endstream +endobj +766 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 452.43752 38.256]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 765 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +767 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 452.43752 38.256]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 766 0 R>>/ExtGState<</R0 768 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +768 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +769 0 obj +[ 780 0 R 781 0 R 790 0 R 791 0 R 800 0 R 801 0 R] +endobj +780 0 obj +<</Type/Annot/Subtype/Highlight/P 16 0 R/F 4/M(D:20260319144436+05'30')/NM(7076d1c9-2037-4876-b568-e3b9c5b1796b)/Rect[ 72.024 726.028 355.10416 741.484]/C[ .968627 .6 .819608]/Popup 781 0 R/CA 1/CreationDate(D:20260319144436+05'30')/QuadPoints[ 72.024 741.484 355.10416 741.484 72.024 726.028 355.10416 726.028]/AP<</N 788 0 R>>>> +endobj +781 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 621.484 792 741.484]/Parent 780 0 R>> +endobj +786 0 obj +<</Length 105/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 726.028 355.10416 741.484]/Matrix[ 1 0 0 1 -72.024 -726.028]/Resources<</ProcSet[/PDF]>>>> +stream +.968627 .6 .819608 rg +.966 w +72.024 726.028 m +72.024 741.484 l +355.10416 741.484 l +355.10416 726.028 l +f + +endstream +endobj +787 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 283.08016 15.456]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 786 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +788 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 283.08016 15.456]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 787 0 R>>/ExtGState<</R0 789 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +789 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +790 0 obj +<</Type/Annot/Subtype/Highlight/P 16 0 R/F 4/M(D:20260319144508+05'30')/NM(947a0d2c-cd18-4378-88b3-0e5505bea944)/Rect[ 72.024 328.708 504.32632 344.164]/C[ .490196 .941176 .4]/Popup 791 0 R/CA 1/CreationDate(D:20260319144508+05'30')/QuadPoints[ 72.024 344.164 504.32632 344.164 72.024 328.708 504.32632 328.708]/AP<</N 798 0 R>>>> +endobj +791 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 224.164 792 344.164]/Parent 790 0 R>> +endobj +796 0 obj +<</Length 105/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 328.708 504.32632 344.164]/Matrix[ 1 0 0 1 -72.024 -328.708]/Resources<</ProcSet[/PDF]>>>> +stream +.490196 .941176 .4 rg +.966 w +72.024 328.708 m +72.024 344.164 l +504.32632 344.164 l +504.32632 328.708 l +f + +endstream +endobj +797 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 432.30232 15.456]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 796 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +798 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 432.30232 15.456]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 797 0 R>>/ExtGState<</R0 799 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +799 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +800 0 obj +<</Type/Annot/Subtype/Highlight/P 16 0 R/F 4/M(D:20260319144511+05'30')/NM(464170e7-ebce-4a80-8a75-3773cd901641)/Rect[ 72.024 363.268 518.79648 401.304]/C[ 1 .941176 .4]/Popup 801 0 R/CA 1/CreationDate(D:20260319144511+05'30')/QuadPoints[ 72.024 401.304 518.79648 401.304 72.024 385.848 518.79648 385.848 72.024 378.724 224.39632 378.724 72.024 363.268 224.39632 363.268]/AP<</N 808 0 R>>>> +endobj +801 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 281.304 792 401.304]/Parent 800 0 R>> +endobj +806 0 obj +<</Length 182/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 363.268 518.79648 401.304]/Matrix[ 1 0 0 1 -72.024 -363.268]/Resources<</ProcSet[/PDF]>>>> +stream +1 .941176 .4 rg +.966 w +72.024 385.848 m +72.024 401.304 l +518.79648 401.304 l +518.79648 385.848 l +f +.966 w +72.024 363.268 m +72.024 378.724 l +224.39632 378.724 l +224.39632 363.268 l +f + +endstream +endobj +807 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 446.77248 38.036]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 806 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +808 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 446.77248 38.036]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 807 0 R>>/ExtGState<</R0 809 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +809 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +810 0 obj +[ 811 0 R 812 0 R 821 0 R 822 0 R] +endobj +811 0 obj +<</Type/Annot/Subtype/Highlight/P 17 0 R/F 4/M(D:20260319144526+05'30')/NM(994b5f6e-3684-4a4c-b067-859e6969f958)/Rect[ 72.024 551.498 477.20632 566.954]/C[ .921569 .286275 .286275]/Popup 812 0 R/CA 1/CreationDate(D:20260319144526+05'30')/QuadPoints[ 72.024 566.954 477.20632 566.954 72.024 551.498 477.20632 551.498]/AP<</N 819 0 R>>>> +endobj +812 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 446.954 792 566.954]/Parent 811 0 R>> +endobj +817 0 obj +<</Length 110/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 551.498 477.20632 566.954]/Matrix[ 1 0 0 1 -72.024 -551.498]/Resources<</ProcSet[/PDF]>>>> +stream +.921569 .286275 .286275 rg +.966 w +72.024 551.498 m +72.024 566.954 l +477.20632 566.954 l +477.20632 551.498 l +f + +endstream +endobj +818 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 405.18232 15.456]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 817 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +819 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 405.18232 15.456]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 818 0 R>>/ExtGState<</R0 820 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +820 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +821 0 obj +<</Type/Annot/Subtype/Highlight/P 17 0 R/F 4/M(D:20260319144609+05'30')/NM(dcd8f747-f223-4ad1-8b5f-5cbf195dde0c)/Rect[ 72.024 266.998 503.01512 305.014]/C[ .490196 .941176 .4]/Popup 822 0 R/CA 1/CreationDate(D:20260319144609+05'30')/QuadPoints[ 72.024 305.014 503.01512 305.014 72.024 289.558 503.01512 289.558 72.024 282.454 160.63392 282.454 72.024 266.998 160.63392 266.998]/AP<</N 829 0 R>>>> +endobj +822 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 185.014 792 305.014]/Parent 821 0 R>> +endobj +827 0 obj +<</Length 188/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 266.998 503.01512 305.014]/Matrix[ 1 0 0 1 -72.024 -266.998]/Resources<</ProcSet[/PDF]>>>> +stream +.490196 .941176 .4 rg +.966 w +72.024 289.558 m +72.024 305.014 l +503.01512 305.014 l +503.01512 289.558 l +f +.966 w +72.024 266.998 m +72.024 282.454 l +160.63392 282.454 l +160.63392 266.998 l +f + +endstream +endobj +828 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 430.99112 38.016]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 827 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +829 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 430.99112 38.016]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 828 0 R>>/ExtGState<</R0 830 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +830 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +831 0 obj +[ 832 0 R 833 0 R 842 0 R 843 0 R] +endobj +832 0 obj +<</Type/Annot/Subtype/Highlight/P 18 0 R/F 4/M(D:20260319144642+05'30')/NM(76a9f4c1-2917-4c85-a76b-556caa603f68)/Rect[ 72.024 336.628 512.1168 374.164]/C[ .560784 .870588 .976471]/Popup 833 0 R/CA 1/CreationDate(D:20260319144642+05'30')/QuadPoints[ 72.024 374.164 512.1168 374.164 72.024 358.708 512.1168 358.708 72.024 352.084 273.59632 352.084 72.024 336.628 273.59632 336.628]/AP<</N 840 0 R>>>> +endobj +833 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 254.164 792 374.164]/Parent 832 0 R>> +endobj +838 0 obj +<</Length 184/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 336.628 512.1168 374.164]/Matrix[ 1 0 0 1 -72.024 -336.628]/Resources<</ProcSet[/PDF]>>>> +stream +.560784 .870588 .976471 rg +.966 w +72.024 358.708 m +72.024 374.164 l +512.1168 374.164 l +512.1168 358.708 l +f +72.024 336.628 m +72.024 352.084 l +273.59632 352.084 l +273.59632 336.628 l +f + +endstream +endobj +839 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 440.0928 37.536]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 838 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +840 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 440.0928 37.536]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 839 0 R>>/ExtGState<</R0 841 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +841 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +842 0 obj +<</Type/Annot/Subtype/Highlight/P 18 0 R/F 4/M(D:20260319144652+05'30')/NM(c75c35a4-e004-45ac-afc7-07360d6ab2c8)/Rect[ 72.024 282.598 492.838 298.054]/C[ .560784 .870588 .976471]/Popup 843 0 R/CA 1/CreationDate(D:20260319144652+05'30')/QuadPoints[ 72.024 298.054 492.838 298.054 72.024 282.598 492.838 282.598]/AP<</N 850 0 R>>>> +endobj +843 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 178.054 792 298.054]/Parent 842 0 R>> +endobj +848 0 obj +<</Length 106/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 282.598 492.838 298.054]/Matrix[ 1 0 0 1 -72.024 -282.598]/Resources<</ProcSet[/PDF]>>>> +stream +.560784 .870588 .976471 rg +.966 w +72.024 282.598 m +72.024 298.054 l +492.838 298.054 l +492.838 282.598 l +f + +endstream +endobj +849 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 420.814 15.456]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 848 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +850 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 420.814 15.456]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 849 0 R>>/ExtGState<</R0 851 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +851 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +852 0 obj +[ 853 0 R 854 0 R] +endobj +853 0 obj +<</Type/Annot/Subtype/Highlight/P 19 0 R/F 4/M(D:20260319144714+05'30')/NM(8b0a7a9c-ee45-4866-959d-7228b55c1e13)/Rect[ 72.024 605.018 436.21152 620.474]/C[ .968627 .6 .819608]/Popup 854 0 R/CA 1/CreationDate(D:20260319144714+05'30')/QuadPoints[ 72.024 620.474 436.21152 620.474 72.024 605.018 436.21152 605.018]/AP<</N 861 0 R>>>> +endobj +854 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 500.474 792 620.474]/Parent 853 0 R>> +endobj +859 0 obj +<</Length 105/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 605.018 436.21152 620.474]/Matrix[ 1 0 0 1 -72.024 -605.018]/Resources<</ProcSet[/PDF]>>>> +stream +.968627 .6 .819608 rg +.966 w +72.024 605.018 m +72.024 620.474 l +436.21152 620.474 l +436.21152 605.018 l +f + +endstream +endobj +860 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 364.18752 15.456]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 859 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +861 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 364.18752 15.456]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 860 0 R>>/ExtGState<</R0 862 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +862 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +863 0 obj +<</Type/Annot/Subtype/Highlight/P 20 0 R/F 4/M(D:20260319144948+05'30')/NM(a60dd8ad-8352-4205-91c9-861517dffc62)/Rect[ 72.024 421.848 499.2652 459.864]/C[ 1 .941176 .4]/Popup 864 0 R/CA 1/CreationDate(D:20260319144948+05'30')/QuadPoints[ 72.024 459.864 499.2652 459.864 72.024 444.408 499.2652 444.408 72.024 437.304 100.98432 437.304 72.024 421.848 100.98432 421.848]/AP<</N 871 0 R>>>> +endobj +864 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 339.864 792 459.864]/Parent 863 0 R>> +endobj +869 0 obj +<</Length 173/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 421.848 499.2652 459.864]/Matrix[ 1 0 0 1 -72.024 -421.848]/Resources<</ProcSet[/PDF]>>>> +stream +1 .941176 .4 rg +.966 w +72.024 444.408 m +72.024 459.864 l +499.2652 459.864 l +499.2652 444.408 l +f +72.024 421.848 m +72.024 437.304 l +100.98432 437.304 l +100.98432 421.848 l +f + +endstream +endobj +870 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 427.2412 38.016]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 869 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +871 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 427.2412 38.016]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 870 0 R>>/ExtGState<</R0 872 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +872 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +873 0 obj +[ 874 0 R 875 0 R 884 0 R 885 0 R 894 0 R 895 0 R] +endobj +874 0 obj +<</Type/Annot/Subtype/Highlight/P 21 0 R/F 4/M(D:20260319144958+05'30')/NM(f3c2dd3f-ef90-4086-ab5c-5fc9beb5f8cc)/Rect[ 72.024 739.228 506.36368 777.484]/C[ .490196 .941176 .4]/Popup 875 0 R/CA 1/CreationDate(D:20260319144958+05'30')/QuadPoints[ 72.024 777.484 506.36368 777.484 72.024 762.028 506.36368 762.028 72.024 754.684 174.07392 754.684 72.024 739.228 174.07392 739.228]/AP<</N 882 0 R>>>> +endobj +875 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 657.484 792 777.484]/Parent 874 0 R>> +endobj +880 0 obj +<</Length 181/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 739.228 506.36368 777.484]/Matrix[ 1 0 0 1 -72.024 -739.228]/Resources<</ProcSet[/PDF]>>>> +stream +.490196 .941176 .4 rg +.966 w +72.024 762.028 m +72.024 777.484 l +506.36368 777.484 l +506.36368 762.028 l +f +72.024 739.228 m +72.024 754.684 l +174.07392 754.684 l +174.07392 739.228 l +f + +endstream +endobj +881 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 434.33968 38.256]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 880 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +882 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 434.33968 38.256]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 881 0 R>>/ExtGState<</R0 883 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +883 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +884 0 obj +<</Type/Annot/Subtype/Highlight/P 21 0 R/F 4/M(D:20260319145059+05'30')/NM(3fbc59ed-bb5d-4658-8e96-8f36336a7e5b)/Rect[ 72.024 455.688 400.88736 471.144]/C[ .968627 .6 .819608]/Popup 885 0 R/CA 1/CreationDate(D:20260319145059+05'30')/QuadPoints[ 72.024 471.144 400.88736 471.144 72.024 455.688 400.88736 455.688]/AP<</N 892 0 R>>>> +endobj +885 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 351.144 792 471.144]/Parent 884 0 R>> +endobj +890 0 obj +<</Length 105/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 455.688 400.88736 471.144]/Matrix[ 1 0 0 1 -72.024 -455.688]/Resources<</ProcSet[/PDF]>>>> +stream +.968627 .6 .819608 rg +.966 w +72.024 455.688 m +72.024 471.144 l +400.88736 471.144 l +400.88736 455.688 l +f + +endstream +endobj +891 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 328.86336 15.456]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 890 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +892 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 328.86336 15.456]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 891 0 R>>/ExtGState<</R0 893 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +893 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +894 0 obj +<</Type/Annot/Subtype/Highlight/P 21 0 R/F 4/M(D:20260319145124+05'30')/NM(575d2b4c-792f-4e1a-a761-9d250e46145f)/Rect[ 72.024 86.232 498.62304 124.244]/C[ 1 .941176 .4]/Popup 895 0 R/CA 1/CreationDate(D:20260319145124+05'30')/QuadPoints[ 72.024 124.244 498.62304 124.244 72.024 108.788 498.62304 108.788 72.024 101.688 200.22816 101.688 72.024 86.232 200.22816 86.232]/AP<</N 902 0 R>>>> +endobj +895 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 4.244 792 124.244]/Parent 894 0 R>> +endobj +900 0 obj +<</Length 180/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 86.232 498.62304 124.244]/Matrix[ 1 0 0 1 -72.024 -86.232]/Resources<</ProcSet[/PDF]>>>> +stream +1 .941176 .4 rg +.966 w +72.024 108.788 m +72.024 124.244 l +498.62304 124.244 l +498.62304 108.788 l +f +.966 w +72.024 86.232 m +72.024 101.688 l +200.22816 101.688 l +200.22816 86.232 l +f + +endstream +endobj +901 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 426.59904 38.012]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 900 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +902 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 426.59904 38.012]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 901 0 R>>/ExtGState<</R0 903 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +903 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +904 0 obj +[ 905 0 R 906 0 R 915 0 R 916 0 R] +endobj +905 0 obj +<</Type/Annot/Subtype/Highlight/P 22 0 R/F 4/M(D:20260319145131+05'30')/NM(9c711437-0911-4d02-9026-9113c65fdc29)/Rect[ 72.024 761.788 484.16632 777.244]/C[ .490196 .941176 .4]/Popup 906 0 R/CA 1/CreationDate(D:20260319145131+05'30')/QuadPoints[ 72.024 777.244 484.16632 777.244 72.024 761.788 484.16632 761.788]/AP<</N 913 0 R>>>> +endobj +906 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 657.244 792 777.244]/Parent 905 0 R>> +endobj +911 0 obj +<</Length 105/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 761.788 484.16632 777.244]/Matrix[ 1 0 0 1 -72.024 -761.788]/Resources<</ProcSet[/PDF]>>>> +stream +.490196 .941176 .4 rg +.966 w +72.024 761.788 m +72.024 777.244 l +484.16632 777.244 l +484.16632 761.788 l +f + +endstream +endobj +912 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 412.14232 15.456]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 911 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +913 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 412.14232 15.456]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 912 0 R>>/ExtGState<</R0 914 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +914 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +915 0 obj +<</Type/Annot/Subtype/Highlight/P 22 0 R/F 4/M(D:20260319145153+05'30')/NM(22bdd81e-63d0-4d45-937f-0cc5f9b3fca0)/Rect[ 72.024 279.238 482.616 317.284]/C[ .560784 .870588 .976471]/Popup 916 0 R/CA 1/CreationDate(D:20260319145153+05'30')/QuadPoints[ 72.024 317.284 482.616 317.284 72.024 301.828 482.616 301.828 72.024 294.694 160.63392 294.694 72.024 279.238 160.63392 279.238]/AP<</N 923 0 R>>>> +endobj +916 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 197.284 792 317.284]/Parent 915 0 R>> +endobj +921 0 obj +<</Length 189/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 279.238 482.616 317.284]/Matrix[ 1 0 0 1 -72.024 -279.238]/Resources<</ProcSet[/PDF]>>>> +stream +.560784 .870588 .976471 rg +.966 w +72.024 301.828 m +72.024 317.284 l +482.616 317.284 l +482.616 301.828 l +f +.966 w +72.024 279.238 m +72.024 294.694 l +160.63392 294.694 l +160.63392 279.238 l +f + +endstream +endobj +922 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 410.592 38.046]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 921 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +923 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 410.592 38.046]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 922 0 R>>/ExtGState<</R0 924 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +924 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +925 0 obj +[ 926 0 R 927 0 R] +endobj +926 0 obj +<</Type/Annot/Subtype/Highlight/P 23 0 R/F 4/M(D:20260319145215+05'30')/NM(3e8d9c0a-897c-4327-b480-c35beb41a41a)/Rect[ 72.024 444.648 457.19824 460.104]/C[ .490196 .941176 .4]/Popup 927 0 R/CA 1/CreationDate(D:20260319145215+05'30')/QuadPoints[ 72.024 460.104 457.19824 460.104 72.024 444.648 457.19824 444.648]/AP<</N 934 0 R>>>> +endobj +927 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 340.104 792 460.104]/Parent 926 0 R>> +endobj +932 0 obj +<</Length 105/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 444.648 457.19824 460.104]/Matrix[ 1 0 0 1 -72.024 -444.648]/Resources<</ProcSet[/PDF]>>>> +stream +.490196 .941176 .4 rg +.966 w +72.024 444.648 m +72.024 460.104 l +457.19824 460.104 l +457.19824 444.648 l +f + +endstream +endobj +933 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 385.17424 15.456]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 932 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +934 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 385.17424 15.456]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 933 0 R>>/ExtGState<</R0 935 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +935 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +936 0 obj +[ 937 0 R 938 0 R] +endobj +937 0 obj +<</Type/Annot/Subtype/Highlight/P 24 0 R/F 4/M(D:20260319145254+05'30')/NM(14e48556-2363-413f-a623-2be61642f046)/Rect[ 72.024 542.108 519.95232 579.914]/C[ .968627 .6 .819608]/Popup 938 0 R/CA 1/CreationDate(D:20260319145254+05'30')/QuadPoints[ 72.024 579.914 519.95232 579.914 72.024 564.458 519.95232 564.458 72.024 557.564 480.44944 557.564 72.024 542.108 480.44944 542.108]/AP<</N 945 0 R>>>> +endobj +938 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 459.914 792 579.914]/Parent 937 0 R>> +endobj +943 0 obj +<</Length 181/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 542.108 519.95232 579.914]/Matrix[ 1 0 0 1 -72.024 -542.108]/Resources<</ProcSet[/PDF]>>>> +stream +.968627 .6 .819608 rg +.966 w +72.024 564.458 m +72.024 579.914 l +519.95232 579.914 l +519.95232 564.458 l +f +72.024 542.108 m +72.024 557.564 l +480.44944 557.564 l +480.44944 542.108 l +f + +endstream +endobj +944 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 447.92832 37.806]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 943 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +945 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 447.92832 37.806]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 944 0 R>>/ExtGState<</R0 946 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +946 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +947 0 obj +<</Type/Annot/Subtype/Highlight/P 25 0 R/F 4/M(D:20260319145308+05'30')/NM(1a40be05-1854-4159-a64f-6499c819e6d0)/Rect[ 72.024 739.228 486.73744 777.484]/C[ .560784 .870588 .976471]/Popup 948 0 R/CA 1/CreationDate(D:20260319145308+05'30')/QuadPoints[ 72.024 777.484 486.73744 777.484 72.024 762.028 486.73744 762.028 72.024 754.684 202.35168 754.684 72.024 739.228 202.35168 739.228]/AP<</N 955 0 R>>>> +endobj +948 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 657.484 792 777.484]/Parent 947 0 R>> +endobj +953 0 obj +<</Length 186/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 739.228 486.73744 777.484]/Matrix[ 1 0 0 1 -72.024 -739.228]/Resources<</ProcSet[/PDF]>>>> +stream +.560784 .870588 .976471 rg +.966 w +72.024 762.028 m +72.024 777.484 l +486.73744 777.484 l +486.73744 762.028 l +f +72.024 739.228 m +72.024 754.684 l +202.35168 754.684 l +202.35168 739.228 l +f + +endstream +endobj +954 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 414.71344 38.256]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 953 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +955 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 414.71344 38.256]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 954 0 R>>/ExtGState<</R0 956 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +956 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +957 0 obj +<</Type/Annot/Subtype/Highlight/P 25 0 R/F 4/M(D:20260319145331+05'30')/NM(cfe831b5-781e-4c7f-9f85-c94de5dc19f4)/Rect[ 72.024 411.288 511.76664 426.744]/C[ 1 .941176 .4]/Popup 958 0 R/CA 1/CreationDate(D:20260319145331+05'30')/QuadPoints[ 72.024 426.744 511.76664 426.744 72.024 411.288 511.76664 411.288]/AP<</N 965 0 R>>>> +endobj +958 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 306.744 792 426.744]/Parent 957 0 R>> +endobj +963 0 obj +<</Length 99/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 411.288 511.76664 426.744]/Matrix[ 1 0 0 1 -72.024 -411.288]/Resources<</ProcSet[/PDF]>>>> +stream +1 .941176 .4 rg +.966 w +72.024 411.288 m +72.024 426.744 l +511.76664 426.744 l +511.76664 411.288 l +f + +endstream +endobj +964 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 439.74264 15.456]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 963 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +965 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 439.74264 15.456]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 964 0 R>>/ExtGState<</R0 966 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +966 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +6 0 obj +<</Author(Abhik)/Creator<FEFF004D006900630072006F0073006F0066007400AE00200057006F0072006400200032003000310036>/CreationDate(D:20240603093105+00'00')/Producer(www.ilovepdf.com)/ModDate(D:20260319145332+05'30')>> +endobj +xref +6 1 +0000541399 00000 n +12 3 +0000508211 00000 n +0000508535 00000 n +0000508839 00000 n +16 10 +0000509143 00000 n +0000509457 00000 n +0000509799 00000 n +0000510104 00000 n +0000510419 00000 n +0000510748 00000 n +0000511063 00000 n +0000511388 00000 n +0000511693 00000 n +0000512008 00000 n +736 3 +0000512356 00000 n +0000512392 00000 n +0000512938 00000 n +743 7 +0000513047 00000 n +0000513399 00000 n +0000513622 00000 n +0000513861 00000 n +0000513920 00000 n +0000513956 00000 n +0000514370 00000 n +754 7 +0000514479 00000 n +0000514858 00000 n +0000515080 00000 n +0000515318 00000 n +0000515377 00000 n +0000515413 00000 n +0000515821 00000 n +765 5 +0000515930 00000 n +0000516296 00000 n +0000516519 00000 n +0000516758 00000 n +0000516817 00000 n +780 2 +0000516885 00000 n +0000517233 00000 n +786 6 +0000517342 00000 n +0000517638 00000 n +0000517861 00000 n +0000518100 00000 n +0000518159 00000 n +0000518507 00000 n +796 6 +0000518616 00000 n +0000518912 00000 n +0000519135 00000 n +0000519374 00000 n +0000519433 00000 n +0000519841 00000 n +806 7 +0000519950 00000 n +0000520323 00000 n +0000520546 00000 n +0000520785 00000 n +0000520844 00000 n +0000520896 00000 n +0000521249 00000 n +817 6 +0000521358 00000 n +0000521659 00000 n +0000521882 00000 n +0000522121 00000 n +0000522180 00000 n +0000522594 00000 n +827 7 +0000522703 00000 n +0000523082 00000 n +0000523305 00000 n +0000523544 00000 n +0000523603 00000 n +0000523655 00000 n +0000524071 00000 n +838 6 +0000524180 00000 n +0000524554 00000 n +0000524776 00000 n +0000525014 00000 n +0000525073 00000 n +0000525420 00000 n +848 7 +0000525529 00000 n +0000525824 00000 n +0000526045 00000 n +0000526282 00000 n +0000526341 00000 n +0000526377 00000 n +0000526725 00000 n +859 6 +0000526834 00000 n +0000527130 00000 n +0000527353 00000 n +0000527592 00000 n +0000527651 00000 n +0000528056 00000 n +869 7 +0000528165 00000 n +0000528528 00000 n +0000528750 00000 n +0000528988 00000 n +0000529047 00000 n +0000529115 00000 n +0000529529 00000 n +880 6 +0000529638 00000 n +0000530010 00000 n +0000530233 00000 n +0000530472 00000 n +0000530531 00000 n +0000530879 00000 n +890 6 +0000530988 00000 n +0000531284 00000 n +0000531507 00000 n +0000531746 00000 n +0000531805 00000 n +0000532210 00000 n +900 7 +0000532317 00000 n +0000532686 00000 n +0000532909 00000 n +0000533148 00000 n +0000533207 00000 n +0000533259 00000 n +0000533607 00000 n +911 6 +0000533716 00000 n +0000534012 00000 n +0000534235 00000 n +0000534474 00000 n +0000534533 00000 n +0000534946 00000 n +921 7 +0000535055 00000 n +0000535433 00000 n +0000535654 00000 n +0000535891 00000 n +0000535950 00000 n +0000535986 00000 n +0000536334 00000 n +932 7 +0000536443 00000 n +0000536739 00000 n +0000536962 00000 n +0000537201 00000 n +0000537260 00000 n +0000537296 00000 n +0000537710 00000 n +943 6 +0000537819 00000 n +0000538191 00000 n +0000538414 00000 n +0000538653 00000 n +0000538712 00000 n +0000539131 00000 n +953 6 +0000539240 00000 n +0000539617 00000 n +0000539840 00000 n +0000540079 00000 n +0000540138 00000 n +0000540480 00000 n +963 4 +0000540589 00000 n +0000540878 00000 n +0000541101 00000 n +0000541340 00000 n +trailer +<</Size 967/Root 1 0 R/Info 6 0 R/ID[<8E5C4230D76EB8262802CD0C72637B53><47875CC0A7C64B2AF518DBC553DFAB46>]/Prev 507396>> +startxref +541625 +%%EOF diff --git a/Semester_1/R/Material_PDF/R4.pdf b/Semester_1/R/Material_PDF/R4.pdf @@ -7538,3 +7538,680 @@ trailer startxref 520298 %%EOF +7 0 obj +<</Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources<</ExtGState<</GS5 22 0 R/GS11 23 0 R>>/Font<</F1 24 0 R/F2 25 0 R/F3 26 0 R/F4 27 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Contents 28 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 0/Parent 2 0 R/Annots 532 0 R>> +endobj +8 0 obj +<</Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources<</ExtGState<</GS5 22 0 R/GS11 23 0 R>>/Font<</F4 27 0 R/F2 25 0 R/F3 26 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Contents 29 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 1/Parent 2 0 R/Annots 553 0 R>> +endobj +9 0 obj +<</Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources<</ExtGState<</GS5 22 0 R/GS11 23 0 R>>/Font<</F2 25 0 R/F3 26 0 R/F4 27 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Contents 30 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 2/Parent 2 0 R/Annots 564 0 R>> +endobj +10 0 obj +<</Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources<</ExtGState<</GS5 22 0 R/GS11 23 0 R>>/Font<</F4 27 0 R/F2 25 0 R/F3 26 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Contents 31 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 3/Parent 2 0 R/Annots 575 0 R>> +endobj +11 0 obj +<</Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources<</ExtGState<</GS5 22 0 R/GS11 23 0 R>>/Font<</F2 25 0 R/F3 26 0 R/F5 32 0 R/F4 27 0 R/F6 33 0 R/F7 34 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Contents 35 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 4/Parent 2 0 R/Annots 586 0 R>> +endobj +12 0 obj +<</Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources<</Font<</F6 33 0 R/F7 34 0 R/F2 25 0 R/F3 26 0 R/F4 27 0 R>>/ExtGState<</GS5 22 0 R/GS11 23 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Annots[ 36 0 R 597 0 R 598 0 R 607 0 R 608 0 R 617 0 R 618 0 R]/Contents 37 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 6/Parent 2 0 R>> +endobj +14 0 obj +<</Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources<</Font<</F8 38 0 R/F3 26 0 R/F6 33 0 R/F7 34 0 R/F2 25 0 R/F4 27 0 R>>/ExtGState<</GS5 22 0 R/GS11 23 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Contents 40 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 8/Parent 2 0 R/Annots 627 0 R>> +endobj +15 0 obj +<</Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources<</Font<</F4 27 0 R/F2 25 0 R/F3 26 0 R/F6 33 0 R/F7 34 0 R/F8 38 0 R>>/ExtGState<</GS5 22 0 R/GS11 23 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Contents 41 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 9/Parent 2 0 R/Annots 648 0 R>> +endobj +16 0 obj +<</Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources<</Font<</F8 38 0 R/F3 26 0 R/F6 33 0 R/F7 34 0 R/F2 25 0 R/F4 27 0 R>>/ExtGState<</GS5 22 0 R/GS11 23 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Contents 42 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 10/Parent 2 0 R/Annots 669 0 R>> +endobj +532 0 obj +[ 533 0 R 534 0 R 543 0 R 544 0 R] +endobj +533 0 obj +<</Type/Annot/Subtype/Highlight/P 7 0 R/F 4/M(D:20260319191422+05'30')/NM(b24d3e9c-d484-48cd-993b-ad70cac0edbc)/Rect[ 72.024 473.468 524.84528 511.484]/C[ .490196 .941176 .4]/Popup 534 0 R/CA 1/CreationDate(D:20260319191422+05'30')/QuadPoints[ 242.94048 511.484 524.84528 511.484 242.94048 496.028 524.84528 496.028 72.024 488.924 203.29248 488.924 72.024 473.468 203.29248 473.468]/AP<</N 541 0 R>>>> +endobj +534 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 391.484 792 511.484]/Parent 533 0 R>> +endobj +539 0 obj +<</Length 187/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 473.468 524.84528 511.484]/Matrix[ 1 0 0 1 -72.024 -473.468]/Resources<</ProcSet[/PDF]>>>> +stream +.490196 .941176 .4 rg +.966 w +242.94048 496.028 m +242.94048 511.484 l +524.84528 511.484 l +524.84528 496.028 l +f +72.024 473.468 m +72.024 488.924 l +203.29248 488.924 l +203.29248 473.468 l +f + +endstream +endobj +540 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 452.82128 38.016]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 539 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +541 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 452.82128 38.016]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 540 0 R>>/ExtGState<</R0 542 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +542 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +543 0 obj +<</Type/Annot/Subtype/Highlight/P 7 0 R/F 4/M(D:20260319191446+05'30')/NM(35690b2a-20f4-4d84-be8d-f1029e4c3e56)/Rect[ 72.024 227.638 523.27584 287.734]/C[ .560784 .870588 .976471]/Popup 544 0 R/CA 1/CreationDate(D:20260319191446+05'30')/QuadPoints[ 72.024 287.734 523.27584 287.734 72.024 249.958 523.27584 249.958 72.024 243.094 231.35632 243.094 72.024 227.638 231.35632 227.638]/AP<</N 551 0 R>>>> +endobj +544 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 167.734 792 287.734]/Parent 543 0 R>> +endobj +549 0 obj +<</Length 194/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 227.638 523.27584 287.734]/Matrix[ 1 0 0 1 -72.024 -227.638]/Resources<</ProcSet[/PDF]>>>> +stream +.560784 .870588 .976471 rg +2.361 w +72.024 249.958 m +72.024 287.734 l +523.27584 287.734 l +523.27584 249.958 l +f +.966 w +72.024 227.638 m +72.024 243.094 l +231.35632 243.094 l +231.35632 227.638 l +f + +endstream +endobj +550 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 451.25184 60.096]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 549 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +551 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 451.25184 60.096]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 550 0 R>>/ExtGState<</R0 552 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +552 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +553 0 obj +[ 554 0 R 555 0 R] +endobj +554 0 obj +<</Type/Annot/Subtype/Highlight/P 8 0 R/F 4/M(D:20260319191556+05'30')/NM(a97058aa-3502-4af2-af82-d19138539629)/Rect[ 72.024 218.038 523.42288 346.324]/C[ .560784 .870588 .976471]/Popup 555 0 R/CA 1/CreationDate(D:20260319191556+05'30')/QuadPoints[ 72.024 346.324 500.04192 346.324 72.024 330.868 500.04192 330.868 72.024 323.524 484.32288 323.524 72.024 308.068 484.32288 308.068 72.024 300.934 285.11632 300.934 72.024 285.478 285.11632 285.478 72.024 278.854 466.07792 278.854 72.024 263.398 466.07792 263.398 72.024 256.294 523.42288 256.294 72.024 240.838 523.42288 240.838 72.024 233.494 330.64992 233.494 72.024 218.038 330.64992 218.038]/AP<</N 562 0 R>>>> +endobj +555 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 226.324 792 346.324]/Parent 554 0 R>> +endobj +560 0 obj +<</Length 178/Filter/FlateDecode/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 218.038 523.42288 346.324]/Matrix[ 1 0 0 1 -72.024 -218.038]/Resources<</ProcSet[/PDF]>>>> +stream +xl11{/@0%ͥI[PYZkFBW4 +n+ SVC IeFp#Jg<W$pq E4࿒U=O|~LivRx\dW#U@8268'*_]],u]m0b/%ʘUlS+endstream +endobj +561 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 451.39888 128.286]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 560 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +562 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 451.39888 128.286]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 561 0 R>>/ExtGState<</R0 563 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +563 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +564 0 obj +[ 565 0 R 566 0 R] +endobj +565 0 obj +<</Type/Annot/Subtype/Highlight/P 9 0 R/F 4/M(D:20260319191944+05'30')/NM(db638d7b-4acc-45bf-9907-5cf06709f45a)/Rect[ 72.024 209.138 507.35904 304.054]/C[ 1 .941176 .4]/Popup 566 0 R/CA 1/CreationDate(D:20260319191944+05'30')/QuadPoints[ 72.024 304.054 507.35904 304.054 72.024 288.598 507.35904 288.598 72.024 281.494 497.02368 281.494 72.024 266.038 497.02368 266.038 72.024 258.934 133.62632 258.934 72.024 243.478 133.62632 243.478 72.024 224.594 505.40752 224.594 72.024 209.138 505.40752 209.138]/AP<</N 573 0 R>>>> +endobj +566 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 184.054 792 304.054]/Parent 565 0 R>> +endobj +571 0 obj +<</Length 133/Filter/FlateDecode/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 209.138 507.35904 304.054]/Matrix[ 1 0 0 1 -72.024 -209.138]/Resources<</ProcSet[/PDF]>>>> +stream +xl 1 sU +? ]KP: v+!׳ #]HzgseQԓlGy'#zKJeF߳)RMaUUʞMq3ga\l#+endstream +endobj +572 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 435.33504 94.916]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 571 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +573 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 435.33504 94.916]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 572 0 R>>/ExtGState<</R0 574 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +574 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +575 0 obj +[ 576 0 R 577 0 R] +endobj +576 0 obj +<</Type/Annot/Subtype/Highlight/P 10 0 R/F 4/M(D:20260319193803+05'30')/NM(9f60394f-71e8-47bd-9044-7e69fda1652c)/Rect[ 72.024 405.768 468.44752 421.224]/C[ 1 .941176 .4]/Popup 577 0 R/CA 1/CreationDate(D:20260319193803+05'30')/QuadPoints[ 72.024 421.224 468.44752 421.224 72.024 405.768 468.44752 405.768]/AP<</N 584 0 R>>>> +endobj +577 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 301.224 792 421.224]/Parent 576 0 R>> +endobj +582 0 obj +<</Length 99/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 405.768 468.44752 421.224]/Matrix[ 1 0 0 1 -72.024 -405.768]/Resources<</ProcSet[/PDF]>>>> +stream +1 .941176 .4 rg +.966 w +72.024 405.768 m +72.024 421.224 l +468.44752 421.224 l +468.44752 405.768 l +f + +endstream +endobj +583 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 396.42352 15.456]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 582 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +584 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 396.42352 15.456]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 583 0 R>>/ExtGState<</R0 585 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +585 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +586 0 obj +[ 587 0 R 588 0 R] +endobj +587 0 obj +<</Type/Annot/Subtype/Highlight/P 11 0 R/F 4/M(D:20260319193826+05'30')/NM(0d76a750-a8db-4b8c-b755-0532ef4a20e4)/Rect[ 54.024 644.638 419.58632 725.854]/C[ .490196 .941176 .4]/Popup 588 0 R/CA 1/CreationDate(D:20260319193826+05'30')/QuadPoints[ 72.024 725.854 419.58632 725.854 72.024 710.398 419.58632 710.398 54.024 691.534 363.15632 691.534 54.024 676.078 363.15632 676.078 54.024 660.094 339.85632 660.094 54.024 644.638 339.85632 644.638]/AP<</N 595 0 R>>>> +endobj +588 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 605.854 792 725.854]/Parent 587 0 R>> +endobj +593 0 obj +<</Length 120/Filter/FlateDecode/Type/XObject/Subtype/Form/FormType 1/BBox[ 54.024 644.638 419.58632 725.854]/Matrix[ 1 0 0 1 -54.024 -644.638]/Resources<</ProcSet[/PDF]>>>> +stream +xlλ 0 E^SpRH\(i&׷%( U.pK BH]tVը CQLC-xWq4Zn|n! 4o۵+endstream +endobj +594 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 365.56232 81.216]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 593 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +595 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 365.56232 81.216]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 594 0 R>>/ExtGState<</R0 596 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +596 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +597 0 obj +<</Type/Annot/Subtype/Highlight/P 12 0 R/F 4/M(D:20260319193935+05'30')/NM(eede50b0-aae1-4d11-a5c9-f28cfb585165)/Rect[ 72.024 334.132 522.91288 445.98]/C[ .560784 .870588 .976471]/Popup 598 0 R/CA 1/CreationDate(D:20260319193935+05'30')/QuadPoints[ 72.024 445.98 364.184 445.98 72.024 425.28 364.184 425.28 72.024 425.28 364.184 425.28 72.024 410.712 364.184 410.712 364.184 425.616 506.68976 425.616 364.184 410.712 506.68976 410.712 90.024 410.256 509.72496 410.256 90.024 395.352 509.72496 395.352 90.024 395.352 159.19288 395.352 90.024 380.712 159.19288 380.712 72.024 380.716 90.024 380.716 72.024 365.812 90.024 365.812 90.024 380.712 159.19288 380.712 90.024 365.812 159.19288 365.812 159.19288 380.716 522.91288 380.716 159.19288 365.812 522.91288 365.812 72.024 365.692 386.80976 365.692 72.024 349.684 386.80976 349.684 72.024 349.036 436.73288 349.036 72.024 334.132 436.73288 334.132]/AP<</N 605 0 R>>>> +endobj +598 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 325.98 792 445.98]/Parent 597 0 R>> +endobj +603 0 obj +<</Length 251/Filter/FlateDecode/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 334.132 522.91288 445.98]/Matrix[ 1 0 0 1 -72.024 -334.132]/Resources<</ProcSet[/PDF]>>>> +stream +xtAv B&tWǟe&3 +جfbVw*@MojH5W ]X+[ gbK_ `dV(.+{ 3rҸ ע-ZkxTa`) əshT]Ү~3Tġ8/5{=7*`qwT85 +3r(Vq:A{@wQErzfafS0fpQoFy(fp0+endstream +endobj +604 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 450.88888 111.848]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 603 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +605 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 450.88888 111.848]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 604 0 R>>/ExtGState<</R0 606 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +606 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +607 0 obj +<</Type/Annot/Subtype/Highlight/P 12 0 R/F 4/M(D:20260319194102+05'30')/NM(c0c89422-7bc1-4de4-b0ba-c4b90a749f65)/Rect[ 72.024 207.026 215.59 317.188]/C[ 1 .941176 .4]/Popup 608 0 R/CA 1/CreationDate(D:20260319194102+05'30')/QuadPoints[ 72.024 317.188 208.39 317.188 72.024 302.836 208.39 302.836 72.024 302.836 143.09 302.836 72.024 289.366 143.09 289.366 72.024 289.366 78.264 289.366 72.024 275.206 78.264 275.206 72.024 275.206 78.264 275.206 72.024 261.526 78.264 261.526 78.264 275.878 215.59 275.878 78.264 261.526 215.59 261.526 72.024 261.526 78.264 261.526 72.024 248.086 78.264 248.086 78.264 261.526 143.09 261.526 78.264 248.086 143.09 248.086 72.024 248.086 78.264 248.086 72.024 234.166 78.264 234.166 72.024 234.166 78.264 234.166 72.024 220.486 78.264 220.486 78.264 234.838 213.91 234.838 78.264 220.486 213.91 220.486 72.024 220.486 78.264 220.486 72.024 207.026 78.264 207.026 78.264 220.486 138.2088 220.486 78.264 207.026 138.2088 207.026]/AP<</N 615 0 R>>>> +endobj +608 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 197.188 792 317.188]/Parent 607 0 R>> +endobj +613 0 obj +<</Length 237/Filter/FlateDecode/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 207.026 215.59 317.188]/Matrix[ 1 0 0 1 -72.024 -207.026]/Resources<</ProcSet[/PDF]>>>> +stream +xl;n0D{'XBIc5nr0oe0(QN4/ϕ52pO@,.F)#ʔ,c+ 5+endstream +endobj +614 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 143.566 110.162]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 613 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +615 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 143.566 110.162]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 614 0 R>>/ExtGState<</R0 616 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +616 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +617 0 obj +<</Type/Annot/Subtype/Highlight/P 12 0 R/F 4/M(D:20260319194116+05'30')/NM(694da513-3370-482e-833c-0d072070bf4d)/Rect[ 72.024 93.096 526.46928 123.116]/C[ .968627 .6 .819608]/Popup 618 0 R/CA 1/CreationDate(D:20260319194116+05'30')/QuadPoints[ 72.024 123.116 526.46928 123.116 72.024 108.212 526.46928 108.212 72.024 108 451.98224 108 72.024 93.096 451.98224 93.096]/AP<</N 625 0 R>>>> +endobj +618 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 3.116 792 123.116]/Parent 617 0 R>> +endobj +623 0 obj +<</Length 180/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 93.096 526.46928 123.116]/Matrix[ 1 0 0 1 -72.024 -93.096]/Resources<</ProcSet[/PDF]>>>> +stream +.968627 .6 .819608 rg +.9315 w +72.024 108.212 m +72.024 123.116 l +526.46928 123.116 l +526.46928 108.212 l +f +.9315 w +72.024 93.096 m +72.024 108 l +451.98224 108 l +451.98224 93.096 l +f + +endstream +endobj +624 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 454.44528 30.02]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 623 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +625 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 454.44528 30.02]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 624 0 R>>/ExtGState<</R0 626 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +626 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +627 0 obj +[ 628 0 R 629 0 R 638 0 R 639 0 R] +endobj +628 0 obj +<</Type/Annot/Subtype/Highlight/P 14 0 R/F 4/M(D:20260319194257+05'30')/NM(c9677891-e1cf-484d-b4de-fc03fa9a46e3)/Rect[ 72.024 369.46 311.4 683.758]/C[ .968627 .6 .819608]/Popup 629 0 R/CA 1/CreationDate(D:20260319194257+05'30')/QuadPoints[ 72.024 683.758 224.02 683.758 72.024 669.406 224.02 669.406 72.024 669.406 224.02 669.406 72.024 655.966 224.02 655.966 224.02 670.318 233.38 670.318 224.02 655.966 233.38 655.966 72.024 655.966 78.264 655.966 72.024 642.046 78.264 642.046 72.024 642.046 78.264 642.046 72.024 628.346 78.264 628.346 78.264 642.698 236.5 642.698 78.264 628.346 236.5 628.346 72.024 628.346 78.264 628.346 72.024 614.906 78.264 614.906 78.264 628.346 175.03 628.346 78.264 614.906 175.03 614.906 72.024 614.906 78.264 614.906 72.024 601.466 78.264 601.466 78.264 614.906 175.03 614.906 78.264 601.466 175.03 601.466 175.03 615.818 222.58 615.818 175.03 601.466 222.58 601.466 72.024 601.418 83.304 601.418 72.024 587.066 83.304 587.066 72.024 587.066 83.304 587.066 72.024 573.386 83.304 573.386 83.304 587.738 255.7 587.738 83.304 573.386 255.7 573.386 72.024 573.386 83.304 573.386 72.024 559.946 83.304 559.946 83.304 573.386 209.59 573.386 83.304 559.946 209.59 559.946 72.024 559.946 83.304 559.946 72.024 546.506 83.304 546.506 83.304 559.946 209.59 559.946 83.304 546.506 209.59 546.506 209.59 560.858 311.4 560.858 209.59 546.506 311.4 546.506 72.024 546.506 83.304 546.506 72.024 533.036 83.304 533.036 83.304 546.506 140.69 546.506 83.304 533.036 140.69 533.036 72.024 533.036 78.504 533.036 72.024 519.596 78.504 519.596 72.024 519.596 78.264 519.596 72.024 505.436 78.264 505.436 72.024 505.436 78.264 505.436 72.024 491.756 78.264 491.756 78.264 506.108 193.51 506.108 78.264 491.756 193.51 491.756 72.024 491.756 78.264 491.756 72.024 478.316 78.264 478.316 78.264 491.756 180.79 491.756 78.264 478.316 180.79 478.316 72.024 478.316 78.264 478.316 72.024 464.876 78.264 464.876 78.264 478.316 180.79 478.316 78.264 464.876 180.79 464.876 180.79 479.228 204.55 479.228 180.79 464.876 204.55 464.876 72.024 454.416 118.85288 454.416 72.024 439.512 118.85288 439.512 72.024 439.44 112.25 439.44 72.024 425.64 112.25 425.64 72.024 425.28 112.25 425.28 72.024 411.48 112.25 411.48 72.024 411.36 78.624 411.36 72.024 397.56 78.624 397.56 72.024 397.2 145.61 397.2 72.024 383.4 145.61 383.4 72.024 383.26 118.73 383.26 72.024 369.46 118.73 369.46]/AP<</N 636 0 R>>>> +endobj +629 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 563.758 792 683.758]/Parent 628 0 R>> +endobj +634 0 obj +<</Length 596/Filter/FlateDecode/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 369.46 311.4 683.758]/Matrix[ 1 0 0 1 -72.024 -369.46]/Resources<</ProcSet[/PDF]>>>> +stream +xlV9v! )~˅&4ir0bLSM%|QؚL~?Tj>ّqJR0j (r,ǹxH5b*Dr{`lۑ{+nz":_; e%zY@uT)& +0`D*eN}- ~rfx.g"`x+嶾5zgNY<(ު \8Ӊnlz}?+endstream +endobj +635 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 239.376 314.298]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 634 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +636 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 239.376 314.298]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 635 0 R>>/ExtGState<</R0 637 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +637 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +638 0 obj +<</Type/Annot/Subtype/Highlight/P 14 0 R/F 4/M(D:20260319194323+05'30')/NM(8102029d-11f5-470c-8ad6-e3a17f1414bd)/Rect[ 72.024 273.382 513.88224 348.076]/C[ .560784 .870588 .976471]/Popup 639 0 R/CA 1/CreationDate(D:20260319194323+05'30')/QuadPoints[ 72.024 348.076 502.64592 348.076 72.024 333.172 502.64592 333.172 72.024 333.172 502.64592 333.172 72.024 318.292 502.64592 318.292 502.64592 333.196 504.17608 333.196 502.64592 318.292 504.17608 318.292 72.024 318.292 312.12288 318.292 72.024 303.412 312.12288 303.412 72.024 303.166 513.88224 303.166 72.024 288.262 513.88224 288.262 72.024 288.262 372.65712 288.262 72.024 273.382 372.65712 273.382]/AP<</N 646 0 R>>>> +endobj +639 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 228.076 792 348.076]/Parent 638 0 R>> +endobj +644 0 obj +<</Length 168/Filter/FlateDecode/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 273.382 513.88224 348.076]/Matrix[ 1 0 0 1 -72.024 -273.382]/Resources<</ProcSet[/PDF]>>>> +stream +xt;0 {'XKILiWz; Udp+=C3'h5?̀Fy=8ӼZTj9%6g0h<>gpuwt_sh- d$@"9: Q"dp *؃ɝh^2ec_+endstream +endobj +645 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 441.85824 74.694]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 644 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +646 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 441.85824 74.694]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 645 0 R>>/ExtGState<</R0 647 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +647 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +648 0 obj +[ 649 0 R 650 0 R 659 0 R 660 0 R] +endobj +649 0 obj +<</Type/Annot/Subtype/Highlight/P 15 0 R/F 4/M(D:20260319194339+05'30')/NM(dbf2505c-9524-4a25-8b71-ea34d6435484)/Rect[ 72.024 685.27 523.932 726.61]/C[ .921569 .286275 .286275]/Popup 650 0 R/CA 1/CreationDate(D:20260319194339+05'30')/QuadPoints[ 72.024 726.61 523.932 726.61 72.024 705.91 523.932 705.91 72.024 705.91 162.754 705.91 72.024 685.27 162.754 685.27]/AP<</N 657 0 R>>>> +endobj +650 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 606.61 792 726.61]/Parent 649 0 R>> +endobj +655 0 obj +<</Length 180/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 685.27 523.932 726.61]/Matrix[ 1 0 0 1 -72.024 -685.27]/Resources<</ProcSet[/PDF]>>>> +stream +.921569 .286275 .286275 rg +1.29375 w +72.024 705.91 m +72.024 726.61 l +523.932 726.61 l +523.932 705.91 l +f +1.29 w +72.024 685.27 m +72.024 705.91 l +162.754 705.91 l +162.754 685.27 l +f + +endstream +endobj +656 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 451.908 41.34]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 655 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +657 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 451.908 41.34]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 656 0 R>>/ExtGState<</R0 658 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +658 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +659 0 obj +<</Type/Annot/Subtype/Highlight/P 15 0 R/F 4/M(D:20260319195019+05'30')/NM(e1196bac-a176-43eb-9793-0fa8ddd8c352)/Rect[ 72.024 196.49 500.82 237.85]/C[ .921569 .286275 .286275]/Popup 660 0 R/CA 1/CreationDate(D:20260319195019+05'30')/QuadPoints[ 72.024 237.85 500.82 237.85 72.024 217.15 500.82 217.15 72.024 217.15 157.29 217.15 72.024 196.49 157.29 196.49]/AP<</N 667 0 R>>>> +endobj +660 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 117.85 792 237.85]/Parent 659 0 R>> +endobj +665 0 obj +<</Length 179/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 196.49 500.82 237.85]/Matrix[ 1 0 0 1 -72.024 -196.49]/Resources<</ProcSet[/PDF]>>>> +stream +.921569 .286275 .286275 rg +1.29375 w +72.024 217.15 m +72.024 237.85 l +500.82 237.85 l +500.82 217.15 l +f +1.29125 w +72.024 196.49 m +72.024 217.15 l +157.29 217.15 l +157.29 196.49 l +f + +endstream +endobj +666 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 428.796 41.36]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 665 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +667 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 428.796 41.36]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 666 0 R>>/ExtGState<</R0 668 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +668 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +669 0 obj +[ 670 0 R 671 0 R] +endobj +670 0 obj +<</Type/Annot/Subtype/Highlight/P 16 0 R/F 4/M(D:20260319195034+05'30')/NM(8edb93d6-6ef1-41cc-ba27-d39ee50a6c65)/Rect[ 72.024 450.072 505.69152 494.996]/C[ .490196 .941176 .4]/Popup 671 0 R/CA 1/CreationDate(D:20260319195034+05'30')/QuadPoints[ 72.024 494.996 481.46392 494.996 72.024 480.092 481.46392 480.092 72.024 479.876 505.69152 479.876 72.024 464.972 505.69152 464.972 72.024 464.972 246.81552 464.972 72.024 450.072 246.81552 450.072]/AP<</N 678 0 R>>>> +endobj +671 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 374.996 792 494.996]/Parent 670 0 R>> +endobj +676 0 obj +<</Length 118/Filter/FlateDecode/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 450.072 505.69152 494.996]/Matrix[ 1 0 0 1 -72.024 -450.072]/Resources<</ProcSet[/PDF]>>>> +stream +xlK0>'x2PI7%9jVH3@s:!9j* ѧB"ڛV[6Ž=^6#1<Mה5j=EX+endstream +endobj +677 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 433.66752 44.924]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 676 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +678 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 433.66752 44.924]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 677 0 R>>/ExtGState<</R0 679 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +679 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +6 0 obj +<</Author(Abhik)/Creator<FEFF004D006900630072006F0073006F0066007400AE00200057006F0072006400200032003000310036>/CreationDate(D:20240603093200+00'00')/Producer(www.ilovepdf.com)/ModDate(D:20260319195035+05'30')>> +endobj +xref +6 7 +0000558383 00000 n +0000531096 00000 n +0000531410 00000 n +0000531714 00000 n +0000532018 00000 n +0000532323 00000 n +0000532658 00000 n +14 3 +0000533032 00000 n +0000533367 00000 n +0000533702 00000 n +532 3 +0000534038 00000 n +0000534090 00000 n +0000534509 00000 n +539 6 +0000534618 00000 n +0000534996 00000 n +0000535219 00000 n +0000535458 00000 n +0000535517 00000 n +0000535935 00000 n +549 7 +0000536044 00000 n +0000536429 00000 n +0000536652 00000 n +0000536891 00000 n +0000536950 00000 n +0000536986 00000 n +0000537668 00000 n +560 7 +0000537777 00000 n +0000538165 00000 n +0000538389 00000 n +0000538629 00000 n +0000538688 00000 n +0000538724 00000 n +0000539263 00000 n +571 7 +0000539372 00000 n +0000539715 00000 n +0000539938 00000 n +0000540177 00000 n +0000540236 00000 n +0000540272 00000 n +0000540614 00000 n +582 7 +0000540723 00000 n +0000541012 00000 n +0000541235 00000 n +0000541474 00000 n +0000541533 00000 n +0000541569 00000 n +0000542049 00000 n +593 6 +0000542158 00000 n +0000542488 00000 n +0000542711 00000 n +0000542950 00000 n +0000543009 00000 n +0000543943 00000 n +603 6 +0000544050 00000 n +0000544510 00000 n +0000544734 00000 n +0000544974 00000 n +0000545033 00000 n +0000546030 00000 n +613 6 +0000546139 00000 n +0000546583 00000 n +0000546805 00000 n +0000547043 00000 n +0000547102 00000 n +0000547505 00000 n +623 7 +0000547612 00000 n +0000547981 00000 n +0000548203 00000 n +0000548441 00000 n +0000548500 00000 n +0000548552 00000 n +0000550965 00000 n +634 6 +0000551074 00000 n +0000551874 00000 n +0000552096 00000 n +0000552334 00000 n +0000552393 00000 n +0000553082 00000 n +644 7 +0000553191 00000 n +0000553569 00000 n +0000553792 00000 n +0000554031 00000 n +0000554090 00000 n +0000554142 00000 n +0000554541 00000 n +655 6 +0000554648 00000 n +0000555014 00000 n +0000555234 00000 n +0000555470 00000 n +0000555529 00000 n +0000555923 00000 n +665 7 +0000556030 00000 n +0000556394 00000 n +0000556614 00000 n +0000556850 00000 n +0000556909 00000 n +0000556945 00000 n +0000557425 00000 n +676 4 +0000557534 00000 n +0000557862 00000 n +0000558085 00000 n +0000558324 00000 n +trailer +<</Size 680/Root 1 0 R/Info 6 0 R/ID[<C625544EC9777731F743C9688D540575><15B56DD1F8A4865AB13744ECA059F0DD>]/Prev 520298>> +startxref +558609 +%%EOF diff --git a/Semester_1/R/Material_PDF/R5.pdf b/Semester_1/R/Material_PDF/R5.pdf @@ -4106,3 +4106,77 @@ trailer startxref 586805 %%EOF +7 0 obj +<</Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources<</ExtGState<</GS5 14 0 R/GS11 15 0 R>>/Font<</F1 16 0 R/F2 17 0 R/F3 18 0 R/F4 19 0 R/F5 20 0 R/F6 21 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Contents 22 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 0/Parent 2 0 R/Annots 187 0 R>> +endobj +187 0 obj +[ 188 0 R 189 0 R] +endobj +188 0 obj +<</Type/Annot/Subtype/Highlight/P 7 0 R/F 4/M(D:20260319201152+05'30')/NM(e3be2856-331e-4711-a799-f1288657f4cc)/Rect[ 72.024 699.31 506.422 742.42]/C[ .560784 .870588 .976471]/Popup 189 0 R/CA 1/CreationDate(D:20260319201152+05'30')/QuadPoints[ 72.024 742.42 506.422 742.42 72.024 728.62 506.422 728.62 72.024 727.75 485.112 727.75 72.024 713.95 485.112 713.95 72.024 713.11 305.712 713.11 72.024 699.31 305.712 699.31]/AP<</N 196 0 R>>>> +endobj +189 0 obj +<</Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 622.42 792 742.42]/Parent 188 0 R>> +endobj +194 0 obj +<</Length 239/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 699.31 506.422 742.42]/Matrix[ 1 0 0 1 -72.024 -699.31]/Resources<</ProcSet[/PDF]>>>> +stream +.560784 .870588 .976471 rg +.8625 w +72.024 728.62 m +72.024 742.42 l +506.422 742.42 l +506.422 728.62 l +f +72.024 713.95 m +72.024 727.75 l +485.112 727.75 l +485.112 713.95 l +f +72.024 699.31 m +72.024 713.11 l +305.712 713.11 l +305.712 699.31 l +f + +endstream +endobj +195 0 obj +<</Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 434.398 43.11]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</Form 194 0 R>>>>/Group<</S/Transparency>>>> +stream +/Form Do + +endstream +endobj +196 0 obj +<</Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 434.398 43.11]/Matrix[ 1 0 0 1 0 0]/Resources<</ProcSet[/PDF]/XObject<</MWFOForm 195 0 R>>/ExtGState<</R0 197 0 R>>>>>> +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +197 0 obj +<</Type/ExtGState/AIS false/BM/Multiply>> +endobj +6 0 obj +<</Author(Abhik)/Creator<FEFF004D006900630072006F0073006F0066007400AE00200057006F0072006400200032003000310036>/CreationDate(D:20240603093228+00'00')/Producer(www.ilovepdf.com)/ModDate(D:20260319201153+05'30')>> +endobj +xref +6 2 +0000592576 00000 n +0000590703 00000 n +187 3 +0000591037 00000 n +0000591073 00000 n +0000591529 00000 n +194 4 +0000591636 00000 n +0000592061 00000 n +0000592281 00000 n +0000592517 00000 n +trailer +<</Size 198/Root 1 0 R/Info 6 0 R/ID[<DB27D04F074C0B5B30439E2A70369C27><FDEB94B3CA830C263E790563E1FC73D5>]/Prev 586805>> +startxref +592802 +%%EOF diff --git a/Semester_1/R/temp.r b/Semester_1/R/temp.r @@ -1,11 +1,13 @@ -# declare boolean -x <- TRUE - -print(x) -print(class(x)) - -# declare boolean using single character -y <- F - -print(y) -print(class(y)) - \ No newline at end of file +s1 = rep(c(1,2,3,4,5), times=2) +s2 = c(5,4,3,2,1) +count = 0 +for(i in s1) { + for (j in s2) { + if((i+j) %% 2 == 0) { + count = count + 1 + print(sprintf("%d, %d, %d", i, j, count)) + print(length(s1)) + } + } +} +2^3+ \ No newline at end of file diff --git a/docs/index.html b/docs/index.html @@ -829,6 +829,267 @@ bool isPalindrome(char str[]) { <svg class="folder-icon w-5 h-5 text-blue-500" fill="none" viewBox="0 0 24 24" stroke="currentColor"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 7v10a2 2 0 002 2h14a2 2 0 002-2V9a2 2 0 00-2-2h-6l-2-2H5a2 2 0 00-2 2z" /> </svg> + <span class="font-medium text-slate-700 group-hover:text-blue-600 transition-colors">Code</span> + </div> + <div class="hidden pl-4 mt-1 border-l-2 border-slate-100 ml-3.5"> + + <div class="file-item flex items-center justify-between px-3 py-2 hover:bg-white hover:shadow-sm rounded-lg transition-all group border border-transparent hover:border-slate-100 mb-1"> + <div class="flex items-center gap-2.5 min-w-0 cursor-pointer flex-1" onclick="showCode('code-Semester_1-R-Code-R_Code-1-r', 'R_Code-1.r', 'https://github.com/notamitgamer/bsc/blob/main/Semester_1/R/Code/R_Code-1.r')"> + <svg class="w-4 h-4 text-slate-400" fill="none" viewBox="0 0 24 24" stroke="currentColor"> + <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" /> + </svg> + <span class="text-sm text-slate-600 font-medium group-hover:text-blue-600 truncate">R_Code-1.r</span> + </div> + <div class="flex items-center gap-2 opacity-0 group-hover:opacity-100 transition-opacity"> + <a href="https://github.com/notamitgamer/bsc/blob/main/Semester_1/R/Code/R_Code-1.r" target="_blank" class="p-1.5 text-slate-400 hover:text-slate-700 hover:bg-slate-100 rounded-md" title="View on GitHub"> + <svg class="w-4 h-4" fill="currentColor" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-2.126 1.029-2.935-.103-.253-.446-1.372.097-2.897 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.525.202 2.644.1 2.897.64.809 1.026 1.841 1.026 2.935 0 3.847-2.337 4.687-4.565 4.935.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z" clip-rule="evenodd"></path></svg> + </a> + </div> + <!-- Embedded Code Storage --> + <div id="code-Semester_1-R-Code-R_Code-1-r" style="display:none;"># Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 19 Mar 2026 +# Repo: https://github.com/notamitgamer/bsc +# License: MIT + +# R allows you to assign values to variables in three different ways. + +# Write three lines of code assigning the string &quot;R is fun&quot; to a variable +# using Simple Assignment, Leftward Assignment, and Rightward Assignment. + +simple = &quot;R is fun&quot; +left &lt;- &quot;R is fun&quot; +&quot;R is fun&quot; -&gt; right</div> + </div> + + <div class="file-item flex items-center justify-between px-3 py-2 hover:bg-white hover:shadow-sm rounded-lg transition-all group border border-transparent hover:border-slate-100 mb-1"> + <div class="flex items-center gap-2.5 min-w-0 cursor-pointer flex-1" onclick="showCode('code-Semester_1-R-Code-R_Code-2-r', 'R_Code-2.r', 'https://github.com/notamitgamer/bsc/blob/main/Semester_1/R/Code/R_Code-2.r')"> + <svg class="w-4 h-4 text-slate-400" fill="none" viewBox="0 0 24 24" stroke="currentColor"> + <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" /> + </svg> + <span class="text-sm text-slate-600 font-medium group-hover:text-blue-600 truncate">R_Code-2.r</span> + </div> + <div class="flex items-center gap-2 opacity-0 group-hover:opacity-100 transition-opacity"> + <a href="https://github.com/notamitgamer/bsc/blob/main/Semester_1/R/Code/R_Code-2.r" target="_blank" class="p-1.5 text-slate-400 hover:text-slate-700 hover:bg-slate-100 rounded-md" title="View on GitHub"> + <svg class="w-4 h-4" fill="currentColor" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-2.126 1.029-2.935-.103-.253-.446-1.372.097-2.897 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.525.202 2.644.1 2.897.64.809 1.026 1.841 1.026 2.935 0 3.847-2.337 4.687-4.565 4.935.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z" clip-rule="evenodd"></path></svg> + </a> + </div> + <!-- Embedded Code Storage --> + <div id="code-Semester_1-R-Code-R_Code-2-r" style="display:none;"># Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 19 Mar 2026 +# Repo: https://github.com/notamitgamer/bsc +# License: MIT + +# How do you declare an explicitly integer variable (e.g., the number 14) +# so that its class returns &quot;integer&quot; instead of the default floating-point &quot;numeric&quot;? + +num &lt;- 12L +print(class(num))</div> + </div> + + <div class="file-item flex items-center justify-between px-3 py-2 hover:bg-white hover:shadow-sm rounded-lg transition-all group border border-transparent hover:border-slate-100 mb-1"> + <div class="flex items-center gap-2.5 min-w-0 cursor-pointer flex-1" onclick="showCode('code-Semester_1-R-Code-R_Code-4-r', 'R_Code-4.r', 'https://github.com/notamitgamer/bsc/blob/main/Semester_1/R/Code/R_Code-4.r')"> + <svg class="w-4 h-4 text-slate-400" fill="none" viewBox="0 0 24 24" stroke="currentColor"> + <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" /> + </svg> + <span class="text-sm text-slate-600 font-medium group-hover:text-blue-600 truncate">R_Code-4.r</span> + </div> + <div class="flex items-center gap-2 opacity-0 group-hover:opacity-100 transition-opacity"> + <a href="https://github.com/notamitgamer/bsc/blob/main/Semester_1/R/Code/R_Code-4.r" target="_blank" class="p-1.5 text-slate-400 hover:text-slate-700 hover:bg-slate-100 rounded-md" title="View on GitHub"> + <svg class="w-4 h-4" fill="currentColor" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-2.126 1.029-2.935-.103-.253-.446-1.372.097-2.897 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.525.202 2.644.1 2.897.64.809 1.026 1.841 1.026 2.935 0 3.847-2.337 4.687-4.565 4.935.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z" clip-rule="evenodd"></path></svg> + </a> + </div> + <!-- Embedded Code Storage --> + <div id="code-Semester_1-R-Code-R_Code-4-r" style="display:none;"># Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 19 Mar 2026 +# Repo: https://github.com/notamitgamer/bsc +# License: MIT + +# Write a standard if...else block that checks if a variable named +# age is greater than 18. If the condition is true, print &quot;You are eligible to vote.&quot;, +# otherwise print &quot;You cannot vote.&quot;. + +age &lt;- -1 +if (age &lt; 0) { + print(&quot;Not a valid age.&quot;) +} else if (age &lt; 18) { + print(&quot;Not eligible to vote.&quot;) +} else { + print(&quot;Eligible to vote.&quot;) +}</div> + </div> + + <div class="file-item flex items-center justify-between px-3 py-2 hover:bg-white hover:shadow-sm rounded-lg transition-all group border border-transparent hover:border-slate-100 mb-1"> + <div class="flex items-center gap-2.5 min-w-0 cursor-pointer flex-1" onclick="showCode('code-Semester_1-R-Code-R_Code-5-r', 'R_Code-5.r', 'https://github.com/notamitgamer/bsc/blob/main/Semester_1/R/Code/R_Code-5.r')"> + <svg class="w-4 h-4 text-slate-400" fill="none" viewBox="0 0 24 24" stroke="currentColor"> + <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" /> + </svg> + <span class="text-sm text-slate-600 font-medium group-hover:text-blue-600 truncate">R_Code-5.r</span> + </div> + <div class="flex items-center gap-2 opacity-0 group-hover:opacity-100 transition-opacity"> + <a href="https://github.com/notamitgamer/bsc/blob/main/Semester_1/R/Code/R_Code-5.r" target="_blank" class="p-1.5 text-slate-400 hover:text-slate-700 hover:bg-slate-100 rounded-md" title="View on GitHub"> + <svg class="w-4 h-4" fill="currentColor" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-2.126 1.029-2.935-.103-.253-.446-1.372.097-2.897 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.525.202 2.644.1 2.897.64.809 1.026 1.841 1.026 2.935 0 3.847-2.337 4.687-4.565 4.935.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z" clip-rule="evenodd"></path></svg> + </a> + </div> + <!-- Embedded Code Storage --> + <div id="code-Semester_1-R-Code-R_Code-5-r" style="display:none;"># Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 19 Mar 2026 +# Repo: https://github.com/notamitgamer/bsc +# License: MIT + +# You have a vector of numbers: x &lt;- c(12, 9, 23, 14). +# Use R&#x27;s shorthand ifelse() function to output &quot;EVEN&quot; if a number +# in the vector is divisible by 2 (x %% 2 == 0), and &quot;ODD&quot; if it is not. + +x &lt;- c(12, 9, 23, 14) +ifelse(x %% 2 == 0, &quot;EVEN&quot;, &quot;ODD&quot;)</div> + </div> + + <div class="file-item flex items-center justify-between px-3 py-2 hover:bg-white hover:shadow-sm rounded-lg transition-all group border border-transparent hover:border-slate-100 mb-1"> + <div class="flex items-center gap-2.5 min-w-0 cursor-pointer flex-1" onclick="showCode('code-Semester_1-R-Code-R_Code-6-r', 'R_Code-6.r', 'https://github.com/notamitgamer/bsc/blob/main/Semester_1/R/Code/R_Code-6.r')"> + <svg class="w-4 h-4 text-slate-400" fill="none" viewBox="0 0 24 24" stroke="currentColor"> + <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" /> + </svg> + <span class="text-sm text-slate-600 font-medium group-hover:text-blue-600 truncate">R_Code-6.r</span> + </div> + <div class="flex items-center gap-2 opacity-0 group-hover:opacity-100 transition-opacity"> + <a href="https://github.com/notamitgamer/bsc/blob/main/Semester_1/R/Code/R_Code-6.r" target="_blank" class="p-1.5 text-slate-400 hover:text-slate-700 hover:bg-slate-100 rounded-md" title="View on GitHub"> + <svg class="w-4 h-4" fill="currentColor" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-2.126 1.029-2.935-.103-.253-.446-1.372.097-2.897 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.525.202 2.644.1 2.897.64.809 1.026 1.841 1.026 2.935 0 3.847-2.337 4.687-4.565 4.935.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z" clip-rule="evenodd"></path></svg> + </a> + </div> + <!-- Embedded Code Storage --> + <div id="code-Semester_1-R-Code-R_Code-6-r" style="display:none;"># Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 19 Mar 2026 +# Repo: https://github.com/notamitgamer/bsc +# License: MIT + +# Write a while loop with a number variable starting at 1. +# The loop should print the number and increment it by 1, +# but you must include an if statement with a break command to +# stop the loop&#x27;s execution exactly when number == 6 + +number &lt;- 1 +while (TRUE) { + if(number == 6) { + break + } + print(number) + number = number + 1 +}</div> + </div> + + <div class="file-item flex items-center justify-between px-3 py-2 hover:bg-white hover:shadow-sm rounded-lg transition-all group border border-transparent hover:border-slate-100 mb-1"> + <div class="flex items-center gap-2.5 min-w-0 cursor-pointer flex-1" onclick="showCode('code-Semester_1-R-Code-R_Code-7-r', 'R_Code-7.r', 'https://github.com/notamitgamer/bsc/blob/main/Semester_1/R/Code/R_Code-7.r')"> + <svg class="w-4 h-4 text-slate-400" fill="none" viewBox="0 0 24 24" stroke="currentColor"> + <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" /> + </svg> + <span class="text-sm text-slate-600 font-medium group-hover:text-blue-600 truncate">R_Code-7.r</span> + </div> + <div class="flex items-center gap-2 opacity-0 group-hover:opacity-100 transition-opacity"> + <a href="https://github.com/notamitgamer/bsc/blob/main/Semester_1/R/Code/R_Code-7.r" target="_blank" class="p-1.5 text-slate-400 hover:text-slate-700 hover:bg-slate-100 rounded-md" title="View on GitHub"> + <svg class="w-4 h-4" fill="currentColor" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-2.126 1.029-2.935-.103-.253-.446-1.372.097-2.897 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.525.202 2.644.1 2.897.64.809 1.026 1.841 1.026 2.935 0 3.847-2.337 4.687-4.565 4.935.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z" clip-rule="evenodd"></path></svg> + </a> + </div> + <!-- Embedded Code Storage --> + <div id="code-Semester_1-R-Code-R_Code-7-r" style="display:none;"># Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 19 Mar 2026 +# Repo: https://github.com/notamitgamer/bsc +# License: MIT + +# Create a numerical vector containing the sequence of +# numbers from 1 to 5 using the : operator. Then, use the rep() +# function with the times argument to repeat that entire sequence exactly 2 times. + +s &lt;- rep(c(1:5), times= 2) +print(s)</div> + </div> + + <div class="file-item flex items-center justify-between px-3 py-2 hover:bg-white hover:shadow-sm rounded-lg transition-all group border border-transparent hover:border-slate-100 mb-1"> + <div class="flex items-center gap-2.5 min-w-0 cursor-pointer flex-1" onclick="showCode('code-Semester_1-R-Code-R_Code-8-r', 'R_Code-8.r', 'https://github.com/notamitgamer/bsc/blob/main/Semester_1/R/Code/R_Code-8.r')"> + <svg class="w-4 h-4 text-slate-400" fill="none" viewBox="0 0 24 24" stroke="currentColor"> + <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" /> + </svg> + <span class="text-sm text-slate-600 font-medium group-hover:text-blue-600 truncate">R_Code-8.r</span> + </div> + <div class="flex items-center gap-2 opacity-0 group-hover:opacity-100 transition-opacity"> + <a href="https://github.com/notamitgamer/bsc/blob/main/Semester_1/R/Code/R_Code-8.r" target="_blank" class="p-1.5 text-slate-400 hover:text-slate-700 hover:bg-slate-100 rounded-md" title="View on GitHub"> + <svg class="w-4 h-4" fill="currentColor" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-2.126 1.029-2.935-.103-.253-.446-1.372.097-2.897 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.525.202 2.644.1 2.897.64.809 1.026 1.841 1.026 2.935 0 3.847-2.337 4.687-4.565 4.935.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z" clip-rule="evenodd"></path></svg> + </a> + </div> + <!-- Embedded Code Storage --> + <div id="code-Semester_1-R-Code-R_Code-8-r" style="display:none;"># Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 19 Mar 2026 +# Repo: https://github.com/notamitgamer/bsc +# License: MIT + +# Create a list named list1 containing the number 24, +# the string &quot;Sabby&quot;, the float 5.4, and the string &quot;Nepal&quot;. +# Then, write the code using the append() function to add the number 3.14 to the very end of this list. + +list1 &lt;- list(24L, &quot;Sabby&quot;, 5.4, &quot;Nepal&quot;) +print(&quot;Before update&quot;) +print(list1) +print(&quot;After Update&quot;) +append(list1, 3.14)</div> + </div> + + <div class="file-item flex items-center justify-between px-3 py-2 hover:bg-white hover:shadow-sm rounded-lg transition-all group border border-transparent hover:border-slate-100 mb-1"> + <div class="flex items-center gap-2.5 min-w-0 cursor-pointer flex-1" onclick="showCode('code-Semester_1-R-Code-R_Code-9-r', 'R_Code-9.r', 'https://github.com/notamitgamer/bsc/blob/main/Semester_1/R/Code/R_Code-9.r')"> + <svg class="w-4 h-4 text-slate-400" fill="none" viewBox="0 0 24 24" stroke="currentColor"> + <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" /> + </svg> + <span class="text-sm text-slate-600 font-medium group-hover:text-blue-600 truncate">R_Code-9.r</span> + </div> + <div class="flex items-center gap-2 opacity-0 group-hover:opacity-100 transition-opacity"> + <a href="https://github.com/notamitgamer/bsc/blob/main/Semester_1/R/Code/R_Code-9.r" target="_blank" class="p-1.5 text-slate-400 hover:text-slate-700 hover:bg-slate-100 rounded-md" title="View on GitHub"> + <svg class="w-4 h-4" fill="currentColor" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-2.126 1.029-2.935-.103-.253-.446-1.372.097-2.897 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.525.202 2.644.1 2.897.64.809 1.026 1.841 1.026 2.935 0 3.847-2.337 4.687-4.565 4.935.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z" clip-rule="evenodd"></path></svg> + </a> + </div> + <!-- Embedded Code Storage --> + <div id="code-Semester_1-R-Code-R_Code-9-r" style="display:none;"># Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 19 Mar 2026 +# Repo: https://github.com/notamitgamer/bsc +# License: MIT + +# Define a function called power that takes two parameters, +# a and b. Give a a default value of 2. The function should print the result +# of a raised to the power of b (a^b). + +power &lt;- function (a, b) { + return (a^b) +} +a &lt;- 2 +b &lt;- 3 +print(power(a, b))</div> + </div> + + <div class="file-item flex items-center justify-between px-3 py-2 hover:bg-white hover:shadow-sm rounded-lg transition-all group border border-transparent hover:border-slate-100 mb-1"> + <div class="flex items-center gap-2.5 min-w-0 cursor-pointer flex-1" onclick="showCode('code-Semester_1-R-Code-R_code-3-r', 'R_code-3.r', 'https://github.com/notamitgamer/bsc/blob/main/Semester_1/R/Code/R_code-3.r')"> + <svg class="w-4 h-4 text-slate-400" fill="none" viewBox="0 0 24 24" stroke="currentColor"> + <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" /> + </svg> + <span class="text-sm text-slate-600 font-medium group-hover:text-blue-600 truncate">R_code-3.r</span> + </div> + <div class="flex items-center gap-2 opacity-0 group-hover:opacity-100 transition-opacity"> + <a href="https://github.com/notamitgamer/bsc/blob/main/Semester_1/R/Code/R_code-3.r" target="_blank" class="p-1.5 text-slate-400 hover:text-slate-700 hover:bg-slate-100 rounded-md" title="View on GitHub"> + <svg class="w-4 h-4" fill="currentColor" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-2.126 1.029-2.935-.103-.253-.446-1.372.097-2.897 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.525.202 2.644.1 2.897.64.809 1.026 1.841 1.026 2.935 0 3.847-2.337 4.687-4.565 4.935.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z" clip-rule="evenodd"></path></svg> + </a> + </div> + <!-- Embedded Code Storage --> + <div id="code-Semester_1-R-Code-R_code-3-r" style="display:none;"># Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 19 Mar 2026 +# Repo: https://github.com/notamitgamer/bsc +# License: MIT + +# Assume you have a variable company &lt;- &quot;Programiz&quot;. +# Write a line of code using the paste0() function to print &quot;Welcome toProgramiz&quot; +# ensuring there is no default space between the string and the variable. + +company &lt;- &quot;Programiz&quot; +print(paste0(&quot;welcome to&quot;, company))</div> + </div> + + </div> + </div> + + <div class="folder-container mb-2"> + <div class="flex items-center gap-2 px-3 py-2 cursor-pointer hover:bg-slate-100 rounded-lg transition-colors group select-none" onclick="toggleFolder(this)"> + <svg class="chevron w-4 h-4 text-slate-400 transition-transform duration-200" fill="none" viewBox="0 0 24 24" stroke="currentColor"> + <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7" /> + </svg> + <svg class="folder-icon w-5 h-5 text-blue-500" fill="none" viewBox="0 0 24 24" stroke="currentColor"> + <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 7v10a2 2 0 002 2h14a2 2 0 002-2V9a2 2 0 00-2-2h-6l-2-2H5a2 2 0 00-2 2z" /> + </svg> <span class="font-medium text-slate-700 group-hover:text-blue-600 transition-colors">Material_PDF</span> </div> <div class="hidden pl-4 mt-1 border-l-2 border-slate-100 ml-3.5"> @@ -26763,6 +27024,668 @@ trailer startxref 685977 %%EOF +24 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.32 841.92]/Resources&lt;&lt;/ExtGState&lt;&lt;/GS5 986 0 R/GS11 987 0 R&gt;&gt;/Font&lt;&lt;/F4 991 0 R/F3 990 0 R/F2 989 0 R/F7 1001 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Contents 1005 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 10/Parent 7 0 R/Annots 1429 0 R&gt;&gt; +endobj +25 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.32 841.92]/Resources&lt;&lt;/ExtGState&lt;&lt;/GS5 986 0 R/GS11 987 0 R&gt;&gt;/Font&lt;&lt;/F4 991 0 R/F3 990 0 R/F2 989 0 R/F5 992 0 R/F7 1001 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Contents 1006 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 11/Parent 7 0 R/Annots 1470 0 R&gt;&gt; +endobj +27 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.32 841.92]/Resources&lt;&lt;/ExtGState&lt;&lt;/GS5 986 0 R/GS11 987 0 R&gt;&gt;/Font&lt;&lt;/F3 990 0 R/F4 991 0 R/F7 1001 0 R/F2 989 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Contents 1008 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 13/Parent 7 0 R/Annots 1481 0 R&gt;&gt; +endobj +28 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.32 841.92]/Resources&lt;&lt;/ExtGState&lt;&lt;/GS5 986 0 R/GS11 987 0 R&gt;&gt;/Font&lt;&lt;/F4 991 0 R/F3 990 0 R/F2 989 0 R/F7 1001 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Contents 1009 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 14/Parent 7 0 R/Annots 1492 0 R&gt;&gt; +endobj +36 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.32 841.92]/Resources&lt;&lt;/ExtGState&lt;&lt;/GS5 986 0 R/GS11 987 0 R&gt;&gt;/Font&lt;&lt;/F1 988 0 R/F2 989 0 R/F3 990 0 R/F4 991 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Contents 1020 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 24/Parent 8 0 R/Annots 1503 0 R&gt;&gt; +endobj +37 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.32 841.92]/Resources&lt;&lt;/ExtGState&lt;&lt;/GS5 986 0 R/GS11 987 0 R&gt;&gt;/Font&lt;&lt;/F3 990 0 R/F4 991 0 R/F2 989 0 R/F1 988 0 R/F5 992 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Contents 1021 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 25/Parent 8 0 R/Annots 1514 0 R&gt;&gt; +endobj +38 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.32 841.92]/Resources&lt;&lt;/ExtGState&lt;&lt;/GS5 986 0 R/GS11 987 0 R&gt;&gt;/Font&lt;&lt;/F5 992 0 R/F3 990 0 R/F9 1022 0 R/F2 989 0 R/F4 991 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Annots[ 1023 0 R 1535 0 R 1536 0 R]/Contents 1024 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 27/Parent 8 0 R&gt;&gt; +endobj +39 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.32 841.92]/Resources&lt;&lt;/ExtGState&lt;&lt;/GS5 986 0 R/GS11 987 0 R&gt;&gt;/Font&lt;&lt;/F4 991 0 R/F2 989 0 R/F3 990 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Contents 1025 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 28/Parent 8 0 R/Annots 1545 0 R&gt;&gt; +endobj +40 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.32 841.92]/Resources&lt;&lt;/ExtGState&lt;&lt;/GS5 986 0 R/GS11 987 0 R&gt;&gt;/Font&lt;&lt;/F4 991 0 R/F2 989 0 R/F3 990 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Contents 1026 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 29/Parent 8 0 R/Annots 1556 0 R&gt;&gt; +endobj +1429 0 obj +[ 1430 0 R 1431 0 R 1440 0 R 1441 0 R 1460 0 R 1461 0 R] +endobj +1430 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 24 0 R/F 4/M(D:20260318192841+05&#x27;30&#x27;)/NM(e608fda0-7344-435f-9837-0ddd1f9e45f6)/Rect[ 72.024 691.072 483.5822 729.106]/C[ .490196 .941176 .4]/Popup 1431 0 R/CA 1/CreationDate(D:20260318192841+05&#x27;30&#x27;)/QuadPoints[ 72.024 729.106 483.5822 729.106 72.024 713.512 483.5822 713.512 72.024 706.666 291.89648 706.666 72.024 691.072 291.89648 691.072]/AP&lt;&lt;/N 1438 0 R&gt;&gt;&gt;&gt; +endobj +1431 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 609.106 792 729.106]/Parent 1430 0 R&gt;&gt; +endobj +1436 0 obj +&lt;&lt;/Length 182/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 691.072 483.5822 729.106]/Matrix[ 1 0 0 1 -72.024 -691.072]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.490196 .941176 .4 rg +.974625 w +72.024 713.512 m +72.024 729.106 l +483.5822 729.106 l +483.5822 713.512 l +f +72.024 691.072 m +72.024 706.666 l +291.89648 706.666 l +291.89648 691.072 l +f + +endstream +endobj +1437 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 411.5582 38.034]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 1436 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +1438 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 411.5582 38.034]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 1437 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 1439 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +1439 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +1440 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 24 0 R/F 4/M(D:20260318192846+05&#x27;30&#x27;)/NM(c31a56f6-d028-444b-b7e5-96edd1c696d1)/Rect[ 72.024 646.072 507.62966 684.106]/C[ .560784 .870588 .976471]/Popup 1441 0 R/CA 1/CreationDate(D:20260318192846+05&#x27;30&#x27;)/QuadPoints[ 72.024 684.106 507.62966 684.106 72.024 668.512 507.62966 668.512 72.024 661.666 345.35968 661.666 72.024 646.072 345.35968 646.072]/AP&lt;&lt;/N 1448 0 R&gt;&gt;&gt;&gt; +endobj +1441 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 564.106 792 684.106]/Parent 1440 0 R&gt;&gt; +endobj +1446 0 obj +&lt;&lt;/Length 189/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 646.072 507.62966 684.106]/Matrix[ 1 0 0 1 -72.024 -646.072]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.560784 .870588 .976471 rg +.974625 w +72.024 668.512 m +72.024 684.106 l +507.62966 684.106 l +507.62966 668.512 l +f +72.024 646.072 m +72.024 661.666 l +345.35968 661.666 l +345.35968 646.072 l +f + +endstream +endobj +1447 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 435.60566 38.034]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 1446 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +1448 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 435.60566 38.034]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 1447 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 1449 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +1449 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +1460 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 24 0 R/F 4/M(D:20260318192909+05&#x27;30&#x27;)/NM(d19af37e-18a2-4cda-923a-815c0d012a2f)/Rect[ 72.024 513.322 408.23968 528.916]/C[ .921569 .286275 .286275]/Popup 1461 0 R/CA 1/CreationDate(D:20260318192909+05&#x27;30&#x27;)/QuadPoints[ 72.024 528.916 408.23968 528.916 72.024 513.322 408.23968 513.322]/AP&lt;&lt;/N 1468 0 R&gt;&gt;&gt;&gt; +endobj +1461 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 408.916 792 528.916]/Parent 1460 0 R&gt;&gt; +endobj +1466 0 obj +&lt;&lt;/Length 113/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 513.322 408.23968 528.916]/Matrix[ 1 0 0 1 -72.024 -513.322]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.921569 .286275 .286275 rg +.974625 w +72.024 513.322 m +72.024 528.916 l +408.23968 528.916 l +408.23968 513.322 l +f + +endstream +endobj +1467 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 336.21568 15.594]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 1466 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +1468 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 336.21568 15.594]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 1467 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 1469 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +1469 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +1470 0 obj +[ 1471 0 R 1472 0 R] +endobj +1471 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 25 0 R/F 4/M(D:20260318193333+05&#x27;30&#x27;)/NM(fcfaea22-3f13-4aac-9771-38c827a8b59f)/Rect[ 72.024 229.862 508.67192 313.016]/C[ 1 .941176 .4]/Popup 1472 0 R/CA 1/CreationDate(D:20260318193333+05&#x27;30&#x27;)/QuadPoints[ 72.024 313.016 487.50524 313.016 72.024 297.422 487.50524 297.422 72.024 290.096 262.77968 290.096 72.024 274.502 262.77968 274.502 72.024 268.016 508.67192 268.016 72.024 252.422 508.67192 252.422 72.024 245.456 286.17968 245.456 72.024 229.862 286.17968 229.862]/AP&lt;&lt;/N 1479 0 R&gt;&gt;&gt;&gt; +endobj +1472 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 193.016 792 313.016]/Parent 1471 0 R&gt;&gt; +endobj +1477 0 obj +&lt;&lt;/Length 133/Filter/FlateDecode/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 229.862 508.67192 313.016]/Matrix[ 1 0 0 1 -72.024 -229.862]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +xt;@ =O~4ؠ B;֌UP!0]*-roItFu&#x27;=kl$K;Ziz &quot;b)[]17x19_kF@k+endstream +endobj +1478 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 436.64792 83.154]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 1477 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +1479 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 436.64792 83.154]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 1478 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 1480 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +1480 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +1481 0 obj +[ 1482 0 R 1483 0 R] +endobj +1482 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 27 0 R/F 4/M(D:20260318193458+05&#x27;30&#x27;)/NM(10b3f50a-d7a2-478c-8871-7e5be6926ada)/Rect[ 72.024 746.512 497.06968 784.686]/C[ .490196 .941176 .4]/Popup 1483 0 R/CA 1/CreationDate(D:20260318193458+05&#x27;30&#x27;)/QuadPoints[ 72.024 784.686 476.74412 784.686 72.024 769.092 476.74412 769.092 72.024 762.106 497.06968 762.106 72.024 746.512 497.06968 746.512]/AP&lt;&lt;/N 1490 0 R&gt;&gt;&gt;&gt; +endobj +1483 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 664.686 792 784.686]/Parent 1482 0 R&gt;&gt; +endobj +1488 0 obj +&lt;&lt;/Length 184/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 746.512 497.06968 784.686]/Matrix[ 1 0 0 1 -72.024 -746.512]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.490196 .941176 .4 rg +.974625 w +72.024 769.092 m +72.024 784.686 l +476.74412 784.686 l +476.74412 769.092 l +f +72.024 746.512 m +72.024 762.106 l +497.06968 762.106 l +497.06968 746.512 l +f + +endstream +endobj +1489 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 425.04568 38.174]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 1488 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +1490 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 425.04568 38.174]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 1489 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 1491 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +1491 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +1492 0 obj +[ 1493 0 R 1494 0 R] +endobj +1493 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 28 0 R/F 4/M(D:20260318193607+05&#x27;30&#x27;)/NM(69d0c573-4b2d-49ee-b231-dd57fd77f3e2)/Rect[ 72.024 533.242 523.43924 571.276]/C[ .560784 .870588 .976471]/Popup 1494 0 R/CA 1/CreationDate(D:20260318193607+05&#x27;30&#x27;)/QuadPoints[ 72.024 571.276 523.43924 571.276 72.024 555.682 523.43924 555.682 72.024 548.836 391.07968 548.836 72.024 533.242 391.07968 533.242]/AP&lt;&lt;/N 1501 0 R&gt;&gt;&gt;&gt; +endobj +1494 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 451.276 792 571.276]/Parent 1493 0 R&gt;&gt; +endobj +1499 0 obj +&lt;&lt;/Length 189/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 533.242 523.43924 571.276]/Matrix[ 1 0 0 1 -72.024 -533.242]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.560784 .870588 .976471 rg +.974625 w +72.024 555.682 m +72.024 571.276 l +523.43924 571.276 l +523.43924 555.682 l +f +72.024 533.242 m +72.024 548.836 l +391.07968 548.836 l +391.07968 533.242 l +f + +endstream +endobj +1500 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 451.41524 38.034]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 1499 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +1501 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 451.41524 38.034]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 1500 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 1502 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +1502 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +1503 0 obj +[ 1504 0 R 1505 0 R] +endobj +1504 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 36 0 R/F 4/M(D:20260318194551+05&#x27;30&#x27;)/NM(c5729d2b-4675-440d-8d8c-f3bd4c177647)/Rect[ 72.024 137.792 525.16972 176.186]/C[ .921569 .286275 .286275]/Popup 1505 0 R/CA 1/CreationDate(D:20260318194551+05&#x27;30&#x27;)/QuadPoints[ 72.024 176.186 525.16972 176.186 72.024 160.592 525.16972 160.592 72.024 153.386 344.58 153.386 72.024 137.792 344.58 137.792]/AP&lt;&lt;/N 1512 0 R&gt;&gt;&gt;&gt; +endobj +1505 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 56.186 792 176.186]/Parent 1504 0 R&gt;&gt; +endobj +1510 0 obj +&lt;&lt;/Length 183/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 137.792 525.16972 176.186]/Matrix[ 1 0 0 1 -72.024 -137.792]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.921569 .286275 .286275 rg +.974625 w +72.024 160.592 m +72.024 176.186 l +525.16972 176.186 l +525.16972 160.592 l +f +72.024 137.792 m +72.024 153.386 l +344.58 153.386 l +344.58 137.792 l +f + +endstream +endobj +1511 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 453.14572 38.394]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 1510 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +1512 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 453.14572 38.394]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 1511 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 1513 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +1513 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +1514 0 obj +[ 1515 0 R 1516 0 R 1525 0 R 1526 0 R] +endobj +1515 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 37 0 R/F 4/M(D:20260318194603+05&#x27;30&#x27;)/NM(2b38a4d7-4db7-4d90-b2bf-c068d463bc42)/Rect[ 72.024 723.712 518.6194 784.686]/C[ 1 .941176 .4]/Popup 1516 0 R/CA 1/CreationDate(D:20260318194603+05&#x27;30&#x27;)/QuadPoints[ 72.024 784.686 518.6194 784.686 72.024 769.092 518.6194 769.092 72.024 762.106 506.32036 762.106 72.024 746.512 506.32036 746.512 72.024 739.306 147.1464 739.306 72.024 723.712 147.1464 723.712]/AP&lt;&lt;/N 1523 0 R&gt;&gt;&gt;&gt; +endobj +1516 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 664.686 792 784.686]/Parent 1515 0 R&gt;&gt; +endobj +1521 0 obj +&lt;&lt;/Length 250/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 723.712 518.6194 784.686]/Matrix[ 1 0 0 1 -72.024 -723.712]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +1 .941176 .4 rg +.974625 w +72.024 769.092 m +72.024 784.686 l +518.6194 784.686 l +518.6194 769.092 l +f +72.024 746.512 m +72.024 762.106 l +506.32036 762.106 l +506.32036 746.512 l +f +72.024 723.712 m +72.024 739.306 l +147.1464 739.306 l +147.1464 723.712 l +f + +endstream +endobj +1522 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 446.5954 60.974]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 1521 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +1523 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 446.5954 60.974]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 1522 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 1524 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +1524 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +1525 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 37 0 R/F 4/M(D:20260318194700+05&#x27;30&#x27;)/NM(be81350d-4ec7-439e-8701-58f715d321d2)/Rect[ 54 86.676 287.49968 136.826]/C[ .490196 .941176 .4]/Popup 1526 0 R/CA 1/CreationDate(D:20260318194700+05&#x27;30&#x27;)/QuadPoints[ 72.024 136.826 287.49968 136.826 72.024 121.232 287.49968 121.232 54 102.27 142.62968 102.27 54 86.676 142.62968 86.676]/AP&lt;&lt;/N 1533 0 R&gt;&gt;&gt;&gt; +endobj +1526 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 16.826 792 136.826]/Parent 1525 0 R&gt;&gt; +endobj +1531 0 obj +&lt;&lt;/Length 182/Type/XObject/Subtype/Form/FormType 1/BBox[ 54 86.676 287.49968 136.826]/Matrix[ 1 0 0 1 -54 -86.676]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.490196 .941176 .4 rg +.974625 w +72.024 121.232 m +72.024 136.826 l +287.49968 136.826 l +287.49968 121.232 l +f +.974625 w +54 86.676 m +54 102.27 l +142.62968 102.27 l +142.62968 86.676 l +f + +endstream +endobj +1532 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 233.49968 50.15]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 1531 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +1533 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 233.49968 50.15]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 1532 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 1534 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +1534 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +1535 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 38 0 R/F 4/M(D:20260318194700+05&#x27;30&#x27;)/NM(04bac54a-a437-42b6-b891-483cba30ca75)/Rect[ 54 746.152 150.06968 784.326]/C[ .490196 .941176 .4]/Popup 1536 0 R/CA 1/CreationDate(D:20260318194700+05&#x27;30&#x27;)/QuadPoints[ 54 784.326 127.62968 784.326 54 768.732 127.62968 768.732 54 761.746 150.06968 761.746 54 746.152 150.06968 746.152]/AP&lt;&lt;/N 1543 0 R&gt;&gt;&gt;&gt; +endobj +1536 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 664.326 792 784.326]/Parent 1535 0 R&gt;&gt; +endobj +1541 0 obj +&lt;&lt;/Length 168/Type/XObject/Subtype/Form/FormType 1/BBox[ 54 746.152 150.06968 784.326]/Matrix[ 1 0 0 1 -54 -746.152]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.490196 .941176 .4 rg +.974625 w +54 768.732 m +54 784.326 l +127.62968 784.326 l +127.62968 768.732 l +f +54 746.152 m +54 761.746 l +150.06968 761.746 l +150.06968 746.152 l +f + +endstream +endobj +1542 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 96.06968 38.174]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 1541 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +1543 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 96.06968 38.174]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 1542 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 1544 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +1544 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +1545 0 obj +[ 1546 0 R 1547 0 R] +endobj +1546 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 39 0 R/F 4/M(D:20260318200825+05&#x27;30&#x27;)/NM(51116277-c5f8-43c8-9fba-4efdc1addd3a)/Rect[ 72.024 296.222 519.25876 334.256]/C[ .490196 .941176 .4]/Popup 1547 0 R/CA 1/CreationDate(D:20260318200825+05&#x27;30&#x27;)/QuadPoints[ 72.024 334.256 519.25876 334.256 72.024 318.662 519.25876 318.662 72.024 311.816 300.09968 311.816 72.024 296.222 300.09968 296.222]/AP&lt;&lt;/N 1554 0 R&gt;&gt;&gt;&gt; +endobj +1547 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 214.256 792 334.256]/Parent 1546 0 R&gt;&gt; +endobj +1552 0 obj +&lt;&lt;/Length 194/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 296.222 519.25876 334.256]/Matrix[ 1 0 0 1 -72.024 -296.222]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.490196 .941176 .4 rg +.974625 w +72.024 318.662 m +72.024 334.256 l +519.25876 334.256 l +519.25876 318.662 l +f +.974625 w +72.024 296.222 m +72.024 311.816 l +300.09968 311.816 l +300.09968 296.222 l +f + +endstream +endobj +1553 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 447.23476 38.034]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 1552 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +1554 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 447.23476 38.034]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 1553 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 1555 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +1555 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +1556 0 obj +[ 1557 0 R 1558 0 R] +endobj +1557 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 40 0 R/F 4/M(D:20260318201200+05&#x27;30&#x27;)/NM(c55353c1-c04b-4249-827d-745bb4ef085f)/Rect[ 72.024 279.662 510.39388 317.816]/C[ .560784 .870588 .976471]/Popup 1558 0 R/CA 1/CreationDate(D:20260318201200+05&#x27;30&#x27;)/QuadPoints[ 72.024 317.816 510.39388 317.816 72.024 302.222 510.39388 302.222 72.024 295.256 219.57968 295.256 72.024 279.662 219.57968 279.662]/AP&lt;&lt;/N 1565 0 R&gt;&gt;&gt;&gt; +endobj +1558 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 197.816 792 317.816]/Parent 1557 0 R&gt;&gt; +endobj +1563 0 obj +&lt;&lt;/Length 189/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 279.662 510.39388 317.816]/Matrix[ 1 0 0 1 -72.024 -279.662]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.560784 .870588 .976471 rg +.974625 w +72.024 302.222 m +72.024 317.816 l +510.39388 317.816 l +510.39388 302.222 l +f +72.024 279.662 m +72.024 295.256 l +219.57968 295.256 l +219.57968 279.662 l +f + +endstream +endobj +1564 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 438.36988 38.154]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 1563 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +1565 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 438.36988 38.154]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 1564 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 1566 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +1566 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +6 0 obj +&lt;&lt;/Author(Abhik)/Creator&lt;FEFF004D006900630072006F0073006F0066007400AE00200057006F0072006400200032003000310036&gt;/CreationDate(D:20240603093044+00&#x27;00&#x27;)/Producer(www.ilovepdf.com)/ModDate(D:20260318201202+05&#x27;30&#x27;)&gt;&gt; +endobj +xref +6 1 +0000709488 00000 n +24 2 +0000688949 00000 n +0000689276 00000 n +27 2 +0000689614 00000 n +0000689941 00000 n +36 5 +0000690268 00000 n +0000690594 00000 n +0000690931 00000 n +0000691289 00000 n +0000691604 00000 n +1429 3 +0000691919 00000 n +0000691994 00000 n +0000692408 00000 n +1436 6 +0000692519 00000 n +0000692892 00000 n +0000693116 00000 n +0000693357 00000 n +0000693417 00000 n +0000693839 00000 n +1446 4 +0000693950 00000 n +0000694331 00000 n +0000694556 00000 n +0000694798 00000 n +1460 2 +0000694858 00000 n +0000695214 00000 n +1466 7 +0000695325 00000 n +0000695630 00000 n +0000695855 00000 n +0000696097 00000 n +0000696157 00000 n +0000696196 00000 n +0000696739 00000 n +1477 7 +0000696850 00000 n +0000697194 00000 n +0000697419 00000 n +0000697661 00000 n +0000697721 00000 n +0000697760 00000 n +0000698177 00000 n +1488 7 +0000698288 00000 n +0000698664 00000 n +0000698889 00000 n +0000699131 00000 n +0000699191 00000 n +0000699230 00000 n +0000699652 00000 n +1499 7 +0000699763 00000 n +0000700144 00000 n +0000700369 00000 n +0000700611 00000 n +0000700671 00000 n +0000700710 00000 n +0000701126 00000 n +1510 7 +0000701236 00000 n +0000701611 00000 n +0000701836 00000 n +0000702078 00000 n +0000702138 00000 n +0000702195 00000 n +0000702667 00000 n +1521 6 +0000702778 00000 n +0000703219 00000 n +0000703443 00000 n +0000703684 00000 n +0000703744 00000 n +0000704144 00000 n +1531 6 +0000704254 00000 n +0000704618 00000 n +0000704842 00000 n +0000705083 00000 n +0000705143 00000 n +0000705540 00000 n +1541 7 +0000705651 00000 n +0000706003 00000 n +0000706227 00000 n +0000706468 00000 n +0000706528 00000 n +0000706567 00000 n +0000706984 00000 n +1552 7 +0000707095 00000 n +0000707481 00000 n +0000707706 00000 n +0000707948 00000 n +0000708008 00000 n +0000708047 00000 n +0000708469 00000 n +1563 4 +0000708580 00000 n +0000708961 00000 n +0000709186 00000 n +0000709428 00000 n +trailer +&lt;&lt;/Size 1567/Root 1 0 R/Info 6 0 R/ID[&lt;D25AEF4A8043834B0539CD0FBA5D952C&gt;&lt;9D340A11BB17F344C13690568CADBA47&gt;]/Prev 685977&gt;&gt; +startxref +709714 +%%EOF </div> </div> @@ -37488,6 +38411,1323 @@ trailer startxref 486595 %%EOF +7 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources&lt;&lt;/ExtGState&lt;&lt;/GS5 31 0 R/GS8 32 0 R&gt;&gt;/Font&lt;&lt;/F1 33 0 R/F2 34 0 R/F3 35 0 R/F4 36 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Contents 37 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 0/Parent 2 0 R/Annots 693 0 R&gt;&gt; +endobj +9 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources&lt;&lt;/ExtGState&lt;&lt;/GS5 31 0 R/GS8 32 0 R&gt;&gt;/Font&lt;&lt;/F5 38 0 R/F2 34 0 R/F3 35 0 R/F4 36 0 R/F1 33 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Contents 40 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 2/Parent 2 0 R/Annots 714 0 R&gt;&gt; +endobj +10 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources&lt;&lt;/ExtGState&lt;&lt;/GS5 31 0 R/GS8 32 0 R&gt;&gt;/Font&lt;&lt;/F1 33 0 R/F2 34 0 R/F3 35 0 R/F4 36 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Contents 41 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 3/Parent 2 0 R/Annots 725 0 R&gt;&gt; +endobj +693 0 obj +[ 694 0 R 695 0 R 704 0 R 705 0 R] +endobj +694 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 7 0 R/F 4/M(D:20260318201908+05&#x27;30&#x27;)/NM(dbeab364-4d16-4628-8f16-cdb5dad5b4b2)/Rect[ 72.024 703.438 475.19624 741.484]/C[ 1 .941176 .4]/Popup 695 0 R/CA 1/CreationDate(D:20260318201908+05&#x27;30&#x27;)/QuadPoints[ 72.024 741.484 475.19624 741.484 72.024 726.028 475.19624 726.028 72.024 718.894 134.02272 718.894 72.024 703.438 134.02272 703.438]/AP&lt;&lt;/N 702 0 R&gt;&gt;&gt;&gt; +endobj +695 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 621.484 792 741.484]/Parent 694 0 R&gt;&gt; +endobj +700 0 obj +&lt;&lt;/Length 175/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 703.438 475.19624 741.484]/Matrix[ 1 0 0 1 -72.024 -703.438]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +1 .941176 .4 rg +.966 w +72.024 726.028 m +72.024 741.484 l +475.19624 741.484 l +475.19624 726.028 l +f +72.024 703.438 m +72.024 718.894 l +134.02272 718.894 l +134.02272 703.438 l +f + +endstream +endobj +701 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 403.17224 38.046]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 700 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +702 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 403.17224 38.046]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 701 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 703 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +703 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +704 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 7 0 R/F 4/M(D:20260318201953+05&#x27;30&#x27;)/NM(c0e9aaca-3cae-41f2-90fe-8bcccbfb7e68)/Rect[ 72.024 587.738 501.0776 625.994]/C[ .490196 .941176 .4]/Popup 705 0 R/CA 1/CreationDate(D:20260318201953+05&#x27;30&#x27;)/QuadPoints[ 72.024 625.994 501.0776 625.994 72.024 610.538 501.0776 610.538 72.024 603.194 415.1348 603.194 72.024 587.738 415.1348 587.738]/AP&lt;&lt;/N 712 0 R&gt;&gt;&gt;&gt; +endobj +705 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 505.994 792 625.994]/Parent 704 0 R&gt;&gt; +endobj +710 0 obj +&lt;&lt;/Length 177/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 587.738 501.0776 625.994]/Matrix[ 1 0 0 1 -72.024 -587.738]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.490196 .941176 .4 rg +.966 w +72.024 610.538 m +72.024 625.994 l +501.0776 625.994 l +501.0776 610.538 l +f +72.024 587.738 m +72.024 603.194 l +415.1348 603.194 l +415.1348 587.738 l +f + +endstream +endobj +711 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 429.0536 38.256]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 710 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +712 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 429.0536 38.256]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 711 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 713 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +713 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +714 0 obj +[ 715 0 R 716 0 R] +endobj +715 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 9 0 R/F 4/M(D:20260318204418+05&#x27;30&#x27;)/NM(3f7b1373-a05c-4154-95b3-e29135fa7b9e)/Rect[ 72.024 571.178 506.76272 586.634]/C[ .490196 .941176 .4]/Popup 716 0 R/CA 1/CreationDate(D:20260318204418+05&#x27;30&#x27;)/QuadPoints[ 72.024 586.634 506.76272 586.634 72.024 571.178 506.76272 571.178]/AP&lt;&lt;/N 723 0 R&gt;&gt;&gt;&gt; +endobj +716 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 466.634 792 586.634]/Parent 715 0 R&gt;&gt; +endobj +721 0 obj +&lt;&lt;/Length 105/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 571.178 506.76272 586.634]/Matrix[ 1 0 0 1 -72.024 -571.178]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.490196 .941176 .4 rg +.966 w +72.024 571.178 m +72.024 586.634 l +506.76272 586.634 l +506.76272 571.178 l +f + +endstream +endobj +722 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 434.73872 15.456]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 721 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +723 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 434.73872 15.456]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 722 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 724 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +724 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +725 0 obj +[ 726 0 R 727 0 R] +endobj +726 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 10 0 R/F 4/M(D:20260318204432+05&#x27;30&#x27;)/NM(40d08f7f-5f42-4237-b3b1-90b540c96462)/Rect[ 72.024 703.438 445.9248 741.244]/C[ .490196 .941176 .4]/Popup 727 0 R/CA 1/CreationDate(D:20260318204432+05&#x27;30&#x27;)/QuadPoints[ 72.024 741.244 445.9248 741.244 72.024 725.788 445.9248 725.788 72.024 718.894 185.8964 718.894 72.024 703.438 185.8964 703.438]/AP&lt;&lt;/N 734 0 R&gt;&gt;&gt;&gt; +endobj +727 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 621.244 792 741.244]/Parent 726 0 R&gt;&gt; +endobj +732 0 obj +&lt;&lt;/Length 177/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 703.438 445.9248 741.244]/Matrix[ 1 0 0 1 -72.024 -703.438]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.490196 .941176 .4 rg +.966 w +72.024 725.788 m +72.024 741.244 l +445.9248 741.244 l +445.9248 725.788 l +f +72.024 703.438 m +72.024 718.894 l +185.8964 718.894 l +185.8964 703.438 l +f + +endstream +endobj +733 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 373.9008 37.806]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 732 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +734 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 373.9008 37.806]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 733 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 735 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +735 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +6 0 obj +&lt;&lt;/Author(Abhik)/Creator&lt;FEFF004D006900630072006F0073006F0066007400AE00200057006F0072006400200032003000310036&gt;/CreationDate(D:20240603093105+00&#x27;00&#x27;)/Producer(www.ilovepdf.com)/ModDate(D:20260318204433+05&#x27;30&#x27;)&gt;&gt; +endobj +xref +6 2 +0000507170 00000 n +0000500613 00000 n +9 2 +0000500926 00000 n +0000501249 00000 n +693 3 +0000501563 00000 n +0000501615 00000 n +0000502022 00000 n +700 6 +0000502131 00000 n +0000502497 00000 n +0000502720 00000 n +0000502959 00000 n +0000503018 00000 n +0000503426 00000 n +710 7 +0000503535 00000 n +0000503902 00000 n +0000504124 00000 n +0000504362 00000 n +0000504421 00000 n +0000504457 00000 n +0000504804 00000 n +721 7 +0000504913 00000 n +0000505209 00000 n +0000505432 00000 n +0000505671 00000 n +0000505730 00000 n +0000505766 00000 n +0000506175 00000 n +732 4 +0000506284 00000 n +0000506651 00000 n +0000506873 00000 n +0000507111 00000 n +trailer +&lt;&lt;/Size 736/Root 1 0 R/Info 6 0 R/ID[&lt;8E5C4230D76EB8262802CD0C72637B53&gt;&lt;292DDEEE5DF0CBAB0469FA71DAD6F32F&gt;]/Prev 486595&gt;&gt; +startxref +507396 +%%EOF +12 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources&lt;&lt;/ExtGState&lt;&lt;/GS5 31 0 R/GS8 32 0 R&gt;&gt;/Font&lt;&lt;/F3 35 0 R/F6 43 0 R/F1 33 0 R/F2 34 0 R/F5 38 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Contents 44 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 5/Parent 2 0 R/Annots 736 0 R&gt;&gt; +endobj +13 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources&lt;&lt;/ExtGState&lt;&lt;/GS5 31 0 R/GS8 32 0 R&gt;&gt;/Font&lt;&lt;/F3 35 0 R/F1 33 0 R/F2 34 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Contents 45 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 6/Parent 2 0 R/Annots 747 0 R&gt;&gt; +endobj +14 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources&lt;&lt;/ExtGState&lt;&lt;/GS5 31 0 R/GS8 32 0 R&gt;&gt;/Font&lt;&lt;/F3 35 0 R/F1 33 0 R/F2 34 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Contents 46 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 7/Parent 2 0 R/Annots 758 0 R&gt;&gt; +endobj +16 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources&lt;&lt;/ExtGState&lt;&lt;/GS5 31 0 R/GS8 32 0 R&gt;&gt;/Font&lt;&lt;/F1 33 0 R/F2 34 0 R/F3 35 0 R/F7 49 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Contents 50 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 9/Parent 2 0 R/Annots 769 0 R&gt;&gt; +endobj +17 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources&lt;&lt;/ExtGState&lt;&lt;/GS5 31 0 R/GS8 32 0 R&gt;&gt;/Font&lt;&lt;/F2 34 0 R/F5 38 0 R/F3 35 0 R/F1 33 0 R&gt;&gt;/XObject&lt;&lt;/Image49 51 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Contents 52 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 10/Parent 2 0 R/Annots 810 0 R&gt;&gt; +endobj +18 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources&lt;&lt;/ExtGState&lt;&lt;/GS5 31 0 R/GS8 32 0 R&gt;&gt;/Font&lt;&lt;/F3 35 0 R/F2 34 0 R/F1 33 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Contents 53 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 11/Parent 2 0 R/Annots 831 0 R&gt;&gt; +endobj +19 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources&lt;&lt;/ExtGState&lt;&lt;/GS5 31 0 R/GS8 32 0 R&gt;&gt;/Font&lt;&lt;/F2 34 0 R/F3 35 0 R/F1 33 0 R/F5 38 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Contents 54 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 12/Parent 2 0 R/Annots 852 0 R&gt;&gt; +endobj +20 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources&lt;&lt;/ExtGState&lt;&lt;/GS5 31 0 R/GS8 32 0 R&gt;&gt;/Font&lt;&lt;/F3 35 0 R/F2 34 0 R/F1 33 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Annots[ 55 0 R 56 0 R 863 0 R 864 0 R]/Contents 57 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 15/Parent 2 0 R&gt;&gt; +endobj +21 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources&lt;&lt;/ExtGState&lt;&lt;/GS5 31 0 R/GS8 32 0 R&gt;&gt;/Font&lt;&lt;/F2 34 0 R/F3 35 0 R/F1 33 0 R/F5 38 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Contents 58 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 16/Parent 2 0 R/Annots 873 0 R&gt;&gt; +endobj +22 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources&lt;&lt;/ExtGState&lt;&lt;/GS5 31 0 R/GS8 32 0 R&gt;&gt;/Font&lt;&lt;/F2 34 0 R/F7 49 0 R/F3 35 0 R/F5 38 0 R/F1 33 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Contents 59 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 17/Parent 2 0 R/Annots 904 0 R&gt;&gt; +endobj +23 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources&lt;&lt;/ExtGState&lt;&lt;/GS5 31 0 R/GS8 32 0 R&gt;&gt;/Font&lt;&lt;/F3 35 0 R/F2 34 0 R/F1 33 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Contents 60 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 18/Parent 2 0 R/Annots 925 0 R&gt;&gt; +endobj +24 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources&lt;&lt;/ExtGState&lt;&lt;/GS5 31 0 R/GS8 32 0 R&gt;&gt;/Font&lt;&lt;/F2 34 0 R/F3 35 0 R/F1 33 0 R/F5 38 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Contents 61 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 19/Parent 2 0 R/Annots 936 0 R&gt;&gt; +endobj +25 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources&lt;&lt;/ExtGState&lt;&lt;/GS5 31 0 R/GS8 32 0 R&gt;&gt;/Font&lt;&lt;/F2 34 0 R/F3 35 0 R/F1 33 0 R/F6 43 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Annots[ 62 0 R 947 0 R 948 0 R 957 0 R 958 0 R]/Contents 63 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 21/Parent 2 0 R&gt;&gt; +endobj +736 0 obj +[ 737 0 R 738 0 R] +endobj +737 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 12 0 R/F 4/M(D:20260319143933+05&#x27;30&#x27;)/NM(956917ed-50bb-435d-95a6-32c4488b1557)/Rect[ 54.024 485.948 495.06064 568.874]/C[ .490196 .941176 .4]/Popup 738 0 R/CA 1/CreationDate(D:20260319143933+05&#x27;30&#x27;)/QuadPoints[ 72.024 568.874 495.06064 568.874 72.024 553.418 495.06064 553.418 72.024 546.284 430.14632 546.284 72.024 530.828 430.14632 530.828 54.024 523.964 295.93632 523.964 54.024 508.508 295.93632 508.508 54.024 501.404 276.39368 501.404 54.024 485.948 276.39368 485.948]/AP&lt;&lt;/N 745 0 R&gt;&gt;&gt;&gt; +endobj +738 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 448.874 792 568.874]/Parent 737 0 R&gt;&gt; +endobj +743 0 obj +&lt;&lt;/Length 142/Filter/FlateDecode/Type/XObject/Subtype/Form/FormType 1/BBox[ 54.024 485.948 495.06064 568.874]/Matrix[ 1 0 0 1 -54.024 -485.948]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +xt1! {^ ,cc(i.M|?p+Hƞ 5?U&#x27;u!*X~]@# ވ[ZL-(M/FZeϖ8Z뼆_ERccx-q$ +!-.^W!ږh}+endstream +endobj +744 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 441.03664 82.926]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 743 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +745 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 441.03664 82.926]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 744 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 746 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +746 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +747 0 obj +[ 748 0 R 749 0 R] +endobj +748 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 13 0 R/F 4/M(D:20260319144252+05&#x27;30&#x27;)/NM(a2938ffd-da8f-4e35-ae41-0896f8893df4)/Rect[ 72.024 298.708 513.9024 336.964]/C[ .560784 .870588 .976471]/Popup 749 0 R/CA 1/CreationDate(D:20260319144252+05&#x27;30&#x27;)/QuadPoints[ 72.024 336.964 513.9024 336.964 72.024 321.508 513.9024 321.508 72.024 314.164 423.4128 314.164 72.024 298.708 423.4128 298.708]/AP&lt;&lt;/N 756 0 R&gt;&gt;&gt;&gt; +endobj +749 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 216.964 792 336.964]/Parent 748 0 R&gt;&gt; +endobj +754 0 obj +&lt;&lt;/Length 189/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 298.708 513.9024 336.964]/Matrix[ 1 0 0 1 -72.024 -298.708]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.560784 .870588 .976471 rg +.966 w +72.024 321.508 m +72.024 336.964 l +513.9024 336.964 l +513.9024 321.508 l +f +.966 w +72.024 298.708 m +72.024 314.164 l +423.4128 314.164 l +423.4128 298.708 l +f + +endstream +endobj +755 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 441.8784 38.256]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 754 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +756 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 441.8784 38.256]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 755 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 757 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +757 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +758 0 obj +[ 759 0 R 760 0 R] +endobj +759 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 14 0 R/F 4/M(D:20260319144344+05&#x27;30&#x27;)/NM(88273c62-3c41-462e-b6fd-76f31219f675)/Rect[ 72.024 321.268 524.46152 359.524]/C[ 1 .941176 .4]/Popup 760 0 R/CA 1/CreationDate(D:20260319144344+05&#x27;30&#x27;)/QuadPoints[ 72.024 359.524 524.46152 359.524 72.024 344.068 524.46152 344.068 72.024 336.724 235.42752 336.724 72.024 321.268 235.42752 321.268]/AP&lt;&lt;/N 767 0 R&gt;&gt;&gt;&gt; +endobj +760 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 239.524 792 359.524]/Parent 759 0 R&gt;&gt; +endobj +765 0 obj +&lt;&lt;/Length 175/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 321.268 524.46152 359.524]/Matrix[ 1 0 0 1 -72.024 -321.268]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +1 .941176 .4 rg +.966 w +72.024 344.068 m +72.024 359.524 l +524.46152 359.524 l +524.46152 344.068 l +f +72.024 321.268 m +72.024 336.724 l +235.42752 336.724 l +235.42752 321.268 l +f + +endstream +endobj +766 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 452.43752 38.256]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 765 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +767 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 452.43752 38.256]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 766 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 768 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +768 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +769 0 obj +[ 780 0 R 781 0 R 790 0 R 791 0 R 800 0 R 801 0 R] +endobj +780 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 16 0 R/F 4/M(D:20260319144436+05&#x27;30&#x27;)/NM(7076d1c9-2037-4876-b568-e3b9c5b1796b)/Rect[ 72.024 726.028 355.10416 741.484]/C[ .968627 .6 .819608]/Popup 781 0 R/CA 1/CreationDate(D:20260319144436+05&#x27;30&#x27;)/QuadPoints[ 72.024 741.484 355.10416 741.484 72.024 726.028 355.10416 726.028]/AP&lt;&lt;/N 788 0 R&gt;&gt;&gt;&gt; +endobj +781 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 621.484 792 741.484]/Parent 780 0 R&gt;&gt; +endobj +786 0 obj +&lt;&lt;/Length 105/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 726.028 355.10416 741.484]/Matrix[ 1 0 0 1 -72.024 -726.028]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.968627 .6 .819608 rg +.966 w +72.024 726.028 m +72.024 741.484 l +355.10416 741.484 l +355.10416 726.028 l +f + +endstream +endobj +787 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 283.08016 15.456]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 786 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +788 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 283.08016 15.456]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 787 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 789 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +789 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +790 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 16 0 R/F 4/M(D:20260319144508+05&#x27;30&#x27;)/NM(947a0d2c-cd18-4378-88b3-0e5505bea944)/Rect[ 72.024 328.708 504.32632 344.164]/C[ .490196 .941176 .4]/Popup 791 0 R/CA 1/CreationDate(D:20260319144508+05&#x27;30&#x27;)/QuadPoints[ 72.024 344.164 504.32632 344.164 72.024 328.708 504.32632 328.708]/AP&lt;&lt;/N 798 0 R&gt;&gt;&gt;&gt; +endobj +791 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 224.164 792 344.164]/Parent 790 0 R&gt;&gt; +endobj +796 0 obj +&lt;&lt;/Length 105/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 328.708 504.32632 344.164]/Matrix[ 1 0 0 1 -72.024 -328.708]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.490196 .941176 .4 rg +.966 w +72.024 328.708 m +72.024 344.164 l +504.32632 344.164 l +504.32632 328.708 l +f + +endstream +endobj +797 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 432.30232 15.456]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 796 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +798 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 432.30232 15.456]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 797 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 799 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +799 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +800 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 16 0 R/F 4/M(D:20260319144511+05&#x27;30&#x27;)/NM(464170e7-ebce-4a80-8a75-3773cd901641)/Rect[ 72.024 363.268 518.79648 401.304]/C[ 1 .941176 .4]/Popup 801 0 R/CA 1/CreationDate(D:20260319144511+05&#x27;30&#x27;)/QuadPoints[ 72.024 401.304 518.79648 401.304 72.024 385.848 518.79648 385.848 72.024 378.724 224.39632 378.724 72.024 363.268 224.39632 363.268]/AP&lt;&lt;/N 808 0 R&gt;&gt;&gt;&gt; +endobj +801 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 281.304 792 401.304]/Parent 800 0 R&gt;&gt; +endobj +806 0 obj +&lt;&lt;/Length 182/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 363.268 518.79648 401.304]/Matrix[ 1 0 0 1 -72.024 -363.268]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +1 .941176 .4 rg +.966 w +72.024 385.848 m +72.024 401.304 l +518.79648 401.304 l +518.79648 385.848 l +f +.966 w +72.024 363.268 m +72.024 378.724 l +224.39632 378.724 l +224.39632 363.268 l +f + +endstream +endobj +807 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 446.77248 38.036]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 806 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +808 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 446.77248 38.036]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 807 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 809 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +809 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +810 0 obj +[ 811 0 R 812 0 R 821 0 R 822 0 R] +endobj +811 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 17 0 R/F 4/M(D:20260319144526+05&#x27;30&#x27;)/NM(994b5f6e-3684-4a4c-b067-859e6969f958)/Rect[ 72.024 551.498 477.20632 566.954]/C[ .921569 .286275 .286275]/Popup 812 0 R/CA 1/CreationDate(D:20260319144526+05&#x27;30&#x27;)/QuadPoints[ 72.024 566.954 477.20632 566.954 72.024 551.498 477.20632 551.498]/AP&lt;&lt;/N 819 0 R&gt;&gt;&gt;&gt; +endobj +812 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 446.954 792 566.954]/Parent 811 0 R&gt;&gt; +endobj +817 0 obj +&lt;&lt;/Length 110/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 551.498 477.20632 566.954]/Matrix[ 1 0 0 1 -72.024 -551.498]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.921569 .286275 .286275 rg +.966 w +72.024 551.498 m +72.024 566.954 l +477.20632 566.954 l +477.20632 551.498 l +f + +endstream +endobj +818 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 405.18232 15.456]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 817 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +819 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 405.18232 15.456]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 818 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 820 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +820 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +821 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 17 0 R/F 4/M(D:20260319144609+05&#x27;30&#x27;)/NM(dcd8f747-f223-4ad1-8b5f-5cbf195dde0c)/Rect[ 72.024 266.998 503.01512 305.014]/C[ .490196 .941176 .4]/Popup 822 0 R/CA 1/CreationDate(D:20260319144609+05&#x27;30&#x27;)/QuadPoints[ 72.024 305.014 503.01512 305.014 72.024 289.558 503.01512 289.558 72.024 282.454 160.63392 282.454 72.024 266.998 160.63392 266.998]/AP&lt;&lt;/N 829 0 R&gt;&gt;&gt;&gt; +endobj +822 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 185.014 792 305.014]/Parent 821 0 R&gt;&gt; +endobj +827 0 obj +&lt;&lt;/Length 188/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 266.998 503.01512 305.014]/Matrix[ 1 0 0 1 -72.024 -266.998]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.490196 .941176 .4 rg +.966 w +72.024 289.558 m +72.024 305.014 l +503.01512 305.014 l +503.01512 289.558 l +f +.966 w +72.024 266.998 m +72.024 282.454 l +160.63392 282.454 l +160.63392 266.998 l +f + +endstream +endobj +828 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 430.99112 38.016]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 827 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +829 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 430.99112 38.016]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 828 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 830 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +830 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +831 0 obj +[ 832 0 R 833 0 R 842 0 R 843 0 R] +endobj +832 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 18 0 R/F 4/M(D:20260319144642+05&#x27;30&#x27;)/NM(76a9f4c1-2917-4c85-a76b-556caa603f68)/Rect[ 72.024 336.628 512.1168 374.164]/C[ .560784 .870588 .976471]/Popup 833 0 R/CA 1/CreationDate(D:20260319144642+05&#x27;30&#x27;)/QuadPoints[ 72.024 374.164 512.1168 374.164 72.024 358.708 512.1168 358.708 72.024 352.084 273.59632 352.084 72.024 336.628 273.59632 336.628]/AP&lt;&lt;/N 840 0 R&gt;&gt;&gt;&gt; +endobj +833 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 254.164 792 374.164]/Parent 832 0 R&gt;&gt; +endobj +838 0 obj +&lt;&lt;/Length 184/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 336.628 512.1168 374.164]/Matrix[ 1 0 0 1 -72.024 -336.628]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.560784 .870588 .976471 rg +.966 w +72.024 358.708 m +72.024 374.164 l +512.1168 374.164 l +512.1168 358.708 l +f +72.024 336.628 m +72.024 352.084 l +273.59632 352.084 l +273.59632 336.628 l +f + +endstream +endobj +839 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 440.0928 37.536]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 838 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +840 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 440.0928 37.536]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 839 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 841 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +841 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +842 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 18 0 R/F 4/M(D:20260319144652+05&#x27;30&#x27;)/NM(c75c35a4-e004-45ac-afc7-07360d6ab2c8)/Rect[ 72.024 282.598 492.838 298.054]/C[ .560784 .870588 .976471]/Popup 843 0 R/CA 1/CreationDate(D:20260319144652+05&#x27;30&#x27;)/QuadPoints[ 72.024 298.054 492.838 298.054 72.024 282.598 492.838 282.598]/AP&lt;&lt;/N 850 0 R&gt;&gt;&gt;&gt; +endobj +843 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 178.054 792 298.054]/Parent 842 0 R&gt;&gt; +endobj +848 0 obj +&lt;&lt;/Length 106/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 282.598 492.838 298.054]/Matrix[ 1 0 0 1 -72.024 -282.598]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.560784 .870588 .976471 rg +.966 w +72.024 282.598 m +72.024 298.054 l +492.838 298.054 l +492.838 282.598 l +f + +endstream +endobj +849 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 420.814 15.456]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 848 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +850 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 420.814 15.456]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 849 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 851 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +851 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +852 0 obj +[ 853 0 R 854 0 R] +endobj +853 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 19 0 R/F 4/M(D:20260319144714+05&#x27;30&#x27;)/NM(8b0a7a9c-ee45-4866-959d-7228b55c1e13)/Rect[ 72.024 605.018 436.21152 620.474]/C[ .968627 .6 .819608]/Popup 854 0 R/CA 1/CreationDate(D:20260319144714+05&#x27;30&#x27;)/QuadPoints[ 72.024 620.474 436.21152 620.474 72.024 605.018 436.21152 605.018]/AP&lt;&lt;/N 861 0 R&gt;&gt;&gt;&gt; +endobj +854 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 500.474 792 620.474]/Parent 853 0 R&gt;&gt; +endobj +859 0 obj +&lt;&lt;/Length 105/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 605.018 436.21152 620.474]/Matrix[ 1 0 0 1 -72.024 -605.018]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.968627 .6 .819608 rg +.966 w +72.024 605.018 m +72.024 620.474 l +436.21152 620.474 l +436.21152 605.018 l +f + +endstream +endobj +860 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 364.18752 15.456]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 859 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +861 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 364.18752 15.456]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 860 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 862 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +862 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +863 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 20 0 R/F 4/M(D:20260319144948+05&#x27;30&#x27;)/NM(a60dd8ad-8352-4205-91c9-861517dffc62)/Rect[ 72.024 421.848 499.2652 459.864]/C[ 1 .941176 .4]/Popup 864 0 R/CA 1/CreationDate(D:20260319144948+05&#x27;30&#x27;)/QuadPoints[ 72.024 459.864 499.2652 459.864 72.024 444.408 499.2652 444.408 72.024 437.304 100.98432 437.304 72.024 421.848 100.98432 421.848]/AP&lt;&lt;/N 871 0 R&gt;&gt;&gt;&gt; +endobj +864 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 339.864 792 459.864]/Parent 863 0 R&gt;&gt; +endobj +869 0 obj +&lt;&lt;/Length 173/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 421.848 499.2652 459.864]/Matrix[ 1 0 0 1 -72.024 -421.848]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +1 .941176 .4 rg +.966 w +72.024 444.408 m +72.024 459.864 l +499.2652 459.864 l +499.2652 444.408 l +f +72.024 421.848 m +72.024 437.304 l +100.98432 437.304 l +100.98432 421.848 l +f + +endstream +endobj +870 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 427.2412 38.016]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 869 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +871 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 427.2412 38.016]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 870 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 872 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +872 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +873 0 obj +[ 874 0 R 875 0 R 884 0 R 885 0 R 894 0 R 895 0 R] +endobj +874 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 21 0 R/F 4/M(D:20260319144958+05&#x27;30&#x27;)/NM(f3c2dd3f-ef90-4086-ab5c-5fc9beb5f8cc)/Rect[ 72.024 739.228 506.36368 777.484]/C[ .490196 .941176 .4]/Popup 875 0 R/CA 1/CreationDate(D:20260319144958+05&#x27;30&#x27;)/QuadPoints[ 72.024 777.484 506.36368 777.484 72.024 762.028 506.36368 762.028 72.024 754.684 174.07392 754.684 72.024 739.228 174.07392 739.228]/AP&lt;&lt;/N 882 0 R&gt;&gt;&gt;&gt; +endobj +875 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 657.484 792 777.484]/Parent 874 0 R&gt;&gt; +endobj +880 0 obj +&lt;&lt;/Length 181/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 739.228 506.36368 777.484]/Matrix[ 1 0 0 1 -72.024 -739.228]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.490196 .941176 .4 rg +.966 w +72.024 762.028 m +72.024 777.484 l +506.36368 777.484 l +506.36368 762.028 l +f +72.024 739.228 m +72.024 754.684 l +174.07392 754.684 l +174.07392 739.228 l +f + +endstream +endobj +881 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 434.33968 38.256]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 880 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +882 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 434.33968 38.256]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 881 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 883 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +883 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +884 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 21 0 R/F 4/M(D:20260319145059+05&#x27;30&#x27;)/NM(3fbc59ed-bb5d-4658-8e96-8f36336a7e5b)/Rect[ 72.024 455.688 400.88736 471.144]/C[ .968627 .6 .819608]/Popup 885 0 R/CA 1/CreationDate(D:20260319145059+05&#x27;30&#x27;)/QuadPoints[ 72.024 471.144 400.88736 471.144 72.024 455.688 400.88736 455.688]/AP&lt;&lt;/N 892 0 R&gt;&gt;&gt;&gt; +endobj +885 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 351.144 792 471.144]/Parent 884 0 R&gt;&gt; +endobj +890 0 obj +&lt;&lt;/Length 105/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 455.688 400.88736 471.144]/Matrix[ 1 0 0 1 -72.024 -455.688]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.968627 .6 .819608 rg +.966 w +72.024 455.688 m +72.024 471.144 l +400.88736 471.144 l +400.88736 455.688 l +f + +endstream +endobj +891 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 328.86336 15.456]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 890 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +892 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 328.86336 15.456]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 891 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 893 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +893 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +894 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 21 0 R/F 4/M(D:20260319145124+05&#x27;30&#x27;)/NM(575d2b4c-792f-4e1a-a761-9d250e46145f)/Rect[ 72.024 86.232 498.62304 124.244]/C[ 1 .941176 .4]/Popup 895 0 R/CA 1/CreationDate(D:20260319145124+05&#x27;30&#x27;)/QuadPoints[ 72.024 124.244 498.62304 124.244 72.024 108.788 498.62304 108.788 72.024 101.688 200.22816 101.688 72.024 86.232 200.22816 86.232]/AP&lt;&lt;/N 902 0 R&gt;&gt;&gt;&gt; +endobj +895 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 4.244 792 124.244]/Parent 894 0 R&gt;&gt; +endobj +900 0 obj +&lt;&lt;/Length 180/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 86.232 498.62304 124.244]/Matrix[ 1 0 0 1 -72.024 -86.232]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +1 .941176 .4 rg +.966 w +72.024 108.788 m +72.024 124.244 l +498.62304 124.244 l +498.62304 108.788 l +f +.966 w +72.024 86.232 m +72.024 101.688 l +200.22816 101.688 l +200.22816 86.232 l +f + +endstream +endobj +901 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 426.59904 38.012]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 900 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +902 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 426.59904 38.012]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 901 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 903 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +903 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +904 0 obj +[ 905 0 R 906 0 R 915 0 R 916 0 R] +endobj +905 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 22 0 R/F 4/M(D:20260319145131+05&#x27;30&#x27;)/NM(9c711437-0911-4d02-9026-9113c65fdc29)/Rect[ 72.024 761.788 484.16632 777.244]/C[ .490196 .941176 .4]/Popup 906 0 R/CA 1/CreationDate(D:20260319145131+05&#x27;30&#x27;)/QuadPoints[ 72.024 777.244 484.16632 777.244 72.024 761.788 484.16632 761.788]/AP&lt;&lt;/N 913 0 R&gt;&gt;&gt;&gt; +endobj +906 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 657.244 792 777.244]/Parent 905 0 R&gt;&gt; +endobj +911 0 obj +&lt;&lt;/Length 105/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 761.788 484.16632 777.244]/Matrix[ 1 0 0 1 -72.024 -761.788]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.490196 .941176 .4 rg +.966 w +72.024 761.788 m +72.024 777.244 l +484.16632 777.244 l +484.16632 761.788 l +f + +endstream +endobj +912 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 412.14232 15.456]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 911 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +913 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 412.14232 15.456]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 912 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 914 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +914 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +915 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 22 0 R/F 4/M(D:20260319145153+05&#x27;30&#x27;)/NM(22bdd81e-63d0-4d45-937f-0cc5f9b3fca0)/Rect[ 72.024 279.238 482.616 317.284]/C[ .560784 .870588 .976471]/Popup 916 0 R/CA 1/CreationDate(D:20260319145153+05&#x27;30&#x27;)/QuadPoints[ 72.024 317.284 482.616 317.284 72.024 301.828 482.616 301.828 72.024 294.694 160.63392 294.694 72.024 279.238 160.63392 279.238]/AP&lt;&lt;/N 923 0 R&gt;&gt;&gt;&gt; +endobj +916 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 197.284 792 317.284]/Parent 915 0 R&gt;&gt; +endobj +921 0 obj +&lt;&lt;/Length 189/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 279.238 482.616 317.284]/Matrix[ 1 0 0 1 -72.024 -279.238]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.560784 .870588 .976471 rg +.966 w +72.024 301.828 m +72.024 317.284 l +482.616 317.284 l +482.616 301.828 l +f +.966 w +72.024 279.238 m +72.024 294.694 l +160.63392 294.694 l +160.63392 279.238 l +f + +endstream +endobj +922 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 410.592 38.046]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 921 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +923 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 410.592 38.046]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 922 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 924 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +924 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +925 0 obj +[ 926 0 R 927 0 R] +endobj +926 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 23 0 R/F 4/M(D:20260319145215+05&#x27;30&#x27;)/NM(3e8d9c0a-897c-4327-b480-c35beb41a41a)/Rect[ 72.024 444.648 457.19824 460.104]/C[ .490196 .941176 .4]/Popup 927 0 R/CA 1/CreationDate(D:20260319145215+05&#x27;30&#x27;)/QuadPoints[ 72.024 460.104 457.19824 460.104 72.024 444.648 457.19824 444.648]/AP&lt;&lt;/N 934 0 R&gt;&gt;&gt;&gt; +endobj +927 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 340.104 792 460.104]/Parent 926 0 R&gt;&gt; +endobj +932 0 obj +&lt;&lt;/Length 105/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 444.648 457.19824 460.104]/Matrix[ 1 0 0 1 -72.024 -444.648]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.490196 .941176 .4 rg +.966 w +72.024 444.648 m +72.024 460.104 l +457.19824 460.104 l +457.19824 444.648 l +f + +endstream +endobj +933 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 385.17424 15.456]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 932 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +934 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 385.17424 15.456]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 933 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 935 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +935 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +936 0 obj +[ 937 0 R 938 0 R] +endobj +937 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 24 0 R/F 4/M(D:20260319145254+05&#x27;30&#x27;)/NM(14e48556-2363-413f-a623-2be61642f046)/Rect[ 72.024 542.108 519.95232 579.914]/C[ .968627 .6 .819608]/Popup 938 0 R/CA 1/CreationDate(D:20260319145254+05&#x27;30&#x27;)/QuadPoints[ 72.024 579.914 519.95232 579.914 72.024 564.458 519.95232 564.458 72.024 557.564 480.44944 557.564 72.024 542.108 480.44944 542.108]/AP&lt;&lt;/N 945 0 R&gt;&gt;&gt;&gt; +endobj +938 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 459.914 792 579.914]/Parent 937 0 R&gt;&gt; +endobj +943 0 obj +&lt;&lt;/Length 181/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 542.108 519.95232 579.914]/Matrix[ 1 0 0 1 -72.024 -542.108]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.968627 .6 .819608 rg +.966 w +72.024 564.458 m +72.024 579.914 l +519.95232 579.914 l +519.95232 564.458 l +f +72.024 542.108 m +72.024 557.564 l +480.44944 557.564 l +480.44944 542.108 l +f + +endstream +endobj +944 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 447.92832 37.806]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 943 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +945 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 447.92832 37.806]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 944 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 946 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +946 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +947 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 25 0 R/F 4/M(D:20260319145308+05&#x27;30&#x27;)/NM(1a40be05-1854-4159-a64f-6499c819e6d0)/Rect[ 72.024 739.228 486.73744 777.484]/C[ .560784 .870588 .976471]/Popup 948 0 R/CA 1/CreationDate(D:20260319145308+05&#x27;30&#x27;)/QuadPoints[ 72.024 777.484 486.73744 777.484 72.024 762.028 486.73744 762.028 72.024 754.684 202.35168 754.684 72.024 739.228 202.35168 739.228]/AP&lt;&lt;/N 955 0 R&gt;&gt;&gt;&gt; +endobj +948 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 657.484 792 777.484]/Parent 947 0 R&gt;&gt; +endobj +953 0 obj +&lt;&lt;/Length 186/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 739.228 486.73744 777.484]/Matrix[ 1 0 0 1 -72.024 -739.228]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.560784 .870588 .976471 rg +.966 w +72.024 762.028 m +72.024 777.484 l +486.73744 777.484 l +486.73744 762.028 l +f +72.024 739.228 m +72.024 754.684 l +202.35168 754.684 l +202.35168 739.228 l +f + +endstream +endobj +954 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 414.71344 38.256]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 953 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +955 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 414.71344 38.256]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 954 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 956 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +956 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +957 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 25 0 R/F 4/M(D:20260319145331+05&#x27;30&#x27;)/NM(cfe831b5-781e-4c7f-9f85-c94de5dc19f4)/Rect[ 72.024 411.288 511.76664 426.744]/C[ 1 .941176 .4]/Popup 958 0 R/CA 1/CreationDate(D:20260319145331+05&#x27;30&#x27;)/QuadPoints[ 72.024 426.744 511.76664 426.744 72.024 411.288 511.76664 411.288]/AP&lt;&lt;/N 965 0 R&gt;&gt;&gt;&gt; +endobj +958 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 306.744 792 426.744]/Parent 957 0 R&gt;&gt; +endobj +963 0 obj +&lt;&lt;/Length 99/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 411.288 511.76664 426.744]/Matrix[ 1 0 0 1 -72.024 -411.288]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +1 .941176 .4 rg +.966 w +72.024 411.288 m +72.024 426.744 l +511.76664 426.744 l +511.76664 411.288 l +f + +endstream +endobj +964 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 439.74264 15.456]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 963 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +965 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 439.74264 15.456]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 964 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 966 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +966 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +6 0 obj +&lt;&lt;/Author(Abhik)/Creator&lt;FEFF004D006900630072006F0073006F0066007400AE00200057006F0072006400200032003000310036&gt;/CreationDate(D:20240603093105+00&#x27;00&#x27;)/Producer(www.ilovepdf.com)/ModDate(D:20260319145332+05&#x27;30&#x27;)&gt;&gt; +endobj +xref +6 1 +0000541399 00000 n +12 3 +0000508211 00000 n +0000508535 00000 n +0000508839 00000 n +16 10 +0000509143 00000 n +0000509457 00000 n +0000509799 00000 n +0000510104 00000 n +0000510419 00000 n +0000510748 00000 n +0000511063 00000 n +0000511388 00000 n +0000511693 00000 n +0000512008 00000 n +736 3 +0000512356 00000 n +0000512392 00000 n +0000512938 00000 n +743 7 +0000513047 00000 n +0000513399 00000 n +0000513622 00000 n +0000513861 00000 n +0000513920 00000 n +0000513956 00000 n +0000514370 00000 n +754 7 +0000514479 00000 n +0000514858 00000 n +0000515080 00000 n +0000515318 00000 n +0000515377 00000 n +0000515413 00000 n +0000515821 00000 n +765 5 +0000515930 00000 n +0000516296 00000 n +0000516519 00000 n +0000516758 00000 n +0000516817 00000 n +780 2 +0000516885 00000 n +0000517233 00000 n +786 6 +0000517342 00000 n +0000517638 00000 n +0000517861 00000 n +0000518100 00000 n +0000518159 00000 n +0000518507 00000 n +796 6 +0000518616 00000 n +0000518912 00000 n +0000519135 00000 n +0000519374 00000 n +0000519433 00000 n +0000519841 00000 n +806 7 +0000519950 00000 n +0000520323 00000 n +0000520546 00000 n +0000520785 00000 n +0000520844 00000 n +0000520896 00000 n +0000521249 00000 n +817 6 +0000521358 00000 n +0000521659 00000 n +0000521882 00000 n +0000522121 00000 n +0000522180 00000 n +0000522594 00000 n +827 7 +0000522703 00000 n +0000523082 00000 n +0000523305 00000 n +0000523544 00000 n +0000523603 00000 n +0000523655 00000 n +0000524071 00000 n +838 6 +0000524180 00000 n +0000524554 00000 n +0000524776 00000 n +0000525014 00000 n +0000525073 00000 n +0000525420 00000 n +848 7 +0000525529 00000 n +0000525824 00000 n +0000526045 00000 n +0000526282 00000 n +0000526341 00000 n +0000526377 00000 n +0000526725 00000 n +859 6 +0000526834 00000 n +0000527130 00000 n +0000527353 00000 n +0000527592 00000 n +0000527651 00000 n +0000528056 00000 n +869 7 +0000528165 00000 n +0000528528 00000 n +0000528750 00000 n +0000528988 00000 n +0000529047 00000 n +0000529115 00000 n +0000529529 00000 n +880 6 +0000529638 00000 n +0000530010 00000 n +0000530233 00000 n +0000530472 00000 n +0000530531 00000 n +0000530879 00000 n +890 6 +0000530988 00000 n +0000531284 00000 n +0000531507 00000 n +0000531746 00000 n +0000531805 00000 n +0000532210 00000 n +900 7 +0000532317 00000 n +0000532686 00000 n +0000532909 00000 n +0000533148 00000 n +0000533207 00000 n +0000533259 00000 n +0000533607 00000 n +911 6 +0000533716 00000 n +0000534012 00000 n +0000534235 00000 n +0000534474 00000 n +0000534533 00000 n +0000534946 00000 n +921 7 +0000535055 00000 n +0000535433 00000 n +0000535654 00000 n +0000535891 00000 n +0000535950 00000 n +0000535986 00000 n +0000536334 00000 n +932 7 +0000536443 00000 n +0000536739 00000 n +0000536962 00000 n +0000537201 00000 n +0000537260 00000 n +0000537296 00000 n +0000537710 00000 n +943 6 +0000537819 00000 n +0000538191 00000 n +0000538414 00000 n +0000538653 00000 n +0000538712 00000 n +0000539131 00000 n +953 6 +0000539240 00000 n +0000539617 00000 n +0000539840 00000 n +0000540079 00000 n +0000540138 00000 n +0000540480 00000 n +963 4 +0000540589 00000 n +0000540878 00000 n +0000541101 00000 n +0000541340 00000 n +trailer +&lt;&lt;/Size 967/Root 1 0 R/Info 6 0 R/ID[&lt;8E5C4230D76EB8262802CD0C72637B53&gt;&lt;47875CC0A7C64B2AF518DBC553DFAB46&gt;]/Prev 507396&gt;&gt; +startxref +541625 +%%EOF </div> </div> @@ -46707,6 +48947,689 @@ trailer startxref 520298 %%EOF +7 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources&lt;&lt;/ExtGState&lt;&lt;/GS5 22 0 R/GS11 23 0 R&gt;&gt;/Font&lt;&lt;/F1 24 0 R/F2 25 0 R/F3 26 0 R/F4 27 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Contents 28 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 0/Parent 2 0 R/Annots 532 0 R&gt;&gt; +endobj +8 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources&lt;&lt;/ExtGState&lt;&lt;/GS5 22 0 R/GS11 23 0 R&gt;&gt;/Font&lt;&lt;/F4 27 0 R/F2 25 0 R/F3 26 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Contents 29 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 1/Parent 2 0 R/Annots 553 0 R&gt;&gt; +endobj +9 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources&lt;&lt;/ExtGState&lt;&lt;/GS5 22 0 R/GS11 23 0 R&gt;&gt;/Font&lt;&lt;/F2 25 0 R/F3 26 0 R/F4 27 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Contents 30 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 2/Parent 2 0 R/Annots 564 0 R&gt;&gt; +endobj +10 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources&lt;&lt;/ExtGState&lt;&lt;/GS5 22 0 R/GS11 23 0 R&gt;&gt;/Font&lt;&lt;/F4 27 0 R/F2 25 0 R/F3 26 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Contents 31 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 3/Parent 2 0 R/Annots 575 0 R&gt;&gt; +endobj +11 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources&lt;&lt;/ExtGState&lt;&lt;/GS5 22 0 R/GS11 23 0 R&gt;&gt;/Font&lt;&lt;/F2 25 0 R/F3 26 0 R/F5 32 0 R/F4 27 0 R/F6 33 0 R/F7 34 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Contents 35 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 4/Parent 2 0 R/Annots 586 0 R&gt;&gt; +endobj +12 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources&lt;&lt;/Font&lt;&lt;/F6 33 0 R/F7 34 0 R/F2 25 0 R/F3 26 0 R/F4 27 0 R&gt;&gt;/ExtGState&lt;&lt;/GS5 22 0 R/GS11 23 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Annots[ 36 0 R 597 0 R 598 0 R 607 0 R 608 0 R 617 0 R 618 0 R]/Contents 37 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 6/Parent 2 0 R&gt;&gt; +endobj +14 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources&lt;&lt;/Font&lt;&lt;/F8 38 0 R/F3 26 0 R/F6 33 0 R/F7 34 0 R/F2 25 0 R/F4 27 0 R&gt;&gt;/ExtGState&lt;&lt;/GS5 22 0 R/GS11 23 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Contents 40 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 8/Parent 2 0 R/Annots 627 0 R&gt;&gt; +endobj +15 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources&lt;&lt;/Font&lt;&lt;/F4 27 0 R/F2 25 0 R/F3 26 0 R/F6 33 0 R/F7 34 0 R/F8 38 0 R&gt;&gt;/ExtGState&lt;&lt;/GS5 22 0 R/GS11 23 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Contents 41 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 9/Parent 2 0 R/Annots 648 0 R&gt;&gt; +endobj +16 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources&lt;&lt;/Font&lt;&lt;/F8 38 0 R/F3 26 0 R/F6 33 0 R/F7 34 0 R/F2 25 0 R/F4 27 0 R&gt;&gt;/ExtGState&lt;&lt;/GS5 22 0 R/GS11 23 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Contents 42 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 10/Parent 2 0 R/Annots 669 0 R&gt;&gt; +endobj +532 0 obj +[ 533 0 R 534 0 R 543 0 R 544 0 R] +endobj +533 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 7 0 R/F 4/M(D:20260319191422+05&#x27;30&#x27;)/NM(b24d3e9c-d484-48cd-993b-ad70cac0edbc)/Rect[ 72.024 473.468 524.84528 511.484]/C[ .490196 .941176 .4]/Popup 534 0 R/CA 1/CreationDate(D:20260319191422+05&#x27;30&#x27;)/QuadPoints[ 242.94048 511.484 524.84528 511.484 242.94048 496.028 524.84528 496.028 72.024 488.924 203.29248 488.924 72.024 473.468 203.29248 473.468]/AP&lt;&lt;/N 541 0 R&gt;&gt;&gt;&gt; +endobj +534 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 391.484 792 511.484]/Parent 533 0 R&gt;&gt; +endobj +539 0 obj +&lt;&lt;/Length 187/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 473.468 524.84528 511.484]/Matrix[ 1 0 0 1 -72.024 -473.468]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.490196 .941176 .4 rg +.966 w +242.94048 496.028 m +242.94048 511.484 l +524.84528 511.484 l +524.84528 496.028 l +f +72.024 473.468 m +72.024 488.924 l +203.29248 488.924 l +203.29248 473.468 l +f + +endstream +endobj +540 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 452.82128 38.016]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 539 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +541 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 452.82128 38.016]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 540 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 542 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +542 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +543 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 7 0 R/F 4/M(D:20260319191446+05&#x27;30&#x27;)/NM(35690b2a-20f4-4d84-be8d-f1029e4c3e56)/Rect[ 72.024 227.638 523.27584 287.734]/C[ .560784 .870588 .976471]/Popup 544 0 R/CA 1/CreationDate(D:20260319191446+05&#x27;30&#x27;)/QuadPoints[ 72.024 287.734 523.27584 287.734 72.024 249.958 523.27584 249.958 72.024 243.094 231.35632 243.094 72.024 227.638 231.35632 227.638]/AP&lt;&lt;/N 551 0 R&gt;&gt;&gt;&gt; +endobj +544 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 167.734 792 287.734]/Parent 543 0 R&gt;&gt; +endobj +549 0 obj +&lt;&lt;/Length 194/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 227.638 523.27584 287.734]/Matrix[ 1 0 0 1 -72.024 -227.638]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.560784 .870588 .976471 rg +2.361 w +72.024 249.958 m +72.024 287.734 l +523.27584 287.734 l +523.27584 249.958 l +f +.966 w +72.024 227.638 m +72.024 243.094 l +231.35632 243.094 l +231.35632 227.638 l +f + +endstream +endobj +550 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 451.25184 60.096]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 549 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +551 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 451.25184 60.096]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 550 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 552 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +552 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +553 0 obj +[ 554 0 R 555 0 R] +endobj +554 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 8 0 R/F 4/M(D:20260319191556+05&#x27;30&#x27;)/NM(a97058aa-3502-4af2-af82-d19138539629)/Rect[ 72.024 218.038 523.42288 346.324]/C[ .560784 .870588 .976471]/Popup 555 0 R/CA 1/CreationDate(D:20260319191556+05&#x27;30&#x27;)/QuadPoints[ 72.024 346.324 500.04192 346.324 72.024 330.868 500.04192 330.868 72.024 323.524 484.32288 323.524 72.024 308.068 484.32288 308.068 72.024 300.934 285.11632 300.934 72.024 285.478 285.11632 285.478 72.024 278.854 466.07792 278.854 72.024 263.398 466.07792 263.398 72.024 256.294 523.42288 256.294 72.024 240.838 523.42288 240.838 72.024 233.494 330.64992 233.494 72.024 218.038 330.64992 218.038]/AP&lt;&lt;/N 562 0 R&gt;&gt;&gt;&gt; +endobj +555 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 226.324 792 346.324]/Parent 554 0 R&gt;&gt; +endobj +560 0 obj +&lt;&lt;/Length 178/Filter/FlateDecode/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 218.038 523.42288 346.324]/Matrix[ 1 0 0 1 -72.024 -218.038]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +xl11{/@0%ͥI[PYZkFBW4 +n+ SVC IeFp#Jg&lt;W$pq E4࿒U=O|~LivRx\dW#U@8268&#x27;*_]],u]m0b/%ʘUlS+endstream +endobj +561 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 451.39888 128.286]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 560 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +562 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 451.39888 128.286]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 561 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 563 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +563 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +564 0 obj +[ 565 0 R 566 0 R] +endobj +565 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 9 0 R/F 4/M(D:20260319191944+05&#x27;30&#x27;)/NM(db638d7b-4acc-45bf-9907-5cf06709f45a)/Rect[ 72.024 209.138 507.35904 304.054]/C[ 1 .941176 .4]/Popup 566 0 R/CA 1/CreationDate(D:20260319191944+05&#x27;30&#x27;)/QuadPoints[ 72.024 304.054 507.35904 304.054 72.024 288.598 507.35904 288.598 72.024 281.494 497.02368 281.494 72.024 266.038 497.02368 266.038 72.024 258.934 133.62632 258.934 72.024 243.478 133.62632 243.478 72.024 224.594 505.40752 224.594 72.024 209.138 505.40752 209.138]/AP&lt;&lt;/N 573 0 R&gt;&gt;&gt;&gt; +endobj +566 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 184.054 792 304.054]/Parent 565 0 R&gt;&gt; +endobj +571 0 obj +&lt;&lt;/Length 133/Filter/FlateDecode/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 209.138 507.35904 304.054]/Matrix[ 1 0 0 1 -72.024 -209.138]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +xl +1 sU +? +]KP: v+!׳ #]HzgseQԓlGy&#x27;#zKJeF߳)RMaUUʞMq3ga\l#+endstream +endobj +572 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 435.33504 94.916]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 571 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +573 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 435.33504 94.916]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 572 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 574 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +574 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +575 0 obj +[ 576 0 R 577 0 R] +endobj +576 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 10 0 R/F 4/M(D:20260319193803+05&#x27;30&#x27;)/NM(9f60394f-71e8-47bd-9044-7e69fda1652c)/Rect[ 72.024 405.768 468.44752 421.224]/C[ 1 .941176 .4]/Popup 577 0 R/CA 1/CreationDate(D:20260319193803+05&#x27;30&#x27;)/QuadPoints[ 72.024 421.224 468.44752 421.224 72.024 405.768 468.44752 405.768]/AP&lt;&lt;/N 584 0 R&gt;&gt;&gt;&gt; +endobj +577 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 301.224 792 421.224]/Parent 576 0 R&gt;&gt; +endobj +582 0 obj +&lt;&lt;/Length 99/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 405.768 468.44752 421.224]/Matrix[ 1 0 0 1 -72.024 -405.768]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +1 .941176 .4 rg +.966 w +72.024 405.768 m +72.024 421.224 l +468.44752 421.224 l +468.44752 405.768 l +f + +endstream +endobj +583 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 396.42352 15.456]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 582 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +584 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 396.42352 15.456]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 583 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 585 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +585 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +586 0 obj +[ 587 0 R 588 0 R] +endobj +587 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 11 0 R/F 4/M(D:20260319193826+05&#x27;30&#x27;)/NM(0d76a750-a8db-4b8c-b755-0532ef4a20e4)/Rect[ 54.024 644.638 419.58632 725.854]/C[ .490196 .941176 .4]/Popup 588 0 R/CA 1/CreationDate(D:20260319193826+05&#x27;30&#x27;)/QuadPoints[ 72.024 725.854 419.58632 725.854 72.024 710.398 419.58632 710.398 54.024 691.534 363.15632 691.534 54.024 676.078 363.15632 676.078 54.024 660.094 339.85632 660.094 54.024 644.638 339.85632 644.638]/AP&lt;&lt;/N 595 0 R&gt;&gt;&gt;&gt; +endobj +588 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 605.854 792 725.854]/Parent 587 0 R&gt;&gt; +endobj +593 0 obj +&lt;&lt;/Length 120/Filter/FlateDecode/Type/XObject/Subtype/Form/FormType 1/BBox[ 54.024 644.638 419.58632 725.854]/Matrix[ 1 0 0 1 -54.024 -644.638]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +xlλ +0 E^SpRH\(i&amp;׷%( U.pK BH]tVը CQLC-xWq4Zn|n! 4o۵+endstream +endobj +594 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 365.56232 81.216]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 593 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +595 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 365.56232 81.216]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 594 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 596 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +596 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +597 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 12 0 R/F 4/M(D:20260319193935+05&#x27;30&#x27;)/NM(eede50b0-aae1-4d11-a5c9-f28cfb585165)/Rect[ 72.024 334.132 522.91288 445.98]/C[ .560784 .870588 .976471]/Popup 598 0 R/CA 1/CreationDate(D:20260319193935+05&#x27;30&#x27;)/QuadPoints[ 72.024 445.98 364.184 445.98 72.024 425.28 364.184 425.28 72.024 425.28 364.184 425.28 72.024 410.712 364.184 410.712 364.184 425.616 506.68976 425.616 364.184 410.712 506.68976 410.712 90.024 410.256 509.72496 410.256 90.024 395.352 509.72496 395.352 90.024 395.352 159.19288 395.352 90.024 380.712 159.19288 380.712 72.024 380.716 90.024 380.716 72.024 365.812 90.024 365.812 90.024 380.712 159.19288 380.712 90.024 365.812 159.19288 365.812 159.19288 380.716 522.91288 380.716 159.19288 365.812 522.91288 365.812 72.024 365.692 386.80976 365.692 72.024 349.684 386.80976 349.684 72.024 349.036 436.73288 349.036 72.024 334.132 436.73288 334.132]/AP&lt;&lt;/N 605 0 R&gt;&gt;&gt;&gt; +endobj +598 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 325.98 792 445.98]/Parent 597 0 R&gt;&gt; +endobj +603 0 obj +&lt;&lt;/Length 251/Filter/FlateDecode/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 334.132 522.91288 445.98]/Matrix[ 1 0 0 1 -72.024 -334.132]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +xtAv B&amp;tWǟe&amp;3 +جfbVw*@MojH5W ]X+[ gbK_ `dV(.+{ 3rҸ ע-ZkxTa`) əshT]Ү~3Tġ8/5{=7*`qwT85 +3r(Vq:A{@wQErzfafS0fpQoFy(fp0+endstream +endobj +604 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 450.88888 111.848]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 603 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +605 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 450.88888 111.848]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 604 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 606 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +606 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +607 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 12 0 R/F 4/M(D:20260319194102+05&#x27;30&#x27;)/NM(c0c89422-7bc1-4de4-b0ba-c4b90a749f65)/Rect[ 72.024 207.026 215.59 317.188]/C[ 1 .941176 .4]/Popup 608 0 R/CA 1/CreationDate(D:20260319194102+05&#x27;30&#x27;)/QuadPoints[ 72.024 317.188 208.39 317.188 72.024 302.836 208.39 302.836 72.024 302.836 143.09 302.836 72.024 289.366 143.09 289.366 72.024 289.366 78.264 289.366 72.024 275.206 78.264 275.206 72.024 275.206 78.264 275.206 72.024 261.526 78.264 261.526 78.264 275.878 215.59 275.878 78.264 261.526 215.59 261.526 72.024 261.526 78.264 261.526 72.024 248.086 78.264 248.086 78.264 261.526 143.09 261.526 78.264 248.086 143.09 248.086 72.024 248.086 78.264 248.086 72.024 234.166 78.264 234.166 72.024 234.166 78.264 234.166 72.024 220.486 78.264 220.486 78.264 234.838 213.91 234.838 78.264 220.486 213.91 220.486 72.024 220.486 78.264 220.486 72.024 207.026 78.264 207.026 78.264 220.486 138.2088 220.486 78.264 207.026 138.2088 207.026]/AP&lt;&lt;/N 615 0 R&gt;&gt;&gt;&gt; +endobj +608 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 197.188 792 317.188]/Parent 607 0 R&gt;&gt; +endobj +613 0 obj +&lt;&lt;/Length 237/Filter/FlateDecode/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 207.026 215.59 317.188]/Matrix[ 1 0 0 1 -72.024 -207.026]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +xl;n0D{&#x27;XBIc5nr0oe0(QN4/ϕ52pO@,.F)#ʔ,c+ 5+endstream +endobj +614 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 143.566 110.162]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 613 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +615 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 143.566 110.162]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 614 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 616 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +616 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +617 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 12 0 R/F 4/M(D:20260319194116+05&#x27;30&#x27;)/NM(694da513-3370-482e-833c-0d072070bf4d)/Rect[ 72.024 93.096 526.46928 123.116]/C[ .968627 .6 .819608]/Popup 618 0 R/CA 1/CreationDate(D:20260319194116+05&#x27;30&#x27;)/QuadPoints[ 72.024 123.116 526.46928 123.116 72.024 108.212 526.46928 108.212 72.024 108 451.98224 108 72.024 93.096 451.98224 93.096]/AP&lt;&lt;/N 625 0 R&gt;&gt;&gt;&gt; +endobj +618 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 3.116 792 123.116]/Parent 617 0 R&gt;&gt; +endobj +623 0 obj +&lt;&lt;/Length 180/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 93.096 526.46928 123.116]/Matrix[ 1 0 0 1 -72.024 -93.096]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.968627 .6 .819608 rg +.9315 w +72.024 108.212 m +72.024 123.116 l +526.46928 123.116 l +526.46928 108.212 l +f +.9315 w +72.024 93.096 m +72.024 108 l +451.98224 108 l +451.98224 93.096 l +f + +endstream +endobj +624 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 454.44528 30.02]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 623 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +625 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 454.44528 30.02]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 624 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 626 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +626 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +627 0 obj +[ 628 0 R 629 0 R 638 0 R 639 0 R] +endobj +628 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 14 0 R/F 4/M(D:20260319194257+05&#x27;30&#x27;)/NM(c9677891-e1cf-484d-b4de-fc03fa9a46e3)/Rect[ 72.024 369.46 311.4 683.758]/C[ .968627 .6 .819608]/Popup 629 0 R/CA 1/CreationDate(D:20260319194257+05&#x27;30&#x27;)/QuadPoints[ 72.024 683.758 224.02 683.758 72.024 669.406 224.02 669.406 72.024 669.406 224.02 669.406 72.024 655.966 224.02 655.966 224.02 670.318 233.38 670.318 224.02 655.966 233.38 655.966 72.024 655.966 78.264 655.966 72.024 642.046 78.264 642.046 72.024 642.046 78.264 642.046 72.024 628.346 78.264 628.346 78.264 642.698 236.5 642.698 78.264 628.346 236.5 628.346 72.024 628.346 78.264 628.346 72.024 614.906 78.264 614.906 78.264 628.346 175.03 628.346 78.264 614.906 175.03 614.906 72.024 614.906 78.264 614.906 72.024 601.466 78.264 601.466 78.264 614.906 175.03 614.906 78.264 601.466 175.03 601.466 175.03 615.818 222.58 615.818 175.03 601.466 222.58 601.466 72.024 601.418 83.304 601.418 72.024 587.066 83.304 587.066 72.024 587.066 83.304 587.066 72.024 573.386 83.304 573.386 83.304 587.738 255.7 587.738 83.304 573.386 255.7 573.386 72.024 573.386 83.304 573.386 72.024 559.946 83.304 559.946 83.304 573.386 209.59 573.386 83.304 559.946 209.59 559.946 72.024 559.946 83.304 559.946 72.024 546.506 83.304 546.506 83.304 559.946 209.59 559.946 83.304 546.506 209.59 546.506 209.59 560.858 311.4 560.858 209.59 546.506 311.4 546.506 72.024 546.506 83.304 546.506 72.024 533.036 83.304 533.036 83.304 546.506 140.69 546.506 83.304 533.036 140.69 533.036 72.024 533.036 78.504 533.036 72.024 519.596 78.504 519.596 72.024 519.596 78.264 519.596 72.024 505.436 78.264 505.436 72.024 505.436 78.264 505.436 72.024 491.756 78.264 491.756 78.264 506.108 193.51 506.108 78.264 491.756 193.51 491.756 72.024 491.756 78.264 491.756 72.024 478.316 78.264 478.316 78.264 491.756 180.79 491.756 78.264 478.316 180.79 478.316 72.024 478.316 78.264 478.316 72.024 464.876 78.264 464.876 78.264 478.316 180.79 478.316 78.264 464.876 180.79 464.876 180.79 479.228 204.55 479.228 180.79 464.876 204.55 464.876 72.024 454.416 118.85288 454.416 72.024 439.512 118.85288 439.512 72.024 439.44 112.25 439.44 72.024 425.64 112.25 425.64 72.024 425.28 112.25 425.28 72.024 411.48 112.25 411.48 72.024 411.36 78.624 411.36 72.024 397.56 78.624 397.56 72.024 397.2 145.61 397.2 72.024 383.4 145.61 383.4 72.024 383.26 118.73 383.26 72.024 369.46 118.73 369.46]/AP&lt;&lt;/N 636 0 R&gt;&gt;&gt;&gt; +endobj +629 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 563.758 792 683.758]/Parent 628 0 R&gt;&gt; +endobj +634 0 obj +&lt;&lt;/Length 596/Filter/FlateDecode/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 369.46 311.4 683.758]/Matrix[ 1 0 0 1 -72.024 -369.46]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +xlV9v! )~˅&amp;4ir0bLSM%|QؚL~?Tj&gt;ّqJR0j (r,ǹxH5b*Dr{`lۑ{+nz&quot;:_; +e%zY@uT)&amp; +*DH+0`D*eN}- ~rfx.g&quot;`x+嶾5zgNY&lt;(ު \8Ӊnlz}?+endstream +endobj +635 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 239.376 314.298]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 634 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +636 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 239.376 314.298]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 635 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 637 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +637 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +638 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 14 0 R/F 4/M(D:20260319194323+05&#x27;30&#x27;)/NM(8102029d-11f5-470c-8ad6-e3a17f1414bd)/Rect[ 72.024 273.382 513.88224 348.076]/C[ .560784 .870588 .976471]/Popup 639 0 R/CA 1/CreationDate(D:20260319194323+05&#x27;30&#x27;)/QuadPoints[ 72.024 348.076 502.64592 348.076 72.024 333.172 502.64592 333.172 72.024 333.172 502.64592 333.172 72.024 318.292 502.64592 318.292 502.64592 333.196 504.17608 333.196 502.64592 318.292 504.17608 318.292 72.024 318.292 312.12288 318.292 72.024 303.412 312.12288 303.412 72.024 303.166 513.88224 303.166 72.024 288.262 513.88224 288.262 72.024 288.262 372.65712 288.262 72.024 273.382 372.65712 273.382]/AP&lt;&lt;/N 646 0 R&gt;&gt;&gt;&gt; +endobj +639 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 228.076 792 348.076]/Parent 638 0 R&gt;&gt; +endobj +644 0 obj +&lt;&lt;/Length 168/Filter/FlateDecode/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 273.382 513.88224 348.076]/Matrix[ 1 0 0 1 -72.024 -273.382]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +xt;0 {&#x27;XKILiWz; Udp+=C3&#x27;h5?̀Fy=8ӼZTj9%6g0h&lt;&gt;gpuwt_sh- d$@&quot;9: Q&quot;dp *؃ɝh^2ec_+endstream +endobj +645 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 441.85824 74.694]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 644 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +646 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 441.85824 74.694]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 645 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 647 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +647 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +648 0 obj +[ 649 0 R 650 0 R 659 0 R 660 0 R] +endobj +649 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 15 0 R/F 4/M(D:20260319194339+05&#x27;30&#x27;)/NM(dbf2505c-9524-4a25-8b71-ea34d6435484)/Rect[ 72.024 685.27 523.932 726.61]/C[ .921569 .286275 .286275]/Popup 650 0 R/CA 1/CreationDate(D:20260319194339+05&#x27;30&#x27;)/QuadPoints[ 72.024 726.61 523.932 726.61 72.024 705.91 523.932 705.91 72.024 705.91 162.754 705.91 72.024 685.27 162.754 685.27]/AP&lt;&lt;/N 657 0 R&gt;&gt;&gt;&gt; +endobj +650 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 606.61 792 726.61]/Parent 649 0 R&gt;&gt; +endobj +655 0 obj +&lt;&lt;/Length 180/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 685.27 523.932 726.61]/Matrix[ 1 0 0 1 -72.024 -685.27]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.921569 .286275 .286275 rg +1.29375 w +72.024 705.91 m +72.024 726.61 l +523.932 726.61 l +523.932 705.91 l +f +1.29 w +72.024 685.27 m +72.024 705.91 l +162.754 705.91 l +162.754 685.27 l +f + +endstream +endobj +656 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 451.908 41.34]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 655 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +657 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 451.908 41.34]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 656 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 658 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +658 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +659 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 15 0 R/F 4/M(D:20260319195019+05&#x27;30&#x27;)/NM(e1196bac-a176-43eb-9793-0fa8ddd8c352)/Rect[ 72.024 196.49 500.82 237.85]/C[ .921569 .286275 .286275]/Popup 660 0 R/CA 1/CreationDate(D:20260319195019+05&#x27;30&#x27;)/QuadPoints[ 72.024 237.85 500.82 237.85 72.024 217.15 500.82 217.15 72.024 217.15 157.29 217.15 72.024 196.49 157.29 196.49]/AP&lt;&lt;/N 667 0 R&gt;&gt;&gt;&gt; +endobj +660 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 117.85 792 237.85]/Parent 659 0 R&gt;&gt; +endobj +665 0 obj +&lt;&lt;/Length 179/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 196.49 500.82 237.85]/Matrix[ 1 0 0 1 -72.024 -196.49]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.921569 .286275 .286275 rg +1.29375 w +72.024 217.15 m +72.024 237.85 l +500.82 237.85 l +500.82 217.15 l +f +1.29125 w +72.024 196.49 m +72.024 217.15 l +157.29 217.15 l +157.29 196.49 l +f + +endstream +endobj +666 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 428.796 41.36]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 665 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +667 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 428.796 41.36]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 666 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 668 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +668 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +669 0 obj +[ 670 0 R 671 0 R] +endobj +670 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 16 0 R/F 4/M(D:20260319195034+05&#x27;30&#x27;)/NM(8edb93d6-6ef1-41cc-ba27-d39ee50a6c65)/Rect[ 72.024 450.072 505.69152 494.996]/C[ .490196 .941176 .4]/Popup 671 0 R/CA 1/CreationDate(D:20260319195034+05&#x27;30&#x27;)/QuadPoints[ 72.024 494.996 481.46392 494.996 72.024 480.092 481.46392 480.092 72.024 479.876 505.69152 479.876 72.024 464.972 505.69152 464.972 72.024 464.972 246.81552 464.972 72.024 450.072 246.81552 450.072]/AP&lt;&lt;/N 678 0 R&gt;&gt;&gt;&gt; +endobj +671 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 374.996 792 494.996]/Parent 670 0 R&gt;&gt; +endobj +676 0 obj +&lt;&lt;/Length 118/Filter/FlateDecode/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 450.072 505.69152 494.996]/Matrix[ 1 0 0 1 -72.024 -450.072]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +xlK0&gt;&#x27;x2PI7%9jVH3@s:!9j* +ѧB&quot;ڛV[6Ž=^6#1&lt;Mה5j=EX+endstream +endobj +677 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 433.66752 44.924]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 676 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +678 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 433.66752 44.924]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 677 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 679 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +679 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +6 0 obj +&lt;&lt;/Author(Abhik)/Creator&lt;FEFF004D006900630072006F0073006F0066007400AE00200057006F0072006400200032003000310036&gt;/CreationDate(D:20240603093200+00&#x27;00&#x27;)/Producer(www.ilovepdf.com)/ModDate(D:20260319195035+05&#x27;30&#x27;)&gt;&gt; +endobj +xref +6 7 +0000558383 00000 n +0000531096 00000 n +0000531410 00000 n +0000531714 00000 n +0000532018 00000 n +0000532323 00000 n +0000532658 00000 n +14 3 +0000533032 00000 n +0000533367 00000 n +0000533702 00000 n +532 3 +0000534038 00000 n +0000534090 00000 n +0000534509 00000 n +539 6 +0000534618 00000 n +0000534996 00000 n +0000535219 00000 n +0000535458 00000 n +0000535517 00000 n +0000535935 00000 n +549 7 +0000536044 00000 n +0000536429 00000 n +0000536652 00000 n +0000536891 00000 n +0000536950 00000 n +0000536986 00000 n +0000537668 00000 n +560 7 +0000537777 00000 n +0000538165 00000 n +0000538389 00000 n +0000538629 00000 n +0000538688 00000 n +0000538724 00000 n +0000539263 00000 n +571 7 +0000539372 00000 n +0000539715 00000 n +0000539938 00000 n +0000540177 00000 n +0000540236 00000 n +0000540272 00000 n +0000540614 00000 n +582 7 +0000540723 00000 n +0000541012 00000 n +0000541235 00000 n +0000541474 00000 n +0000541533 00000 n +0000541569 00000 n +0000542049 00000 n +593 6 +0000542158 00000 n +0000542488 00000 n +0000542711 00000 n +0000542950 00000 n +0000543009 00000 n +0000543943 00000 n +603 6 +0000544050 00000 n +0000544510 00000 n +0000544734 00000 n +0000544974 00000 n +0000545033 00000 n +0000546030 00000 n +613 6 +0000546139 00000 n +0000546583 00000 n +0000546805 00000 n +0000547043 00000 n +0000547102 00000 n +0000547505 00000 n +623 7 +0000547612 00000 n +0000547981 00000 n +0000548203 00000 n +0000548441 00000 n +0000548500 00000 n +0000548552 00000 n +0000550965 00000 n +634 6 +0000551074 00000 n +0000551874 00000 n +0000552096 00000 n +0000552334 00000 n +0000552393 00000 n +0000553082 00000 n +644 7 +0000553191 00000 n +0000553569 00000 n +0000553792 00000 n +0000554031 00000 n +0000554090 00000 n +0000554142 00000 n +0000554541 00000 n +655 6 +0000554648 00000 n +0000555014 00000 n +0000555234 00000 n +0000555470 00000 n +0000555529 00000 n +0000555923 00000 n +665 7 +0000556030 00000 n +0000556394 00000 n +0000556614 00000 n +0000556850 00000 n +0000556909 00000 n +0000556945 00000 n +0000557425 00000 n +676 4 +0000557534 00000 n +0000557862 00000 n +0000558085 00000 n +0000558324 00000 n +trailer +&lt;&lt;/Size 680/Root 1 0 R/Info 6 0 R/ID[&lt;C625544EC9777731F743C9688D540575&gt;&lt;15B56DD1F8A4865AB13744ECA059F0DD&gt;]/Prev 520298&gt;&gt; +startxref +558609 +%%EOF </div> </div> @@ -52907,6 +55830,80 @@ trailer startxref 586805 %%EOF +7 0 obj +&lt;&lt;/Type/Page/MediaBox[ 0 0 595.2 841.92]/Resources&lt;&lt;/ExtGState&lt;&lt;/GS5 14 0 R/GS11 15 0 R&gt;&gt;/Font&lt;&lt;/F1 16 0 R/F2 17 0 R/F3 18 0 R/F4 19 0 R/F5 20 0 R/F6 21 0 R&gt;&gt;/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]&gt;&gt;/Contents 22 0 R/Group&lt;&lt;/Type/Group/S/Transparency/CS/DeviceRGB&gt;&gt;/Tabs/S/StructParents 0/Parent 2 0 R/Annots 187 0 R&gt;&gt; +endobj +187 0 obj +[ 188 0 R 189 0 R] +endobj +188 0 obj +&lt;&lt;/Type/Annot/Subtype/Highlight/P 7 0 R/F 4/M(D:20260319201152+05&#x27;30&#x27;)/NM(e3be2856-331e-4711-a799-f1288657f4cc)/Rect[ 72.024 699.31 506.422 742.42]/C[ .560784 .870588 .976471]/Popup 189 0 R/CA 1/CreationDate(D:20260319201152+05&#x27;30&#x27;)/QuadPoints[ 72.024 742.42 506.422 742.42 72.024 728.62 506.422 728.62 72.024 727.75 485.112 727.75 72.024 713.95 485.112 713.95 72.024 713.11 305.712 713.11 72.024 699.31 305.712 699.31]/AP&lt;&lt;/N 196 0 R&gt;&gt;&gt;&gt; +endobj +189 0 obj +&lt;&lt;/Type/Annot/Subtype/Popup/Open false/F 28/Rect[ 612 622.42 792 742.42]/Parent 188 0 R&gt;&gt; +endobj +194 0 obj +&lt;&lt;/Length 239/Type/XObject/Subtype/Form/FormType 1/BBox[ 72.024 699.31 506.422 742.42]/Matrix[ 1 0 0 1 -72.024 -699.31]/Resources&lt;&lt;/ProcSet[/PDF]&gt;&gt;&gt;&gt; +stream +.560784 .870588 .976471 rg +.8625 w +72.024 728.62 m +72.024 742.42 l +506.422 742.42 l +506.422 728.62 l +f +72.024 713.95 m +72.024 727.75 l +485.112 727.75 l +485.112 713.95 l +f +72.024 699.31 m +72.024 713.11 l +305.712 713.11 l +305.712 699.31 l +f + +endstream +endobj +195 0 obj +&lt;&lt;/Length 9/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 434.398 43.11]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/Form 194 0 R&gt;&gt;&gt;&gt;/Group&lt;&lt;/S/Transparency&gt;&gt;&gt;&gt; +stream +/Form Do + +endstream +endobj +196 0 obj +&lt;&lt;/Length 20/Type/XObject/Subtype/Form/FormType 1/BBox[ 0 0 434.398 43.11]/Matrix[ 1 0 0 1 0 0]/Resources&lt;&lt;/ProcSet[/PDF]/XObject&lt;&lt;/MWFOForm 195 0 R&gt;&gt;/ExtGState&lt;&lt;/R0 197 0 R&gt;&gt;&gt;&gt;&gt;&gt; +stream +/R0 gs +/MWFOForm Do + +endstream +endobj +197 0 obj +&lt;&lt;/Type/ExtGState/AIS false/BM/Multiply&gt;&gt; +endobj +6 0 obj +&lt;&lt;/Author(Abhik)/Creator&lt;FEFF004D006900630072006F0073006F0066007400AE00200057006F0072006400200032003000310036&gt;/CreationDate(D:20240603093228+00&#x27;00&#x27;)/Producer(www.ilovepdf.com)/ModDate(D:20260319201153+05&#x27;30&#x27;)&gt;&gt; +endobj +xref +6 2 +0000592576 00000 n +0000590703 00000 n +187 3 +0000591037 00000 n +0000591073 00000 n +0000591529 00000 n +194 4 +0000591636 00000 n +0000592061 00000 n +0000592281 00000 n +0000592517 00000 n +trailer +&lt;&lt;/Size 198/Root 1 0 R/Info 6 0 R/ID[&lt;DB27D04F074C0B5B30439E2A70369C27&gt;&lt;FDEB94B3CA830C263E790563E1FC73D5&gt;]/Prev 586805&gt;&gt; +startxref +592802 +%%EOF </div> </div> @@ -58255,17 +61252,19 @@ startxref </a> </div> <!-- Embedded Code Storage --> - <div id="code-Semester_1-R-temp-r" style="display:none;"># declare boolean -x &lt;- TRUE - -print(x) -print(class(x)) - -# declare boolean using single character -y &lt;- F - -print(y) -print(class(y)) </div> + <div id="code-Semester_1-R-temp-r" style="display:none;">s1 = rep(c(1,2,3,4,5), times=2) +s2 = c(5,4,3,2,1) +count = 0 +for(i in s1) { + for (j in s2) { + if((i+j) %% 2 == 0) { + count = count + 1 + print(sprintf(&quot;%d, %d, %d&quot;, i, j, count)) + print(length(s1)) + } + } +} +2^3</div> </div> </div>
© notamitgamer • Site Built: 2026-07-21 13:58:23 UTC • git-mirror commit: 1037f62 [view raw info]
Originally created with stagit • modified by notamitgamer
Forked from github.com/notamitgamer/git-mirror