-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgdpi.html
4037 lines (2727 loc) · 214 KB
/
gdpi.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" dir="ltr" prefix="content: http://purl.org/rss/1.0/modules/content/ dc: http://purl.org/dc/terms/ foaf: http://xmlns.com/foaf/0.1/ og: http://ogp.me/ns# rdfs: http://www.w3.org/2000/01/rdf-schema# schema: http://schema.org/ sioc: http://rdfs.org/sioc/ns# sioct: http://rdfs.org/sioc/types# skos: http://www.w3.org/2004/02/skos/core# xsd: http://www.w3.org/2001/XMLSchema# ">
<head>
<meta charset="utf-8" />
<link rel="shortlink" href="https://cyber.fsi.stanford.edu/gdpi" />
<link rel="canonical" href="https://cyber.fsi.stanford.edu/gdpi" />
<meta name="Generator" content="Drupal 10 (https://www.drupal.org)" />
<meta name="MobileOptimized" content="width" />
<meta name="HandheldFriendly" content="true" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/themes/custom/stanford_fsi/favicon.ico" type="image/vnd.microsoft.icon" />
<link rel="alternate" hreflang="en" href="https://cyber.fsi.stanford.edu/gdpi" />
<link rel="apple-touch-icon" href="/themes/custom/stanford_fsi/apple-touch-icon.png" sizes="180x180" />
<link rel="icon" href="/themes/custom/stanford_fsi/favicon-32x32.png" type="image/png" sizes="32x32" />
<link rel="icon" href="/themes/custom/stanford_fsi/favicon-16x16.png" type="image/png" sizes="16x16" />
<title>Global Digital Policy Incubator | FSI</title>
<link rel="stylesheet" media="all" href="/sites/default/files/css/css_Gf0mVs0qnWRrhIwiwhWIdlOL8OufUdxQpCOMjeGQqAw.css?delta=0&language=en&theme=stanford_fsi&include=eJxVjkEOwyAMBD-E8HN6jAw4hAYwsqFpf1-Uqkp7WY3nsGu_U0idZUk1UO0us9_hh42-tFMBh0pGO9aVJSzzSh7OvOSqCWJmh9l4FoIgo2G2eMenaSgYBdumX30ZO2obLifdKJgy30FgKo6CnbUFeyf5H9EjtekeiQ6FM23hMDKZyBwzLV4JPjjphrOgoOxvcqdcGw" />
<link rel="stylesheet" media="all" href="//use.fontawesome.com/releases/v5.15.4/css/all.css" />
<link rel="stylesheet" media="all" href="/sites/default/files/css/css_t4NLaHgNMYjDpnVUx0TC0ND4Ps914U85VZWqdnKZYGM.css?delta=2&language=en&theme=stanford_fsi&include=eJxVjkEOwyAMBD-E8HN6jAw4hAYwsqFpf1-Uqkp7WY3nsGu_U0idZUk1UO0us9_hh42-tFMBh0pGO9aVJSzzSh7OvOSqCWJmh9l4FoIgo2G2eMenaSgYBdumX30ZO2obLifdKJgy30FgKo6CnbUFeyf5H9EjtekeiQ6FM23hMDKZyBwzLV4JPjjphrOgoOxvcqdcGw" />
<link rel="stylesheet" media="print" href="/sites/default/files/css/css_ipHMTqOd8MXWqrdkR7q2zw0hNkDpwEl3Km7uwx8BlwY.css?delta=3&language=en&theme=stanford_fsi&include=eJxVjkEOwyAMBD-E8HN6jAw4hAYwsqFpf1-Uqkp7WY3nsGu_U0idZUk1UO0us9_hh42-tFMBh0pGO9aVJSzzSh7OvOSqCWJmh9l4FoIgo2G2eMenaSgYBdumX30ZO2obLifdKJgy30FgKo6CnbUFeyf5H9EjtekeiQ6FM23hMDKZyBwzLV4JPjjphrOgoOxvcqdcGw" />
<link rel="stylesheet" media="all" href="/themes/custom/stanford_fsi/fonts/fonts-drupal.css?sqgpes" />
<link rel="stylesheet" media="all" href="/sites/default/files/css/css_bcFdiuS3gduCe2D3ssVjb8Y-swJeW0X65YmoDTOZuq0.css?delta=5&language=en&theme=stanford_fsi&include=eJxVjkEOwyAMBD-E8HN6jAw4hAYwsqFpf1-Uqkp7WY3nsGu_U0idZUk1UO0us9_hh42-tFMBh0pGO9aVJSzzSh7OvOSqCWJmh9l4FoIgo2G2eMenaSgYBdumX30ZO2obLifdKJgy30FgKo6CnbUFeyf5H9EjtekeiQ6FM23hMDKZyBwzLV4JPjjphrOgoOxvcqdcGw" />
<link rel="stylesheet" media="all" href="/themes/custom/stanford_fsi/no-aggregation/no-aggregation.css?sqgpes" />
<link rel="stylesheet" media="all" href="/sites/default/files/css/css_TvXtusBSIsqtBQfNxrzhw-fAB-sSmaMCI5R0MrLSW-c.css?delta=7&language=en&theme=stanford_fsi&include=eJxVjkEOwyAMBD-E8HN6jAw4hAYwsqFpf1-Uqkp7WY3nsGu_U0idZUk1UO0us9_hh42-tFMBh0pGO9aVJSzzSh7OvOSqCWJmh9l4FoIgo2G2eMenaSgYBdumX30ZO2obLifdKJgy30FgKo6CnbUFeyf5H9EjtekeiQ6FM23hMDKZyBwzLV4JPjjphrOgoOxvcqdcGw" />
<script type="application/json" data-drupal-selector="drupal-settings-json">{"path":{"baseUrl":"\/","pathPrefix":"gdpi\/","currentPath":"node\/29212","currentPathIsAdmin":false,"isFront":true,"currentLanguage":"en"},"pluralDelimiter":"\u0003","suppressDeprecationErrors":true,"gtm":{"tagId":null,"settings":{"data_layer":"dataLayer","include_classes":false,"allowlist_classes":"","blocklist_classes":"","include_environment":false,"environment_id":"","environment_token":""},"tagIds":["GTM-5PWBZTH"]},"gtag":{"tagId":"G-S82RDPFHSE","consentMode":false,"otherIds":["G-XNZW311XMN",""],"events":[],"additionalConfigInfo":[]},"ajaxPageState":{"libraries":"eJxdj11uAyEMhC_Ez3H6uDLYYekCRhg26e1LEykp-zIavpFtxh-EsXPbYkEq3SX2h_3nVWAOiTYvZF92ui_o1DK0d9oh2DDl-jbwDY8VZpXnRbBM2RGaG89Ffa5TFRqEBnUXi21USOZDzCh1uBRlJ1TSocwx3BxI9PapH3iTaD00FP36_zXgIZS0g1LmzSUMiR2kle0ESE13DrPBGmUqQ2eIZcVyxFrgvMDaYr_MnxGJ9bujkh_plP_qkDoj3cU-1WTGkegXZKGlfA","theme":"stanford_fsi","theme_token":null},"ajaxTrustedUrl":{"\/gdpi\/search\/google":true},"stanford_basic":{"nav_dropdown_enabled":false},"googlePSE":{"language":"en","displayWatermark":false},"user":{"uid":0,"permissionsHash":"16f9c77489b88ad14c88c5ea4772986419600c068c4f05b78d0914545a48cc0e"}}</script>
<script src="/core/assets/vendor/modernizr/modernizr.min.js?v=3.11.7"></script>
<script src="/sites/default/files/js/js_gHKIUnKFJH5AVa-Frjm64i7Y6OXPfu4rEdEqpw0ByzE.js?scope=header&delta=1&language=en&theme=stanford_fsi&include=eJxljs0OgzAMg1-Iro-zI3LbEDr6p6SgPf7QJg5ll8j2JznWjrJUCbODRm-_d9IrXDRaTtUhTVwrJ5o72HLPowXf_QMvvMeeIwaqpkHAgraO0EPqrpSMQykkfzCocan6bQTaJHYas5UQSEyvfO4ZUaaym4xYrrVeyf7kqZ7oJBly_7HFVnB8AKeUc1A"></script>
<script src="/modules/contrib/google_tag/js/gtm.js?sqgpes"></script>
<script src="/modules/contrib/google_tag/js/gtag.js?sqgpes"></script>
<script src="/sites/default/files/js/js_uVtraW--ht-FY2xwXMRi2vx8JhZAfbd34kzTZ8lamq8.js?scope=header&delta=4&language=en&theme=stanford_fsi&include=eJxljs0OgzAMg1-Iro-zI3LbEDr6p6SgPf7QJg5ll8j2JznWjrJUCbODRm-_d9IrXDRaTtUhTVwrJ5o72HLPowXf_QMvvMeeIwaqpkHAgraO0EPqrpSMQykkfzCocan6bQTaJHYas5UQSEyvfO4ZUaaym4xYrrVeyf7kqZ7oJBly_7HFVnB8AKeUc1A"></script>
</head>
<body class="path-frontpage page-node-type-landing-page subdomain domain--cyber page-body">
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5PWBZTH"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<nav id="skipnav" class="skipnav">
<div class="container">
<ul>
<li><a href="#main-content" class="visually-hidden focusable skip-link">Skip to main content</a></li>
<li><a href="#main-nav" class="visually-hidden focusable skip-link">Skip to main navigation</a></li>
</ul>
</div>
</nav>
<div class="dialog-off-canvas-main-canvas" data-off-canvas-main-canvas>
<div class="layout-container">
<header class="header">
<div class="header-top header-top--cyber region region-top-header-left bg-red z-[10]">
<div class="container">
<div id="block-header-top" class="block block-content ced1bdcf-a613-4da6-ae1e-cd14a7af31d2">
<div class="block-content basic body text-with-summary label-hidden text-long"><p><span><a href="http://www.stanford.edu/">Stanford University</a></span></p></div>
</div>
</div>
</div>
<div class="header-main header-main--cyber region region-header relative z-[11] bg-white">
<div class="container relative flex z-1">
<div class="
flex flex-col w-full
1024:flex-row 1024:items-center
">
<div id="block-fsi-domain-logo" class="block fsi-domain-logo">
<div class="subdomain-logo__left py-5">
<a href="/gdpi" title="Home" rel="home" class="hidden 1024:block">
<img src="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/2022-09/gdpi-logo-v3_-_tara_c_wright_2_0.png" alt="GDPI Logo"/>
</a>
<a href="/gdpi" title="Home" rel="home" class="1024:hidden">
<img src="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/2022-09/gdpi-logo-v3_-_tara_c_wright_2_0.png" alt="GDPI Logo"/>
</a>
</div>
</div>
<div id="block-fsi-subdomain-logo" class="block fsi-subdomain-logo">
<div class="subdomain-logo__right">
<p>A program of the <a href="https://cyber.fsi.stanford.edu/">Cyber Policy Center</a>, a joint initiative of the <a href="http://fsi.stanford.edu/">Freeman Spogli Institute for International Studies</a> and <a href="https://law.stanford.edu/">Stanford Law School</a>.</p>
</div>
</div>
</div>
</div>
</div>
<button class="toggle-expand" arial-live="polite">
<span class="toggle-expand__open">
<svg class="toggle-expand__icon"
>
<use xlink:href="/themes/custom/stanford_fsi/dist/icons.svg#menu"></use>
</svg>
<span
class="toggle-expand__text"
aria-label="Open menu"
>Menu</span>
</span>
<span class="toggle-expand__close">
<span
class="toggle-expand__text"
aria-label="Close menu"
>Close</span>
</span>
</button>
<div class="header-navigation region region-navigation bg-red nav-collapsible">
<div class="container relative">
<div class="search-block-form google-cse search-form-block block block-search container-inline" data-drupal-selector="search-block-form" id="block-stanford-fsi-search-header" role="search">
<span class="visually-hidden">Search</span>
<form action="/gdpi/search/google" method="get" id="search-block-form" accept-charset="UTF-8">
<div class="js-form-item form-item form-item-edit-keys">
<input title="Enter the terms you wish to search for." placeholder="Search Global Digital Policy Incubator" data-drupal-selector="edit-keys" type="search" id="edit-keys" name="keys" value="" size="40" maxlength="128" class="form-search form-item__textfield" />
</div>
<div id="edit-actions-search-block-form" data-drupal-selector="edit-actions" class="form-actions js-form-wrapper form-wrapper"><input data-drupal-selector="edit-submit" type="submit" id="edit-submit" value="Search" class="button js-form-submit form-submit form-item__textfield" />
</div>
</form>
</div>
<div id="block-fsi-main-menu" class="block fsi-main-menu main-menu-3579911">
<nav id="main-nav" class="main-nav bg-red">
<ul class="main-menu hidden">
<li class="main-menu__item">
<a href="/gdpi" aria-current="true" class="main-menu__link">Home</a>
</li>
<li class="main-menu__item">
<a href="/gdpi/global-digital-policy-incubator-mission" class="main-menu__link" data-drupal-link-system-path="node/29296">About</a>
</li>
<li class="main-menu__item">
<a href="/gdpi/gdpi-people" class="main-menu__link" data-drupal-link-system-path="node/30236">People</a>
</li>
<li class="main-menu__item">
<a href="/gdpi/gdpi-whats-new" class="main-menu__link" data-drupal-link-system-path="node/30239">What's New?</a>
</li>
<li class="main-menu__item">
<a href="/gdpi/publications" class="main-menu__link" data-drupal-link-system-path="node/29774">Publications</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
<div id="block-views-block-alert-block-alert" class="block views-element-container views-block alert-block-alert">
<div><div class="view alert block-alert js-view-dom-id-3e474b274ea310000cef15bf351cca99e30dc68b505731439c6633d6294fa111">
</div>
</div>
</div>
</header>
<div class="main">
<a id="main-content" tabindex="-1"></a>
<main role="main" class="main-content">
<div class="region region--content grid-full layout--pass--content-medium ie11-autorow" id="content">
<div data-drupal-messages-fallback class="hidden"></div>
<div id="block-stanford-fsi-content" class="block system-main-block">
<article about="/gdpi/front-global-digital-policy-incubator" class="node">
<h1
class="h visually-hidden h1"
><div class="node landing-page title string label-hidden">Global Digital Policy Incubator </div>
</h1>
<div>
<div class="node landing-page field-paragraphs entity-reference-revisions label-hidden">
<div class="page-title">
<div
class="page-title page-title--has-image mb-7.5 768:mb-[82px]"
id="subnav-92900"
>
<div class="page-title__image relative overflow-hidden"">
<picture
loading="eager" class="image"
>
<!--[if IE 9]><video style="display: none;"><![endif]-->
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/1439x455/public/gdpiplain_7.jpg?h=f241cfd9&itok=2vfFBEjN 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/1439x455_x2/public/gdpiplain_7.jpg?h=f241cfd9&itok=O4FskJoc 2x" media="all and (min-width: 1300px)" type="image/jpeg" width="1439" height="455"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/1299x455/public/gdpiplain_7.jpg?h=f241cfd9&itok=5vwtwlKl 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/1299x455_x2/public/gdpiplain_7.jpg?h=f241cfd9&itok=zIEHqwcB 2x" media="all and (min-width: 1024px)" type="image/jpeg" width="1299" height="455"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/1023x324/public/gdpiplain_7.jpg?h=f241cfd9&itok=yvg7bHlM 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/1023x324_x2/public/gdpiplain_7.jpg?h=f241cfd9&itok=nhZogvgq 2x" media="all and (min-width: 768px)" type="image/jpeg" width="1023" height="324"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431/public/gdpiplain_7.jpg?h=f241cfd9&itok=U-b45Rj7 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431_x2/public/gdpiplain_7.jpg?h=f241cfd9&itok=J7qZV3FS 2x" media="all and (max-width: 767px)" type="image/jpeg" width="767" height="431"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/gdpiplain_7.jpg?h=f241cfd9&itok=d2oJXz60 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270_x2/public/gdpiplain_7.jpg?h=f241cfd9&itok=NaoVipHw 2x" media="all and (max-width: 480px)" type="image/jpeg" width="480" height="270"/>
<!--[if IE 9]></video><![endif]-->
<img
class="image"
src="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/gdpiplain_7.jpg?h=f241cfd9&itok=d2oJXz60"
alt="GDPi Globe Image"
/>
</picture>
</div>
<div class="container">
<div class="relative">
<div class="page-title__content bg-[#8c1515] py-4 px-5 1024:p-7.5 border-b-3 border-solid border-b-red shadow-3xl flex flex-col">
<h2
class="h h--big-title h2"
>
Global Digital Policy Incubator
</h2>
<div class="page-title__description">
<div class="paragraph page-title field-text string-long label-hidden">Enhancing Freedom, Security & Trust in the Global Digital Ecosystem</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="dynamic-teaser bg-[#f2f1eb] relative"
id=subnav-145813
>
<div class="dynamic-teaser__image 768:absolute 768:top-0 768:h-full 768:w-1/2 768:overflow-hidden 768:right-0">
<picture
loading="eager" class="image"
>
<!--[if IE 9]><video style="display: none;"><![endif]-->
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/960x550/public/2024-10/screenshot_2024-10-18_at_11.03.34_pm.png?h=f0348e5f&itok=n-NqSM2c 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/960x550_x2/public/2024-10/screenshot_2024-10-18_at_11.03.34_pm.png?h=f0348e5f&itok=u8B65JjM 2x" media="all and (min-width: 1440px)" type="image/png" width="960" height="550"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/720x420_x2/public/2024-10/screenshot_2024-10-18_at_11.03.34_pm.png?h=f0348e5f&itok=2vWmmoog 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/720x420_x2/public/2024-10/screenshot_2024-10-18_at_11.03.34_pm.png?h=f0348e5f&itok=2vWmmoog 2x" media="all and (min-width: 1300px)" type="image/png" width="1440" height="840"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/650x420/public/2024-10/screenshot_2024-10-18_at_11.03.34_pm.png?h=f0348e5f&itok=IL8XToe6 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/650x420_x2/public/2024-10/screenshot_2024-10-18_at_11.03.34_pm.png?h=f0348e5f&itok=kczrC8KH 2x" media="all and (min-width: 1024px)" type="image/png" width="650" height="420"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x450/public/2024-10/screenshot_2024-10-18_at_11.03.34_pm.png?h=f0348e5f&itok=wohPEtjD 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x450_x2/public/2024-10/screenshot_2024-10-18_at_11.03.34_pm.png?h=f0348e5f&itok=dYNtcEuB 2x" media="all and (min-width: 768px)" type="image/png" width="511" height="450"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431/public/2024-10/screenshot_2024-10-18_at_11.03.34_pm.png?h=f0348e5f&itok=W6pecXkO 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431_x2/public/2024-10/screenshot_2024-10-18_at_11.03.34_pm.png?h=f0348e5f&itok=TM6SM9Wp 2x" media="all and (max-width: 767px)" type="image/png" width="767" height="431"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/2024-10/screenshot_2024-10-18_at_11.03.34_pm.png?h=f0348e5f&itok=5QIe6euv 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270_x2/public/2024-10/screenshot_2024-10-18_at_11.03.34_pm.png?h=f0348e5f&itok=gxlzuNIk 2x" media="all and (max-width: 480px)" type="image/png" width="480" height="270"/>
<!--[if IE 9]></video><![endif]-->
<img
class="image"
src="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/2024-10/screenshot_2024-10-18_at_11.03.34_pm.png?h=f0348e5f&itok=5QIe6euv"
alt="Graphic for Special Issue of "Digital Governance in Taiwan""
/>
</picture>
</div>
<div class="container">
<div class="dynamic-teaser__content-wrapper py-4 768:flex 768:items-center 768:w-1/2 768:py-7.5 768:h-[28.125rem] 1024:py-10 1024:h-[26.25rem] 1440:h-[28.571vw] 768:pr-10 768:float-left 1024:pr-[100px]"
>
<div>
<h2
class="h h--big-title h2"
>
Digital Governance in Taiwan
</h2>
<div class="mb-4">
GDPi and the Taiwan Research Hub at the University of Nottingham present a special issue of essays on digital governance.
</div>
<a
class="link uppercase font-ss_semibold text-15"
href="https://taiwaninsight.org/past-special-issues/september-2024/digital-governance-in-taiwan/"
>
</a>
</div>
</div>
</div>
</div>
<div class="block-cta bg-[#ffffff] pt-10 pb-7.5" >
<div class="container pt-10 pb-7.5">
<div class="text-center">
<h3
class="h h--gleam text-center h3"
>Strengthening Taiwan's Critical Digital Lifeline</h3>
<p>A new paper from Charles Mok of GDPi and co-author Kenny Huang, examines the current landscape of Taiwan’s Internet Infrastructure</p>
<ul class="block-cta__list flex flex-wrap justify-center">
<li class="mb-2.5">
<a
class="link link--btn mr-1"
href="https://cyber.fsi.stanford.edu/news/strengthening-taiwans-critical-digital-lifeline"
>
READ TAIWAN'S DIGITAL LIFELINE
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="dynamic-teaser bg-[#f2f1eb] relative"
id=subnav-137385
>
<div class="dynamic-teaser__image 768:absolute 768:top-0 768:h-full 768:w-1/2 768:overflow-hidden 768:left-0">
<picture
loading="eager" class="image"
>
<!--[if IE 9]><video style="display: none;"><![endif]-->
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/960x550/public/2024-02/february14-eventv4.png?h=8abcec71&itok=tSBwhy8v 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/960x550_x2/public/2024-02/february14-eventv4.png?h=8abcec71&itok=o7LxKnEp 2x" media="all and (min-width: 1440px)" type="image/png" width="960" height="550"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/720x420_x2/public/2024-02/february14-eventv4.png?h=8abcec71&itok=bdUdphDx 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/720x420_x2/public/2024-02/february14-eventv4.png?h=8abcec71&itok=bdUdphDx 2x" media="all and (min-width: 1300px)" type="image/png" width="1440" height="840"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/650x420/public/2024-02/february14-eventv4.png?h=8abcec71&itok=tVwTIB3Q 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/650x420_x2/public/2024-02/february14-eventv4.png?h=8abcec71&itok=DORdmYTL 2x" media="all and (min-width: 1024px)" type="image/png" width="650" height="420"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x450/public/2024-02/february14-eventv4.png?h=8abcec71&itok=NmXjX2mc 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x450_x2/public/2024-02/february14-eventv4.png?h=8abcec71&itok=r2utj7-R 2x" media="all and (min-width: 768px)" type="image/png" width="511" height="450"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431/public/2024-02/february14-eventv4.png?h=8abcec71&itok=T3n6x740 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431_x2/public/2024-02/february14-eventv4.png?h=8abcec71&itok=Hxsgmfa4 2x" media="all and (max-width: 767px)" type="image/png" width="767" height="431"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/2024-02/february14-eventv4.png?h=8abcec71&itok=Yw7MMtRh 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270_x2/public/2024-02/february14-eventv4.png?h=8abcec71&itok=AcAnUHJ7 2x" media="all and (max-width: 480px)" type="image/png" width="480" height="270"/>
<!--[if IE 9]></video><![endif]-->
<img
class="image"
src="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/2024-02/february14-eventv4.png?h=8abcec71&itok=Yw7MMtRh"
alt="The Human Rights Dimensions of Generative AI: Guiding the Way Forward"
/>
</picture>
</div>
<div class="container">
<div class="dynamic-teaser__content-wrapper py-4 768:flex 768:items-center 768:w-1/2 768:py-7.5 768:h-[28.125rem] 1024:py-10 1024:h-[26.25rem] 1440:h-[28.571vw] 768:pl-10 768:float-right 1024:pl-[100px]"
>
<div>
<h2
class="h h--big-title h2"
>
The Human Rights Dimensions of Generative AI: Guiding the Way Forward
</h2>
<div class="mb-4">
The significant deployment of Generative AI over the last year underscores the need to examine the human rights dimensions of artificial intelligence. Watch the panel discussion and hear keynote remarks from the UN High Commissioner for Human Rights.
</div>
<a
class="link uppercase font-ss_semibold text-15"
href="https://youtube.com/live/59lkoi4FX9s?feature=share"
>
WATCH THE RECORDING
</a>
</div>
</div>
</div>
</div>
<div class="dynamic-teaser bg-[#8c1515] relative"
id=subnav-133495
>
<div class="dynamic-teaser__image 768:absolute 768:top-0 768:h-full 768:w-1/2 768:overflow-hidden 768:left-0">
<picture
loading="eager" class="image"
>
<!--[if IE 9]><video style="display: none;"><![endif]-->
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/960x550/public/2023-09/person_graphic_eileen_donahoe_hero.png?h=c4d9845d&itok=lya-W895 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/960x550_x2/public/2023-09/person_graphic_eileen_donahoe_hero.png?h=c4d9845d&itok=XHXc3rOP 2x" media="all and (min-width: 1440px)" type="image/png" width="960" height="550"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/720x420_x2/public/2023-09/person_graphic_eileen_donahoe_hero.png?h=c4d9845d&itok=KqXwqbIF 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/720x420_x2/public/2023-09/person_graphic_eileen_donahoe_hero.png?h=c4d9845d&itok=KqXwqbIF 2x" media="all and (min-width: 1300px)" type="image/png" width="1440" height="840"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/650x420/public/2023-09/person_graphic_eileen_donahoe_hero.png?h=c4d9845d&itok=51_K1da1 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/650x420_x2/public/2023-09/person_graphic_eileen_donahoe_hero.png?h=c4d9845d&itok=St8o-Oau 2x" media="all and (min-width: 1024px)" type="image/png" width="650" height="420"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x450/public/2023-09/person_graphic_eileen_donahoe_hero.png?h=c4d9845d&itok=9ohk9_Kf 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x450_x2/public/2023-09/person_graphic_eileen_donahoe_hero.png?h=c4d9845d&itok=LR2c_iwa 2x" media="all and (min-width: 768px)" type="image/png" width="511" height="450"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431/public/2023-09/person_graphic_eileen_donahoe_hero.png?h=c4d9845d&itok=jxGtP9C0 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431_x2/public/2023-09/person_graphic_eileen_donahoe_hero.png?h=c4d9845d&itok=BUiH4nR1 2x" media="all and (max-width: 767px)" type="image/png" width="767" height="431"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/2023-09/person_graphic_eileen_donahoe_hero.png?h=c4d9845d&itok=QNENBMDL 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270_x2/public/2023-09/person_graphic_eileen_donahoe_hero.png?h=c4d9845d&itok=k7q4fcwJ 2x" media="all and (max-width: 480px)" type="image/png" width="480" height="270"/>
<!--[if IE 9]></video><![endif]-->
<img
class="image"
src="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/2023-09/person_graphic_eileen_donahoe_hero.png?h=c4d9845d&itok=QNENBMDL"
alt="Eileen Donahoe has been appointed by the White House as the Special Envoy and Coordinator for Digital Freedom"
/>
</picture>
</div>
<div class="container">
<div class="dynamic-teaser__content-wrapper py-4 768:flex 768:items-center 768:w-1/2 768:py-7.5 768:h-[28.125rem] 1024:py-10 1024:h-[26.25rem] 1440:h-[28.571vw] 768:pl-10 768:float-right 1024:pl-[100px]"
>
<div>
<h2
class="h h--big-title h2"
>
Eileen Donahoe Appointed by White House as Inaugural Special Envoy and Coordinator for Digital Freedom
</h2>
<div class="mb-4">
As Special Envoy and Coordinator for Digital Freedom, Eileen Donahoe will oversee U.S. efforts to ensure global digital freedom across party lines and geopolitical boundaries, as part of the U.S. Bureau of Cyberspace and Digital Policy.
</div>
<a
class="link uppercase font-ss_semibold text-15"
href="https://fsi.stanford.edu/news/eileen-donahoe-appointed-white-house-inaugural-special-envoy-and-coordinator-digital-freedom"
>
Read More
</a>
</div>
</div>
</div>
</div>
<div class="dynamic-teaser bg-[#4d4f53] relative"
id=subnav-131438
>
<div class="dynamic-teaser__image 768:absolute 768:top-0 768:h-full 768:w-1/2 768:overflow-hidden 768:right-0">
<picture
loading="eager" class="image"
>
<!--[if IE 9]><video style="display: none;"><![endif]-->
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/960x550/public/2023-06/screenshot_2023-06-13_at_4.14.40_pm.png?h=54ecdf30&itok=vffrhYYP 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/960x550_x2/public/2023-06/screenshot_2023-06-13_at_4.14.40_pm.png?h=54ecdf30&itok=Z_x1uS4W 2x" media="all and (min-width: 1440px)" type="image/png" width="960" height="550"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/720x420_x2/public/2023-06/screenshot_2023-06-13_at_4.14.40_pm.png?h=54ecdf30&itok=PL0D8LK3 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/720x420_x2/public/2023-06/screenshot_2023-06-13_at_4.14.40_pm.png?h=54ecdf30&itok=PL0D8LK3 2x" media="all and (min-width: 1300px)" type="image/png" width="1440" height="840"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/650x420/public/2023-06/screenshot_2023-06-13_at_4.14.40_pm.png?h=54ecdf30&itok=y3yuVgVk 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/650x420_x2/public/2023-06/screenshot_2023-06-13_at_4.14.40_pm.png?h=54ecdf30&itok=q0WZWlHj 2x" media="all and (min-width: 1024px)" type="image/png" width="650" height="420"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x450/public/2023-06/screenshot_2023-06-13_at_4.14.40_pm.png?h=54ecdf30&itok=DX1HSxhH 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x450_x2/public/2023-06/screenshot_2023-06-13_at_4.14.40_pm.png?h=54ecdf30&itok=u8L_2pEz 2x" media="all and (min-width: 768px)" type="image/png" width="511" height="450"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431/public/2023-06/screenshot_2023-06-13_at_4.14.40_pm.png?h=54ecdf30&itok=xIh_YRmi 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431_x2/public/2023-06/screenshot_2023-06-13_at_4.14.40_pm.png?h=54ecdf30&itok=vjcGpjtX 2x" media="all and (max-width: 767px)" type="image/png" width="767" height="431"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/2023-06/screenshot_2023-06-13_at_4.14.40_pm.png?h=54ecdf30&itok=lOs_2IRM 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270_x2/public/2023-06/screenshot_2023-06-13_at_4.14.40_pm.png?h=54ecdf30&itok=ZFWwcDaf 2x" media="all and (max-width: 480px)" type="image/png" width="480" height="270"/>
<!--[if IE 9]></video><![endif]-->
<img
class="image"
src="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/2023-06/screenshot_2023-06-13_at_4.14.40_pm.png?h=54ecdf30&itok=lOs_2IRM"
alt="The Everything Everywhere Censorship of China Cover Page"
/>
</picture>
</div>
<div class="container">
<div class="dynamic-teaser__content-wrapper py-4 768:flex 768:items-center 768:w-1/2 768:py-7.5 768:h-[28.125rem] 1024:py-10 1024:h-[26.25rem] 1440:h-[28.571vw] 768:pr-10 768:float-left 1024:pr-[100px]"
>
<div>
<h2
class="h h--big-title h2"
>
Visiting Scholar Charles Mok Publishes "The Everything Everywhere Censorship of China"
</h2>
<div class="mb-4">
China is exporting its model of Internet governance based on digital repression. The free world must protect its values reclaim an open Internet.
</div>
<a
class="link uppercase font-ss_semibold text-15"
href="https://www.freiheit.org/publikation/everything-everywhere-censorship-china"
>
Read the Report
</a>
</div>
</div>
</div>
</div>
<div class="dynamic-teaser bg-[#f2f1eb] relative"
id=subnav-126963
>
<div class="dynamic-teaser__image 768:absolute 768:top-0 768:h-full 768:w-1/2 768:overflow-hidden 768:left-0">
<picture
loading="eager" class="image"
>
<!--[if IE 9]><video style="display: none;"><![endif]-->
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/960x550/public/2023-01/screen_shot_2023-01-23_at_1.05.23_pm.png?h=142d0c0a&itok=suEpmOVF 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/960x550_x2/public/2023-01/screen_shot_2023-01-23_at_1.05.23_pm.png?h=142d0c0a&itok=sHTX4vfc 2x" media="all and (min-width: 1440px)" type="image/png" width="960" height="550"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/720x420_x2/public/2023-01/screen_shot_2023-01-23_at_1.05.23_pm.png?h=142d0c0a&itok=qVbVqDMM 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/720x420_x2/public/2023-01/screen_shot_2023-01-23_at_1.05.23_pm.png?h=142d0c0a&itok=qVbVqDMM 2x" media="all and (min-width: 1300px)" type="image/png" width="1440" height="840"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/650x420/public/2023-01/screen_shot_2023-01-23_at_1.05.23_pm.png?h=142d0c0a&itok=c-leBTzw 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/650x420_x2/public/2023-01/screen_shot_2023-01-23_at_1.05.23_pm.png?h=142d0c0a&itok=F9VVNsrs 2x" media="all and (min-width: 1024px)" type="image/png" width="650" height="420"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x450/public/2023-01/screen_shot_2023-01-23_at_1.05.23_pm.png?h=142d0c0a&itok=3scOLUzi 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x450_x2/public/2023-01/screen_shot_2023-01-23_at_1.05.23_pm.png?h=142d0c0a&itok=Y5QD_NV2 2x" media="all and (min-width: 768px)" type="image/png" width="511" height="450"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431/public/2023-01/screen_shot_2023-01-23_at_1.05.23_pm.png?h=142d0c0a&itok=ttbPKwnl 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431_x2/public/2023-01/screen_shot_2023-01-23_at_1.05.23_pm.png?h=142d0c0a&itok=K8of2PRm 2x" media="all and (max-width: 767px)" type="image/png" width="767" height="431"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/2023-01/screen_shot_2023-01-23_at_1.05.23_pm.png?h=142d0c0a&itok=ScrPCoX9 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270_x2/public/2023-01/screen_shot_2023-01-23_at_1.05.23_pm.png?h=142d0c0a&itok=zvlxSwKl 2x" media="all and (max-width: 480px)" type="image/png" width="480" height="270"/>
<!--[if IE 9]></video><![endif]-->
<img
class="image"
src="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/2023-01/screen_shot_2023-01-23_at_1.05.23_pm.png?h=142d0c0a&itok=ScrPCoX9"
alt="Eileen Donahoe, Brad Smith, Ian Bremmer, and Azeem Azhar discuss generative AI at Davos 2023."
/>
</picture>
</div>
<div class="container">
<div class="dynamic-teaser__content-wrapper py-4 768:flex 768:items-center 768:w-1/2 768:py-7.5 768:h-[28.125rem] 1024:py-10 1024:h-[26.25rem] 1440:h-[28.571vw] 768:pl-10 768:float-right 1024:pl-[100px]"
>
<div>
<h2
class="h h--big-title h2"
>
AI at the tipping point: danger to information, promise for creativity
</h2>
<div class="mb-4">
Eileen Donahoe, Brad Smith, Ian Bremmer, and Azeem Azhar discuss the "Risks and Rewards of AI," at the 2023 World Economic Forum meeting in Davos, Switzerland.
</div>
<a
class="link uppercase font-ss_semibold text-15"
href="https://www.gzeromedia.com/global-stage/virtual-events/ai-at-the-tipping-point-danger-to-information-promise-for-creativity"
>
Watch the Conversation
</a>
</div>
</div>
</div>
</div>
<div class="dynamic-teaser bg-[#4d4f53] relative"
id=subnav-122917
>
<div class="dynamic-teaser__image 768:absolute 768:top-0 768:h-full 768:w-1/2 768:overflow-hidden 768:right-0">
<picture
loading="eager" class="image"
>
<!--[if IE 9]><video style="display: none;"><![endif]-->
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/960x550/public/tech4demnov29_0.png?h=a6c55029&itok=bPO3HOC- 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/960x550_x2/public/tech4demnov29_0.png?h=a6c55029&itok=SRVIGRFF 2x" media="all and (min-width: 1440px)" type="image/png" width="960" height="550"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/720x420_x2/public/tech4demnov29_0.png?h=a6c55029&itok=7kj5Yh8n 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/720x420_x2/public/tech4demnov29_0.png?h=a6c55029&itok=7kj5Yh8n 2x" media="all and (min-width: 1300px)" type="image/png" width="1440" height="840"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/650x420/public/tech4demnov29_0.png?h=a6c55029&itok=Sh-YXveY 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/650x420_x2/public/tech4demnov29_0.png?h=a6c55029&itok=-fexWoHV 2x" media="all and (min-width: 1024px)" type="image/png" width="650" height="420"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x450/public/tech4demnov29_0.png?h=a6c55029&itok=-eUvNmhD 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x450_x2/public/tech4demnov29_0.png?h=a6c55029&itok=j97Oc9ff 2x" media="all and (min-width: 768px)" type="image/png" width="511" height="450"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431/public/tech4demnov29_0.png?h=a6c55029&itok=ra_KcFcc 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431_x2/public/tech4demnov29_0.png?h=a6c55029&itok=yaD6GKb2 2x" media="all and (max-width: 767px)" type="image/png" width="767" height="431"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/tech4demnov29_0.png?h=a6c55029&itok=iSWH7Sf4 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270_x2/public/tech4demnov29_0.png?h=a6c55029&itok=sAK6s4iH 2x" media="all and (max-width: 480px)" type="image/png" width="480" height="270"/>
<!--[if IE 9]></video><![endif]-->
<img
class="image"
src="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/tech4demnov29_0.png?h=a6c55029&itok=iSWH7Sf4"
alt="tech for democracy silicon valley venture day written on black background"
/>
</picture>
</div>
<div class="container">
<div class="dynamic-teaser__content-wrapper py-4 768:flex 768:items-center 768:w-1/2 768:py-7.5 768:h-[28.125rem] 1024:py-10 1024:h-[26.25rem] 1440:h-[28.571vw] 768:pr-10 768:float-left 1024:pr-[100px]"
>
<div>
<h2
class="h h--big-title h2"
>
NOVEMBER 29 | Tech4Democracy Silicon Valley Venture Day
</h2>
<div class="mb-4">
A competition for North American innovators working on democracy-affirming technologies, jointly hosted by Stanford’s Global Digital Policy Incubator, IE University, the U.S. State Department, and Microsoft.
</div>
<a
class="link uppercase font-ss_semibold text-15"
href="https://cyber.fsi.stanford.edu/gdpi/content/tech4democracy-global-entrepreneurship-challenge-silicon-valley-venture-day"
>
READ MORE
</a>
</div>
</div>
</div>
</div>
<div class="dynamic-teaser bg-[#f2f1eb] relative"
id=subnav-750
>
<div class="dynamic-teaser__image 768:absolute 768:top-0 768:h-full 768:w-1/2 768:overflow-hidden 768:left-0">
<picture
loading="eager" class="image"
>
<!--[if IE 9]><video style="display: none;"><![endif]-->
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/960x550/public/obama_stanford_-_andrew_brodhead.jpeg?h=56d0ca2e&itok=rhJR9g1f 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/960x550_x2/public/obama_stanford_-_andrew_brodhead.jpeg?h=56d0ca2e&itok=w9zt8ZTp 2x" media="all and (min-width: 1440px)" type="image/jpeg" width="960" height="550"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/720x420_x2/public/obama_stanford_-_andrew_brodhead.jpeg?h=56d0ca2e&itok=w5pbfNBE 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/720x420_x2/public/obama_stanford_-_andrew_brodhead.jpeg?h=56d0ca2e&itok=w5pbfNBE 2x" media="all and (min-width: 1300px)" type="image/jpeg" width="1440" height="840"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/650x420/public/obama_stanford_-_andrew_brodhead.jpeg?h=56d0ca2e&itok=ytyKuur7 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/650x420_x2/public/obama_stanford_-_andrew_brodhead.jpeg?h=56d0ca2e&itok=WvK9a1k5 2x" media="all and (min-width: 1024px)" type="image/jpeg" width="650" height="420"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x450/public/obama_stanford_-_andrew_brodhead.jpeg?h=56d0ca2e&itok=hl1KN6Hd 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x450_x2/public/obama_stanford_-_andrew_brodhead.jpeg?h=56d0ca2e&itok=hj4ij3dI 2x" media="all and (min-width: 768px)" type="image/jpeg" width="511" height="450"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431/public/obama_stanford_-_andrew_brodhead.jpeg?h=56d0ca2e&itok=fr5oeSpO 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431_x2/public/obama_stanford_-_andrew_brodhead.jpeg?h=56d0ca2e&itok=-oIqG8fV 2x" media="all and (max-width: 767px)" type="image/jpeg" width="767" height="431"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/obama_stanford_-_andrew_brodhead.jpeg?h=56d0ca2e&itok=jdWPvMcj 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270_x2/public/obama_stanford_-_andrew_brodhead.jpeg?h=56d0ca2e&itok=aHhkFMvl 2x" media="all and (max-width: 480px)" type="image/jpeg" width="480" height="270"/>
<!--[if IE 9]></video><![endif]-->
<img
class="image"
src="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/obama_stanford_-_andrew_brodhead.jpeg?h=56d0ca2e&itok=jdWPvMcj"
alt="President Barack Obama Delivers Keynote Address"
/>
</picture>
</div>
<div class="container">
<div class="dynamic-teaser__content-wrapper py-4 768:flex 768:items-center 768:w-1/2 768:py-7.5 768:h-[28.125rem] 1024:py-10 1024:h-[26.25rem] 1440:h-[28.571vw] 768:pl-10 768:float-right 1024:pl-[100px]"
>
<div>
<h2
class="h h--big-title h2"
>
Challenges to Democracy in the Digital Information Realm
</h2>
<div class="mb-4">
On Thursday, April 21, the Stanford Cyber Policy Center hosted panels on the role of government in establishing online trust, the relationship between democracy and tech companies, and the threat of digital authoritarians.
</div>
</div>
</div>
</div>
</div>
<div class="cards-block">
<div class="cards-block bg-[#c2cad3]"
id="subnav-123451">
<div class="container pt-10 pb-2.5 768:pt-12.5 768:pb-5">
<h3
class="h h--gleam text-center cards-block__title h3"
>
The 11th Global Assembly of The World Movement for Democracy
</h3>
<div class="cards-block__items cards-block__items--2-items 768:flex 768:justify-center 768:flex-wrap 768:-mx-2 1024:-mx-4">
<div class="cards-block-item mb-7.5 768:px-2 768:mb-4 768:w-1/2 1024:px-4 1024:mb-7.5">
<div class="clickable-card" data-href="https://youtu.be/_6oQp3DO85I"
data-target="_self">
<div class="news-teaser news-teaser--cards_block overflow-hidden 768:h-full px-7.5 pb-4.5 relative bg-white" >
<div class="news-teaser__img news-teaser__img--cards_block -mx-7.5 mb-5" >
<picture
loading="eager" class="image"
>
<!--[if IE 9]><video style="display: none;"><![endif]-->
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/630x355/public/screen_shot_2022-11-03_at_10.22.41_pm.png?h=0994dcab&itok=s0h9tMSL 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/630x355_x2/public/screen_shot_2022-11-03_at_10.22.41_pm.png?h=0994dcab&itok=0qNlChKE 2x" media="all and (min-width: 1024px)" type="image/png" width="630" height="355"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x287/public/screen_shot_2022-11-03_at_10.22.41_pm.png?h=0994dcab&itok=pzVbw46F 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x287_x2/public/screen_shot_2022-11-03_at_10.22.41_pm.png?h=0994dcab&itok=LAnKElrJ 2x" media="all and (min-width: 768px)" type="image/png" width="511" height="287"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431/public/screen_shot_2022-11-03_at_10.22.41_pm.png?h=0994dcab&itok=Snii4geW 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431_x2/public/screen_shot_2022-11-03_at_10.22.41_pm.png?h=0994dcab&itok=7AtZ7Y-A 2x" media="all and (max-width: 767px)" type="image/png" width="767" height="431"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/screen_shot_2022-11-03_at_10.22.41_pm.png?h=0994dcab&itok=JWsWKzLE 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270_x2/public/screen_shot_2022-11-03_at_10.22.41_pm.png?h=0994dcab&itok=bU5WR9UC 2x" media="all and (max-width: 480px)" type="image/png" width="480" height="270"/>
<!--[if IE 9]></video><![endif]-->
<img
class="image"
src="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/screen_shot_2022-11-03_at_10.22.41_pm.png?h=0994dcab&itok=JWsWKzLE"
alt="Larry Diamond Panel"
/>
</picture>
</div>
<div class="news-teaser__description mb-4 480m:text-16" >
Larry Diamond moderates a conversation with Glanis Changachirere (Institute for Young Women Development, Zimbabwe), Rosa Maria Paya (Cuba Decide, Cuba), Žygimantas Pavilionis (Member of Parliament, Lithuania), and Leopoldo Lopez (Venezuela).
</div>
<a
class="link text-15 uppercase font-ss_semibold relative z-1"
aria-label=""
href="https://youtu.be/_6oQp3DO85I"
>
Watch Panel
</a>
</div>
</div>
</div>
<div class="cards-block-item mb-7.5 768:px-2 768:mb-4 768:w-1/2 1024:px-4 1024:mb-7.5">
<div class="clickable-card" data-href="https://youtu.be/tWOaYdzyL2A"
data-target="_self">
<div class="news-teaser news-teaser--cards_block overflow-hidden 768:h-full px-7.5 pb-4.5 relative bg-white" >
<div class="news-teaser__img news-teaser__img--cards_block -mx-7.5 mb-5" >
<picture
loading="eager" class="image"
>
<!--[if IE 9]><video style="display: none;"><![endif]-->
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/630x355/public/screen_shot_2022-11-03_at_10.24.18_pm.png?h=b3d96d1a&itok=jVYky1DG 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/630x355_x2/public/screen_shot_2022-11-03_at_10.24.18_pm.png?h=b3d96d1a&itok=b7CD0W6I 2x" media="all and (min-width: 1024px)" type="image/png" width="630" height="355"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x287/public/screen_shot_2022-11-03_at_10.24.18_pm.png?h=b3d96d1a&itok=ajnJ-cWM 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x287_x2/public/screen_shot_2022-11-03_at_10.24.18_pm.png?h=b3d96d1a&itok=f91lSxPb 2x" media="all and (min-width: 768px)" type="image/png" width="511" height="287"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431/public/screen_shot_2022-11-03_at_10.24.18_pm.png?h=b3d96d1a&itok=vYepcqJm 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431_x2/public/screen_shot_2022-11-03_at_10.24.18_pm.png?h=b3d96d1a&itok=MPIzHmJM 2x" media="all and (max-width: 767px)" type="image/png" width="767" height="431"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/screen_shot_2022-11-03_at_10.24.18_pm.png?h=b3d96d1a&itok=3qtxwRB4 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270_x2/public/screen_shot_2022-11-03_at_10.24.18_pm.png?h=b3d96d1a&itok=_rgy9Sz6 2x" media="all and (max-width: 480px)" type="image/png" width="480" height="270"/>
<!--[if IE 9]></video><![endif]-->
<img
class="image"
src="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/screen_shot_2022-11-03_at_10.24.18_pm.png?h=b3d96d1a&itok=3qtxwRB4"
alt="Eileen Donahoe Panel"
/>
</picture>
</div>
<div class="news-teaser__description mb-4 480m:text-16" >
Claiming the Democratic Future | Securing Technology for Democracy
Panel moderated by Josh Rogin (The Washington Post, USA) with speakers Audrey Tang (Digital Minister, Taiwan), Eileen Donahoe (Stanford University, USA), and Mai El-Sadany (Tahrir Institute for Middle East Policy, USA).
</div>
<a
class="link text-15 uppercase font-ss_semibold relative z-1"
aria-label=""
href="https://youtu.be/tWOaYdzyL2A"
>
Watch Panel
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="cards-block">
<div class="cards-block bg-[#ffffff]"
id="subnav-6870">
<div class="container pt-10 pb-2.5 768:pt-12.5 768:pb-5">
<h3
class="h h--gleam text-center cards-block__title h3"
>
RightsCon 2022
</h3>
<div class="cards-block__items cards-block__items--2-items 768:flex 768:justify-center 768:flex-wrap 768:-mx-2 1024:-mx-4">
<div class="cards-block-item mb-7.5 768:px-2 768:mb-4 768:w-1/2 1024:px-4 1024:mb-7.5">
<div class="clickable-card" data-href="https://youtu.be/PhP_uOa0ww0"
data-target="_self">
<div class="news-teaser news-teaser--cards_block overflow-hidden 768:h-full px-7.5 pb-4.5 relative bg-white" >
<div class="news-teaser__img news-teaser__img--cards_block -mx-7.5 mb-5" >
<picture
loading="eager" class="image"
>
<!--[if IE 9]><video style="display: none;"><![endif]-->
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/630x355/public/rightscon-_in_conversation_0.png?h=82aa4812&itok=fGiOcPGa 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/630x355_x2/public/rightscon-_in_conversation_0.png?h=82aa4812&itok=HiqYeAf3 2x" media="all and (min-width: 1024px)" type="image/png" width="630" height="355"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x287/public/rightscon-_in_conversation_0.png?h=82aa4812&itok=m1x1DP1M 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x287_x2/public/rightscon-_in_conversation_0.png?h=82aa4812&itok=elmVfF6X 2x" media="all and (min-width: 768px)" type="image/png" width="511" height="287"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431/public/rightscon-_in_conversation_0.png?h=82aa4812&itok=Z8ARE-yU 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431_x2/public/rightscon-_in_conversation_0.png?h=82aa4812&itok=FP03smBv 2x" media="all and (max-width: 767px)" type="image/png" width="767" height="431"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/rightscon-_in_conversation_0.png?h=82aa4812&itok=7c8Z8_Ly 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270_x2/public/rightscon-_in_conversation_0.png?h=82aa4812&itok=2u6k6Hp9 2x" media="all and (max-width: 480px)" type="image/png" width="480" height="270"/>
<!--[if IE 9]></video><![endif]-->
<img
class="image"
src="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/rightscon-_in_conversation_0.png?h=82aa4812&itok=7c8Z8_Ly"
alt="RightsCon Panel "
/>
</picture>
</div>
<h2
class="h h--small h2"
>In Conversation: defending digital democracy and a rights-based future</h2>
<div class="news-teaser__description mb-4 480m:text-16" >
While governments, multilateral institutions, civil society and the private sector continue to work for a more democratic governance of technology, digital authoritarianism is rapidly on the rise offering competing models of governance. Together, Anne Marie Engtoft Larsen, Tech Ambassador of Denmark, and Eileen Donahoe, Executive Director of the Global Digital Policy Incubator at Stanford University, spoke to the power of defending digital democracy amidst rising geopolitical tensions and discuss ways in which to charge a democratic and rights-based future.
</div>
<a
class="link text-15 uppercase font-ss_semibold relative z-1"
aria-label=""
href="https://youtu.be/PhP_uOa0ww0"
>
Watch Conversation
</a>
</div>
</div>
</div>
<div class="cards-block-item mb-7.5 768:px-2 768:mb-4 768:w-1/2 1024:px-4 1024:mb-7.5">
<div class="clickable-card" data-href="https://rightscon.summit.tc/t/2022/events/developing-a-democratic-vision-of-digital-society-to-combat-the-rise-of-digital-authoritarianism-7DAJUWko9x2jVvvh4RwgrD"
data-target="_self">
<div class="news-teaser news-teaser--cards_block overflow-hidden 768:h-full px-7.5 pb-4.5 relative bg-white" >
<div class="news-teaser__img news-teaser__img--cards_block -mx-7.5 mb-5" >
<picture
loading="eager" class="image"
>
<!--[if IE 9]><video style="display: none;"><![endif]-->
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/630x355/public/rightscon-_digital_solutions_panel__0.png?h=6be7584a&itok=3lsS93dD 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/630x355_x2/public/rightscon-_digital_solutions_panel__0.png?h=6be7584a&itok=MMlJnN6W 2x" media="all and (min-width: 1024px)" type="image/png" width="630" height="355"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x287/public/rightscon-_digital_solutions_panel__0.png?h=6be7584a&itok=wdOIokQt 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x287_x2/public/rightscon-_digital_solutions_panel__0.png?h=6be7584a&itok=fJiLnT13 2x" media="all and (min-width: 768px)" type="image/png" width="511" height="287"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431/public/rightscon-_digital_solutions_panel__0.png?h=6be7584a&itok=hyqZ89JU 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431_x2/public/rightscon-_digital_solutions_panel__0.png?h=6be7584a&itok=wcpLDLVo 2x" media="all and (max-width: 767px)" type="image/png" width="767" height="431"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/rightscon-_digital_solutions_panel__0.png?h=6be7584a&itok=ENjg-DKP 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270_x2/public/rightscon-_digital_solutions_panel__0.png?h=6be7584a&itok=F1mZzrZa 2x" media="all and (max-width: 480px)" type="image/png" width="480" height="270"/>
<!--[if IE 9]></video><![endif]-->
<img
class="image"
src="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/rightscon-_digital_solutions_panel__0.png?h=6be7584a&itok=ENjg-DKP"
alt="RightsCon Panel "
/>
</picture>
</div>
<h2
class="h h--small h2"
>Developing a democratic vision of digital society to combat the rise of digital authoritarianism</h2>
<div class="news-teaser__description mb-4 480m:text-16" >