-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
4821 lines (4814 loc) · 534 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html5>
<html>
<head>
<meta name="google" content="notranslate">
<meta name="viewport" content="target-densitydpi=device-dpi,user-scalable=1,minimum-scale=1,maximum-scale=2.5,initial-scale=1,width=device-width">
<meta http-equiv="X-UA-Compatible" content="IE=edge;">
<meta name="referrer" content="strict-origin-when-cross-origin">
<title>Complete Notes & Lectures - Atoms - Google Drive</title>
<link rel="shortcut icon" href="//ssl.gstatic.com/docs/spreadsheets/favicon3.ico">
<link href='/static/spreadsheets2/client/css/841989520-waffle_k_ltr.css' type='text/css' rel='stylesheet' nonce="oenKvZEkddYY5lvx-VGE6A">
<style type="text/css" nonce="oenKvZEkddYY5lvx-VGE6A">
html { overflow: visible; }
#sheets-viewport { overflow: auto; }
#sheets-viewport.widget-viewport { overflow: hidden; }
.grid-container { overflow: visible; background: white;}
.grid-table-container { overflow: visible; }
#top-bar {
margin: 0;
overflow: hidden;
}
#top-bar {
border-bottom: 1px solid #ccc;
padding: 6px 6px 0;
}
#doc-title { padding-bottom: 5px; }
#doc-title .name { font-size: 15px; }
#sheet-menu {
font-size: 13px;
margin: 6px 0 0;
padding: 0 0 5px;
}
#sheet-menu li {
display: inline;
list-style-type: none;
margin: 0;
padding: 5px 8px;
}
#sheet-menu li.active {
background-color: #fff;
font-weight: bold;
border: 1px solid #999;
}
#top-bar #sheet-menu li.active {
border-bottom: 0;
}
#sheet-menu a, #sheet-menu a:visited { color: #07c; }
#footer {
background: #f0f0f0;
border-top: 1px #ccc solid;
border-bottom: 1px #ccc solid;
font-size: 13;
padding: 10px 10px;
}
.dash {
padding: 0 6px;
}
.ritz .waffle a { color: inherit; }.ritz .waffle .s1{border-bottom:1px SOLID #000000;border-right:1px SOLID #000000;background-color:#ffffff;text-align:center;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#ea4335;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:middle;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s20{background-color:#ffffff;text-align:center;color:#000000;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:0;}.ritz .waffle .s28{border-right:1px SOLID #000000;background-color:#ffffff;text-align:left;color:#000000;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s32{border-bottom:1px SOLID #000000;border-right:1px SOLID #000000;background-color:#ffffff;text-align:center;color:#000000;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;overflow:hidden;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s36{border-right: none;border-bottom:1px SOLID #000000;background-color:#c9daf8;text-align:center;font-weight:bold;color:#000000;font-family:'docs-Calibri',Arial;font-size:11pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s39{border-left: none;border-bottom:1px SOLID #000000;background-color:#d9ead3;text-align:center;font-weight:bold;color:#000000;font-family:'docs-Calibri',Arial;font-size:11pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s8{border-right:1px SOLID #000000;background-color:#ffffff;}.ritz .waffle .s22{background-color:#ffffff;text-align:center;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#0000ff;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s34{border-bottom:1px SOLID #000000;border-right:1px SOLID #000000;background-color:#d9ead3;text-align:center;font-weight:bold;color:#000000;font-family:'docs-Calibri',Arial;font-size:11pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s24{background-color:#ffffff;text-align:center;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#1155cc;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s17{border-bottom:1px SOLID #000000;background-color:#ffffff;text-align:center;color:#000000;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s25{background-color:#ffffff;text-align:center;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#ea4335;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s57{border-right:1px SOLID transparent;background-color:#ffffff;text-align:center;color:#000000;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s21{background-color:#ff9900;text-align:center;font-weight:bold;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#1155cc;font-family:'docs-Calibri',Arial;font-size:13pt;vertical-align:bottom;white-space:normal;overflow:hidden;word-wrap:break-word;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s49{background-color:#d9ead3;text-align:center;font-weight:bold;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#1155cc;font-family:'docs-Calibri',Arial;font-size:9pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s53{background-color:#c9daf8;text-align:center;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#ea4335;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s4{border-right:1px SOLID #000000;background-color:#ffffff;text-align:center;color:#000000;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s30{border-left: none;border-bottom:1px SOLID #000000;background-color:#ffffff;text-align:center;color:#000000;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s67{border-bottom:1px SOLID #000000;background-color:#34a853;text-align:center;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#ffff00;font-family:'docs-Calibri',Arial;font-size:25pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s40{border-right: none;border-bottom:1px SOLID #000000;background-color:#d9d2e9;text-align:center;font-weight:bold;color:#000000;font-family:'docs-Calibri',Arial;font-size:11pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s55{border-left: none;background-color:#ffffff;text-align:center;color:#000000;font-family:'docs-Calibri',Arial;font-size:11pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s18{border-bottom:1px SOLID #000000;border-right:1px SOLID #000000;background-color:#a4c2f4;text-align:center;font-weight:bold;color:#000000;font-family:'docs-Calibri',Arial;font-size:20pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s3{border-bottom:1px SOLID #000000;border-right:1px SOLID #000000;background-color:#ffffff;text-align:center;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#ff0000;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:middle;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s23{background-color:#ffffff;text-align:center;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#ff0000;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s41{border-left: none;border-bottom:1px SOLID #000000;background-color:#d9d2e9;text-align:center;font-weight:bold;color:#000000;font-family:'docs-Calibri',Arial;font-size:11pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s2{border-right:1px SOLID #000000;background-color:#ff9900;text-align:center;font-weight:bold;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#1155cc;font-family:'docs-Calibri',Arial;font-size:13pt;vertical-align:bottom;white-space:normal;overflow:hidden;word-wrap:break-word;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s35{border-bottom:1px SOLID #000000;border-right:1px SOLID #000000;background-color:#d9d2e9;text-align:center;font-weight:bold;color:#000000;font-family:'docs-Calibri',Arial;font-size:11pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s68{border-bottom:1px SOLID #000000;border-right:1px SOLID #000000;background-color:#89d17c;text-align:center;font-weight:bold;color:#000000;font-family:'docs-Calibri',Arial;font-size:20pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s12{border-bottom:1px SOLID #000000;border-right:1px SOLID #000000;background-color:#ffffff;text-align:center;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#ea4335;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s52{background-color:#d9d2e9;text-align:center;font-weight:bold;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#1155cc;font-family:'docs-Calibri',Arial;font-size:9pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s13{border-right:1px SOLID #000000;background-color:#ffffff;text-align:center;color:#000000;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:normal;overflow:hidden;word-wrap:break-word;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s19{background-color:#ffffff;text-align:center;color:#000000;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:normal;overflow:hidden;word-wrap:break-word;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s64{border-bottom:1px SOLID #000000;border-right:1px SOLID #000000;background-color:#d9ead3;text-align:center;color:#000000;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s66{border-bottom:1px SOLID #000000;border-right:1px SOLID #000000;background-color:#7274e7;text-align:center;font-weight:bold;color:#000000;font-family:'docs-Calibri',Arial;font-size:20pt;vertical-align:middle;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s6{border-bottom:1px SOLID #000000;border-right:1px SOLID #000000;background-color:#ffffff;text-align:center;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#1155cc;font-family:'docs-Calibri',Arial;font-size:9pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s38{border-right: none;border-bottom:1px SOLID #000000;background-color:#d9ead3;text-align:center;font-weight:bold;color:#000000;font-family:'docs-Calibri',Arial;font-size:11pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s42{background-color:#ffffff;text-align:center;color:#ffffff;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s44{background-color:#c9daf8;text-align:center;color:#000000;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s15{background-color:#ffffff;text-align:center;color:#000000;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s61{border-bottom:1px SOLID #000000;border-right:1px SOLID #000000;background-color:#ffffff;text-align:center;color:#000000;font-family:'docs-Calibri',Arial;font-size:11pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s69{border-bottom:1px SOLID #000000;background-color:#ffffff;text-align:center;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#1155cc;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s9{border-right: none;background-color:#ffffff;}.ritz .waffle .s63{border-bottom:1px SOLID #000000;border-right:1px SOLID #000000;background-color:#ffff00;text-align:center;color:#000000;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s14{border-bottom:1px SOLID #000000;border-right:1px SOLID #000000;background-color:#ffffff;text-align:center;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#ff0000;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s16{border-bottom:1px SOLID #000000;background-color:#ffff00;text-align:center;font-weight:bold;color:#000000;font-family:'docs-Calibri',Arial;font-size:24pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s10{border-left: none;border-bottom:1px SOLID #000000;background-color:#a4c2f4;text-align:center;font-weight:bold;color:#000000;font-family:'docs-Calibri',Arial;font-size:20pt;vertical-align:middle;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s47{background-color:#d9ead3;text-align:center;color:#000000;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s11{border-bottom:1px SOLID #000000;border-right:1px SOLID #000000;background-color:#ffff00;text-align:center;font-weight:bold;color:#000000;font-family:'docs-Calibri',Arial;font-size:24pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s70{border-bottom:1px SOLID #000000;background-color:#ffffff;text-align:center;color:#000000;font-family:'docs-Calibri',Arial;font-size:9pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s60{border-bottom:1px SOLID #000000;border-right:1px SOLID #000000;background-color:#e6b8af;text-align:center;font-weight:bold;color:#000000;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s33{border-bottom:1px SOLID #000000;border-right:1px SOLID #000000;background-color:#c9daf8;text-align:center;font-weight:bold;color:#000000;font-family:'docs-Calibri',Arial;font-size:11pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s59{background-color:#fff2cc;text-align:center;font-weight:bold;color:#000000;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s45{background-color:#c9daf8;text-align:center;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#ff0000;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s62{border-left: none;border-bottom:1px SOLID #000000;background-color:#ffffff;text-align:center;color:#000000;font-family:'docs-Calibri',Arial;font-size:11pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s51{background-color:#d9d2e9;text-align:center;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#ea4335;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s29{background-color:#ffffff;text-align:left;color:#ea4335;font-family:'Arial';font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s56{border-left: none;background-color:#ffffff;text-align:center;color:#000000;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s54{border-right: none;background-color:#d9ead3;text-align:center;font-weight:bold;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#1155cc;font-family:'docs-Calibri',Arial;font-size:9pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s37{border-left: none;border-bottom:1px SOLID #000000;background-color:#c9daf8;text-align:center;font-weight:bold;color:#000000;font-family:'docs-Calibri',Arial;font-size:11pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s46{background-color:#c9daf8;text-align:center;font-weight:bold;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#1155cc;font-family:'docs-Calibri',Arial;font-size:9pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s31{border-bottom:1px SOLID #000000;border-right:1px SOLID #000000;background-color:#ffffff;text-align:center;color:#0000ff;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s7{border-bottom:1px SOLID #000000;border-right:1px SOLID #000000;background-color:#ffffff;text-align:center;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#1155cc;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s58{background-color:#fff2cc;text-align:center;color:#000000;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s65{border-bottom:1px SOLID #000000;border-right:1px SOLID #000000;background-color:#fce5cd;text-align:center;color:#000000;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s43{background-color:#ffffff;text-align:center;color:#000000;font-family:'docs-Calibri',Arial;font-size:11pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s48{background-color:#d9ead3;text-align:center;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#ea4335;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s27{background-color:#d0e0e3;text-align:center;font-weight:bold;color:#000000;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s50{background-color:#d9d2e9;text-align:center;color:#000000;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s26{background-color:#ffff00;text-align:center;font-weight:bold;color:#000000;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s0{border-bottom:1px SOLID #000000;border-right:1px SOLID #000000;background-color:#a4c2f4;text-align:center;font-weight:bold;color:#000000;font-family:'docs-Calibri',Arial;font-size:20pt;vertical-align:middle;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}.ritz .waffle .s5{border-bottom:1px SOLID #000000;border-right:1px SOLID #000000;background-color:#ffffff;text-align:center;color:#000000;font-family:'docs-Calibri',Arial;font-size:10pt;vertical-align:bottom;white-space:nowrap;direction:ltr;padding:2px 3px 2px 3px;}
</style>
<script type="text/javascript" nonce="Zoj7qb3pfg03atwNglQY-Q">
var activeSheetId;
function switchToSheet(id) {
if (document.getElementById('sheet-menu')) {
document.getElementById('sheet-button-' + activeSheetId)
.className = '';
document.getElementById('sheet-button-' + id).className = 'active';
}
document.getElementById(activeSheetId).style.display = 'none';
document.getElementById(id).style.display = '';
activeSheetId = id;
// posObjs() is defined in embeddedObjectJs (see EmbeddedObjectHtmlBuilder.java)
posObjs();
return false;
}
function init() {
var optPageSwitcher;
function resize() {
var optMobileWebHeader = document.getElementById('docs-ml-header-id');
var optTopBar = document.getElementById('top-bar');
var optFooter = document.getElementById('footer');
var sheetsViewport = document.getElementById('sheets-viewport');
if (optMobileWebHeader) {
sheetsViewport.style.marginTop = optMobileWebHeader.offsetHeight +
(optTopBar ? optTopBar.offsetHeight : 0) + 'px';
}
var adjustedHeight = window.innerHeight -
(optTopBar ? optTopBar.offsetHeight : 0) -
(optFooter ? optFooter.offsetHeight : 0);
var adjustedWidth = window.innerWidth;
sheetsViewport.style.width = (adjustedWidth + 'px');
sheetsViewport.style.height = (adjustedHeight + 'px');
if (optPageSwitcher) {
optPageSwitcher.resize(adjustedWidth, adjustedHeight);
}
}
resize();
window.onresize = resize;
var currentUrl = window.location.href;
var newUrl = currentUrl.replace('?sle=true&', '?');
newUrl = newUrl.replace('?sle=true', '');
newUrl = newUrl.replace('&sle=true&', '&');
newUrl = newUrl.replace('&sle=true', '');
window.history.replaceState(null, '', newUrl);
}
</script>
<style>@import url(https://fonts.googleapis.com/css?kit=o--8Et3j0xElSo4Jk-6CSN_pgL91BiSHK8etQbSopkk);</style>
<script nonce="Zoj7qb3pfg03atwNglQY-Q">_docs_flag_initialData={"docs-daflia":true,"docs-cclt":57,"docs-mwid":false,"docs-smheo":false,"info_params":{"includes_info_params":true},"docs-emwc":true,"docs-ecci":true,"ilcm":{"eui":"ADFN-cui7PDjKdhXGlVGijgzpfTySmWxXUxDu4egPdRxGFiBZE27lEzJpzjjv9UcY-DNwiZsrjAa","je":1,"sstu":1683012573814110,"si":"CL669bSO1v4CFUJgsAod3YQMaQ","gsc":0,"ei":[5700019,5700422,5700559,5700884,5701034,5702135,5702785,5702936,5703182,5703259,5703839,5703938,5704621,5704883,5705101,5705301,5705777,5705891,5706007,5706069,5706169,5706270,5706523,5707047,5707204,5707711,5707819,5707943,5708479,5708562,5708886,5709085,5709357,5709476,5709661,5709673,5710692,5711471,5711550,5712146,5712635,5712909,5712913,5713195,5713554,5714310,5714326,5714465,5714674,5714839,5714843,5715364,5715824,5716149,5716457,5717157,5717949,5719462,5719482,5719527,5720568,5720788,5721814,5722567,5723284,5723679,5724085,5724215,5724435,5724533,5724896,5725934,5726695,5726752,5727257,5727853,5727901,5728201,5729092,5729206,5730225,5730285,5731510,5731835,5732271,5732341,5733768,5734392,5734632,5735134,5735252,5735670,5735806,5737153,5737254,5737800,5738081,5738215,5738569,5739837,5740186,5740341,5740731,5740814,5741578,5742612,5743144,5743450,5743550,5743787,5744348,5744595,5746312,5746724,5747216,5747355,5747881,5747941,5749276,5749715,5749835,5750110,5750253,5750313,5750371,5750750,5752714,5752734,5752835,5753681,5754269,5754918,5755409,5755964,5756417,5756457,5756655,5757322,5757382,5758616,5758674,5759278,5759562,5760167,5760307,5760450,5760470,5760760,5760945,5761407,5761626,5761728,5762381,5762729,5763557,5763577,5764007,5764466,5765491,5765687,5766331,5767931,5768017,5768952,5769631,5769791,5769915,5770170,5771370,5772465,5773794,5774014,5774471,5775036,5775570,5775612,5775693,5776215,5776435,5776897,5777754,5777795,5778646,5778980,5779540,5779600,5779702,5780532,5780830,5781267,5781610,5781866,5782030,5782313,5782635,5782880,5783050,5783713,5783821,5783897,5783957,5784534,5784602,5786020,5786060,5786698,5786862,5789815,13702623,48966202,49323018,49372328,49375222,49375901,49378789,49381162,49398749,49451639,49452965,49453854,49471971,49474176,49491685,49499289,49501724,49512213,49622771,49624180,49643596,49644123,49648934,49654093,49658602,49700864,49703288,49756726,49769325,49783962,49816045,49822909,49824143,49833550,49839739,49842983,49878668,49898225,49924754,49926191,49927387,49943127,49944301,49979606,50022414,50082758,50109736,50127500,50166919,50168395,50174546,50179510,50263372,50266150,50273416,50291040,50319472,50320270,50322263,50335675,50337778,50347642,50349288,50360924,50387063,50389258,50391918,50423050,50455781,50468201,50515215,50531533,50533204,50548862,50578938,50601754,50602289],"crc":0,"cvi":[]},"drive_url":"//drive.google.com/u/1?usp\u003dsheets_web","docs-liap":"/naLogImpressions","docs-sup":"/spreadsheets/u/1"}; _docs_flag_cek=''; if (window['DOCS_timing']) {DOCS_timing['ifdld']=new Date().getTime();}</script>
</head>
<script nonce="Zoj7qb3pfg03atwNglQY-Q">document.addEventListener('DOMContentLoaded', init);</script>
<body class="docs-gm">
<div id="top-bar">
<div id="doc-title"><span class="name">Complete Notes & Lectures - Atoms</span></div>
<ul id="sheet-menu">
<li id="sheet-button-1882151445"><a href="#">Aar Ya Paar 2.0</a></li>
<script nonce="Zoj7qb3pfg03atwNglQY-Q">document.addEventListener('DOMContentLoaded', function() {document.getElementById('sheet-button-1882151445').addEventListener('click', function () {return switchToSheet('1882151445');});});</script>
<li id="sheet-button-517215497"><a href="#">BounceBack 2.0</a></li>
<script nonce="Zoj7qb3pfg03atwNglQY-Q">document.addEventListener('DOMContentLoaded', function() {document.getElementById('sheet-button-517215497').addEventListener('click', function () {return switchToSheet('517215497');});});</script>
<li id="sheet-button-0"><a href="#">BounceBack </a></li>
<script nonce="Zoj7qb3pfg03atwNglQY-Q">document.addEventListener('DOMContentLoaded', function() {document.getElementById('sheet-button-0').addEventListener('click', function () {return switchToSheet('0');});});</script>
<li id="sheet-button-138753200"><a href="#">Endgame </a></li>
<script nonce="Zoj7qb3pfg03atwNglQY-Q">document.addEventListener('DOMContentLoaded', function() {document.getElementById('sheet-button-138753200').addEventListener('click', function () {return switchToSheet('138753200');});});</script>
<li id="sheet-button-1786623755"><a href="#">JEE Advanced Series</a></li>
<script nonce="Zoj7qb3pfg03atwNglQY-Q">document.addEventListener('DOMContentLoaded', function() {document.getElementById('sheet-button-1786623755').addEventListener('click', function () {return switchToSheet('1786623755');});});</script>
<li id="sheet-button-1257654562"><a href="#">Aarambh</a></li>
<script nonce="Zoj7qb3pfg03atwNglQY-Q">document.addEventListener('DOMContentLoaded', function() {document.getElementById('sheet-button-1257654562').addEventListener('click', function () {return switchToSheet('1257654562');});});</script>
<li id="sheet-button-1965990631"><a href="#">45 Days Crash Course</a></li>
<script nonce="Zoj7qb3pfg03atwNglQY-Q">document.addEventListener('DOMContentLoaded', function() {document.getElementById('sheet-button-1965990631').addEventListener('click', function () {return switchToSheet('1965990631');});});</script>
<li id="sheet-button-1184630259"><a href="#">PYQ Express</a></li>
<script nonce="Zoj7qb3pfg03atwNglQY-Q">document.addEventListener('DOMContentLoaded', function() {document.getElementById('sheet-button-1184630259').addEventListener('click', function () {return switchToSheet('1184630259');});});</script>
<li id="sheet-button-1187631453"><a href="#">CBSE Class 12 Term 1</a></li>
<script nonce="Zoj7qb3pfg03atwNglQY-Q">document.addEventListener('DOMContentLoaded', function() {document.getElementById('sheet-button-1187631453').addEventListener('click', function () {return switchToSheet('1187631453');});});</script>
<li id="sheet-button-1533887413"><a href="#">Chemistry 45 Day Crash Course</a></li>
<script nonce="Zoj7qb3pfg03atwNglQY-Q">document.addEventListener('DOMContentLoaded', function() {document.getElementById('sheet-button-1533887413').addEventListener('click', function () {return switchToSheet('1533887413');});});</script>
<li id="sheet-button-1387314975"><a href="#">JEE PYQs</a></li>
<script nonce="Zoj7qb3pfg03atwNglQY-Q">document.addEventListener('DOMContentLoaded', function() {document.getElementById('sheet-button-1387314975').addEventListener('click', function () {return switchToSheet('1387314975');});});</script>
</ul>
</div>
<div id="sheets-viewport">
<div id="1882151445" style="display:none;position:relative;" dir="ltr">
<div class="ritz grid-container" dir="ltr">
<table class="waffle" cellspacing="0" cellpadding="0">
<thead>
<tr>
<th class="row-header freezebar-origin-ltr header-shim row-header-shim"></th>
<th id="1882151445C0" style="width:163px;" class="header-shim"></th>
<th id="1882151445C1" style="width:100px;" class="header-shim"></th>
<th id="1882151445C2" style="width:100px;" class="header-shim"></th>
<th id="1882151445C3" style="width:100px;" class="header-shim"></th>
<th id="1882151445C4" style="width:135px;" class="header-shim"></th>
<th id="1882151445C6" style="width:100px;" class="header-shim"></th>
<th id="1882151445C7" style="width:100px;" class="header-shim"></th>
<th id="1882151445C8" style="width:100px;" class="header-shim"></th>
<th id="1882151445C10" style="width:100px;" class="header-shim"></th>
</tr>
</thead>
<tbody>
<tr style="height: 20px">
<th id="1882151445R0" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">1</div>
</th>
<td class="s0" dir="ltr" colspan="2">Maths </td>
<td class="s1" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtube.com/playlist?list%3DPLYFlGICvnvLi-6VMmu2Safry84f-jXoOX&sa=D&source=editors&ust=1683016173495602&usg=AOvVaw2Vgx7_0xFx7Q4A3LMdW7iK">► PLAYLIST</a></td>
<td class="s2" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://t.me/unacademyatoms&sa=D&source=editors&ust=1683016173495758&usg=AOvVaw0ELnMByTcKmAjcR0l0qlJH">Click here to join Atoms Telegram</a></td>
<td class="s0" dir="ltr">Chemistry</td>
<td class="s3" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://www.youtube.com/playlist?list%3DPLYFlGICvnvLhXumyGkHu8z1zSmwBOiC5T&sa=D&source=editors&ust=1683016173495899&usg=AOvVaw00ygsltFwCydrbv6_SqXNS">► PLAYLIST</a></td>
<td class="s4"></td>
<td class="s0" dir="ltr">Physics</td>
<td class="s3" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://www.youtube.com/playlist?list%3DPLYFlGICvnvLi1GBjojJkTjJW6zW79SvbM&sa=D&source=editors&ust=1683016173496049&usg=AOvVaw2wpUD7JVahHZAm9izm9dq8">► PLAYLIST</a></td>
</tr>
<tr style="height: 20px">
<th id="1882151445R1" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">2</div>
</th>
<td class="s5" dir="ltr">Sets & Relations</td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3EWQINV&sa=D&source=editors&ust=1683016173496266&usg=AOvVaw2EGBBOp2ZSdJj2xP8hI2hX">Notes PDF</a></td>
<td></td>
<td></td>
<td class="s4">Mole Concept</td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1UYbGay4CRz9R_mj_vAICEWsRoEZLMhst/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173496448&usg=AOvVaw0xJXLDEK-_xpDXFX231i15">Notes PDF</a></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr style="height: 20px">
<th id="1882151445R2" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">3</div>
</th>
<td class="s5" dir="ltr">Functions</td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3oo1KpE&sa=D&source=editors&ust=1683016173496619&usg=AOvVaw2SK0t72Mtf1ocyLFojiTKi">Notes PDF</a></td>
<td></td>
<td></td>
<td class="s4">Structure of atom</td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1rK7cIuDtn_crJ5RPSaOKhU4n6Y8tolC9/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173496715&usg=AOvVaw01rIRXWU0z4g2V8v-nvNhv">Notes PDF</a></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr style="height: 20px">
<th id="1882151445R3" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">4</div>
</th>
<td class="s5" dir="ltr">Inequalities</td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://www.youtube.com/redirect?event%3Dvideo_description%26redir_token%3DQUFFLUhqbEN1bEhBU2doRVg3OVJ4ZnFYM2Jra2RjQWxfUXxBQ3Jtc0trRG9tVHFGeVpWc0JxTmhTbzV0YW5pNVZNcENpUU4yTjNQcnBzQ1lTc3ZuODlFMVg5bHptRmVBaVliVndQaGRkR1JyYWRzcjkxTld4TTBkQUpQN1pVX1JHSTFZbHN4aDZESkVYTXE0dkJ5N1hqeTZiRQ%26q%3Dhttps%253A%252F%252Fbit.ly%252F3FhFgwz&sa=D&source=editors&ust=1683016173496881&usg=AOvVaw31C9MyUnqJ0sSeRj8In5Yf">Notes PDF</a></td>
<td></td>
<td></td>
<td class="s4" dir="ltr">Periodic Properties</td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1djdHnew9QO8qIcVTEWI92VOuA0AV1pCN/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173497067&usg=AOvVaw3WgijZeRZe0XxLMHwHS_Og">Notes PDF</a></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr style="height: 20px">
<th id="1882151445R4" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">5</div>
</th>
<td class="s5" dir="ltr">Quadratic Equations</td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1xC5-gWHrVOEuCY3oBRU_1oSNE_dOo5OZ/view&sa=D&source=editors&ust=1683016173497289&usg=AOvVaw2KxMtmWbZ0H02MGhKjpBE6">Notes PDF</a></td>
<td></td>
<td></td>
<td class="s4">Chemical Bonding</td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1djdHnew9QO8qIcVTEWI92VOuA0AV1pCN/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173497445&usg=AOvVaw3SKKSbIDriHnr-nvhf5Fjm">Notes PDF</a></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr style="height: 20px">
<th id="1882151445R5" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">6</div>
</th>
<td class="s5" dir="ltr">Trigonometry</td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1UBjll82TvfllKMXtkVmqL9cIMQlmcUtR/view&sa=D&source=editors&ust=1683016173497627&usg=AOvVaw1h77QCrKeIOGwJlE6dDRec">Notes PDF</a></td>
<td></td>
<td></td>
<td class="s4">States of Matter</td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1mf4I3kJIIvqD1ijAFg6XewT9-CCyxarM/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173497755&usg=AOvVaw1gR5_OtIIpBpPwn97cpclf">Notes PDF</a></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr style="height: 20px">
<th id="1882151445R6" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">7</div>
</th>
<td class="s5" dir="ltr">Trigonometric Equations</td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1bOVLks9i4Ib_u8srpmatS8Yr2tWU0FhT/view&sa=D&source=editors&ust=1683016173497916&usg=AOvVaw0GdHnMPgTElvMNyFioqXvk">Notes PDF</a></td>
<td></td>
<td></td>
<td class="s4" dir="ltr">Thermodynamics</td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3VfBxI0&sa=D&source=editors&ust=1683016173498040&usg=AOvVaw3RAtFrttdD6PG87ojeaBnh">Notes PDF</a></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr style="height: 20px">
<th id="1882151445R7" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">8</div>
</th>
<td class="s5" dir="ltr">Sequence & Series</td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3CfNGCw&sa=D&source=editors&ust=1683016173498198&usg=AOvVaw2mOudvWJxTsYJTw3qwVNaH">Notes PDF</a></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr style="height: 20px">
<th id="1882151445R8" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">9</div>
</th>
<td class="s5" dir="ltr">Binomial Theorem</td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3GpdLBA&sa=D&source=editors&ust=1683016173498354&usg=AOvVaw05xvXJH95G_evzj5zH-5rU">Notes PDF</a></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr style="height: 20px">
<th id="1882151445R9" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">10</div>
</th>
<td class="s5" dir="ltr">Permutation & Combination</td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3x9U5gU&sa=D&source=editors&ust=1683016173498505&usg=AOvVaw34ifdrWMqLtdgNDrK2FWKc">Notes PDF</a></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr style="height: 20px">
<th id="1882151445R10" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">11</div>
</th>
<td class="s5" dir="ltr">Straight Lines</td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3wqvVhV&sa=D&source=editors&ust=1683016173498691&usg=AOvVaw0OoLj6ogQsOP54weWy-rg0">Notes PDF</a></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr style="height: 20px">
<th id="1882151445R11" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">12</div>
</th>
<td class="s5" dir="ltr">Circle</td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/2YwfJzi&sa=D&source=editors&ust=1683016173498884&usg=AOvVaw1zOqkaKZ_ddL-ioyJmcysk">Notes PDF</a></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr style="height: 20px">
<th id="1882151445R12" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">13</div>
</th>
<td class="s5" dir="ltr">Parabola</td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3c52Nnc&sa=D&source=editors&ust=1683016173499069&usg=AOvVaw1lfs9KXwyv_V4jkzSMpNM5">Notes PDF</a></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div>
</div>
<div id="517215497" style="display:none;position:relative;" dir="ltr">
<div class="ritz grid-container" dir="ltr">
<table class="waffle" cellspacing="0" cellpadding="0">
<thead>
<tr>
<th class="row-header freezebar-origin-ltr header-shim row-header-shim"></th>
<th id="517215497C0" style="width:133px;" class="header-shim"></th>
<th id="517215497C1" style="width:100px;" class="header-shim"></th>
<th id="517215497C2" style="width:100px;" class="header-shim"></th>
<th id="517215497C3" style="width:100px;" class="header-shim"></th>
<th id="517215497C4" style="width:201px;" class="header-shim"></th>
<th id="517215497C5" style="width:100px;" class="header-shim"></th>
<th id="517215497C6" style="width:100px;" class="header-shim"></th>
<th id="517215497C7" style="width:100px;" class="header-shim"></th>
<th id="517215497C8" style="width:215px;" class="header-shim"></th>
<th id="517215497C9" style="width:100px;" class="header-shim"></th>
<th id="517215497C10" style="width:100px;" class="header-shim"></th>
<th id="517215497C11" style="width:100px;" class="header-shim"></th>
<th id="517215497C12" style="width:194px;" class="header-shim"></th>
<th id="517215497C13" style="width:100px;" class="header-shim"></th>
<th id="517215497C14" style="width:100px;" class="header-shim"></th>
</tr>
</thead>
<tbody>
<tr style="height: 20px">
<th id="517215497R0" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">1</div>
</th>
<td class="s0" dir="ltr" colspan="2">Maths </td>
<td class="s1" dir="ltr" rowspan="3"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtube.com/playlist?list%3DPLYFlGICvnvLiUVv-4QR7b4Q_-CyvhzCns&sa=D&source=editors&ust=1683016173502655&usg=AOvVaw2vFOgFm6B31YlzHOYys8A_">► PLAYLIST</a></td>
<td class="s2" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://t.me/unacademyatoms&sa=D&source=editors&ust=1683016173502866&usg=AOvVaw0CJRUiLw7RVm0mysXJ-iP7">Click here to join Atoms Telegram</a></td>
<td class="s0" dir="ltr">Chemistry</td>
<td class="s1" dir="ltr" colspan="2"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtube.com/playlist?list%3DPLYFlGICvnvLjbgpC5DMB75Z2KgGNLx8nT&sa=D&source=editors&ust=1683016173503053&usg=AOvVaw3SEUJNDiJv5qZG1-GDW-Pq">► PLAYLIST</a></td>
<td class="s8"></td>
<td class="s0" dir="ltr">Class 11 Physics</td>
<td class="s1" dir="ltr" colspan="2"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtube.com/playlist?list%3DPLYFlGICvnvLg_01ZSWKohXrHsFX6b1y4l&sa=D&source=editors&ust=1683016173503271&usg=AOvVaw1d5SdBadOMv9NRM12v-wJ1">► PLAYLIST</a></td>
<td class="s9"></td>
<td class="s10 softmerge" dir="ltr">
<div class="softmerge-inner" style="width:202px;left:-12px">Class 12 Physics</div>
</td>
<td class="s1" dir="ltr" colspan="2"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtube.com/playlist?list%3DPLYFlGICvnvLjFx7vHdciQ2PQ7zNePgulU&sa=D&source=editors&ust=1683016173503487&usg=AOvVaw0BOgv2uGD1i9aAGq5kyemV">► PLAYLIST</a></td>
</tr>
<tr style="height: 20px">
<th id="517215497R1" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">2</div>
</th>
<td class="s11" dir="ltr" colspan="2" rowspan="2">11th Syllabus</td>
<td class="s8"></td>
<td class="s5" dir="ltr">Mole Concept</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://www.youtube.com/watch?v%3DFhSsPdlGP_g%26list%3DPLYFlGICvnvLjbgpC5DMB75Z2KgGNLx8nT%26index%3D1&sa=D&source=editors&ust=1683016173503863&usg=AOvVaw2HiRekp7ASrMch0CS6eDTM">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3VfBxI0&sa=D&source=editors&ust=1683016173503995&usg=AOvVaw1yXlOmDFEOoFCqV112zs9D">Notes PDF</a></td>
<td class="s8"></td>
<td class="s5" dir="ltr">Units, Dimension and Measurement</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/OY7k5nZNbTA&sa=D&source=editors&ust=1683016173504176&usg=AOvVaw0y7usa9_YtQLDG7F7yGbJ_">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3Cqw9ZW&sa=D&source=editors&ust=1683016173504275&usg=AOvVaw21d--qsTK6vGE5tTV1tH4e">Notes PDF</a></td>
<td class="s8"></td>
<td class="s5" dir="ltr">Electric Charges and Fields</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/fztH4xxbM9s&sa=D&source=editors&ust=1683016173504444&usg=AOvVaw1-NsF6otS0YqO7vF6fg1Iq">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3esfTiZ&sa=D&source=editors&ust=1683016173504522&usg=AOvVaw31ub3zmo3XriXIuy-ySsWb">Notes PDF</a></td>
</tr>
<tr style="height: 20px">
<th id="517215497R2" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">3</div>
</th>
<td class="s8"></td>
<td class="s5" dir="ltr">Structure of Atom</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://www.youtube.com/watch?v%3DwzDgdkFFYlc%26list%3DPLYFlGICvnvLjbgpC5DMB75Z2KgGNLx8nT%26index%3D2%26t%3D77s&sa=D&source=editors&ust=1683016173504717&usg=AOvVaw0bFzuDKnTLuuTZgL0rc-xn">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3TrQjJI&sa=D&source=editors&ust=1683016173504814&usg=AOvVaw3Gjc57h3FlJSpEuk3E3Hvw">Notes PDF</a></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr style="height: 20px">
<th id="517215497R3" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">4</div>
</th>
<td class="s5" dir="ltr">Sets & Relations</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/UcNslh9Pjrw&sa=D&source=editors&ust=1683016173504979&usg=AOvVaw2-azj-6X4WTAyA7QLZNu9N">► PLAY</a></td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3Mr4zjX&sa=D&source=editors&ust=1683016173505075&usg=AOvVaw2lUkKDbOELnBV-2h_g3D0P">Notes PDF</a></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr style="height: 20px">
<th id="517215497R4" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">5</div>
</th>
<td class="s5" dir="ltr">Relations & Functions</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://www.youtube.com/watch?v%3DcYP-ekxM6Dc&sa=D&source=editors&ust=1683016173505244&usg=AOvVaw0wDxSO33tZJl0qDDvr3g7z">► PLAY</a></td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3Tkcdi1&sa=D&source=editors&ust=1683016173505328&usg=AOvVaw1VHdKFhJhLUi9hDRuvG_jP">Notes PDF</a></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div>
</div>
<div id="0" style="display:none;position:relative;" dir="ltr">
<div class="ritz grid-container" dir="ltr">
<table class="waffle no-grid" cellspacing="0" cellpadding="0">
<thead>
<tr>
<th class="row-header freezebar-origin-ltr header-shim row-header-shim"></th>
<th id="0C0" style="width:203px;" class="header-shim"></th>
<th id="0C1" style="width:74px;" class="header-shim"></th>
<th id="0C2" style="width:138px;" class="header-shim"></th>
<th id="0C3" style="width:175px;" class="header-shim"></th>
<th id="0C4" style="width:242px;" class="header-shim"></th>
<th id="0C5" style="width:85px;" class="header-shim"></th>
<th id="0C6" style="width:100px;" class="header-shim"></th>
<th id="0C7" style="width:100px;" class="header-shim"></th>
<th id="0C8" style="width:266px;" class="header-shim"></th>
<th id="0C9" style="width:85px;" class="header-shim"></th>
<th id="0C10" style="width:71px;" class="header-shim"></th>
</tr>
</thead>
<tbody>
<tr style="height: 20px">
<th id="0R0" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">1</div>
</th>
<td class="s0" dir="ltr" colspan="2">Maths </td>
<td class="s1" dir="ltr" rowspan="3"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtube.com/playlist?list%3DPLYFlGICvnvLi-6VMmu2Safry84f-jXoOX&sa=D&source=editors&ust=1683016173530855&usg=AOvVaw24ZgU0Xby1WjPgv-76uboP">► PLAYLIST</a></td>
<td class="s2" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://t.me/unacademyatoms&sa=D&source=editors&ust=1683016173531018&usg=AOvVaw2lCCorJO0GGF31MptVjXkx">Click here to join Atoms Telegram</a></td>
<td class="s0" dir="ltr">Chemistry</td>
<td class="s3" dir="ltr" colspan="2"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://www.youtube.com/playlist?list%3DPLYFlGICvnvLgtUsAXwDlIa1aRS2agfNT3&sa=D&source=editors&ust=1683016173531188&usg=AOvVaw1lqurJrojRAQ9EiAE2-tp5">► PLAYLIST</a></td>
<td class="s4"></td>
<td class="s0" dir="ltr">Class 11 Physics</td>
<td class="s3" dir="ltr" colspan="2"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://www.youtube.com/playlist?list%3DPLYFlGICvnvLi1GBjojJkTjJW6zW79SvbM&sa=D&source=editors&ust=1683016173531410&usg=AOvVaw0cSINbY0AcRtsyLAZLH8iW">► PLAYLIST</a></td>
</tr>
<tr style="height: 20px">
<th id="0R1" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">2</div>
</th>
<td class="s11" dir="ltr" colspan="2" rowspan="2">11th Syllabus</td>
<td class="s13"></td>
<td class="s5" dir="ltr">Nomenclature</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/t4qcUocjQiE&sa=D&source=editors&ust=1683016173531770&usg=AOvVaw3zrnxdcKjJ2xoRNT6R8TDR">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/2YPi9sF&sa=D&source=editors&ust=1683016173531903&usg=AOvVaw0IsmzGwVBJPGyCMxNzA399">Notes PDF</a></td>
<td class="s4"></td>
<td class="s5" dir="ltr">Units, Dimensions and Error</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://www.youtube.com/watch?v%3DSyA3qCzgZ-c%26list%3DPLYFlGICvnvLi1GBjojJkTjJW6zW79SvbM%26index%3D1&sa=D&source=editors&ust=1683016173532093&usg=AOvVaw1KbHkoEcm39JyEHoeowVcI">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3IfFYvK&sa=D&source=editors&ust=1683016173532235&usg=AOvVaw2g2ZQzvotC4KQz53i9-CmQ">Notes</a></td>
</tr>
<tr style="height: 20px">
<th id="0R2" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">3</div>
</th>
<td class="s13"></td>
<td class="s5" dir="ltr">Isomerism</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/4YlptOum9ug&sa=D&source=editors&ust=1683016173532496&usg=AOvVaw3G9vFTqn9OD_OcHX2_IEoA">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3CejuHU&sa=D&source=editors&ust=1683016173532628&usg=AOvVaw1rSpDP-JnCWL5cUj5JaR8L">Notes PDF</a></td>
<td class="s4"></td>
<td class="s5" dir="ltr">Kinematics 1D</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://www.youtube.com/watch?v%3DJo0DUg7zj4Y%26list%3DPLYFlGICvnvLi1GBjojJkTjJW6zW79SvbM%26index%3D2&sa=D&source=editors&ust=1683016173532812&usg=AOvVaw23L3faMhatQRCZFfdEhh6_">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1cOcEBSFohfEhgfAH7n42-PHVM5E5yyyD/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173532920&usg=AOvVaw3GOVlgxwym0J9xUEOWjFbs">Notes</a></td>
</tr>
<tr style="height: 20px">
<th id="0R3" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">4</div>
</th>
<td class="s5" dir="ltr">Sets & Relations</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/0KCLAfpZ2zY&sa=D&source=editors&ust=1683016173533151&usg=AOvVaw1KuNwlNsBVe-1pJ2LnhFWu">► PLAY</a></td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3EWQINV&sa=D&source=editors&ust=1683016173533291&usg=AOvVaw1LTSCD70i3q4wY9X13ON4R">Notes PDF</a></td>
<td class="s13"></td>
<td class="s5" dir="ltr">GOC</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/j344DfuuDME&sa=D&source=editors&ust=1683016173533475&usg=AOvVaw1iZV6nKyLksOrA_vAFZ7x0">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3lzu45l&sa=D&source=editors&ust=1683016173533579&usg=AOvVaw3hEtOC7DZW1eoFAWM3iHzX">Notes PDF</a></td>
<td class="s4"></td>
<td class="s5" dir="ltr">Kinematics 2D</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://www.youtube.com/watch?v%3DE0pdsnUCpPY%26list%3DPLYFlGICvnvLi1GBjojJkTjJW6zW79SvbM%26index%3D3&sa=D&source=editors&ust=1683016173533734&usg=AOvVaw23OyIbs2VdVhFpeMD8E2p6">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1D6IB1R-t-r42hqSVo6a1TvglCHHLD5L6/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173533841&usg=AOvVaw2SaXlSN3B0c9jH27BZ3xAv">Notes</a></td>
</tr>
<tr style="height: 20px">
<th id="0R4" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">5</div>
</th>
<td class="s5" dir="ltr">Functions</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/qgk0a-W0LQ4&sa=D&source=editors&ust=1683016173534028&usg=AOvVaw0m39Z02en_pN1iUalvrtrU">► PLAY</a></td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3oo1KpE&sa=D&source=editors&ust=1683016173534118&usg=AOvVaw2YT3UqBV472lRWUAmCsdEj">Notes PDF</a></td>
<td class="s13"></td>
<td class="s5" dir="ltr">Hydrocarbons</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/Dih4Clv6vQc&sa=D&source=editors&ust=1683016173534247&usg=AOvVaw0gc1JwY_UdF6l2fDMjkk-O">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3hXI5sC&sa=D&source=editors&ust=1683016173534307&usg=AOvVaw0y5EKVsQG0Caa2guG2fToy">Notes PDF</a></td>
<td class="s4"></td>
<td class="s5" dir="ltr">Newton's Laws of Motion</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://www.youtube.com/watch?v%3DyJ2RtjmId74%26list%3DPLYFlGICvnvLi1GBjojJkTjJW6zW79SvbM%26index%3D4&sa=D&source=editors&ust=1683016173534421&usg=AOvVaw1SZ8v921Ao4syotnsrYCwW">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3DeQUqp&sa=D&source=editors&ust=1683016173534491&usg=AOvVaw1599M4dQz_RC_f_NMU9UAC">Notes</a></td>
</tr>
<tr style="height: 20px">
<th id="0R5" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">6</div>
</th>
<td class="s5" dir="ltr">Inequalities</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/BVNaeS8T5uQ&sa=D&source=editors&ust=1683016173534653&usg=AOvVaw0efsXvBpUF6x6I_zHFCs4O">► PLAY</a></td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://www.youtube.com/redirect?event%3Dvideo_description%26redir_token%3DQUFFLUhqbEN1bEhBU2doRVg3OVJ4ZnFYM2Jra2RjQWxfUXxBQ3Jtc0trRG9tVHFGeVpWc0JxTmhTbzV0YW5pNVZNcENpUU4yTjNQcnBzQ1lTc3ZuODlFMVg5bHptRmVBaVliVndQaGRkR1JyYWRzcjkxTld4TTBkQUpQN1pVX1JHSTFZbHN4aDZESkVYTXE0dkJ5N1hqeTZiRQ%26q%3Dhttps%253A%252F%252Fbit.ly%252F3FhFgwz&sa=D&source=editors&ust=1683016173534725&usg=AOvVaw0hKratvgVlzRourr9VN7YO">Notes PDF</a></td>
<td class="s13"></td>
<td class="s5" dir="ltr">Aromatic Hydrocarbons</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/N3heaHfdVcY&sa=D&source=editors&ust=1683016173534875&usg=AOvVaw27o5TsT7uwFB28yUVj9_rb">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/2Y0JvM2&sa=D&source=editors&ust=1683016173534962&usg=AOvVaw1ai4DMD5CJgrhdV1AfbJBy">Notes PDF</a></td>
<td class="s4"></td>
<td class="s5" dir="ltr">Friction and Circular Motion</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/0iNkGKc0iSI&sa=D&source=editors&ust=1683016173535144&usg=AOvVaw2qIJXj4yIZJGWJAzkbESi8">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3pmAyX5&sa=D&source=editors&ust=1683016173535239&usg=AOvVaw3a-bVQ_bvCC2cuFQwYHLBB">Notes</a></td>
</tr>
<tr style="height: 20px">
<th id="0R6" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">7</div>
</th>
<td class="s5" dir="ltr">Quadratic Equations</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://www.youtube.com/watch?v%3Dmv4mVz_ccWk%26ab_channel%3DUnacademyAtoms&sa=D&source=editors&ust=1683016173535416&usg=AOvVaw0tHIKqxgi-r_K6LjFmhm-R">► PLAY</a></td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1xC5-gWHrVOEuCY3oBRU_1oSNE_dOo5OZ/view&sa=D&source=editors&ust=1683016173535496&usg=AOvVaw2sUM2yq-YnwTb2wn_7a8Of">Notes PDF</a></td>
<td class="s13"></td>
<td class="s5" dir="ltr">Haloalkanes & Haloarenes</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/UVWwxdh7o6Q&sa=D&source=editors&ust=1683016173535752&usg=AOvVaw2tv0QuV5WsMjNrO8ts9aZp">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3mdZpe3&sa=D&source=editors&ust=1683016173535824&usg=AOvVaw3GP9UTW_j-gI4rrdVWoM-w">Notes PDF</a></td>
<td class="s4"></td>
<td class="s5" dir="ltr">Work Energy Power</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/TtvXiSGy8hg&sa=D&source=editors&ust=1683016173535938&usg=AOvVaw0e3jJsLv6lI2803A2cHxJl">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3os4qlX&sa=D&source=editors&ust=1683016173536001&usg=AOvVaw0oID464GirrBcbPv_CULNN">Notes</a></td>
</tr>
<tr style="height: 20px">
<th id="0R7" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">8</div>
</th>
<td class="s5" dir="ltr">Trigonometry</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://www.youtube.com/watch?v%3DFTai93ssi1Q%26t%3D9974s%26ab_channel%3DUnacademyAtoms&sa=D&source=editors&ust=1683016173536158&usg=AOvVaw33oCuQ-7VwVcw0fuiG7P1K">► PLAY</a></td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1UBjll82TvfllKMXtkVmqL9cIMQlmcUtR/view&sa=D&source=editors&ust=1683016173536229&usg=AOvVaw3qYvC47oKbdfFhAwpBoNI3">Notes PDF</a></td>
<td class="s13"></td>
<td class="s5" dir="ltr">Alcohols, Phenols & Ethers</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/-vpPVq0oIdE&sa=D&source=editors&ust=1683016173536363&usg=AOvVaw3iTwfJ4dJjzZC0bUXUfq2S">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3l1vJBE&sa=D&source=editors&ust=1683016173536426&usg=AOvVaw09SwyEnMWlsb3QWNxfpjiQ">Notes PDF</a></td>
<td class="s4"></td>
<td class="s5" dir="ltr">Linear Momentum & Collision</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/fKF_Om9tgLE&sa=D&source=editors&ust=1683016173536537&usg=AOvVaw3C9CfEEZz242I7VUsoHSWX">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3rwhgkR&sa=D&source=editors&ust=1683016173536622&usg=AOvVaw3knq--nid-hbJ73KkCvJ5W">Notes</a></td>
</tr>
<tr style="height: 20px">
<th id="0R8" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">9</div>
</th>
<td class="s5" dir="ltr">Trigonometric Equations</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://www.youtube.com/watch?v%3DHmStb2FSRyw%26t%3D8510s%26ab_channel%3DUnacademyAtoms&sa=D&source=editors&ust=1683016173536822&usg=AOvVaw3GCs8zaFe9yrvCv7XDHMEw">► PLAY</a></td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1bOVLks9i4Ib_u8srpmatS8Yr2tWU0FhT/view&sa=D&source=editors&ust=1683016173536936&usg=AOvVaw17XLukyEvHQa7EQ71NIKeD">Notes PDF</a></td>
<td class="s13"></td>
<td class="s5" dir="ltr">Aldehydes Ketones Carboxylic Acids</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/DCehktFkWno&sa=D&source=editors&ust=1683016173537126&usg=AOvVaw097hr22KspVgDhTHkWxah3">► PLAY</a></td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3ab0XAe&sa=D&source=editors&ust=1683016173537224&usg=AOvVaw0bz8Ivi2utBrH2ONB-CUkZ">Notes PDF</a></td>
<td class="s4"></td>
<td class="s5" dir="ltr">Rotational Motion 1</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/WiFReEDId44&sa=D&source=editors&ust=1683016173537391&usg=AOvVaw0XsT8iX-CDgW7HfmUa9alz">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3rtI8C9&sa=D&source=editors&ust=1683016173537474&usg=AOvVaw3MDwxx--zxQX8Aim8yeJbl">Notes</a></td>
</tr>
<tr style="height: 20px">
<th id="0R9" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">10</div>
</th>
<td class="s5" dir="ltr">Sequence & Series</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/-rgM3Z2zF18&sa=D&source=editors&ust=1683016173537679&usg=AOvVaw0GsfgHkVy58L1T5vigecq7">► PLAY</a></td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3CfNGCw&sa=D&source=editors&ust=1683016173537782&usg=AOvVaw0-MjTiTNrjyN5bNIH7PLIo">Notes PDF</a></td>
<td class="s13"></td>
<td class="s5" dir="ltr">Amines</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/0tqAQfGr2IA&sa=D&source=editors&ust=1683016173537934&usg=AOvVaw29enDYJq-kYlYQlzc8fUi0">► PLAY</a></td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3amCBmU&sa=D&source=editors&ust=1683016173538004&usg=AOvVaw0pclC02FtA2n-U1ZnEpFQT">Notes PDF</a></td>
<td class="s4"></td>
<td class="s5" dir="ltr">Rotational Motion 2</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/1FWZahO1lRU&sa=D&source=editors&ust=1683016173538137&usg=AOvVaw2WTjRRICG573V6Icq6txKE">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3phdxF6&sa=D&source=editors&ust=1683016173538198&usg=AOvVaw3v_OWJfImNHC7HgyCggZga">Notes</a></td>
</tr>
<tr style="height: 20px">
<th id="0R10" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">11</div>
</th>
<td class="s5" dir="ltr">Binomial Theorem</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/eAMCL-mMmcY&sa=D&source=editors&ust=1683016173538335&usg=AOvVaw1ce-GAmhqbxdpktaeHioPZ">► PLAY</a></td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3GpdLBA&sa=D&source=editors&ust=1683016173538401&usg=AOvVaw3Q17alWZNJwYZ38d4ug_v2">Notes PDF</a></td>
<td class="s13"></td>
<td class="s5" dir="ltr">Biomolecules</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/xuKRxlEcJvM&sa=D&source=editors&ust=1683016173538563&usg=AOvVaw3g_u-WyZmNJu7CXdwFCVEp">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3oX4B9k&sa=D&source=editors&ust=1683016173538658&usg=AOvVaw2TnnRg66mGcf6MnRnOsyIR">Notes PDF</a></td>
<td class="s4"></td>
<td class="s5" dir="ltr">Gravitation</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://www.youtube.com/watch?v%3D2jfFyNefgxg&sa=D&source=editors&ust=1683016173538797&usg=AOvVaw07V6SVtUCn7kzlR3VrA8Yu">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3prFQAP&sa=D&source=editors&ust=1683016173538886&usg=AOvVaw0fnNGtE43zdJTYfUnZK0p3">Notes</a></td>
</tr>
<tr style="height: 20px">
<th id="0R11" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">12</div>
</th>
<td class="s5" dir="ltr">Permutation & Combination</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/lmk1sJo0728&sa=D&source=editors&ust=1683016173539109&usg=AOvVaw0C66NOJVtvpOEml7wHE_Uh">► PLAY</a></td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3x9U5gU&sa=D&source=editors&ust=1683016173539214&usg=AOvVaw3Id5bwuqA5j_uQLuXstSv6">Notes PDF</a></td>
<td class="s13"></td>
<td class="s5" dir="ltr">Polymers</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/k5g6LEaBOe0&sa=D&source=editors&ust=1683016173539369&usg=AOvVaw1FNMqDPL_Xk_femP6XqUeY">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3mYUspY&sa=D&source=editors&ust=1683016173539449&usg=AOvVaw23opjz_PVU-Jx0DaOwvAdT">Notes PDF</a></td>
<td class="s4"></td>
<td class="s5" dir="ltr">Properties of Solid</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/5ILswq2DH2U&sa=D&source=editors&ust=1683016173539699&usg=AOvVaw26BjTOTJRTzraDFMvuHkZA">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1MfRv6SIGlcgVrFoS2i-8BMc8l3zhSsrR/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173539790&usg=AOvVaw0nqAdr55SVE2ZpyrYTj1oo">Notes</a></td>
</tr>
<tr style="height: 20px">
<th id="0R12" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">13</div>
</th>
<td class="s5" dir="ltr">Straight Lines</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/Ah-JjIq2bQk&sa=D&source=editors&ust=1683016173539961&usg=AOvVaw1cyBYBKEzyEp5Nh6pMG0ZA">► PLAY</a></td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3wqvVhV&sa=D&source=editors&ust=1683016173540031&usg=AOvVaw2RoY7LHtM-kFtb1Zm_wePJ">Notes PDF</a></td>
<td class="s13"></td>
<td class="s5" dir="ltr">Practcal Organic Chemistry</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/okCmFv1-iwk&sa=D&source=editors&ust=1683016173540179&usg=AOvVaw179y5wk6zR-tP3O_oL8n_z">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/2Z7Loag&sa=D&source=editors&ust=1683016173540243&usg=AOvVaw37qAG34lmZ8OCVX5yBJd88">Notes PDF</a></td>
<td class="s4"></td>
<td class="s5" dir="ltr">Fluids | Part 1</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/0svSSlBi0M0&sa=D&source=editors&ust=1683016173540370&usg=AOvVaw24UuIkpGoW2dV6GRNyca5H">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/14CHifpRsuZhupVE1nyi25me1Ox1v7jfL/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173540447&usg=AOvVaw0kXcN13YYkq8isTDrrd7_s">Notes</a></td>
</tr>
<tr style="height: 20px">
<th id="0R13" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">14</div>
</th>
<td class="s5" dir="ltr">Circle</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/qv7YTq5THew&sa=D&source=editors&ust=1683016173540705&usg=AOvVaw2x21xWtVqBk_mYT03-wmVj">► PLAY</a></td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/2YwfJzi&sa=D&source=editors&ust=1683016173540828&usg=AOvVaw1qpx3EFqX4P6Ym7GPo4bh-">Notes PDF</a></td>
<td class="s13"></td>
<td class="s5" dir="ltr">Chemistry in Everydaylife</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/_2dOz0DxhYk&sa=D&source=editors&ust=1683016173540974&usg=AOvVaw3tWPdQoV6dHErZn1PVugzX">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3m7h9ce&sa=D&source=editors&ust=1683016173541057&usg=AOvVaw0s8OaSuAMEBDo1FaRBJb1R">Notes PDF</a></td>
<td class="s4"></td>
<td class="s5" dir="ltr">Fluids | Part 2</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/la5I41FNDMA&sa=D&source=editors&ust=1683016173541211&usg=AOvVaw2y5tvy6hjILnokhUFp66KD">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1VsxkWr0dMACMdHOoKqQZSw76sp0WRoVg/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173541301&usg=AOvVaw10L2vEyc5OONEeb-JT7S8n">Notes</a></td>
</tr>
<tr style="height: 20px">
<th id="0R14" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">15</div>
</th>
<td class="s5" dir="ltr">Parabola</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/LsYvJc56yag&sa=D&source=editors&ust=1683016173541513&usg=AOvVaw3pemGhxwn0gq1DkfXQ-8sK">► PLAY</a></td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3c52Nnc&sa=D&source=editors&ust=1683016173541612&usg=AOvVaw0TqHJCVXOTjHL7w9sfICL5">Notes PDF</a></td>
<td class="s13"></td>
<td class="s5" dir="ltr">Periodic Classification</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/wk3JfK7MG64&sa=D&source=editors&ust=1683016173541770&usg=AOvVaw2zG_R6UdZPCrMBFhfleRC8">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3bggZJG&sa=D&source=editors&ust=1683016173541842&usg=AOvVaw3trnjjDM3415yFiMPoKZwD">Notes PDF</a></td>
<td class="s4"></td>
<td class="s5" dir="ltr">Calorimetry & Thermal Expansion</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/nFdlZx9pVdQ&sa=D&source=editors&ust=1683016173541949&usg=AOvVaw3obCilYFkqj5-WS1es5LlM">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1ZC3-OfEtvCS1PSDBucHnG5TapJ9wiGHK/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173542006&usg=AOvVaw35y8v6tMwFsTmgprnReiff">Notes</a></td>
</tr>
<tr style="height: 20px">
<th id="0R15" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">16</div>
</th>
<td class="s5" dir="ltr">Ellipse</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/8asqPexzYzc&sa=D&source=editors&ust=1683016173542164&usg=AOvVaw0NszleU2guH_Qba1iR4dB_">► PLAY</a></td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3cbNd9p&sa=D&source=editors&ust=1683016173542228&usg=AOvVaw0FtgZZsNbgzkePXhOPwOER">Notes PDF</a></td>
<td class="s13"></td>
<td class="s5" dir="ltr">Chemical Bonding</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/tTNOFm7R1ik&sa=D&source=editors&ust=1683016173542334&usg=AOvVaw2iHRa7pFUWBa0DKHa4-q9s">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3k1oXLb&sa=D&source=editors&ust=1683016173542387&usg=AOvVaw0978Jp7GxhSrFnNi2tEgUf">Notes PDF</a></td>
<td class="s4"></td>
<td class="s5" dir="ltr">Heat Transfer & KTG</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/INFz1ztreI4&sa=D&source=editors&ust=1683016173542490&usg=AOvVaw0-ubGuXpcf2Ksuu_rTMjwc">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3pnD40u&sa=D&source=editors&ust=1683016173542554&usg=AOvVaw11pBoQVJRx55PdEFWgsAs8">Notes</a></td>
</tr>
<tr style="height: 20px">
<th id="0R16" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">17</div>
</th>
<td class="s5" dir="ltr">Hyperbola</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/Es6IoDqItuc&sa=D&source=editors&ust=1683016173542695&usg=AOvVaw334J-PBIGpWUXp-3jQCA_L">► PLAY</a></td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/2Z2zEGg&sa=D&source=editors&ust=1683016173542757&usg=AOvVaw3LQ2cgaTqoLHTzP1za64mP">Notes PDF</a></td>
<td class="s13"></td>
<td class="s5" dir="ltr">Hydrogen</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/V7ykQ5yiik0&sa=D&source=editors&ust=1683016173542863&usg=AOvVaw05wlJChj-KBGz8tLWb2KWC">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/2ZWVUBf&sa=D&source=editors&ust=1683016173542919&usg=AOvVaw1sy0h6D87Epmsj-yKX2SId">Notes PDF</a></td>
<td class="s4"></td>
<td class="s5" dir="ltr">Thermodynamics</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/rqD3aSV98hg&sa=D&source=editors&ust=1683016173543025&usg=AOvVaw0iEC5YezLpd8OSdLSDq47Q">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1nCEi1wKxHLzaqCOCvKMx5lRwHY1oWEz0/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173543079&usg=AOvVaw1Gfh4dXnd7nAVcUanABmfg">Notes</a></td>
</tr>
<tr style="height: 20px">
<th id="0R17" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">18</div>
</th>
<td class="s5" dir="ltr">Complex Numbers</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/b7HhgvaFF5Q&sa=D&source=editors&ust=1683016173543259&usg=AOvVaw2-X9r7dpNP7qqZO7TaalJK">► PLAY</a></td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3oYOGWo&sa=D&source=editors&ust=1683016173543343&usg=AOvVaw20psMxImpsNQfvdQpiT1i2">Notes PDF</a></td>
<td class="s13"></td>
<td class="s5" dir="ltr">S Block</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/aU6MPFdyjmo&sa=D&source=editors&ust=1683016173543510&usg=AOvVaw1gfijt9l6I86VEJC5n8tcP">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/30bBZPH&sa=D&source=editors&ust=1683016173543616&usg=AOvVaw1sPlZfkxmlaR7fLVCnnZs0">Notes PDF</a></td>
<td class="s4"></td>
<td class="s5" dir="ltr">Simple Harmonic Motion</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/cIHYWkt3rdU&sa=D&source=editors&ust=1683016173543791&usg=AOvVaw3OlROF21Uw-v31IwX_cV4T">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1aPAFRRYsJKjwndyOvwW7kD3Z8yiwLqgX/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173544008&usg=AOvVaw0Fmqy5STPgOSvy8DpQb86G">Notes</a></td>
</tr>
<tr style="height: 20px">
<th id="0R18" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">19</div>
</th>
<td class="s5" dir="ltr">Statistics</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/fjgu_j2Xvjo&sa=D&source=editors&ust=1683016173544235&usg=AOvVaw3Lltb0YayuL5vm9Nj7R1KN">► PLAY</a></td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1BUP93KCbUAKpOvm7YVMWn2jGChHzwuO1/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173544316&usg=AOvVaw1x05YGL5D_XpI87__kzeCA">Notes PDF</a></td>
<td class="s13"></td>
<td class="s5" dir="ltr">P Block - 1</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/rv5S7g_EPRo&sa=D&source=editors&ust=1683016173544467&usg=AOvVaw24MU4kOC3Vj8bkHRwZ4All">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3oqfRsL&sa=D&source=editors&ust=1683016173544568&usg=AOvVaw1bmF2EEcYgisbr7g2lT8YC">Notes PDF</a></td>
<td class="s4"></td>
<td class="s5" dir="ltr">Waves</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/0qzkApm0lJI&sa=D&source=editors&ust=1683016173544728&usg=AOvVaw1TuAkPZ0tCs-zJtxYMxCQg">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1qL9EXZQvdygvZws6vg7jaTfvGqKeMdvf/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173544798&usg=AOvVaw1PCsX-5UkhDKi5xRQ-OEI5">Notes</a></td>
</tr>
<tr style="height: 20px">
<th id="0R19" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">20</div>
</th>
<td class="s5" dir="ltr">Mathematical Reasoning</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/zbxVS7Y5NZc&sa=D&source=editors&ust=1683016173544937&usg=AOvVaw29Pva-GGLvwwKYQ2_UCjyQ">► PLAY</a></td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1OYy4iZKAl5YJ0oZQzp16iwuDUgiumd7M/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173544999&usg=AOvVaw3Q_bPsm5x4kHme3KELZrrT">Notes PDF</a></td>
<td class="s13"></td>
<td class="s5" dir="ltr">P Block - 2</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/hCJVRDaAnig&sa=D&source=editors&ust=1683016173545124&usg=AOvVaw2UJThuTpxP2OcK8Fue8dNa">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3HpdLlL&sa=D&source=editors&ust=1683016173545181&usg=AOvVaw32nvc72MtQG8tjRmX7c-Es">Notes PDF</a></td>
<td class="s4"></td>
<td class="s5" dir="ltr">Sound and Doppler Effect</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/azKdNEaNzBM&sa=D&source=editors&ust=1683016173545283&usg=AOvVaw1yj7S4GYVnG9jtU9U1zgat">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1MdLYk_2DxDPp93XGdp_ry-DffhOHLcIs/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173545431&usg=AOvVaw2_FTNJpHNe0XGBq2O7Pey9">Notes</a></td>
</tr>
<tr style="height: 20px">
<th id="0R20" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">21</div>
</th>
<td class="s15"></td>
<td class="s15"></td>
<td class="s15"></td>
<td class="s13"></td>
<td class="s5" dir="ltr">P Block - 3</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/3nPuj7aXORk&sa=D&source=editors&ust=1683016173545648&usg=AOvVaw3Mak5q_bbln7TC2g5EtBTA">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3qTyxV0&sa=D&source=editors&ust=1683016173545716&usg=AOvVaw1qmwlzppZC0G5vqKtzZUP-">Notes PDF</a></td>
<td class="s4"></td>
<td class="s5" dir="ltr">Ray Optics</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/wuSOA3Wz1Xg&sa=D&source=editors&ust=1683016173545823&usg=AOvVaw247NeOqPzN4DksQa8ytC5E">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1UHLKKlKyErtgSQmqXv3BABBd1QJ0dglA/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173545881&usg=AOvVaw1IhBqZprRJ8exF00jOJPkg">Notes</a></td>
</tr>
<tr style="height: 20px">
<th id="0R21" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">22</div>
</th>
<td class="s16" dir="ltr" colspan="3" rowspan="2">12th Syllabus</td>
<td class="s13"></td>
<td class="s5" dir="ltr">Metallurgy</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/l7LmAojpivA&sa=D&source=editors&ust=1683016173546079&usg=AOvVaw3T8kre_r7giXqmE76QoDO6">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3l4yaD7&sa=D&source=editors&ust=1683016173546164&usg=AOvVaw26zIhigdJvwcRkCu3NzgVY">Notes PDF</a></td>
<td class="s4"></td>
<td class="s5" dir="ltr">Wave Optics</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/QS8ebCNC4H0&sa=D&source=editors&ust=1683016173546286&usg=AOvVaw3I_FgchCxyeJXcXooUQrnk">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1rRecoYVLsw5rV9zXeAlK1dvs1eeqCkyz/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173546372&usg=AOvVaw3RgTZ9Y85qOSkFXzKGWyw4">Notes</a></td>
</tr>
<tr style="height: 20px">
<th id="0R22" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">23</div>
</th>
<td class="s13"></td>
<td class="s5" dir="ltr">d & f Block Elements</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/DixuT3rXBU0&sa=D&source=editors&ust=1683016173546549&usg=AOvVaw1XOxYQyZ34MbkaIK0MxLJk">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3nTJR1l&sa=D&source=editors&ust=1683016173546624&usg=AOvVaw1UAJSEqFXnkbwgUBHvPr2o">Notes PDF</a></td>
<td class="s15"></td>
<td class="s17"></td>
<td class="s17"></td>
<td class="s17"></td>
</tr>
<tr style="height: 20px">
<th id="0R23" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">24</div>
</th>
<td class="s5" dir="ltr">Vector Algebra</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/AuU-tUqZuC8&sa=D&source=editors&ust=1683016173546846&usg=AOvVaw0kn3Ii4kSnPM9fPSBBtSQ8">► PLAY</a></td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3tLLYW9&sa=D&source=editors&ust=1683016173546918&usg=AOvVaw38CINzXDYnQOS0W-_yWLYi">Notes PDF</a></td>
<td class="s13"></td>
<td class="s5" dir="ltr">Coordination Compounds</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/PmhmKykMTw0&sa=D&source=editors&ust=1683016173547026&usg=AOvVaw3EIDyLoCoIUJ-0wQC95NR_">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3yWPrUu&sa=D&source=editors&ust=1683016173547085&usg=AOvVaw2nz5Q0obk86TlPAfjTagRC">Notes PDF</a></td>
<td class="s4"></td>
<td class="s18" dir="ltr">Class 12 Physics</td>
<td class="s3" dir="ltr" colspan="2"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://www.youtube.com/playlist?list%3DPLYFlGICvnvLhVoQLwMHf2XJPpjmdH9eiE&sa=D&source=editors&ust=1683016173547220&usg=AOvVaw22EtNg6_7gRWffxVnhWSEx">► PLAYLIST</a></td>
</tr>
<tr style="height: 20px">
<th id="0R24" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">25</div>
</th>
<td class="s5" dir="ltr">3D Geometry</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/t_ABiQEA4c8&sa=D&source=editors&ust=1683016173547406&usg=AOvVaw3DpRaRY_eCJhPno2lxnsiB">► PLAY</a></td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/2Z9Yofh&sa=D&source=editors&ust=1683016173547472&usg=AOvVaw2NFDDjkUc0DB0vjl89BNff">Notes PDF</a></td>
<td class="s13"></td>
<td class="s5" dir="ltr">Salt Analysis</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/ld5sFkLjFUk&sa=D&source=editors&ust=1683016173547583&usg=AOvVaw3b7mLAgLhVTFJm-S9MBhhp">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/19L_5sMAlI0E41U9e1ZozdKg4gTiygklm/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173547667&usg=AOvVaw2Yjs7-qSkUDVeY7VM8ZIl0">Notes PDF</a></td>
<td class="s4"></td>
<td class="s5" dir="ltr">Electric Charge and Electric Field</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://www.youtube.com/watch?v%3D8xIS1x3gPdo%26list%3DPLYFlGICvnvLhVoQLwMHf2XJPpjmdH9eiE%26index%3D1&sa=D&source=editors&ust=1683016173547828&usg=AOvVaw2lranVOqqSsn-ZI8qOVXVf">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3BR9CDi&sa=D&source=editors&ust=1683016173547931&usg=AOvVaw3i3s6Xitynym3kELf0zxkq">Notes</a></td>
</tr>
<tr style="height: 20px">
<th id="0R25" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">26</div>
</th>
<td class="s5" dir="ltr">Probability</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/sZSwBOMtChA&sa=D&source=editors&ust=1683016173548134&usg=AOvVaw2jfd_iXdaw2rXIfrRkJTi_">► PLAY</a></td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://www.youtube.com/redirect?event%3Dvideo_description%26redir_token%3DQUFFLUhqbHRnLXlldHgwN1lVcXZLM2xyS1ROS1pPaEp4UXxBQ3Jtc0tteTd2a0F6bVk2VlZxbjJEd2NhY2xOWWxmb01YWG1mWG1qcFNmYWY3N0N5ZmFoeDVMMVNzeGVOY3BzMzktcFlibWQ5QlFfMXliajVCMFlLRmQyRGtGSk80dUtGT09aZ1dWUDByTEIzdDhOMkw5V2xzQQ%26q%3Dhttps%253A%252F%252Fbit.ly%252F3zHdlSU&sa=D&source=editors&ust=1683016173548239&usg=AOvVaw2O80SSqLZJcWEXYzmsvEHk">Notes PDF</a></td>
<td class="s13"></td>
<td class="s5" dir="ltr">Mole Concept</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/ERWUp87v0tw&sa=D&source=editors&ust=1683016173548429&usg=AOvVaw0mf3wXG622xPrxFM2b19gl">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/16Rj2KAaJWk_Hd8iTFWjgbsFwDpm-wW8u/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173548507&usg=AOvVaw0N-HqVang9SVJAVC4R0aJI">Notes PDF</a></td>
<td class="s4"></td>
<td class="s5" dir="ltr">Electric Dipole, Potential & Potential Energy</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://www.youtube.com/watch?v%3DkGqZD992J80%26list%3DPLYFlGICvnvLhVoQLwMHf2XJPpjmdH9eiE%26index%3D2&sa=D&source=editors&ust=1683016173548627&usg=AOvVaw2C--hX93nhLhTSXsPqoJuZ">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3oy5Gm2&sa=D&source=editors&ust=1683016173548696&usg=AOvVaw1dYt4dbDVBR1-GX8Iu3PDU">Notes</a></td>
</tr>
<tr style="height: 20px">
<th id="0R26" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">27</div>
</th>
<td class="s5" dir="ltr">Matrices</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/yXJJGyHELz8&sa=D&source=editors&ust=1683016173548830&usg=AOvVaw0MYr1l40GjWEOvBQsVOO2s">► PLAY</a></td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1tEV3wDD2FbWb6Mt6o2vXsofoR6NMJtRD/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173548893&usg=AOvVaw2yZrnzyYUivJHmWOUlzdFt">Notes PDF</a></td>
<td class="s13"></td>
<td class="s5" dir="ltr">Atomic Structure</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/1KX4IKAiv-s&sa=D&source=editors&ust=1683016173549029&usg=AOvVaw2hMNibaf_egL_8fklUAsxK">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3JhkD5O&sa=D&source=editors&ust=1683016173549090&usg=AOvVaw2LsQWl3VkR1UZF12iPTsSR">Notes PDF</a></td>
<td class="s4"></td>
<td class="s5" dir="ltr">Capacitors</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/JCtOoJoKB-g&sa=D&source=editors&ust=1683016173549224&usg=AOvVaw1QHcKU0fK9oKyjZKvn_e_j">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3kY8rfE&sa=D&source=editors&ust=1683016173549299&usg=AOvVaw0qSooKPCQIAbJw5izhcCQM">Notes</a></td>
</tr>
<tr style="height: 20px">
<th id="0R27" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">28</div>
</th>
<td class="s5" dir="ltr">Determinants</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/orc2FHIKZA8&sa=D&source=editors&ust=1683016173549481&usg=AOvVaw1sDb0ZCbYdZogOU77x8X_A">► PLAY</a></td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/178T3rY_4R-RqAxv7ZbaJluFmx4WF9foP/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173549579&usg=AOvVaw1sjR3xapjoG20LSi0Fbk4n">Notes PDF</a></td>
<td class="s13"></td>
<td class="s5" dir="ltr">States of Matter</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/c3y8lsScDOk&sa=D&source=editors&ust=1683016173549769&usg=AOvVaw311k6Mrwhu1Ik-FeDw03Ac">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/18wr7cJEg3Sv6Qd6q_dT-kffu38sJssn7/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173549839&usg=AOvVaw34jgEhNnKhEEZZ8L3RARaz">Notes PDF</a></td>
<td class="s4"></td>
<td class="s5" dir="ltr">Current Electricity</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/i9k8AcnUtTI&sa=D&source=editors&ust=1683016173549952&usg=AOvVaw1qsuPowrsqHBXm1kwDY8Ud">► PLAY</a></td>
<td class="s7" dir="ltr"></td>
</tr>
<tr style="height: 20px">
<th id="0R28" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">29</div>
</th>
<td class="s5" dir="ltr">Relations & Functions</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/__XBcqZl5oQ&sa=D&source=editors&ust=1683016173550132&usg=AOvVaw1ITiiQquR54S5cosvOTHNL">► PLAY</a></td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3IewRvn&sa=D&source=editors&ust=1683016173550196&usg=AOvVaw0lT175O0W8jdu5RvZtQBEW">Notes PDF</a></td>
<td class="s13"></td>
<td class="s5" dir="ltr">Thermodynamics and Thermochemistry</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/I12kZCiPzrA&sa=D&source=editors&ust=1683016173550301&usg=AOvVaw0LMVdh18NX99qb30_dO4Fa">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1t_1mpRSZKQSCjIjEJd946qmd-xLlu9bh/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173550369&usg=AOvVaw18VfUTc8Preh5WnfG4J8RD">Notes PDF</a></td>
<td class="s4"></td>
<td class="s5" dir="ltr">Alternating Current</td>
<td class="s14" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/uGUhKuHLJCU&sa=D&source=editors&ust=1683016173550520&usg=AOvVaw0OsV5Is3Y-pLzo9AAk0Ank">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://bit.ly/3yU5AtZ&sa=D&source=editors&ust=1683016173550639&usg=AOvVaw31iZ1lvxyK37umsOs9mU2y">Notes</a></td>
</tr>
<tr style="height: 20px">
<th id="0R29" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">30</div>
</th>
<td class="s5" dir="ltr">Inverse Trigonometric Functions</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/03GvcVZM1kU&sa=D&source=editors&ust=1683016173550826&usg=AOvVaw3lmDMvNBzPu7DISJH5uPx5">► PLAY</a></td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1rMCd0jp2ovB3S1aYCBRnJqPh2uOPWqtD/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173550911&usg=AOvVaw21P-cZrjgGxsQZvTWxED5J">Notes PDF</a></td>
<td class="s13"></td>
<td class="s5" dir="ltr">Equilibrium</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/52l1pIP_aoE&sa=D&source=editors&ust=1683016173551070&usg=AOvVaw33C_5mihdp5Ztpx3AVTqwV">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1Fl-_7UNZHziWoFVatHwLcHDscdQv64hf/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173551177&usg=AOvVaw1nstubDv9u2c5GuYxaK0gw">Notes PDF</a></td>
<td class="s4"></td>
<td class="s5">Ray Optics</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://www.youtube.com/watch?v%3DwuSOA3Wz1Xg%26t%3D2681s&sa=D&source=editors&ust=1683016173551347&usg=AOvVaw2D2IyYHqY8VFhdLpcJ1U67">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1zkpd7aw6854Pie_hFCMFX3akx5-REdRL/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173551457&usg=AOvVaw2htLJxhYr_6d5B9w-ru1Na">Notes</a></td>
</tr>
<tr style="height: 20px">
<th id="0R30" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">31</div>
</th>
<td class="s5" dir="ltr">Limits</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/2kWgjIYNeCg&sa=D&source=editors&ust=1683016173551665&usg=AOvVaw3W5UlAYXNnP76SRX1HoDVo">► PLAY</a></td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1nBiPZuzhfsqabSYGAiXd4N3WaGbpDdz3/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173551784&usg=AOvVaw2PvvIDPphTTvieQUNr0Jly">Notes PDF</a></td>
<td class="s13"></td>
<td class="s5" dir="ltr">Solid State</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/EpMsJhL3ocY&sa=D&source=editors&ust=1683016173551982&usg=AOvVaw19_ZJ4PTP4YI5U2g2CdU9-">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/139_ZuMZvlOugzuwVKqffmiZudj7F4rC1/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173552092&usg=AOvVaw2wCNg1rXcvkkO_Y1JZIolF">Notes PDF</a></td>
<td class="s4"></td>
<td class="s5">Prism & Optical Instruments</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://www.youtube.com/watch?v%3DPeSmIC7hczo%26ab_channel%3DUnacademyAtoms&sa=D&source=editors&ust=1683016173552294&usg=AOvVaw2JnsSwfp2s1nAw6BUZHaNc">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1KCkOzkyjishPcXhz4ai4lZL_QPyVMFDF/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173552408&usg=AOvVaw0F3non5jEzrSGzgc7GP_VC">Notes</a></td>
</tr>
<tr style="height: 20px">
<th id="0R31" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">32</div>
</th>
<td class="s5" dir="ltr">Continuity</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/dvzXDXDagaQ&sa=D&source=editors&ust=1683016173552601&usg=AOvVaw3Z4DCzgJItB6r4RfZv1Zzv">► PLAY</a></td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1Vom3038QeH-1YVX9s5hLGkVMxujH3jFw/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173552713&usg=AOvVaw339Gi7UGMYGaGtVN8bRPJp">Notes PDF</a></td>
<td class="s13"></td>
<td class="s5" dir="ltr">Dilute solutions</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/_2HP8UQHQpI&sa=D&source=editors&ust=1683016173552895&usg=AOvVaw2wELmzdR3S3QsVZVX5EvaA">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/16QBzwPmcec93BNAN8CQ2kcAevVyUieze/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173552993&usg=AOvVaw1sak3e9u3A_vBvf1yBx1FZ">Notes PDF</a></td>
<td class="s4"></td>
<td class="s5">Wave Optics</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://www.youtube.com/watch?v%3DQS8ebCNC4H0%26t%3D14829s&sa=D&source=editors&ust=1683016173553176&usg=AOvVaw3t4_opiTzbsKQ-CPTlLmqS">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1zkl72xp0OvyHYnMM0tBucu-3l1VFbdMd/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173553276&usg=AOvVaw3k7I_ppDot_06Fa2usEPwj">Notes</a></td>
</tr>
<tr style="height: 20px">
<th id="0R32" style="height: 20px;" class="row-headers-background row-header-shim">
<div class="row-header-wrapper" style="line-height: 20px">33</div>
</th>
<td class="s5" dir="ltr">Differentiability</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/hNFQLLgocCU&sa=D&source=editors&ust=1683016173553474&usg=AOvVaw0EwRKrIZkql2MZ3TffC-bu">► PLAY</a></td>
<td class="s6" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1pxgX5Rg82Hzb4nvGQ6kZJv8HZ0SZueny/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173553573&usg=AOvVaw016NJRowYQitHNBcRH3_dN">Notes PDF</a></td>
<td class="s13"></td>
<td class="s5" dir="ltr">Redox Reactions</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://youtu.be/d1sQg1Cql_o&sa=D&source=editors&ust=1683016173553747&usg=AOvVaw3UicsU5Vxt_TNdDNLIAeID">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1o7u0PGtRyX3Bt8sc9EUT5PSzuU6ANEPT/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173553825&usg=AOvVaw1MXPGqAWpLc4dWFtJnHLmL">Notes PDF</a></td>
<td class="s4"></td>
<td class="s5">Photoelectric Effect (Modern Physics)</td>
<td class="s12" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://www.youtube.com/watch?v%3Dsr4XVGK-QJg%26t%3D58s&sa=D&source=editors&ust=1683016173553977&usg=AOvVaw2k1yyDp6e6aZohqlW3gQnd">► PLAY</a></td>
<td class="s7" dir="ltr"><a target="_blank" rel="noreferrer" href="https://www.google.com/url?q=https://drive.google.com/file/d/1zfwATSIqFzS1Dpl1-8SrbPzbvi38GpPe/view?usp%3Dsharing&sa=D&source=editors&ust=1683016173554064&usg=AOvVaw3tOWNPbxe_gjqwdrciRFVa">Notes</a></td>