Giter Site home page Giter Site logo

jerichojars's Introduction

jerichojars : Java Archive Wrapper Supporting the 'jericho' Package

Contents of the 'Jericho HTML Parser' Java archive by Martin Jericho http://jericho.htmlparser.net/docs/index.html provided to support functions in the 'jericho' package.

As a result of using a Java library, this package requires rJava.

While the main intent is to use this with jericho, you can use it out of the box as-is (see below and the javadocs).

NOTE: Package version # reflects the version # of the included JAR file.

Installation

devtools::install_github("hrbrmstr/jerichojars")
library(jerichojars)
library(tidyverse)

c(
  "https://medium.com/starts-with-a-bang/science-knows-if-a-nation-is-testing-nuclear-bombs-ec5db88f4526",
  "https://en.wikipedia.org/wiki/Timeline_of_antisemitism",
  "http://www.healthsecuritysolutions.com/2017/09/04/watch-out-more-ransomware-attacks-incoming/",
  "http://rud.is/b/"
) -> urls

map_chr(urls, ~paste0(read_lines(.x), collapse="\n")) -> sites_html

map(sites_html, ~{
  
  b <- new(J("net.htmlparser.jericho.Source"), .x)
  
  b$getAllElements("a") %>% 
    as.list() %>% 
    map(~.x$getAttributeValue("href")) %>% 
    flatten_chr()
  
}) 
## [[1]]
##  [1] "https://medium.com/"                                                                                                                                 
##  [2] "https://medium.com/starts-with-a-bang?source=logo-lo_63f97dffeb52---458a773bccd2"                                                                    
##  [3] "https://twitter.com/startswithabang"                                                                                                                 
##  [4] "//facebook.com/startswithabang"                                                                                                                      
##  [5] "https://medium.com/m/signin?redirect=https%3A%2F%2Fmedium.com%2Fstarts-with-a-bang%2Fscience-knows-if-a-nation-is-testing-nuclear-bombs-ec5db88f4526"
##  [6] "https://medium.com/"                                                                                                                                 
##  [7] "https://medium.com/@startswithabang?source=post_header_lockup"                                                                                       
##  [8] "https://medium.com/@startswithabang?source=post_header_lockup"                                                                                       
##  [9] "http://earthquake.usgs.gov/earthquakes/eventpage/us10004bnm#general_map"                                                                             
## [10] "https://twitter.com/alexanderhutko/status/684588344018206720/photo/1"                                                                                
## [11] "https://www.forbes.com/sites/startswithabang/"                                                                                                       
## [12] "https://www.patreon.com/startswithabang"                                                                                                             
## [13] "http://amzn.to/2oWv6KK"                                                                                                                              
## [14] "http://amzn.to/2nYxkbn"                                                                                                                              
## [15] "https://medium.com/tag/north-korea?source=post"                                                                                                      
## [16] "https://medium.com/tag/nuclear?source=post"                                                                                                          
## [17] "https://medium.com/tag/physics?source=post"                                                                                                          
## [18] "https://medium.com/tag/science?source=post"                                                                                                          
## [19] "https://medium.com/tag/earthquake?source=post"                                                                                                       
## [20] "https://medium.com/@startswithabang?source=footer_card"                                                                                              
## [21] "https://medium.com/@startswithabang"                                                                                                                 
## [22] "https://medium.com/starts-with-a-bang?source=footer_card"                                                                                            
## [23] "https://medium.com/starts-with-a-bang?source=footer_card"                                                                                            
## [24] "https://medium.com/starts-with-a-bang"                                                                                                               
## [25] "https://medium.com/@Medium/personalize-your-medium-experience-with-users-publications-tags-26a41ab1ee0c#.hx4zuv3mg"                                  
## 
## [[2]]
##    [1] "#mw-head"                                                                                                                                                                                                                                                                                                             
##    [2] "#p-search"                                                                                                                                                                                                                                                                                                            
##    [3] "/wiki/Wikipedia:WikiProject_Lists#Incomplete_lists"                                                                                                                                                                                                                                                                   
##    [4] "//en.wikipedia.org/w/index.php?title=Timeline_of_antisemitism&action=edit"                                                                                                                                                                                                                                            
##    [5] "/wiki/Wikipedia:Identifying_reliable_sources"                                                                                                                                                                                                                                                                         
##    [6] "/wiki/Antisemitism"                                                                                                                                                                                                                                                                                                   
##    [7] "/wiki/Jews"                                                                                                                                                                                                                                                                                                           
##    [8] "/wiki/History_of_antisemitism"                                                                                                                                                                                                                                                                                        
##    [9] "/wiki/Anti-Judaism"                                                                                                                                                                                                                                                                                                   
##   [10] "/wiki/Religious_antisemitism"                                                                                                                                                                                                                                                                                         
##   [11] "/wiki/Judaism"                                                                                                                                                                                                                                                                                                        
##   [12] "/wiki/Racial_antisemitism"                                                                                                                                                                                                                                                                                            
##   [13] "/wiki/Jewish_refugees"                                                                                                                                                                                                                                                                                                
##   [14] "/wiki/Category:Antisemitism"                                                                                                                                                                                                                                                                                          
##   [15] "/wiki/Antisemitism"                                                                                                                                                                                                                                                                                                   
##   [16] "/wiki/Yellow_badge"                                                                                                                                                                                                                                                                                                   
##   [17] "/wiki/Jewish_history"                                                                                                                                                                                                                                                                                                 
##   [18] "/wiki/History_of_antisemitism"                                                                                                                                                                                                                                                                                        
##   [19] "/wiki/Antisemitism_(authors)"                                                                                                                                                                                                                                                                                         
##   [20] "/wiki/Universities_and_antisemitism"                                                                                                                                                                                                                                                                                  
##   [21] "/wiki/Antisemitism_in_the_Arab_world"                                                                                                                                                                                                                                                                                 
##   [22] "/wiki/Christianity_and_antisemitism"                                                                                                                                                                                                                                                                                  
##   [23] "/wiki/Economic_antisemitism"                                                                                                                                                                                                                                                                                          
##   [24] "/wiki/Antisemitic_incidents_during_the_Gaza_War_(2008%E2%80%9309)"                                                                                                                                                                                                                                                    
##   [25] "/wiki/Islam_and_antisemitism"                                                                                                                                                                                                                                                                                         
##   [26] "/wiki/Holocaust_denial"                                                                                                                                                                                                                                                                                               
##   [27] "/wiki/Nation_of_Islam_and_antisemitism"                                                                                                                                                                                                                                                                               
##   [28] "/wiki/Nazism"                                                                                                                                                                                                                                                                                                         
##   [29] "/wiki/New_antisemitism"                                                                                                                                                                                                                                                                                               
##   [30] "/wiki/Racial_antisemitism"                                                                                                                                                                                                                                                                                            
##   [31] "/wiki/Religious_antisemitism"                                                                                                                                                                                                                                                                                         
##   [32] "/wiki/Secondary_antisemitism"                                                                                                                                                                                                                                                                                         
##   [33] "/wiki/Antisemitism_in_the_Soviet_Union"                                                                                                                                                                                                                                                                               
##   [34] "/wiki/Stalin_and_antisemitism"                                                                                                                                                                                                                                                                                        
##   [35] "/wiki/Geography_of_antisemitism"                                                                                                                                                                                                                                                                                      
##   [36] "/wiki/Antisemitic_canard"                                                                                                                                                                                                                                                                                             
##   [37] "/wiki/Blood_libel"                                                                                                                                                                                                                                                                                                    
##   [38] "/wiki/Jewish_deicide"                                                                                                                                                                                                                                                                                                 
##   [39] "/wiki/Dreyfus_affair"                                                                                                                                                                                                                                                                                                 
##   [40] "/wiki/Host_desecration"                                                                                                                                                                                                                                                                                               
##   [41] "/wiki/Jewish_Bolshevism"                                                                                                                                                                                                                                                                                              
##   [42] "/wiki/Jewish_lobby"                                                                                                                                                                                                                                                                                                   
##   [43] "/wiki/Judeo-Masonic_conspiracy_theory"                                                                                                                                                                                                                                                                                
##   [44] "/wiki/Kosher_tax_(antisemitic_canard)"                                                                                                                                                                                                                                                                                
##   [45] "/wiki/Rootless_cosmopolitan"                                                                                                                                                                                                                                                                                          
##   [46] "/wiki/Stab-in-the-back_myth"                                                                                                                                                                                                                                                                                          
##   [47] "/wiki/Well_poisoning"                                                                                                                                                                                                                                                                                                 
##   [48] "/wiki/Zionist_Occupation_Government_conspiracy_theory"                                                                                                                                                                                                                                                                
##   [49] "/wiki/Category:Antisemitic_publications"                                                                                                                                                                                                                                                                              
##   [50] "/wiki/On_the_Jews_and_Their_Lies"                                                                                                                                                                                                                                                                                     
##   [51] "/wiki/La_France_juive"                                                                                                                                                                                                                                                                                                
##   [52] "/wiki/The_Protocols_of_the_Elders_of_Zion"                                                                                                                                                                                                                                                                            
##   [53] "/wiki/The_International_Jew"                                                                                                                                                                                                                                                                                          
##   [54] "/wiki/Mein_Kampf"                                                                                                                                                                                                                                                                                                     
##   [55] "/wiki/Zweites_Buch"                                                                                                                                                                                                                                                                                                   
##   [56] "/wiki/The_Secret_Relationship_Between_Blacks_and_Jews"                                                                                                                                                                                                                                                                
##   [57] "/wiki/The_Turner_Diaries"                                                                                                                                                                                                                                                                                             
##   [58] "/wiki/Hunter_(Pierce_novel)"                                                                                                                                                                                                                                                                                          
##   [59] "/wiki/Culture_of_Critique"                                                                                                                                                                                                                                                                                            
##   [60] "/wiki/Jew_Watch"                                                                                                                                                                                                                                                                                                      
##   [61] "/wiki/Stormfront_(website)"                                                                                                                                                                                                                                                                                           
##   [62] "/wiki/Triple_parentheses"                                                                                                                                                                                                                                                                                             
##   [63] "/wiki/Persecution_of_Jews"                                                                                                                                                                                                                                                                                            
##   [64] "/wiki/Antisemitic_boycotts"                                                                                                                                                                                                                                                                                           
##   [65] "/wiki/Jewish_refugees"                                                                                                                                                                                                                                                                                                
##   [66] "/wiki/Jewish_ghettos_in_Europe"                                                                                                                                                                                                                                                                                       
##   [67] "/wiki/Jewish_hat"                                                                                                                                                                                                                                                                                                     
##   [68] "/wiki/Judensau"                                                                                                                                                                                                                                                                                                       
##   [69] "/wiki/Jewish_quota"                                                                                                                                                                                                                                                                                                   
##   [70] "/wiki/Pogrom"                                                                                                                                                                                                                                                                                                         
##   [71] "/wiki/Religious_segregation"                                                                                                                                                                                                                                                                                          
##   [72] "/wiki/Spanish_Inquisition"                                                                                                                                                                                                                                                                                            
##   [73] "/wiki/The_Holocaust"                                                                                                                                                                                                                                                                                                  
##   [74] "/wiki/Yellow_badge"                                                                                                                                                                                                                                                                                                   
##   [75] "/wiki/UN_Watch"                                                                                                                                                                                                                                                                                                       
##   [76] "/wiki/Anti-Defamation_League"                                                                                                                                                                                                                                                                                         
##   [77] "/wiki/Community_Security_Trust"                                                                                                                                                                                                                                                                                       
##   [78] "/wiki/Fundamental_Rights_Agency"                                                                                                                                                                                                                                                                                      
##   [79] "/wiki/Philo-Semitism"                                                                                                                                                                                                                                                                                                 
##   [80] "/wiki/Stephen_Roth_Institute"                                                                                                                                                                                                                                                                                         
##   [81] "/wiki/Wiener_Library"                                                                                                                                                                                                                                                                                                 
##   [82] "/wiki/Southern_Poverty_Law_Center"                                                                                                                                                                                                                                                                                    
##   [83] "/wiki/Simon_Wiesenthal_Center"                                                                                                                                                                                                                                                                                        
##   [84] "/wiki/Union_of_Councils_for_Soviet_Jews"                                                                                                                                                                                                                                                                              
##   [85] "/wiki/Swedish_Committee_Against_Antisemitism"                                                                                                                                                                                                                                                                         
##   [86] "/wiki/Yad_Vashem"                                                                                                                                                                                                                                                                                                     
##   [87] "/wiki/Zionism"                                                                                                                                                                                                                                                                                                        
##   [88] "/wiki/Category:Antisemitism"                                                                                                                                                                                                                                                                                          
##   [89] "/wiki/Template:Antisemitism"                                                                                                                                                                                                                                                                                          
##   [90] "/wiki/Template_talk:Antisemitism"                                                                                                                                                                                                                                                                                     
##   [91] "//en.wikipedia.org/w/index.php?title=Template:Antisemitism&action=edit"                                                                                                                                                                                                                                               
##   [92] "#Antiquity"                                                                                                                                                                                                                                                                                                           
##   [93] "#First_century"                                                                                                                                                                                                                                                                                                       
##   [94] "#Second_century"                                                                                                                                                                                                                                                                                                      
##   [95] "#Third_century"                                                                                                                                                                                                                                                                                                       
##   [96] "#Fourth_century"                                                                                                                                                                                                                                                                                                      
##   [97] "#Fifth_century"                                                                                                                                                                                                                                                                                                       
##   [98] "#Sixth_century"                                                                                                                                                                                                                                                                                                       
##   [99] "#Seventh_century"                                                                                                                                                                                                                                                                                                     
##  [100] "#Eighth_century"                                                                                                                                                                                                                                                                                                      
##  [101] "#Ninth_century"                                                                                                                                                                                                                                                                                                       
##  [102] "#Tenth_century"                                                                                                                                                                                                                                                                                                       
##  [103] "#Eleventh_century"                                                                                                                                                                                                                                                                                                    
##  [104] "#Twelfth_century"                                                                                                                                                                                                                                                                                                     
##  [105] "#Thirteenth_century"                                                                                                                                                                                                                                                                                                  
##  [106] "#Fourteenth_century"                                                                                                                                                                                                                                                                                                  
##  [107] "#Fifteenth_century"                                                                                                                                                                                                                                                                                                   
##  [108] "#Sixteenth_century"                                                                                                                                                                                                                                                                                                   
##  [109] "#Seventeenth_century"                                                                                                                                                                                                                                                                                                 
##  [110] "#Eighteenth_century"                                                                                                                                                                                                                                                                                                  
##  [111] "#Nineteenth_century"                                                                                                                                                                                                                                                                                                  
##  [112] "#Twentieth_century"                                                                                                                                                                                                                                                                                                   
##  [113] "#Twenty-first_century"                                                                                                                                                                                                                                                                                                
##  [114] "#See_also"                                                                                                                                                                                                                                                                                                            
##  [115] "#References"                                                                                                                                                                                                                                                                                                          
##  [116] "#External_links"                                                                                                                                                                                                                                                                                                      
##  [117] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=1"                                                                                                                                                                                                                                                    
##  [118] "/wiki/Assyrian_captivity"                                                                                                                                                                                                                                                                                             
##  [119] "/wiki/History_of_Ancient_Israel_and_Judah"                                                                                                                                                                                                                                                                            
##  [120] "/wiki/Samaria"                                                                                                                                                                                                                                                                                                        
##  [121] "/wiki/Assyria"                                                                                                                                                                                                                                                                                                        
##  [122] "/wiki/Kingdom_of_Israel_(Samaria)"                                                                                                                                                                                                                                                                                    
##  [123] "/wiki/Neo-Assyrian_Empire"                                                                                                                                                                                                                                                                                            
##  [124] "/wiki/Nebuchadnezzar_II"                                                                                                                                                                                                                                                                                              
##  [125] "/wiki/Neo-Babylonian_Empire"                                                                                                                                                                                                                                                                                          
##  [126] "/wiki/First_Temple"                                                                                                                                                                                                                                                                                                   
##  [127] "/wiki/Jerusalem"                                                                                                                                                                                                                                                                                                      
##  [128] "/wiki/Kingdom_of_Judah"                                                                                                                                                                                                                                                                                               
##  [129] "/wiki/Haman"                                                                                                                                                                                                                                                                                                          
##  [130] "/wiki/Genocide"                                                                                                                                                                                                                                                                                                       
##  [131] "/wiki/Purim"                                                                                                                                                                                                                                                                                                          
##  [132] "/wiki/1_Maccabees"                                                                                                                                                                                                                                                                                                    
##  [133] "/wiki/2_Maccabees"                                                                                                                                                                                                                                                                                                    
##  [134] "/wiki/Antiochus_IV_Epiphanes"                                                                                                                                                                                                                                                                                         
##  [135] "/wiki/Zeus"                                                                                                                                                                                                                                                                                                           
##  [136] "/wiki/Jerusalem"                                                                                                                                                                                                                                                                                                      
##  [137] "/wiki/Hanukkah"                                                                                                                                                                                                                                                                                                       
##  [138] "/wiki/Maccabees"                                                                                                                                                                                                                                                                                                      
##  [139] "/wiki/Gnaeus_Cornelius_Scipio_Hispanus"                                                                                                                                                                                                                                                                               
##  [140] "/wiki/Rome"                                                                                                                                                                                                                                                                                                           
##  [141] "/wiki/Woman_with_seven_sons"                                                                                                                                                                                                                                                                                          
##  [142] "/wiki/Martyr"                                                                                                                                                                                                                                                                                                         
##  [143] "/wiki/2_Maccabees"                                                                                                                                                                                                                                                                                                    
##  [144] "#cite_note-JVL-1"                                                                                                                                                                                                                                                                                                     
##  [145] "#cite_note-Ilan-2"                                                                                                                                                                                                                                                                                                    
##  [146] "#cite_note-Orthodox-3"                                                                                                                                                                                                                                                                                                
##  [147] "/wiki/Judas_Maccabeus"                                                                                                                                                                                                                                                                                                
##  [148] "/wiki/Antiochus_IV_Epiphanes"                                                                                                                                                                                                                                                                                         
##  [149] "/wiki/Pork"                                                                                                                                                                                                                                                                                                           
##  [150] "#cite_note-4"                                                                                                                                                                                                                                                                                                         
##  [151] "#cite_note-5"                                                                                                                                                                                                                                                                                                         
##  [152] "/wiki/Talmud"                                                                                                                                                                                                                                                                                                         
##  [153] "/wiki/Nashim"                                                                                                                                                                                                                                                                                                         
##  [154] "/wiki/Suicide"                                                                                                                                                                                                                                                                                                        
##  [155] "#cite_note-6"                                                                                                                                                                                                                                                                                                         
##  [156] "/wiki/4_Maccabees"                                                                                                                                                                                                                                                                                                    
##  [157] "/wiki/Josippon"                                                                                                                                                                                                                                                                                                       
##  [158] "#cite_note-JVL-1"                                                                                                                                                                                                                                                                                                     
##  [159] "/wiki/Jewish_diaspora"                                                                                                                                                                                                                                                                                                
##  [160] "/wiki/Pompey#Pompey_in_the_East"                                                                                                                                                                                                                                                                                      
##  [161] "/wiki/Cicero"                                                                                                                                                                                                                                                                                                         
##  [162] "#cite_note-7"                                                                                                                                                                                                                                                                                                         
##  [163] "/wiki/Alexandria"                                                                                                                                                                                                                                                                                                     
##  [164] "#cite_note-8"                                                                                                                                                                                                                                                                                                         
##  [165] "#cite_note-9"                                                                                                                                                                                                                                                                                                         
##  [166] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=2"                                                                                                                                                                                                                                                    
##  [167] "/wiki/Tiberius"                                                                                                                                                                                                                                                                                                       
##  [168] "/wiki/Rome"                                                                                                                                                                                                                                                                                                           
##  [169] "/wiki/Suetonius"                                                                                                                                                                                                                                                                                                      
##  [170] "/wiki/Cassius_Dio"                                                                                                                                                                                                                                                                                                    
##  [171] "/wiki/Alexandrian_pogrom"                                                                                                                                                                                                                                                                                             
##  [172] "/wiki/Philo_of_Alexandria"                                                                                                                                                                                                                                                                                            
##  [173] "/wiki/Claudius"                                                                                                                                                                                                                                                                                                       
##  [174] "/wiki/Great_Jewish_Revolt"                                                                                                                                                                                                                                                                                            
##  [175] "/wiki/Vespasian"                                                                                                                                                                                                                                                                                                      
##  [176] "/wiki/Titus"                                                                                                                                                                                                                                                                                                          
##  [177] "/wiki/Philostratus"                                                                                                                                                                                                                                                                                                   
##  [178] "/wiki/Wikipedia:Citation_needed"                                                                                                                                                                                                                                                                                      
##  [179] "/wiki/Josephus"                                                                                                                                                                                                                                                                                                       
##  [180] "/wiki/Rome"                                                                                                                                                                                                                                                                                                           
##  [181] "/wiki/Siege_of_Jerusalem_(70)"                                                                                                                                                                                                                                                                                        
##  [182] "/wiki/Second_Temple"                                                                                                                                                                                                                                                                                                  
##  [183] "/wiki/Apion"                                                                                                                                                                                                                                                                                                          
##  [184] "/wiki/Alexandria,_Egypt"                                                                                                                                                                                                                                                                                              
##  [185] "/wiki/Blood_libel"                                                                                                                                                                                                                                                                                                    
##  [186] "/wiki/Satires_of_Juvenal"                                                                                                                                                                                                                                                                                             
##  [187] "/wiki/Josephus"                                                                                                                                                                                                                                                                                                       
##  [188] "/wiki/Against_Apion"                                                                                                                                                                                                                                                                                                  
##  [189] "#cite_note-10"                                                                                                                                                                                                                                                                                                        
##  [190] "/wiki/Titus_Flavius_Clemens"                                                                                                                                                                                                                                                                                          
##  [191] "/wiki/Roman_Emperor"                                                                                                                                                                                                                                                                                                  
##  [192] "/wiki/Vespasian"                                                                                                                                                                                                                                                                                                      
##  [193] "/wiki/Tacitus"                                                                                                                                                                                                                                                                                                        
##  [194] "/wiki/Histories_(Tacitus)"                                                                                                                                                                                                                                                                                            
##  [195] "http://www.perseus.tufts.edu/cgi-bin/ptext?lookup=Tac.+Hist.+5.1"                                                                                                                                                                                                                                                     
##  [196] "/wiki/Monotheistic"                                                                                                                                                                                                                                                                                                   
##  [197] "/wiki/Polytheism"                                                                                                                                                                                                                                                                                                     
##  [198] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=3"                                                                                                                                                                                                                                                    
##  [199] "/wiki/Cyprus"                                                                                                                                                                                                                                                                                                         
##  [200] "/wiki/Cyrenaica"                                                                                                                                                                                                                                                                                                      
##  [201] "/wiki/Cassius_Dio"                                                                                                                                                                                                                                                                                                    
##  [202] "/wiki/Roman_Emperor"                                                                                                                                                                                                                                                                                                  
##  [203] "/wiki/Hadrian"                                                                                                                                                                                                                                                                                                        
##  [204] "/wiki/Circumcision"                                                                                                                                                                                                                                                                                                   
##  [205] "/wiki/Bar_Kokhba_revolt"                                                                                                                                                                                                                                                                                              
##  [206] "/wiki/Galilee"                                                                                                                                                                                                                                                                                                        
##  [207] "/wiki/Syria_Palaestina"                                                                                                                                                                                                                                                                                               
##  [208] "/wiki/Judea"                                                                                                                                                                                                                                                                                                          
##  [209] "/wiki/Land_of_Israel"                                                                                                                                                                                                                                                                                                 
##  [210] "/wiki/Timeline_of_antisemitism#20_century"                                                                                                                                                                                                                                                                            
##  [211] "/wiki/Samaria"                                                                                                                                                                                                                                                                                                        
##  [212] "/wiki/Tiberias"                                                                                                                                                                                                                                                                                                       
##  [213] "/wiki/Patriarchs"                                                                                                                                                                                                                                                                                                     
##  [214] "/wiki/Jewish_diaspora"                                                                                                                                                                                                                                                                                                
##  [215] "/wiki/Paganism"                                                                                                                                                                                                                                                                                                       
##  [216] "/wiki/Temple_in_Jerusalem"                                                                                                                                                                                                                                                                                            
##  [217] "/wiki/Aelia_Capitolina"                                                                                                                                                                                                                                                                                               
##  [218] "#cite_note-Lehmann-11"                                                                                                                                                                                                                                                                                                
##  [219] "/wiki/Jerusalem"                                                                                                                                                                                                                                                                                                      
##  [220] "/wiki/Temple_Mount"                                                                                                                                                                                                                                                                                                   
##  [221] "/wiki/Jewish_deicide"                                                                                                                                                                                                                                                                                                 
##  [222] "/wiki/Responsible_for_the_death_of_Jesus"                                                                                                                                                                                                                                                                             
##  [223] "/wiki/Melito_of_Sardis"                                                                                                                                                                                                                                                                                               
##  [224] "/wiki/Apollinaris_Claudius"                                                                                                                                                                                                                                                                                           
##  [225] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=4"                                                                                                                                                                                                                                                    
##  [226] "/wiki/Jews"                                                                                                                                                                                                                                                                                                           
##  [227] "/wiki/Carthage"                                                                                                                                                                                                                                                                                                       
##  [228] "/wiki/Nehardea"                                                                                                                                                                                                                                                                                                       
##  [229] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=5"                                                                                                                                                                                                                                                    
##  [230] "/wiki/Synod_of_Elvira"                                                                                                                                                                                                                                                                                                
##  [231] "/wiki/Christianity"                                                                                                                                                                                                                                                                                                   
##  [232] "/wiki/Jew"                                                                                                                                                                                                                                                                                                            
##  [233] "/wiki/Constantine_the_Great"                                                                                                                                                                                                                                                                                          
##  [234] "/wiki/Jerusalem"                                                                                                                                                                                                                                                                                                      
##  [235] "/wiki/First_Council_of_Nicaea"                                                                                                                                                                                                                                                                                        
##  [236] "/wiki/Christian_Church"                                                                                                                                                                                                                                                                                               
##  [237] "/wiki/Easter"                                                                                                                                                                                                                                                                                                         
##  [238] "/wiki/Passover"                                                                                                                                                                                                                                                                                                       
##  [239] "/wiki/Deicide"                                                                                                                                                                                                                                                                                                        
##  [240] "#cite_note-12"                                                                                                                                                                                                                                                                                                        
##  [241] "#cite_note-13"                                                                                                                                                                                                                                                                                                        
##  [242] "/wiki/Rabbah_bar_Nahmani"                                                                                                                                                                                                                                                                                             
##  [243] "/wiki/Book_burning"                                                                                                                                                                                                                                                                                                   
##  [244] "/wiki/Persia"                                                                                                                                                                                                                                                                                                         
##  [245] "/wiki/Jewish_revolt_against_Constantius_Gallus"                                                                                                                                                                                                                                                                       
##  [246] "/wiki/Constantius_II"                                                                                                                                                                                                                                                                                                 
##  [247] "/wiki/Converts_to_Judaism"                                                                                                                                                                                                                                                                                            
##  [248] "/wiki/Julian_the_Apostate"                                                                                                                                                                                                                                                                                            
##  [249] "/wiki/Milan"                                                                                                                                                                                                                                                                                                          
##  [250] "/wiki/Julian_the_Apostate"                                                                                                                                                                                                                                                                                            
##  [251] "/wiki/John_Chrysostom"                                                                                                                                                                                                                                                                                                
##  [252] "/wiki/Antioch"                                                                                                                                                                                                                                                                                                        
##  [253] "/wiki/Homilies"                                                                                                                                                                                                                                                                                                       
##  [254] "/wiki/Adversus_Judaeos"                                                                                                                                                                                                                                                                                               
##  [255] "/wiki/Christianity_and_antisemitism"                                                                                                                                                                                                                                                                                  
##  [256] "/wiki/Synagogue"                                                                                                                                                                                                                                                                                                      
##  [257] "/wiki/Raqqa"                                                                                                                                                                                                                                                                                                          
##  [258] "/wiki/Theodosius_I"                                                                                                                                                                                                                                                                                                   
##  [259] "/wiki/Ambrose"                                                                                                                                                                                                                                                                                                        
##  [260] "/wiki/Roman_Emperor"                                                                                                                                                                                                                                                                                                  
##  [261] "/wiki/Flavius_Augustus_Honorius"                                                                                                                                                                                                                                                                                      
##  [262] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=6"                                                                                                                                                                                                                                                    
##  [263] "/wiki/Haman"                                                                                                                                                                                                                                                                                                          
##  [264] "/wiki/Alexandria"                                                                                                                                                                                                                                                                                                     
##  [265] "#cite_note-14"                                                                                                                                                                                                                                                                                                        
##  [266] "/wiki/Cyril_of_Alexandria#Relationship_with_the_Novatians_and_Jews"                                                                                                                                                                                                                                                   
##  [267] "/wiki/Antioch"                                                                                                                                                                                                                                                                                                        
##  [268] "/wiki/Ritual_murder"                                                                                                                                                                                                                                                                                                  
##  [269] "/wiki/Purim"                                                                                                                                                                                                                                                                                                          
##  [270] "#cite_note-15"                                                                                                                                                                                                                                                                                                        
##  [271] "/wiki/Honorius_(emperor)"                                                                                                                                                                                                                                                                                             
##  [272] "/wiki/Theodosius_II"                                                                                                                                                                                                                                                                                                  
##  [273] "/wiki/Forced_to_convert"                                                                                                                                                                                                                                                                                              
##  [274] "/wiki/Minorca"                                                                                                                                                                                                                                                                                                        
##  [275] "/wiki/Port_Mahon"                                                                                                                                                                                                                                                                                                     
##  [276] "/wiki/Monk"                                                                                                                                                                                                                                                                                                           
##  [277] "/wiki/Barsauma"                                                                                                                                                                                                                                                                                                       
##  [278] "/wiki/Nisibis"                                                                                                                                                                                                                                                                                                        
##  [279] "/wiki/Nasi_(Hebrew_title)"                                                                                                                                                                                                                                                                                            
##  [280] "/wiki/Sanhedrin"                                                                                                                                                                                                                                                                                                      
##  [281] "/wiki/Gamliel_VI"                                                                                                                                                                                                                                                                                                     
##  [282] "/wiki/East_Roman_Emperor"                                                                                                                                                                                                                                                                                             
##  [283] "/wiki/Theodosius_II"                                                                                                                                                                                                                                                                                                  
##  [284] "/wiki/Temple_Mount"                                                                                                                                                                                                                                                                                                   
##  [285] "/wiki/Codex_Theodosianus"                                                                                                                                                                                                                                                                                             
##  [286] "/wiki/Samaritans"                                                                                                                                                                                                                                                                                                     
##  [287] "/wiki/Roman_Emperor"                                                                                                                                                                                                                                                                                                  
##  [288] "/wiki/Valentinian_III"                                                                                                                                                                                                                                                                                                
##  [289] "/wiki/Sassanid_dynasty"                                                                                                                                                                                                                                                                                               
##  [290] "/wiki/Yazdegerd_II_of_Persia"                                                                                                                                                                                                                                                                                         
##  [291] "/wiki/Shabbat"                                                                                                                                                                                                                                                                                                        
##  [292] "/wiki/Exilarch"                                                                                                                                                                                                                                                                                                       
##  [293] "/wiki/Vannes"                                                                                                                                                                                                                                                                                                         
##  [294] "/wiki/Iranian_Jews"                                                                                                                                                                                                                                                                                                   
##  [295] "/wiki/Magi"                                                                                                                                                                                                                                                                                                           
##  [296] "/wiki/Exilarch"                                                                                                                                                                                                                                                                                                       
##  [297] "/wiki/Peroz_I"                                                                                                                                                                                                                                                                                                        
##  [298] "/wiki/Antioch"                                                                                                                                                                                                                                                                                                        
##  [299] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=7"                                                                                                                                                                                                                                                    
##  [300] "/wiki/Babylonian_Jews"                                                                                                                                                                                                                                                                                                
##  [301] "/wiki/Iran"                                                                                                                                                                                                                                                                                                           
##  [302] "/wiki/King_Kobad"                                                                                                                                                                                                                                                                                                     
##  [303] "/wiki/Exilarch"                                                                                                                                                                                                                                                                                                       
##  [304] "/wiki/Mar-Zutra_II"                                                                                                                                                                                                                                                                                                   
##  [305] "/wiki/Mahoza"                                                                                                                                                                                                                                                                                                         
##  [306] "/wiki/Council_of_Epaone"                                                                                                                                                                                                                                                                                              
##  [307] "/wiki/Ravenna"                                                                                                                                                                                                                                                                                                        
##  [308] "/wiki/Ostrogoths"                                                                                                                                                                                                                                                                                                     
##  [309] "/wiki/Theodoric_the_Great"                                                                                                                                                                                                                                                                                            
##  [310] "/wiki/Byzantine_Empire"                                                                                                                                                                                                                                                                                               
##  [311] "/wiki/Justinian_the_Great"                                                                                                                                                                                                                                                                                            
##  [312] "/wiki/Corpus_Juris_Civilis"                                                                                                                                                                                                                                                                                           
##  [313] "/wiki/Wikipedia:Please_clarify"                                                                                                                                                                                                                                                                                       
##  [314] "/wiki/Hebrew_language"                                                                                                                                                                                                                                                                                                
##  [315] "/wiki/Shema_Yisrael"                                                                                                                                                                                                                                                                                                  
##  [316] "/wiki/Trinity"                                                                                                                                                                                                                                                                                                        
##  [317] "/w/index.php?title=Borion&action=edit&redlink=1"                                                                                                                                                                                                                                                                      
##  [318] "/wiki/First_Council_of_Clermont"                                                                                                                                                                                                                                                                                      
##  [319] "/wiki/Orl%C3%A9ans"                                                                                                                                                                                                                                                                                                   
##  [320] "/wiki/Easter"                                                                                                                                                                                                                                                                                                         
##  [321] "/wiki/Childebert_I"                                                                                                                                                                                                                                                                                                   
##  [322] "/wiki/Caesarea"                                                                                                                                                                                                                                                                                                       
##  [323] "/wiki/Marseilles"                                                                                                                                                                                                                                                                                                     
##  [324] "/wiki/Merovingian_dynasty"                                                                                                                                                                                                                                                                                            
##  [325] "/wiki/Narbonne"                                                                                                                                                                                                                                                                                                       
##  [326] "/wiki/Psalms"                                                                                                                                                                                                                                                                                                         
##  [327] "/wiki/Councils_of_Toledo"                                                                                                                                                                                                                                                                                             
##  [328] "/wiki/Visigoths"                                                                                                                                                                                                                                                                                                      
##  [329] "/wiki/Reccared"                                                                                                                                                                                                                                                                                                       
##  [330] "#cite_note-16"                                                                                                                                                                                                                                                                                                        
##  [331] "/wiki/Pope_Gregory_I"                                                                                                                                                                                                                                                                                                 
##  [332] "/wiki/Exilarch"                                                                                                                                                                                                                                                                                                       
##  [333] "/wiki/Khosrau_II"                                                                                                                                                                                                                                                                                                     
##  [334] "/wiki/Mihrevandak"                                                                                                                                                                                                                                                                                                    
##  [335] "/wiki/Antioch"                                                                                                                                                                                                                                                                                                        
##  [336] "#cite_note-17"                                                                                                                                                                                                                                                                                                        
##  [337] "#cite_note-18"                                                                                                                                                                                                                                                                                                        
##  [338] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=8"                                                                                                                                                                                                                                                    
##  [339] "/wiki/Sisebur"                                                                                                                                                                                                                                                                                                        
##  [340] "/wiki/Judaism"                                                                                                                                                                                                                                                                                                        
##  [341] "/wiki/Paris"                                                                                                                                                                                                                                                                                                          
##  [342] "/wiki/Jewish_revolt_against_Heraclius"                                                                                                                                                                                                                                                                                
##  [343] "/wiki/Land_of_Israel"                                                                                                                                                                                                                                                                                                 
##  [344] "/wiki/Battle_of_Khaybar"                                                                                                                                                                                                                                                                                              
##  [345] "/wiki/Heraclius"                                                                                                                                                                                                                                                                                                      
##  [346] "/wiki/Franks"                                                                                                                                                                                                                                                                                                         
##  [347] "/wiki/Dagobert_I"                                                                                                                                                                                                                                                                                                     
##  [348] "/wiki/Byzantine_Emperor"                                                                                                                                                                                                                                                                                              
##  [349] "/wiki/Heraclius"                                                                                                                                                                                                                                                                                                      
##  [350] "/wiki/Heraclius"                                                                                                                                                                                                                                                                                                      
##  [351] "/wiki/Mizrahi_Jews"                                                                                                                                                                                                                                                                                                   
##  [352] "/wiki/Jizya"                                                                                                                                                                                                                                                                                                          
##  [353] "/wiki/Muslim_conquest_of_the_Levant"                                                                                                                                                                                                                                                                                  
##  [354] "/wiki/Toledo,_Spain"                                                                                                                                                                                                                                                                                                  
##  [355] "/wiki/Spain"                                                                                                                                                                                                                                                                                                          
##  [356] "/wiki/Jizya"                                                                                                                                                                                                                                                                                                          
##  [357] "/wiki/Egypt"                                                                                                                                                                                                                                                                                                          
##  [358] "/wiki/Cyrenaica"                                                                                                                                                                                                                                                                                                      
##  [359] "/wiki/Tripolitania"                                                                                                                                                                                                                                                                                                   
##  [360] "/wiki/Fezzan"                                                                                                                                                                                                                                                                                                         
##  [361] "/wiki/Toledo,_Spain"                                                                                                                                                                                                                                                                                                  
##  [362] "/wiki/Councils_of_Toledo"                                                                                                                                                                                                                                                                                             
##  [363] "/wiki/Toledo_(Spain)"                                                                                                                                                                                                                                                                                                 
##  [364] "/wiki/Heresy"                                                                                                                                                                                                                                                                                                         
##  [365] "/wiki/Visigoths"                                                                                                                                                                                                                                                                                                      
##  [366] "/wiki/Erwig"                                                                                                                                                                                                                                                                                                          
##  [367] "/wiki/Quinisext_Council"                                                                                                                                                                                                                                                                                              
##  [368] "/wiki/Ergica"                                                                                                                                                                                                                                                                                                         
##  [369] "/wiki/Muslim"                                                                                                                                                                                                                                                                                                         
##  [370] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=9"                                                                                                                                                                                                                                                    
##  [371] "/wiki/Dhimmi"                                                                                                                                                                                                                                                                                                         
##  [372] "/wiki/Omar_II"                                                                                                                                                                                                                                                                                                        
##  [373] "/wiki/Temple_Mount"                                                                                                                                                                                                                                                                                                   
##  [374] "#cite_note-19"                                                                                                                                                                                                                                                                                                        
##  [375] "/wiki/Byzantine_emperor"                                                                                                                                                                                                                                                                                              
##  [376] "/wiki/Leo_III_the_Isaurian"                                                                                                                                                                                                                                                                                           
##  [377] "/wiki/Jew"                                                                                                                                                                                                                                                                                                            
##  [378] "/wiki/Montanist"                                                                                                                                                                                                                                                                                                      
##  [379] "#cite_note-20"                                                                                                                                                                                                                                                                                                        
##  [380] "/wiki/Idriss_I"                                                                                                                                                                                                                                                                                                       
##  [381] "#cite_note-21"                                                                                                                                                                                                                                                                                                        
##  [382] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=10"                                                                                                                                                                                                                                                   
##  [383] "/wiki/Abbassid"                                                                                                                                                                                                                                                                                                       
##  [384] "/wiki/Caliph"                                                                                                                                                                                                                                                                                                         
##  [385] "/wiki/Harun_al-Rashid"                                                                                                                                                                                                                                                                                                
##  [386] "/wiki/Yellow_badge"                                                                                                                                                                                                                                                                                                   
##  [387] "/wiki/Agobard"                                                                                                                                                                                                                                                                                                        
##  [388] "/wiki/Archbishop_of_Lyons"                                                                                                                                                                                                                                                                                            
##  [389] "/wiki/Louis_the_Pious"                                                                                                                                                                                                                                                                                                
##  [390] "/wiki/Al-Mutawakkil"                                                                                                                                                                                                                                                                                                  
##  [391] "/wiki/Dhimmi"                                                                                                                                                                                                                                                                                                         
##  [392] "/wiki/Ahmad_ibn_Tulun"                                                                                                                                                                                                                                                                                                
##  [393] "/wiki/Basil_I"                                                                                                                                                                                                                                                                                                        
##  [394] "/wiki/Byzantine_Jews"                                                                                                                                                                                                                                                                                                 
##  [395] "#cite_note-22"                                                                                                                                                                                                                                                                                                        
##  [396] "/wiki/Basil_I"                                                                                                                                                                                                                                                                                                        
##  [397] "/wiki/Epanagoge"                                                                                                                                                                                                                                                                                                      
##  [398] "/wiki/Metz"                                                                                                                                                                                                                                                                                                           
##  [399] "#cite_note-23"                                                                                                                                                                                                                                                                                                        
##  [400] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=11"                                                                                                                                                                                                                                                   
##  [401] "/wiki/Charles_the_Simple"                                                                                                                                                                                                                                                                                             
##  [402] "/wiki/Narbonne"                                                                                                                                                                                                                                                                                                       
##  [403] "/wiki/Oria,_Apulia"                                                                                                                                                                                                                                                                                                   
##  [404] "/w/index.php?title=Shabbetai_Donnolo&action=edit&redlink=1"                                                                                                                                                                                                                                                           
##  [405] "/wiki/Romanos_I_Lekapenos"                                                                                                                                                                                                                                                                                            
##  [406] "#cite_note-24"                                                                                                                                                                                                                                                                                                        
##  [407] "#cite_note-Bari-25"                                                                                                                                                                                                                                                                                                   
##  [408] "/wiki/Byzantine_Jews"                                                                                                                                                                                                                                                                                                 
##  [409] "/wiki/Khazaria"                                                                                                                                                                                                                                                                                                       
##  [410] "/wiki/Venice"                                                                                                                                                                                                                                                                                                         
##  [411] "/wiki/Nikon_the_Metanoeite"                                                                                                                                                                                                                                                                                           
##  [412] "#cite_note-26"                                                                                                                                                                                                                                                                                                        
##  [413] "/wiki/Barcelona"                                                                                                                                                                                                                                                                                                      
##  [414] "/wiki/Almanzor"                                                                                                                                                                                                                                                                                                       
##  [415] "#cite_note-27"                                                                                                                                                                                                                                                                                                        
##  [416] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=12"                                                                                                                                                                                                                                                   
##  [417] "/wiki/Caliph"                                                                                                                                                                                                                                                                                                         
##  [418] "/wiki/Al-Hakim_bi-Amr_Allah"                                                                                                                                                                                                                                                                                          
##  [419] "/wiki/Fatimid_Empire"                                                                                                                                                                                                                                                                                                 
##  [420] "/wiki/Yellow_badge"                                                                                                                                                                                                                                                                                                   
##  [421] "#cite_note-28"                                                                                                                                                                                                                                                                                                        
##  [422] "/w/index.php?title=Ligomes&action=edit&redlink=1"                                                                                                                                                                                                                                                                     
##  [423] "/wiki/Abbasid"                                                                                                                                                                                                                                                                                                        
##  [424] "/wiki/Al-Qadir"                                                                                                                                                                                                                                                                                                       
##  [425] "/wiki/Baghdad_Manifesto"                                                                                                                                                                                                                                                                                              
##  [426] "#cite_note-29"                                                                                                                                                                                                                                                                                                        
##  [427] "/wiki/Sephardic_Jews"                                                                                                                                                                                                                                                                                                 
##  [428] "/wiki/C%C3%B3rdoba,_Spain"                                                                                                                                                                                                                                                                                            
##  [429] "#cite_note-30"                                                                                                                                                                                                                                                                                                        
##  [430] "/wiki/Germany"                                                                                                                                                                                                                                                                                                        
##  [431] "/wiki/Henry_II,_Holy_Roman_Emperor"                                                                                                                                                                                                                                                                                   
##  [432] "/wiki/Mainz"                                                                                                                                                                                                                                                                                                          
##  [433] "/wiki/Samuel_ibn_Naghrela"                                                                                                                                                                                                                                                                                            
##  [434] "/wiki/Kairouan"                                                                                                                                                                                                                                                                                                       
##  [435] "#cite_note-31"                                                                                                                                                                                                                                                                                                        
##  [436] "/wiki/Host_desecration"                                                                                                                                                                                                                                                                                               
##  [437] "/wiki/Roman_Jews"                                                                                                                                                                                                                                                                                                     
##  [438] "#cite_note-32"                                                                                                                                                                                                                                                                                                        
##  [439] "/wiki/Raoul_Glaber"                                                                                                                                                                                                                                                                                                   
##  [440] "/wiki/Church_of_the_Holy_Sepulchre"                                                                                                                                                                                                                                                                                   
##  [441] "/wiki/Limoges"                                                                                                                                                                                                                                                                                                        
##  [442] "/wiki/Abul_Kamal_Tumin"                                                                                                                                                                                                                                                                                               
##  [443] "/wiki/Fez,_Morocco"                                                                                                                                                                                                                                                                                                   
##  [444] "/wiki/1033_Fez_massacre"                                                                                                                                                                                                                                                                                              
##  [445] "#cite_note-33"                                                                                                                                                                                                                                                                                                        
##  [446] "#cite_note-34"                                                                                                                                                                                                                                                                                                        
##  [447] "/wiki/Exilarch"                                                                                                                                                                                                                                                                                                       
##  [448] "/wiki/Hezekiah_Gaon"                                                                                                                                                                                                                                                                                                  
##  [449] "/wiki/Buyyids"                                                                                                                                                                                                                                                                                                        
##  [450] "/wiki/Geonim"                                                                                                                                                                                                                                                                                                         
##  [451] "/wiki/Narbonne"                                                                                                                                                                                                                                                                                                       
##  [452] "/wiki/1066_Granada_massacre"                                                                                                                                                                                                                                                                                          
##  [453] "/wiki/Granada"                                                                                                                                                                                                                                                                                                        
##  [454] "/wiki/Crucifixion"                                                                                                                                                                                                                                                                                                    
##  [455] "/wiki/Jew"                                                                                                                                                                                                                                                                                                            
##  [456] "/wiki/Vizier"                                                                                                                                                                                                                                                                                                         
##  [457] "/wiki/Joseph_ibn_Naghrela"                                                                                                                                                                                                                                                                                            
##  [458] "#cite_note-35"                                                                                                                                                                                                                                                                                                        
##  [459] "/wiki/Girona"                                                                                                                                                                                                                                                                                                         
##  [460] "/wiki/Almoravides"                                                                                                                                                                                                                                                                                                    
##  [461] "/wiki/Yusuf_ibn_Tashfin"                                                                                                                                                                                                                                                                                              
##  [462] "/wiki/Golden_age_of_Jewish_culture_in_Spain"                                                                                                                                                                                                                                                                          
##  [463] "/wiki/Synod_of_Szabolcs"                                                                                                                                                                                                                                                                                              
##  [464] "/wiki/First_Crusade"                                                                                                                                                                                                                                                                                                  
##  [465] "/wiki/Central_Europe"                                                                                                                                                                                                                                                                                                 
##  [466] "/wiki/Emicho"                                                                                                                                                                                                                                                                                                         
##  [467] "/wiki/Rhineland"                                                                                                                                                                                                                                                                                                      
##  [468] "/wiki/Speyer"                                                                                                                                                                                                                                                                                                         
##  [469] "/wiki/Worms_massacre_(1096)"                                                                                                                                                                                                                                                                                          
##  [470] "/wiki/Mainz"                                                                                                                                                                                                                                                                                                          
##  [471] "/wiki/German_Crusade,_1096"                                                                                                                                                                                                                                                                                           
##  [472] "#cite_note-36"                                                                                                                                                                                                                                                                                                        
##  [473] "/wiki/Jerusalem"                                                                                                                                                                                                                                                                                                      
##  [474] "/wiki/History_of_the_Jews_and_the_Crusades#Massacre_of_Jerusalem"                                                                                                                                                                                                                                                     
##  [475] "#cite_note-tragic-37"                                                                                                                                                                                                                                                                                                 
##  [476] "/wiki/Ibn_al-Qalanisi"                                                                                                                                                                                                                                                                                                
##  [477] "#cite_note-gibb-38"                                                                                                                                                                                                                                                                                                   
##  [478] "#cite_note-39"                                                                                                                                                                                                                                                                                                        
##  [479] "/wiki/Cairo_Geniza"                                                                                                                                                                                                                                                                                                   
##  [480] "/wiki/Shelomo_Dov_Goitein"                                                                                                                                                                                                                                                                                            
##  [481] "#cite_note-kedar63-40"                                                                                                                                                                                                                                                                                                
##  [482] "#cite_note-kedar63-40"                                                                                                                                                                                                                                                                                                
##  [483] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=13"                                                                                                                                                                                                                                                   
##  [484] "/wiki/Yusuf_ibn_Tashfin"                                                                                                                                                                                                                                                                                              
##  [485] "/wiki/Almoravid"                                                                                                                                                                                                                                                                                                      
##  [486] "/wiki/Yusuf_ibn_Tashfin"                                                                                                                                                                                                                                                                                              
##  [487] "/wiki/Battle_of_Ucl%C3%A9s_(1108)"                                                                                                                                                                                                                                                                                    
##  [488] "/wiki/Sviatopolk_II"                                                                                                                                                                                                                                                                                                  
##  [489] "#cite_note-41"                                                                                                                                                                                                                                                                                                        
##  [490] "/wiki/C%C3%B3rdoba,_Spain"                                                                                                                                                                                                                                                                                            
##  [491] "/wiki/The_Anarchy"                                                                                                                                                                                                                                                                                                    
##  [492] "/wiki/Ham,_France"                                                                                                                                                                                                                                                                                                    
##  [493] "/wiki/William_of_Norwich"                                                                                                                                                                                                                                                                                             
##  [494] "/wiki/Abd_al-Mu%27min"                                                                                                                                                                                                                                                                                                
##  [495] "/wiki/Sijilmasa"                                                                                                                                                                                                                                                                                                      
##  [496] "/wiki/Fez"                                                                                                                                                                                                                                                                                                            
##  [497] "/wiki/Marrakesh"                                                                                                                                                                                                                                                                                                      
##  [498] "#cite_note-Morocco-42"                                                                                                                                                                                                                                                                                                
##  [499] "/wiki/Muslim_Spain"                                                                                                                                                                                                                                                                                                   
##  [500] "#cite_note-Toledo_JE-43"                                                                                                                                                                                                                                                                                              
##  [501] "/wiki/Lucena,_C%C3%B3rdoba"                                                                                                                                                                                                                                                                                           
##  [502] "/wiki/Almohads"                                                                                                                                                                                                                                                                                                       
##  [503] "/wiki/Almohads"                                                                                                                                                                                                                                                                                                       
##  [504] "/wiki/Al-Andalus"                                                                                                                                                                                                                                                                                                     
##  [505] "/wiki/Granada"                                                                                                                                                                                                                                                                                                        
##  [506] "/wiki/Maimonides"                                                                                                                                                                                                                                                                                                     
##  [507] "/wiki/Fez,_Morocco"                                                                                                                                                                                                                                                                                                   
##  [508] "/wiki/Fustat"                                                                                                                                                                                                                                                                                                         
##  [509] "/wiki/Cairo"                                                                                                                                                                                                                                                                                                          
##  [510] "#cite_note-44"                                                                                                                                                                                                                                                                                                        
##  [511] "/wiki/Yemen"                                                                                                                                                                                                                                                                                                          
##  [512] "/wiki/Almohad"                                                                                                                                                                                                                                                                                                        
##  [513] "/wiki/Fez"                                                                                                                                                                                                                                                                                                            
##  [514] "/wiki/Maimonides"                                                                                                                                                                                                                                                                                                     
##  [515] "#cite_note-Fez-45"                                                                                                                                                                                                                                                                                                    
##  [516] "/wiki/Harold_of_Gloucester"                                                                                                                                                                                                                                                                                           
##  [517] "/wiki/William_of_Norwich"                                                                                                                                                                                                                                                                                             
##  [518] "/wiki/Blois"                                                                                                                                                                                                                                                                                                          
##  [519] "/wiki/Bologna"                                                                                                                                                                                                                                                                                                        
##  [520] "#cite_note-46"                                                                                                                                                                                                                                                                                                        
##  [521] "/wiki/Mieszko_III"                                                                                                                                                                                                                                                                                                    
##  [522] "/wiki/Teruel"                                                                                                                                                                                                                                                                                                         
##  [523] "/wiki/Third_Lateran_Council"                                                                                                                                                                                                                                                                                          
##  [524] "/wiki/Boppard"                                                                                                                                                                                                                                                                                                        
##  [525] "/wiki/Philip_Augustus_of_France"                                                                                                                                                                                                                                                                                      
##  [526] "/wiki/Paris"                                                                                                                                                                                                                                                                                                          
##  [527] "/wiki/Assize_of_Arms_of_1181"                                                                                                                                                                                                                                                                                         
##  [528] "/wiki/Orl%C3%A9ans"                                                                                                                                                                                                                                                                                                   
##  [529] "#cite_note-47"                                                                                                                                                                                                                                                                                                        
##  [530] "/wiki/Saladin_tithe"                                                                                                                                                                                                                                                                                                  
##  [531] "/wiki/Holy_Roman_Emperor"                                                                                                                                                                                                                                                                                             
##  [532] "/wiki/Frederick_I_Barbarossa"                                                                                                                                                                                                                                                                                         
##  [533] "/wiki/Richard_I_of_England"                                                                                                                                                                                                                                                                                           
##  [534] "#cite_note-48"                                                                                                                                                                                                                                                                                                        
##  [535] "/wiki/York"                                                                                                                                                                                                                                                                                                           
##  [536] "/wiki/Third_Crusade"                                                                                                                                                                                                                                                                                                  
##  [537] "#cite_note-49"                                                                                                                                                                                                                                                                                                        
##  [538] "/wiki/Saladdin"                                                                                                                                                                                                                                                                                                       
##  [539] "/wiki/Jerusalem"                                                                                                                                                                                                                                                                                                      
##  [540] "/wiki/Crusade"                                                                                                                                                                                                                                                                                                        
##  [541] "/wiki/Bray-sur-Seine"                                                                                                                                                                                                                                                                                                 
##  [542] "#cite_note-50"                                                                                                                                                                                                                                                                                                        
##  [543] "#cite_note-51"                                                                                                                                                                                                                                                                                                        
##  [544] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=14"                                                                                                                                                                                                                                                   
##  [545] "/wiki/File:Regensburger_Dom_Judensau_2004.jpg"                                                                                                                                                                                                                                                                        
##  [546] "/wiki/File:Regensburger_Dom_Judensau_2004.jpg"                                                                                                                                                                                                                                                                        
##  [547] "/wiki/Regensburg"                                                                                                                                                                                                                                                                                                     
##  [548] "/wiki/Judensau"                                                                                                                                                                                                                                                                                                       
##  [549] "/wiki/Constantinople"                                                                                                                                                                                                                                                                                                 
##  [550] "/wiki/Siege_of_Constantinople_(1203)"                                                                                                                                                                                                                                                                                 
##  [551] "#cite_note-Popes.26Jews-52"                                                                                                                                                                                                                                                                                           
##  [552] "/wiki/Halle_(Saale)"                                                                                                                                                                                                                                                                                                  
##  [553] "#cite_note-Halle-53"                                                                                                                                                                                                                                                                                                  
##  [554] "/wiki/B%C3%A9ziers"                                                                                                                                                                                                                                                                                                   
##  [555] "#cite_note-54"                                                                                                                                                                                                                                                                                                        
##  [556] "/wiki/Raymond_VI"                                                                                                                                                                                                                                                                                                     
##  [557] "/wiki/Count_of_Toulouse"                                                                                                                                                                                                                                                                                              
##  [558] "/wiki/King_John_of_England"                                                                                                                                                                                                                                                                                           
##  [559] "/wiki/Toledo,_Spain"                                                                                                                                                                                                                                                                                                  
##  [560] "/wiki/Fourth_Lateran_Council"                                                                                                                                                                                                                                                                                         
##  [561] "/wiki/Pope_Innocent_III"                                                                                                                                                                                                                                                                                              
##  [562] "/wiki/Judenhut"                                                                                                                                                                                                                                                                                                       
##  [563] "/wiki/Fourth_Lateran_Council"                                                                                                                                                                                                                                                                                         
##  [564] "/wiki/Pope_Innocent_III"                                                                                                                                                                                                                                                                                              
##  [565] "#cite_note-55"                                                                                                                                                                                                                                                                                                        
##  [566] "/wiki/Alix_de_Montmorency"                                                                                                                                                                                                                                                                                            
##  [567] "/wiki/Toulouse"                                                                                                                                                                                                                                                                                                       
##  [568] "/wiki/Samuel_of_Speyer"                                                                                                                                                                                                                                                                                               
##  [569] "#cite_note-56"                                                                                                                                                                                                                                                                                                        
##  [570] "/wiki/Oxford"                                                                                                                                                                                                                                                                                                         
##  [571] "/wiki/Archbishop_of_Canterbury"                                                                                                                                                                                                                                                                                       
##  [572] "/wiki/Stephen_Langton"                                                                                                                                                                                                                                                                                                
##  [573] "/wiki/Louis_VIII_of_France"                                                                                                                                                                                                                                                                                           
##  [574] "/wiki/Fourth_Lateran_Council"                                                                                                                                                                                                                                                                                         
##  [575] "/wiki/Raymond_VII"                                                                                                                                                                                                                                                                                                    
##  [576] "/wiki/Count_of_Toulouse"                                                                                                                                                                                                                                                                                              
##  [577] "/wiki/Al-Kamil"                                                                                                                                                                                                                                                                                                       
##  [578] "/wiki/Theodore_Komnenos_Doukas"                                                                                                                                                                                                                                                                                       
##  [579] "/wiki/John_Asen_II"                                                                                                                                                                                                                                                                                                   
##  [580] "/wiki/Marrakesh"                                                                                                                                                                                                                                                                                                      
##  [581] "/wiki/Moroccan_Jews"                                                                                                                                                                                                                                                                                                  
##  [582] "/wiki/Ritual_murder"                                                                                                                                                                                                                                                                                                  
##  [583] "/wiki/Blood_libel"                                                                                                                                                                                                                                                                                                    
##  [584] "/wiki/Pope_Innocent_IV"                                                                                                                                                                                                                                                                                               
##  [585] "/wiki/Ritual_murder"                                                                                                                                                                                                                                                                                                  
##  [586] "/wiki/Blood_libel"                                                                                                                                                                                                                                                                                                    
##  [587] "/wiki/Pope_Gregory_X"                                                                                                                                                                                                                                                                                                 
##  [588] "#cite_note-57"                                                                                                                                                                                                                                                                                                        
##  [589] "/wiki/Crusade"                                                                                                                                                                                                                                                                                                        
##  [590] "/wiki/Anjou"                                                                                                                                                                                                                                                                                                          
##  [591] "/wiki/Poitou"                                                                                                                                                                                                                                                                                                         
##  [592] "#cite_note-58"                                                                                                                                                                                                                                                                                                        
##  [593] "#cite_note-59"                                                                                                                                                                                                                                                                                                        
##  [594] "/wiki/Brittany"                                                                                                                                                                                                                                                                                                       
##  [595] "/wiki/Disputation_of_Paris"                                                                                                                                                                                                                                                                                           
##  [596] "/wiki/Pope_Gregory_IX"                                                                                                                                                                                                                                                                                                
##  [597] "/wiki/Talmud"                                                                                                                                                                                                                                                                                                         
##  [598] "/wiki/Blasphemy"                                                                                                                                                                                                                                                                                                      
##  [599] "/wiki/Jesus"                                                                                                                                                                                                                                                                                                          
##  [600] "/wiki/Blessed_Virgin_Mary"                                                                                                                                                                                                                                                                                            
##  [601] "#cite_note-60"                                                                                                                                                                                                                                                                                                        
##  [602] "/wiki/James_I_of_Aragon"                                                                                                                                                                                                                                                                                              
##  [603] "/wiki/Host_Desecration"                                                                                                                                                                                                                                                                                               
##  [604] "/wiki/Beelitz"                                                                                                                                                                                                                                                                                                        
##  [605] "/wiki/Kitzingen"                                                                                                                                                                                                                                                                                                      
##  [606] "#cite_note-61"                                                                                                                                                                                                                                                                                                        
##  [607] "/wiki/Pope_Innocent_IV"                                                                                                                                                                                                                                                                                               
##  [608] "/wiki/Louis_IX_of_France"                                                                                                                                                                                                                                                                                             
##  [609] "/wiki/Alphonse_of_Poitiers"                                                                                                                                                                                                                                                                                           
##  [610] "/wiki/Poitou"                                                                                                                                                                                                                                                                                                         
##  [611] "/wiki/Saragossa"                                                                                                                                                                                                                                                                                                      
##  [612] "/wiki/Saint_Dominguito_del_Val"                                                                                                                                                                                                                                                                                       
##  [613] "/wiki/Ritual_murder"                                                                                                                                                                                                                                                                                                  
##  [614] "/wiki/Seo_de_San_Salvador"                                                                                                                                                                                                                                                                                            
##  [615] "/wiki/Henry_III_of_England"                                                                                                                                                                                                                                                                                           
##  [616] "#cite_note-62"                                                                                                                                                                                                                                                                                                        
##  [617] "/wiki/Badge_of_shame"                                                                                                                                                                                                                                                                                                 
##  [618] "/wiki/Italian_Jews"                                                                                                                                                                                                                                                                                                   
##  [619] "/wiki/Cave_of_the_Patriarchs"                                                                                                                                                                                                                                                                                         
##  [620] "/wiki/Thomas_Aquinas"                                                                                                                                                                                                                                                                                                 
##  [621] "/wiki/Invincibly_ignorant"                                                                                                                                                                                                                                                                                            
##  [622] "/wiki/Disputation"                                                                                                                                                                                                                                                                                                    
##  [623] "/wiki/Barcelona"                                                                                                                                                                                                                                                                                                      
##  [624] "/wiki/Pope_Clement_IV"                                                                                                                                                                                                                                                                                                
##  [625] "/wiki/Simon_de_Montfort,_6th_Earl_of_Leicester"                                                                                                                                                                                                                                                                       
##  [626] "#cite_note-63"                                                                                                                                                                                                                                                                                                        
##  [627] "/wiki/Abraham_of_Augsburg"                                                                                                                                                                                                                                                                                            
##  [628] "/wiki/Torture"                                                                                                                                                                                                                                                                                                        
##  [629] "/wiki/Death_by_burning"                                                                                                                                                                                                                                                                                               
##  [630] "/wiki/Vienna"                                                                                                                                                                                                                                                                                                         
##  [631] "/wiki/Judenhut"                                                                                                                                                                                                                                                                                                       
##  [632] "/wiki/Yellow_badge"                                                                                                                                                                                                                                                                                                   
##  [633] "/wiki/Breslau"                                                                                                                                                                                                                                                                                                        
##  [634] "/wiki/Pforzheim"                                                                                                                                                                                                                                                                                                      
##  [635] "/wiki/Edward_I_of_England"                                                                                                                                                                                                                                                                                            
##  [636] "/wiki/Statute_of_the_Jewry"                                                                                                                                                                                                                                                                                           
##  [637] "/wiki/Yellow_badge"                                                                                                                                                                                                                                                                                                   
##  [638] "/wiki/Dominican_Order"                                                                                                                                                                                                                                                                                                
##  [639] "/wiki/Fez"                                                                                                                                                                                                                                                                                                            
##  [640] "#cite_note-google-64"                                                                                                                                                                                                                                                                                                 
##  [641] "/wiki/Pope_Nicholas_III"                                                                                                                                                                                                                                                                                              
##  [642] "/wiki/Real_estate"                                                                                                                                                                                                                                                                                                    
##  [643] "/wiki/Archbishop_of_Canterbury"                                                                                                                                                                                                                                                                                       
##  [644] "/wiki/Philip_III_of_France"                                                                                                                                                                                                                                                                                           
##  [645] "/wiki/Mainz"                                                                                                                                                                                                                                                                                                          
##  [646] "#cite_note-65"                                                                                                                                                                                                                                                                                                        
##  [647] "/wiki/Blood_libel"                                                                                                                                                                                                                                                                                                    
##  [648] "/wiki/Munich,_Germany"                                                                                                                                                                                                                                                                                                
##  [649] "/wiki/Oberwesel"                                                                                                                                                                                                                                                                                                      
##  [650] "/wiki/Troyes"                                                                                                                                                                                                                                                                                                         
##  [651] "#cite_note-66"                                                                                                                                                                                                                                                                                                        
##  [652] "/wiki/Bonn"                                                                                                                                                                                                                                                                                                           
##  [653] "/wiki/Germany"                                                                                                                                                                                                                                                                                                        
##  [654] "#cite_note-67"                                                                                                                                                                                                                                                                                                        
##  [655] "/wiki/Gascony"                                                                                                                                                                                                                                                                                                        
##  [656] "/wiki/Anjou"                                                                                                                                                                                                                                                                                                          
##  [657] "/wiki/Edict_of_Expulsion"                                                                                                                                                                                                                                                                                             
##  [658] "/wiki/Edward_I_of_England"                                                                                                                                                                                                                                                                                            
##  [659] "/wiki/England"                                                                                                                                                                                                                                                                                                        
##  [660] "/wiki/The_Crown"                                                                                                                                                                                                                                                                                                      
##  [661] "/wiki/Usury"                                                                                                                                                                                                                                                                                                          
##  [662] "/wiki/Host_desecration"                                                                                                                                                                                                                                                                                               
##  [663] "#cite_note-68"                                                                                                                                                                                                                                                                                                        
##  [664] "/wiki/Baghdad"                                                                                                                                                                                                                                                                                                        
##  [665] "/wiki/Philip_IV_of_France"                                                                                                                                                                                                                                                                                            
##  [666] "/wiki/Vizier"                                                                                                                                                                                                                                                                                                         
##  [667] "/wiki/Sa%27ad_al-Dawla"                                                                                                                                                                                                                                                                                               
##  [668] "/wiki/Persian_Jews"                                                                                                                                                                                                                                                                                                   
##  [669] "/wiki/Italian_Jewish"                                                                                                                                                                                                                                                                                                 
##  [670] "/wiki/Host_desecration"                                                                                                                                                                                                                                                                                               
##  [671] "/wiki/German_Jews"                                                                                                                                                                                                                                                                                                    
##  [672] "/wiki/Adolf,_King_of_Germany"                                                                                                                                                                                                                                                                                         
##  [673] "/wiki/Albert_I_of_Germany"                                                                                                                                                                                                                                                                                            
##  [674] "/wiki/Rintfleisch-Pogrom"                                                                                                                                                                                                                                                                                             
##  [675] "#cite_note-69"                                                                                                                                                                                                                                                                                                        
##  [676] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=15"                                                                                                                                                                                                                                                   
##  [677] "/wiki/Egypt"                                                                                                                                                                                                                                                                                                          
##  [678] "/wiki/Bilbeis"                                                                                                                                                                                                                                                                                                        
##  [679] "#cite_note-70"                                                                                                                                                                                                                                                                                                        
##  [680] "/wiki/Philip_IV_of_France"                                                                                                                                                                                                                                                                                            
##  [681] "/wiki/Louis_X_of_France"                                                                                                                                                                                                                                                                                              
##  [682] "/wiki/Frederick_II_of_Aragon"                                                                                                                                                                                                                                                                                         
##  [683] "/wiki/Yellow_badge"                                                                                                                                                                                                                                                                                                   
##  [684] "/wiki/Rashid-al-Din_Hamadani"                                                                                                                                                                                                                                                                                         
##  [685] "/wiki/Persian_Jewish"                                                                                                                                                                                                                                                                                                 
##  [686] "/wiki/Islam"                                                                                                                                                                                                                                                                                                          
##  [687] "/wiki/%C3%96ljeit%C3%BC"                                                                                                                                                                                                                                                                                              
##  [688] "/wiki/Breslau"                                                                                                                                                                                                                                                                                                        
##  [689] "#cite_note-Breslau-71"                                                                                                                                                                                                                                                                                                
##  [690] "/wiki/Milan"                                                                                                                                                                                                                                                                                                          
##  [691] "#cite_note-Milan-72"                                                                                                                                                                                                                                                                                                  
##  [692] "/wiki/Shepherds%27_Crusade"                                                                                                                                                                                                                                                                                           
##  [693] "/wiki/Henry_II_of_Castile"                                                                                                                                                                                                                                                                                            
##  [694] "/wiki/Yellow_badge"                                                                                                                                                                                                                                                                                                   
##  [695] "/wiki/1321_leper_scare"                                                                                                                                                                                                                                                                                               
##  [696] "/wiki/Philip_V_of_France"                                                                                                                                                                                                                                                                                             
##  [697] "/wiki/Damascus"                                                                                                                                                                                                                                                                                                       
##  [698] "#cite_note-Damascus-73"                                                                                                                                                                                                                                                                                               
##  [699] "/wiki/Charles_IV_of_France"                                                                                                                                                                                                                                                                                           
##  [700] "/wiki/Anti-Jewish"                                                                                                                                                                                                                                                                                                    
##  [701] "/wiki/Friar"                                                                                                                                                                                                                                                                                                          
##  [702] "/wiki/Aaron_ben_Zerah"                                                                                                                                                                                                                                                                                                
##  [703] "/wiki/Baghdad"                                                                                                                                                                                                                                                                                                        
##  [704] "/wiki/Franconia"                                                                                                                                                                                                                                                                                                      
##  [705] "/wiki/Alsace"                                                                                                                                                                                                                                                                                                         
##  [706] "/wiki/Arnold_von_Uissigheim"                                                                                                                                                                                                                                                                                          
##  [707] "/wiki/Aleinu"                                                                                                                                                                                                                                                                                                         
##  [708] "#cite_note-74"                                                                                                                                                                                                                                                                                                        
##  [709] "/wiki/Host_desecration"                                                                                                                                                                                                                                                                                               
##  [710] "/wiki/Eucharist"                                                                                                                                                                                                                                                                                                      
##  [711] "#cite_note-75"                                                                                                                                                                                                                                                                                                        
##  [712] "/wiki/Casimir_the_Great"                                                                                                                                                                                                                                                                                              
##  [713] "#cite_note-76"                                                                                                                                                                                                                                                                                                        
##  [714] "/wiki/Black_Death_persecutions"                                                                                                                                                                                                                                                                                       
##  [715] "/wiki/Basel_massacre"                                                                                                                                                                                                                                                                                                 
##  [716] "/wiki/File:1349_burning_of_Jews-European_chronicle_on_Black_Death.jpg"                                                                                                                                                                                                                                                
##  [717] "/wiki/File:1349_burning_of_Jews-European_chronicle_on_Black_Death.jpg"                                                                                                                                                                                                                                                
##  [718] "/wiki/Black_Death"                                                                                                                                                                                                                                                                                                    
##  [719] "/wiki/Erfurt_massacre"                                                                                                                                                                                                                                                                                                
##  [720] "/wiki/Black_Death_Jewish_persecutions"                                                                                                                                                                                                                                                                                
##  [721] "/wiki/Black_Death_Jewish_persecutions"                                                                                                                                                                                                                                                                                
##  [722] "/wiki/Zurich"                                                                                                                                                                                                                                                                                                         
##  [723] "/wiki/Black_Death_Jewish_persecutions"                                                                                                                                                                                                                                                                                
##  [724] "/wiki/Worms"                                                                                                                                                                                                                                                                                                          
##  [725] "/wiki/Black_Death_Jewish_persecutions"                                                                                                                                                                                                                                                                                
##  [726] "/wiki/Berlin"                                                                                                                                                                                                                                                                                                         
##  [727] "/wiki/Black_Death_Jewish_persecutions"                                                                                                                                                                                                                                                                                
##  [728] "#cite_note-Berlin-77"                                                                                                                                                                                                                                                                                                 
##  [729] "/wiki/Breslau"                                                                                                                                                                                                                                                                                                        
##  [730] "/wiki/Black_Death_Jewish_persecutions"                                                                                                                                                                                                                                                                                
##  [731] "#cite_note-Breslau-71"                                                                                                                                                                                                                                                                                                
##  [732] "/wiki/Black_Death_Jewish_persecutions"                                                                                                                                                                                                                                                                                
##  [733] "#cite_note-78"                                                                                                                                                                                                                                                                                                        
##  [734] "/wiki/Strasbourg_massacre"                                                                                                                                                                                                                                                                                            
##  [735] "/wiki/Black_Death_persecutions"                                                                                                                                                                                                                                                                                       
##  [736] "/wiki/Mainz"                                                                                                                                                                                                                                                                                                          
##  [737] "/wiki/Black_Death_Jewish_persecutions"                                                                                                                                                                                                                                                                                
##  [738] "#cite_note-79"                                                                                                                                                                                                                                                                                                        
##  [739] "/wiki/Brussels"                                                                                                                                                                                                                                                                                                       
##  [740] "/wiki/Black_Death_Jewish_persecutions"                                                                                                                                                                                                                                                                                
##  [741] "/wiki/History_of_the_Jews_in_Bulgaria"                                                                                                                                                                                                                                                                                
##  [742] "/wiki/Spain"                                                                                                                                                                                                                                                                                                          
##  [743] "/wiki/Charles_V_of_France"                                                                                                                                                                                                                                                                                            
##  [744] "/wiki/John_II_of_France"                                                                                                                                                                                                                                                                                              
##  [745] "/wiki/Breslau"                                                                                                                                                                                                                                                                                                        
##  [746] "#cite_note-Breslau-71"                                                                                                                                                                                                                                                                                                
##  [747] "/wiki/Miranda_de_Ebro"                                                                                                                                                                                                                                                                                                
##  [748] "/wiki/Peter_of_Castile"                                                                                                                                                                                                                                                                                               
##  [749] "/wiki/Sephardic_Jew"                                                                                                                                                                                                                                                                                                  
##  [750] "#cite_note-80"                                                                                                                                                                                                                                                                                                        
##  [751] "/wiki/Lorraine"                                                                                                                                                                                                                                                                                                       
##  [752] "/wiki/Host_desecration"                                                                                                                                                                                                                                                                                               
##  [753] "/wiki/Barcelona"                                                                                                                                                                                                                                                                                                      
##  [754] "/wiki/Toledo,_Spain"                                                                                                                                                                                                                                                                                                  
##  [755] "/wiki/Brussels_massacre"                                                                                                                                                                                                                                                                                              
##  [756] "/wiki/Host_desecration"                                                                                                                                                                                                                                                                                               
##  [757] "/wiki/Hungary"                                                                                                                                                                                                                                                                                                        
##  [758] "/wiki/Greece"                                                                                                                                                                                                                                                                                                         
##  [759] "#cite_note-81"                                                                                                                                                                                                                                                                                                        
##  [760] "/wiki/Host_desecration"                                                                                                                                                                                                                                                                                               
##  [761] "/wiki/Teruel"                                                                                                                                                                                                                                                                                                         
##  [762] "/wiki/Huesca"                                                                                                                                                                                                                                                                                                         
##  [763] "#cite_note-Host-82"                                                                                                                                                                                                                                                                                                   
##  [764] "/wiki/Noerdlingen"                                                                                                                                                                                                                                                                                                    
##  [765] "#cite_note-83"                                                                                                                                                                                                                                                                                                        
##  [766] "/wiki/Wenceslaus,_Holy_Roman_Emperor"                                                                                                                                                                                                                                                                                 
##  [767] "/wiki/Swabian_League"                                                                                                                                                                                                                                                                                                 
##  [768] "/wiki/Strasbourg"                                                                                                                                                                                                                                                                                                     
##  [769] "/wiki/Prague"                                                                                                                                                                                                                                                                                                         
##  [770] "/wiki/Holy_Week"                                                                                                                                                                                                                                                                                                      
##  [771] "/wiki/Ferrand_Martinez"                                                                                                                                                                                                                                                                                               
##  [772] "/wiki/Ferrand_Martinez"                                                                                                                                                                                                                                                                                               
##  [773] "/wiki/Castile_(historical_region)"                                                                                                                                                                                                                                                                                    
##  [774] "/wiki/Valencia"                                                                                                                                                                                                                                                                                                       
##  [775] "/wiki/Catalonia"                                                                                                                                                                                                                                                                                                      
##  [776] "/wiki/Aragon"                                                                                                                                                                                                                                                                                                         
##  [777] "/wiki/Pogrom"                                                                                                                                                                                                                                                                                                         
##  [778] "/wiki/Toledo,_Spain"                                                                                                                                                                                                                                                                                                  
##  [779] "/wiki/Seventeenth_of_Tammuz"                                                                                                                                                                                                                                                                                          
##  [780] "/wiki/Israel_Alnaqua"                                                                                                                                                                                                                                                                                                 
##  [781] "/wiki/Valencia"                                                                                                                                                                                                                                                                                                       
##  [782] "/wiki/Palma,_Majorca"                                                                                                                                                                                                                                                                                                 
##  [783] "/wiki/Barcelona"                                                                                                                                                                                                                                                                                                      
##  [784] "/wiki/Damascus"                                                                                                                                                                                                                                                                                                       
##  [785] "#cite_note-Damascus-73"                                                                                                                                                                                                                                                                                               
##  [786] "/wiki/Sicilian_Jews"                                                                                                                                                                                                                                                                                                  
##  [787] "/wiki/Erice"                                                                                                                                                                                                                                                                                                          
##  [788] "/wiki/Catania"                                                                                                                                                                                                                                                                                                        
##  [789] "/wiki/Syracuse,_Sicily"                                                                                                                                                                                                                                                                                               
##  [790] "#cite_note-Sicily-84"                                                                                                                                                                                                                                                                                                 
##  [791] "/wiki/Charles_VI_of_France"                                                                                                                                                                                                                                                                                           
##  [792] "/wiki/Jewish_ghettos"                                                                                                                                                                                                                                                                                                 
##  [793] "/wiki/History_of_the_Jews_in_Slovenia"                                                                                                                                                                                                                                                                                
##  [794] "/wiki/Host_desecration"                                                                                                                                                                                                                                                                                               
##  [795] "/wiki/Pozna%C5%84"                                                                                                                                                                                                                                                                                                    
##  [796] "/wiki/Prague"                                                                                                                                                                                                                                                                                                         
##  [797] "/wiki/Yom-Tov_Lipmann-Muhlhausen"                                                                                                                                                                                                                                                                                     
##  [798] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=16"                                                                                                                                                                                                                                                   
##  [799] "/wiki/Host_desecration"                                                                                                                                                                                                                                                                                               
##  [800] "#cite_note-Glogau-85"                                                                                                                                                                                                                                                                                                 
##  [801] "/wiki/Salzburg"                                                                                                                                                                                                                                                                                                       
##  [802] "/wiki/Hallein"                                                                                                                                                                                                                                                                                                        
##  [803] "/wiki/Host_desecration"                                                                                                                                                                                                                                                                                               
##  [804] "#cite_note-Host-82"                                                                                                                                                                                                                                                                                                   
##  [805] "/wiki/Krak%C3%B3w"                                                                                                                                                                                                                                                                                                    
##  [806] "/wiki/Dominican_Order"                                                                                                                                                                                                                                                                                                
##  [807] "/wiki/Vincent_Ferrer"                                                                                                                                                                                                                                                                                                 
##  [808] "/wiki/Disputation"                                                                                                                                                                                                                                                                                                    
##  [809] "/wiki/Tortosa"                                                                                                                                                                                                                                                                                                        
##  [810] "/wiki/Antipope_Benedict_XIII"                                                                                                                                                                                                                                                                                         
##  [811] "/wiki/Lyon"                                                                                                                                                                                                                                                                                                           
##  [812] "/wiki/Vienna"                                                                                                                                                                                                                                                                                                         
##  [813] "/wiki/History_of_the_Jews_in_Vienna"                                                                                                                                                                                                                                                                                  
##  [814] "/wiki/Pope_Martin_V"                                                                                                                                                                                                                                                                                                  
##  [815] "/wiki/Christianity"                                                                                                                                                                                                                                                                                                   
##  [816] "/wiki/Judaism"                                                                                                                                                                                                                                                                                                        
##  [817] "/wiki/Fraud"                                                                                                                                                                                                                                                                                                          
##  [818] "/wiki/Zurich"                                                                                                                                                                                                                                                                                                         
##  [819] "#cite_note-Zurich-86"                                                                                                                                                                                                                                                                                                 
##  [820] "/wiki/Iglau"                                                                                                                                                                                                                                                                                                          
##  [821] "/wiki/Hussites"                                                                                                                                                                                                                                                                                                       
##  [822] "#cite_note-Iglau-87"                                                                                                                                                                                                                                                                                                  
##  [823] "/wiki/Bern"                                                                                                                                                                                                                                                                                                           
##  [824] "#cite_note-Bern-88"                                                                                                                                                                                                                                                                                                   
##  [825] "/wiki/Fribourg"                                                                                                                                                                                                                                                                                                       
##  [826] "#cite_note-89"                                                                                                                                                                                                                                                                                                        
##  [827] "/wiki/Aix-en-Provence"                                                                                                                                                                                                                                                                                                
##  [828] "#cite_note-90"                                                                                                                                                                                                                                                                                                        
##  [829] "/wiki/Majorca"                                                                                                                                                                                                                                                                                                        
##  [830] "#cite_note-Zurich-86"                                                                                                                                                                                                                                                                                                 
##  [831] "/wiki/Augsburg"                                                                                                                                                                                                                                                                                                       
##  [832] "/wiki/D%C3%BCsseldorf"                                                                                                                                                                                                                                                                                                
##  [833] "/wiki/Mellah"                                                                                                                                                                                                                                                                                                         
##  [834] "/wiki/Morocco"                                                                                                                                                                                                                                                                                                        
##  [835] "/wiki/Glogau"                                                                                                                                                                                                                                                                                                         
##  [836] "#cite_note-Glogau-85"                                                                                                                                                                                                                                                                                                 
##  [837] "#cite_note-Bavaria-91"                                                                                                                                                                                                                                                                                                
##  [838] "/wiki/Utrecht"                                                                                                                                                                                                                                                                                                        
##  [839] "#cite_note-Netherlands-92"                                                                                                                                                                                                                                                                                            
##  [840] "/wiki/Casimir_IV_Jagiellon"                                                                                                                                                                                                                                                                                           
##  [841] "/wiki/Poland"                                                                                                                                                                                                                                                                                                         
##  [842] "/wiki/Racial_purity"                                                                                                                                                                                                                                                                                                  
##  [843] "/wiki/Converso"                                                                                                                                                                                                                                                                                                       
##  [844] "/wiki/Pope_Nicholas_V"                                                                                                                                                                                                                                                                                                
##  [845] "/wiki/Louis_IX,_Duke_of_Bavaria"                                                                                                                                                                                                                                                                                      
##  [846] "/wiki/Host_desecration"                                                                                                                                                                                                                                                                                               
##  [847] "#cite_note-93"                                                                                                                                                                                                                                                                                                        
##  [848] "/wiki/Erfurt"                                                                                                                                                                                                                                                                                                         
##  [849] "/wiki/Inquisition"                                                                                                                                                                                                                                                                                                    
##  [850] "/wiki/Marrano"                                                                                                                                                                                                                                                                                                        
##  [851] "/wiki/Crypto-Judaism"                                                                                                                                                                                                                                                                                                 
##  [852] "/wiki/1465_Moroccan_revolt"                                                                                                                                                                                                                                                                                           
##  [853] "/wiki/Marinid"                                                                                                                                                                                                                                                                                                        
##  [854] "/wiki/Vizier"                                                                                                                                                                                                                                                                                                         
##  [855] "/wiki/Fes"                                                                                                                                                                                                                                                                                                            
##  [856] "#cite_note-94"                                                                                                                                                                                                                                                                                                        
##  [857] "#cite_note-95"                                                                                                                                                                                                                                                                                                        
##  [858] "/wiki/Qaitbay"                                                                                                                                                                                                                                                                                                        
##  [859] "#cite_note-96"                                                                                                                                                                                                                                                                                                        
##  [860] "/wiki/Bavaria"                                                                                                                                                                                                                                                                                                        
##  [861] "/wiki/Bulgaria"                                                                                                                                                                                                                                                                                                       
##  [862] "#cite_note-Sofia-97"                                                                                                                                                                                                                                                                                                  
##  [863] "/wiki/Marranos"                                                                                                                                                                                                                                                                                                       
##  [864] "/wiki/Valladolid"                                                                                                                                                                                                                                                                                                     
##  [865] "/wiki/C%C3%B3rdoba,_Spain"                                                                                                                                                                                                                                                                                            
##  [866] "/wiki/Segovia"                                                                                                                                                                                                                                                                                                        
##  [867] "/wiki/Ciudad_Real"                                                                                                                                                                                                                                                                                                    
##  [868] "/w/index.php?title=Assumption_day&action=edit&redlink=1"                                                                                                                                                                                                                                                              
##  [869] "/wiki/Modica"                                                                                                                                                                                                                                                                                                         
##  [870] "/wiki/Sicilian_Jews"                                                                                                                                                                                                                                                                                                  
##  [871] "/wiki/La_Giudecca"                                                                                                                                                                                                                                                                                                    
##  [872] "/wiki/File:Schedel_judenfeindlichkeit.jpg"                                                                                                                                                                                                                                                                            
##  [873] "/wiki/File:Schedel_judenfeindlichkeit.jpg"                                                                                                                                                                                                                                                                            
##  [874] "/wiki/Simon_of_Trent"                                                                                                                                                                                                                                                                                                 
##  [875] "/wiki/Giovanni_da_Capistrano"                                                                                                                                                                                                                                                                                         
##  [876] "/wiki/Franciscan"                                                                                                                                                                                                                                                                                                     
##  [877] "/wiki/Bernardine_of_Feltre"                                                                                                                                                                                                                                                                                           
##  [878] "/wiki/Simon_of_Trent"                                                                                                                                                                                                                                                                                                 
##  [879] "/wiki/Pope_Sixtus_V"                                                                                                                                                                                                                                                                                                  
##  [880] "/wiki/Pope_Paul_VI"                                                                                                                                                                                                                                                                                                   
##  [881] "/wiki/Passau"                                                                                                                                                                                                                                                                                                         
##  [882] "#cite_note-Bavaria-91"                                                                                                                                                                                                                                                                                                
##  [883] "/wiki/Spanish_Inquisition"                                                                                                                                                                                                                                                                                            
##  [884] "/wiki/History_of_the_Jews_in_Arles"                                                                                                                                                                                                                                                                                   
##  [885] "/wiki/Heresy"                                                                                                                                                                                                                                                                                                         
##  [886] "/wiki/Judaizer"                                                                                                                                                                                                                                                                                                       
##  [887] "/wiki/Eastern_Orthodoxy"                                                                                                                                                                                                                                                                                              
##  [888] "/wiki/Muscovy"                                                                                                                                                                                                                                                                                                        
##  [889] "/wiki/Tom%C3%A1s_de_Torquemada"                                                                                                                                                                                                                                                                                       
##  [890] "/wiki/Salamanca"                                                                                                                                                                                                                                                                                                      
##  [891] "/wiki/Geneva"                                                                                                                                                                                                                                                                                                         
##  [892] "/wiki/Blood_libel"                                                                                                                                                                                                                                                                                                    
##  [893] "/wiki/Holy_Child_of_La_Guardia"                                                                                                                                                                                                                                                                                       
##  [894] "/wiki/Muhammad_al-Maghili"                                                                                                                                                                                                                                                                                            
##  [895] "/wiki/Tlemcen"                                                                                                                                                                                                                                                                                                        
##  [896] "/wiki/Tuat"                                                                                                                                                                                                                                                                                                           
##  [897] "#cite_note-Tuat-98"                                                                                                                                                                                                                                                                                                   
##  [898] "/wiki/Ferdinand_II_of_Aragon"                                                                                                                                                                                                                                                                                         
##  [899] "/wiki/Isabella_I_of_Castile"                                                                                                                                                                                                                                                                                          
##  [900] "/wiki/Alhambra_decree"                                                                                                                                                                                                                                                                                                
##  [901] "/wiki/Land_of_Israel"                                                                                                                                                                                                                                                                                                 
##  [902] "/wiki/Mecklenburg"                                                                                                                                                                                                                                                                                                    
##  [903] "/wiki/Askia_Mohammad_I"                                                                                                                                                                                                                                                                                               
##  [904] "/wiki/Muhammad_al-Maghili"                                                                                                                                                                                                                                                                                            
##  [905] "/wiki/Timbuktu"                                                                                                                                                                                                                                                                                                       
##  [906] "/wiki/John_II_of_Portugal"                                                                                                                                                                                                                                                                                            
##  [907] "/wiki/S%C3%A3o_Tom%C3%A9"                                                                                                                                                                                                                                                                                             
##  [908] "/wiki/Sicily"                                                                                                                                                                                                                                                                                                         
##  [909] "/wiki/Trnava"                                                                                                                                                                                                                                                                                                         
##  [910] "/wiki/Jan_I_Olbracht"                                                                                                                                                                                                                                                                                                 
##  [911] "/wiki/Kazimierz"                                                                                                                                                                                                                                                                                                      
##  [912] "/wiki/Lithuania"                                                                                                                                                                                                                                                                                                      
##  [913] "#cite_note-Grodno-99"                                                                                                                                                                                                                                                                                                 
##  [914] "/wiki/Lecce"                                                                                                                                                                                                                                                                                                          
##  [915] "/wiki/History_of_the_Jews_in_Naples"                                                                                                                                                                                                                                                                                  
##  [916] "/wiki/Styria"                                                                                                                                                                                                                                                                                                         
##  [917] "#cite_note-100"                                                                                                                                                                                                                                                                                                       
##  [918] "/wiki/Forced_conversion"                                                                                                                                                                                                                                                                                              
##  [919] "/wiki/Portugal"                                                                                                                                                                                                                                                                                                       
##  [920] "/wiki/Graz"                                                                                                                                                                                                                                                                                                           
##  [921] "/wiki/Manuel_I_of_Portugal"                                                                                                                                                                                                                                                                                           
##  [922] "/wiki/Alexander_of_Poland"                                                                                                                                                                                                                                                                                            
##  [923] "/wiki/Lithuania"                                                                                                                                                                                                                                                                                                      
##  [924] "/wiki/French_Jews"                                                                                                                                                                                                                                                                                                    
##  [925] "/wiki/Nuremberg"                                                                                                                                                                                                                                                                                                      
##  [926] "/wiki/Verona"                                                                                                                                                                                                                                                                                                         
##  [927] "#cite_note-101"                                                                                                                                                                                                                                                                                                       
##  [928] "/wiki/New_Christians"                                                                                                                                                                                                                                                                                                 
##  [929] "#cite_note-102"                                                                                                                                                                                                                                                                                                       
##  [930] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=17"                                                                                                                                                                                                                                                   
##  [931] "/wiki/File:Wormsjews.jpg"                                                                                                                                                                                                                                                                                             
##  [932] "/wiki/File:Wormsjews.jpg"                                                                                                                                                                                                                                                                                             
##  [933] "/wiki/Worms,_Germany"                                                                                                                                                                                                                                                                                                 
##  [934] "/wiki/Yellow_badge"                                                                                                                                                                                                                                                                                                   
##  [935] "/wiki/Stereotype"                                                                                                                                                                                                                                                                                                     
##  [936] "/wiki/French_Jews"                                                                                                                                                                                                                                                                                                    
##  [937] "/wiki/Plze%C5%88"                                                                                                                                                                                                                                                                                                     
##  [938] "/wiki/Host_desecration"                                                                                                                                                                                                                                                                                               
##  [939] "#cite_note-Pilsen-103"                                                                                                                                                                                                                                                                                                
##  [940] "/wiki/Moscow"                                                                                                                                                                                                                                                                                                         
##  [941] "#cite_note-104"                                                                                                                                                                                                                                                                                                       
##  [942] "/wiki/%C4%8Cesk%C3%A9_Bud%C4%9Bjovice"                                                                                                                                                                                                                                                                                
##  [943] "/wiki/Marrano"                                                                                                                                                                                                                                                                                                        
##  [944] "/wiki/Lisbon"                                                                                                                                                                                                                                                                                                         
##  [945] "/wiki/Portugal"                                                                                                                                                                                                                                                                                                       
##  [946] "/wiki/Johannes_Pfefferkorn"                                                                                                                                                                                                                                                                                           
##  [947] "/wiki/Maximilian_I,_Holy_Roman_Emperor"                                                                                                                                                                                                                                                                               
##  [948] "/wiki/Hebrew_Bible"                                                                                                                                                                                                                                                                                                   
##  [949] "/wiki/Frankfurt"                                                                                                                                                                                                                                                                                                      
##  [950] "/wiki/Brandenburg,_Germany"                                                                                                                                                                                                                                                                                           
##  [951] "/wiki/Host_desecration"                                                                                                                                                                                                                                                                                               
##  [952] "/wiki/Berlin"                                                                                                                                                                                                                                                                                                         
##  [953] "/wiki/Calabria"                                                                                                                                                                                                                                                                                                       
##  [954] "/wiki/Jews"                                                                                                                                                                                                                                                                                                           
##  [955] "/wiki/New_Christians"                                                                                                                                                                                                                                                                                                 
##  [956] "#cite_note-Calabria-105"                                                                                                                                                                                                                                                                                              
##  [957] "/wiki/Naples"                                                                                                                                                                                                                                                                                                         
##  [958] "/wiki/Conegliano"                                                                                                                                                                                                                                                                                                     
##  [959] "#cite_note-106"                                                                                                                                                                                                                                                                                                       
##  [960] "/wiki/History_of_the_Jews_in_Apulia"                                                                                                                                                                                                                                                                                  
##  [961] "/wiki/Mittelberg"                                                                                                                                                                                                                                                                                                     
##  [962] "/wiki/Host_desecration"                                                                                                                                                                                                                                                                                               
##  [963] "#cite_note-107"                                                                                                                                                                                                                                                                                                       
##  [964] "/wiki/Genoa"                                                                                                                                                                                                                                                                                                          
##  [965] "#cite_note-Genoa-108"                                                                                                                                                                                                                                                                                                 
##  [966] "/wiki/Ljubljana"                                                                                                                                                                                                                                                                                                      
##  [967] "#cite_note-Ljubljana-109"                                                                                                                                                                                                                                                                                             
##  [968] "/wiki/Ghetto"                                                                                                                                                                                                                                                                                                         
##  [969] "/wiki/Venice"                                                                                                                                                                                                                                                                                                         
##  [970] "/wiki/Hebron"                                                                                                                                                                                                                                                                                                         
##  [971] "/wiki/Martin_Luther"                                                                                                                                                                                                                                                                                                  
##  [972] "/wiki/Protestant_Reformation"                                                                                                                                                                                                                                                                                         
##  [973] "/wiki/Corpus_Juris_Civilis#Servitus_Judaeorum"                                                                                                                                                                                                                                                                        
##  [974] "/wiki/Regensburg"                                                                                                                                                                                                                                                                                                     
##  [975] "/wiki/Pope_Leo_X"                                                                                                                                                                                                                                                                                                     
##  [976] "/wiki/Venice"                                                                                                                                                                                                                                                                                                         
##  [977] "#cite_note-110"                                                                                                                                                                                                                                                                                                       
##  [978] "#cite_note-111"                                                                                                                                                                                                                                                                                                       
##  [979] "/wiki/Jewish_history_of_Sopron"                                                                                                                                                                                                                                                                                       
##  [980] "/wiki/Croatia"                                                                                                                                                                                                                                                                                                        
##  [981] "/wiki/History_of_the_Jews_in_Slovakia"                                                                                                                                                                                                                                                                                
##  [982] "/wiki/Battle_of_Moh%C3%A1cs"                                                                                                                                                                                                                                                                                          
##  [983] "/wiki/Florence"                                                                                                                                                                                                                                                                                                       
##  [984] "/wiki/Judaizer"                                                                                                                                                                                                                                                                                                       
##  [985] "/wiki/Mexico_City"                                                                                                                                                                                                                                                                                                    
##  [986] "/wiki/Auto_da_fe"                                                                                                                                                                                                                                                                                                     
##  [987] "/wiki/Pezinok"                                                                                                                                                                                                                                                                                                        
##  [988] "#cite_note-Pezinok-112"                                                                                                                                                                                                                                                                                               
##  [989] "/wiki/Solomon_Molcho"                                                                                                                                                                                                                                                                                                 
##  [990] "/wiki/Tunis"                                                                                                                                                                                                                                                                                                          
##  [991] "/wiki/Nauheim"                                                                                                                                                                                                                                                                                                        
##  [992] "#cite_note-113"                                                                                                                                                                                                                                                                                                       
##  [993] "/wiki/Katarzyna_Weiglowa"                                                                                                                                                                                                                                                                                             
##  [994] "/wiki/Roman_Catholic"                                                                                                                                                                                                                                                                                                 
##  [995] "/wiki/Kingdom_of_Poland"                                                                                                                                                                                                                                                                                              
##  [996] "/wiki/Jesus_Christ"                                                                                                                                                                                                                                                                                                   
##  [997] "/wiki/Son_of_God"                                                                                                                                                                                                                                                                                                     
##  [998] "/wiki/Martyr"                                                                                                                                                                                                                                                                                                         
##  [999] "/wiki/Exile"                                                                                                                                                                                                                                                                                                          
## [1000] "/wiki/Prague"                                                                                                                                                                                                                                                                                                         
## [1001] "/wiki/Basel"                                                                                                                                                                                                                                                                                                          
## [1002] "#cite_note-Basel_JE-114"                                                                                                                                                                                                                                                                                              
## [1003] "#cite_note-115"                                                                                                                                                                                                                                                                                                       
## [1004] "/wiki/File:1543_On_the_Jews_and_Their_Lies_by_Martin_Luther.jpg"                                                                                                                                                                                                                                                      
## [1005] "/wiki/File:1543_On_the_Jews_and_Their_Lies_by_Martin_Luther.jpg"                                                                                                                                                                                                                                                      
## [1006] "/wiki/On_the_Jews_and_Their_Lies"                                                                                                                                                                                                                                                                                     
## [1007] "/wiki/On_the_Jews_and_Their_Lies"                                                                                                                                                                                                                                                                                     
## [1008] "/wiki/Religious_conversion"                                                                                                                                                                                                                                                                                           
## [1009] "/wiki/John_Frederick,_Elector_of_Saxony"                                                                                                                                                                                                                                                                              
## [1010] "#cite_note-116"                                                                                                                                                                                                                                                                                                       
## [1011] "/wiki/Martin_Luther_and_the_Jews"                                                                                                                                                                                                                                                                                     
## [1012] "/wiki/Ivan_the_Terrible"                                                                                                                                                                                                                                                                                              
## [1013] "/wiki/Sigismund_II_Augustus"                                                                                                                                                                                                                                                                                          
## [1014] "/wiki/Asolo"                                                                                                                                                                                                                                                                                                          
## [1015] "#cite_note-117"                                                                                                                                                                                                                                                                                                       
## [1016] "/wiki/Genoa"                                                                                                                                                                                                                                                                                                          
## [1017] "/wiki/Pope_Julius_III"                                                                                                                                                                                                                                                                                                
## [1018] "/wiki/Pope_Paul_IV"                                                                                                                                                                                                                                                                                                   
## [1019] "/w/index.php?title=Cornelio_da_Montalcino&action=edit&redlink=1"                                                                                                                                                                                                                                                      
## [1020] "/wiki/Franciscan"                                                                                                                                                                                                                                                                                                     
## [1021] "/wiki/Papal_Bull"                                                                                                                                                                                                                                                                                                     
## [1022] "/wiki/Cum_nimis_absurdum"                                                                                                                                                                                                                                                                                             
## [1023] "/wiki/Yellow_badge"                                                                                                                                                                                                                                                                                                   
## [1024] "/wiki/Yellow_badge"                                                                                                                                                                                                                                                                                                   
## [1025] "/wiki/History_of_the_Jews_in_Ancona#Martyrs_of_1555"                                                                                                                                                                                                                                                                  
## [1026] "/wiki/Host_desecration"                                                                                                                                                                                                                                                                                               
## [1027] "#cite_note-118"                                                                                                                                                                                                                                                                                                       
## [1028] "/wiki/Recanati"                                                                                                                                                                                                                                                                                                       
## [1029] "/wiki/Yom_Kippur"                                                                                                                                                                                                                                                                                                     
## [1030] "/wiki/Pope_Paul_IV"                                                                                                                                                                                                                                                                                                   
## [1031] "/wiki/Goa_Inquisition"                                                                                                                                                                                                                                                                                                
## [1032] "/wiki/Ferdinand_I,_Holy_Roman_Emperor"                                                                                                                                                                                                                                                                                
## [1033] "/wiki/Polotsk"                                                                                                                                                                                                                                                                                                        
## [1034] "/wiki/Lithuania"                                                                                                                                                                                                                                                                                                      
## [1035] "/wiki/Russian_Orthodox_Church"                                                                                                                                                                                                                                                                                        
## [1036] "/wiki/Western_Dvina"                                                                                                                                                                                                                                                                                                  
## [1037] "/wiki/Brest,_Belarus"                                                                                                                                                                                                                                                                                                 
## [1038] "/wiki/Sigismund_II_Augustus"                                                                                                                                                                                                                                                                                          
## [1039] "/wiki/Pope_Pius_V"                                                                                                                                                                                                                                                                                                    
## [1040] "/wiki/Papal_States"                                                                                                                                                                                                                                                                                                   
## [1041] "/wiki/Pope_Pius_V"                                                                                                                                                                                                                                                                                                    
## [1042] "/wiki/Bologna"                                                                                                                                                                                                                                                                                                        
## [1043] "#cite_note-Bologna-119"                                                                                                                                                                                                                                                                                               
## [1044] "/wiki/Pope_Pius_V"                                                                                                                                                                                                                                                                                                    
## [1045] "/wiki/Berlin"                                                                                                                                                                                                                                                                                                         
## [1046] "#cite_note-Berlin-77"                                                                                                                                                                                                                                                                                                 
## [1047] "/wiki/Mexican_Inquisition"                                                                                                                                                                                                                                                                                            
## [1048] "/wiki/Auto-da-f%C3%A9"                                                                                                                                                                                                                                                                                                
## [1049] "/wiki/Pope_Gregory_XIII"                                                                                                                                                                                                                                                                                              
## [1050] "/wiki/Conversos"                                                                                                                                                                                                                                                                                                      
## [1051] "/wiki/Rome"                                                                                                                                                                                                                                                                                                           
## [1052] "#cite_note-120"                                                                                                                                                                                                                                                                                                       
## [1053] "/wiki/Pope_Sixtus_V"                                                                                                                                                                                                                                                                                                  
## [1054] "/wiki/Mikulov"                                                                                                                                                                                                                                                                                                        
## [1055] "/wiki/Philip_II_of_Spain"                                                                                                                                                                                                                                                                                             
## [1056] "/wiki/Lombardy"                                                                                                                                                                                                                                                                                                       
## [1057] "#cite_note-Remona-121"                                                                                                                                                                                                                                                                                                
## [1058] "#cite_note-122"                                                                                                                                                                                                                                                                                                       
## [1059] "/wiki/Pope_Clement_VIII"                                                                                                                                                                                                                                                                                              
## [1060] "/wiki/Bologna"                                                                                                                                                                                                                                                                                                        
## [1061] "#cite_note-Bologna-119"                                                                                                                                                                                                                                                                                               
## [1062] "/wiki/Lima"                                                                                                                                                                                                                                                                                                           
## [1063] "/wiki/Peru"                                                                                                                                                                                                                                                                                                           
## [1064] "#cite_note-Lima-123"                                                                                                                                                                                                                                                                                                  
## [1065] "/wiki/Francisca_Nu%C3%B1ez_de_Carabajal"                                                                                                                                                                                                                                                                              
## [1066] "/wiki/Marrano"                                                                                                                                                                                                                                                                                                        
## [1067] "/wiki/New_Spain"                                                                                                                                                                                                                                                                                                      
## [1068] "/wiki/Mexican_Inquisition"                                                                                                                                                                                                                                                                                            
## [1069] "/wiki/Judaizers"                                                                                                                                                                                                                                                                                                      
## [1070] "/wiki/Auto_de_fe"                                                                                                                                                                                                                                                                                                     
## [1071] "#cite_note-124"                                                                                                                                                                                                                                                                                                       
## [1072] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=18"                                                                                                                                                                                                                                                   
## [1073] "/wiki/Lima"                                                                                                                                                                                                                                                                                                           
## [1074] "/wiki/Peru"                                                                                                                                                                                                                                                                                                           
## [1075] "#cite_note-Lima-123"                                                                                                                                                                                                                                                                                                  
## [1076] "/w/index.php?title=Frei_Diogo_da_Assumpc%C3%A3o&action=edit&redlink=1"                                                                                                                                                                                                                                                
## [1077] "/wiki/Lisbon"                                                                                                                                                                                                                                                                                                         
## [1078] "/wiki/Lima"                                                                                                                                                                                                                                                                                                           
## [1079] "/wiki/Peru"                                                                                                                                                                                                                                                                                                           
## [1080] "#cite_note-Lima-123"                                                                                                                                                                                                                                                                                                  
## [1081] "/wiki/Jesuit_order"                                                                                                                                                                                                                                                                                                   
## [1082] "/wiki/Pope_Paul_V"                                                                                                                                                                                                                                                                                                    
## [1083] "/wiki/Senate_of_Hamburg"                                                                                                                                                                                                                                                                                              
## [1084] "/wiki/Hamburg"                                                                                                                                                                                                                                                                                                        
## [1085] "/wiki/File:1614jews.jpg"                                                                                                                                                                                                                                                                                              
## [1086] "/wiki/File:1614jews.jpg"                                                                                                                                                                                                                                                                                              
## [1087] "/wiki/Haman_(Judaism)"                                                                                                                                                                                                                                                                                                
## [1088] "/wiki/Frankfurt"                                                                                                                                                                                                                                                                                                      
## [1089] "/wiki/Louis_XIII_of_France"                                                                                                                                                                                                                                                                                           
## [1090] "/wiki/Worms,_Germany"                                                                                                                                                                                                                                                                                                 
## [1091] "/wiki/Grodno"                                                                                                                                                                                                                                                                                                         
## [1092] "#cite_note-Grodno-99"                                                                                                                                                                                                                                                                                                 
## [1093] "/wiki/Mirror_of_the_Polish_Crown"                                                                                                                                                                                                                                                                                     
## [1094] "/wiki/Sebastian_Miczy%C5%84ski"                                                                                                                                                                                                                                                                                       
## [1095] "/wiki/King_Christian_IV"                                                                                                                                                                                                                                                                                              
## [1096] "/wiki/Ghetto"                                                                                                                                                                                                                                                                                                         
## [1097] "/wiki/Ferrara,_Italy"                                                                                                                                                                                                                                                                                                 
## [1098] "/wiki/History_of_the_Jews_in_Vienna"                                                                                                                                                                                                                                                                                  
## [1099] "/wiki/Leopoldstadt"                                                                                                                                                                                                                                                                                                   
## [1100] "/wiki/Roman_Jews"                                                                                                                                                                                                                                                                                                     
## [1101] "#cite_note-125"                                                                                                                                                                                                                                                                                                       
## [1102] "/wiki/Host_desecration"                                                                                                                                                                                                                                                                                               
## [1103] "/wiki/Padua"                                                                                                                                                                                                                                                                                                          
## [1104] "#cite_note-126"                                                                                                                                                                                                                                                                                                       
## [1105] "/wiki/Ladislaus_IV_of_Poland"                                                                                                                                                                                                                                                                                         
## [1106] "/wiki/Antisemitic"                                                                                                                                                                                                                                                                                                    
## [1107] "/wiki/Auto-da-f%C3%A9"                                                                                                                                                                                                                                                                                                
## [1108] "#cite_note-127"                                                                                                                                                                                                                                                                                                       
## [1109] "/wiki/Nicolas_Antoine"                                                                                                                                                                                                                                                                                                
## [1110] "/wiki/Radom"                                                                                                                                                                                                                                                                                                          
## [1111] "#cite_note-Radom-128"                                                                                                                                                                                                                                                                                                 
## [1112] "/wiki/Pogrom"                                                                                                                                                                                                                                                                                                         
## [1113] "/wiki/Vilna"                                                                                                                                                                                                                                                                                                          
## [1114] "/wiki/Krak%C3%B3w"                                                                                                                                                                                                                                                                                                    
## [1115] "/wiki/Auto-da-f%C3%A9"                                                                                                                                                                                                                                                                                                
## [1116] "/wiki/Lima"                                                                                                                                                                                                                                                                                                           
## [1117] "/wiki/Peru"                                                                                                                                                                                                                                                                                                           
## [1118] "/wiki/Francisco_Maldonado_de_Silva"                                                                                                                                                                                                                                                                                   
## [1119] "/wiki/Roman_Jews"                                                                                                                                                                                                                                                                                                     
## [1120] "/wiki/Pope_Urban_VIII"                                                                                                                                                                                                                                                                                                
## [1121] "#cite_note-129"                                                                                                                                                                                                                                                                                                       
## [1122] "#cite_note-Lenchitza-130"                                                                                                                                                                                                                                                                                             
## [1123] "/wiki/Isaac_de_Castro_Tartas"                                                                                                                                                                                                                                                                                         
## [1124] "/wiki/Shema"                                                                                                                                                                                                                                                                                                          
## [1125] "#cite_note-131"                                                                                                                                                                                                                                                                                                       
## [1126] "/wiki/Ukraine"                                                                                                                                                                                                                                                                                                        
## [1127] "/wiki/Cossack"                                                                                                                                                                                                                                                                                                        
## [1128] "/wiki/Bohdan_Chmielnicki"                                                                                                                                                                                                                                                                                             
## [1129] "/wiki/Poland"                                                                                                                                                                                                                                                                                                         
## [1130] "/wiki/Nobles"                                                                                                                                                                                                                                                                                                         
## [1131] "/wiki/Auto-da-f%C3%A9"                                                                                                                                                                                                                                                                                                
## [1132] "#cite_note-132"                                                                                                                                                                                                                                                                                                       
## [1133] "/wiki/Oliver_Cromwell"                                                                                                                                                                                                                                                                                                
## [1134] "/wiki/Isfahan"                                                                                                                                                                                                                                                                                                        
## [1135] "/wiki/Forced_to_convert_to_Islam"                                                                                                                                                                                                                                                                                     
## [1136] "/wiki/Abbas_II_of_Persia"                                                                                                                                                                                                                                                                                             
## [1137] "#cite_note-Kashan-133"                                                                                                                                                                                                                                                                                                
## [1138] "/wiki/Antonio_Enr%C3%ADquez_G%C3%B3mez"                                                                                                                                                                                                                                                                               
## [1139] "/wiki/Seville"                                                                                                                                                                                                                                                                                                        
## [1140] "#cite_note-134"                                                                                                                                                                                                                                                                                                       
## [1141] "/wiki/Christian"                                                                                                                                                                                                                                                                                                      
## [1142] "/wiki/Janissaries"                                                                                                                                                                                                                                                                                                    
## [1143] "/wiki/Turkish_Jews"                                                                                                                                                                                                                                                                                                   
## [1144] "#cite_note-135"                                                                                                                                                                                                                                                                                                       
## [1145] "/wiki/Lemberg"                                                                                                                                                                                                                                                                                                        
## [1146] "/wiki/Lvov"                                                                                                                                                                                                                                                                                                           
## [1147] "/wiki/Oran"                                                                                                                                                                                                                                                                                                           
## [1148] "#cite_note-Oran-136"                                                                                                                                                                                                                                                                                                  
## [1149] "/wiki/Vienna"                                                                                                                                                                                                                                                                                                         
## [1150] "/wiki/Raphael_Levy"                                                                                                                                                                                                                                                                                                   
## [1151] "/wiki/Blood_libel"                                                                                                                                                                                                                                                                                                    
## [1152] "/wiki/Exile_of_Mawza"                                                                                                                                                                                                                                                                                                 
## [1153] "/wiki/Jews_of_Yemen"                                                                                                                                                                                                                                                                                                  
## [1154] "/wiki/Auto-da-f%C3%A9"                                                                                                                                                                                                                                                                                                
## [1155] "/wiki/Vilna"                                                                                                                                                                                                                                                                                                          
## [1156] "/wiki/Lisbon"                                                                                                                                                                                                                                                                                                         
## [1157] "/wiki/Portugal"                                                                                                                                                                                                                                                                                                       
## [1158] "/wiki/Kuruc"                                                                                                                                                                                                                                                                                                          
## [1159] "/wiki/Uhersk%C3%BD_Brod"                                                                                                                                                                                                                                                                                              
## [1160] "/wiki/Nathan_ben_Moses_Hannover"                                                                                                                                                                                                                                                                                      
## [1161] "/wiki/Chmielnicki_massacres"                                                                                                                                                                                                                                                                                          
## [1162] "/wiki/Buda"                                                                                                                                                                                                                                                                                                           
## [1163] "#cite_note-Buda-137"                                                                                                                                                                                                                                                                                                  
## [1164] "/wiki/Buda"                                                                                                                                                                                                                                                                                                           
## [1165] "#cite_note-Buda-137"                                                                                                                                                                                                                                                                                                  
## [1166] "#cite_note-138"                                                                                                                                                                                                                                                                                                       
## [1167] "/wiki/Worms"                                                                                                                                                                                                                                                                                                          
## [1168] "/wiki/Prague"                                                                                                                                                                                                                                                                                                         
## [1169] "#cite_note-139"                                                                                                                                                                                                                                                                                                       
## [1170] "/wiki/Palma,_Majorca"                                                                                                                                                                                                                                                                                                 
## [1171] "#cite_note-140"                                                                                                                                                                                                                                                                                                       
## [1172] "#cite_note-141"                                                                                                                                                                                                                                                                                                       
## [1173] "/wiki/%C3%89vora"                                                                                                                                                                                                                                                                                                     
## [1174] "/wiki/Portugal"                                                                                                                                                                                                                                                                                                       
## [1175] "#cite_note-142"                                                                                                                                                                                                                                                                                                       
## [1176] "/wiki/Bamberg"                                                                                                                                                                                                                                                                                                        
## [1177] "#cite_note-143"                                                                                                                                                                                                                                                                                                       
## [1178] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=19"                                                                                                                                                                                                                                                   
## [1179] "/wiki/Algeria"                                                                                                                                                                                                                                                                                                        
## [1180] "#cite_note-Algiers-144"                                                                                                                                                                                                                                                                                               
## [1181] "/wiki/Johann_Andreas_Eisenmenger"                                                                                                                                                                                                                                                                                     
## [1182] "/wiki/Judaism"                                                                                                                                                                                                                                                                                                        
## [1183] "/wiki/Blood_libel"                                                                                                                                                                                                                                                                                                    
## [1184] "/wiki/Sandomierz"                                                                                                                                                                                                                                                                                                     
## [1185] "#cite_note-145"                                                                                                                                                                                                                                                                                                       
## [1186] "/wiki/Gibraltar"                                                                                                                                                                                                                                                                                                      
## [1187] "#cite_note-146"                                                                                                                                                                                                                                                                                                       
## [1188] "/wiki/Maria_Barbara_Carillo"                                                                                                                                                                                                                                                                                          
## [1189] "/wiki/Burned_at_the_stake"                                                                                                                                                                                                                                                                                            
## [1190] "/wiki/Spanish_Inquisition"                                                                                                                                                                                                                                                                                            
## [1191] "#cite_note-147"                                                                                                                                                                                                                                                                                                       
## [1192] "#cite_note-148"                                                                                                                                                                                                                                                                                                       
## [1193] "/wiki/Radom"                                                                                                                                                                                                                                                                                                          
## [1194] "#cite_note-Radom-128"                                                                                                                                                                                                                                                                                                 
## [1195] "/wiki/Catherine_I_of_Russia"                                                                                                                                                                                                                                                                                          
## [1196] "/wiki/Haidamaks"                                                                                                                                                                                                                                                                                                      
## [1197] "/wiki/Ana_de_Castro"                                                                                                                                                                                                                                                                                                  
## [1198] "/wiki/Auto_de_fe"                                                                                                                                                                                                                                                                                                     
## [1199] "/wiki/Inquisition"                                                                                                                                                                                                                                                                                                    
## [1200] "/wiki/Jaros%C5%82aw"                                                                                                                                                                                                                                                                                                  
## [1201] "#cite_note-Jaroslaw-149"                                                                                                                                                                                                                                                                                              
## [1202] "/wiki/Elizabeth_of_Russia"                                                                                                                                                                                                                                                                                            
## [1203] "/wiki/Russian_Empire"                                                                                                                                                                                                                                                                                                 
## [1204] "/wiki/Riga"                                                                                                                                                                                                                                                                                                           
## [1205] "#cite_note-150"                                                                                                                                                                                                                                                                                                       
## [1206] "/wiki/Frederick_II_of_Prussia"                                                                                                                                                                                                                                                                                        
## [1207] "/wiki/Breslau"                                                                                                                                                                                                                                                                                                        
## [1208] "/wiki/Maria_Theresa_of_Austria"                                                                                                                                                                                                                                                                                       
## [1209] "/wiki/Radom"                                                                                                                                                                                                                                                                                                          
## [1210] "#cite_note-Radom-128"                                                                                                                                                                                                                                                                                                 
## [1211] "/wiki/Kaunas"                                                                                                                                                                                                                                                                                                         
## [1212] "/wiki/Alsace"                                                                                                                                                                                                                                                                                                         
## [1213] "/wiki/Host_desecration"                                                                                                                                                                                                                                                                                               
## [1214] "/wiki/Kaunas"                                                                                                                                                                                                                                                                                                         
## [1215] "#cite_note-Kaunas-151"                                                                                                                                                                                                                                                                                                
## [1216] "/wiki/Rhode_Island"                                                                                                                                                                                                                                                                                                   
## [1217] "/wiki/Toru%C5%84"                                                                                                                                                                                                                                                                                                     
## [1218] "#cite_note-152"                                                                                                                                                                                                                                                                                                       
## [1219] "/wiki/Haidamaks"                                                                                                                                                                                                                                                                                                      
## [1220] "/wiki/Uman"                                                                                                                                                                                                                                                                                                           
## [1221] "/wiki/Pope_Pius_VI"                                                                                                                                                                                                                                                                                                   
## [1222] "/wiki/Babylonian_Jews"                                                                                                                                                                                                                                                                                                
## [1223] "#cite_note-153"                                                                                                                                                                                                                                                                                                       
## [1224] "/wiki/Holy_Roman_Emperor"                                                                                                                                                                                                                                                                                             
## [1225] "/wiki/Joseph_II,_Holy_Roman_Emperor"                                                                                                                                                                                                                                                                                  
## [1226] "/wiki/Toleranzpatent"                                                                                                                                                                                                                                                                                                 
## [1227] "/wiki/Yiddish"                                                                                                                                                                                                                                                                                                        
## [1228] "/wiki/Hebrew_language"                                                                                                                                                                                                                                                                                                
## [1229] "/wiki/Moses_Mendelssohn"                                                                                                                                                                                                                                                                                              
## [1230] "/wiki/Sultan"                                                                                                                                                                                                                                                                                                         
## [1231] "/wiki/Moroccan_Jews"                                                                                                                                                                                                                                                                                                  
## [1232] "#cite_note-Timeline-154"                                                                                                                                                                                                                                                                                              
## [1233] "/wiki/Libyan_Jews"                                                                                                                                                                                                                                                                                                    
## [1234] "#cite_note-155"                                                                                                                                                                                                                                                                                                       
## [1235] "#cite_note-156"                                                                                                                                                                                                                                                                                                       
## [1236] "/wiki/Yazid_of_Morocco"                                                                                                                                                                                                                                                                                               
## [1237] "/wiki/Sultan"                                                                                                                                                                                                                                                                                                         
## [1238] "/wiki/Morocco"                                                                                                                                                                                                                                                                                                        
## [1239] "/wiki/T%C3%A9touan"                                                                                                                                                                                                                                                                                                   
## [1240] "/wiki/Touro_Synagogue"                                                                                                                                                                                                                                                                                                
## [1241] "/wiki/George_Washington"                                                                                                                                                                                                                                                                                              
## [1242] "#cite_note-157"                                                                                                                                                                                                                                                                                                       
## [1243] "/wiki/Ruth_Bader_Ginsburg"                                                                                                                                                                                                                                                                                            
## [1244] "/wiki/Elena_Kagan"                                                                                                                                                                                                                                                                                                    
## [1245] "#cite_note-158"                                                                                                                                                                                                                                                                                                       
## [1246] "/wiki/Brown_University"                                                                                                                                                                                                                                                                                               
## [1247] "/wiki/Ruth_Simmons"                                                                                                                                                                                                                                                                                                   
## [1248] "#cite_note-159"                                                                                                                                                                                                                                                                                                       
## [1249] "/wiki/Christina_Paxson"                                                                                                                                                                                                                                                                                               
## [1250] "#cite_note-160"                                                                                                                                                                                                                                                                                                       
## [1251] "/wiki/Grodno"                                                                                                                                                                                                                                                                                                         
## [1252] "/wiki/Morocco"                                                                                                                                                                                                                                                                                                        
## [1253] "/wiki/Catherine_II_of_Russia"                                                                                                                                                                                                                                                                                         
## [1254] "/wiki/Pale_of_Settlement"                                                                                                                                                                                                                                                                                             
## [1255] "#cite_note-161"                                                                                                                                                                                                                                                                                                       
## [1256] "/wiki/Napoleon"                                                                                                                                                                                                                                                                                                       
## [1257] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=20"                                                                                                                                                                                                                                                   
## [1258] "/wiki/Algerian_Jews"                                                                                                                                                                                                                                                                                                  
## [1259] "#cite_note-Algiers-144"                                                                                                                                                                                                                                                                                               
## [1260] "/wiki/Algiers"                                                                                                                                                                                                                                                                                                        
## [1261] "/wiki/Dey"                                                                                                                                                                                                                                                                                                            
## [1262] "/wiki/Algiers"                                                                                                                                                                                                                                                                                                        
## [1263] "/wiki/Pope_Pius_VII"                                                                                                                                                                                                                                                                                                  
## [1264] "/wiki/Napoleon"                                                                                                                                                                                                                                                                                                       
## [1265] "/wiki/Algiers"                                                                                                                                                                                                                                                                                                        
## [1266] "/wiki/Constantine"                                                                                                                                                                                                                                                                                                    
## [1267] "#cite_note-Constantine-162"                                                                                                                                                                                                                                                                                           
## [1268] "/wiki/File:J%C3%B8defejden_1819.jpg"                                                                                                                                                                                                                                                                                  
## [1269] "/wiki/File:J%C3%B8defejden_1819.jpg"                                                                                                                                                                                                                                                                                  
## [1270] "/wiki/Copenhagen"                                                                                                                                                                                                                                                                                                     
## [1271] "/wiki/Latvia"                                                                                                                                                                                                                                                                                                         
## [1272] "/wiki/Bohemia"                                                                                                                                                                                                                                                                                                        
## [1273] "/wiki/Hep-Hep_riots"                                                                                                                                                                                                                                                                                                  
## [1274] "/wiki/Cantonist"                                                                                                                                                                                                                                                                                                      
## [1275] "/wiki/Baghdad"                                                                                                                                                                                                                                                                                                        
## [1276] "/wiki/Persian_Jews"                                                                                                                                                                                                                                                                                                   
## [1277] "/wiki/Persian_Jews"                                                                                                                                                                                                                                                                                                   
## [1278] "/wiki/Clemens_Brentano"                                                                                                                                                                                                                                                                                               
## [1279] "/wiki/Anne_Emmerich"                                                                                                                                                                                                                                                                                                  
## [1280] "#cite_note-163"                                                                                                                                                                                                                                                                                                       
## [1281] "/wiki/Blood_libel"                                                                                                                                                                                                                                                                                                    
## [1282] "#cite_note-164"                                                                                                                                                                                                                                                                                                       
## [1283] "/wiki/1834_looting_of_Safed"                                                                                                                                                                                                                                                                                          
## [1284] "/wiki/Safed"                                                                                                                                                                                                                                                                                                          
## [1285] "/wiki/La_belle_juive"                                                                                                                                                                                                                                                                                                 
## [1286] "/wiki/Martyr"                                                                                                                                                                                                                                                                                                         
## [1287] "/wiki/Sol_Hachuel"                                                                                                                                                                                                                                                                                                    
## [1288] "/wiki/Fez"                                                                                                                                                                                                                                                                                                            
## [1289] "/wiki/Morocco"                                                                                                                                                                                                                                                                                                        
## [1290] "/wiki/Nicholas_I_of_Russia"                                                                                                                                                                                                                                                                                           
## [1291] "/wiki/1838_Druze_attack_on_Safed"                                                                                                                                                                                                                                                                                     
## [1292] "/wiki/Safed"                                                                                                                                                                                                                                                                                                          
## [1293] "/wiki/1838_Druze_revolt"                                                                                                                                                                                                                                                                                              
## [1294] "/wiki/Persian_Jews"                                                                                                                                                                                                                                                                                                   
## [1295] "/wiki/Mashhad"                                                                                                                                                                                                                                                                                                        
## [1296] "/wiki/Allahdad"                                                                                                                                                                                                                                                                                                       
## [1297] "/wiki/Crypto-Jews"                                                                                                                                                                                                                                                                                                    
## [1298] "/wiki/Mashhadi_Jews"                                                                                                                                                                                                                                                                                                  
## [1299] "/wiki/Damascus_affair"                                                                                                                                                                                                                                                                                                
## [1300] "/wiki/Middle_East"                                                                                                                                                                                                                                                                                                    
## [1301] "/wiki/Karl_Marx"                                                                                                                                                                                                                                                                                                      
## [1302] "/wiki/Bruno_Bauer"                                                                                                                                                                                                                                                                                                    
## [1303] "/wiki/On_the_Jewish_Question"                                                                                                                                                                                                                                                                                         
## [1304] "/wiki/Das_Judenthum_in_der_Musik"                                                                                                                                                                                                                                                                                     
## [1305] "/wiki/German_language"                                                                                                                                                                                                                                                                                                
## [1306] "/wiki/Richard_Wagner"                                                                                                                                                                                                                                                                                                 
## [1307] "/wiki/Giacomo_Meyerbeer"                                                                                                                                                                                                                                                                                              
## [1308] "/wiki/Felix_Mendelssohn"                                                                                                                                                                                                                                                                                              
## [1309] "/wiki/Pseudonym"                                                                                                                                                                                                                                                                                                      
## [1310] "/wiki/Neue_Zeitschrift_f%C3%BCr_Musik"                                                                                                                                                                                                                                                                                
## [1311] "/wiki/Leipzig"                                                                                                                                                                                                                                                                                                        
## [1312] "/wiki/Germany"                                                                                                                                                                                                                                                                                                        
## [1313] "/wiki/Blood_libel"                                                                                                                                                                                                                                                                                                    
## [1314] "/wiki/Saratov"                                                                                                                                                                                                                                                                                                        
## [1315] "/wiki/Edgardo_Mortara"                                                                                                                                                                                                                                                                                                
## [1316] "/wiki/Bologna"                                                                                                                                                                                                                                                                                                        
## [1317] "/wiki/Hamadan"                                                                                                                                                                                                                                                                                                        
## [1318] "#cite_note-165"                                                                                                                                                                                                                                                                                                       
## [1319] "/wiki/American_Civil_War"                                                                                                                                                                                                                                                                                             
## [1320] "/wiki/Ulysses_S._Grant"                                                                                                                                                                                                                                                                                               
## [1321] "/wiki/General_Order_%E2%84%96_11_(1862)"                                                                                                                                                                                                                                                                              
## [1322] "/wiki/Privilege_(legal_ethics)"                                                                                                                                                                                                                                                                                       
## [1323] "/wiki/Hamadan"                                                                                                                                                                                                                                                                                                        
## [1324] "#cite_note-IranianJews-166"                                                                                                                                                                                                                                                                                           
## [1325] "/wiki/Moroccan_Jews"                                                                                                                                                                                                                                                                                                  
## [1326] "/wiki/Marrakech"                                                                                                                                                                                                                                                                                                      
## [1327] "/wiki/Fez"                                                                                                                                                                                                                                                                                                            
## [1328] "/wiki/History_of_the_Jews_in_Iran"                                                                                                                                                                                                                                                                                    
## [1329] "#cite_note-167"                                                                                                                                                                                                                                                                                                       
## [1330] "#cite_note-168"                                                                                                                                                                                                                                                                                                       
## [1331] "/wiki/Samuel_Bierfield"                                                                                                                                                                                                                                                                                               
## [1332] "/wiki/Lynching"                                                                                                                                                                                                                                                                                                       
## [1333] "/wiki/United_States"                                                                                                                                                                                                                                                                                                  
## [1334] "/wiki/African-American"                                                                                                                                                                                                                                                                                               
## [1335] "/wiki/Franklin,_Tennessee"                                                                                                                                                                                                                                                                                            
## [1336] "/wiki/Ku_Klux_Klan"                                                                                                                                                                                                                                                                                                   
## [1337] "#cite_note-for-169"                                                                                                                                                                                                                                                                                                   
## [1338] "#cite_note-170"                                                                                                                                                                                                                                                                                                       
## [1339] "#cite_note-171"                                                                                                                                                                                                                                                                                                       
## [1340] "/wiki/Tunisian_Jews"                                                                                                                                                                                                                                                                                                  
## [1341] "/wiki/Jerba_Island"                                                                                                                                                                                                                                                                                                   
## [1342] "/wiki/Algerian_Jews"                                                                                                                                                                                                                                                                                                  
## [1343] "/wiki/Cr%C3%A9mieux_Decree"                                                                                                                                                                                                                                                                                           
## [1344] "/wiki/Pope_Pius_IX"                                                                                                                                                                                                                                                                                                   
## [1345] "/wiki/Southern_Baptist_Convention"                                                                                                                                                                                                                                                                                    
## [1346] "#cite_note-172"                                                                                                                                                                                                                                                                                                       
## [1347] "/wiki/Demnat"                                                                                                                                                                                                                                                                                                         
## [1348] "/wiki/Morocco"                                                                                                                                                                                                                                                                                                        
## [1349] "/wiki/Adolf_Stoecker"                                                                                                                                                                                                                                                                                                 
## [1350] "/wiki/Christian_Social_Party_(Germany)"                                                                                                                                                                                                                                                                               
## [1351] "/wiki/Kutaisi"                                                                                                                                                                                                                                                                                                        
## [1352] "#cite_note-173"                                                                                                                                                                                                                                                                                                       
## [1353] "/wiki/Heinrich_von_Treitschke"                                                                                                                                                                                                                                                                                        
## [1354] "/wiki/Wilhelm_Marr"                                                                                                                                                                                                                                                                                                   
## [1355] "/wiki/Anti-Semitism"                                                                                                                                                                                                                                                                                                  
## [1356] "/wiki/Anti-Judaism"                                                                                                                                                                                                                                                                                                   
## [1357] "/wiki/Pogrom"                                                                                                                                                                                                                                                                                                         
## [1358] "/wiki/Tlemcen"                                                                                                                                                                                                                                                                                                        
## [1359] "/wiki/Algeria"                                                                                                                                                                                                                                                                                                        
## [1360] "#cite_note-Tlemcen-174"                                                                                                                                                                                                                                                                                               
## [1361] "/wiki/Pogrom"                                                                                                                                                                                                                                                                                                         
## [1362] "/wiki/Pale_of_Settlement"                                                                                                                                                                                                                                                                                             
## [1363] "/wiki/National_Origins_Quota_of_1924"                                                                                                                                                                                                                                                                                 
## [1364] "/wiki/Immigration_Act_of_1924"                                                                                                                                                                                                                                                                                        
## [1365] "/wiki/Algiers"                                                                                                                                                                                                                                                                                                        
## [1366] "#cite_note-175"                                                                                                                                                                                                                                                                                                       
## [1367] "/wiki/Tiszaeszl%C3%A1r_Affair"                                                                                                                                                                                                                                                                                        
## [1368] "/w/index.php?title=International_Anti-Jewish_Congress&action=edit&redlink=1"                                                                                                                                                                                                                                          
## [1369] "/wiki/Dresden,_Germany"                                                                                                                                                                                                                                                                                               
## [1370] "/wiki/Alexander_III_of_Russia"                                                                                                                                                                                                                                                                                        
## [1371] "/wiki/May_Laws"                                                                                                                                                                                                                                                                                                       
## [1372] "/wiki/Konstantin_Pobedonostsev"                                                                                                                                                                                                                                                                                       
## [1373] "/wiki/Blood_libel"                                                                                                                                                                                                                                                                                                    
## [1374] "/wiki/Moscow,_Russia"                                                                                                                                                                                                                                                                                                 
## [1375] "/wiki/Congress_of_the_United_States"                                                                                                                                                                                                                                                                                  
## [1376] "/wiki/Russian_Empire"                                                                                                                                                                                                                                                                                                 
## [1377] "/wiki/Fatwa"                                                                                                                                                                                                                                                                                                          
## [1378] "/wiki/Hamadan"                                                                                                                                                                                                                                                                                                        
## [1379] "/wiki/Persian_Jews"                                                                                                                                                                                                                                                                                                   
## [1380] "#cite_note-Hamadan-176"                                                                                                                                                                                                                                                                                               
## [1381] "/wiki/Persian_Jews"                                                                                                                                                                                                                                                                                                   
## [1382] "/wiki/Savojbolagh_County"                                                                                                                                                                                                                                                                                             
## [1383] "#cite_note-IranianJews-166"                                                                                                                                                                                                                                                                                           
## [1384] "/wiki/Justinas_Pranaitis"                                                                                                                                                                                                                                                                                             
## [1385] "/wiki/The_Talmud_Unmasked"                                                                                                                                                                                                                                                                                            
## [1386] "/wiki/Karl_Lueger"                                                                                                                                                                                                                                                                                                    
## [1387] "/wiki/Vienna"                                                                                                                                                                                                                                                                                                         
## [1388] "/wiki/File:Degradation_alfred_dreyfus.jpg"                                                                                                                                                                                                                                                                            
## [1389] "/wiki/File:Degradation_alfred_dreyfus.jpg"                                                                                                                                                                                                                                                                            
## [1390] "/wiki/Alfred_Dreyfus"                                                                                                                                                                                                                                                                                                 
## [1391] "/wiki/Dreyfus_affair"                                                                                                                                                                                                                                                                                                 
## [1392] "/wiki/%C3%89mile_Zola"                                                                                                                                                                                                                                                                                                
## [1393] "/wiki/A._C._Cuza"                                                                                                                                                                                                                                                                                                     
## [1394] "/wiki/Bucharest,_Romania"                                                                                                                                                                                                                                                                                             
## [1395] "/wiki/Oran"                                                                                                                                                                                                                                                                                                           
## [1396] "#cite_note-Algeria_JE-177"                                                                                                                                                                                                                                                                                            
## [1397] "/wiki/Tripolitania"                                                                                                                                                                                                                                                                                                   
## [1398] "/wiki/Algiers"                                                                                                                                                                                                                                                                                                        
## [1399] "#cite_note-Algeria_JE-177"                                                                                                                                                                                                                                                                                            
## [1400] "/wiki/Houston_Stewart_Chamberlain"                                                                                                                                                                                                                                                                                    
## [1401] "/wiki/Nazism"                                                                                                                                                                                                                                                                                                         
## [1402] "/wiki/Blood_libel"                                                                                                                                                                                                                                                                                                    
## [1403] "/wiki/Bohemia"                                                                                                                                                                                                                                                                                                        
## [1404] "/wiki/Hilsner_case"                                                                                                                                                                                                                                                                                                   
## [1405] "/w/index.php?title=Timeline_of_antisemitism&action=edit&section=21"                                                                                                                                                                                                                                                   
## [1406] "/wiki/Roman_Catholic_Church"                                                                                                                                                                                                                                                                                          
## [1407] "#cite_note-178"                                                                                                                                                                                                                                                                                                       
## [1408] "/wiki/File:Ekaterinoslav1905.jpg"                                                                                                                                                                                                                                                                                     
## [1409] "/wiki/File:Ekaterinoslav1905.jpg"                                                                                                                                                                                                                                                                                     
## [1410] "/wiki/Dnipropetrovsk"                                                                                                                                                                                                                                                                                                 
## [1411] "/wiki/Kishinev_pogrom"                                                                                                                                                                                                                                                                                                
## [1412] "/wiki/The_Protocols_of_the_Elders_of_Zion"                                                                                                                                                                                                                                                                            
## [1413] "/wiki/Hoax"                                                                                                                                                                                                                                                                                                           
## [1414] "/wiki/Pavel_Krushevan"                                                                                                                                                                                                                                                                                                
## [1415] "/wiki/Limerick_boycott"                                                                                                                                                                                                                                                                                               
## [1416] "/wiki/Dnipropetrovsk"                                                                                                                                                                                                                                                                                                 
## [1417] "/wiki/1905_Kiev_pogrom"                                                                                                                                                                                                                                                                                               
## [1418] "/wiki/Alfred_Dreyfus"                                                                                                                                                                                                                                                                                                 
## [1419] "/wiki/Mellah"                                                                                                                                                                                                                                                                                                         
## [1420] "/wiki/Casablanca"                                                                                                                                                                                                                                                                                                     
## [1421] "/wiki/Kabyle_people"                                                                                                                                                                                                                                                                                                  
## [1422] "/wiki/Muslims"                                                                                                                                                                                                                                                                                                        
## [1423] "#cite_note-179"                                                                                                                                                                                                                                                                                                       
## [1424] "/wiki/Salomon_Reinach"                                                                                                                                                                                                                                                                                                
## [1425] "/wiki/Berlin"                                                                                                                                                                                                                                                                                                         
## [1426] "/wiki/Adolf_Stoecker"                                                                                                                                                                                                                                                                                                 
## [1427] "#cite_note-180"                                                                                                                                                                                                                                                                                                       
## [1428] "#cite_note-181"                                                                                                                                                                                                                                                                                                       
## [1429] "/wiki/1910_Shiraz_blood_libel"                                                                                                                                                                                                                                                                                        
## [1430] "/wiki/Shiraz"                                                                                                                                                                                                                                                                                                         
## [1431] "/wiki/Iran"                                                                                                                                                                                                                                                                                                           
## [1432] "/wiki/Blood_Libel"                                                                                                                                                                                                                                                                                                    
## [1433] "/wiki/The_Tritl"                                                                                                                                                                                                                                                                                                      
## [1434] "/wiki/1912_Fez_massacre"                                                                                                                                                                                                                                                                                              
## [1435] "/wiki/Moroccan_Jews"                                                                                                                                                                                                                                                                                                  
## [1436] "/wiki/Blood_libel"                                                                                                                                                                                                                                                                                                    
## [1437] "/wiki/Menahem_Mendel_Beilis"                                                                                                                                                                                                                                                                                          
## [1438] "/wiki/World_War_I"                                                                                                                                                                                                                                                                                                    
## [1439] "/wiki/Leo_Frank"                                                                                                                                                                                                                                                                                                      
## [1440] "/wiki/Lynching"                                                                                                                                                                                                                                                                                                       
## [1441] "/wiki/Atlanta"                                                                                                                                                                                                                                                                                                        
## [1442] "/wiki/Georgia_(U.S._state)"                                                                                                                                                                                                                                                                                           
## [1443] "/wiki/Antisemitism_in_the_United_States"                                                                                                                                                                                                                                                                              
## [1444] "/wiki/Anti-Defamation_League"                                                                                                                                                                                                                                                                                         
## [1445] "/wiki/Pogrom"                                                                                                                                                                                                                                                                                                         
## [1446] "/wiki/Russian_Civil_War"                                                                                                                                                                                                                                                                                              
## [1447] "/wiki/Mountain_Jews"                                                                                                                                                                                                                                                                                                  
## [1448] "/wiki/March_Days"                                                                                                                                                                                                                                                                                                     
## [1449] "/wiki/Lw%C3%B3w_pogrom_of_1918"                                                                                                                                                                                                                                                                                       
## [1450] "/wiki/Lw%C3%B3w"                                                                                                                                                                                                                                                                                                      
## [1451] "/wiki/Polish%E2%80%93Ukrainian_War"                                                                                                                                                                                                                                                                                   
## [1452] "/wiki/Kiev_pogroms_of_1919"                                                                                                                                                                                                                                                                                           
## [1453] "/wiki/Kiev"                                                                                                                                                                                                                                                                                                           
## [1454] "/w/index.php?title=White_Volunteer_Army&action=edit&redlink=1"                                                                                                                                                                                                                                                        
## [1455] "/wiki/Pinsk_massacre"                                                                                                                                                                                                                                                                                                 
## [1456] "/wiki/Pinsk"                                                                                                                                                                                                                                                                                                          
## [1457] "/wiki/Ukrainian_People%27s_Republic"                                                                                                                                                                                                                                                                                  
## [1458] "/wiki/Proskurov_pogrom"                                                                                                                                                                                                                                                                                               
## [1459] "#cite_note-Vital-182"                                                                                                                                                                                                                                                                                                 
## [1460] "/w/index.php?title=Tetiev_pogrom&action=edit&redlink=1"                                                                                                                                                                                                                                                               
## [1461] "#cite_note-Midlarsky-183"                                                                                                                                                                                                                                                                                             
## [1462] "/wiki/Ukrainian_People%27s_Republic"                                                                                                                                                                                                                                                                                  
## [1463] "/wiki/Proskurov_pogrom"                                                                                                                                                                                                                                                                                               
## [1464] "#cite_note-Vital-182"                                                                                                                                                                                                                                                                                                 
## [1465] "/wiki/Russian_Civil_War"                                                                                                                                                                                                                                                                                              
## [1466] "/wiki/Uman"                                                                                                                                                                                                                                                                                                           
## [1467] "/wiki/Podolia"                                                                                                                                                                                                                                                                                                        
## [1468] "/wiki/Pogrom"                                                                                                                                                                                                                                                                                                         
## [1469] "/wiki/Anton_Denikin"                                                                                                                                                                                                                                                                                                  
## [1470] "#cite_note-184"                                                                                                                                                                                                                                                                                                       
## [1471] "/wiki/Yevsektsiya"                                                                                                                                                                                                                                                                                                    
## [1472] "/wiki/General_Jewish_Labor_Union"                                                                                                                                                                                                                                                                                     
## [1473] "/wiki/Cheka"                                                                                                                                                                                                                                                                                                          
## [1474] "/wiki/Bolshevik"                                                                                                                                                                                                                                                                                                      
## [1475] "/wiki/Gulag"                                                                                                                                                                                                                                                                                                          
## [1476] "/wiki/Hebrew_language"                                                                                                                                                                                                                                                                                                
## [1477] "/wiki/1920_Nebi_Musa_riots"                                                                                                                                                                                                                                                                                           
## [1478] "/wiki/Yishuv"                                                                                                                                                                                                                                                                                                         
## [1479] "/wiki/Bolshevik_revolution"                                                                                                                                                                                                                                                                                           
## [1480] "/wiki/Conspiracy_theory"                                                                                                                                                                                                                                                                                              
## [1481] "/wiki/Hegemony"                                                                                                                                                                                                                                                                                                       
## [1482] "/wiki/Henry_Ford"                                                                                                                                                                                                                                                                                                     
## [1483] "/wiki/Henry_Ford"                                                                                                                                                                                                                                                                                                     
## [1484] "/wiki/The_Dearborn_Independent"                                                                                                                                                                                                                                                                                       
## [1485] "/wiki/The_International_Jew"                                                                                                                                                                                                                                                                                          
## [1486] "#cite_note-185"                                                                                                                                                                                                                                                                                                       
## [1487] "/wiki/History_of_the_Jews_in_Central_Asia"                                                                                                                                                                                                                                                                            
## [1488] "/wiki/Jaffa_riots"                                                                                                                                                                                                                                                                                                    
## [1489] "/wiki/Ku_Klux_Klan"                                                                                                                                                                                                                                                                                                   
## [1490] "/wiki/Yevsektsiya"                                                                                                                                                                                                                                                                                                    
## [1491] "/wiki/General_Jewish_Labor_Union"                                                                                                                                                                                                                                                                                     
## [1492] "/wiki/Cheka"                                                                                                                                                                                                                                                                                                          
## [1493] "/wiki/Bolshevik"                                                                                                                                                                                                                                                                                                      
## [1494] "/wiki/Gulag"                                                                                                                                                                                                                                                                                                          
## [1495] "/wiki/Hebrew_language"                                                                                                                                                                                                                                                                                                
## [1496] "/wiki/Der_St%C3%BCrmer"                                                                                                                                                                                                                                                                                               
## [1497] "/wiki/Help:IPA/Standard_German"                                                                                                                                                                                                                                                                                       
## [1498] "/wiki/Tabloid_(newspaper_format)"                                                                                                                                                                                                                                                                                     
## [1499] "/wiki/Nazism"                                                                                                                                                                                                                                                                                                         
## [1500] "/wiki/Newspaper"                                                                                                                                                                                                                                                                                                      
## [1501] "/wiki/Julius_Streicher"                                                                                                                                                                                                                                                                                               
## [1502] "/wiki/Nazi_Party"                                                                                                                                                                                                                                                                                                     
## [1503] "/wiki/World_War_II"                                                                                                                                                                                                                                                                                                   
## [1504] "/wiki/Nazi_propaganda"                                                                                                                                                                                                                                                                                                
## [1505] "#cite_note-conscience228-186"                                                                                                                                                                                                                                                                                         
## [1506] "/wiki/National_Origins_Quota_of_1924"                                                                                                                                                                                                                                                                                 
## [1507] "/wiki/Immigration_Act_of_1924"                                                                                                                                                                                                                                                                                        
## [1508] "/wiki/The_Ku_Klux_Klan_In_Prophecy"                                                                                                                                                                                                                                                                                   
## [1509] "/wiki/Alma_Bridwell_White"                                                                                                                                                                                                                                                                                            
## [1510] "/wiki/Branford_Clarke"                                                                                                                                                                                                                                                                                                
## [1511] "#cite_note-neal-187"                                                                                                                                                                                                                                                                                                  
## [1512] "#cite_note-ferguson-188"                                                                                                                                                                                                                                                                                              
## [1513] "/wiki/Catholic_Church"                                                                                                                                                                                                                                                                                                
## [1514] "/wiki/Racism"                                                                                                                                                                                                                                                                                                         
## [1515] "/wiki/African_Americans"                                                                                                                                                                                                                                                                                              
## [1516] "/wiki/White_supremacy"                                                                                                                                                                                                                                                                                                
## [1517] "/wiki/Women%27s_equality"                                                                                                                                                                                                                                                                                             
## [1518] "#cite_note-189"                                                                                                                                                                                                                                                                                                       
## [1519] "#cite_note-190"                                                                                                                                                                                                                                                                                                       
## [1520] "#cite_note-191"                                                                                                                                                                                                                                                                                                       
## [1521] "/wiki/Adolf_Hitler"                                                                                                                                                                                                                                                                                                   
## [1522] "/wiki/Mein_Kampf"                                                                                                                                                                                                                                                                                                     
## [1523] "/wiki/Schwartzbard_trial"                                                                                                                                                                                                                                                                                             
## [1524] "/wiki/France"                                                                                                                                                                                                                                                                                                         
## [1525] "/wiki/Mistrial_(law)"                                                                                                                                                                                                                                                                                                 
## [1526] "/wiki/Sholom_Schwartzbard"                                                                                                                                                                                                                                                                                            
## [1527] "/wiki/Ukrainians"                                                                                                                                                                                                                                                                                                     
## [1528] "/wiki/Symon_Petlura"                                                                                                                                                                                                                                                                                                  
## [1529] "/wiki/Pogroms_in_Ukraine"                                                                                                                                                                                                                                                                                             
## [1530] "/wiki/Massena_blood_libel"                                                                                                                                                                                                                                                                                            
## [1531] "/wiki/Blood_libel"                                                                                                                                                                                                                                                                                                    
## [1532] "/wiki/Jews"                                                                                                                                                                                                                                                                                                           
## [1533] "/wiki/Massena_(village),_New_York"                                                                                                                                                                                                                                                                                    
## [1534] "/wiki/New_York_(state)"                                                                                                                                                                                                                                                                                               
## [1535] "/wiki/Kidnapping"                                                                                                                                                                                                                                                                                                     
## [1536] "/wiki/Ritual_murder"                                                                                                                                                                                                                                                                                                  
## [1537] "/wiki/Christian"                                                                                                                                                                                                                                                                                                      
## [1538] "#cite_note-Feldberg-192"                                                                                                                                                                                                                                                                                              
## [1539] "/wiki/Hebron"                                                                                                                                                                                                                                                                                                         
## [1540] "/wiki/1929_Hebron_massacre"                                                                                                                                                                                                                                                                                           
## [1541] "/wiki/Temple_Mount"                                                                                                                                                                                                                                                                                                   
## [1542] "#cite_note-193"                                                                                                                                                                                                                                                                                                       
## [1543] "/wiki/Safed"                                                                                                                                                                                                                                                                                                          
## [1544] "/wiki/1929_Safed_massacre"                                                                                                                                                                                                                                                                                            
## [1545] "/wiki/Pogrom"                                                                                                                                                                                                                                                                                                         
## [1546] "/wiki/B%C4%83l%C5%A3i"                                                                                                                                                                                                                                                                                                
## [1547] "#cite_note-194"                                                                                                                                                                                                                                                                                                       
## [1548] "/wiki/University_of_Virginia"                                                                                                                                                                                                                                                                                         
## [1549] "/wiki/T.S._Eliot"                                                                                                                                                                                                                                                                                                     
## [1550] "#cite_note-195"                                                                                                                                                                                                                                                                                                       
## [1551] "#cite_note-Dean-196"                                                                                                                                                                                                                                                                                                  
## [1552] "#cite_note-197"                                                                                                                                                                                                                                                                                                       
## [1553] "/wiki/Reich_Flight_Tax"                                                                                                                                                                                                                                                                                               
## [1554] "/wiki/Afghanistan"                                                                                                                                                                                                                                                                                                    
## [1555] "/wiki/1934_

jerichojars's People

Contributors

hrbrmstr avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

rayiik

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.