-
Notifications
You must be signed in to change notification settings - Fork 2
/
interveners-2009-2018.html.pm
2393 lines (2352 loc) · 426 KB
/
interveners-2009-2018.html.pm
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
#lang pollen
◊define-meta[page-title]{Interveners at the Supreme Court of Canada: Revisited (2009--2018)}
◊define-meta[short-title]{Interveners revisited}
◊define-meta[snippet]{A dataset and analysis of 10 years of interventions at the Supreme Court of Canada.}
◊define-meta[original-date]{2019-05-16}
◊define-meta[edited-date]{2019-05-22}
◊declare-work[#:type "statute" #:title "Criminal Code" #:volume "RSC"
#:year "1985" #:chapter "C-46" #:url
"http://laws-lois.justice.gc.ca/eng/acts/C-46/FullText.html" #:id
"Criminal Code"]
◊declare-work[#:type "article" #:author-given "Benjamin"
#:author-family "Alarie" #:author2-given "Andrew James"
#:author2-family "Green" #:year "2010" #:url
"http://digitalcommons.osgoode.yorku.ca/ohlj/vol48/iss3/1 " #:title
"Interventions at the Supreme Court of Canada: Accuracy, Affiliation,
and Acceptance" #:journal "Osgoode Hall Law Journal" #:volume "48"
#:issue "3" #:first-page "381" #:id "Alarie"]
◊declare-work[#:type "magazine/news" #:author-given "Natasha"
#:author-family "Novac" #:author2-given "Bailey" #:author2-family
"Fox" #:author3-given "Nora" #:author3-family "Parker" #:date "12
February 2019" #:url
"http://www.thecourt.ca/2018-scc-a-year-in-review/" #:publication
"TheCourt.ca" #:title "2018 at the Supreme Court: A Year in Review"
#:id "Novac" #:short-form "Novac"]
◊declare-work[#:type "magazine/news" #:author "Adam Goldenberg" #:date "5 March
2018" #:url
"https://www.mccarthy.ca/en/insights/blogs/canadian-appeals-monitor/r-v-gtd-supreme-court-canada-decides-charter-case-bench-again"
#:publication "McCarthy Tétrault LLP (blog)" #:title "*R v GTD*: The
Supreme Court of Canada decides a Charter case from the bench — again"
#:id "Goldenberg" #:short-form "Goldenberg"]
◊heading{Interveners revisited}
I previously wrote about interveners at the Supreme Court of Canada
◊a[#:href "interveners.html"]{here}. (◊a[#:href
"https://supremeadvocacy.ca/articles/intervening-in-the-supreme-court-of-canada/"]{Interveners},
like amici curiae in the US, are third parties that provide
supplemental arguments in a case.) In that analysis, I observed that
as-of-right appeals attracted many fewer interveners than did
discretionary appeals. That was almost two years ago, so it is time
for an update. This updated analysis is based on a more robust and
complete collection of data spanning 2009--2018.◊note{Some of the
fresh analysis was inspired by suggestions from Professor Emma
Cunliffe, one of my criminal law professors. I also benefited from
viewing an intervener dataset that she had coded but my analysis here
is based on a fresh data acquisition and coding.}
The main takeaways:
◊itemize{
The rate of interventions has increased slightly over the past ten
years: from about 60% to about 66%.
The court has been increasingly willing to dispose of cases in
as-of-right criminal appeals with very brief judgments that do little
more than express agreement with one of the decisions from the lower
court.
The cases that are disposed of in the manner just described (very
brief judgments) are also the cases that tend to attract fewer
interveners. As-of-right criminal appeals that result in more lengthy,
substantive reasons seem to attract interveners at a rate closer to
that of criminal appeals on the discretionary docket, but there may
still be a gap.
}
◊sub-heading{Background: as-of-right appeals}
Most of the caseload at the Supreme Court of Canada consists of
discretionary appeals: the appellant requests that their appeal be
heard and the Court decides whether they will hear the case. But,
about 20--25% of the caseload at the Supreme Court of Canada consists
of appeals that are heard "as of right"---automatically. As-of-right
appeals generally involve indictable criminal offenses where one of
the judges at the lower court disagreed with their court's
decision.◊note-cite["Criminal Code" #:pinpoint "ss 691--693"]
◊sub-heading{Overall intervention rate}
◊fig[#:src "assets/appeals-with-interveners-2009-2018.png"]{The rate
of interventions has increased slightly over the past ten years: from
about 60% to about 66%. And earlier, from 2000--2008, interveners
participated in only about 50% of cases at the Supreme Court of
Canada.◊note-see["Alarie"]}
◊sub-heading{Keeping it short}
◊fig[#:src
"assets/criminal-appeals-aor-with-short-judgements.png"]{The Court has
been increasingly willing to dispose of as-of-right criminal appeals
via a very short judgment---often a single paragraph that is delivered
orally from the bench.}
If the Court's decision to dispose of a case with a very short,
single-paragraph judgment signals that the case did not present any
complex issues, that might explain some of the discrepancy between
interveners in as-of-right criminal appeals and other appeals.
To give a sense of what these short judgments look like, here is an
example from ◊format-work[#:type "legal-case" #:title "R v Cody"
#:citation "2017 SCC 25" #:url
"https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/16591/index.do"]
◊q{ The judgment of the Court was delivered orally by
[1] Abella J. — A majority of this Court is of the view that the
appeal should be allowed substantially for the reasons of Hoegg J.A.
[2] Justice Côté would dismiss the appeal substantially for the
reasons of the majority in the Court of Appeal. }
This trend has been observed and criticized
elsewhere.◊note-see["Novac" #:parenthetical "\"[w]hile oral judgments
are an efficient way for the SCC to dispense with straightforward
appeals, too many oral judgments risks obscuring the reasoning behind
the Court’s decisions, which in turn may hinder the development of
jurisprudence\""]◊note-see["Goldenberg" #:parenthetical "\"[w]hen the
Court gives only brief oral reasons for judgment, it narrows its
circle of its analysis almost to the vanishing point\""]
◊fig[#:src
"assets/criminal-appeals-aor-with-short-judgements-intervener-or-not.png"]{As
the Court has increasingly been willing to use short judgments to
dispose of as-of-right criminal appeals, those haven't tended to be
the as-of-right appeals that have attracted interveners.}
◊fig[#:src
"assets/criminal-appeals-aor-with-substantive-judgements-intervener-or-not.png"]{As
the Court has been more selective regarding the as-of-right criminal
appeals for which it will provide substantive judgments, those tend
to also be the appeals that attracted interveners.}
It is not possible to tell whether interveners cause the Court to
deliver a more substantive judgment or whether there is a confounding
cause. Perhaps appeals that present more complex issues simultaneously
attract interveners and also demand a more substantive judgment.
A source familiar with public-interest interveners listed various
factors that they consider before intervening: Do they have the
capacity in the short time-frame? Do they have subject-area expertise?
Is there a matter of policy that exceeds the arguments being made by
the actual parties in the case? Is there a risk that poor reasoning in
this case will be a problem in future cases?
This list doesn't help tease apart the causation. A public-interest
intervener might introduce issues into the case that would have not
otherwise been addressed, causing the court to release more
substantive reasons. Or, they might tend to intervene when those
issues are already apparent and will be addressed regardless, with the
public-interest interveners just making sure that their particular
perspective on the issue is heard.
◊sub-heading{Still a gap?}
But even within this group of as-of-right criminal appeals that yield
substantive judgments, the proportion of appeals that attract
interveners still seems to lag behind the proportion of discretionary
criminal appeals that attract interveners.
◊fig[#:src
"assets/criminal-appeals-discretionary-vs-aor-with-substantive-judgements-intervener-or-not.png"]{Even
looking only at the subset of as-of-right criminal appeals that are
more likely to have attracted interveners (those that result in
substantive judgments), the rate of interventions still lags behind
that of discretionary criminal appeals. This is a small sample, but
several of the years on their own show a significant difference
between proportions (using Fisher's exact test), and when pooled
together across all years, the aggregate proportions also present a
significant difference (using Fisher's exact test and correcting for
multiple comparisons).}
◊heading{The data}
I've ◊a[#:href "https://github.com/sanchom/scc_stats"]{published the
Python code} that I used to retrieve and clean up the raw data from
the Supreme Court's website. I've also ◊a[#:href
"https://docs.google.com/spreadsheets/d/1zNUIDaw4Fd8H_zr-dZsIs8Si_8QlqPY6nIQGR8UzoVY/edit?usp=sharing"]{published
the cleaned-up data in a Google Spreadsheet}. It doesn't contain my
own coding for short/substantive decisions, but it should be a good
starting point for any research or analysis that you want to do. I've
also reproduced that same data below in what I hope is an
easy-to-explore table format. For grouping into years, I've relied on
the year from the neutral citation.
If you want slightly different data extracted or to have it in a
different format, just get in touch and I can help you out.
This data is not an exact reproduction of what you'll see on the
Supreme Court's website. The data from the Supreme Court doesn't use a
consistent name for each intervener (e.g. "Chartered Professional
Accountants of Canada" and "Chartered Professional Accountants
Canada") and there are even some spelling errors (e.g. “◊a[#:href
"https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=34091"]{British
Columbia Civil Liberties Asssociation}”). Often, several entities
intervene together (e.g. "Dairy Farmers of Canada, Egg Farmers of
Canada, Chicken Farmers of Canada, Turkey Farmers of Canada, Canadian
Hatching Egg Producers"). In the dataset that I've provided, these
entities are separated, and every entity is referred to consistently
across all appeals that they intervene in. This should help if you
want to do any aggregation or counting. ◊a[#:href
"https://github.com/sanchom/scc_stats/blob/master/cleaned_equivalence_classes.txt"]{This
file} shows the sets of interveners that are considered equivalent and
also those that are separated out of lists of interveners.
Please let me know if you notice any interveners that are not named
consistently in this dataset of if I've chosen an incorrect name as
the canonical name.
◊heading{2009}
◊div['((class "full-width"))]{
◊table['((class "scc-stats full-width"))]{
◊tr{
◊th{Appeals decided}◊th{Appeals with interveners}◊th{Appeals as of right}◊th{Appeals as of right with interventions}
}
◊tr{
◊td{62}◊td{37}◊td{14}◊td{2}
}
}
}
Note: In the tables below, "A.o.R" means "as of right".
◊div['((class "full-width"))]{
◊table['((class "scc-stats full-width"))]{
◊tr{
◊th{Citation}◊th{Crim?}◊th['((class "as-of-right-column"))]{A.o.R.?}◊th{Interveners}◊th['((class "no-print drop-on-small-screens"))]{Details}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/2670/index.do"]{Lipson v. Canada}}, 2009 SCC 1}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32041"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/6390/index.do"]{R. v. Strecko}}, 2009 SCC 2}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32679"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/6614/index.do"]{R. v. McNeil}}, 2009 SCC 3}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Alberta}◊li{Criminal Lawyers' Association of Ontario}◊li{Hackett, Rodney}◊li{Marshall, Matthew}◊li{Police Association of Ontario}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=31852"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=31852"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/6867/index.do"]{R. v. Khela}}, 2009 SCC 4}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Ontario}◊li{Criminal Lawyers' Association of Ontario}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=31933"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32325"]{2}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=31933"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32325"]{2}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/6630/index.do"]{R. v. Smith}}, 2009 SCC 5}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Ontario}◊li{Criminal Lawyers' Association of Ontario}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=31980"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32323"]{2}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=31980"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32323"]{2}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7327/index.do"]{Shafron v. KRG Insurance Brokers (Western) Inc.}}, 2009 SCC 6}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=31981"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/6421/index.do"]{Ravndahl v. Saskatchewan}}, 2009 SCC 7}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Alberta}◊li{Attorney General of British Columbia}◊li{Attorney General of Canada}◊li{Attorney General of Manitoba}◊li{Attorney General of New Brunswick}◊li{Attorney General of Newfoundland and Labrador}◊li{Attorney General of Ontario}◊li{Attorney General of Quebec}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32225"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32225"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/6899/index.do"]{DesRochers v. Canada (Industry)}}, 2009 SCC 8}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of New Brunswick}◊li{Attorney General of the North West Territories}◊li{Fédération Franco-Ténoise}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=31815"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=31815"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/6243/index.do"]{Ermineskin Indian Band and Nation v. Canada}}, 2009 SCC 9}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Assembly of First Nations}◊li{Attorney General of Alberta}◊li{Attorney General of Ontario}◊li{Attorney General of Quebec}◊li{Lac Seul First Nation}◊li{Saddle Lake Indian Band}◊li{Stoney Indian Band}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=31869"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=31875"]{2}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=31869"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=31875"]{2}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/6396/index.do"]{Rick v. Brandsema}}, 2009 SCC 10}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Women's Legal Education and Action Fund (LEAF)}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32098"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32098"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/6649/index.do"]{Teck Cominco Metals Ltd. v. Lloyd's Underwriters}}, 2009 SCC 11}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32116"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/6901/index.do"]{Canada (Citizenship and Immigration) v. Khosa}}, 2009 SCC 12}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Immigration and Refugee Board}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=31952"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=31952"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7819/index.do"]{R. v. Royz}}, 2009 SCC 13}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32806"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7359/index.do"]{R. v. S.J.L.}}, 2009 SCC 14}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Association des avocats de la défense de Montréal}◊li{Attorney General of Manitoba}◊li{Attorney General of Ontario}◊li{Director of Public Prosecutions of Canada}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32309"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32309"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7598/index.do"]{B.M.P. Global Distribution Inc. v. Bank of Nova Scotia}}, 2009 SCC 15}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=31930"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7599/index.do"]{Canada Post Corp. v. Lépine}}, 2009 SCC 16}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Canada}◊li{Cybersurf Corp.}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32299"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32299"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7611/index.do"]{R. v. Patrick}}, 2009 SCC 17}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Alberta}◊li{Attorney General of British Columbia}◊li{Attorney General of Ontario}◊li{Canadian Civil Liberties Association}◊li{Criminal Lawyers' Association of Ontario}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32354"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32354"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7613/index.do"]{R. v. Laboucan}}, 2009 SCC 18}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33010"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7612/index.do"]{Chatterjee v. Ontario (Attorney General)}}, 2009 SCC 19}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Alberta}◊li{Attorney General of British Columbia}◊li{Attorney General of Canada}◊li{Attorney General of Manitoba}◊li{Attorney General of Newfoundland and Labrador}◊li{Attorney General of Nova Scotia}◊li{Attorney General of Quebec}◊li{Attorney General of Saskatchewan}◊li{British Columbia Civil Liberties Association}◊li{Canadian Civil Liberties Association}◊li{Criminal Lawyers' Association of Ontario}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32204"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32204"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7614/index.do"]{United Parcel Service Canada Ltd. v. Canada}}, 2009 SCC 20}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32546"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7790/index.do"]{R. v. Middleton}}, 2009 SCC 21}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32138"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/6733/index.do"]{R. v. Van}}, 2009 SCC 22}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32681"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/6970/index.do"]{R. v. Craig}}, 2009 SCC 23}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Ontario}◊li{Criminal Lawyers' Association of Ontario}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32102"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32102"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7617/index.do"]{R. v. Ouellette}}, 2009 SCC 24}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Ontario}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32057"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32057"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/6738/index.do"]{R. v. Nguyen}}, 2009 SCC 25}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Ontario}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32359"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32359"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/6981/index.do"]{R. v. Godin}}, 2009 SCC 26}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32740"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7798/index.do"]{R. v. Ellard}}, 2009 SCC 27}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32835"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7792/index.do"]{R. v. Griffin}}, 2009 SCC 28}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32649"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32650"]{2}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7793/index.do"]{Caisse populaire Desjardins de l'Est de Drummond v. Canada}}, 2009 SCC 29}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=31787"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7795/index.do"]{A.C. v. Manitoba (Director of Child and Family Services)}}, 2009 SCC 30}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Alberta}◊li{Attorney General of British Columbia}◊li{Attorney General of Manitoba}◊li{Justice for Children and Youth}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=31955"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=31955"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7796/index.do"]{Greater Vancouver Transportation Authority v. Canadian Federation of Students — British Columbia Component}}, 2009 SCC 31}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Adbusters Media Foundation}◊li{Attorney General of British Columbia}◊li{Attorney General of New Brunswick}◊li{British Columbia Civil Liberties Association}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=31845"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=31845"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7799/index.do"]{R. v. Grant}}, 2009 SCC 32}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of British Columbia}◊li{Canadian Civil Liberties Association}◊li{Criminal Lawyers' Association of Ontario}◊li{Director of Public Prosecutions of Canada}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=31892"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=31892"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7800/index.do"]{R. v. Suberu}}, 2009 SCC 33}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Association des avocats de la défense de Montréal}◊li{Attorney General of British Columbia}◊li{Canadian Civil Liberties Association}◊li{Criminal Lawyers' Association of Ontario}◊li{Director of Public Prosecutions of Canada}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=31912"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=31912"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7801/index.do"]{R. v. Harrison}}, 2009 SCC 34}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Ontario}◊li{Canadian Civil Liberties Association}◊li{Criminal Lawyers' Association of Ontario}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32487"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32487"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7802/index.do"]{R. v. Shepherd}}, 2009 SCC 35}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of British Columbia}◊li{Attorney General of Ontario}◊li{Criminal Lawyers' Association of Ontario}◊li{Director of Public Prosecutions of Canada}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32037"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32037"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7807/index.do"]{R. v. Layton}}, 2009 SCC 36}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32883"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7808/index.do"]{Alberta v. Hutterian Brethren of Wilson Colony}}, 2009 SCC 37}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of British Columbia}◊li{Attorney General of Canada}◊li{Attorney General of Ontario}◊li{Attorney General of Quebec}◊li{Canadian Civil Liberties Association}◊li{Christian Legal Fellowship}◊li{Evangelical Fellowship of Canada}◊li{Ontario Human Rights Commission}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32186"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32186"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7810/index.do"]{R. v. Bjelland}}, 2009 SCC 38}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32446"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7813/index.do"]{Nolan v. Kerry (Canada) Inc.}}, 2009 SCC 39}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Association of Canadian Pension Management}◊li{Canadian Labour Congress}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32205"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32205"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7814/index.do"]{Bell Canada v. Bell Aliant Regional Communications}}, 2009 SCC 40}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Canadian Radio-Television and Telecommunications Commission}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32607"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32611"]{2}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32607"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32611"]{2}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7815/index.do"]{United States of America v. Anekwu}}, 2009 SCC 41}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32646"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7816/index.do"]{R. v. Jaw}}, 2009 SCC 42}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32706"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7817/index.do"]{Marcotte v. Longueuil (City)}}, 2009 SCC 43}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Ontario}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32213"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32214"]{2}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32213"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32214"]{2}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7818/index.do"]{Breslaw v. Montreal (City)}}, 2009 SCC 44}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32369"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7820/index.do"]{R. v. Last}}, 2009 SCC 45}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32809"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7821/index.do"]{Canada (Justice) v. Fischbacher}}, 2009 SCC 46}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32842"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7822/index.do"]{Nguyen v. Quebec (Education, Recreation and Sports)}}, 2009 SCC 47}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Association Franco-ontarienne des conseils scolaires catholiques}◊li{Attorney General of Canada}◊li{Commission scolaire francophone des Territoires du Nord-Ouest}◊li{Commissioner of Official Languages for Canada}◊li{Quebec Association of Independent Schools}◊li{Quebec English School Boards Association}◊li{Quebec Provincial Association of Teachers}◊li{Tribunal administratif du Québec}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32229"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32319"]{2}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32229"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32319"]{2}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7823/index.do"]{Galambos v. Perez}}, 2009 SCC 48}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32586"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7824/index.do"]{Quebec (Revenue) v. Caisse populaire Desjardins de Montmagny}}, 2009 SCC 49}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Canadian Association of Insolvency and Restructuring Professionals}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32486"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32489"]{2}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32492"]{3}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32486"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32489"]{2}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32492"]{3}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7826/index.do"]{Northrop Grumman Overseas Services Corp. v. Canada (Attorney General)}}, 2009 SCC 50}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32752"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7827/index.do"]{Miazga v. Kvello Estate}}, 2009 SCC 51}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Association in Defence of the Wrongly Convicted}◊li{Attorney General of Alberta}◊li{Attorney General of British Columbia}◊li{Attorney General of Canada}◊li{Attorney General of Manitoba}◊li{Attorney General of New Brunswick}◊li{Attorney General of Nova Scotia}◊li{Attorney General of Ontario}◊li{Attorney General of Quebec}◊li{Attorney General of Saskatchewan}◊li{Canadian Association of Crown Counsel}◊li{Canadian Civil Liberties Association}◊li{Criminal Lawyers' Association of Ontario}◊li{Director of Criminal and Penal Prosecutions of Quebec}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32208"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32208"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7828/index.do"]{R. v. Basi}}, 2009 SCC 52}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Ontario}◊li{Canadian Association of Chiefs of Police}◊li{Criminal Lawyers' Association of Ontario}◊li{Director of Public Prosecutions of Canada}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32719"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32719"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7829/index.do"]{Consolidated Fastfrate Inc. v. Western Canada Council of Teamsters}}, 2009 SCC 53}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Ontario}◊li{Attorney General of Quebec}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32290"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32290"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7830/index.do"]{Plourde v. Wal-Mart Canada Corp.}}, 2009 SCC 54}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Alliance of Manufacturers & Exporters Canada, also known as Canadian Manufacturers & Exporters}◊li{Canadian Chamber of Commerce}◊li{Canadian Civil Liberties Association}◊li{Canadian Labour Congress}◊li{Coalition of BC Businesses}◊li{Commission des relations du travail}◊li{Conseil du patronat du Québec}◊li{Fédération des travailleurs du Québec (FTQ)}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32342"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32342"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7831/index.do"]{Desbiens v. Wal-Mart Canada Corp.}}, 2009 SCC 55}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Alliance of Manufacturers & Exporters Canada, also known as Canadian Manufacturers & Exporters}◊li{Canadian Chamber of Commerce}◊li{Canadian Civil Liberties Association}◊li{Canadian Labour Congress}◊li{Coalition of BC Businesses}◊li{Commission des relations du travail}◊li{Conseil du patronat du Québec}◊li{Fédération des travailleurs du Québec (FTQ)}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32527"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32527"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7832/index.do"]{R. v. Legare}}, 2009 SCC 56}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Canada}◊li{Attorney General of Ontario}◊li{Beyond Borders}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32829"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32829"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7833/index.do"]{R. v. Burke}}, 2009 SCC 57}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33031"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7834/index.do"]{R. v. Dudley}}, 2009 SCC 58}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Director of Public Prosecutions of Canada}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32603"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32603"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7835/index.do"]{Co-operators Life Insurance Co. v. Gibbens}}, 2009 SCC 59}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Canadian Life and Health Insurance Association, Inc.}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32677"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32677"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7836/index.do"]{R. v. Bird}}, 2009 SCC 60}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33054"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7837/index.do"]{Grant v. Torstar Corp.}}, 2009 SCC 61}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Ad Idem/Canadian Media Lawyers Association}◊li{Book and Periodical Council}◊li{Canadian Association of Journalists}◊li{Canadian Broadcasting Corporation}◊li{Canadian Civil Liberties Association}◊li{Canadian Journalists for Free Expression}◊li{Canadian Newspaper Association}◊li{Cusson, Dano}◊li{Magazines Canada}◊li{Ottawa Citizen}◊li{PEN Canada}◊li{Professional Writers Association of Canada}◊li{RTNDA Canada/Association of Electronic Journalists}◊li{Writers Union of Canada}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32932"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32932"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7839/index.do"]{Quan v. Cusson}}, 2009 SCC 62}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Ad Idem/Canadian Media Lawyers Association}◊li{Book and Periodical Council}◊li{Canadian Association of Journalists}◊li{Canadian Broadcasting Corporation}◊li{Canadian Civil Liberties Association}◊li{Canadian Journalists for Free Expression}◊li{Canadian Newspaper Association}◊li{Canadian Publishers' Council}◊li{Globe and Mail}◊li{Magazines Canada}◊li{PEN Canada}◊li{Peter Grant and Grant Forest Products Inc.}◊li{Professional Writers Association of Canada}◊li{RTNDA Canada/Association of Electronic Journalists}◊li{Toronto Star Newspapers Limited}◊li{Writers’ Union of Canada}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32420"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32420"]{1}]}
}
}
}
◊heading{2010}
◊div['((class "full-width"))]{
◊table['((class "scc-stats full-width"))]{
◊tr{
◊th{Appeals decided}◊th{Appeals with interveners}◊th{Appeals as of right}◊th{Appeals as of right with interventions}
}
◊tr{
◊td{67}◊td{39}◊td{18}◊td{6}
}
}
}
◊div['((class "full-width"))]{
◊table['((class "scc-stats full-width"))]{
◊tr{
◊th{Citation}◊th{Crim?}◊th['((class "as-of-right-column"))]{A.o.R.?}◊th{Interveners}◊th['((class "no-print drop-on-small-screens"))]{Details}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7840/index.do"]{R. v. J.Z.S.}}, 2010 SCC 1}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Alberta}◊li{Attorney General of Canada}◊li{Attorney General of Manitoba}◊li{Attorney General of Ontario}◊li{Attorney General of Quebec}◊li{Justice for Children and Youth}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32942"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32942"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7841/index.do"]{MiningWatch Canada v. Canada (Fisheries and Oceans)}}, 2010 SCC 2}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Association for Mineral Exploration British Columbia}◊li{Canadian Environmental Law Association}◊li{Friends of the Earth Canada}◊li{Interamerican Association for Environmental Defense}◊li{Mining Association of British Columbia}◊li{Quebec Environmental Law Centre}◊li{Sierra Club of Canada}◊li{West Coast Environmental Law Association}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32797"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32797"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7842/index.do"]{Canada (Prime Minister) v. Khadr}}, 2010 SCC 3}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Amnesty International}◊li{Avocats sans frontières Canada}◊li{Barreau du Québec}◊li{British Columbia Civil Liberties Association}◊li{Canadian Bar Association}◊li{Canadian Civil Liberties Association}◊li{Canadian Coalition for the Rights of Children}◊li{Criminal Lawyers' Association of Ontario}◊li{David Asper Centre for Constitutional Rights}◊li{Groupe d'étude en droits et libertés de la Faculté de droit de l'Université Laval}◊li{Human Rights Watch}◊li{Justice for Children and Youth}◊li{National Council For the Protection of Canadians Abroad}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33289"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33289"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7843/index.do"]{Tercon Contractors Ltd. v. British Columbia (Transportation and Highways)}}, 2010 SCC 4}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Ontario}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32460"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32460"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7844/index.do"]{Fullowka v. Pinkerton's of Canada Ltd.}}, 2010 SCC 5}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Canada}◊li{Attorney General of Ontario}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32735"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32735"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7845/index.do"]{R. v. Nasogaluak}}, 2010 SCC 6}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Manitoba}◊li{Attorney General of Ontario}◊li{Canadian Civil Liberties Association}◊li{Criminal Lawyers' Association of Ontario}◊li{Criminal Trial Lawyers' Association}◊li{Director of Public Prosecutions of Canada}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32423"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32423"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7846/index.do"]{R. v. Beaulieu}}, 2010 SCC 7}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33181"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7847/index.do"]{R. v. Morelli}}, 2010 SCC 8}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32741"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7848/index.do"]{R. v. Baker}}, 2010 SCC 9}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33323"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7849/index.do"]{R. v. Cunningham}}, 2010 SCC 10}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Ontario}◊li{Canadian Bar Association}◊li{Criminal Lawyers' Association of Ontario}◊li{Law Society of British Columbia}◊li{Law Society of Yukon}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32760"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32760"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7851/index.do"]{Reference re Broome v. Prince Edward Island}}, 2010 SCC 11}◊td{}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{◊ul{◊li{Marshall, Susan M.}◊li{Ross, Blair E.}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33051"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33051"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7853/index.do"]{R. v. Laboucan}}, 2010 SCC 12}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33010"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7852/index.do"]{R. v. Briscoe}}, 2010 SCC 13}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Ontario}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32912"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32912"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7854/index.do"]{Montréal (City) v. Montreal Port Authority}}, 2010 SCC 14}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Canada}◊li{City of Toronto}◊li{Federation of Canadian Municipalities}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32881"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32882"]{2}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32881"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32882"]{2}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7855/index.do"]{R. v. Szczerbaniwicz}}, 2010 SCC 15}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33189"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7856/index.do"]{R. v. National Post}}, 2010 SCC 16}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Ad Idem/Canadian Media Lawyers Association}◊li{Attorney General of Alberta}◊li{Attorney General of Canada}◊li{Attorney General of New Brunswick}◊li{Bell GlobeMedia Inc.}◊li{Book and Periodical Council}◊li{British Columbia Civil Liberties Association}◊li{Canadian Association of Journalists}◊li{Canadian Broadcasting Corporation}◊li{Canadian Civil Liberties Association}◊li{Canadian Journalists for Free Expression}◊li{Canadian Newspaper Association}◊li{Canadian Publishers' Council}◊li{Magazines Canada}◊li{PEN Canada}◊li{Professional Writers Association of Canada}◊li{RTNDA Canada/Association of Electronic Journalists}◊li{Writers Union of Canada}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32601"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32601"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7857/index.do"]{Quebec (Attorney General) v. Moses}}, 2010 SCC 17}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Assembly of First Nations}◊li{Attorney General of Saskatchewan}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32693"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32693"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7858/index.do"]{R. v. Hurley}}, 2010 SCC 18}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33301"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7859/index.do"]{Yugraneft Corp. v. Rexx Management Corp.}}, 2010 SCC 19}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{ADR Chambers Inc.}◊li{Canadian Arbitration Congress}◊li{Institut de médiation et d'arbitrage du Québec}◊li{London Court of International Arbitration}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32738"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32738"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7860/index.do"]{R. v. S.G.T.}}, 2010 SCC 20}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32890"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7861/index.do"]{Toronto Star Newspapers Ltd. v. Canada}}, 2010 SCC 21}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Ad Idem/Canadian Media Lawyers Association}◊li{Attorney General of Alberta}◊li{Attorney General of Ontario}◊li{Canadian Association of Journalists}◊li{Canadian Civil Liberties Association}◊li{Canadian Newspaper Association}◊li{Director of Public Prosecutions of Canada}◊li{N.S.}◊li{N.Y.}◊li{RTNDA Canada/Association of Electronic Journalists}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32865"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33085"]{2}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32865"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33085"]{2}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7863/index.do"]{R. v. Conway}}, 2010 SCC 22}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Canada}◊li{British Columbia Review Board}◊li{Community Legal Assistance Society}◊li{Criminal Lawyers Association}◊li{David Asper Centre for Constitutional Rights}◊li{Mental Health Legal Advocacy Coalition}◊li{Mental Health Legal Committee}◊li{Ontario Review Board}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32662"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32662"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7864/index.do"]{Ontario (Public Safety and Security) v. Criminal Lawyers' Association}}, 2010 SCC 23}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Ad Idem/Canadian Media Lawyers Association}◊li{Attorney General of British Columbia}◊li{Attorney General of Canada}◊li{Attorney General of Manitoba}◊li{Attorney General of New Brunswick}◊li{Attorney General of Newfoundland and Labrador}◊li{Attorney General of Nova Scotia}◊li{Attorney General of Quebec}◊li{British Columbia Civil Liberties Association}◊li{Canadian Association of Journalists}◊li{Canadian Bar Association}◊li{Canadian Newspaper Association}◊li{Federation of Law Societies of Canada}◊li{Information Commissioner of Canada}◊li{Tom Mitchinson, Assistant Commissioner, Office of the Information and Privacy Commissioner of Ontario}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32172"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32172"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7865/index.do"]{R. v. Nolet}}, 2010 SCC 24}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33032"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7866/index.do"]{R. v. Levigne}}, 2010 SCC 25}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33450"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7867/index.do"]{R. v. Shea}}, 2010 SCC 26}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33466"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7868/index.do"]{Vancouver (City) v. Ward}}, 2010 SCC 27}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Aboriginal Legal Service of Toronto Inc.}◊li{Association in Defence of the Wrongly Convicted}◊li{Attorney General of Canada}◊li{Attorney General of Ontario}◊li{Attorney General of Quebec}◊li{British Columbia Civil Liberties Association}◊li{Canadian Association of Chiefs of Police}◊li{Canadian Civil Liberties Association}◊li{Criminal Lawyers' Association of Ontario}◊li{David Asper Centre for Constitutional Rights}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33089"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33089"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7869/index.do"]{Syndicat de la fonction publique du Québec v. Quebec (Attorney General)}}, 2010 SCC 28}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Commission des normes, de l'équité, de la santé et de la sécurité du travail}◊li{Confédération des syndicats nationaux}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32771"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32772"]{2}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32771"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32772"]{2}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7870/index.do"]{Syndicat des professeurs du Cégep de Ste-Foy v. Quebec (Attorney General)}}, 2010 SCC 29}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Confédération des syndicats nationaux}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32773"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32773"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7871/index.do"]{Syndicat des professeurs et des professeures de l'Université du Québec à Trois-Rivières v. Université du Québec à Trois-Rivières}}, 2010 SCC 30}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Confédération des syndicats nationaux}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32776"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32776"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7873/index.do"]{R. v. Cornell}}, 2010 SCC 31}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Alberta}◊li{Attorney General of Ontario}◊li{British Columbia Civil Liberties Association}◊li{Canadian Civil Liberties Association}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33186"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33186"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7872/index.do"]{R. v. Pickton}}, 2010 SCC 32}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33288"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7874/index.do"]{Progressive Homes Ltd. v. Lombard General Insurance Co. of Canada}}, 2010 SCC 33}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33170"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7876/index.do"]{Burke v. Hudson's Bay Co.}}, 2010 SCC 34}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32789"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7877/index.do"]{R. v. Sinclair}}, 2010 SCC 35}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Ontario}◊li{British Columbia Civil Liberties Association}◊li{Canadian Civil Liberties Association}◊li{Criminal Lawyers' Association of Ontario}◊li{Director of Public Prosecutions of Canada}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32537"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32537"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7878/index.do"]{R. v. McCrimmon}}, 2010 SCC 36}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{British Columbia Civil Liberties Association}◊li{Canadian Civil Liberties Association}◊li{Criminal Lawyers' Association of Ontario}◊li{Director of Public Prosecutions of Canada}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32969"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32969"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7879/index.do"]{R. v. Willier}}, 2010 SCC 37}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of British Columbia}◊li{Attorney General of Ontario}◊li{British Columbia Civil Liberties Association}◊li{Canadian Civil Liberties Association}◊li{Criminal Lawyers' Association of Ontario}◊li{Director of Public Prosecutions of Canada}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32769"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32769"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7880/index.do"]{Quebec (Attorney General) v. Lacombe}}, 2010 SCC 38}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of British Columbia}◊li{Attorney General of Canada}◊li{Attorney General of New Brunswick}◊li{Attorney General of Ontario}◊li{Greater Toronto Airports Authority}◊li{Municipalité de Sacré-Coeur}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32608"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32608"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7881/index.do"]{Quebec (Attorney General) v. Canadian Owners and Pilots Association}}, 2010 SCC 39}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of British Columbia}◊li{Attorney General of Canada}◊li{Attorney General of New Brunswick}◊li{Attorney General of Ontario}◊li{Berthe Ducasse}◊li{Bruce Shoor}◊li{Chantale Trépanier}◊li{City of Shawinigan}◊li{Commission de protection du territoire agricole du Québec}◊li{Greater Toronto Airports Authority}◊li{Jocelyne Galardo}◊li{Lortie, juge de la Cour du Québec, Pierre}◊li{Louise Barber}◊li{Louise Sokolik}◊li{Michel Sokolik}◊li{Rusty Barber}◊li{Tribunal administratif du Québec}◊li{William Barber}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32604"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32604"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7882/index.do"]{Kuwait Airways Corp. v. Iraq}}, 2010 SCC 40}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33145"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7883/index.do"]{Globe and Mail v. Canada (Attorney General)}}, 2010 SCC 41}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Ad Idem/Canadian Media Lawyers Association}◊li{Astral Media Radio Inc.}◊li{Barreau du Québec}◊li{Canadian Broadcasting Corporation}◊li{Canadian Civil Liberties Association}◊li{Fédération professionnelle des journalistes du Québec}◊li{Gesca Limitée}◊li{Groupe TVA inc.}◊li{Joël-Denis Bellavance}◊li{La Presse, ltée}◊li{Médias Transcontinental Inc.}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32975"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33097"]{2}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33114"]{3}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32975"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33097"]{2}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33114"]{3}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7884/index.do"]{R. v. Allen}}, 2010 SCC 42}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33558"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7885/index.do"]{Rio Tinto Alcan Inc. v. Carrier Sekani Tribal Council}}, 2010 SCC 43}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Assembly of First Nations}◊li{Attorney General of Alberta}◊li{Attorney General of British Columbia}◊li{Attorney General of Canada}◊li{Attorney General of Ontario}◊li{British Columbia Utilities Commission}◊li{Duncan's First Nation}◊li{Enbridge Pipelines Inc.}◊li{First Nations Summit}◊li{Horse Lake First Nation}◊li{Independent Power Producer Association of British Columbia}◊li{Lakes Division of the Secwepemc Nation}◊li{Mikisew Cree First Nation}◊li{Moosomin First Nation}◊li{Nlaka'pamux Nation Tribal Council}◊li{Nunavut Tunngavik Incorporated}◊li{Okanagan Nation Alliance}◊li{Standing Buffalo Dakota First Nation}◊li{TransCanada Keystone Pipeline GP Ltd.}◊li{Upper Nicola Indian Band}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33132"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33132"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7886/index.do"]{Christensen v. Roman Catholic Archbishop of Québec}}, 2010 SCC 44}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33360"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7888/index.do"]{NIL/TU,O Child and Family Services Society v. B.C. Government and Service Employees' Union}}, 2010 SCC 45}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Assembly of First Nations}◊li{Attorney General of British Columbia}◊li{Attorney General of Canada}◊li{Attorney General of Manitoba}◊li{Attorney General of New Brunswick}◊li{Attorney General of Ontario}◊li{Attorney General of Quebec}◊li{Attorney General of Saskatchewan}◊li{British Columbia Labour Relations Board}◊li{Canadian Human Rights Commission}◊li{First Nations Summit}◊li{First Nations of Québec}◊li{Kwumut Lelum Child and Family Services Society}◊li{Labrador Health and Social Services Commission}◊li{Mohawk Council of Akwesasne}◊li{Te'Mexw Nations}◊li{of Québec and Labrador}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32862"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32862"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7889/index.do"]{Communications, Energy and Paperworkers Union of Canada v. Native Child and Family Services of Toronto}}, 2010 SCC 46}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Assembly of First Nations}◊li{Attorney General of British Columbia}◊li{Attorney General of Canada}◊li{Attorney General of Manitoba}◊li{Attorney General of New Brunswick}◊li{Attorney General of Ontario}◊li{Attorney General of Quebec}◊li{Attorney General of Saskatchewan}◊li{First Nations of Québec}◊li{Labrador Health and Social Services Commission}◊li{of Québec and Labrador}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32908"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32908"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7890/index.do"]{Bank of Montreal v. Innovation Credit Union}}, 2010 SCC 47}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33153"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7891/index.do"]{Royal Bank of Canada v. Radius Credit Union Ltd.}}, 2010 SCC 48}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33152"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7893/index.do"]{R. v. Lutoslawski}}, 2010 SCC 49}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33723"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7894/index.do"]{R. v. Imoro}}, 2010 SCC 50}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Ontario}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33649"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33649"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7892/index.do"]{de Montigny v. Brossard (Succession)}}, 2010 SCC 51}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Quebec}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32860"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32860"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7895/index.do"]{R. v. Lee}}, 2010 SCC 52}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33575"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7896/index.do"]{Beckman v. Little Salmon/Carmacks First Nation}}, 2010 SCC 53}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Assembly of First Nations}◊li{Attorney General of Canada}◊li{Attorney General of Newfoundland and Labrador}◊li{Attorney General of Quebec}◊li{Council of Yukon First Nations}◊li{Grand Council of Cree (Eeyou Istchee), Cree Nation Government}◊li{Gwich'in Tribal Council}◊li{Kwanlin Dün First Nation}◊li{Nunavut Tunngavik Incorporated}◊li{Sahtu Secretariat Incorporated}◊li{Te'Mexw Nations}◊li{Tlicho Government}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32850"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32850"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7897/index.do"]{R. v. Hay}}, 2010 SCC 54}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33536"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7898/index.do"]{R. v. Gomboc}}, 2010 SCC 55}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Ontario}◊li{Attorney General of Quebec}◊li{Canadian Civil Liberties Association}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33332"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33332"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7899/index.do"]{Németh v. Canada (Justice)}}, 2010 SCC 56}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Barreau du Québec}◊li{Canadian Council for Refugees}◊li{Quebec Immigration Lawyers Association}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33016"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33016"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7901/index.do"]{Gavrila v. Canada (Justice)}}, 2010 SCC 57}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Amnesty International}◊li{Association québécoise des avocats et avocates en droit de l'immigration}◊li{Canadian Civil Liberties Association}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33313"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33313"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7902/index.do"]{R. v. Tran}}, 2010 SCC 58}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Ontario}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33467"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33467"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7903/index.do"]{R. v. White}}, 2010 SCC 59}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33330"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7904/index.do"]{Century Services Inc. v. Canada (Attorney General)}}, 2010 SCC 60}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33239"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7905/index.do"]{Reference re Assisted Human Reproduction Act}}, 2010 SCC 61}◊td{}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Alberta}◊li{Attorney General of New Brunswick}◊li{Attorney General of Saskatchewan}◊li{Awad, Michael}◊li{Canadian Conference of Catholic Bishops}◊li{Evangelical Fellowship of Canada}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32750"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32750"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7906/index.do"]{Canada (Attorney General) v. TeleZone Inc.}}, 2010 SCC 62}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33041"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7907/index.do"]{Canada (Attorney General) v. McArthur}}, 2010 SCC 63}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Anglehart sr. et al., Roland}◊li{Attorney General of British Columbia}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33043"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33043"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7908/index.do"]{Parrish & Heimbecker Ltd. v. Canada (Agriculture and Agri-Food)}}, 2010 SCC 64}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33006"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7909/index.do"]{Nu-Pharm Inc. v. Canada (Attorney General)}}, 2010 SCC 65}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32830"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7910/index.do"]{Canadian Food Inspection Agency v. Professional Institute of the Public Service of Canada}}, 2010 SCC 66}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32880"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7911/index.do"]{Manuge v. Canada}}, 2010 SCC 67}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33103"]{1}]}
}
}
}
◊heading{2011}
◊div['((class "full-width"))]{
◊table['((class "scc-stats full-width"))]{
◊tr{
◊th{Appeals decided}◊th{Appeals with interveners}◊th{Appeals as of right}◊th{Appeals as of right with interventions}
}
◊tr{
◊td{66}◊td{38}◊td{21}◊td{6}
}
}
}
◊div['((class "full-width"))]{
◊table['((class "scc-stats full-width"))]{
◊tr{
◊th{Citation}◊th{Crim?}◊th['((class "as-of-right-column"))]{A.o.R.?}◊th{Interveners}◊th['((class "no-print drop-on-small-screens"))]{Details}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7913/index.do"]{Celgene Corp. v. Canada (Attorney General)}}, 2011 SCC 1}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33579"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7914/index.do"]{Canadian Broadcasting Corp. v. Canada (Attorney General)}}, 2011 SCC 2}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Ad Idem/Canadian Media Lawyers Association}◊li{Attorney General of Alberta}◊li{British Columbia Civil Liberties Association}◊li{Canadian Association of Journalists}◊li{Canadian Civil Liberties Association}◊li{Canadian Journalists for Free Expression}◊li{Canadian Newspaper Association}◊li{Canadian Publishers' Council}◊li{RTNDA Canada/Association of Electronic Journalists}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32920"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32920"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7915/index.do"]{Canadian Broadcasting Corp. v. The Queen}}, 2011 SCC 3}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Alberta}◊li{Attorney General of Canada}◊li{Attorney General of New Brunswick}◊li{Attorney General of Quebec}◊li{British Columbia Civil Liberties Association}◊li{Canadian Civil Liberties Association}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32987"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32987"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7916/index.do"]{R. v. Bruce}}, 2011 SCC 4}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33735"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7917/index.do"]{R. v. Caron}}, 2011 SCC 5}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Association canadienne-française de l'Alberta}◊li{Canadian Civil Liberties Association}◊li{Charter Committee on Poverty Issues}◊li{Commissioner of Official Languages for Canada}◊li{Council of Canadians with Disabilities}◊li{David Asper Centre for Constitutional Rights}◊li{Poverty and Human Rights Centre}◊li{Women's Legal Education and Action Fund (LEAF)}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33092"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33092"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7918/index.do"]{R. v. Ahmad}}, 2011 SCC 6}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Ontario}◊li{Canadian Civil Liberties Association}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33066"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33066"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7919/index.do"]{Smith v. Alliance Pipeline Ltd.}}, 2011 SCC 7}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Arbitration Committee, appointed pursuant to the National Energy Board Act, R.S.C. 1985, c.N-7, Part V}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33203"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33203"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7920/index.do"]{R. v. Miljevic}}, 2011 SCC 8}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33714"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7921/index.do"]{Bou Malhab v. Diffusion Métromédia CMR inc.}}, 2011 SCC 9}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Ad Idem/Canadian Media Lawyers Association}◊li{Canadian Association of Journalists}◊li{Canadian Broadcasting Corporation}◊li{Canadian Civil Liberties Association}◊li{Canadian Newspaper Association}◊li{Conseil National des citoyens et citoyennes d'origine haïtienne}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32931"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32931"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7922/index.do"]{Kerr v. Baranow}}, 2011 SCC 10}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33157"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33358"]{2}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7923/index.do"]{Québec (Attorney General) v. Canada}}, 2011 SCC 11}◊td{}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33524"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7925/index.do"]{Withler v. Canada (Attorney General)}}, 2011 SCC 12}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Ontario}◊li{Women's Legal Education and Action Fund (LEAF)}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33039"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33039"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7926/index.do"]{R. v. White}}, 2011 SCC 13}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33464"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7928/index.do"]{R. v. S.D.}}, 2011 SCC 14}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33842"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7927/index.do"]{Seidel v. TELUS Communications Inc.}}, 2011 SCC 15}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{ADR Chambers Inc.}◊li{Barreau du Québec}◊li{Canadian Arbitration Congress}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33154"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33154"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7929/index.do"]{R. v. St-Onge}}, 2011 SCC 16}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33864"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7930/index.do"]{R. v. J.A.A.}}, 2011 SCC 17}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33782"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7932/index.do"]{British Columbia (Attorney General) v. Malik}}, 2011 SCC 18}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33266"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7933/index.do"]{R. v. Reynolds}}, 2011 SCC 19}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33919"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7934/index.do"]{Ontario (Attorney General) v. Fraser}}, 2011 SCC 20}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Alberta}◊li{Attorney General of British Columbia}◊li{Attorney General of Canada}◊li{Attorney General of New Brunswick}◊li{Attorney General of Quebec}◊li{British Columbia Agriculture Council}◊li{Canadian Civil Liberties Association}◊li{Canadian Employers Council}◊li{Canadian Labour Congress}◊li{Canadian Police Association}◊li{Coalition of BC Businesses}◊li{Conseil du patronat du Québec}◊li{Federally Regulated Employers - Transportation and Communications}◊li{Industrial Accident Victims Group of Ontario}◊li{Justicia for Migrant Workers}◊li{Mounted Police Members' Legal Fund}◊li{Ontario Federation of Agriculture}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32968"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=32968"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7931/index.do"]{R. v. Loewen}}, 2011 SCC 21}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33914"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7936/index.do"]{R. v. V.Y.}}, 2011 SCC 22}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{◊ul{◊li{Association in Defence of the Wrongly Convicted}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33841"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33841"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7937/index.do"]{Sharbern Holding Inc. v. Vancouver Airport Centre Ltd.}}, 2011 SCC 23}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33280"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7938/index.do"]{Alberta v. Elder Advocates of Alberta Society}}, 2011 SCC 24}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of British Columbia}◊li{Attorney General of Canada}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33551"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33551"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7939/index.do"]{Canada (Information Commissioner) v. Canada (Minister of National Defence)}}, 2011 SCC 25}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Ad Idem/Canadian Media Lawyers Association}◊li{Canadian Association of Journalists}◊li{Canadian Civil Liberties Association}◊li{Canadian Newspaper Association}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33296"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33297"]{2}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33299"]{3}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33300"]{4}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33296"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33297"]{2}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33299"]{3}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33300"]{4}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7940/index.do"]{i Trade Finance Inc. v. Bank of Montreal}}, 2011 SCC 26}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33394"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7941/index.do"]{Masterpiece Inc. v. Alavida Lifestyles Inc.}}, 2011 SCC 27}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{International Trademark Association}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33459"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33459"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7942/index.do"]{R. v. J.A.}}, 2011 SCC 28}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Canada}◊li{Women's Legal Education and Action Fund (LEAF)}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33684"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33684"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7943/index.do"]{R. v. O'Brien}}, 2011 SCC 29}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33817"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7944/index.do"]{Canada (Attorney General) v. Mavi}}, 2011 SCC 30}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Canadian Civil Liberties Association}◊li{Canadian Council for Refugees}◊li{Metropolitan Action Committee on Violence against Women and Children}◊li{South Asia Legal Clinic of Ontario}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33520"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33520"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7945/index.do"]{R. v. E.M.W.}}, 2011 SCC 31}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33930"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7946/index.do"]{R. v. Campbell}}, 2011 SCC 32}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{◊ul{◊li{Criminal Lawyers' Association of Ontario}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33916"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33916"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7948/index.do"]{Aecon Buildings v. Stephenson Engineering Ltd.}}, 2011 SCC 33}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=34112"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7949/index.do"]{R. v. Nixon}}, 2011 SCC 34}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of British Columbia}◊li{Attorney General of Manitoba}◊li{Attorney General of Ontario}◊li{Criminal Lawyers' Association of Ontario}◊li{Criminal Trial Lawyers' Association}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33476"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33476"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7950/index.do"]{Schreyer v. Schreyer}}, 2011 SCC 35}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33443"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7951/index.do"]{Canada Trustco Mortgage Co. v. Canada}}, 2011 SCC 36}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33422"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7952/index.do"]{Alberta (Aboriginal Affairs and Northern Development) v. Cunningham}}, 2011 SCC 37}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Aboriginal Legal Service of Toronto Inc.}◊li{Attorney General of Ontario}◊li{Attorney General of Quebec}◊li{Attorney General of Saskatchewan}◊li{Canadian Association for Community Living}◊li{East Prairie Métis Settlement}◊li{Elizabeth Métis Settlement}◊li{Gift Lake Métis Settlement}◊li{Métis Nation of Alberta}◊li{Métis National Council}◊li{Métis Settlements General Council}◊li{Native Women's Association of Canada}◊li{Women's Legal Education and Action Fund (LEAF)}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33340"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33340"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7953/index.do"]{Bastien Estate v. Canada}}, 2011 SCC 38}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Assembly of First Nations}◊li{Assembly of Manitoba Chiefs}◊li{Chiefs in Ontario}◊li{Grand Council of Cree (Eeyou Istchee), Cree Nation Government}◊li{Huron-Wendat Nation}◊li{Union of Nova Scotia Indians}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33196"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33196"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7954/index.do"]{Dubé v. Canada}}, 2011 SCC 39}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Assembly of First Nations}◊li{Assembly of Manitoba Chiefs}◊li{Chiefs in Ontario}◊li{Grand Council of Cree (Eeyou Istchee), Cree Nation Government}◊li{Union of Nova Scotia Indians}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33194"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33194"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7955/index.do"]{R. v. Sinclair}}, 2011 SCC 40}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Ontario}◊li{Director of Public Prosecutions of Canada}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33359"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33359"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7956/index.do"]{Kuwait Airways Corp. v. Iraq}}, 2011 SCC 41}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33145"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7957/index.do"]{R. v. Imperial Tobacco Canada Ltd.}}, 2011 SCC 42}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of British Columbia}◊li{Attorney General of Ontario}◊li{Her Majesty the Queen in Right of the Province of New Brunswick}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33559"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33563"]{2}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33559"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33563"]{2}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7958/index.do"]{R. v. Topp}}, 2011 SCC 43}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Alberta}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33529"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33529"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7960/index.do"]{Canada (Attorney General) v. PHS Community Services Society}}, 2011 SCC 44}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Association of Registered Nurses of British Columbia}◊li{Attorney General of Quebec}◊li{British Columbia Civil Liberties Association}◊li{British Columbia Nurses' Union}◊li{CACTUS Montréal}◊li{Canadian Civil Liberties Association}◊li{Canadian HIV/AIDS Legal Network}◊li{Canadian Medical Association}◊li{Canadian Nurses Association}◊li{Canadian Public Health Association}◊li{Dr. Peter AIDS Foundation}◊li{International Harm Reduction Association}◊li{Real Women Canada}◊li{Registered Nurses' Association of Ontario}◊li{Vancouver Coastal Health Authority}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33556"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33556"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7961/index.do"]{R. v. J.M.H.}}, 2011 SCC 45}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Director of Public Prosecutions of Canada}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33667"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33667"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7962/index.do"]{R. v. Côté}}, 2011 SCC 46}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Criminal Lawyers' Association of Ontario}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33645"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33645"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7963/index.do"]{Crookes v. Newton}}, 2011 SCC 47}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Ad Idem/Canadian Media Lawyers Association}◊li{British Columbia Civil Liberties Association}◊li{Canadian Civil Liberties Association}◊li{Canadian Journalists for Free Expression}◊li{Canadian Newspaper Association}◊li{Canadian Publishers' Council}◊li{Magazines Canada}◊li{NetCoalition}◊li{PEN Canada}◊li{Professional Writers Association of Canada}◊li{Samuelson-Glushko Canadian Internet Policy & Public Interest Clinic}◊li{Writers Union of Canada}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33412"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33412"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7964/index.do"]{R. v. Katigbak}}, 2011 SCC 48}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{◊ul{◊li{Canadian Civil Liberties Association}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33762"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33762"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7965/index.do"]{R. v. Whyte}}, 2011 SCC 49}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33965"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7966/index.do"]{R. v. Dorfer}}, 2011 SCC 50}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33952"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7967/index.do"]{R. v. Barros}}, 2011 SCC 51}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Ontario}◊li{Canadian Association of Chiefs of Police}◊li{Canadian Civil Liberties Association}◊li{Canadian Crime Stoppers Association}◊li{Criminal Lawyers' Association of Ontario}◊li{Director of Public Prosecutions of Canada}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33727"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33727"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7968/index.do"]{British Columbia (Workers' Compensation Board) v. Figliola}}, 2011 SCC 52}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Alberta Human Rights Commission}◊li{Attorney General of British Columbia}◊li{Canadian Human Rights Commission}◊li{Coalition of BC Businesses}◊li{Vancouver Area Human Rights Coalition Society}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33648"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33648"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7969/index.do"]{Canada (Canadian Human Rights Commission) v. Canada (Attorney General)}}, 2011 SCC 53}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Canadian Bar Association}◊li{Council of Canadians with Disabilities}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33507"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33507"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7970/index.do"]{R. v. Sarrazin}}, 2011 SCC 54}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33917"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7973/index.do"]{R. v. Banwait}}, 2011 SCC 55}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=34044"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7972/index.do"]{Lax Kw'alaams Indian Band v. Canada (Attorney General)}}, 2011 SCC 56}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Ontario}◊li{B.C. Seafood Alliance}◊li{B.C. Wildlife Federation}◊li{Gitxaala Nation}◊li{Metlakatla Band}◊li{Te'Mexw Nations}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33581"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33581"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7975/index.do"]{Public Service Alliance of Canada v. Canada Post Corp.}}, 2011 SCC 57}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33668"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33669"]{2}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33670"]{3}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7976/index.do"]{R. v. Bouchard-Lebrun}}, 2011 SCC 58}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Canada}◊li{Attorney General of Ontario}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33687"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33687"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7977/index.do"]{Nor-Man Regional Health Authority Inc. v. Manitoba Association of Health Care Professionals}}, 2011 SCC 59}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of British Columbia}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33795"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33795"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7978/index.do"]{Quebec (Attorney General) v. Canada (Human Resources and Social Development)}}, 2011 SCC 60}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of British Columbia}◊li{Bruyère, Rock}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33511"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33511"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7979/index.do"]{Alberta (Information and Privacy Commissioner) v. Alberta Teachers' Association}}, 2011 SCC 61}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of British Columbia}◊li{British Columbia Freedom of Information and Privacy Association}◊li{Information and Privacy Commissioner of British Columbia}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33620"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33620"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7980/index.do"]{Newfoundland and Labrador Nurses' Union v. Newfoundland and Labrador (Treasury Board)}}, 2011 SCC 62}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33659"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7981/index.do"]{Copthorne Holdings Ltd. v. Canada}}, 2011 SCC 63}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33283"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7982/index.do"]{L.M.P. v. L.S.}}, 2011 SCC 64}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Disabled Women's Network Canada}◊li{Women's Legal Education and Action Fund (LEAF)}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33749"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33749"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7983/index.do"]{R.P. v. R.C.}}, 2011 SCC 65}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33698"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7984/index.do"]{Reference re Securities Act}}, 2011 SCC 66}◊td{}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Alberta}◊li{Attorney General of British Columbia}◊li{Attorney General of Manitoba}◊li{Attorney General of New Brunswick}◊li{Attorney General of Ontario}◊li{Attorney General of Quebec}◊li{Attorney General of Saskatchewan}◊li{Barreau du Québec}◊li{Canadian Bankers Association}◊li{Canadian Coalition for Good Governance}◊li{Canadian Foundation for Advancement of Investor Rights}◊li{Institute for Governance of Private and Public Organizations}◊li{Investment Industry Association of Canada}◊li{Mouvement d'Éducation et de défense des Actionnaires}◊li{Ontario Teachers' Pension Plan Board}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33718"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33718"]{1}]}
}
}
}
◊heading{2012}
◊div['((class "full-width"))]{
◊table['((class "scc-stats full-width"))]{
◊tr{
◊th{Appeals decided}◊th{Appeals with interveners}◊th{Appeals as of right}◊th{Appeals as of right with interventions}
}
◊tr{
◊td{75}◊td{47}◊td{15}◊td{5}
}
}
}
◊div['((class "full-width"))]{
◊table['((class "scc-stats full-width"))]{
◊tr{
◊th{Citation}◊th{Crim?}◊th['((class "as-of-right-column"))]{A.o.R.?}◊th{Interveners}◊th['((class "no-print drop-on-small-screens"))]{Details}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7986/index.do"]{Toronto-Dominion Bank v. Canada}}, 2012 SCC 1}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33878"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7987/index.do"]{Catalyst Paper Corp. v. North Cowichan (District)}}, 2012 SCC 2}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33744"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7988/index.do"]{Merck Frosst Canada Ltd. v. Canada (Health)}}, 2012 SCC 3}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{BIOTECanada}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33290"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33320"]{2}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33290"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33320"]{2}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7989/index.do"]{Reference re Broadcasting Act}}, 2012 SCC 4}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Canadian Radio-Television and Telecommunications Commission}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33884"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33884"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7990/index.do"]{R. v. D.A.I.}}, 2012 SCC 5}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Council of Canadians with Disabilities}◊li{Criminal Lawyers' Association of Ontario}◊li{Disabled Women's Network Canada}◊li{Women's Legal Education and Action Fund (LEAF)}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33657"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33657"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7991/index.do"]{R v. T.L.M.}}, 2012 SCC 6}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=34288"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7992/index.do"]{S.L. v. Commission scolaire des Chênes}}, 2012 SCC 7}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Canadian Catholic School Trustees' Association}◊li{Canadian Civil Liberties Association}◊li{Canadian Council of Christian Charities}◊li{Christian Legal Fellowship}◊li{Coalition pour la liberté en éducation}◊li{Evangelical Fellowship of Canada}◊li{Fédération des commissions scolaires du Québec}◊li{Regroupement Chrétien pour le droit parental en éducation}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33678"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33678"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7994/index.do"]{Richard v. Time Inc.}}, 2012 SCC 8}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33554"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7995/index.do"]{Momentous.ca Corp. v. Canadian American Association of Professional Baseball Ltd.}}, 2012 SCC 9}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33999"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7996/index.do"]{Halifax (Regional Municipality) v. Nova Scotia (Human Rights Commission)}}, 2012 SCC 10}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Canadian Human Rights Commission}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33651"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33651"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7997/index.do"]{R. v. Eastgaard}}, 2012 SCC 11}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=34337"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/7998/index.do"]{Doré v. Barreau du Québec}}, 2012 SCC 12}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Canadian Civil Liberties Association}◊li{Federation of Law Societies of Canada}◊li{Young Bar Association of Montreal}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33594"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33594"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/8000/index.do"]{R. v. Ipeelee}}, 2012 SCC 13}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Aboriginal Legal Service of Toronto Inc.}◊li{British Columbia Civil Liberties Association}◊li{Canadian Civil Liberties Association}◊li{Director of Public Prosecutions of Canada}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33650"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=34245"]{2}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33650"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=34245"]{2}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/8001/index.do"]{Fundy Settlement v. Canada}}, 2012 SCC 14}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=34056"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=34057"]{2}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/8003/index.do"]{R. v. Kociuk}}, 2012 SCC 15}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=34517"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/8002/index.do"]{R. v. Tse}}, 2012 SCC 16}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Canada}◊li{Attorney General of Ontario}◊li{Attorney General of Quebec}◊li{British Columbia Civil Liberties Association}◊li{Canadian Civil Liberties Association}◊li{Criminal Lawyers' Association of Ontario}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33751"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33751"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/8004/index.do"]{Club Resorts Ltd. v. Van Breda}}, 2012 SCC 17}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Amnesty International}◊li{Canadian Centre for International Justice}◊li{Canadian Lawyers for International Human Rights}◊li{Ontario Trial Lawyers Association}◊li{Tourism Industry Association of Ontario}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33606"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33692"]{2}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33606"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33692"]{2}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/8005/index.do"]{Éditions Écosociété Inc. v. Banro Corp.}}, 2012 SCC 18}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{British Columbia Civil Liberties Association}◊li{Canadian Civil Liberties Association}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33819"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33819"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/8006/index.do"]{Breeden v. Black}}, 2012 SCC 19}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{British Columbia Civil Liberties Association}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33900"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33900"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/8007/index.do"]{Calgary (City) v. Canada}}, 2012 SCC 20}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33804"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/8008/index.do"]{R. v. Jesse}}, 2012 SCC 21}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33694"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/8009/index.do"]{R. v. R.P.}}, 2012 SCC 22}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=34038"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/8010/index.do"]{Tessier Ltée v. Quebec (Commission de la santé et de la sécurité du travail)}}, 2012 SCC 23}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of British Columbia}◊li{Attorney General of Ontario}◊li{Attorney General of Quebec}◊li{Commission des lésions professionnelles}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33935"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33935"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/8011/index.do"]{R. v. Maybin}}, 2012 SCC 24}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of Ontario}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=34011"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=34011"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/8013/index.do"]{Cinar Corporation v. Robinson}}, 2012 SCC 25}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{3918203 Canada Inc.}◊li{BBC Worldwide Television}◊li{Charest, Hélène}◊li{Christophe Izard}◊li{Davin, Christian}◊li{Films Cinar Inc.}◊li{France Animation S.A.}◊li{Izard, Christophe}◊li{McRaw Holdings Inc.}◊li{Music Canada}◊li{Plummer-Andrews, Theresa}◊li{RTV Family Entertainment AG}◊li{Ravensburger Film + TV GmbH}◊li{Ronald A. Weinberg, in his capacity as sole liquidator of the succession of the late Micheline Charest}◊li{Videal Gesellschaft Zur Hertellung Von Audiovisuellen Produkten MHB}◊li{Weinberg, Ronald A.}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=34466"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=34467"]{2}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=34468"]{3}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=34466"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=34467"]{2}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=34468"]{3}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/8259/index.do"]{R. v. Roy}}, 2012 SCC 26}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33699"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/9987/index.do"]{Annapolis County District School Board v. Marshall}}, 2012 SCC 27}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=34189"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/9988/index.do"]{R. v. Gibbons}}, 2012 SCC 28}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33813"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/9989/index.do"]{Halifax (Regional Municipality) v. Canada (Public Works and Government Services)}}, 2012 SCC 29}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Association of Canadian Port Authorities}◊li{City of Quebec}◊li{City of Toronto}◊li{Federation of Canadian Municipalities}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33876"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33876"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/9990/index.do"]{Westmount (City) v. Rossy}}, 2012 SCC 30}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=34060"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/9991/index.do"]{R. v. Mayuran}}, 2012 SCC 31}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=34526"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/9992/index.do"]{Clements v. Clements}}, 2012 SCC 32}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Attorney General of British Columbia}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=34100"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=34100"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/9993/index.do"]{R. v. Venneri}}, 2012 SCC 33}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=34523"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/9994/index.do"]{Entertainment Software Association v. Society of Composers, Authors and Music Publishers of Canada}}, 2012 SCC 34}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{CMRRA-SODRAC Inc.}◊li{Cineplex Entertainment LP}◊li{Samuelson-Glushko Canadian Internet Policy & Public Interest Clinic}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33921"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33921"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/9995/index.do"]{Rogers Communications Inc. v. Society of Composers, Authors and Music Publishers of Canada}}, 2012 SCC 35}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Apple Canada Inc.}◊li{CMRRA-SODRAC Inc.}◊li{Cineplex Entertainment LP}◊li{Samuelson-Glushko Canadian Internet Policy & Public Interest Clinic}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33922"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33922"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/9996/index.do"]{Society of Composers, Authors and Music Publishers of Canada v. Bell Canada}}, 2012 SCC 36}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Canadian Association of University Teachers}◊li{Canadian Legal Information Institute}◊li{Computer & Communications Industry Association}◊li{Federation of Law Societies of Canada}◊li{Samuelson-Glushko Canadian Internet Policy & Public Interest Clinic}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33800"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33800"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/9997/index.do"]{Alberta (Education) v. Canadian Copyright Licensing Agency (Access Copyright)}}, 2012 SCC 37}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Association of Canadian Community Colleges}◊li{Association of Canadian Publishers}◊li{Association of Universities and Colleges of Canada}◊li{CMRRA-SODRAC Inc.}◊li{Canadian Association of University Teachers}◊li{Canadian Authors Association}◊li{Canadian Educational Resources Council}◊li{Canadian Federation of Students}◊li{Canadian Freelance Union}◊li{Canadian Publishers' Council}◊li{Canadian Society of Children's Authors}◊li{Centre for Innovation Law and Policy of the Faculty of Law University of Toronto}◊li{Illustrators and Performers}◊li{League of Canadian Poets}◊li{Literary Translators' Association of Canada}◊li{Playwrights Guild of Canada}◊li{Professional Writers Association of Canada}◊li{Samuelson-Glushko Canadian Internet Policy & Public Interest Clinic}◊li{Writers Union of Canada}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33888"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33888"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/9999/index.do"]{Re:Sound v. Motion Picture Theatre Associations of Canada}}, 2012 SCC 38}◊td{}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Samuelson-Glushko Canadian Internet Policy & Public Interest Clinic}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=34210"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=34210"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/10000/index.do"]{R. v. Punko}}, 2012 SCC 39}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=34135"]{1}] [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=34193"]{2}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/10001/index.do"]{R. v. Vu}}, 2012 SCC 40}◊td{crim.}◊td['((class "as-of-right-column"))]{a.o.r.}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=34286"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/10002/index.do"]{R. v. Walle}}, 2012 SCC 41}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{◊ul{◊li{Criminal Lawyers' Association of Ontario}}◊p['((class "small-screens-only"))]{Details: [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=34080"]{1}]}}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=34080"]{1}]}
}
◊tr{
◊td{◊em{◊a[#:href "https://scc-csc.lexum.com/scc-csc/scc-csc/en/item/10003/index.do"]{R. v. Knott}}, 2012 SCC 42}◊td{crim.}◊td['((class "as-of-right-column"))]{}◊td['((class "intervener-cell"))]{}◊td['((class "no-print drop-on-small-screens"))]{ [◊a[#:href "https://www.scc-csc.ca/case-dossier/info/parties-eng.aspx?cas=33911"]{1}]}
}
◊tr{