Learning Objects

This tutorial aims to introduce basic ways to preprocess texual data before we model data using R. We will cover:

  1. How to read, clean, and transform text data

  2. How to preprocess data such as tokenization, removing stop words, lemmatization, stemming, and representing words in R

  3. How to get basic statistics from texts using lexicon methods

In the previous tutorial, we have covered some basics about how to read and save files in R, how to recognize regEx, and how to use selenium to do webscraping.

We were able to successfully scrape the BLM protest events dataset. You can access the dataset https://yongjunzhang.com/files/css/blm-data.tsv

Note that some of these codes in this lab tutorial came from Lab 3.

Code Chanllenges

  1. You need to submit a script showing you are able to run the selenium and actually gather the data
  2. You need to scrape the original news articles using “blm-data.tsv” dataset (it has source urls) and make a structured textual data set. Some of these urls might not work or you don’t have access. It is fine that you skip those.
  3. You have two weeks to finish this.

Intro to Preprossing Textual Data with R

We need to load some packages for use

require(pacman)
## Loading required package: pacman
packages<-c("tidyverse","tidytext","rvest", "RSelenium","httr",
            "quanteda","haven","readxl","here","knitr","stopwords")
p_load(packages,character.only = TRUE)

Load blm-data tsv file

R tidyverse package provides a series of useful data wrangling tools. You can check it here https://www.tidyverse.org/. The tidyverse package installs a number of other packages for reading data:

  1. DBI for relational databases. You’ll need to pair DBI with a database specific backends like RSQLite, RMariaDB, RPostgres, or odbc. Learn more at https://db.rstudio.com.

  2. haven for SPSS, Stata, and SAS data.

  3. httr for web APIs.

  4. readxl for .xls and .xlsx sheets.

  5. rvest for web scraping.

  6. jsonlite for JSON. (Maintained by Jeroen Ooms.)

  7. xml2 for XML.

# read tsv file using read_csv
data <- read_tsv(url("https://yongjunzhang.com/files/css/blm-data.tsv"))
## Rows: 6701 Columns: 10
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## chr (8): protest_location, protest_start, protest_end, protest_subject, prot...
## dbl (2): page_id, protest_id
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
# Show a table for visual check
knitr::kable(data[1:3,],cap="Black Lives Matter Protest (elephrame.com)")
Black Lives Matter Protest (elephrame.com)
page_id protest_id protest_location protest_start protest_end protest_subject protest_participants protest_time protest_description protest_urls
1 6730 London, England - happened? Tuesday, October 19, 2021 - Present Subject(s): Local - Monument - Robert Geffyre, History - Slavery Participant(s): Unclear Time: Continuous Description: Boycott of Museum of the Home over statue of Geffrye, who made money from slave trade Source(s):##https://www.hackneycitizen.co.uk/2021/10/19/campaigners-museum-boycott-calls-teachers-families-join-slaver-statue/
1 4538 Minneapolis, MN Friday, June 5, 2020 - Present Subject(s): General - Police Brutality Participant(s): 15 Time: Continuous Description: “Say Their Names” symbolic cemetery of 100 Black people killed by police Source(s):##https://www.minneapolis.org/support-black-lives/38th-and-chicago/##https://theconversation.com/black-deaths-matter-the-centuries-old-struggle-to-memorialize-slaves-and-victims-of-racism-140613##https://www.mndaily.com/article/2020/06/say-their-names-cemetery##https://twitter.com/TwinCityReports/status/1272286571929178112##https://twitter.com/TwinCityReports/status/1272718480148660224
1 2948 Minneapolis, MN Tuesday, May 26, 2020 - Present Subject(s): George Floyd Participant(s): Hundreds-Thousands (est.) Time: Continuous Description: Makeshift memorial at site where Floyd was killed Source(s):##https://twitter.com/bengarvin/status/1267291981266530305##https://twitter.com/stribrooks/status/1266005779158568963##https://twitter.com/OmarJimenez/status/1265394526379806720

Clean blm-data

Let us say, we need to create variables like state and city; we also want to clean some variables like subjects, description, etc.

data <- data %>% 
  # split location
  separate(protest_location,c("city","state"),sep = ",",remove = T) %>% 
  # split protest start time
  separate(protest_start,c("day","date","year"),sep = ",",remove = T) %>%
  # clean subjects and participants
  mutate(
    protest_subject = str_replace(protest_subject,"Subject\\(s\\): ",""),
    protest_participants = str_replace(protest_participants,"Participant\\(s\\): ",""),
    protest_time = str_replace(protest_time,"Time: ",""),
    protest_description = str_replace(protest_description,"Description: ",""),
    protest_urls = str_replace(protest_urls,"Source\\(s\\):","")
    )
## Warning: Expected 2 pieces. Additional pieces discarded in 575 rows [52, 103,
## 140, 187, 189, 201, 207, 211, 224, 267, 293, 337, 469, 531, 686, 738, 855, 885,
## 886, 898, ...].
## Warning: Expected 2 pieces. Missing pieces filled with `NA` in 25 rows [135,
## 568, 617, 640, 737, 811, 1514, 1544, 1545, 1798, 2440, 2880, 3787, 4145, 5776,
## 5822, 5891, 5985, 6134, 6208, ...].
# Show a table for visual check
knitr::kable(data[1:3,],cap="Black Lives Matter Protest (elephrame.com)")
Black Lives Matter Protest (elephrame.com)
page_id protest_id city state day date year protest_end protest_subject protest_participants protest_time protest_description protest_urls
1 6730 London England - happened? Tuesday October 19 2021 - Present Local - Monument - Robert Geffyre, History - Slavery Unclear Continuous Boycott of Museum of the Home over statue of Geffrye, who made money from slave trade ##https://www.hackneycitizen.co.uk/2021/10/19/campaigners-museum-boycott-calls-teachers-families-join-slaver-statue/
1 4538 Minneapolis MN Friday June 5 2020 - Present General - Police Brutality 15 Continuous “Say Their Names” symbolic cemetery of 100 Black people killed by police ##https://www.minneapolis.org/support-black-lives/38th-and-chicago/##https://theconversation.com/black-deaths-matter-the-centuries-old-struggle-to-memorialize-slaves-and-victims-of-racism-140613##https://www.mndaily.com/article/2020/06/say-their-names-cemetery##https://twitter.com/TwinCityReports/status/1272286571929178112##https://twitter.com/TwinCityReports/status/1272718480148660224
1 2948 Minneapolis MN Tuesday May 26 2020 - Present George Floyd Hundreds-Thousands (est.) Continuous Makeshift memorial at site where Floyd was killed ##https://twitter.com/bengarvin/status/1267291981266530305##https://twitter.com/stribrooks/status/1266005779158568963##https://twitter.com/OmarJimenez/status/1265394526379806720

Using Tidytest package to process some variables

There are a variety of processing text packages. Today we briefly introduce tidytext package. You can check herehttps://cran.r-project.org/web/packages/tidytext/vignettes/tidytext.html; This tidytext toturial heavily relies on Julia Silge and David Robinson’s work. You can also check their book Text Mining with R here https://www.tidytextmining.com/

library(tidytext)

# Let us say we are interested in protest description. We need to restructure it as one-token-per-row format. The unnest_tokens function is a way to convert a dataframe with a text column to be one-token-per-row:

tidy_data <- data %>%
  # protest_urls is messay, let us get rid of it first
  select(-protest_urls) %>% 
  # one token per row. This function uses the tokenizers package to separate each line into words. The default tokenizing is for words, but other options include characters, ngrams, sentences, lines, paragraphs, or separation around a regex pattern.
  unnest_tokens(word, protest_description) %>% 
  # remove stop words
  anti_join(tidytext::get_stopwords("en",source="snowball")) %>% 
  # you can also add your own stop words if you want
  # check here to see tibble data structure <https://tibble.tidyverse.org/>
  anti_join(tibble(word=c("no","details")),by="word")
## Joining, by = "word"
knitr::kable(tidy_data[1:10,],cap="Black Lives Matter Protest (elephrame.com)")
Black Lives Matter Protest (elephrame.com)
page_id protest_id city state day date year protest_end protest_subject protest_participants protest_time word
1 6730 London England - happened? Tuesday October 19 2021 - Present Local - Monument - Robert Geffyre, History - Slavery Unclear Continuous boycott
1 6730 London England - happened? Tuesday October 19 2021 - Present Local - Monument - Robert Geffyre, History - Slavery Unclear Continuous museum
1 6730 London England - happened? Tuesday October 19 2021 - Present Local - Monument - Robert Geffyre, History - Slavery Unclear Continuous home
1 6730 London England - happened? Tuesday October 19 2021 - Present Local - Monument - Robert Geffyre, History - Slavery Unclear Continuous statue
1 6730 London England - happened? Tuesday October 19 2021 - Present Local - Monument - Robert Geffyre, History - Slavery Unclear Continuous geffrye
1 6730 London England - happened? Tuesday October 19 2021 - Present Local - Monument - Robert Geffyre, History - Slavery Unclear Continuous made
1 6730 London England - happened? Tuesday October 19 2021 - Present Local - Monument - Robert Geffyre, History - Slavery Unclear Continuous money
1 6730 London England - happened? Tuesday October 19 2021 - Present Local - Monument - Robert Geffyre, History - Slavery Unclear Continuous slave
1 6730 London England - happened? Tuesday October 19 2021 - Present Local - Monument - Robert Geffyre, History - Slavery Unclear Continuous trade
1 4538 Minneapolis MN Friday June 5 2020 - Present General - Police Brutality 15 Continuous say
# let us see what stopwords we are excluding
stopwords_d <- tidytext::get_stopwords()
stopwords_d$word
##   [1] "i"          "me"         "my"         "myself"     "we"        
##   [6] "our"        "ours"       "ourselves"  "you"        "your"      
##  [11] "yours"      "yourself"   "yourselves" "he"         "him"       
##  [16] "his"        "himself"    "she"        "her"        "hers"      
##  [21] "herself"    "it"         "its"        "itself"     "they"      
##  [26] "them"       "their"      "theirs"     "themselves" "what"      
##  [31] "which"      "who"        "whom"       "this"       "that"      
##  [36] "these"      "those"      "am"         "is"         "are"       
##  [41] "was"        "were"       "be"         "been"       "being"     
##  [46] "have"       "has"        "had"        "having"     "do"        
##  [51] "does"       "did"        "doing"      "would"      "should"    
##  [56] "could"      "ought"      "i'm"        "you're"     "he's"      
##  [61] "she's"      "it's"       "we're"      "they're"    "i've"      
##  [66] "you've"     "we've"      "they've"    "i'd"        "you'd"     
##  [71] "he'd"       "she'd"      "we'd"       "they'd"     "i'll"      
##  [76] "you'll"     "he'll"      "she'll"     "we'll"      "they'll"   
##  [81] "isn't"      "aren't"     "wasn't"     "weren't"    "hasn't"    
##  [86] "haven't"    "hadn't"     "doesn't"    "don't"      "didn't"    
##  [91] "won't"      "wouldn't"   "shan't"     "shouldn't"  "can't"     
##  [96] "cannot"     "couldn't"   "mustn't"    "let's"      "that's"    
## [101] "who's"      "what's"     "here's"     "there's"    "when's"    
## [106] "where's"    "why's"      "how's"      "a"          "an"        
## [111] "the"        "and"        "but"        "if"         "or"        
## [116] "because"    "as"         "until"      "while"      "of"        
## [121] "at"         "by"         "for"        "with"       "about"     
## [126] "against"    "between"    "into"       "through"    "during"    
## [131] "before"     "after"      "above"      "below"      "to"        
## [136] "from"       "up"         "down"       "in"         "out"       
## [141] "on"         "off"        "over"       "under"      "again"     
## [146] "further"    "then"       "once"       "here"       "there"     
## [151] "when"       "where"      "why"        "how"        "all"       
## [156] "any"        "both"       "each"       "few"        "more"      
## [161] "most"       "other"      "some"       "such"       "no"        
## [166] "nor"        "not"        "only"       "own"        "same"      
## [171] "so"         "than"       "too"        "very"       "will"

Basic Analysis of Textual Data

Let us get a count vector for protest description, like what are the most frequent words or bi-grams

tidy_data %>% 
  count(word, sort = TRUE) 
## # A tibble: 4,628 × 2
##    word              n
##    <chr>         <int>
##  1 demonstration  2005
##  2 included       1995
##  3 march          1284
##  4 rally          1002
##  5 outside         575
##  6 police          502
##  7 national        478
##  8 walkout         458
##  9 game            432
## 10 anthem          426
## # … with 4,618 more rows

We can further plot this! I don’t like wordcloud, so I just do a simple bar plot.

library(ggplot2)

tidy_data %>%
  count(word, sort = TRUE) %>%
  filter(n > 100) %>%
  mutate(word = reorder(word, n)) %>%
  ggplot(aes(word, n)) +
  geom_col() +
  xlab(NULL) +
  coord_flip()

let us get bigram

 data %>%
  select(-protest_urls) %>% 
  unnest_tokens(bigram, protest_description,token = "ngrams", n = 2) %>%
  count(bigram,sort = TRUE)
## # A tibble: 14,844 × 2
##    bigram                 n
##    <chr>              <int>
##  1 for this            1968
##  2 no details          1968
##  3 this demonstration  1954
##  4 details included    1953
##  5 included for        1953
##  6 national anthem      408
##  7 healthcare workers   389
##  8 walkout of           388
##  9 prior to             387
## 10 during national      383
## # … with 14,834 more rows

Note you can use joining functions to filter these words or ngrams… such as inner_join, anti_join, semi_join, etc.

We can also use tidytext to build document-term matrix or tf-idf. We will cover this next time when we talk about topic modeling.

In the lecture, we briefly mentioned how we represent text in NLP. In Text as Data, the authors mainly summarized the approach of “bag of words” (CoW). It is just one approach to quantify what a document is about. How important a word may be in your document or in the entire corpus (collection of documents)?

One measure of the importance of a word is its term frequency (tf). It captures the frequency of a word in a document. There are very frequent words in a document but may not be important; in English, some stopwords, like “the”, “is”, “of”, “and”, etc. So we need to remove them before analysis based on your research. But for other scholar’s that might be of their interest.

Another way is to look at a term’s inverse document frequency (idf), which decreases the weight for commonly used words and increases the weight for words that are not used very much in a collection of documents.

This can be combined with term frequency to calculate a term’s tf-idf (the two quantities multiplied together), the frequency of a term adjusted for how rarely it is used.

You can check text mining with R book here https://www.tidytextmining.com/tfidf.html#tfidf

tidy_words <- tidy_data %>%
  count(protest_id, word, sort = TRUE)

tidy_words
## # A tibble: 34,317 × 3
##    protest_id word        n
##         <dbl> <chr>   <int>
##  1       2414 march       4
##  2       1370 square      3
##  3       1480 high        3
##  4       2556 police      3
##  5       2767 city        3
##  6       4501 center      3
##  7       4753 workers     3
##  8       5762 nevada      3
##  9       6020 police      3
## 10         11 w           2
## # … with 34,307 more rows

The idea of tf-idf is to find the important words for the content of each document by decreasing the weight for commonly used words and increasing the weight for words that are not used very much in a collection or corpus of documents.

The bind_tf_idf function in the tidytext package takes a tidy text dataset as input with one row per token (term), per document. One column (word here) contains the terms/tokens, one column contains the documents (book in this case), and the last necessary column contains the counts, how many times each document contains each term.

tidy_words <- tidy_words %>%
  bind_tf_idf(word, protest_id, n)

tidy_words
## # A tibble: 34,317 × 6
##    protest_id word        n    tf   idf tf_idf
##         <dbl> <chr>   <int> <dbl> <dbl>  <dbl>
##  1       2414 march       4 0.222  1.68  0.373
##  2       1370 square      3 0.188  4.27  0.800
##  3       1480 high        3 0.176  5.20  0.917
##  4       2556 police      3 0.231  2.63  0.607
##  5       2767 city        3 0.188  3.07  0.575
##  6       4501 center      3 0.25   3.34  0.835
##  7       4753 workers     3 0.231  2.83  0.653
##  8       5762 nevada      3 0.2    8.12  1.62 
##  9       6020 police      3 0.167  2.63  0.439
## 10         11 w           2 0.182  3.85  0.699
## # … with 34,307 more rows

Let us take a look at those relatively important words

tidy_words %>%
  arrange(desc(tf_idf)) %>%
  mutate(word = factor(word, levels = rev(unique(word)))) %>% 
  group_by(protest_id) %>% 
  filter(protest_id%in%sample(2000:5000, 4, replace=F)) %>% 
  top_n(10) %>% 
  ungroup() %>%
  ggplot(aes(word, tf_idf, fill = protest_id)) +
  geom_col(show.legend = FALSE) +
  labs(x = NULL, y = "tf-idf") +
  facet_wrap(~protest_id, ncol = 2, scales = "free") +
  coord_flip()
## Selecting by tf_idf

Use RSelenium Package to Obtain Data

Let us say we want to go deeper about BLM data. The BLM-DATA.TSV provides the original protest urls (news articles). We want to process those original articles to get more info.

Let us use rselenium package to scrape a couple of news articles for example.

Here is a tutorial by Josh McCrain http://joshuamccrain.com/tutorials/web_scraping_R_selenium.html

# create a dataset having urls, year, and ids
urls <- data %>% 
  select(protest_id,state,date,protest_urls) %>% 
  # let us extract all protest_urls
  mutate(protest_urls=str_replace_all(protest_urls,"^##|^#","")) %>% 
  separate_rows(protest_urls,sep="##") %>% 
  filter(str_detect(protest_urls,"^http"))

# only keep one url for each protest
urls1 <- urls %>% 
  distinct(protest_id,.keep_all = T)

# let us take a look at the data
knitr::kable(urls1[1:5,],cap="Black Lives Matter Protest (elephrame.com)")
Black Lives Matter Protest (elephrame.com)
protest_id state date protest_urls
6730 England - happened? October 19 https://www.hackneycitizen.co.uk/2021/10/19/campaigners-museum-boycott-calls-teachers-families-join-slaver-statue/
4538 MN June 5 https://www.minneapolis.org/support-black-lives/38th-and-chicago/
2948 MN May 26 https://twitter.com/bengarvin/status/1267291981266530305
6754 MN February 5 https://www.startribune.com/protest-of-police-killing-of-amir-locke-draws-hundreds-to-minneapolis/600143527/
6755 MN February 4 https://minnesota.cbslocal.com/2022/02/05/car-caravan-rolls-through-downtown-minneapolis-in-protest-of-amir-locke-killing/

You need to use RSelenium to scrape these dynamic websites; we have learnt basic Selenium stuff in python. You can read this turorial for more details http://joshuamccrain.com/tutorials/web_scraping_R_selenium.html We also have a tutorial using python selenium to scrape data in previous lab.

Here let me briefly show you we can also do this in R

# connect to chrome driver
driver <- RSelenium::rsDriver(browser = "firefox",port=4567L, verbose=F)
remote_driver <- driver[["client"]] 
remote_driver$navigate(urls1$protest_urls[1])
# retrieve the article

main_article <- remote_driver$findElement(using = "id", value="fl-post-254675")

text <- main_article$getElementText()
driver[["server"]]$stop()
## [1] TRUE
gc(driver)
##           used  (Mb) gc trigger  (Mb) limit (Mb) max used  (Mb)
## Ncells 2972654 158.8    5581532 298.1         NA  5581532 298.1
## Vcells 6210446  47.4   12255594  93.6     102400 10146317  77.5
rm(driver)

Text is a messy list, you need to do some cleaning again.

# let us clean those special characters like \n \t, etc.

tidy_text <- text[[1]] %>% 
  # remove all whitespaces, note it is regex \t
  str_replace_all("\\s"," ") %>% 
  # reove some weird punct
  str_replace_all('\\"',"") %>% 
  # remove some double spaces
  str_squish %>% 
  # reve spaces at the begining and end of the text
  str_trim %>% 
  # lower case
  tolower()

tidy_text
## [1] "campaigners ramp up museum boycott with calls for teachers and families to join them until slaver statue is removed by julia gregory, local democracy reporter | tuesday 19 october 2021 at 19:22 campaigners have been protesting against the statue for more than a year campaigners are calling for a boycott of a hoxton museum until the statue of a merchant “invoved in an industry which contributed to the rape, torture and murder” of enslaved people is removed. hackney stand up to racism is urging people to boycott the museum of the home until it removes the statue of sir robert geffrye, who made his some of his money from transatlantic slavery in the 17th century. they renewed their call for a boycott at the meeting house on newington green, which was associated with the campaign to abolish slavery. they want teachers, youth groups and families to stop taking trips to the museum until the statue is taken down. dalston councillor soraya adejare said robert geffrye made his money on the back of the misery of others. “it’s an affront to common decency,” she added. she said it rubbed salt into the wounds of a commnunity as diverse as hackney to see the statue of a trader who benefitted from slavery and questioned the government’s intervention to prevent statues like this being removed. cllr sade etti, hackney council’s no place for hate champion and mayoral advisor on homelessness, said: “statues of those involved in slavery ought to be pulled down and removed. it is morally reprehensible to continue to support their existence.” subira cameron-goppy from the claudia jones organisation. photograph: courtesy claudia jones organisation subira cameron-goppy from the claudia jones organisation, which is also supporting the boycott, considers robert geffyre’s involvement in slavery a hate crime. she said: “as an african caribbean community, how are we to see this statue?” removing it is “not removing history, it is truly telling the truth of history,” she added. the sculpture stands outside the museum, which is housed in former almshouses which robert geffrye helped to fund. he is not connected to the founding of the museum or its collections. david davies from the hackney branch of the national education union said: “we are not asking for the statue to be thrown into the river lea. we are asking for the statue to be conceptualised.” the museum would have to get planning permission to remove the statue. it could also affect the building’s grade-i listed status. hackney north and stoke newington mp diane abbott said: “the entire history of slavery and colonialism were shameful eras. we should not be honouring the slavers and colonialists, we should be disowning them and disavowing them. we should also be teaching people about the most shameful aspects of that history.” she told campaigners: “you have right and you have the future on your side. geffrye must fall!” kurdish and turkish community group day-mer also voiced its support for the statue’s removal. paint on the entrance of the museum last year the museum of the home told the citizen: “at present we have no comment to offer.” it consulted people last year about the future of the statue and most of the 2,000 who responded said it should go. earlier this year, then communities secretary robert jenrick said there will be new legal safeguards for historic monuments at risk of removal or relocation. this followed the toppling of a statue of edward colston in bristol during a black lives matter protest. colston had connections to the slave trade. previously, the museum of the home said that it was doing work to explain the story of the statue. a spokesperson said: “the first step has been to install a panel near the statue telling a fuller history of geffrye, including his connections with the forced labour and trading of enslaved africans, and acknowledging that the statue is the subject of much discussion. “we will confront, challenge and learn from the uncomfortable truths of the origins of the museum buildings, and fulfil our commitment to diversity and inclusion.” 1 shares share 1 tweet support us the coronavirus outbreak meant that the hackney citizen was unable to print a monthly newspaper for three months. we're grateful that we have since been able to resume printing. this would not have been possible without the generosity of our readers, whose donations kept the paper from disappearing completely at a distressing time for residents. a huge thank you to everyone who gave their time and money to support us through the lockdown, and to those who continue to do so as we slowly recover from the dramatic fall in advertising revenues, on top of the existing challenges threatening the future of local journalism. a one-off donation or a regular contribution from anyone who can afford it will help our small team keep the newspaper in print and the website running in the coming months and years. find out how you can donate. thank you for your support, and stay safe. the hackney citizen team ← drinkers face £100 fine if they misbehave in public anywhere in hackney under new powers agreed by town hall ‘it’s a big shock’: families protest outside hackney town hall as they step up fight to save two children’s centres →"

VOILA, we have a nice tidy text!!!

You can write a loop to go through all these urls and scrape the entire page for each url. Later then you clean and build a database.

For more tutorial, you can check here again: <>

Let us then use quanteda package do some text processing in R (FINALLY :))

Check here for Quantedahttps://quanteda.io/articles/pkgdown/quickstart.html

quanteda, Quantitative Analysis of Textual Data, is an R package for managing and analyzing textual data developed by Kenneth Benoit, Kohei Watanabe, and other contributors.

The package is designed for R users needing to apply natural language processing to texts, from documents to final analysis. Its capabilities match or exceed those provided in many end-user software applications, many of which are expensive and not open source. The package is therefore of great benefit to researchers, students, and other analysts with fewer financial resources. While using quanteda requires R programming knowledge, its API is designed to enable powerful, efficient analysis with a minimum of steps. By emphasizing consistent design, furthermore, quanteda lowers the barriers to learning and using NLP and quantitative text analysis even for proficient R programmers.

You are also encourage to install several recommended packages, including readtext, spacyr, and quanteda.corpora.

In this part, we however use some new york times articles to run analysis. If you manage to obtain all protest articles, you can use these protest articles as well. If not, you can use the small sample of nyt dataset. It has title_doca, text, and title_proquest. The title_doca ALLOWs you to merge nyt articles with doca data.

Note that you can download the doca raw dataset from this link: https://web.stanford.edu/group/collectiveaction/cgi-bin/drupal/. Then you can merge doca data with nyt articles. Ideally you can treat doca dataset as your TRAINING dataset, and you can train some models to predict protest related outcomes.

load("./doca_nyt.rdata")

Let us build a doca nyt corpus

Quanteda has a corpus constructor command corpus(): - a vector of character objects, for instance that you have already loaded into the workspace using other tools; - a VCorpus corpus object from the tm package. - a data.frame containing a text column and any other document-level metadata

.

doca_nyt_corpus <- corpus(doca_nyt)  # build a new corpus from the texts
#summary(doca_nyt_corpus)
How a quanteda corpus works

A corpus is designed to be a “library” of original documents that have been converted to plain, UTF-8 encoded text, and stored along with meta-data at the corpus level and at the document-level. We have a special name for document-level meta-data: docvars. These are variables or features that describe attributes of each document.

A corpus is designed to be a more or less static container of texts with respect to processing and analysis. This means that the texts in corpus are not designed to be changed internally through (for example) cleaning or pre-processing steps, such as stemming or removing punctuation. Rather, texts can be extracted from the corpus as part of processing, and assigned to new objects, but the idea is that the corpus will remain as an original reference copy so that other analyses – for instance those in which stems and punctuation were required, such as analyzing a reading ease index – can be performed on the same corpus.

To extract texts from a corpus, we use an extractor, called texts().

texts(doca_nyt_corpus)[2]
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           text2 
## "Homosexuals at Harvard Protesting Navy Hiring\n‘New York Times (1923-Current file); Mar 21, 1983: ProQuest Historical Newspapers: The New York Times\nps. Al2\n\nHomosexuals at Harvard\nProtesting Navy Hiring\n\nCAMBRIDGE, Mass., March 20 (AP)\n— A drive by homosexual students at\nHarvard University to hold a campus\nforum about Navy hiring practices\nthreatens the university with the loss of\n$3 million in Defense Department\nfunds, a university official said today.\n\nThe Navy has refused to attend sucha\nforum, required under university regulations when 500 or more students sign a\npetition demanding it, according to\nArchie C. Epps 3d, the dean of students.\n\nThe Harvard-Radcliffe Gay and Lesbian Students Association has collected\n400 signatures on petitions requesting a\nforum with the Navy and is expected to\nhave the required number soon, said\nGeorge A. Broadwell, the chairman.\n\nThe 1973 Military Procurement Act\nstates ‘‘no funds appropriated for the\nDepartment of Defense may be used for\nany institution of higher learning if the\nSecretary of Defense or his designee\ndetermines that recruiting personnel of\nany of the armed forces are barred by\npolicy from the institution’s premises.’’\n\nReproduced with permission of the copyright owner. Further reproduction prohibited without permission."

Exploring corpus texts: The kwic function (keywords-in-context) performs a search for a word and allows us to view the contexts in which it occurs:

kwic(doca_nyt_corpus, "protest",valuetype = "regex")
##                  
##        [text2, 4]
##       [text2, 35]
##       [text8, 10]
##       [text8, 57]
##       [text18, 9]
##      [text18, 49]
##     [text25, 508]
##     [text25, 545]
##     [text27, 827]
##       [text28, 7]
##      [text28, 42]
##     [text28, 156]
##     [text28, 662]
##    [text29, 1022]
##    [text29, 1055]
##    [text29, 1160]
##    [text29, 1220]
##       [text30, 5]
##      [text30, 38]
##       [text32, 9]
##      [text32, 60]
##     [text32, 106]
##       [text35, 2]
##      [text35, 27]
##      [text35, 38]
##       [text38, 8]
##      [text38, 53]
##     [text40, 393]
##      [text41, 92]
##     [text41, 219]
##     [text41, 301]
##     [text41, 504]
##     [text41, 930]
##     [text46, 131]
##      [text48, 61]
##     [text48, 189]
##     [text48, 249]
##     [text48, 441]
##     [text50, 136]
##    [text50, 1347]
##    [text50, 1446]
##       [text52, 2]
##      [text52, 45]
##      [text52, 88]
##     [text52, 305]
##     [text52, 480]
##     [text52, 780]
##     [text52, 785]
##     [text53, 411]
##     [text53, 553]
##      [text54, 74]
##      [text55, 83]
##     [text55, 178]
##       [text56, 2]
##      [text56, 47]
##      [text56, 71]
##     [text56, 107]
##     [text56, 249]
##     [text56, 436]
##     [text56, 582]
##     [text61, 489]
##     [text63, 101]
##       [text66, 3]
##      [text66, 40]
##     [text66, 132]
##       [text67, 3]
##      [text67, 85]
##     [text67, 170]
##     [text69, 153]
##       [text70, 3]
##      [text70, 38]
##      [text70, 87]
##    [text71, 1817]
##     [text73, 754]
##     [text73, 773]
##       [text75, 3]
##      [text75, 30]
##      [text75, 81]
##     [text75, 122]
##      [text76, 92]
##     [text76, 234]
##     [text77, 288]
##     [text77, 401]
##     [text77, 521]
##       [text78, 2]
##      [text78, 35]
##      [text81, 51]
##     [text82, 258]
##     [text82, 364]
##     [text82, 540]
##     [text82, 592]
##    [text82, 1194]
##    [text82, 1210]
##    [text82, 1333]
##    [text82, 1346]
##    [text82, 1516]
##    [text82, 1598]
##    [text82, 1640]
##    [text82, 1720]
##    [text82, 1757]
##    [text82, 1794]
##    [text82, 1854]
##    [text82, 1940]
##       [text87, 2]
##      [text87, 51]
##     [text87, 654]
##       [text92, 2]
##      [text92, 36]
##      [text92, 97]
##     [text92, 324]
##      [text93, 82]
##     [text93, 134]
##     [text93, 173]
##     [text93, 205]
##     [text93, 238]
##      [text94, 94]
##     [text94, 202]
##     [text94, 222]
##     [text94, 252]
##     [text94, 289]
##     [text94, 329]
##     [text94, 376]
##     [text94, 645]
##     [text94, 727]
##     [text94, 749]
##     [text94, 809]
##     [text96, 153]
##       [text97, 5]
##      [text97, 34]
##     [text97, 162]
##       [text99, 5]
##      [text100, 4]
##     [text100, 32]
##     [text100, 60]
##      [text101, 2]
##     [text101, 39]
##     [text104, 77]
##    [text106, 133]
##      [text107, 5]
##     [text107, 39]
##     [text107, 78]
##    [text107, 183]
##      [text108, 2]
##     [text108, 36]
##     [text108, 57]
##      [text112, 2]
##     [text112, 41]
##      [text115, 1]
##     [text115, 38]
##     [text115, 61]
##    [text116, 347]
##      [text118, 6]
##     [text118, 45]
##     [text118, 67]
##     [text118, 95]
##    [text118, 125]
##    [text118, 133]
##    [text118, 155]
##    [text118, 229]
##    [text118, 248]
##    [text118, 290]
##    [text118, 323]
##    [text118, 981]
##    [text119, 127]
##     [text121, 63]
##      [text122, 6]
##     [text122, 41]
##    [text122, 350]
##      [text125, 2]
##     [text125, 51]
##    [text125, 251]
##    [text132, 216]
##      [text133, 1]
##     [text133, 94]
##    [text133, 118]
##      [text140, 7]
##     [text140, 18]
##     [text140, 37]
##    [text140, 106]
##    [text140, 180]
##     [text141, 62]
##    [text141, 136]
##    [text141, 175]
##    [text141, 424]
##    [text141, 562]
##    [text142, 617]
##      [text143, 7]
##     [text143, 52]
##    [text143, 863]
##   [text143, 1543]
##    [text145, 749]
##      [text148, 6]
##     [text148, 46]
##     [text148, 76]
##    [text148, 176]
##    [text148, 193]
##    [text148, 478]
##    [text148, 487]
##    [text148, 511]
##    [text148, 589]
##    [text148, 613]
##    [text148, 657]
##    [text148, 678]
##    [text148, 726]
##    [text148, 856]
##    [text149, 455]
##   [text149, 1019]
##    [text150, 457]
##      [text151, 4]
##     [text151, 76]
##    [text151, 117]
##     [text154, 59]
##    [text154, 361]
##    [text154, 463]
##    [text155, 107]
##    [text155, 672]
##      [text159, 1]
##    [text159, 109]
##    [text159, 146]
##    [text160, 134]
##    [text162, 127]
##     [text166, 80]
##    [text166, 233]
##    [text166, 270]
##    [text166, 364]
##    [text166, 515]
##    [text166, 571]
##    [text169, 686]
##    [text170, 455]
##    [text171, 451]
##    [text171, 681]
##   [text174, 1210]
##    [text177, 160]
##    [text180, 120]
##    [text180, 149]
##     [text181, 11]
##     [text181, 58]
##    [text181, 347]
##    [text181, 914]
##    [text182, 817]
##    [text184, 142]
##      [text185, 6]
##    [text185, 177]
##    [text185, 255]
##    [text185, 274]
##    [text185, 275]
##    [text185, 304]
##    [text185, 338]
##      [text186, 7]
##     [text186, 25]
##     [text186, 60]
##     [text186, 94]
##    [text186, 269]
##     [text187, 11]
##     [text187, 47]
##     [text187, 62]
##      [text188, 2]
##     [text188, 44]
##     [text189, 10]
##     [text189, 53]
##    [text189, 114]
##    [text189, 257]
##    [text189, 276]
##    [text193, 115]
##    [text193, 302]
##    [text194, 178]
##    [text194, 439]
##      [text195, 5]
##     [text195, 49]
##    [text195, 198]
##    [text195, 211]
##    [text195, 219]
##    [text195, 365]
##    [text195, 400]
##    [text195, 510]
##    [text195, 635]
##    [text195, 663]
##    [text195, 707]
##    [text195, 797]
##    [text195, 817]
##    [text204, 338]
##    [text204, 634]
##      [text206, 3]
##     [text206, 58]
##    [text206, 263]
##    [text206, 810]
##    [text206, 835]
##   [text206, 1071]
##      [text207, 6]
##    [text207, 111]
##    [text207, 156]
##    [text207, 268]
##    [text207, 527]
##      [text216, 2]
##     [text216, 46]
##     [text216, 69]
##    [text216, 712]
##    [text217, 111]
##      [text218, 2]
##      [text220, 2]
##     [text220, 35]
##     [text220, 61]
##    [text221, 535]
##    [text221, 597]
##      [text225, 2]
##     [text225, 45]
##    [text226, 205]
##    [text226, 390]
##      [text230, 7]
##     [text230, 37]
##     [text230, 45]
##    [text232, 207]
##    [text232, 325]
##      [text233, 4]
##     [text233, 35]
##    [text233, 123]
##    [text237, 616]
##      [text240, 2]
##     [text240, 32]
##     [text240, 49]
##     [text241, 47]
##    [text241, 476]
##     [text245, 90]
##    [text245, 401]
##    [text245, 453]
##    [text245, 525]
##      [text248, 6]
##     [text248, 36]
##     [text248, 61]
##    [text248, 155]
##    [text248, 182]
##      [text257, 5]
##     [text257, 69]
##     [text257, 88]
##    [text257, 143]
##    [text257, 233]
##    [text257, 263]
##    [text257, 475]
##    [text257, 562]
##    [text257, 748]
##      [text259, 6]
##     [text259, 42]
##     [text259, 76]
##    [text259, 131]
##    [text259, 200]
##    [text259, 229]
##     [text265, 62]
##    [text268, 333]
##    [text276, 154]
##      [text278, 4]
##     [text278, 45]
##     [text279, 71]
##    [text279, 169]
##      [text281, 2]
##     [text281, 85]
##      [text282, 6]
##     [text282, 53]
##      [text284, 7]
##     [text284, 48]
##    [text284, 121]
##     [text286, 85]
##    [text286, 185]
##     [text287, 85]
##     [text288, 62]
##    [text289, 702]
##   [text289, 1087]
##    [text291, 818]
##    [text292, 702]
##    [text293, 107]
##    [text294, 115]
##    [text294, 122]
##    [text294, 199]
##    [text294, 285]
##    [text294, 400]
##    [text294, 600]
##    [text294, 695]
##    [text294, 816]
##    [text297, 243]
##     [text298, 60]
##      [text300, 7]
##     [text300, 42]
##     [text300, 90]
##    [text300, 186]
##   [text302, 1498]
##      [text303, 4]
##     [text303, 89]
##    [text303, 201]
##    [text303, 231]
##    [text303, 239]
##    [text303, 293]
##    [text303, 417]
##    [text303, 668]
##    [text303, 709]
##      [text305, 4]
##     [text305, 60]
##    [text305, 163]
##    [text305, 205]
##    [text305, 313]
##      [text307, 1]
##     [text307, 39]
##     [text307, 54]
##    [text307, 104]
##    [text307, 325]
##      [text308, 6]
##     [text308, 39]
##    [text308, 159]
##   [text308, 1037]
##   [text308, 1101]
##   [text308, 1143]
##      [text309, 6]
##     [text309, 10]
##     [text309, 45]
##     [text309, 75]
##    [text309, 175]
##    [text309, 192]
##    [text309, 477]
##    [text309, 486]
##    [text309, 510]
##    [text309, 588]
##    [text309, 612]
##    [text309, 656]
##    [text309, 677]
##    [text309, 725]
##    [text309, 855]
##      [text310, 2]
##     [text310, 28]
##      [text311, 7]
##     [text311, 38]
##      [text312, 8]
##     [text312, 45]
##     [text312, 72]
##     [text313, 42]
##    [text313, 131]
##    [text313, 194]
##    [text313, 272]
##    [text313, 378]
##     [text315, 99]
##    [text317, 101]
##    [text317, 109]
##      [text321, 6]
##     [text321, 47]
##     [text321, 84]
##    [text321, 636]
##     [text322, 11]
##     [text322, 43]
##     [text323, 59]
##     [text323, 95]
##    [text323, 184]
##    [text323, 213]
##    [text323, 820]
##     [text326, 53]
##    [text326, 464]
##    [text326, 605]
##      [text329, 3]
##     [text329, 36]
##    [text329, 173]
##    [text330, 175]
##    [text334, 619]
##      [text335, 4]
##     [text335, 39]
##     [text335, 64]
##     [text336, 74]
##    [text336, 319]
##    [text336, 331]
##    [text336, 380]
##    [text336, 507]
##    [text340, 174]
##      [text341, 2]
##     [text341, 52]
##    [text341, 108]
##    [text342, 428]
##    [text346, 291]
##    [text346, 612]
##    [text346, 630]
##     [text351, 58]
##      [text355, 5]
##     [text355, 67]
##    [text355, 525]
##    [text359, 486]
##    [text364, 250]
##    [text365, 136]
##      [text369, 9]
##     [text369, 42]
##     [text369, 46]
##     [text369, 68]
##    [text369, 132]
##    [text369, 151]
##    [text369, 265]
##    [text373, 123]
##    [text373, 718]
##      [text376, 6]
##      [text381, 1]
##     [text381, 28]
##     [text381, 40]
##    [text385, 235]
##      [text386, 3]
##    [text386, 308]
##     [text387, 49]
##      [text388, 8]
##     [text388, 40]
##    [text388, 247]
##    [text391, 586]
##    [text391, 672]
##      [text393, 7]
##     [text393, 37]
##    [text393, 192]
##    [text395, 121]
##      [text397, 5]
##     [text397, 32]
##      [text398, 1]
##     [text398, 36]
##    [text398, 386]
##    [text403, 243]
##      [text407, 2]
##     [text407, 31]
##     [text407, 69]
##     [text408, 81]
##    [text408, 418]
##      [text410, 9]
##     [text410, 73]
##    [text410, 135]
##    [text410, 154]
##     [text414, 60]
##    [text415, 721]
##     [text416, 11]
##    [text416, 178]
##    [text416, 229]
##    [text416, 574]
##   [text416, 1419]
##    [text417, 125]
##      [text420, 1]
##     [text420, 54]
##    [text420, 107]
##    [text420, 284]
##    [text420, 326]
##    [text420, 404]
##    [text420, 503]
##    [text420, 706]
##      [text421, 3]
##     [text421, 49]
##    [text421, 134]
##    [text421, 362]
##      [text422, 7]
##     [text422, 48]
##     [text422, 73]
##    [text422, 108]
##    [text422, 187]
##    [text422, 345]
##    [text422, 542]
##    [text422, 595]
##    [text422, 653]
##   [text422, 1053]
##   [text422, 1142]
##   [text422, 1270]
##   [text422, 1394]
##    [text425, 137]
##    [text427, 598]
##     [text432, 12]
##     [text432, 54]
##     [text432, 75]
##    [text432, 114]
##    [text432, 149]
##    [text432, 447]
##    [text432, 740]
##    [text432, 811]
##      [text434, 8]
##     [text434, 31]
##    [text436, 302]
##      [text438, 3]
##     [text438, 32]
##     [text438, 54]
##    [text438, 175]
##      [text443, 3]
##     [text443, 42]
##    [text443, 590]
##    [text447, 115]
##    [text447, 302]
##      [text450, 6]
##     [text450, 64]
##     [text450, 75]
##     [text450, 91]
##    [text450, 477]
##    [text450, 708]
##      [text453, 2]
##     [text453, 31]
##     [text453, 57]
##    [text455, 880]
##    [text460, 103]
##     [text463, 62]
##    [text463, 131]
##    [text466, 147]
##    [text466, 826]
##    [text466, 863]
##      [text468, 7]
##     [text468, 38]
##   [text470, 1397]
##   [text470, 1575]
##    [text473, 122]
##    [text483, 240]
##    [text486, 347]
##    [text486, 506]
##    [text486, 510]
##      [text487, 2]
##     [text487, 47]
##     [text487, 70]
##    [text487, 100]
##      [text491, 7]
##     [text491, 41]
##     [text491, 75]
##    [text491, 113]
##    [text496, 657]
##    [text498, 111]
##    [text498, 305]
##    [text498, 353]
##    [text498, 765]
##      [text500, 4]
##     [text500, 22]
##     [text500, 47]
##      [text501, 3]
##     [text501, 40]
##     [text501, 97]
##    [text501, 107]
##    [text501, 222]
##     [text502, 60]
##    [text504, 224]
##    [text508, 522]
##    [text508, 963]
##    [text508, 973]
##    [text509, 459]
##    [text509, 494]
##    [text510, 363]
##    [text512, 869]
##    [text512, 890]
##   [text512, 1013]
##     [text514, 66]
##    [text514, 239]
##    [text514, 333]
##    [text514, 648]
##    [text514, 873]
##    [text514, 952]
##    [text514, 977]
##   [text514, 1116]
##   [text514, 1168]
##   [text514, 1334]
##   [text514, 1415]
##   [text514, 1584]
##      [text515, 3]
##     [text515, 37]
##     [text517, 33]
##     [text517, 56]
##    [text517, 435]
##    [text518, 408]
##      [text519, 2]
##     [text519, 37]
##    [text519, 166]
##    [text519, 193]
##      [text520, 9]
##     [text520, 43]
##     [text522, 12]
##     [text522, 52]
##     [text522, 94]
##    [text522, 335]
##    [text522, 470]
##      [text523, 7]
##     [text523, 46]
##    [text523, 332]
##    [text523, 443]
##      [text524, 3]
##     [text524, 31]
##     [text524, 49]
##    [text529, 121]
##      [text533, 5]
##     [text533, 44]
##     [text533, 62]
##     [text533, 79]
##    [text533, 136]
##    [text533, 156]
##    [text533, 190]
##    [text533, 215]
##    [text533, 322]
##    [text533, 365]
##    [text533, 626]
##    [text534, 235]
##      [text540, 6]
##     [text540, 42]
##    [text540, 113]
##      [text541, 5]
##     [text541, 58]
##     [text541, 96]
##    [text541, 117]
##    [text541, 172]
##    [text541, 269]
##    [text543, 413]
##    [text543, 689]
##   [text543, 1374]
##     [text546, 46]
##      [text548, 2]
##     [text548, 42]
##     [text548, 99]
##    [text548, 119]
##    [text548, 156]
##    [text548, 389]
##    [text548, 465]
##      [text549, 9]
##     [text549, 47]
##    [text551, 316]
##     [text553, 10]
##     [text553, 60]
##    [text553, 311]
##    [text553, 569]
##    [text553, 581]
##   [text553, 1651]
##   [text553, 1657]
##   [text553, 1731]
##    [text555, 631]
##      [text559, 6]
##     [text559, 44]
##     [text559, 78]
##      [text564, 6]
##     [text564, 40]
##      [text570, 2]
##     [text570, 35]
##    [text570, 102]
##    [text570, 152]
##    [text570, 435]
##    [text571, 148]
##    [text571, 371]
##      [text573, 4]
##     [text573, 39]
##     [text573, 92]
##    [text573, 173]
##    [text573, 412]
##      [text574, 5]
##     [text574, 34]
##     [text574, 62]
##     [text578, 75]
##    [text578, 122]
##    [text580, 183]
##    [text584, 141]
##    [text584, 471]
##    [text584, 513]
##    [text584, 596]
##    [text590, 248]
##    [text591, 506]
##    [text591, 542]
##    [text593, 113]
##    [text593, 629]
##    [text593, 778]
##     [text600, 65]
##    [text601, 202]
##    [text603, 475]
##      [text605, 4]
##     [text605, 63]
##    [text605, 114]
##    [text605, 137]
##    [text607, 227]
##    [text607, 448]
##    [text608, 157]
##     [text611, 62]
##    [text612, 239]
##    [text615, 101]
##    [text615, 131]
##    [text615, 318]
##    [text615, 523]
##    [text616, 112]
##    [text616, 172]
##    [text616, 206]
##    [text616, 264]
##    [text616, 578]
##    [text616, 709]
##    [text616, 743]
##    [text616, 808]
##    [text616, 867]
##    [text616, 926]
##    [text619, 513]
##    [text619, 798]
##   [text619, 1590]
##      [text622, 4]
##     [text622, 33]
##     [text622, 95]
##    [text622, 212]
##    [text622, 245]
##    [text623, 224]
##    [text627, 345]
##    [text627, 713]
##     [text628, 96]
##    [text628, 172]
##    [text628, 587]
##      [text631, 9]
##     [text631, 46]
##   [text633, 1239]
##   [text633, 1471]
##   [text633, 1503]
##      [text635, 7]
##     [text635, 45]
##     [text635, 91]
##    [text635, 214]
##      [text640, 6]
##     [text640, 55]
##     [text640, 98]
##    [text640, 367]
##     [text641, 59]
##    [text643, 439]
##   [text644, 1020]
##   [text644, 1025]
##     [text645, 71]
##    [text645, 131]
##    [text653, 213]
##    [text653, 244]
##    [text653, 262]
##      [text656, 6]
##     [text656, 81]
##     [text657, 52]
##    [text657, 109]
##    [text657, 147]
##    [text659, 156]
##      [text666, 2]
##     [text666, 49]
##     [text666, 62]
##    [text666, 135]
##      [text667, 4]
##     [text667, 39]
##    [text667, 346]
##     [text674, 67]
##    [text674, 199]
##    [text676, 517]
##    [text676, 550]
##      [text677, 5]
##     [text677, 54]
##     [text677, 70]
##    [text683, 382]
##    [text683, 402]
##    [text686, 575]
##   [text687, 1182]
##     [text688, 50]
##    [text688, 145]
##    [text688, 234]
##    [text688, 392]
##    [text688, 541]
##    [text688, 577]
##    [text688, 820]
##      [text689, 6]
##     [text689, 45]
##     [text692, 58]
##    [text692, 364]
##    [text692, 756]
##      [text700, 3]
##     [text700, 28]
##     [text700, 97]
##      [text701, 8]
##     [text701, 40]
##     [text701, 47]
##    [text701, 161]
##    [text702, 200]
##     [text707, 98]
##    [text707, 145]
##    [text709, 439]
##    [text709, 468]
##     [text710, 12]
##     [text710, 55]
##    [text710, 152]
##      [text712, 8]
##     [text712, 56]
##    [text717, 230]
##      [text719, 9]
##     [text719, 52]
##    [text721, 746]
##    [text726, 103]
##    [text726, 223]
##    [text726, 580]
##   [text726, 1029]
##   [text726, 1178]
##   [text726, 1224]
##   [text726, 1498]
##      [text728, 2]
##     [text728, 53]
##    [text728, 231]
##    [text728, 683]
##    [text728, 714]
##    [text730, 108]
##    [text730, 969]
##     [text731, 13]
##     [text731, 52]
##      [text732, 2]
##     [text732, 46]
##    [text732, 141]
##    [text732, 237]
##    [text732, 494]
##    [text734, 115]
##    [text734, 267]
##    [text734, 332]
##   [text734, 1032]
##      [text735, 3]
##     [text735, 37]
##    [text735, 145]
##      [text736, 2]
##     [text736, 35]
##     [text736, 57]
##    [text736, 103]
##    [text736, 133]
##    [text736, 169]
##      [text739, 1]
##     [text739, 35]
##     [text739, 88]
##    [text739, 535]
##    [text739, 567]
##    [text745, 210]
##   [text745, 1146]
##    [text748, 310]
##     [text749, 10]
##     [text749, 50]
##    [text749, 114]
##    [text749, 264]
##    [text749, 416]
##    [text749, 484]
##    [text749, 723]
##    [text749, 825]
##    [text749, 839]
##    [text749, 888]
##    [text749, 977]
##    [text750, 666]
##    [text754, 124]
##     [text757, 11]
##     [text757, 54]
##    [text757, 268]
##    [text758, 504]
##      [text759, 7]
##     [text759, 40]
##     [text761, 50]
##     [text761, 58]
##    [text761, 904]
##   [text761, 1082]
##     [text763, 57]
##   [text763, 1167]
##    [text764, 601]
##    [text764, 745]
##    [text764, 846]
##   [text764, 1023]
##   [text764, 1121]
##   [text764, 1197]
##   [text764, 1265]
##   [text764, 1336]
##      [text766, 8]
##     [text766, 40]
##     [text766, 82]
##    [text767, 387]
##    [text768, 850]
##    [text768, 921]
##   [text770, 1538]
##     [text772, 60]
##    [text783, 470]
##     [text784, 91]
##      [text790, 4]
##     [text790, 38]
##    [text790, 103]
##    [text790, 173]
##    [text790, 590]
##    [text791, 123]
##    [text791, 802]
##   [text791, 1554]
##      [text792, 5]
##     [text792, 35]
##    [text792, 168]
##    [text792, 229]
##    [text792, 264]
##      [text794, 6]
##      [text794, 8]
##     [text794, 45]
##     [text794, 46]
##     [text794, 68]
##    [text794, 342]
##      [text795, 2]
##     [text795, 30]
##     [text795, 40]
##    [text795, 100]
##      [text796, 7]
##     [text796, 48]
##    [text796, 103]
##    [text796, 137]
##    [text796, 189]
##    [text796, 604]
##    [text797, 206]
##    [text797, 283]
##     [text798, 88]
##     [text799, 66]
##      [text801, 5]
##     [text801, 39]
##   [text802, 1065]
##    [text808, 331]
##    [text810, 136]
##    [text812, 102]
##    [text812, 166]
##    [text812, 401]
##    [text812, 583]
##    [text813, 243]
##    [text813, 245]
##    [text813, 426]
##    [text813, 430]
##    [text818, 106]
##    [text818, 197]
##    [text818, 228]
##    [text819, 133]
##    [text819, 174]
##    [text819, 494]
##    [text820, 232]
##      [text826, 2]
##     [text826, 33]
##     [text826, 67]
##     [text826, 78]
##     [text826, 85]
##     [text830, 60]
##    [text830, 112]
##    [text830, 237]
##    [text830, 625]
##    [text835, 606]
##     [text836, 75]
##    [text836, 263]
##      [text837, 9]
##     [text837, 58]
##    [text837, 213]
##     [text841, 20]
##     [text841, 54]
##    [text841, 135]
##      [text842, 7]
##     [text842, 46]
##    [text843, 980]
##    [text846, 123]
##    [text848, 402]
##    [text848, 423]
##    [text848, 590]
##    [text848, 711]
##     [text850, 66]
##      [text852, 3]
##     [text852, 41]
##     [text852, 79]
##      [text853, 5]
##     [text853, 50]
##    [text853, 105]
##      [text854, 6]
##     [text854, 47]
##     [text854, 84]
##    [text854, 636]
##    [text856, 159]
##    [text856, 496]
##    [text856, 661]
##    [text860, 198]
##     [text862, 67]
##    [text866, 602]
##    [text866, 931]
##   [text866, 1500]
##   [text866, 1612]
##   [text866, 1717]
##   [text866, 1774]
##      [text867, 5]
##     [text867, 36]
##     [text867, 60]
##    [text867, 110]
##    [text867, 145]
##   [text872, 2055]
##   [text872, 2057]
##   [text872, 2189]
##   [text872, 2295]
##    [text878, 169]
##    [text878, 260]
##    [text878, 507]
##    [text878, 749]
##    [text878, 751]
##    [text878, 835]
##   [text878, 1048]
##     [text880, 56]
##    [text884, 129]
##    [text884, 534]
##      [text885, 9]
##     [text885, 39]
##     [text885, 62]
##    [text885, 157]
##    [text885, 272]
##    [text885, 290]
##      [text887, 3]
##     [text887, 50]
##    [text887, 818]
##    [text888, 149]
##    [text888, 179]
##    [text888, 188]
##    [text888, 629]
##    [text888, 946]
##    [text892, 127]
##    [text892, 237]
##    [text892, 252]
##    [text892, 267]
##    [text892, 293]
##    [text892, 327]
##    [text892, 546]
##    [text892, 616]
##    [text892, 630]
##    [text892, 637]
##    [text894, 163]
##    [text894, 497]
##    [text894, 584]
##   [text894, 1042]
##   [text894, 1149]
##   [text894, 1199]
##   [text894, 1249]
##      [text895, 3]
##     [text895, 42]
##     [text895, 47]
##     [text895, 81]
##    [text895, 173]
##      [text897, 3]
##     [text897, 80]
##    [text897, 163]
##    [text897, 219]
##      [text900, 6]
##     [text900, 53]
##    [text900, 102]
##    [text900, 488]
##   [text905, 1588]
##   [text905, 2983]
##   [text905, 3048]
##    [text910, 558]
##    [text911, 162]
##    [text911, 179]
##     [text912, 32]
##      [text913, 3]
##     [text913, 33]
##     [text913, 63]
##    [text916, 764]
##    [text918, 239]
##     [text921, 71]
##    [text921, 121]
##      [text925, 3]
##     [text925, 50]
##    [text925, 168]
##    [text925, 746]
##    [text931, 512]
##     [text932, 91]
##    [text932, 111]
##    [text932, 172]
##    [text932, 184]
##    [text932, 453]
##    [text932, 470]
##    [text932, 485]
##    [text932, 581]
##    [text934, 207]
##    [text934, 235]
##    [text937, 509]
##      [text938, 6]
##     [text938, 38]
##     [text938, 46]
##     [text938, 75]
##    [text938, 101]
##    [text938, 130]
##    [text938, 161]
##      [text940, 4]
##     [text940, 50]
##    [text940, 804]
##      [text943, 4]
##     [text943, 33]
##     [text943, 64]
##    [text944, 181]
##    [text946, 588]
##     [text947, 47]
##     [text947, 88]
##    [text947, 232]
##    [text947, 256]
##    [text947, 628]
##      [text949, 7]
##     [text949, 48]
##    [text949, 141]
##    [text949, 976]
##   [text949, 1083]
##    [text951, 635]
##   [text951, 1455]
##    [text952, 735]
##    [text952, 803]
##     [text954, 54]
##    [text954, 513]
##     [text956, 76]
##     [text963, 74]
##    [text963, 218]
##    [text963, 230]
##      [text964, 9]
##     [text964, 53]
##     [text964, 98]
##    [text964, 136]
##    [text964, 146]
##    [text964, 465]
##    [text964, 610]
##    [text964, 906]
##   [text964, 1037]
##   [text964, 1338]
##    [text966, 100]
##    [text966, 122]
##    [text966, 233]
##    [text966, 237]
##    [text970, 478]
##      [text971, 9]
##     [text971, 61]
##     [text971, 87]
##    [text971, 116]
##    [text971, 169]
##    [text971, 218]
##    [text971, 244]
##    [text971, 374]
##    [text971, 532]
##    [text971, 657]
##    [text971, 830]
##   [text971, 1070]
##    [text972, 926]
##      [text973, 2]
##     [text973, 42]
##   [text973, 1064]
##      [text974, 4]
##     [text974, 37]
##     [text974, 63]
##    [text974, 122]
##      [text975, 2]
##     [text975, 43]
##    [text975, 204]
##      [text976, 2]
##     [text976, 37]
##     [text976, 57]
##     [text977, 50]
##     [text977, 80]
##    [text977, 232]
##    [text977, 330]
##    [text977, 363]
##    [text977, 394]
##      [text979, 5]
##     [text979, 46]
##     [text979, 76]
##    [text979, 423]
##    [text979, 725]
##    [text979, 905]
##    [text981, 144]
##     [text982, 11]
##     [text982, 47]
##     [text982, 93]
##     [text982, 96]
##    [text982, 147]
##    [text982, 206]
##    [text982, 215]
##    [text982, 258]
##    [text982, 313]
##    [text982, 332]
##    [text983, 150]
##     [text984, 56]
##    [text984, 175]
##    [text984, 400]
##    [text984, 579]
##    [text984, 748]
##   [text984, 1226]
##   [text984, 1986]
##    [text986, 177]
##    [text986, 339]
##     [text987, 89]
##    [text988, 372]
##      [text990, 5]
##     [text990, 44]
##    [text990, 104]
##    [text990, 124]
##    [text990, 140]
##   [text994, 1310]
##      [text995, 4]
##     [text995, 43]
##    [text995, 138]
##     [text998, 41]
##     [text999, 50]
##    [text999, 382]
##   [text1002, 190]
##   [text1002, 322]
##   [text1007, 196]
##   [text1007, 233]
##   [text1007, 383]
##     [text1008, 3]
##    [text1008, 35]
##   [text1008, 114]
##    [text1009, 57]
##    [text1009, 87]
##   [text1009, 323]
##   [text1009, 572]
##   [text1009, 601]
##    [text1010, 73]
##   [text1015, 154]
##     [text1016, 3]
##    [text1016, 37]
##    [text1017, 43]
##   [text1017, 172]
##   [text1017, 313]
##   [text1019, 360]
##     [text1022, 1]
##    [text1022, 76]
##   [text1024, 188]
##   [text1024, 265]
##   [text1024, 369]
##     [text1026, 2]
##    [text1026, 39]
##    [text1026, 63]
##   [text1026, 192]
##    [text1027, 11]
##    [text1027, 63]
##   [text1027, 206]
##   [text1027, 570]
##  [text1027, 1393]
##   [text1032, 144]
##   [text1032, 422]
##     [text1033, 6]
##    [text1033, 43]
##    [text1033, 53]
##   [text1033, 150]
##   [text1033, 160]
##   [text1034, 118]
##   [text1034, 329]
##   [text1034, 847]
##  [text1034, 1028]
##     [text1035, 4]
##    [text1035, 71]
##    [text1035, 84]
##   [text1035, 117]
##   [text1035, 284]
##   [text1035, 389]
##   [text1035, 691]
##     [text1037, 5]
##    [text1037, 39]
##    [text1037, 78]
##   [text1037, 132]
##     [text1039, 4]
##   [text1039, 115]
##     [text1040, 3]
##    [text1040, 30]
##    [text1040, 92]
##     [text1045, 4]
##    [text1045, 45]
##    [text1045, 84]
##     [text1046, 6]
##    [text1046, 41]
##    [text1046, 60]
##  [text1047, 1018]
##    [text1048, 70]
##   [text1048, 125]
##   [text1048, 191]
##   [text1048, 221]
##   [text1048, 242]
##   [text1048, 298]
##   [text1048, 316]
##   [text1048, 389]
##   [text1048, 398]
##   [text1048, 848]
##   [text1049, 238]
##   [text1049, 344]
##     [text1051, 3]
##    [text1051, 34]
##    [text1051, 61]
##    [text1052, 45]
##   [text1053, 135]
##   [text1053, 747]
##   [text1055, 312]
##   [text1055, 598]
##   [text1056, 241]
##  [text1056, 1064]
##  [text1056, 1167]
##   [text1058, 127]
##     [text1064, 8]
##    [text1064, 96]
##   [text1064, 127]
##   [text1064, 139]
##   [text1064, 157]
##   [text1064, 193]
##   [text1064, 197]
##   [text1064, 309]
##   [text1064, 399]
##   [text1064, 448]
##   [text1064, 465]
##   [text1064, 501]
##   [text1064, 573]
##   [text1064, 648]
##   [text1064, 852]
##   [text1064, 879]
##   [text1064, 983]
##   [text1065, 229]
##     [text1073, 2]
##    [text1073, 36]
##    [text1073, 59]
##   [text1073, 156]
##   [text1073, 193]
##  [text1083, 1020]
##  [text1083, 1031]
##     [text1085, 2]
##    [text1085, 45]
##    [text1085, 82]
##   [text1085, 547]
##     [text1086, 3]
##     [text1086, 8]
##    [text1086, 40]
##    [text1086, 44]
##    [text1086, 58]
##   [text1086, 662]
##     [text1088, 3]
##   [text1088, 247]
##   [text1089, 388]
##   [text1091, 232]
##     [text1093, 9]
##    [text1093, 47]
##    [text1095, 81]
##   [text1095, 147]
##   [text1095, 242]
##    [text1096, 97]
##   [text1096, 121]
##   [text1096, 142]
##   [text1096, 285]
##   [text1096, 324]
##     [text1097, 4]
##    [text1097, 42]
##    [text1097, 72]
##    [text1097, 99]
##   [text1097, 121]
##   [text1097, 150]
##   [text1097, 164]
##   [text1097, 313]
##   [text1097, 337]
##   [text1097, 392]
##   [text1097, 460]
##   [text1097, 536]
##    [text1098, 65]
##     [text1100, 4]
##    [text1100, 37]
##    [text1100, 59]
##   [text1101, 702]
##   [text1102, 109]
##     [text1103, 6]
##    [text1103, 39]
##   [text1103, 238]
##     [text1105, 2]
##    [text1105, 44]
##    [text1105, 69]
##   [text1105, 239]
##   [text1105, 284]
##   [text1105, 570]
##  [text1105, 1238]
##     [text1112, 5]
##    [text1112, 93]
##   [text1112, 102]
##   [text1112, 195]
##   [text1112, 283]
##   [text1112, 463]
##   [text1112, 508]
##   [text1112, 698]
##   [text1112, 802]
##    [text1114, 10]
##    [text1114, 46]
##    [text1114, 55]
##   [text1114, 123]
##   [text1118, 621]
##    [text1120, 63]
##   [text1120, 169]
##   [text1123, 101]
##   [text1123, 168]
##   [text1124, 278]
##   [text1124, 297]
##     [text1127, 7]
##    [text1127, 40]
##    [text1127, 60]
##   [text1127, 242]
##    [text1128, 60]
##   [text1128, 107]
##   [text1129, 551]
##   [text1131, 906]
##    [text1134, 92]
##   [text1134, 589]
##     [text1135, 5]
##     [text1138, 8]
##    [text1138, 58]
##   [text1138, 100]
##   [text1138, 147]
##   [text1138, 451]
##   [text1138, 627]
##  [text1138, 1135]
##  [text1138, 1243]
##  [text1138, 1260]
##     [text1140, 9]
##    [text1140, 43]
##   [text1141, 419]
##   [text1141, 561]
##   [text1142, 112]
##   [text1142, 313]
##   [text1142, 392]
##   [text1142, 841]
##   [text1142, 930]
##   [text1142, 945]
##   [text1143, 124]
##   [text1143, 290]
##   [text1143, 705]
##   [text1144, 584]
##  [text1147, 1006]
##  [text1147, 1235]
##   [text1150, 309]
##     [text1154, 5]
##    [text1154, 21]
##    [text1154, 68]
##    [text1154, 97]
##   [text1154, 138]
##     [text1155, 8]
##    [text1155, 42]
##   [text1155, 142]
##   [text1157, 234]
##   [text1157, 247]
##   [text1157, 317]
##   [text1157, 502]
##     [text1158, 6]
##    [text1158, 67]
##   [text1158, 117]
##   [text1158, 146]
##   [text1158, 304]
##   [text1158, 310]
##   [text1158, 369]
##   [text1158, 461]
##   [text1158, 494]
##   [text1158, 526]
##   [text1158, 554]
##   [text1158, 667]
##   [text1159, 201]
##   [text1159, 649]
##    [text1160, 51]
##   [text1160, 258]
##   [text1163, 184]
##   [text1163, 673]
##    [text1164, 70]
##   [text1165, 230]
##   [text1167, 689]
##    [text1169, 68]
##   [text1169, 174]
##   [text1169, 741]
##   [text1169, 769]
##   [text1169, 998]
##  [text1169, 1216]
##  [text1169, 1227]
##  [text1169, 1571]
##  [text1169, 1580]
##  [text1169, 1662]
##    [text1172, 95]
##     [text1173, 9]
##    [text1173, 49]
##    [text1173, 84]
##   [text1173, 335]
##     [text1174, 2]
##    [text1174, 34]
##    [text1174, 44]
##   [text1174, 174]
##    [text1175, 46]
##    [text1175, 81]
##   [text1175, 231]
##     [text1179, 2]
##    [text1179, 38]
##    [text1179, 59]
##     [text1180, 3]
##    [text1180, 35]
##    [text1180, 96]
##    [text1181, 57]
##     [text1182, 1]
##    [text1182, 33]
##    [text1182, 89]
##   [text1182, 108]
##   [text1182, 114]
##   [text1182, 183]
##    [text1183, 19]
##   [text1183, 478]
##     [text1184, 9]
##    [text1184, 90]
##   [text1184, 138]
##    [text1187, 87]
##   [text1191, 702]
##   [text1192, 695]
##     [text1194, 8]
##    [text1194, 46]
##    [text1194, 74]
##   [text1198, 225]
##   [text1198, 452]
##     [text1201, 7]
##    [text1201, 19]
##    [text1201, 42]
##    [text1203, 79]
##   [text1203, 121]
##   [text1203, 156]
##   [text1203, 653]
##     [text1204, 3]
##    [text1204, 52]
##   [text1205, 246]
##  [text1205, 1215]
##  [text1205, 1261]
##   [text1206, 111]
##   [text1206, 130]
##   [text1207, 181]
##     [text1209, 8]
##    [text1209, 44]
##     [text1214, 2]
##    [text1214, 25]
##    [text1214, 69]
##   [text1215, 391]
##     [text1216, 8]
##    [text1216, 47]
##   [text1217, 266]
##     [text1218, 1]
##    [text1218, 44]
##   [text1218, 165]
##   [text1218, 249]
##   [text1218, 416]
##   [text1218, 576]
##   [text1218, 876]
##   [text1218, 944]
##  [text1218, 1047]
##   [text1221, 292]
##     [text1222, 4]
##    [text1222, 40]
##   [text1222, 158]
##   [text1222, 332]
##     [text1225, 5]
##    [text1225, 39]
##   [text1226, 881]
##   [text1227, 845]
##   [text1231, 163]
##   [text1231, 992]
##   [text1232, 116]
##   [text1232, 182]
##   [text1232, 406]
##   [text1232, 419]
##   [text1232, 432]
##     [text1235, 4]
##    [text1235, 12]
##    [text1235, 31]
##   [text1242, 495]
##  [text1242, 1001]
##    [text1243, 56]
##   [text1243, 107]
##    [text1244, 55]
##   [text1244, 167]
##   [text1244, 301]
##   [text1244, 378]
##   [text1244, 428]
##  [text1244, 1255]
##   [text1245, 102]
##   [text1245, 639]
##    [text1248, 57]
##   [text1248, 125]
##   [text1248, 226]
##   [text1248, 245]
##    [text1249, 84]
##   [text1249, 729]
##     [text1250, 3]
##    [text1250, 47]
##    [text1250, 96]
##   [text1250, 340]
##   [text1250, 701]
##   [text1260, 194]
##   [text1260, 241]
##   [text1260, 306]
##   [text1260, 900]
##   [text1260, 908]
##     [text1261, 4]
##    [text1261, 46]
##   [text1261, 412]
##    [text1264, 72]
##    [text1265, 83]
##   [text1265, 136]
##  [text1266, 1522]
##    [text1268, 85]
##     [text1273, 9]
##    [text1273, 42]
##    [text1273, 82]
##   [text1275, 635]
##   [text1275, 798]
##   [text1277, 304]
##   [text1277, 353]
##     [text1279, 9]
##    [text1279, 53]
##   [text1279, 288]
##     [text1282, 5]
##    [text1282, 36]
##     [text1283, 7]
##    [text1283, 49]
##    [text1283, 76]
##   [text1283, 139]
##   [text1283, 386]
##   [text1283, 412]
##   [text1286, 543]
##   [text1287, 121]
##  [text1290, 2151]
##   [text1291, 324]
##   [text1291, 346]
##   [text1291, 421]
##   [text1293, 489]
##   [text1295, 584]
##     [text1297, 5]
##    [text1297, 46]
##    [text1302, 74]
##    [text1303, 35]
##    [text1303, 60]
##   [text1307, 109]
##   [text1307, 118]
##   [text1308, 127]
##    [text1309, 14]
##    [text1309, 45]
##    [text1311, 80]
##   [text1313, 438]
##   [text1314, 119]
##   [text1314, 169]
##   [text1314, 205]
##   [text1314, 301]
##     [text1315, 3]
##    [text1315, 37]
##   [text1315, 176]
##   [text1315, 383]
##   [text1315, 447]
##     [text1316, 2]
##    [text1316, 31]
##    [text1316, 75]
##   [text1316, 230]
##   [text1319, 338]
##     [text1321, 4]
##    [text1321, 41]
##    [text1321, 86]
##     [text1324, 5]
##    [text1324, 32]
##    [text1324, 67]
##  [text1325, 1375]
##     [text1326, 3]
##   [text1326, 214]
##   [text1327, 198]
##   [text1327, 612]
##  [text1327, 1020]
##   [text1329, 527]
##     [text1330, 2]
##    [text1330, 40]
##   [text1331, 162]
##   [text1331, 181]
##   [text1331, 189]
##   [text1331, 583]
##     [text1338, 7]
##    [text1338, 40]
##    [text1338, 82]
##   [text1338, 107]
##   [text1340, 188]
##     [text1344, 5]
##    [text1344, 50]
##   [text1344, 113]
##   [text1344, 177]
##   [text1344, 392]
##   [text1344, 602]
##     [text1346, 4]
##    [text1346, 42]
##    [text1346, 70]
##    [text1346, 88]
##   [text1346, 208]
##   [text1346, 224]
##   [text1346, 769]
##   [text1350, 282]
##     [text1351, 1]
##    [text1351, 28]
##    [text1351, 57]
##    [text1351, 75]
##   [text1351, 193]
##   [text1351, 293]
##     [text1357, 8]
##    [text1357, 71]
##   [text1358, 208]
##   [text1358, 360]
##   [text1358, 644]
##    [text1360, 89]
##   [text1360, 140]
##  [text1360, 1275]
##  [text1360, 1585]
##   [text1362, 155]
##   [text1362, 222]
##   [text1363, 797]
##   [text1363, 854]
##    [text1364, 55]
##   [text1367, 670]
##     [text1368, 2]
##    [text1368, 40]
##     [text1371, 3]
##    [text1371, 37]
##     [text1372, 7]
##    [text1372, 58]
##   [text1372, 122]
##   [text1372, 195]
##   [text1373, 509]
##     [text1374, 4]
##    [text1374, 40]
##    [text1374, 74]
##   [text1374, 211]
##   [text1374, 539]
##   [text1374, 591]
##    [text1375, 85]
##    [text1377, 15]
##    [text1377, 54]
##    [text1377, 87]
##    [text1377, 99]
##    [text1380, 80]
##   [text1380, 195]
##     [text1381, 4]
##    [text1381, 41]
##   [text1381, 166]
##   [text1381, 192]
##   [text1381, 535]
##   [text1381, 843]
##   [text1381, 987]
##  [text1381, 1084]
##     [text1384, 8]
##     [text1385, 2]
##    [text1385, 27]
##    [text1385, 67]
##   [text1387, 413]
##  [text1390, 1242]
##   [text1393, 500]
##     [text1402, 6]
##    [text1402, 42]
##    [text1402, 52]
##   [text1402, 167]
##   [text1402, 245]
##   [text1402, 471]
##   [text1407, 151]
##   [text1407, 235]
##   [text1408, 316]
##    [text1411, 31]
##   [text1413, 598]
##     [text1414, 1]
##    [text1414, 39]
##    [text1414, 81]
##   [text1414, 181]
##   [text1414, 460]
##   [text1414, 474]
##   [text1414, 675]
##   [text1418, 502]
##   [text1423, 404]
##   [text1423, 504]
##   [text1424, 220]
##   [text1425, 383]
##   [text1427, 635]
##   [text1430, 373]
##   [text1430, 799]
##   [text1430, 867]
##   [text1430, 896]
##   [text1430, 971]
##    [text1432, 68]
##   [text1432, 104]
##  [text1437, 1058]
##   [text1441, 554]
##     [text1442, 2]
##    [text1442, 30]
##    [text1442, 60]
##     [text1447, 9]
##    [text1447, 43]
##     [text1449, 7]
##    [text1449, 48]
##   [text1449, 298]
##  [text1449, 1858]
##   [text1453, 341]
##    [text1456, 44]
##    [text1456, 93]
##   [text1456, 209]
##   [text1459, 161]
##   [text1459, 742]
##   [text1459, 752]
##  [text1459, 1357]
##     [text1460, 1]
##    [text1460, 33]
##    [text1460, 49]
##   [text1461, 872]
##   [text1461, 883]
##   [text1461, 970]
##    [text1464, 96]
##     [text1465, 3]
##    [text1465, 47]
##    [text1465, 70]
##    [text1465, 80]
##   [text1465, 138]
##   [text1465, 220]
##   [text1465, 365]
##     [text1466, 6]
##    [text1466, 47]
##    [text1466, 56]
##   [text1467, 188]
##   [text1467, 238]
##    [text1470, 92]
##   [text1470, 115]
##   [text1470, 147]
##   [text1470, 656]
##   [text1474, 352]
##   [text1474, 519]
##  [text1474, 1155]
##    [text1476, 67]
##   [text1478, 212]
##   [text1478, 501]
##    [text1479, 55]
##   [text1479, 174]
##    [text1482, 64]
##    [text1483, 77]
##     [text1487, 2]
##    [text1487, 30]
##    [text1487, 43]
##   [text1487, 132]
##     [text1491, 2]
##    [text1491, 35]
##    [text1491, 79]
##   [text1492, 321]
##   [text1493, 477]
##   [text1493, 538]
##  [text1493, 1156]
##     [text1494, 3]
##    [text1494, 50]
##   [text1494, 168]
##   [text1494, 746]
##    [text1495, 55]
##    [text1495, 73]
##   [text1496, 560]
##   [text1496, 806]
##  [text1496, 1733]
##  [text1496, 2139]
##   [text1500, 433]
##   [text1500, 455]
##   [text1501, 408]
##     [text1502, 4]
##    [text1502, 40]
##   [text1507, 127]
##   [text1507, 237]
##   [text1507, 252]
##   [text1507, 267]
##   [text1507, 293]
##   [text1507, 327]
##   [text1507, 546]
##   [text1507, 616]
##   [text1507, 630]
##   [text1507, 637]
##    [text1508, 62]
##     [text1511, 1]
##    [text1511, 37]
##   [text1513, 127]
##     [text1514, 2]
##    [text1514, 29]
##    [text1514, 99]
##     [text1516, 3]
##    [text1516, 35]
##   [text1516, 131]
##     [text1518, 3]
##    [text1518, 41]
##    [text1518, 52]
##   [text1518, 365]
##   [text1518, 478]
##   [text1518, 731]
##   [text1518, 963]
##  [text1518, 1030]
##  [text1518, 1081]
##     [text1521, 1]
##    [text1521, 37]
##   [text1523, 722]
##   [text1525, 121]
##     [text1526, 3]
##    [text1526, 36]
##    [text1526, 66]
##   [text1526, 289]
##   [text1526, 407]
##   [text1526, 434]
##   [text1526, 845]
##   [text1526, 894]
##   [text1526, 975]
##   [text1527, 183]
##   [text1527, 384]
##   [text1527, 473]
##     [text1528, 4]
##    [text1528, 40]
##    [text1528, 66]
##    [text1529, 49]
##     [text1531, 4]
##    [text1531, 32]
##    [text1531, 61]
##    [text1531, 81]
##   [text1531, 100]
##     [text1532, 1]
##    [text1532, 59]
##    [text1532, 93]
##   [text1532, 251]
##   [text1532, 311]
##   [text1532, 336]
##   [text1532, 555]
##   [text1532, 652]
##   [text1532, 740]
##   [text1532, 924]
##   [text1532, 930]
##  [text1532, 1014]
##     [text1533, 8]
##    [text1533, 58]
##     [text1537, 6]
##    [text1537, 33]
##    [text1540, 63]
##    [text1540, 89]
##   [text1540, 297]
##    [text1544, 85]
##   [text1544, 278]
##     [text1547, 5]
##    [text1547, 36]
##    [text1547, 56]
##    [text1547, 74]
##   [text1547, 182]
##    [text1550, 75]
##   [text1550, 141]
##   [text1550, 538]
##   [text1550, 751]
##    [text1551, 89]
##   [text1552, 657]
##   [text1554, 184]
##   [text1554, 629]
##   [text1554, 941]
##    [text1559, 60]
##   [text1559, 239]
##   [text1559, 350]
##     [text1561, 4]
##    [text1561, 35]
##    [text1561, 71]
##    [text1561, 79]
##   [text1561, 212]
##     [text1564, 2]
##    [text1564, 30]
##    [text1564, 62]
##   [text1565, 501]
##   [text1565, 615]
##    [text1568, 61]
##   [text1569, 839]
##     [text1570, 7]
##    [text1570, 44]
##   [text1570, 193]
##   [text1570, 293]
##   [text1570, 337]
##   [text1570, 521]
##   [text1570, 673]
##   [text1572, 397]
##   [text1572, 509]
##   [text1572, 823]
##     [text1574, 3]
##    [text1574, 29]
##   [text1575, 140]
##     [text1578, 2]
##    [text1578, 33]
##    [text1579, 42]
##     [text1583, 2]
##    [text1583, 34]
##    [text1583, 73]
##    [text1586, 85]
##     [text1587, 5]
##    [text1587, 36]
##   [text1587, 267]
##   [text1587, 294]
##    [text1589, 77]
##     [text1592, 3]
##    [text1592, 11]
##    [text1592, 46]
##   [text1592, 750]
##     [text1593, 7]
##    [text1593, 45]
##   [text1593, 181]
##   [text1594, 931]
##   [text1597, 111]
##     [text1598, 2]
##    [text1598, 56]
##   [text1598, 134]
##   [text1598, 473]
##   [text1600, 275]
##   [text1603, 108]
##     [text1604, 7]
##    [text1604, 42]
##    [text1604, 69]
##   [text1604, 142]
##   [text1604, 191]
##   [text1604, 353]
##   [text1604, 372]
##   [text1604, 450]
##   [text1604, 464]
##    [text1611, 78]
##   [text1611, 305]
##   [text1611, 737]
##    [text1613, 48]
##    [text1613, 67]
##    [text1614, 61]
##   [text1614, 135]
##   [text1614, 266]
##    [text1618, 63]
##   [text1618, 108]
##     [text1623, 4]
##    [text1623, 43]
##   [text1623, 138]
##     [text1624, 4]
##    [text1624, 39]
##    [text1624, 67]
##   [text1624, 397]
##     [text1626, 3]
##    [text1626, 32]
##    [text1626, 62]
##     [text1627, 4]
##    [text1627, 59]
##    [text1627, 94]
##   [text1627, 130]
##     [text1629, 5]
##    [text1629, 46]
##     [text1630, 3]
##    [text1630, 31]
##    [text1630, 68]
##   [text1630, 175]
##   [text1630, 216]
##     [text1633, 4]
##    [text1633, 56]
##    [text1633, 92]
##   [text1633, 157]
##   [text1633, 221]
##   [text1633, 230]
##   [text1633, 585]
##   [text1633, 592]
##    [text1634, 52]
##   [text1634, 119]
##     [text1640, 6]
##    [text1640, 40]
##    [text1640, 86]
##    [text1641, 11]
##    [text1641, 65]
##   [text1641, 132]
##   [text1641, 150]
##   [text1641, 322]
##   [text1643, 315]
##   [text1656, 172]
##   [text1656, 522]
##   [text1656, 579]
##   [text1656, 898]
##  [text1656, 1020]
##   [text1660, 123]
##   [text1660, 642]
##   [text1660, 741]
##     [text1661, 5]
##    [text1661, 34]
##    [text1661, 51]
##     [text1663, 8]
##    [text1663, 40]
##    [text1663, 52]
##    [text1663, 73]
##   [text1663, 135]
##     [text1664, 7]
##    [text1664, 34]
##    [text1664, 75]
##   [text1664, 199]
##    [text1665, 93]
##   [text1665, 321]
##   [text1665, 971]
##  [text1665, 1007]
##  [text1665, 1143]
##  [text1665, 1163]
##  [text1665, 1297]
##  [text1665, 1347]
##   [text1669, 225]
##    [text1671, 66]
##   [text1671, 254]
##   [text1671, 277]
##   [text1671, 390]
##     [text1672, 1]
##    [text1672, 49]
##   [text1672, 144]
##   [text1672, 461]
##   [text1672, 466]
##   [text1672, 512]
##    [text1673, 86]
##   [text1676, 169]
##     [text1677, 4]
##    [text1677, 46]
##   [text1677, 119]
##   [text1677, 155]
##  [text1677, 1356]
##   [text1678, 953]
##   [text1680, 146]
##   [text1680, 289]
##   [text1680, 578]
##   [text1684, 220]
##     [text1685, 6]
##    [text1685, 39]
##   [text1686, 251]
##     [text1687, 7]
##    [text1687, 50]
##    [text1687, 76]
##   [text1687, 239]
##   [text1687, 458]
##   [text1687, 561]
##   [text1687, 727]
##     [text1688, 2]
##    [text1688, 29]
##    [text1688, 64]
##   [text1688, 108]
##   [text1689, 859]
##   [text1690, 451]
##   [text1690, 527]
##   [text1690, 554]
##  [text1690, 1708]
##  [text1690, 1805]
##     [text1691, 6]
##    [text1691, 37]
##     [text1693, 1]
##    [text1693, 15]
##    [text1693, 51]
##   [text1693, 131]
##   [text1693, 301]
##     [text1694, 1]
##    [text1694, 32]
##    [text1695, 93]
##   [text1695, 121]
##     [text1699, 2]
##    [text1699, 40]
##    [text1699, 75]
##    [text1700, 58]
##    [text1700, 86]
##   [text1700, 153]
##   [text1701, 173]
##   [text1701, 183]
##   [text1701, 305]
##   [text1701, 373]
##   [text1701, 731]
##  [text1701, 1043]
##  [text1701, 1107]
##    [text1702, 70]
##   [text1704, 110]
##  [text1704, 1041]
##     [text1705, 3]
##    [text1705, 35]
##   [text1705, 103]
##   [text1705, 402]
##   [text1706, 106]
##   [text1708, 203]
##     [text1709, 6]
##    [text1709, 54]
##    [text1711, 81]
##    [text1711, 92]
##   [text1711, 316]
##   [text1711, 984]
##   [text1713, 239]
##   [text1713, 348]
##   [text1713, 392]
##   [text1716, 111]
##   [text1716, 816]
##   [text1716, 835]
##     [text1717, 7]
##    [text1717, 56]
##   [text1717, 455]
##   [text1718, 131]
##   [text1718, 174]
##  [text1718, 1016]
##    [text1721, 39]
##     [text1723, 5]
##    [text1723, 34]
##    [text1723, 57]
##     [text1727, 5]
##    [text1727, 71]
##   [text1727, 127]
##   [text1728, 263]
##   [text1728, 525]
##   [text1728, 593]
##   [text1728, 785]
##   [text1728, 855]
##   [text1728, 888]
##  [text1728, 1139]
##    [text1731, 46]
##   [text1733, 174]
##     [text1734, 7]
##    [text1734, 43]
##    [text1734, 81]
##   [text1734, 592]
##   [text1736, 343]
##    [text1737, 74]
##    [text1738, 56]
##     [text1741, 2]
##    [text1741, 25]
##     [text1745, 5]
##    [text1745, 44]
##    [text1745, 62]
##    [text1745, 79]
##   [text1745, 136]
##   [text1745, 156]
##   [text1745, 190]
##   [text1745, 215]
##   [text1745, 322]
##   [text1745, 365]
##   [text1745, 626]
##    [text1747, 84]
##   [text1747, 114]
##   [text1747, 193]
##   [text1747, 203]
##    [text1748, 94]
##   [text1748, 602]
##   [text1748, 724]
##   [text1748, 742]
##   [text1749, 216]
##   [text1749, 243]
##     [text1751, 6]
##    [text1751, 41]
##    [text1751, 57]
##   [text1751, 145]
##   [text1751, 209]
##   [text1754, 102]
##   [text1754, 199]
##     [text1755, 1]
##    [text1755, 41]
##   [text1755, 103]
##   [text1755, 252]
##   [text1755, 279]
##   [text1755, 524]
##   [text1755, 838]
##    [text1761, 46]
##   [text1769, 127]
##   [text1770, 308]
##   [text1770, 330]
##    [text1771, 82]
##   [text1771, 146]
##   [text1771, 238]
##   [text1771, 356]
##     [text1776, 3]
##    [text1776, 35]
##   [text1778, 521]
##  [text1778, 1457]
##   [text1779, 551]
##   [text1779, 578]
##   [text1780, 110]
##     [text1781, 7]
##    [text1781, 45]
##   [text1781, 164]
##     [text1783, 4]
##    [text1783, 37]
##   [text1783, 107]
##   [text1783, 137]
##   [text1783, 165]
##     [text1784, 2]
##    [text1784, 36]
##    [text1784, 65]
##    [text1785, 51]
##   [text1785, 192]
##   [text1785, 336]
##   [text1785, 609]
##   [text1785, 779]
##   [text1785, 794]
##   [text1785, 935]
##     [text1788, 2]
##    [text1788, 41]
##   [text1788, 537]
##     [text1792, 4]
##    [text1792, 35]
##    [text1792, 82]
##   [text1792, 115]
##   [text1792, 158]
##   [text1792, 224]
##   [text1792, 277]
##   [text1792, 309]
##   [text1793, 248]
##   [text1793, 403]
##     [text1795, 2]
##    [text1795, 41]
##   [text1795, 174]
##   [text1795, 200]
##   [text1795, 450]
##   [text1795, 616]
##   [text1795, 694]
##   [text1795, 833]
##   [text1795, 915]
##   [text1795, 953]
##  [text1795, 1000]
##  [text1795, 1330]
##  [text1795, 1393]
##   [text1796, 226]
##    [text1797, 84]
##   [text1797, 138]
##   [text1797, 190]
##   [text1797, 484]
##  [text1797, 1015]
##  [text1797, 1134]
##     [text1799, 8]
##    [text1799, 40]
##    [text1799, 67]
##   [text1799, 139]
##     [text1807, 3]
##    [text1807, 38]
##    [text1807, 64]
##    [text1807, 77]
##    [text1808, 34]
##    [text1808, 65]
##   [text1811, 761]
##     [text1817, 4]
##    [text1817, 42]
##    [text1817, 73]
##   [text1820, 134]
##    [text1822, 11]
##    [text1822, 49]
##    [text1822, 96]
##   [text1822, 196]
##    [text1825, 79]
##    [text1826, 57]
##   [text1826, 107]
##   [text1828, 364]
##     [text1829, 6]
##    [text1829, 36]
##     [text1831, 9]
##    [text1831, 44]
##   [text1831, 436]
##     [text1836, 9]
##    [text1836, 53]
##    [text1836, 66]
##   [text1836, 122]
##   [text1836, 498]
##   [text1836, 520]
##   [text1836, 632]
##   [text1836, 869]
##  [text1836, 1125]
##    [text1837, 70]
##   [text1837, 106]
##   [text1837, 278]
##   [text1837, 338]
##   [text1837, 434]
##   [text1837, 559]
##   [text1837, 698]
##   [text1837, 824]
##   [text1837, 854]
##     [text1838, 2]
##    [text1838, 31]
##    [text1838, 67]
##   [text1842, 126]
##   [text1842, 184]
##   [text1842, 211]
##   [text1842, 292]
##     [text1843, 3]
##    [text1843, 41]
##     [text1844, 2]
##    [text1844, 35]
##    [text1844, 74]
##   [text1844, 234]
##    [text1846, 39]
##   [text1847, 418]
##   [text1847, 486]
##     [text1848, 3]
##    [text1848, 42]
##    [text1848, 77]
##   [text1849, 589]
##    [text1851, 20]
##    [text1851, 54]
##    [text1851, 88]
##   [text1851, 131]
##   [text1851, 253]
##   [text1851, 295]
##   [text1851, 499]
##   [text1851, 557]
##   [text1851, 726]
##   [text1852, 102]
##     [text1853, 6]
##    [text1853, 37]
##    [text1853, 53]
##   [text1853, 136]
##   [text1853, 157]
##     [text1855, 5]
##    [text1855, 42]
##    [text1855, 81]
##   [text1855, 146]
##   [text1855, 214]
##   [text1855, 453]
##   [text1855, 664]
##     [text1856, 2]
##    [text1856, 43]
##   [text1856, 194]
##   [text1856, 220]
##   [text1856, 284]
##     [text1857, 6]
##    [text1857, 47]
##   [text1857, 583]
##   [text1862, 770]
##   [text1862, 789]
##     [text1863, 1]
##    [text1863, 29]
##    [text1863, 55]
##     [text1865, 4]
##    [text1865, 35]
##    [text1865, 82]
##   [text1865, 115]
##   [text1865, 158]
##   [text1865, 224]
##   [text1865, 277]
##   [text1865, 309]
##     [text1873, 5]
##    [text1873, 41]
##    [text1873, 75]
##     [text1874, 8]
##    [text1874, 38]
##    [text1874, 71]
##    [text1874, 84]
##   [text1874, 120]
##   [text1874, 155]
##     [text1879, 4]
##    [text1879, 41]
##    [text1879, 56]
##   [text1879, 105]
##  [text1880, 1258]
##   [text1882, 234]
##   [text1883, 129]
##   [text1886, 235]
##   [text1890, 184]
##   [text1890, 242]
##     [text1891, 5]
##    [text1891, 32]
##    [text1891, 55]
##    [text1891, 69]
##   [text1892, 229]
##     [text1894, 2]
##    [text1894, 17]
##   [text1896, 576]
##   [text1896, 676]
##     [text1900, 8]
##    [text1900, 56]
##    [text1900, 97]
##   [text1900, 181]
##  [text1902, 1339]
##    [text1906, 13]
##    [text1906, 50]
##    [text1906, 94]
##   [text1906, 289]
##     [text1907, 5]
##    [text1907, 76]
##    [text1907, 96]
##   [text1907, 416]
##    [text1908, 60]
##    [text1910, 86]
##   [text1910, 157]
##   [text1911, 936]
##     [text1913, 3]
##    [text1913, 55]
##     [text1915, 2]
##    [text1915, 32]
##    [text1915, 59]
##     [text1919, 1]
##    [text1919, 51]
##    [text1919, 72]
##    [text1919, 97]
##   [text1919, 134]
##   [text1919, 205]
##   [text1919, 269]
##   [text1919, 299]
##   [text1919, 366]
##   [text1919, 515]
##   [text1919, 564]
##   [text1919, 618]
##   [text1919, 849]
##     [text1921, 8]
##    [text1921, 42]
##    [text1921, 64]
##   [text1922, 269]
##   [text1926, 176]
##   [text1928, 180]
##   [text1928, 400]
##   [text1928, 566]
##    [text1929, 55]
##    [text1930, 57]
##   [text1930, 146]
##   [text1932, 122]
##   [text1932, 327]
##   [text1932, 488]
##    [text1934, 49]
##   [text1934, 170]
##   [text1934, 234]
##   [text1935, 100]
##   [text1935, 304]
##   [text1935, 574]
##   [text1935, 586]
##   [text1935, 763]
##   [text1940, 150]
##   [text1940, 733]
##  [text1940, 1005]
##   [text1943, 928]
##     [text1944, 1]
##    [text1944, 36]
##   [text1945, 470]
##   [text1945, 486]
##   [text1945, 502]
##     [text1946, 4]
##    [text1946, 36]
##    [text1946, 98]
##   [text1948, 827]
##   [text1952, 101]
##   [text1952, 220]
##     [text1955, 8]
##   [text1955, 124]
##   [text1956, 261]
##   [text1957, 350]
##     [text1958, 7]
##   [text1958, 108]
##   [text1958, 148]
##   [text1958, 186]
##   [text1958, 252]
##   [text1958, 642]
##    [text1959, 34]
##    [text1959, 64]
##   [text1959, 430]
##     [text1962, 3]
##    [text1962, 35]
##    [text1962, 59]
##    [text1963, 29]
##    [text1963, 47]
##   [text1964, 527]
##     [text1965, 1]
##     [text1965, 7]
##    [text1965, 21]
##   [text1965, 217]
##   [text1965, 227]
##    [text1966, 86]
##   [text1966, 407]
##   [text1966, 412]
##   [text1967, 656]
##     [text1970, 4]
##    [text1970, 36]
##    [text1970, 44]
##    [text1970, 62]
##   [text1970, 138]
##     [text1971, 9]
##    [text1971, 56]
##    [text1971, 95]
##   [text1971, 542]
##   [text1973, 137]
##   [text1973, 269]
##   [text1974, 105]
##   [text1975, 205]
##   [text1975, 272]
##   [text1975, 756]
##     [text1976, 1]
##    [text1976, 14]
##   [text1976, 246]
##   [text1976, 610]
##     [text1983, 9]
##    [text1983, 49]
##    [text1987, 72]
##   [text1990, 260]
##   [text1990, 874]
##     [text1991, 8]
##    [text1991, 36]
##    [text1991, 82]
##   [text1991, 111]
##   [text1991, 190]
##   [text1991, 227]
##    [text1993, 92]
##   [text1993, 422]
##    [text1994, 17]
##    [text1994, 40]
##   [text1997, 678]
##  [text1997, 1226]
##  [text1997, 1491]
##  [text1997, 1585]
##    [text1999, 10]
##    [text1999, 96]
##   [text1999, 118]
##   [text1999, 280]
##   [text1999, 412]
##   [text1999, 435]
##   [text1999, 774]
##   [text1999, 892]
##  [text1999, 1017]
##  [text1999, 1209]
##  [text1999, 1435]
##  [text1999, 1487]
##   [text2000, 359]
##   [text2000, 848]
##  [text2000, 1147]
##  [text2000, 1241]
##  [text2000, 1260]
##                                                                   
##                                           Homosexuals at Harvard |
##                                     . Al2 Homosexuals at Harvard |
##                                      Join in Lobby at Washington |
##                                      Join in Lobby at Washington |
##                                             FACULTY: 108 TOP MEN |
##                                       UPSETS FACULTY 108 Top Men |
##                                                   too.. The nine |
##                                             call the police. The |
##                                   least three separate groups of |
##                                       Consul Plays Host to Irish |
##                                       Consul Plays Host to frish |
##                                the dispute between Catholics and |
##                                    between the Catholics and the |
##                                         and onlookers. Ruling on |
##                                    a Seabrook nuclear power iant |
##                                        At the demonstration, 179 |
##                                   Last weekend, several thousand |
##                                          Planned Dismissals of 8 |
##                                       31 Planned Dismissals of 8 |
##                                 San Francisco Schools in One-Day |
##                                 San Francisco Schools in One-Day |
##                                        for the oneday walkout to |
##                                                         STUDENTS |
##                                      The New York Times STUDENTS |
##                                      radicals who have relied on |
##                                           MINNESOTA U. GUILTY IN |
##                                           MINNESOTA U. GUILTY IN |
##                                              closed for a day to |
##                                              they plan to hold a |
##                                                1960. The acts of |
##                                   a scene reminiscent of college |
##                                          of the student union in |
##                                                 The trustees,' a |
##                                  opinion.\\ subway advertisement |
##                                           in Newark for rally to |
##                                         out of their classrooms| |
##                                        an effort to reduce whiat |
##                                             , a port the student |
##                                                with guards! in a |
##                                             of all Americans" to |
##                                   north of Fortysecond Street to |
##                                                         Abortion |
##                                           Times pg. B1l Abortion |
##                                     modeled on the group's 46day |
##                                 . And each Saturday antiabortion |
##                              supported the concept of nonviolent |
##                            its members had abandoned traditional |
##                          protest Ed Santoro joined anti-abortion |
##                                       said in a recent statement |
##                               States Embassy issued an lofficial |
##                                             - A dem-| onstration |
##                                  School today, carrying placards |
##                                         from the shouting, noisy |
##                                                             ROAD |
##                                                York Times pg. 35 |
##                            celebrate. Washington's Birthday with |
##                                              " the villain. ROAD |
##                           maintain a Washington's Birthday vigil |
##                                 2 Washington's Birthday vigil to |
##                                         are strongly behind' the |
##                                    the picketing was designed to |
##                                   hall tonight in the continuing |
##                                                Milwaukee Boycott |
##                                         pg. 28 Milwaukee Boycott |
##                                   is leading an economic boycott |
##                                                      Nader Leads |
##                                  for rally yesterday Nader Leads |
##                                                 at the rally, to |
##                                                    said, was to" |
##                                                          SUIT ON |
##                                           New York Times SUIT ON |
##                             of peaceful demonstrations and other |
##                                       Chapel, where civil rights |
##                                               ' gion's economy.' |
##                                   , where thousands of residents |
##                                                   Coast Students |
##                                         Times Ps. Coast Students |
##                                     the building this afternoon, |
##                                        its being occupied by the |
##                           Association convention here tonight in |
##                                        to disrupt the meeting in |
##                                   Harlem areas. Approval Despite |
##                                      government aid. Despite the |
##                                           barricades. One of the |
##                                                        Motorists |
##                                           Times pg. B3 Motorists |
##                                         Invade Dean's Office' as |
##                               . Though hundreds of anti-abortion |
##                                   Setting Course for Many Issues |
##                                                   . In a week of |
##                             arrested, including 73 anti-abortion |
##                                      prevent confusion. When the |
##                                        Nazi tactics and call the |
##                             efforts of hundreds of anti-abortion |
##                                              break up a group of |
##                                     warm-up site for even larger |
##                                           in Binghamton in 1987. |
##                                            strategy," to prevent |
##                                    " When Operation Rescue began |
##                                            police could not. The |
##                                                " Spring of Life' |
##                                           , wanted to ignore the |
##                                   as many as 1,000 anti-abortion |
##                                                          MOTHERS |
##                                                York Times pg. 25 |
##       Further reproduction prohibited without permission.MOTHERS |
##                                                              400 |
##                                           The New York Times 400 |
##                                               , the ranks of the |
##                                    Authority at 1700 Broadway to |
##                      Immigration and Naturalization Service held |
##                                      service employees, said the |
##                                             for the agency, said |
##                                              New York, about 100 |
##                                          Jervis said none of the |
##                            of several encounters between antiwar |
##                                           and lumber down at the |
##                                   area, In another mid-Manhattan |
##                                          41st and 42d Streets to |
##                                     the fifth day of accelerated |
##                                      ' Two policemen and several |
##                                            __ The police took 60 |
##                                                     Y., about 60 |
##                                      where on Thursday night 300 |
##                                             tear gas, There were |
##                                         , but because an antiwar |
##                                        resisters], sponsored the |
##                                         TEAR GAS DISPERSES NEGRO |
##                                      22 TEAR GAS DISPERSES NEGRO |
##                                    , said the demonstrators were |
##                                             < AGAINST GUARD BIAS |
##                                                Ellsberg Fined in |
##                                          . Ald Elisberg Fined in |
##                                         for his involvement in a |
##                                                          NO-HEAT |
##                                             Times pg. 35 NO-HEAT |
##                                               , mostly women, to |
##                                         small but vocal group of |
##                                               Jazz Fans Rally to |
##                                           C23 Jazz Fans Rally to |
##                                                a" Save WRVR Jazz |
##                                country-western music. Since then |
##                                                          Bishops |
##                                            Times pg. BIL Bishops |
##                                 than 1,500 Catholics in publicly |
##                                                           CHURCH |
##                                        The New York Times CHURCH |
##                                                                  |
##                                                York Times pg. B3 |
##                                        , March 22- Demonstrators |
##                                           and Gov. Gearge Romney |
##                                      Police Arrest 44 in Redwood |
##                                      Police Arrest 44 in Redwood |
##                                      - Forty; four environmental |
##                                          in a series of militant |
##                                             the' Redwood Summer' |
##                                        peaceful, with the seated |
##                                         arresting them. As those |
##                                            damage his truck. The |
##                              Louisiana-Pacific Pulp Mill here to |
##                               thousands would participate in the |
##                                            flutes and bells, the |
##                                      Summer demonstrations." The |
##                                                 ,'' disputes and |
##                                          % of Jobs Ends Brooklyn |
##                                           A Family Pulls Plug to |
##                                           A Family Pulls Plug to |
##                                          appliances. The Faheys' |
##                                                          Farmers |
##                                             Times pg. 49 Farmers |
##                                          out in large numbers to |
##                                note probably stemmed from recent |
##                                                                  |
##                                           front of the building. |
##                                   street rally here yesterday to |
##                                           Killer's 2. Term Spurs |
##                                  Wife Killer's 2-Year Term Spurs |
##                                             told 150 people at a |
##                                      violence against women. The |
##                                       moved away without notice. |
##                                          in Central Park as they |
##                                            on cue in a sym-bolic |
##                                 more by economics than community |
##                                        project, The Central Park |
##                                                     30 P.M., the |
##                                       Roman Catholic, Jewish and |
##                                           Negro College, Shut in |
##                                           Negro College, Shut in |
##                                       white. When black students |
##                                              '" e continue their |
##                                      group organized a Series of |
##                                  White Plains Groups Join Nestle |
##                                  White Plains Groups Join Nestlé |
##                                    at the Nestlé subsidiary here |
##                                      conditions are lacking, the |
##                                            . Product misuse, the |
##                                           the country on the day |
##                           Day Nestle officials characterized the |
##  Further reproduction prohibited without permission.Babv-Formula |
##                                 is particularly unfair since the |
##                                      and American Home Products. |
##                                             to the consumer. The |
##                                            will follow suit. The |
##                                         mothercraft nurses," the |
##                                       In an interview before the |
##                                    Develop-, gathered outside to |
##                                               cities. a march to |
##                                                .:' Earlier Draft |
##                                        LANDLORDS STAGE OIL-PRICE |
##                                     .[ LANDLORDS STAGE OIL-PRIGR |
##                                            Nations jas part of a |
##                                         - The helped to organize |
##                                               We want to aim our |
##                                             of schools, and that |
##                                      and hundreds of New Yorkers |
##                                   who called and led yesterday's |
##                                                                  |
##                                           throughout the state.' |
##                                           burned a police car to |
##                                             against!' evening to |
##                                       held in secret despite the |
##                                             ~| About 100 antiwar |
##                                     Powell, repeatedly urged the |
##                                                   . A few of the |
##                                                Jail or both. The |
##                                                 war. Many of the |
##                                          identified many of the! |
##                                   buildings oc cupied by student |
##                              . Agence France-Presse Human rights |
##                                                 vaneed.' ers are |
##                                      . They're just.and drop the |
##                                    this elicited'some shout-: ed |
##                                                , a group that is |
##                                      stationed last October at a |
##                                              conscription." the. |
##                                          Betrayal,' Cuban Exiles |
##                                          Betrayal,' Cuban Exiles |
##                                           an hour yesterday in a |
##                                           . A few hundred people |
##                                            H. Cutrer of Bogalusa |
##                                                 ' in May 1985 to |
##                                   Navy Launches a Submarine Amid |
##                                         mile from the submarine, |
##                                          mark the launching, the |
##                                              same time, six Amid |
##                                           time, six Amid Protest |
##                                       reached the submarine, and |
##                                  Coast Guard briefly sprayed the |
##                                 BOYCOTT HEMPSTEAD SHOPS: PICKETS |
##                                       New York TimesThe New York |
##                                 BOYCOTT' HEMPSTEAD SHOPS Pickets |
##                                      of local merchants today to |
##                                 in toreeniation Penne Lake Civic |
##                                       HEADS PICKETS AT CITY HALL |
##                                            Pickets at! City Hall |
##                                   City Hall yesterday morning to |
##                                                          BARNARD |
##                                             Times pe. 42 BARNARD |
##                                              WITH A CALL FOR NEW |
##                                          ENDS WITH A CALL FORNEW |
##                                            ycott, leaders of the |
##                         continued high prices prompted scattered |
##                                          country yesterday. The" |
##                                  teachers joined picket lines to |
##                                            school, Sidney Segre, |
##                                             6 opening, with some |
##                                           , where there were few |
##                                               U.S. Sues Abortion |
##                                               . S. Sues Abortion |
##                       the authorities and militant anti-abortion |
##                                              since 1988: ice the |
##                                       more 1,070 people from the |
##                                the new law against anti-abortion |
##                                             last year against 2! |
##                                     jails rather than stop their |
##                                                . Kaali, said the |
##                                 giving harsher jail sentences to |
##                                            Dobbs Ferry, said the |
##                                            have been at least 25 |
##                                         first three years of the |
##                                            pact Reached: in Bank |
##                                    blanched but The United Negro |
##                                                     South Africa |
##                                    in World Markets South Africa |
##                                       movement say they hope the |
##                                       active in the South Africa |
##                                          the hub of black campus |
##                                     have inhibited the spirit of |
##                                     Cleric, Classified 1-A After |
##                                         . Cleric, Classified 1-A |
##                                                    E. Gibbons, a |
##                                    cleric to refuse induction in |
##                                           card in an October war |
##                                                          PICKETS |
##                                       at Public Hearing; PICKETS |
##                                          police bar-! ricades in |
##                                                    reading," We, |
##                                        Chicago suburb. They were |
##                                                          YONKERS |
##                                                        Feminists |
##                                            Times s. 26 Feminists |
##                                    54th Street police station to |
##                                               . Up to a thousand |
##                                       been reports of other such |
##                                                           ARMONK |
##                                              Times ps. 52 ARMONK |
##                                         in defense of the female |
##                                     sive that they registered no |
##                                          Attend a Labor Rally To |
##                                          Attend a Labor Rally To |
##                                 Eight hundred persons attended a |
##                                the Fourth Precinct station house |
##                                     jumped out and shouted angry |
##                                        Kansas City Demonstrators |
##                                  . BIT Kansas City Demonstrators |
##                                      the hotel Say organized the |
##                                                , a small knot of |
##                                                              War |
##                                                  Times pe. 2 War |
##                                                  UPI)- Eight war |
##                                 A-Plan for Conjugal Visits Stirs |
##                                  part of the treatment procdunts |
##                                     and demonstrated in halls to |
##                                    been active in organizing the |
##                               demonstration at Gracie Mansion to |
##                                       any classes because of the |
##                            Second Lutheran Pastor Defrocked Over |
##                            Second Lutheran Pastor Defrocked Over |
##                                 defying his superiors by staging |
##                                          about 40 members of the |
##                                             also a leader of the |
##                                          170 Arrested as Nuclear |
##                                            , being arrested at a |
##                                        . 170 Arrested as Nuclear |
##                        Lawrence Livermore National Laboratory in |
##                                        those arrested. About 700 |
##                                      wore maroon. The nonviolent |
##                                             two months" that the |
##                                            , a spokesman for the |
##                             and antiarmament groups have planned |
##                                  Dartmouth Airs Students' Racism |
##                                  Dartmouth Airs Students' Racism |
##                                       a mounting tide of student |
##                                  speakers in Webster Hall voiced |
##                               incidents that had aroused student |
##                                              the school. But the |
##                                      Heart School here Monday to |
##                                      students wanted to join the |
##                                            in the school year to |
##                                               3 Black Physicians |
##                                    York Times 3 Black Physicians |
##                                      and workplaces on Friday to |
##                                      and workplaces on Friday to |
##                                                          Parents |
##                                      Times/ James Meehan Parents |
##                                Berkeley Students Stage Sit-In To |
##                               Berkeley Students Stage Sit-In_ To |
##                                        IN WINDOW CALMS COLUMBIA: |
##                                     FLAG IN WINDOW CALMS COLUMBI |
##                                       of chanting and arching in |
##                                           riot that started as a |
##                                            intended to do so in_ |
##                                            the chapel. They were |
##                              York Times Black students attending |
##                               negative and other-self-indulging" |
##                                         Students have a right to |
##                                militant over WBAI generated wide |
##                                       36 injured since the beach |
##                                              of the city hall in |
##                                            of the White House to |
##                                         war. than 20,000 antiwar |
##                                            have come| alive with |
##                                 a previous generation of antiwar |
##                                            wants to go ahead and |
##                                           Middie East, about 500 |
##                                     in America where the antiwar |
##                                          on the war. Vietnam-era |
##                                             , the Gay Activists, |
##                                          Action' Roman Catholic, |
##                                         REBELS TEST NEW COURSES: |
##                                PRINCETON REBELS TEST NEW COURSES |
##                                             which they set up in |
##                                college differs from other campus |
##                                            has raised a storm of |
##                                                NUCLEAR FOES HOLD |
##                                    permission. NUCLEAR FOES HOLD |
##                                        was linked with the recen |
##                                   leading figure in the Seabrook |
##                                     antinuclear songs today. The |
##                                    told spectators that a second |
##                                     affairs. ws Representing the |
##                                         pattern of- the Seabrook |
##                                          a Another member of the |
##                                           NASHVILLE HALTS SECOND |
##                                      . 29 NASHVILLE HALTS SECOND |
##                                       | of civil disobedience in |
##                                       a small scale yesterday in |
##                                             and attended a' mass |
##                                                                  |
##                                                York Times pg. 35 |
##                                      Assembly By LEONARD BUDER A |
##                                             . after 200 student' |
##                               demonstrated outside the school to |
##                                         PEN Congress Ends With a |
##                                         PEN Congress Ends With a |
##                                                 It grew out of a |
##                                                      If it is, I |
##                                              it did, the women's |
##                                        and women agreed that the |
##                                  White Plains Groups Join Nestle |
##                                    Nestle Protest: Baby-For mula |
##                                  White Plains Groups Join Nestlé |
##                                    at the Nestlé subsidiary here |
##                                      conditions are lacking, the |
##                                            . Product misuse, the |
##                                           the country on the day |
##                           Day Nestle officials characterized the |
##  Further reproduction prohibited without permission.Babv-Formula |
##                                 is particularly unfair since the |
##                                      and American Home Products. |
##                                             to the consumer. The |
##                                            will follow suit. The |
##                                         mothercraft nurses," the |
##                                       In an interview before the |
##                                                          Rutgers |
##                                             Times ps. 19 Rutgers |
##                                         GET JAIL TERMS IN M'COMB |
##                                         GET JAIL TERMS IN M'COMB |
##                                   Critics Quit Festival Panel in |
##                                          Quit| Festival Panel in |
##                            the festival's selection committee to |
##                                                    4 tactic. of' |
##                                         -withholding' of rent to |
##                                               three- hours. in a |
##                                             Street. However, the |
##                                             Street. This was the |
##                                              address. _ About 15 |
##                                  his participation in drafting a |
##                                     college administration., The |
##                                             750 IN RALLY HERE TO |
##                                             750 IN RALLY HERE TO |
##                                       for two hours yesterday in |
##                                     Bryn Mawr Colleges fasted in |
##                                             Gunfire in Wake of a |
##                                             Guniire in Wake of a |
##                                    Flatbush Street, Inciting New |
##                                            The incident Jed to a |
##                               afternoon, about 100 demonstrators |
##                                   of police officers watched the |
##                                   the organizers of last night's |
##                                   from a night-long civil rights |
##                          rain as they continued around-the-clock |
##                                                   , as part of a |
##                                                           25 War |
##                                                    pg. 41 25 War |
##                                       taken to the city building |
##                                          been on rent strikes to |
##                                      on the Triborough Bridge to |
##                                                         Tufts U. |
##                                              York Times Tufts U. |
##                                              ' miillin" today to |
##                                         in Leaflets For' Today's |
##                                                 club." i Student |
##                                               sup. porter of the |
##                                            " A spokesman for the |
##                                 that the respensibility over the |
##                                     of arbitration. Two teachers |
##                                                             Town |
##                                                Times pg. 30 Town |
##                                      here, residents gathered to |
##                                       Orleans, which touched off |
##                          Queens courthouse by off-duty policemen |
##                                                      officer.**. |
##                                                      night|{. to |
##                              20- Conservationists are vigorously |
##                                        TEACHER SHIFTED IN RACIAL |
##                                                  N R AGIAL( CIAL |
##                                          said that her group was |
##                                        plan actions for today in |
##                                        she said. Redwood Loggers |
##                                    hazards of radiation. Another |
##                                      At Hunter College In Hiring |
##                                      At Hunter College In Hiring |
##                                  Hiring Protest Fifteen persons' |
##                                   criminal trespass charges. The |
##                                          was taken to remove the |
##                                          were" escalating" their |
##                                              , a second group-of |
##                                        had placed the devices to |
##                                                    ." This is in |
##                                          3 CLERG YMEN HERE BEGIN |
##                                                                  |
##                                                York Times pe. 45 |
##                                                   ( AP)- Antiwar |
##                                       in the wake of segregation |
##                                                        800 Women |
##                                   or white balloons with slogans |
##                            of Estimate Approves Proposal Despite |
##                                     Criticize Law Firm In Campus |
##                                     Criticize Law Firm In Campus |
##                                     yesterday. The students were |
##                                               Resources," held a |
##                                                and a' handful of |
##                                        AND 19 OTHERS ARRESTED AT |
##                                        AND 19 OTHERS ARRESTED AT |
##                                                  the press., The |
##                                            Workers. The local is |
##                                               21 Seized in Coast |
##                                           pe2 21 Seized in Coast |
##                                                                  |
##                                                York Times pg. 43 |
##                                          said the purpose of the |
##                              Church, the nation's second-largest |
##                                                         Abortion |
##                                            Times ps. B3 Abortion |
##                                        in arresting more than 40 |
##                                         Legion dinner. They were |
##                                               it's a good way to |
##                                                     Open in' 72, |
##                                                   to Openin' 72, |
##                                           with the group after a |
##                                            125 Worth Street. The |
##                                        picket City Hall today in |
##                                                 M, Potter of the |
##                                             Bias: 28 Arrested in |
##                                              not. 26 Arrested in |
##                                    councilman, were arrested for |
##                                      Few Blacks Are Managers The |
##                             promoting white acts justifies their |
##                                       picketing also was held to |
##                                                                  |
##                                            Times/ Tyrone Dukes A |
##                                                  a oY' arrested, |
##                                       where they had gathered to |
##                                          of yet' another antiwar |
##                                        the nation's capital, 500 |
##                                              , demons-' trators. |
##                                        isn't merely a political! |
##                                              Morningside Tenants |
##                                           and| Puerte Rican poor |
##                      the crystal chandeliers Morningside Tenants |
##                                       , clergymen and leaders to |
##                                1,000 Arrested in Nuclear Weapons |
##                                        MORE THAN 850 ARRESTED IN |
##                                        in California. There were |
##                                1,000 Arrested in Nuclear Weapons |
##                                    nuclear arms in a coordinated |
##                                                  ' s, joined the |
##                                             of school buses. The |
##                                                    a dec' ade in |
##                                    before participated in such a |
##                                       effect the presence of the |
##                                              deter" nuclear war. |
##                                    people who gathered ina quiet |
##                                               Base, N.M. Fifteen |
##                                          , who became targets of |
##                                              A spectator, above, |
##                                              Off City Hall: CITY |
##                              New York Times Construction Workers |
##                                            City Hall, where they |
##                                          Hats Tell Off City Hall |
##                                            City Hall, where they |
##                                          yells and clapping. The |
##                                  supported financially, told the |
##                                             ." Responding to the |
##                                   PICKETED BY NEWARK CORES AHOUR |
##                                   PIOKETED BY NEWARK CORE 4-Hour |
##                                         , the actions of antiwar |
##                                                      Racial Bias |
##                                               pg. 35 Racial Bias |
##                                   against racial violence and to |
##                                            as the mixed crowd of |
##                                                     500 Marchers |
##                                              pg. B3 500 Marchers |
##                                Higgins Jr. Demonstrators staging |
##                                  teachers joined picket lines to |
##                                            school, Sidney Segre, |
##                                       Campus Rallies Across U.S. |
##                             yesterday at Princeton University to |
##                                       Campus Rallies Across U.S. |
##                                  the nation engaged in organized |
##                                        was active in the antiwar |
##                                         are also involved in the |
##                                                              War |
##                                                 Times ps. 75 War |
##                                   Cincinnati this afternoon in a |
##                                               war, but rather to |
##                                         students began a fast to |
##                                    a letter to President Johnson |
##                                                ." Our reason for |
##                                 Their speeches were broadcast to |
##                                       , concerts, breakfasts and |
##                                        An additional 250 people, |
##                                      Art Is Curbed After Schools |
##                                      Art Is Curbed After Schools |
##                                                a small group of| |
##                                                    ., one of the |
##                                       50 women and children were |
##                                         ended at| HARLEM PARENTS |
##                                        women within the N.C.A.A. |
##                                      team's games last season to |
##                                             to protest the rule. |
##                                                              200 |
##                                           The New York Times 200 |
##                                 Bronx Criminal Court Building to |
##                                           .' Those arrested were |
##                                           Held at White House To |
##                                           Held at White House To |
##                                        White House last night to |
##                              . Hook's organization sponsored the |
##                                       , top officials from other |
##                                      the Jews, a Manhattan-based |
##                                       station, had received many |
##                                          not made because of the |
##                                        accepted the tight of the |
##                                                     Rally of 500 |
##                                                . 37 Rally of 500 |
##                              Washington Square Park yesterday to |
##                                                     5 Greenpeace |
##                                             pg. A31 5 Greenpeace |
##                                       waiting with warrants. The |
##                       Greenpeace Environmental Organization. The |
##                                          Clifty Creek plant. Two |
##                                        picket City Hall today in |
##                                                   , she said. to |
##                                      " initiated by four leading |
##                                           are not. Catholics and |
##                                                    ! and, in the |
##                                         200 people who attended. |
##                                           in force last night to |
##                                 Base. The environmentalists have |
##                                          oxides. Inmates Stage a |
##                                     About 140 prisoners staged a |
##                                             and a half after the |
##                                          By STEVEN LEE MYERS The |
##                                       largely white board. Their |
##                                                  takes." But the |
##                                                 up garbage." The |
##                                        Fear While they say their |
##                                               . The pitch of the |
##                                                chaos, one of the |
##                                          to discuss Mr. Foster's |
##                                          and six others staged a |
##                                         has also appeared at the |
##                                          . Foster vowed that the |
##                                       , but he characterized the |
##                                                    Animal Lovers |
##                                             pg. 29 Animal Lovers |
##                                      Ave. Building Called Racial |
##                                       organized a rent strike to |
##                                            Is Begun in Harlem As |
##                              thousands of Panther supporters and |
##                                                              War |
##                                                 Times pg. 24 War |
##                                             death." The marchers |
##                                    a week-long series of antiwar |
##                                              Across U.S. To Back |
##                                              Across U.S. To Back |
##                                                  : 1,500 AT U.N. |
##                                            SCHOOLS 1,500 at U.N. |
##                                                   the city.. The |
##                                             of steps part in the |
##                                          hundred- students! also |
##                                          . QUERIES FIVE IN DRAFT |
##                                        FBI QUERIES FIVE IN DRAFT |
##                                         began a hunger strike to |
##                                          at New York| University |
##                                                    Times Workers |
##                                             pg. 23 Times Workers |
##                             work stoppage yesterday afternoon to |
##                                      The campaign is designed to |
##                                          208 Detained in Nuclear |
##                                      A18 208 Detained in Nuclear |
##                           police officers seized 208 antinuclear |
##                                            It was one of several |
##                                     about 20 people opposing the |
##                                               all but one of the |
##                                             detained. A group of |
##                                              on their clothes. A |
##                                                   Tex., about 25 |
##                                             sheriff, said of the |
##                                    four women made statements of |
##                                                 some of them. No |
##                                       Miller Beer Drops Ad After |
##                                       Miller Beer Drops Ad After |
##                                                  Feb. 20-24, but |
##                                           A Federal Judge Scolds |
##                                        es' Agence France-Presse" |
##                                         . A Federal Judge Scolds |
##                                                  ( AP)- Scolding |
##                                              it was time for the |
##                               besieged with telephone calls from |
##                                           This has turned into a |
##                                            ! Workers, called for |
##                                                  to people," the |
##                                         Street and 125th Street, |
##                                                              100 |
##                                                 Times pg. 17 100 |
##                                               the! second day in |
##                                                        .". _ The |
##                                          an effort to remove the |
##                                                  and blankets..: |
##                                    ' have been photographing the |
##                                          ENDS: WARDEN CALLS FOOD |
##                                    STRIKE ENDS Warden Calls Food |
##                                  . Prompted by the international |
##                                           of Bias: Episode Spurs |
##                                      Scars of Bias Episode Spurs |
##                          dozen Rutgers students spearheading the |
##                                national spotlight last week when |
##                                              . The fury of their |
##                                          permission.[ in Rutgers |
##                                             , Scars of Bias Spur |
##                                 cut their political teeth during |
##                                    determined, visible and vocal |
##                                       200 Attend Jersey Rally In |
##                                       200 Attend Jersey Rally In |
##                                         of Borough Hall today to |
##                                                Authors of' Hair' |
##                                                Authors of' Hair' |
##                                                          Artists |
##                                             Times pg. 22 Artists |
##                                           . Their purpose was to |
##                                     the League who organized the |
##                                                  . As a cadre of |
##                                           parade lof concern" to |
##                                                May 18. They were |
##                                                Nursing Home Cuts |
##                                           . 35 Nursing Home Cuts |
##                                             in a special sort of |
##                                             in the Felt Forum to |
##                                           rally in Felt Forum to |
##                                            Tent Near White House |
##                                      Times Tent Near White House |
##                                         the White House today to |
##                                           their desks. A similar |
##                                       at selectec schools were a |
##                                 Workers International Union. The |
##                                        speaking. Nineteen of the |
##                                                  Dec. 3 during a |
##                                      the Garden started when one |
##                                         of intense struggle, the |
##                                             ' after a meeting of |
##                                  some have described this week's |
##                                           for The New York Times |
##                                  civil rights groups announced a |
##                                    Possibility of a civil rights |
##                                  Muslims are prominent among the |
##                                                       , Nov. 28- |
##                                         is a citywide attempt to |
##                                         heckled when he told the |
##                                                  20,000 Rally To |
##                                marched in Manhattan yesterday in |
##                                      permission. 20,000 Rally To |
##                                    Cardinal O'Connor, rallied in |
##                                     tribal faction that has been |
##                                 four bureau policemen hostage to |
##                                  , 200 recent Chinese immigrants |
##                                        ' Club banquet last night |
##                          peacefully through three communities to |
##                   antinuclear activists to distribute literature |
##                            the conflicting free-speech rights of |
##                                  ., from distributing literature |
##                                     Union, which represented the |
##                                         | Hernandez-Pinero.: The |
##                                 perform routine maintenance. The |
##                                              a deputy to see the |
##                                       the Housing Authority, the |
##                                           that she and the other |
##                                        of the new chairwoman The |
##                                        declined to meet with the |
##                                     a meeting yesterday with the |
##                                          apartments. Many of the |
##                                          rally in the rotunda to |
##                without permission.Savannah Police Battle Rioters |
##                                       Middle of Bay Street early |
##                                       the favorite target of the |
##                                            Minority Students End |
##                                 York Times Minority Students End |
##                                          , a spokeswoman for the |
##                                                     ."' About 15 |
##                                                office Feb. 23 to |
##                                         the right of citizens to |
##                                     telephone since the storm of |
##                                                    ," one of the |
##                                        about 100 adults in their |
##                                 Quarles-Schvol to register their |
##                                        their children at home to |
##                                     PUBLIC SCHOOLS: THOUSANDS IN |
##                                   ON PUBLIC SCHOOLS Thousands in |
##                                      downtown area here today to |
##                                           contend the shoot-, to |
##                                        served the of the current |
##                                            in a South Bend March |
##                                              a South Bend March| |
##                                             County Jai] today to |
##                                                  sit-: in was to |
##                                   Birmingham Jails 42 Negroes In |
##                                             Jails 42 Negroes: In |
##                                                     , April 6- A |
##                                          action was planned as a |
##                                       group of 500 Puerto Ricans |
##                                          weeks it summer, blacks |
##                               the police when nine anti-Buddhist |
##                                        protesters showed up. The |
##                                            policemen broke up a' |
##                                         on the police station to |
##                                             at 211 Union Avenue, |
##                                       officers were injured. One |
##                                          to the station house to |
##                                  Haydens Start a 52-City Nuclear |
##                                  Haydens Start a 52-City Nuclear |
##                                        . About 3,000 Cubans were |
##                           Witnesses said officers struck several |
##                                     raised to keep several dozen |
##                                through cultural exchanges, joint |
##                                                          GARBAGE |
##                                         by Larry Morris) GARBAGE |
##                                  Residents Dump Trash in Streets |
##                                             At the hetght of the |
##                                                   7 SCHOOL PLANS |
##                                            Times" T SCHOOL PLANS |
##                                 news conference yesterday at the |
##                                                    ,| iMarch 21- |
##                                          and of the New Rochelle |
##                                         the Shell Oil Company to |
##                                            sit-ins, four or five |
##                                     Nomination of Judge O'Connor |
##                                  marching yesterday in Dallas to |
##                                   . Nomination of Judge O'Connor |
##                                        been the site of numerous |
##                                           to scale the statue to |
##                                  attention on their demands with |
##                                           new law because of his |
##                                  second consecutive day, antiwar |
##                                     University of Minnesota, The |
##                                       assault on roving bands of |
##                                      country were shut down over |
##                                   passive civil disobedience" to |
##                                            , where more than 400 |
##                                                     , Mich., 300 |
##                                          70 Pickets at City Hall |
##                                          70 Pickets at City Hall |
##                                 section of Brooklyn yesterday to |
##                                    youth whose death sparked the |
##                                 section of Brooklyn yesterday to |
##                                               MISSISSIPPI PUPILS |
##                                New York Times MISSISSIPPI PUPILS |
##                                    left the school apparently to |
##                                    Held in Tie-Up After Humphrey |
##                                    Heldin Tie-Up After H umphrey |
##                                           of youths who had been |
##                      had_gathered outside the Waldorf-Astoria to |
##                                          teach-in this week as a |
##                                      also been active in antiwar |
##                                         timely, including a song |
##                             injunction that hampered the group's |
##                                    provide 24-hour notice of any |
##                                          In a Mexican-. American |
##                               Schools Open In a Mexican-American |
##                              . The Mexican-American students are |
##                                             URGED IN ALBANY: 600 |
##                                            ' URGED IN ALBANY 600 |
##                                            owns Condom Hut, says |
##                                     Close 4 Hospitals Voted Amid |
##                                     Close 4 Hospitals Voted Amid |
##                                               was delayed' hen a |
##                         judges jurisdiction to bar anti-abortion |
##                             court protection from the disruptive |
##                      judge's injunction that barred antiabortion |
##                                            he said, the abortion |
##                                the constitutional right that the |
##                                         was no evidence that the |
##                                    majority in the anti-abortio: |
##                                                         Students |
##                                                on Thurs-" day to |
##                                    covered the campus with signs |
##                                              Rick Friedman. In a |
##                                                 Lamy, who wore a |
##                                        Tennessee Cheers Him- War |
##                                          alt Graham rallies, the |
##                                    Parent; Black Media Coalition |
##                                    Parent; Black Media Coalition |
##                                                         SOLDIERS |
##                                         New York Times" SOLDIERS |
##                                  Army base to re-emphasize their |
##                                    the 27 prisoners staged their |
##                               activists: stuffing envelopes with |
##                                       Corcoran Gallery of Art to |
##                                       Artists and one of today's |
##                                                is but one of the |
##                                         Art Museum Directors. As |
##                                                 Brooklyn Parents |
##                                          pg. 42 Brooklyn Parents |
##                                       schocl, They carried signs |
##                                                           Jailed |
##                                       | Around the Nation Jailed |
##                                      - More than 900 antinuclear |
##                                          said he might order the |
##                                      of traffic obstruction. The |
##                                                Lowry, one of the |
##                                                                  |
##                                                York Times pg. 41 |
##                                and gay rights organizations have |
##                                dismissals, 30 hurriedly gathered |
##                                              Model Ken Dawson, a |
##                                                 Moore Jr. in the |
##                                      own image- rich Anglo-Saxon |
##                         Formosans for Independence sponsored the |
##                                             Stay Off the Road to |
##                                             Stay Off the Road to |
##                                              side of the road to |
##                                  Fuel Pumps Closed Generally the |
##                                       driver for support for his |
##                                      ' ticipating in the two-day |
##                                                  to a crawl. The |
##                                               : to pass through. |
##                                        band radios to spread the |
##                                                       t\\, _ The |
##                                  become directly involved in the |
##                                           object of a boycott in |
##                                   advocates for people with AIDS |
##                                          IN STAMFORD:' RESIDENTS |
##                            POOL STIRS FIGHT INSTAMFORD Residents |
##                             Heated arguments erupted between the |
##                                           ," Chief Garelik Union |
##                                        in City Parade Join World |
##                                        in City Parade Join World |
##                              . Associated Press American Muslims |
##                                      Rushdie Novel' Thousands of |
##                                          his agreement' with the |
##                                       Verses" with last summer's |
##                                        at New Jersey State House |
##                                          to the stand by several |
##                                          were ot involved in the |
##                                        CORE, which sponsored the |
##                                      chapter, was arrested while |
##                                         large percentage of the« |
##                                      arrests.' Detective Removes |
##                                      Island Jewish Hospital. The |
##                                     group picketed outside, They |
##                                            ; strations, said its |
##                                           Closes After 5 Days of |
##                                           Closes After 5 Days of |
##                                        classes would resume. The |
##                                 that might match thaskhe parents |
##                                           ' Grass Roots Style of |
##                                      a very grass-roots style of |
##                                         . Dutton would laugh and |
##                             United Nations building yesterday in |
##                                               } Fifth Street, to |
##                                           , which is heading the |
##                                         Confederate Flags Prompt |
##                                Harvard| Confederate Flags Prompt |
##                                             by debates, marches, |
##                                               South. Most of the |
##                                               House. A stream of |
##                                            in the deaths of five |
##                                       was disrupted by two dozen |
##                                        was planned as an unarmed |
##                                        Alabama Negroes Seized in |
##                                     22 Alabama Negroes Seized in |
##                                     been called for tomorrow ito |
##                                               , hold two days of |
##                          alleged discrimination against Negroes, |
##                                         38 IN CLERGY JOIN NEWARK |
##                                      CLERGY JOIN NEWARK PROTEST: |
##                                         98 IN GLERGY JOIN NEWARK |
##                                    IN GLERGY JOIN NEWARK PROTEST |
##                                             Jan. 18- Twentyeight |
##                                     Archdiocese to drop notes of |
##                                                          Counter |
##                                             Times pg. 21 Counter |
##                                                  3( UPI) Antiwar |
##                                       crowd of about 500 antiwar |
##                                         Club Picketed by Nuns In |
##                                 10 Associated Press Wirephoto AT |
##                                             Picketed by Nuns: In |
##                                 Fitzgerald had said olic student |
##                                              rane cas a student. |
##                                             ' nized the right to |
##                                          support of the] Alabama |
##                                        , Roman Catholic priests, |
##                                demonstrations would continue to" |
##                                               - 7 Whites Seized- |
##                                         PORTRAIT OF NAZI PROMPTS |
##                                       " PORTRAIT OF NAZI PROMPTS |
##                                  and professional boxing were to |
##                                                 . AraHay 4] Wild |
##                                       on possible causes for the |
##                                          policy. The parents are |
##                                  special programs. Teachers Join |
##                                            today, but that other |
##                                               hour and a half to |
##                                         In sharp contrast to the |
##                                     contrast to the protests and |
##                                   the Hasidic community to stage |
##                                stage protest demonstrations. The |
##                                                     : 30 P.M. to |
##                                                 George J. Tomeh, |
##                                   asked the Secretary General to |
##                                    Park, the white demonstrators |
##                                         walked out of classes in |
##                           classes continued normally despite the |
##                                          . Koch Tries to Silence |
##                                                              200 |
##                                      Times Around the Nation 200 |
##                                    vowed to stay indefinitely to |
##                                           that had been built to |
##                                    Africa's racial policies. The |
##                                   Is Dramatized at Other Weekend |
##                                            folk songs. About 230 |
##                                     and cheering as their fellow |
##                                      to 5,000 people gathered to |
##                                             drug dealer. When he |
##                                      that started with a student |
##                                     had vowed jto continue their |
##                                              Ends in Disarray: A |
##                                     wlcin\\ Republican Campaig A |
##                                         meet with hostility. The |
##                                      The New York Times Disabled |
##                                    with a Government official in |
##                                           said the stage for the |
##                                  DISPUTE STIRS OKLAHOMA: NEGROES |
##                           COLLEGE DISPUTE STIRS OKLAHOMA Negroes |
##                                             . Behind many of the |
##                                     Veterans in Albany stopped a |
##                         picketed Cardinal Spellman's chancery to |
##                                          the antiwar movement. A |
##                                               rights issue." The |
##                                         . Joseph's Cathedral! to |
##                                       convention and were met by |
##                                                  Jewish Veterans |
##                                           pg. 21 Jewish Veterans |
##                             leaflets at Hofstra University today |
##                                           QUIP BY GOVERNOR DRAWS |
##                                        13 QUIP BY GOVERNOR DRAWS |
##                                  a public meeting where speakers |
##                                             750 IN RALLY HERE TO |
##                                             750 IN RALLY HERE TO |
##                                       for two hours yesterday in |
##                                     Bryn Mawr Colleges fasted in |
##                                           draft cards June 10 to |
##                                          On Wednesday, about 100 |
##                                      Stanford Univer- jured. The |
##                                 the hearing-impaired. Along with |
##                                      thirteen members) of groups |
##                       particular focus of vehement anti-abortion |
##                               . Agence-France Presse An abortion |
##                                   a diminishing legal outlet for |
##                             reversed his long-held position that |
##                                     lias been active in abortion |
##                                                 Spring of Life'' |
##                                     Brandeis Library Occupied in |
##                               Times Brandeis Library Occupied in |
##                               the Brandeis University library to |
##                                university's position is they can |
##                                       Sasson, said students were |
##                                            The police broke up a |
##                                              broke up a protest! |
##                                          was in New Orleans last |
##                                             touched a white boy; |
##                                         safe-deposit boxes.' The |
##                                          church across town. The |
##                                DMX supporter were arrested while |
##                                            oi America. The Early |
##                                         . The Early Protests The |
##                                     Outbreak of Vandalism As the |
##                                        that he received for past |
##                                    their lunch hour yesterday to |
##                                  for a judgment against abortion |
##                                              said that in 1993 a |
##                                    Of Abortion Jailed In Atlanta |
##                                    Of Abortion Jailed In Atlanta |
##                                            the arrest of 69 more |
##                                  conclusion of a three-day rally |
##                                           gone to jail since the |
##                                      their names. Other arrested |
##                                                      250,000 WAR |
##                                                pg. 1 230,000 WAR |
##                                 A 40-hour demonstration that the |
##                                           of one of the children |
##                                     group of parents organized a |
##                                        court suit. Yesterday the |
##                                          . 184 decision had been |
##                                            . A spokesman for the |
##                                             ripple of stu-| dent |
##                                   University of Minne sota rally |
##                                            200 people; a similar |
##                                                  | people, and a |
##                                             we have some sort of |
##                                                      N.J." A big |
##                           hundred University of Houston students |
##                                          ., where recent Grenada |
##                                     not to say that street-style |
##                                  disappeared entirely. A Grenada |
##                                               ad-) vanced on the |
##                                        peace and relaxation. The |
##                                               , Thomas Hayden, a |
##                              Medical volunteers working with the |
##                                     Another group of Yippies and |
##                                         the afternoon a march of |
##                                            day some 1,000 of the |
##                                               Academy's Students |
##                                    Day by Day Academy's Students |
##                                   Protest And Face Suspension lo |
##                                     demonstration. To punish the |
##                                                   process."" The |
##                                                     200 Marchers |
##                                    Larchmont Yacht Club today to |
##                                             to the Yacht Club to |
##                                       very _ high-class group of |
##                                 STORRS STUDENTS OCCUPY BUILDING: |
##                                 STORRS STUDENTS OCCUPY BUILDING| |
##                                         in a homey occupation to |
##                                     placards reading" Napalm Dow |
##                  brothers staged somewhat amateurish anti-Castro |
##                                                  . 2 Penn Plaza( |
##                                      Fisher Hall, LincoinCenter( |
##                                     after emotown High School in |
##                                          they were conlinuing a" |
##                                              weekend, A similar" |
##                                          York Times pg. Marchers |
##                                                      News Groups |
##                                       New York Times News Groups |
##                                          York City on July 12-16 |
##                                              of defiance. But he |
##                                         73 rabbits were taken in |
##                                         on Chicago's[ South Side |
##                                      arrests after the marchers- |
##                                                  Homeless Plight |
##                                           pg. B2 Homeless Plight |
##                                       housing project this week. |
##                                  sledgehammers and crowbars. The |
##                                   why the demonstrators were not |
##                                          church, There have been |
##                                                   St. Ann's. One |
##                                     also vowed to continue their |
##                                 the Bishop's insistence that the |
##                                           that they cease| their |
##                                           is an organizer of the |
##                                              and the Bishop, the |
##                                      from his condition that the |
##                              steps over kneeling pickets staging |
##                    approaching Jones Beach during discrimination |
##                                           said the dates for the |
##                                  Recruiters Leave, Ending Campus |
##                                  Recruiters Leave, Ending Campus |
##                                   Associated Press Three days of |
##                                      Allen Ginsberg was among 14 |
##                                          the publicity" over the |
##                                            turn away peopie. The |
##                                     sprayed chemical Mace on 100 |
##                                                        4 HELD IN |
##                                                   . 27 4 HELD IN |
##                                               freed on bail. The |
##                                        Stowaway's Deportation Is |
##                                    Ps. Stowaway's Deportation Is |
##                                about 1,000 chanting Cuban exiles |
##                               tear gas to disperse demonstrators |
##                                              50 million,| Before |
##                                Councilinan's Home Wrécked- 2,000 |
##                                          marched on City Hall to |
##                                             at lunch coun-! ters |
##                                       their two months of sit-in |
##                                          incentive for ters. the |
##                                of Olympics Terror Colors Reactor |
##                                  Olympics Terror> Colors Reactor |
##                                      the focus of an antinuclear |
##                                    at Columbia University, where |
##                                       power or research. Earlier |
##                                    people have signed a petition |
##                                              is not removed, the |
##                              . black students to Roslimdelketers |
##                                           :. Protectiomoston, to |
##                                        student govern ment and a |
##                                             of 50 people for the |
##                                          THEODORE JONES aver to" |
##                                      want peace with dignity war |
##                                  Vietnam were participating. The |
##                                       Church tonight and faced a |
##                                 Students Seize Building in Draft |
##                                     pg. ACCOMPANIMENT TO CHICAGO |
##                               . Students Seize Building-in Draft |
##                          administration office building today to |
##                                Selective Service System. Today's |
##                                  last year over participation in |
##                                                  tomorrow."' The |
##                                                      ." nye--The |
##                                           . addition to holding' |
##                subsequent meeting between representatives-of the |
##                                        saying," Georgia Students |
##                                         Rights, Emory| Committee |
##                                             for integration." We |
##                                    We protest segregation and we |
##                                       making speeches. Since the |
##                                        Policy On South Africa as |
##                                        Policy On South Africa as |
##                             Administration, reacting to domestic |
##                                         of American policies. As |
##                           Africa's white-minority Government. ee |
##                                    stronger measures. Three more |
##                                              425 Park Avenue. Oo |
##                                              Mr. Crocker said as |
##                                  complaint by first arresting 16 |
##                                         " Three More Arrests The |
##                                              in opposing it. The |
##                                         that went beyond" verbal |
##                                         heckling. Death in Texas |
##                                                          Despite |
##                                             Times pg. 50 Despite |
##                                         hunts. with lawsuits and |
##                                               200 Pratt Students |
##                                          . 28 200 Pratt Students |
##                                          .| stration in Brooklyn |
##                                       met later with the student |
##                                                           Youths |
##                                              Times pg. 33 Youths |
##                                         The more vocal among the |
##                                                         Students |
##                                                 , pe. 3 Students |
##                                  )- Thirty-nine college students |
##                                   IN TEXTBOOK RIFT West Virginia |
##                                widespread picketing by adults to |
##                                                  job action to}, |
##                                                     to stage}, a |
##                                         § ment with the textbook |
##                                            launched a counter-|} |
##                                        Los Angeles Negroes Stage |
##                                  . 15 Associated Press Wirephoto |
##                                      . Los Angeles Negroes Stage |
##                               | ings considering racial probated |
##                                     about 500,000 Negroes in the |
##                                    march White citizens staged a |
##                                       Preborn. Both groups stage |
##                                          , Including a Leader of |
##                                          , Including a Leader of |
##                                  arrest leaders of the monthlong |
##                                      the monthlong protest here. |
##                              marshals began making arrests after |
##                                     order was issued barring the |
##                                              to the clinics. The |
##                                          About an hour after the |
##                                    with President Bush about the |
##                                        by Judge Kelly citing the |
##                                   members of civil rights groups |
##                      separate but strikingly similar grass-roots |
##                                                of a communi-/ ty |
##                                        prompted a, neighborhood, |
##                                     out of many individual local |
##                                        agencies and in dozens of |
##                                           , who became leader of |
##                                         who became leader of the |
##                                                and New York. The |
##                                           the affected rock. The |
##                                            . They said they were |
##                                        in the House. Evangelical |
##                                              N.Y.U. TUITION RISE |
##                                             37 NYU. TUITION RISE |
##                                     . students staged a two-hour |
##                                     Student leaders called for a |
##                                       Two leaders of the student |
##                                     a procession of civil rights |
##                                                   87 Arrested in |
##                                              . 32 87 Arrested in |
##                                           the White House, seven |
##                              national Jewish organizations and a |
##                                        Negro Waiting Room in New |
##                                    and county officials said the |
##                                           weeks ago, setting off |
##                                        was the center of violent |
##                                      " About 200 local residents |
##                                                     10 P.M., the |
##                                         was hauled _away and the |
##                                                   Negro Students |
##                                            pg. 36 Negro Students |
##                                 not available for comment tohave |
##                                        Chester Higgins Jr. 3,000 |
##                                              people with AIDS, a |
##                                           to avoid the shouts of |
##                                    ActUp has conducted dozens of |
##                                   broke through police lines and |
##                                 Avenue and 45th Street yesterday |
##                                  president of the West Endjtheir |
##                                                      West Siders |
##                                               pg. 25 West Siders |
##                                             / The New York Times |
##                                     officers cleared the room of |
##                                  heated criticisms not only from |
##                                            be taken! against the |
##                                                                  |
##                                     granted permission to leave. |
##                                               said Emma Brown, a |
##                                             ." Police Escort The |
##                                            said it felt that the |
##                                                            RALLY |
##                                         The New York Times RALLY |
##                                        in a rally here yesterday |
##                            York Times whose enlarged photographs |
##                                   Police Custody Leads to Bitter |
##                                   Police Custody Leads to Bitter |
##                                 and led to weekly demonstrations |
##                                    Fire and Police Commission as |
##               International Demonstrators yesterday in Milwaukee |
##                                      ' Foley Square yesterday to |
##                                               handbills, was to" |
##                                        City Hall Door Blocked in |
##                                        City Hall Door Blocked in |
##                                     By The Associated Press Five |
##                                       enter City Hall during the |
##                                     door. The demonstrators were |
##                                            DILLON In the face of |
##                                           had prompted a wave of |
##                                       of others by bringing weap |
##                      some special education administrators urged |
##                                                   Moviegoers, in |
##                                     Regency Theater, handing out |
##                                        Theaters. Mooviegoers, in |
##                                    Twin Theaters in Manhattan to |
##                                        Odeon, disagreed with the |
##                                               as the site of the |
##                                                     . 25. As the |
##                                   Vallone Retracts Nominee After |
##                                \\ Vallone Retracts Nominee After |
##                                     the Health Committee, lafter |
##                                 Yesterday, they publicized their |
##                                                 CHURCH PUPIL AID |
##                                         | statement by the union |
##                                                  Atlanta Negroes |
##                                           pg. 22 Atlanta Negroes |
##                                            who had taken part in |
##                                             LANGUAGE FORUM HEARS |
##                                         18 LANGUAGE FORUM| HEARS |
##                                     have been more contemporary: |
##                                       61 Arrested at Berkeley In |
##                                       61 Arrested at Berkeley In |
##                            The police arrested 61 anti-apartheid |
##                                       and last month organized a |
##                                      many hundreds" of indignant |
##                                      screens and the other group |
##                                            a number of the calls |
##                                            the Iron Curtain. The |
##                                                 , Most of. those |
##                                            declarations like:" I |
##                                                 you to know I am |
##                                                , the torrent. of |
##                                              . Many of the calls |
##                                        who was reached after the |
##                                         last year in which three |
##                                             ) building, said the |
##                                                 Dismissals Bring |
##                                           . 41| Dismissals Bring |
##                                              caused| two days of |
##                      DEFIANT PRINCIPAL Queens Boycott Highlights |
##                              Committee on Intelligence that they |
##                            church organizations also appeared to |
##                             enthusiasm for any continued student |
##                                                     policy."" We |
##                                   demonstrations of their own to |
##                                      several hundred anti-' Nazi |
##                                              with" a good strong |
##                                               big city. What I'm |
##                                              CRYSTAL NIX in U.S. |
##                                      By CRYSTAL NEX Thousands of |
##                                           with South Africa. The |
##                       separation, marked National Anti-Apartheid |
##                                   It was the largest coordinated |
##                                   York that helped organized the |
##                                        the protests. Hundreds of |
##                            CitiBank spokesman contended that the |
##                                        business in South Africa. |
##                                   Remove Students In Washington, |
##                                             , and then about 100 |
##                                              Movement, told the| |
##                                the main undergraduate library to |
##                                                 or microfilm. S. |
##                                           such companies.: Other |
##                                         at Berkeley, where 1,200 |
##                                      into custody yesterday in a |
##                                             campaign, hold-| ing |
##                                                              145 |
##                                         AS Around the Nation 145 |
##                                                  )- Nine days of |
##                                          Abalone Alliance, is to |
##                                      . Nuclear opponents say the |
##                                      the entire block, Imperiale |
##                                            on the roof brought a |
##                                                          Indians |
##                                            Times pg. Al4 indians |
##                                             from Wis-| consin is |
##                                         and Miss Keshena here to |
##                                                  Major Religions |
##                              Protest Proposal Restricting Cults: |
##                                   New York Times Major Religions |
##                     Religions Protest Proposal Restricting Cults |
##                                   CHARLES AUSTIN Roman Catholic, |
##                                    unworkable. The Federation of |
##                                                            23 in |
##                                               Carmel Bap-' 23 in |
##                                           about 0 of the antiwar |
##                                                       !' money.' |
##                                  Ends Racial Attitude Test After |
##                                  Ends Racial AttitudeT est After |
##                                            to Bryn Mawr today to |
##                                                 , the man of the |
##                                                   science."' The |
##                                         the leaders of about 125 |
##                                Maldonado rejected several of the |
##                             a telephone conversation between the |
##                                             said Judy Heumann, a |
##                                             e ke begun A similar |
##                                               36 Arrested During |
##                                           New York Times, During |
##                                    and early this morning during |
##                                   Four police officers and three |
##                       confrontations between homeless people and |
##                                         were thrown at officers, |
##                                       broke out between knots of |
##                                               crowd, most of the |
##                                       with and arresting the few |
##                                        Three other people at the |
##                                                at the scene. The |
##                                  Washington in late September to |
##                                       fire house this afternoon, |
##                                                     Over 150 War |
##                                                . 24 Over 150 War |
##                                          - More than 150 persons |
##                                    told the Meléndezes about the |
##                                         Nationalist\\ China, the |
##                                 Striptease At Salad Bar Provokes |
##                                 Striptease At Salad Bar Provokes |
##                                       McKenna students, however, |
##                                                             Farm |
##                                               Times pg. Al6 Farm |
##                                                June 22- The farm |
##                                       for the spreading array of |
##                                and in some states well-organized |
##                                          Middle West, where some |
##                                        interests of a variety of |
##                                       All Sides Applaud Peaceful |
##                                 Another group continued, antiwar |
##                                     . All Sides Applaud Peaceful |
##                                   Coalition, which sponsored the |
##                                         1969, which drew 250,000 |
##                                to the extensive planning between |
##                                              focal! point of the |
##                                  was a co-sponsor of yesterday's |
##                                      argues that peaceful, legal |
##                                            at Grayson In a Price |
##                                            at Grayson In a Price |
##                                         . JENSEN Two young women |
##                                  financial district| chanted and |
##                                        , the residents have been |
##                                Endorsement From Kennedy- Vietnam |
##                                    . outside the Americana Hotel |
##                                     others for rioting when they |
##                                               on the campus in a |
##                                          snowbalis at their bus. |
##                                     Jim Collier said the violent |
##                                           HONOR STIRS A PHI BETA |
##                                                STIRS| A PHI BETA |
##                                        members of Phi Beta Kappa |
##                                          sald the signers of the |
##                                   Pickets School Panel in Racial |
##                                                      King Jr., a |
##                                             to those and others, |
##                                  . Sauro Midiand Beach residents |
##                                            They sent a letter of |
##                                         society had taken: their |
##                                          STUDENTS MARCH IN COAST |
##                                          as Jury Convicts 12 War |
##                                            Jury Convicts, 12 War |
##                                            had just found 12 war |
##                                       had been ordered to arrest |
##                                        linked arms and swayed to |
##                                                  like that," one |
##                             justifiable civil disobedience as a_ |
##                                               have. the right to |
##                                                have no right to. |
##                                         ge Port Chester March To |
##                                       on Village Hall tonight to |
##                                          or at least to moderate |
##                                 the Negroes should sharply limit |
##                         Midwest today durimg an anti-segregation |
##                                           members of the Jewish, |
##                                            . Eddy of East Harlem |
##                                              , Eddy, Hast Harlem |
##                                           , Hageman, East Harlem |
##                                          @ member of East Harlem |
##                                            the police broke up a |
##                                                of" Black Monday" |
##                                        in South Memphis. Today's |
##                                    / Jack Manning. Demonstrators |
##                                students have organized their own |
##                                              to have served as a |
##                                      great city to repudiate and |
##                                     Wheelchair Users Arrested In |
##                                 A26 Wheelchair Users Arrested In |
##                                      Participants in some of the |
##                                            the police said. Five |
##                                                         , Ky., a |
##                                     Are Thrown In Second Buffalo |
##                                     Are Thrown In Second Buffalo |
##                                                   20, a group of |
##                                           there is a group there |
##                                        in Opposition Many of the |
##                        counterculture people associated with the |
##                                         Wolfe, who has organized |
##                                         Troopers Arrest 200 in a |
##                                      plant yesterday, after some |
##                                         Troopers Arrest 200 in a |
##                                                      Aug. 5- Ina |
##                                       death caused by radiation. |
##                                          Taken to Police Van One |
##                                       was no interruption by the |
##                               occurred, thousands of antinuclear |
##                                           one by more than 2,500 |
##                                              June, more than 600 |
##                                              .. The Indian Point |
##                                                  plants." As the |
##                                                 . more than 200, |
##                                            to the tactics of the |
##                                              WASHINGTON, June 3- |
##                                        approved of their form of |
##                                           who were involved in a |
##                                          City Hall in Buffalo at |
##                                                inside mall as: a |
##                                       St. Patrick's Cathedral to |
##                                                last[ April 17 to |
##                                 across the nation were expecting |
##                                          only a dozen letters of |
##                                             years. The one major |
##                                       Day, the largest political |
##                                               , but there may be |
##                                          cause a backlash if our |
##                                               ." Instead of such |
##                                        York Times/ Sara Krulwich |
##                                        VISIT: The police keeping |
##                                       of any organized outcry or |
##                                              Town Hall} today to |
##                                         RIGHTS LEADERS: NEW MASS |
##                                       58 RIGHTS LEADERS New Mass |
##                                           They' warned that mass |
##                                       " will be intensified mass |
##                                                      Homosexuals |
##                                         Times ps. BS Homosexuals |
##                                        About 60 people, silently |
##                                                 ." I am silently |
##                                POLICE Students Get Lecture After |
##                                     by girls at Skidmore Gollege |
##                                                    part): 0f the |
##                                                                5 |
##                                          Al6 Around the Nation 5 |
##                                               )- Leaders of five |
##                                                       POLARIS IS |
##                                        New York Times POLARIS is |
##                                      ' Dynamics Corporation. The |
##                                      Were arrested today as they |
##                                                                  |
##                                     York Times Around the Nation |
##                                                  B11, B14. cause |
##                                 want a confrontation between the |
##                                          and the hunters nor the |
##                                             the food supply. But |
##                                 PICKBTED AGAIN Ministers Join in |
##                                       charges. MINISTERS JOIN IN |
##                                              AT CIVIL JAIL HERE: |
##                                         REBEL AT CIVIL JAIL HERE |
##                                  a raucous, occasionally violent |
##                              About 500 demonstrators gathered to |
##                                       36 injured since the beach |
##                                         would become a focus for |
##                                             PICKETED ON CUBA: 50 |
##                                             PICKETED ON CUBA! 50 |
##                                               Agency to-' day in |
##                                             , nla; The motorized |
##                                         ordinance, more than 700 |
##                                       IS BOYCOTTED: NEGRO PUPILS |
##                                        $ BOYCOTTED| Negro Pupils |
##                                                AP)- Negro pupils |
##                               principals by parent-led councils. |
##                                of Education meeting Wednesday to |
##                                      the Southwest Side during a |
##                                         . Although many of those |
##                                                         War Foes |
##                                          New York Times War Foes |
##                                         the police to remove the |
##                            College, administration officials and |
##                                     permanent. Attorneys for the |
##                                          said a statement by the |
##                                     marketing director, said the |
##                                           tudents for the day to |
##                                     by Columbia Held in Day-Care |
##                                     by Columbia Held in Day-Care |
##                                                          Lemoyne |
##                                       The New York Times Lemoyne |
##                                        two campus buildings. The |
##                                          of New Jersey and other |
##                                       in Alabama With No Negroes |
##                                       in Alabama With No Negroes |
##                             about a dozen jeering anti-apartheid |
##                                                                  |
##                                       pg. BS Reporter's Notebook |
##                                             . No longer are AIDS |
##                                     Convention Center agree, the |
##                                        and founder of the Act-Up |
##                                       was a distraction to local |
##                                     reminders that many of those |
##                           breached the barricades that separated |
##                                       headed downtown, where the |
##                                              to. the classrooms. |
##                                            Friedman Says Leftist |
##                                      . Al6 Friedman Says Leftist |
##                                                . And he says the |
##                                            how he felt about the |
##                                                  GE. Resists War |
##                                              59 G.E. Resists War |
##                                    the nearest police station in |
##                                       High School would lose 200 |
##                                          , failed to discipline! |
##                                         | College and elsewhere, |
##                             the administration building today to |
##                              Interfraternity Council. Nearly 200 |
##                                        over the proceedings. The |
##                                    continued to arrived as other |
##                                       declined to comment on the |
##                                                          ge of 8 |
##                                        Workers ge Discharge of 8 |
##                         areas demonstrated downtown yesterday to |
##                                                      City, N.Y., |
##                                     the park, an unhappy-looking |
##                                  blockaded boat traffic today to |
##                                             Gulf Coast city. The |
##                                         Buoyed by the success of |
##                                                . 16, and student |
##                                 Africa erected three shanties to |
##                                                     . Jan. 25 to |
##                                                  were meeting.-. |
##                                   appear Teady to continue their |
##                                           cam* pus and community |
##                                                " The text of the |
##                                               ! today to quiet a |
##                                  population participated in the! |
##                                    about 25 prisoners behind the |
##                                                   ." He said the |
##                                       radio host who has stirred |
##                                          also stirred a rally by |
##                                                   Raucous Police |
##                                           pg. Al0 Raucous Police |
##                                         picket line in a wildcat |
##                                           two deputy chiefs, the |
##                                      the Houston City Council to |
##                                       the black students rose in |
##                                    take the demonstration there. |
##                                          The ultimate aim of the |
##                                       in part because of student |
##                                          The ultimate aim of the |
##                                            Independent Truckers, |
##                                         &| Independent Truckers, |
##                                       a parking lot yesterday in |
##                                          The colice arrested: 10 |
##                                    women and children staged two |
##                                     strategy and talking of more |
##                                in 1975 aroused intense community |
##                                                half an hour in a |
##                                            Read-In' in Oregon To |
##                                             ' Read-In' in Oregon |
##                                             two-hour" readin" to |
##                                           . started last week to |
##                                                   of class.< The |
##                               coalition of groups behind today's |
##                               demonstration Thursday in Miami to |
##                                       IN BROOKLYN: CORE CONDUCTS |
##                                   HELD IN BROOKLYN CORE Conducts |
##                                        jwere not affected by the |
##                                    ARKANSAS TROOPERS BAR CAPITOL |
##                                  ARKANSAS T TROOPERS| BARCAPITOL |
##                                            WARN CONGRESS ON WAR: |
##                                  COLLEGIANS WARN CONGRESS ON WAR |
##                                                , May 11- Student |
##                                       adapted to take account of |
##                                                 in the wake of a |
##                               are indications that many youthful |
##                                      Boston City Hall tonight to |
##                                          ! Party has picketed in |
##                             policemen began a five-day sick-call |
##                                        nearby Newport Beach. 100 |
##                                                   AP)- About 100 |
##                                      was the group's second such |
##                                           who was been called to |
##                                       for march in Washington to |
##                                       DES MOINES STIRS LIBERTIES |
##                                     3 DES MOINES STIRS LIBERTIES |
##                                 Monday's outbreak. Marchers were |
##                                           pg. SI Natchez Negroes |
##                                 the county courthouse tonight to |
##                                       W4Yhere this afternoon to. |
##                                       store's lunch counter. The |
##                                   in Queens Magistrates weeks to |
##                                        ( 1923-Curr IEW ROCHELLE: |
##                                  STUDENTS STRIKE AT NEW ROCHELLE |
##                                           aid Negro businesses.: |
##                                         riot was touched off ina |
##                                  several blocks away by Iranians |
##                              opposition group that organized the |
##                                        plane that he intended to |
##                                    the organizers said they were |
##                                                        Chicago 7 |
##                                            Times pg. 42 Chicago7 |
##                                         had expired. About 2,000 |
##                                nightsticks, and arrested several |
##                                      for the Chicago defendants, |
##                                                         Students |
##                                           Newspa pg. 57 Students |
##                                       white, gathered outside to |
##                                     classes under sunny skies to |
##                                                     . People, d. |
##                                                   700 in Alabama |
##                                             . B10 700 in Alabama |
##                                           here last month and to |
##                                    KISSINGER ASSAILED IN VERMONT |
##                                   KISSINGER ASSAILED| IN VERMONT |
##                                      the village common today to |
##                                 said. Parents and schoolchildren |
##                                                            ' Tax |
##                                       He was the most right-wing |
##                                         The strike was called to |
##                                            with 30. Police Order |
##                                              ( by Robert Walker) |
##                                                       * said:" I |
##                                                              500 |
##                                           The New York Times 500 |
##                                         but that today they were |
##                                                    Ah! My son is |
##                                            . He's going but he's |
##                                                      0. T.C. and |
##                                      Sails for Vietnam Despite a |
##                                      Sails for Vietnam Despite a |
##                                             Golden gate in a war |
##                                           the Seventh Fleet. The |
##                                        the blacks emerged from a |
##                                 VANDERBILT PICKETED IN APARTHEID |
##                               &" VANDERBILT PICKETED INAPARTHEID |
##                                    to intensify today as pickets |
##                                             , and leaders of the |
##                                               the campus, it was |
##                            at Vanderbilt University in Nashville |
##                                                    13 at Harvard |
##                                                . 9 13 at Harvard |
##                                      University have joined in a |
##                                     on Polish intellectuals. The |
##                                         | _ tellectuals who have |
##                                  writers and educators have also |
##                                            an active part in the |
##                                         called a one-day halt in |
##                                                                  |
##                                                 York Times g. BT |
##                                          of a dormitory today to |
##                                          with campus racism. The |
##                                              Johnson. One of the |
##                                  administration was aware of the |
##                                  Aid Director Resigns; Successor |
##                                  Aid Director Resigns; Successor |
##                              clerical and lay representatives of |
##                                               ill." Speaking for |
##                                                 ". Tomorrow, the |
##                                     dawn until noon yesterday to |
##                                      with leaders of the student |
##                                   settlement was rejected by the |
##                                      the gate had signs opposing |
##                                                   on fire. i The |
##                                                 { As the line of |
##                                   . Bank President Resigns After |
##                                             she lost her job for |
##                                                tried to! stage a |
##                                            center, setting off a |
##                                                          TENANTS |
##                                             Times ps. 19 TENANTS |
##                                                Community College |
##                                         pg. 20 Community College |
##                                        of Puerto Rican By Police |
##                                                  , ot. By Police |
##                                          weapons law violation,| |
##                                           East 13th Street, were |
##                                        union members in a public |
##                                                 Mothers March to |
##                                            . 75 Mothers March to |
##                                  at Police Headquarters today to |
##                                              the budget cut. The |
##                                           children, however, the |
##                                  Headquarters in South Orange in |
##                                                   in a wel[ fare |
##                                SCORES BOMBINGS: INTERFAITH GROUP |
##                        PENTAGON SCORES BOMBINGS Interfaith Group |
##                                     before the Pentagon today to |
##                                      Their spokesmen, leaders of |
##                                           hero Cesar Chavez, six |
##                                                ere." The fasting |
##                                            Student Says Brooklyn |
##                                        . 8 Student Says Brooklyn |
##                                                 Brook-| day as a |
##                                  leftwing activists against the! |
##                                       other or- organizer of the |
##                                      stident who was arrested in |
##                                          Brooklyn campus ul lay- |
##                                         and there would be other |
##                                         LEADER SLAIN IN JACKSON; |
##                                                          Cornell |
##                                           York Times pg. Cornell |
##                                     Democratic Society, staged a |
##                                     California for the summer to |
##                                   he'the closing of South-Boston |
##                                       boycott had been called to |
##                                              350 in Queens Jail, |
##                                              350 in Queens Jail, |
##                                         of Cells In a nonviolent |
##                                 Visit Jail Immediately after the |
##                                   department could not allow the |
##                                            to the spokesman. the |
##                                                 , were part of a |
##                                         Johnson was aware of the |
##                                         . Boycott and Lawsuit To |
##                                     New York Times Traffic Light |
##                                      country over the years have |
##                                                                  |
##                                             : The New York Times |
##                                    minutes yesterday morning, to |
##                                  the demonstrations or until the |
##                                               and Third' Avenue, |
##                               pupils staged a peaceful half-hour |
##                                         rally in Union Square to |
##                                                 1964.; Two major |
##                                             . At the most recent |
##                                             ." Organizers of the |
##                                             gone there to lead a |
##                                         more than three weeks in |
##                                        shooting, which| prompted |
##                                       in response to both public |
##                                                       , Tex., as |
##                                  Pershing missiles led to public |
##                                        firing took place. Public |
##                                       group that helped lead the |
##                                         a hunger strike today to |
##                                             them last night. The |
##                                     Spanish and returned them in |
##                                                 and want peace." |
##                                                         MARCHERS |
##                                            Times ps. 85 MARCHERS |
##                             of Cardinal Spellmath's residence to |
##                                                   ' Sale On L.I. |
##                                                    ' Sale On LI. |
##                                    IN CITY OPEN SMOOTHLY DESPITE |
##                                    IN CITY OPEN SMOOTHLY DESPITE |
##                                                    ..' The other |
##                                                 , took part in a |
##                                             campus. Some of them |
##                                   Dropping of Charges Facing 200 |
##                       after demonstrations Tuesday and Wednesday |
##                                     drop the charges against the |
##                             Humboldt Country have responded with |
##                                           argue that many of the |
##                                           use of marijuana, many |
##                                             focus of much of the |
##                                                                  |
##                                          . A21 The 1992 Campaign |
##                                         last night was marred by |
##                                the downtown section yesterday to |
##                                        was the first mass racial |
##                                      ihome on Thursday. Carolina |
##                                    Chief Justice Earl Warren and |
##                                                1,100 Antinuclear |
##                                   or microfilm. Associated Press |
##                                         , N.Y. 1,100 Antinuclear |
##                                 Associated Press More than 1,100 |
##                                          people have| joined the |
##                                       . Chesworth said about 400 |
##                                             said some of the 100 |
##                                        300 Arts Leaders Rally To |
##                                        300 Arts Leaders Rally To |
##                                             RICHARD F. SHEPARD A |
##                                      broth-| Prompted an antiwar |
##                                           New York City, antiwar |
##                                        African Embassy here in a |
##                                      than 1,500 people. Although |
##                                          make a special point of |
##                                      people had been arrested in |
##                              also been several demonstrations to |
##                                                 ., last month to |
##                                       election system, despite a |
##                                          police and more than 50 |
##                                        ment, which has organized |
##                                      approached the embassy in a |
##                                   demonstrators who took part in |
##                                              crowd of about! The |
##                                        Union. About 100 youthful |
##                               Francisco day-and-night branch, to |
##                                                               35 |
##                                           New York Times 2.45 35 |
##                                  arrested yesterday morning in a |
##                                       All of those arrested were |
##                                                          CAPITAL |
##                                        ie New York Times GAPITAL |
##                                          gathered. here today to |
##                                         local schoo] boards with |
##                                      converged on the Capitol to |
##                                     arrest. As the demonstrators |
##                                           for The New York Times |
##                                                  Homeless Plight |
##                                           pg. B2 Homeless Plight |
##                                       housing project this week. |
##                                  sledgehammers and crowbars. The |
##                                   at Parley Blocks Resolution on |
##                                                 26- The right to |
##                                                   " he said, The |
##                                          Negroes- stayed away to |
##                                       Nichol, a 31year-old white |
##                       the rain-soaked demonstrators continued to |
##                                        this September. No Public |
##                                   little publicity and no public |
##                                  , accompanied by highly visible |
##                                                5 ANTIWAR INMATES |
##                                          . 24 5S ANTIWAR INMATES |
##                                             ripple of stu-| dent |
##                                   University of Minne sota rally |
##                                            200 people; a similar |
##                                                  | people, and a |
##                                             we have some sort of |
##                                                      N.J." A big |
##                           hundred University of Houston students |
##                                          ., where recent Grenada |
##                                     not to say that street-style |
##                                  disappeared entirely. A Grenada |
##                                        schools today, largely to |
##                                                                  |
##                                             : The New York Times |
##                                       attempt to stage a student |
##                                                            dents |
##                                  York Times 400 Upstate Students |
##                                              to the local ing to |
##                                                 Seminarians Plan |
##                                          ps. 36 Seminarians Plan |
##                                       one week from Wednesday to |
##                                                     Indian Point |
##                                        Times pe Wel Indian Point |
##                             WILLIAMS BUCHANAN HE 150 antinuclear |
##                                            of their arrests, the |
##                                          of Dutchess County, who |
##                            emotional strain that the antinuclear |
##                                     defendants' lawyers that the |
##                              counted toward sentencing since the |
##                                                time the 60 or so |
##                                                                  |
##                                               New York Times ps. |
##                                                       :-" The iT |
##                                         and American movies. The |
##                                                    Deaf Students |
##                                             pg. B3 Deaf Students |
##                              distraction yesterday. The students |
##                                          in class yesterday. The |
##                                          than taking reprisals." |
##                                         the success of a similar |
##                                                   are deaf.. The |
##                                     grounds for discussions. The |
##                                     who was helping organize the |
##                          against segregation in Backing Peacefal |
##                                              , but the ma- would |
##                                         the uni- dents have been |
##                                               500 JERSEY BARBERS |
##                                          . 28 500 JERSEY BARBERS |
##                                             met here| tonight to |
##                                 a one-day respite, anti-abortion |
##                                             Clergy Join Abortion |
##                                        . 20 Clergy Join Abortion |
##                          being arrested with other anti-abortion |
##                                    charges of trespassing in the |
##                                          people took part in the |
##                                                                  |
##                                            Papal Vi: Prayers and |
##                                         Bridge in San Francisco. |
##                                        196-year-old,- mission to |
##                                          heard the shouting, the |
##                                         both his remarks and the |
##                                      were kept separate from the |
##                          Roman Catholics in less confrontational |
##                                              and with stri| dent |
##                                       Bridge to Mission Dolores. |
##                                         Line Up Among the groups |
##                                 Holocaust survivors' groups were |
##                                              " SHITE. 99 PIGKETS |
##                                       Negroes and Puerto Ricans. |
##                                     400 NEGROES SEIZED IN DURHAM |
##                                     400 NEGROES SEIZED IN DURHAM |
##                                       in City Offices Over Union |
##                                           who had been staging a |
##                                              Union, to bring the |
##                                         called by black parents| |
##                                       called by black parents to |
##                                        Brooklyn Stores Closed In |
##                                      . Brooklyn Stores Closed In |
##                                     an hour yesterday morning to |
##                                           effect on Tuesday. The |
##                                         55th Street as a further |
##                                    Brooklyn College Is Seized by |
##                                        a long history of student |
##                                            tended to ignore' the |
##                                          meet the demands of the |
##                                   by blackbordered. picket signs |
##                                      could answer any questions. |
##                                             had been| planned to |
##                             repercussions in Teheran to American |
##                                  legally. Among the anti-Iranian |
##                                    a Dominican man ignited angry |
##                                              a group of about 50 |
##                               yesterday in Washington Heights to |
##                                                        N.A.AC P. |
##                                     Around the Nation N.A.A.C.P. |
##                                       rally this weekend after a |
##                                               490 people. At the |
##                                         south of Pittsburgh. The |
##                                                         Disabled |
##                                           Times ps. A13 Disabled |
##                                           room at the Capitol to |
##                                          Page Al came forward to |
##                                 Men Profess Confusion As women's |
##                                last night during a demonstration |
##                               than United Press International As |
##                                                     ' It's War!' |
##                                                     ' It's War!' |
##                                               more than an hour. |
##                                        . Momentum May Be Growing |
##                                recruiters declined to answer the |
##                                called the November 8th Committee |
##                            demonstrators told reporters that the |
##                                        point that on one evening |
##                                          TT~ OO Associated Press |
##                                            of the leaders of the |
##                                                    San Francisco |
##                                          Times pg. San Francisco |
##                                          office. They planned to |
##                                                            Naked |
##                                               Times pg. 33 Naked |
##                                        - Ten carloads of Negroes |
##                                                       VIRGINIANS |
##                                     New York Times Pi VIRGINIANS |
##                                       Commonwealth Club led to a |
##                                   marching across 34th Street to |
##                                   Tuskegee Negroes Smash Windows |
##                                          Negroes| Smash Windows. |
##                                      stormed through the city to |
##                         Nonviolent Coordinating Committee said a |
##                                        march through the city to |
##                                                   Youth Agencies |
##                                   Cuomo's Budget: Youth Agencies |
##                                           pg. WC1 Youth Agencies |
##        reproduction prohibited without permission.Youth Agencies |
##                             Built Across Chelsea Intersection to |
##                             Built Across Chelsea Intersection to |
##                                              a patrol wagon, The |
##                                         his residence. They were |
##                                         that tie up traffic with |
##                                                             SUNY |
##                                            / The New York Tinies |
##                                   prohibited witLONG S LAND SUNY |
##                                      poor security. Catalyst for |
##                                            stand: Jeary staged a |
##                                            he bi Krinsky said he |
##                                        of Cars Enters Kennedy To |
##                                        of Cars Enters Kennedy To |
##                       Kennedy International Airport yesterday to |
##                                                 ' said one sign. |
##                                                . But many of the |
##                                  on Kennedy Airport yesterday to |
##                                               month. Many of the |
##                                               the accident." The |
##                                        formed after the crash to |
##                                             In a rare gesture of |
##                                                     C. Clark, to |
##                                            because of Mr. Bell's |
##                        CLASSES Thousands Attending Night Courses |
##                                  boycotted classes. yesterday to |
##                                          to the Doctors' Growing |
##                         treat workmen's compensation patients in |
##                                    when doctors are resigning in |
##                                    ' Gracie Mansion yesterday to |
##                                        at Metropolitan." Grace's |
##                                                   87 Arrested in |
##                                              . 32 87 Arrested in |
##                                           the White House, seven |
##                                                 1,000 AT FORDHAM |
##                                      York Times 1,000 AT FORDHAM |
##                                    yesterday in an outdoor rally |
##                                            the South. In another |
##                                               Birmingham Negroes |
##                                        pg. 57 Birmingham Negroes |
##                                   the third consecutive night to |
##                                                  125 Arrested in |
##                            The police arrested 125 anti-abortion |
##                                 reported slightly injured in the |
##                                               said. Half a dozen |
##                                           HUMPHREY LOSES PLEA ON |
##                                         . HUMPHREY LOSES PLEA ON |
##                                                    Race Violence |
##                                     New York Times Race Violence |
##                                    marched through downtown in a |
##                                          as a response to racial |
##                                    The march organizers saw that |
##                                              Realty Taxes Ignite |
##                                         . B2 Realty Taxes Ignite |
##                                     suburb have mounted an angry |
##                                               tax bills. The tax |
##                                         the influence of the tax |
##                                                . But some of the |
##                                        public. Citizen Leads the |
##                                      leader of the Ridgewood tax |
##                                           Hall yesterday. In one |
##                                           a Republican. A second |
##                                   14 Uptown Schools Boycotted To |
##                                   14 Uptown Schools Boycotted To |
##                                           stayed home. They were |
##                                            Lunch' as Shooting Is |
##                                            Lunch' as Shooting Is |
##                                  picketing at Woolworth's was to |
##                                                in the South. The |
##                                             to present a' letter |
##                                         and the Mayor's house to |
##                                             day when most of the |
##                                 acknowledged the validity of the |
##                                                     - _- for the |
##                                            an-incident when! the |
##                                           for' those involved in |
##                                        showed no let-up in their |
##                                                 end,| In another |
##                                            is staying. They were |
##                                            57 Arrests at Wichita |
##                                         18 57 Arrests at Wichita |
##                               - Police arrested 57 anti-abortion |
##                                           Dallas Funds For G.OP. |
##                                          Dallas Funds For G.O.P. |
##                                            )- A group organizing |
##                                              to spend as much on |
##                                   expected to participate in the |
##                                           TRIES TO HALT NEGROES' |
##                                           TRIES TO HALT NEGROES' |
##                                   college students are staging a |
##                                         problem. The Negroes are |
##                                 law to sue violent anti-abortion |
##                                    200 years of tolerance toward |
##                                  be to curb legitimate political |
##                                       have no effect on peaceful |
##                           racketeering laws to sue anti-abortion |
##                                     at clinics. An anti-abortion |
##                                        to hear| another abortion |
##                                              issued to. create a |
##                                         Cites Other Faiths" Most |
##                                         for' last week's antiwar |
##                                    persons who conducted a rally |
##                                                 in New City. The |
##                                              ! the speeches, the |
##                                                                  |
##                                               York Times pg. A16 |
##                             Democrats to abandon a well-financed |
##                                           by many members of the |
##                                       protest group. Yet another |
##                                          a$ 25-a-plate Black Tie |
##                                    organization. The dissenters' |
##                                                   and" illegal," |
##                                          Antiwar Coalition Plans |
##                                     . 30 Antiwar Coalition Plans |
##                                            scale as large as the |
##                                    is reminiscent of the antiwar |
##                                     difference'' between current |
##                                   . Many afterward wrote letters |
##                                              large," mainstream" |
##                                        of Churches. Mainstream _ |
##                                          federation of 34! major |
##                                               far in New York to |
##                                   12 NEGROES ARRESTED IN ALABAMA |
##                          Incidents during pro-integra IN ALABAMA |
##                                          the stadium, there were |
##                                            Among 6 in Subway Who |
##                                            Among 6 in Subway Who |
##                                              of Manhattai:- have |
##                                           Cited A cording to the |
##                                             in Times Square, the |
##                                              .. According to the |
##                                                 was issued, the' |
##                                                         Stillman |
##                                             Times s. 26 Stiliman |
##                                               today as part of a |
##                                             .| The students were |
##                                  against inmates involved in the |
##                                    . More than 350 anti-abortion |
##                                      The New York Times-abortion |
##                                        woman to one clinic after |
##                                            linked arms in a coun |
##                                       Force, which organized the |
##                                    White House Policies On Women |
##                                    White House Policies On Women |
##                                                                  |
##                                                         =" hit"> |
##                                             : The New York Times |
##                                              of the station, the |
##                        . Further reproduction prohibited without |
##                                                                  |
##                                                York Times pg. 18 |
##                                Elementary School was closed when |
##                                        Freedom Now' committee is |
##                                                        Customers |
##                                        . B2 The Region Customers |
##                                Mineola firehouse Monday night to |
##                                                 Ohio, one of two |
##                                        were arrested, came after |
##                                       and their supporters, also |
##                                other campuses the police battled |
##                                 , the nationwide student antiwar |
##                                  disorder resumed. Police Battle |
##                                  however, the nationwide antiwar |
##                                  Michigan Univer-| sity students |
##                                        . The incident followed a |
##                         teachers and administrators said antiwar |
##                                   79th Precinct station house to |
##                                            Annex last night in a |
##                                         the Union County Jail to |
##                                                        300 Women |
##                                                  pg. 5 300 Women |
##                                  demonstration was intended as a |
##                                                for such a day of |
##                                       hour before another] Negro |
##                                       vowed to withhold rents to |
##                                         400 Students Walk Out in |
##                                         400 Students Walk Out in |
##                                         and suggestions" in some |
##                            stimulated anti-Jewish prejudice. The |
##                               Yale University Divinity School of |
##                                       today and present a letter |
##                                         past discrimination.' In |
##                                      The students said they were |
##                                  interruption was only a limited |
##                                           sabotage, cited by the |
##                                       authorities said, and some |
##                                             speeded up, struck a |
##                                    Canyon Reactor Starts Up Amid |
##                                    Canyon Reactor Starts Up Amid |
##                                    Canyon Reactor Starts Up Amid |
##                                             horns and sirens, to |
##                                                   job, tried, in |
##                        volunteer firefighters from Nassau County |
##                                          BEING CARRIED AWAY: Man |
##                                        Yale Faculty and Students |
##                                  Times Yale Faculty and Students |
##                                  community turned out tonight to |
##                                           Women's Group Stages a |
##                                       dis Women's Group Stages a |
##                                                staged a" run-in" |
##                                                 Mr. Rickey aa to |
##                                    Revolt Continued From Page 27 |
##                                                      safe.": THe |
##                           Maureen Sweeney remembered marching in |
##                                            the 50 leaders of the |
##                                    caps and T-shirts bearing the |
##                                    abnormally high here. Another |
##                                       party' headquarters today, |
##                                 Repression have' been organizing |
##                                    at the British Consulate Here |
##                                    at the British Consulate Here |
##                                                   it. They' were |
##                                                    ,| The day of |
##                                  Abyssinian Church last night to |
##                                               of Notre Dame to a |
##                                         Strike Several of 700 in |
##                                                         STUDENTS |
##                                      The New York Times STUDENTS |
##                                          208 Detained in Nuclear |
##                                      A18 208 Detained in Nuclear |
##                           police officers seized 208 antinuclear |
##                                            It was one of several |
##                                     about 20 people opposing the |
##                                               all but one of the |
##                                             detained. A group of |
##                                              on their clothes. A |
##                                                   Tex., about 25 |
##                                             sheriff, said of the |
##                                    four women made statements of |
##                                           it was not the biggest |
##                                  600,000 people. Another Vietnam |
##                               figures when confronted with sharp |
##                                         of Congress join in that |
##                                        during a meeting with the |
##                                        hours of listening to the |
##                                 organizations. Spokesmen for the |
##                                            do so. Underlying the |
##                                       people themselves decide." |
##                                          the Tenants Council, in |
##                                    15 Arrested During Squatters' |
##                                    15 Arrested During Squatters' |
##                            yesterday afternoon during a two-mile |
##                                               of the affair. The |
##                                        were made after about 170 |
##                                            | tion said they were |
##                                on the demonstration. Yesterday's |
##                                                                  |
##                                                York Times pg. 21 |
##                                                 West. One of the |
##                                          was continuing. The two |
##                                       where the two staged their |
##                                             with the test on The |
##                                     expected there would be more |
##                                   Negro youths staged a sit-down |
##                                         activity that began as a |
##                                                      . Act Up, a |
##                                   police brutality at an earlier |
##                                              of a long series of |
##                                    homeless and organizer of the |
##                                          the Capitol police. The |
##                                     by Capitol police during the |
##                                                       Kiowas End |
##                                          the Nation _ Kiowas End |
##                           exercise their constitutional right to |
##                                                 campaigns."\\ to |
##                                   the real-estate tax amendment. |
##                                         and tenants to Albany to |
##                                      speakers call for a massive |
##                                 Queens High School Opens Despite |
##                                 Queens High School Opens Despite |
##                                    parents from Forest Hills who |
##                                                 Plant's Gates 74 |
##                                          18 Around the Nation 74 |
##                                        a National Day of Nuclear |
##                                Washington, about 200 antinuclear |
##                                   estimated that more than 1,000 |
##                                                          Farmers |
##                                       The New York Times Farmers |
##                                      today and planned a tractor |
##                                        HEVESI in the fourth such |
##                                          onto the sidewalks. The |
##                                            As they marched, some |
##                                        to jeer them. Yesterday's |
##                                        Conrad In the fourth such |
##                                              days ago, about 500 |
##                                                 " he said as the |
##                                                         Hundreds |
##                                            Times pg. Bl Handreds |
##            prohibited without permission.Jehovah's Witness Tower |
##                                                   120 at Cornell |
##                                              . 43 120 at Cornell |
##                                        in the confrontation. The |
##                                                   kicked in.| In |
##                                          about 160 students, the |
##                                                 . On Friday, the |
##                                            , agreed to meet with |
##                                            News Service. But the |
##                                           . The rioting began in |
##                                                the po-) lice and |
##                                                      Antinuclear |
##                                         Times pg. B2 Antinuclear |
##                                                         ..'" The |
##                                 demonstrations. But recently the |
##                                     Kathleen Wilkins, a frequent |
##                                        of about 30 Catholics and |
##                                             Mr. O'Neill said the |
##                                       has often been arrested in |
##                                     interviews that they saw the |
##                                       personally with one of the |
##                                     Defense Department, said the |
##                         the demonstrators for misdirecting their |
##                                     criticized one tactic of the |
##                                             . Last week 300 Crow |
##                                        yesterday after a week of |
##                                     group most aloof from campus |
##                                              to go to classes in |
##                                    the afternoon and agreed that |
##                                       a five-day sit- of student |
##                                             | related to the war |
##                                       and March Mark Cuban Exile |
##                                       and March Mark Cuban Exile |
##                                        a downtown march marked a |
##                                          jobs as part of today's |
##                                                   Newark Parents |
##                                            pe. 30 Newark Parents |
##                            Hawthorne Avenue Elementary School to |
##                                       Peshine Avenue School, The |
##                             Al6 Columbus Firefighters And Police |
##                                        morning called in sick to |
##                                      Street gang. Tufts Students |
##                                                100 PUERTO RICANS |
##                                     York Times 400 PUERTO RICANS |
##                                    Against Poverty last night to |
##                                   a cooperative federation of 31 |
##                                       ARRESTED IN NEW ORLEANS IN |
##                                       Arrested in New Orleans in |
##                                            a shopping. center to |
##                                            men. The Negroes were |
##                                          However, leaders of the |
##                                            in the South Bronx to |
##                                        hospital remain open, The |
##                                              stockade Oct. 14 to |
##                                Parents Occupy School Building in |
##                                Parents Occupy School Building in |
##                                         WORK AT RAHWAY: REPORTED |
##                                     SHUN WORK AT RAHWAY Reported |
##                                    of cellblocks were damaged in |
##                                              of Blacks In Day of |
##                                             of Blacks _In Day of |
##                                      By RONALD SMOTHERS In moves |
##                                    portrayed as positive by many |
##                                   the Advancement of Colored Peo |
##                                     for opposing the boycott and |
##                                         they had known about the |
##                                          son, she understood the |
##                                          have been active in the |
##                                          plans to steer' antiwar |
##                                             ~* Although the main |
##                                               march is over, the |
##                                          stakes are high for the |
##                              You canjot have cops billy-clubbing |
##                                                 who could not' A |
##                                             never been to a mass |
##                                       tried to reach last year's |
##                                          a sensible site for the |
##                                                          Loggers |
##                                             Times pg. Al Loggers |
##                                       Saturday, honking horns to |
##                                in two separate demonstrations to |
##                                            Negroes in the South. |
##                                             45 in East Harlem to |
##                                               there to join the' |
##                                                    Police Battle |
##                                             pg. 70 Police Battle |
##                                                             Klan |
##                                                      2. 32( Klan |
##                                    northeast Georgia town today, |
##                                           trial as an adult drew |
##                                         OBJECT TO A PARK PROJECT |
##                                       suspension was prompt-| ly |
##                                        action, including a noisy |
##                                                      105 Antiwar |
##                                               ps. 36 105 Antiwar |
##                                              the second day of a |
##                                    Commissioner Bruce, They also |
##                                                   ps. B2 Of Long |
##                                  Reacts To Possibilities Of Long |
##                                               to now a citizens' |
##                                    had been largely ignoring the |
##                                          been banking on the tax |
##                                              both, which the tax |
##                                        the organizers of the tax |
##                                             , who formed the tax |
##                                   political concern over the tax |
##                                            their cause of white, |
##                                       9 Are Sentenced In Nuclear |
##                                       9 Are Sentenced In Nuclear |
##                                                AP)- Five persons |
##                                             built at Groton. One |
##                                        sentence, and three other |
##                                          Dinkins Striving to End |
##                                       B2 Dinkins Striving to End |
##                                  of disruptive, racially charged |
##                                            to play in ending the |
##                                                the answers." The |
##                                                 , Berk said. The |
##                                             Mr. Foster and other |
##                                                            RALLY |
##                                               Times pg. 63 RALLY |
##                                                        do 1 do?" |
##                                     actors and scholars who were |
##                                    the 102 branches. Yesterday's |
##                                       7 Nuns Arrested In Antiwar |
##                                       7 Nuns Arrested In Antiwar |
##                                             . sted in an Antiwar |
##                                        overlooking the ocean, to |
##                                         was meant to mollify the |
##                                                                  |
##                                               York Times pg. A29 |
##                                   the admissions office today to |
##                                                   120 at Cornell |
##                                              . 43 120 at Cornell |
##                                        in the confrontation. The |
##                                                   kicked in.| In |
##                                          about 160 students, the |
##                                                 . On Friday, the |
##                                            , agreed to meet with |
##                                            News Service. But the |
##                                          HARPER DISPUTE CAUSES A |
##                                    Times HARPER DISPUTE CAUSES A |
##                                      jobs yesterday in a one-day |
##                                            in a Los Angeles AIDS |
##                                            in a Los Angeles AIDS |
##                                     a Federal office building to |
##                                 400 participants in the two-hour |
##                                            Los Angeles, said the |
##                                                  Roy, one of the |
##                                                       83 Held in |
##                                            the Nation 83 Held in |
##                              police yesterday arrested 47 people |
##                                       Yale have been arrested in |
##                                     , although some Negroes have |
##                               downtown Natchez stores and headed |
##                                       . The Gay Liberation Front |
##                                          taken to the streets in |
##                                            | The Bibulds' school |
##                                                 " fai tion was a |
##                                                7 Charged in Port |
##                                            ped 7 Charged in Port |
##                                     disorderly conduct: during a |
##                                            on Staten Island. The |
##                                               . police. said two |
##                                                          Detroit |
##                                      York Times Crowd in Detroit |
##                                          start of this decade in |
##                                         . Agency Moves Parley To |
##                                     MARS DARTMOUTH RITES: STEALS |
##                                 RAIN MARS DARTMOUTH RITES Steals |
##                         Dartmouth College commencement more than |
##                                         rose from their seats in |
##                                            from the White House, |
##                                        ARREST IN BOSTON SPARKS A |
##                                        Arrest in Boston Sparks a |
##                                              police and a mob of |
##                                       swinging episode, with the |
##                                          LEONIA STUDENTS STAGE A |
##                                        . LEONIA STUDENTS STAGE A |
##                                   School Program held a friendly |
##                                     not believe that the student |
##                                   Pough-keepsie variety store to |
##                                    weeks. The demonstrators were |
##                                         had been filed after the |
##                                               in sick today in a |
##                                                    Working Women |
##                             on pedestrian overpass Working Women |
##                                                              WAR |
##                                               York Times Pa. WAR |
##                                 to Walk through neighborhoods to |
##                                                                  |
##                                     , students gathered at rally |
##                      reproduction prohibited without permission. |
##                                  across the country yesterday to |
##                                     million. Many of yesterday's |
##                                      last appeared at a Columbia |
##                                  country said yesterday that the |
##                                    isolated, short-lived" campus |
##                                              of their lethargy." |
##                                          send military aid. Some |
##                                          that there is this much |
##                                                 ." Remember, the |
##                                                 me that it was a |
##                                         Stage A Funeral March To |
##                                         Stage A Funeral March To |
##                                      campus Friday after noon to |
##                                            - Church and. liberal |
##                                         and their supporters, to |
##                                    yesterday. they shouted their |
##                                        Public Library. The young |
##                                         said that at least eight |
##                                    League Members Held in Soviet |
##                                    demonstrated on the campus to |
##                                              office of a dean to |
##                                       civil rights groups, whose |
##                                                , a top leader of |
##                                          leading| planner in the |
##                                    Boarded 2 Weeks After Violent |
##                                      two days of violent student |
##                                            of hoodlums"- student |
##                      independent truckers escalated a nationwide |
##                                   with several other attempts by |
##                                       expected today.. Spreading |
##                              Truckers Association called for the |
##                          United Press International Continuing a |
##                                   by a-mild effort at nonviolent |
##                                        | also said players could |
##                            . Last Saturday's- demonstra Moderate |
##                    abortions with nonviolent but confrontational |
##                                                                  |
##                                                York Times pg. 31 |
##                                     : SOVIET ROLE IN AFGHANISTAN |
##                                  Soviet Embassy in Washington to |
##                                       : presence in Afghanistan. |
##                                                   400 at Rutgers |
##                                        Times 2.71 400 at Rutgers |
##                                at Rutgers University staged ajto |
##                                                 Strategy, co. of |
##                                          have left the church to |
##                                             our limitations." In |
##                                     FLAUNTS DEBRIS: RESIDENTS IN |
##                                      stribute y the Residents in |
##                                             black and white. who |
##                                  Baptist Convention, the largest |
##                                    Blacks March in Birmingham to |
##                                    Blacks March in Birmingham to |
##                                        downtown at noon today to |
##                                          it was the biggest such |
##                                                 Mr. Vann met the |
##                                     black leadership is split on |
##                                         A21 invasion in Grenada: |
##                           Manhattan yesterday, carrying placards |
##                            demonstrators outside the White House |
##                                                       30 Tenants |
##                                           York Times 30. Tenants |
##                           picketed Columbus Hospital yeterday to |
##                                New York Times PROVIDENCE NEGROES |
##                                                         ( AP)- A |
##                                         the police as" wellknown |
##                                                                  |
##                                                    Grow on pg. 8 |
##                                    Liberties Union Backs Permit' |
##                                     Hall for two hours yesterday |
##                                              permit.- Joining in |
##                                         how many simply used the |
##                                predomin" Associated Press RIGHTS |
##                                        PROTEST IN CHICAGO: Crowd |
##                                          of strife, with inmates |
##                                               STUDENTS AT QUEENS |
##                                             STUDENTS AT QUEENS|| |
##                                      Students at Queens College] |
##                                         Communist party) leader, |
##                                    . Fifty students attended the |
##                                       To Increase Bills Sets Off |
##                                       To Increase Bills Sets Off |
##                                   Federal and local levels today |
##                                                 mistakes." Also, |
##                                                 be settled.| The |
##                                              for four weeks in a |
##                                 Negro and:-white: demonstrators- |
##                                       sought to soothe the angry |
##                                             " he said, rejecting |
##                                           to stand with what the |
##                                                                  |
##                                                 ; DAVID BIRD~ Pi |
##                                            ,' agreement with the |
##                                   , was canceled yesterday after |
##                                       Picketed By CORE in Racial |
##                                       Picketed By CORE in Racial |
##                      renewal construction sites ag demonstrators |
##                                      are involved in the actions |
##                                          volunteer for 15 years, |
##                                      . Disciplines Amy Carter on |
##                                         York Times Amy Carter on |
##                                      } participation in a campus |
##                                     other students for joining a |
##                                    refrain from similar kinds of |
##                                    with the authorities over her |
##                                             Harry Darbee, one of |
##                               maintenance charges. Old Fisherman |
##                                             : The New York Times |
##                                                        . 5- In a |
##                                             was no violence. The |
##                                         , talking to the student |
##                                         factor involved in the\\ |
##                                      . moved solidily behind the |
##                                            Backfire in New York: |
##                              debate over abortion. Anti-abortion |
##                         sustained and sometimes violent abortion |
##                                          splits in its ranks and |
##                                months ago of major anti-abortion |
##                             . By yesterday morning anti-abortion |
##                               able to gather 2,500 anti-abortion |
##                                              , only a handful of |
##                                  decided to focus on small-scale |
##                             techniques intended to keep abortion |
##                                           with us on Saturday to |
##                          monitored movements by Operation Rescue |
##                                              , and in some cases |
##                       in residential neighborhoods have provoked |
##                                              part of Queens. The |
##                                    our First Amendment rights to |
##                           sex establishments have criticized the |
##                                                                        
##      Protesting     | Navy Hiring' New York                            
##      Protesting     | Navy Hiring CAMBRIDGE, Mass                      
##      Protesting     | the War By RICHARD L                             
##      Protesting     | the War By RICHARD L                             
##       PROTEST       | AFTER CANCELLATION OF| By                        
##       Protest       | After Cancellation of Course|                    
##      protesters     | were still in the building                       
##      protesters     | then raced to the rear                           
##      protesters     | , some of whom chanted                           
##      Protesters     | Here By MARTIN ARNOLD New                        
##      Protesters     | Here; By MARTIN ARNOLD                           
##     Protestants     | in Northern Ireland. Late                        
##     Protestants     | .". Another demonstration                        
##      Protesters     | Overturned CONCORD, N.H.                         
##       protest       | two years ago. P                                 
##      protesters     | ' were arrested for trespassing                  
##      protestors     | demonstrated after an agreement was              
##      Protested      | at City College New York                         
##      Protested      | at City College Controversy continued            
##       Protest       | : Many Are Evicted School                        
##       Protest       | By LES LEDBETTER Special te                      
##       protest       | personnel, teaching, discipline                  
##       PROTEST       | COLLEGE TEACHING New York Times                  
##       PROTEST       | COLLEGE TEACHING Unlike other student            
##       protests      | and sit-ins to force educational                 
##       PROTEST       | : 3D BLACK STUDENT ACQUITTED                     
##       PROTEST       | ' ad Black Student k                             
##       protest       | the burning of a cross                           
##       protest       | this morning to demand that                      
##       protest       | began Friday as groups of                        
##       protests      | of the 1960' s                                   
##       protest       | . Their hair was placed                          
##      protester      | says,' have got                                  
##       protest-      | since January, 1965,                             
##       protest       | layoffs' Newark Pupils Stay                      
##       Protest       | the board's plans to at                          
##       protest       | in front of City Halll                           
##       protest       | . Reproduced with permission of                  
##       protest       | against United Nations policies in               
##       protest       | Mr. Lumumba's murder.                            
##       protest       | their government's closing of a                  
##      Protesters     | Gather As a Fight Builds                         
##      Protesters     | Gather As a Fight Builds                         
##       protest       | in Kansas last summer.                           
##      protesters     | have heckied the escorts and                     
##       protest       | , Kris Smith, a                                  
##       protest       | Ed Santoro joined anti-abortion protesters       
##      protesters     | in a 24-hour vigil at                            
##      protesting     | the Salvadoran amnesty law that                  
##       protest       | Friday after it learned that                     
##      protesting     | United States" intervention"                     
##      protesting     | the integration of classes,                      
##       protests      | staged at Frantz and McDonogh                    
##      PROTESTED      | AT MORRISTOWN: 100 INREVOLUTIONARY               
##       Protest       | Against Highway Assumes Revolutionary Air        
##       protest       | against proposed route for Highway               
##      PROTESTED      | AT MORRISTOWN 100 in Revolutionary               
##      protesting     | the proposed course. for                         
##       protest       | Planned path of Rt.                              
##       protest       | . Fifteen local organizations have               
##       protest       | the suppression of press freedom                 
##       protest       | over the dismissal two months                    
##       Protests      | Delay by a Judge Special                         
##       Protests      | Delay by a Judge|                                
##      protesting     | the judicial, city and                           
##       Protest       | Against a Coast Plant:                           
##       Protest       | Against a Coast Plant Special                    
##       protest       | plans by Pacific Gas&                            
##       protest       | the Negro teachers there who                     
##       PROTEST       | FILED IN CHICAGO: MOBILIZATION                   
##       PROTEST       | FILED IN CHICAGO Mobilization Group              
##       protests      | " during the Democratic National                 
##      protestors     | met and prayed, have                             
##       Protests      | in Upstate New York Similar                      
##      protested      | the proposed collider site near                  
##       Protest       | Dropping of Professor New York                   
##       Protest       | Dropping of Professor Special to                 
##      protesting     | the prospective dropping of a                    
##      protesters     | , who said they might                            
##       protest       | against a speech by Wilbur                       
##       protest       | against the Vietnam war and                      
##       Protests      | Plans for the center,                            
##       protests      | , the Board of Estimate                          
##      protesters     | , Mary Lacey Madison,                            
##       Protest       | Plans to Raise Tolls By                          
##       Protest       | Plans to Raise Tolls|                            
##       Protest       | for a Major Role Is                              
##      protesters     | spilled into Buffalo through the                 
##      Protesters     | on both sides of the                             
##       protests      | here a small army of                             
##      protesters     | who were arrested today.                         
##      protesters     | arrive, the struggle starts                      
##      protesters     | facists, Feet away,                              
##      protesters     | . Erie County deputies moved                     
##      protesters     | who tried to prevent an                          
##       protests      | scheduled during the Democratic Convention       
##       Protests      | started in 1988, at                              
##      Protesters     | from gaining access to clinic                    
##       protests      | in Wichita last summer,                          
##       protests      | continued for 46 days with                       
##       protest       | was scheduled, there was                         
##       protests      | . But eight other groups                         
##      protesters     | . And financing was sought                       
##       PROTEST       | LONG BEACH VOTE: MARCH                           
##    HOTHERSPROTEST   | LONG BEACH VOT March onCity                      
##       PROTEST       | | LONG BEACH VOTE'                               
##       PROTEST       | FARE TO FAR ROCKAWAY:                            
##       PROTEST       | FARE TO FAR ROCKAWAY Police                      
##      protesters     | swelled with the arrival of                      
##       protest       | the new 30-cent fare.                            
##       protests      | across the nation today,                         
##       protests      | were meant to" focus                             
##       protests      | were held in many large                          
##      protesters     | held a peaceful demonstration on                 
##       protests      | disrupted Government work. Leaders               
##      protesters     | and: policemen in more                           
##      protesters     | and tried to spray them                          
##       protest       | , 400 students, most                             
##       protest       | what they called the company's                   
##       protests      | against the warin Vietnam and                    
##      protesters     | were injured as lines of                         
##      protesters     | into custody, most of                            
##      protesters     | , for the fourth'                                
##      protesters     | smashed about 130 of the                         
##       protests      | in Hartford and in New                           
##       protest       | was taking place in a                            
##       protest       | .; Reproduced with permission                    
##      PROTESTERS     | New York Times( 1923-Current                     
##      PROTESTERS     | _. SWANQUARTER, N                                
##      protesting     | a welfare office decision to                     
##       Protest       | rather than commemoration was the                
##       Protest       | New York Times( 1923-Current                     
##       Protest       | FAIRFAX, Va.,                                    
##       protest       | last April at the headquarters                   
##       PROTEST       | BURNS UP STREET: TENANTS                         
##       PROTEST       | BURNS UP STREET Tenants Build                    
##       protest       | the manslaughter conviction of Dr                
##      protesters     | who chanted,''                                   
##       Protest       | WRVR Switch By C.GERALD FRASER                   
##       Protest       | WRVR Switch Bv C.                                
##       Protest       | Rally'' as a                                     
##       protests      | have been organized, some                        
##       Protest       | Vatican Advisory Condoning Anti-Homosexual Bias  
##       Protest       | Vatican Advisory Condoning Anti-Homosexual Bias  
##      protesting     | a Vatican document that said                     
##       PROTESTS      | BIAS BY STATIONS: F.C.C                          
##       PROTEST       | | BIAS BY STATIONS F.C.C                         
##      Protesters     | Try to Block Brawley Case                        
##      Protesters     | Try to Block Brawley Case                        
##      protesting     | the handling of a special                        
##      protesting     | alleged police brutality.'                       
##       Protest       | By KATHERINE BISHOP Special to                   
##       Protest       | By KATHERINE BISHOP Special to                   
##      protesters     | were ar'rested today as they                     
##       protests      | against redwood logging in Northern              
##       protests      | was relatively peaceful, with                    
##      protesters     | smiling at the officers from                     
##      protesters     | were being arrested, other                       
##      protesters     | were among about 300 demonstrators               
##       protest       | the logging of redwood forests                   
##       protest       | , but said they were                             
##      protesters     | evoked memories of the Summer                    
##      protesters     | out in the woods are                             
##       protests      | are intensifying in New York                     
##       Protest       | By EDITH EVANS ASBURY Bedford-Stuyvesant         
##       Protest       | Utility Rates By FERN SHEN                       
##       Protest       | Utility Rates By FERN By                         
##       protest       | began after their electricity was                
##       Protest       | Raised Land Valuation by Albany                  
##       Protest       | Raised Land Valuation by Albany                  
##       protest       | the proposed values, which                       
##       protests      | by the. N.A.A.C.P.                               
##       Protest       | Staged Near Indonesian Consulate Here            
##       Protest       | Staged Near Indonesian Consulate Here            
##       protest       | the anti-Communist policies of Indonesia's       
##       Protest       | in Denver New York Time                          
##       Protest       | in Denver DENVER, June                           
##       protest       | rally today that a two-year                      
##       protest       | was directed at District Judge                   
##      Protesters     | carried signs reading''                          
##      protested      | the shadows that would be                        
##       protest       | of the shadows that would                        
##       protest       | .'' We are                                       
##       protest       | yesterday was organized by the                   
##      protesters     | opened their umbrellas one after                 
##      Protestant     | leaders urging their congregations not           
##       Protests      | , Is Guarded by Troops                           
##       Protests      | , Is Guarded by Troops                           
##       protest       | this white domination they are                   
##       protest       | ,. at the arrogant                               
##       protest       | , meetings. It questioned                        
##       Protest       | : Baby-Formula< span.                            
##       Protest       | By TESSA MELVIN WHITE PLAINS                     
##      protesting     | the Swiss conglomerate's promotion of            
##      protesters     | said, the formula becomes                        
##      protesters     | concluded, Jeads to increased                    
##      protesters     | named National Infact Day Nestle                 
##       protest       | as unfair and discriminatory.                    
##       Protest       | at Nestle Continued from Page                    
##       protest       | demands apply equally to American                
##       Protest       | leaders conceded that the Nestlé                 
##      protesters     | said that if they get                            
##      protesters     | said' thidden-persuader" marketing               
##      protesters     | said, promote formula to                         
##       protest       | , company officials said the                     
##       protest       | the;' The police                                 
##       protest       | their pres-{ troops in                           
##       Protests      | .. Within a few                                  
##       PROTEST       | : MARCH ON ARAB MISSION                          
##       PROTEST       | [ March on Arab Mission                          
##       protest       | against sharply increased heating-oil prices     
##       protests      | in tance is high schools                         
##       protests      | in the City Universit}                           
##       protests      | in New York were the                             
##      protested      | anti-Semitic violence. The Mayor                 
##       protest       | march in Riverdale, offered                      
##      Protesters     | March in Baltimore New York                      
##      Protesters     | March in Baltimore BALTIMORE,                    
##       protest       | the death of a man                               
##       protest       | the ap the arrival of                            
##       protests      | of the Amie family,                              
##      protesters     | , many of them prominent                         
##      protesters     | to leave the building.                           
##      protesters     | left' the building.                              
##      protesters     | were being held in$                              
##      protesters     | were middle-aged. Most were                      
##      protesters     | as" parents of kids                              
##      protesters     | . In that raid,                                  
##      protesters     | outside San Quentin Prison near                  
##      protesting     | , were more| strikers                            
##       protest       | ."| trying to                                    
##       protests      | , the dean added:                                
##      protesting     | the handling of the stabbing                     
##       protest       | rally' t. the                                    
##      protesters     | and. hecklers Judge Harold                       
##       Protest       | : Rallies Lash Out at                            
##       Protest       | Rallies Lash Out at New                          
##       protest       | against the Federal Government's policy          
##      protested      | at. the Port of                                  
##      protested      | earlier today that there were                    
##       protest       | Radio Marti, a|                                  
##       Protest       | New York Times( 1923-Current                     
##      protesters     | formed a flotilla of small                       
##      protesters     | used slingshots to fire fake                     
##       Protest       | protesters in three inflatable rafts             
##      protesters     | in three inflatable rafts crossed                
##      protesters     | were trying to affix an                          
##      protesters     | with water cannon but no                         
##       PROTEST       | REZONING FOR LIGHT..                             
##     TimesPROTEST    | MARCH IN HEMPSTEAD: Pic                          
##       Protest       | ' Rezoning for Light Industry                    
##       protest       | " discriminatory" zoning practices               
##       protest       | against what they called discriminatory          
##       PROTEST       | ' New York Times(                                
##       Protest       | Twenty pickets marched for about                 
##       protest       | ! the planned use of                             
##       PROTEST       | FOLLOWS' AFFAIR':                                
##       PROTEST       | Case Involves Student Who Lives                  
##       PROTESTS      | : BEEF SUPPLY DOWN.                              
##       PROTESTS      | eaders, Claiming Qualified Success               
##       protest       | ged a variety of activities                      
##       protests      | in New York, its                                 
##       protests      | , including rallies and!                         
##       protest       | conditions at the school.                        
##      protested      | the number of police at                          
##      protesters     | even threatening to withdraw their               
##       protests      | . But the work of                                
##      Protesters     | In Test of Clinic Access                         
##      Protesters     | In Test of Clinic Access                         
##      protesters     | who have been picketing the                      
##       protests      | began, more 1,070 people                         
##       protest       | groups Operation Rescue and the                  
##      protesters     | in this state. But                               
##      protesters     | arrested at Dobbs Ferry,                         
##       protests      | . They were arrested again                       
##       protests      | have died down since the                         
##      protesters     | , whom he compared to                            
##       protests      | have quieted, but are                            
##       protests      | at the clinic that'                              
##       protests      | , more than 180 people                           
##       Protest       | EAST ST. LOUIS,                                  
##       Protest       | said_only:; Committee and                        
##       Protests      | Produce Hopes for New Generation                 
##       Protests      | Produce Hopes for New Generation                 
##       protests      | against South Africa's policy of                 
##       protests      | . With this rally Tuesday                        
##       protests      | across the Southeast this fali                   
##       protest       | ." This is Coca-Cola                             
##       Protest       | , Refuses Draft By JOHN                          
##     AfterProtest    | , Refuses Dratt By JOHN                          
##      Protestant     | minister who is married and                      
##       protest       | against the Vietnam conflict.                    
##       protest       | . On April 1 he                                  
##       PROTEST       | INTEGRATION PLAN: APPEAR AT                      
##       PROTEST       | | INTEGRATION PLAN of School                     
##       protest       | , the Board. of                                  
##       Protest       | These Immoral Hearings" and                      
##      protesting     | the condemnation for park lands                  
##       PROTESTS      | NARCOTICS CENTER New York Times                  
##       Protest       | Arrests Of Prostitutes in the                    
##       Protest       | Arrests Of Prostitutes in the                    
##       protest       | what they called the"                            
##      protesters     | have jammed suburban auditoriums to              
##       protests      | . Judge Cites Size of                            
##       PROTEST       | ON SCHOOLS BEGUN: GROUP                          
##       PROTEST       | ON SCHOOLS BEGUN Group Is                        
##      protesters     | , A. Philip Randolph                             
##       protest       | against another clause empowering the            
##       Protest       | Vietnam War New York Times                       
##       Protest       | Vietnam War Eight hundred persons                
##       protest       | rally last night staged by                       
##      protested      | the arrest, and some                             
##       protests      | . Newark police were issued                      
##       Protest       | at Reopened Hotel New York                       
##       Protest       | at Reopened Hotel KANSAS CITY                    
##       protest       | . She was joined in                              
##      protesters     | sought to remind Mr.                             
##      Protesters     | Arrested At Cathedral in Milwaukee               
##      Protesters     | Arrested At Cathedral in Milwaukee               
##      protesters     | were arTested at St.                             
##       Protests      | in Wallkill Special to The                       
##      protesting     | the program¢,,                                   
##       protest       | Mayor Beame's proposed budget cuts               
##       protest       | demonstration, said that Mrs                     
##       protest       | the proposed budget cuts on                      
##       protest       | . They'll still be expected                      
##       Protests      | New York Times( 1923-Current                     
##       Protests      | GREENVILLE, Pa.,                                 
##       protests      | for the unemployed aimed at                      
##       protest       | group and his brother,                           
##       protest       | group, was defrocked at                          
##      Protesters     | Try to Block Laboratory on                       
##       protest       | at the Lawrence Livermore National               
##      Protesters     | Try to Block Laboratory on                       
##       protest       | of the nuclear weapons design                    
##      protesters     | went to the 640acre installation                 
##       protest       | consisted of sitting or lying                    
##       protest       | was planned. No additional                       
##       protest       | organizers, said he had                          
##       protests      | for Feb. 24,                                     
##       Protests      | Special to The New York                          
##       Protests      | Specialto The New York Times                     
##       protest       | , Dartmouth College canceled classes             
##       protests      | jover the 210-year-old Ivy League                
##       protests      | were the result of"                              
##      protesters     | were not mollified. Lenny                        
##       protest       | the dismissal of four teaching                   
##       protest       | of| the Allen P                                  
##       protest       | the situation. After failing                     
##       Protest       | Move Ending Their Surgica aining                 
##       Protest       | Move Ending Their Surgical Training              
##       protest       | the Rodney G. King                               
##       protest       | the Rodney G. King                               
##       Protest       | Closing of East Haven Schools                    
##       Protest       | Closing Of East Haven Schools                    
##       Protest       | Curb on Free Speech:                             
##       Protest       | Curb on Free S peech                             
##       PROTESTS      | OVER RECRUITING BY MARINES IN                    
##       Protests      | Over Recruiting by Marines in                    
##       protest       | against the Marines' recruiting                  
##       protest       | against faflure of the city                      
##       protest       | against the city's failure to                    
##      protesting     | United States policy in'                         
##       protest       | rally at the Amite County                        
##       protests      | | such as draft card                             
##       protest       | , to dissent, to                                 
##       protests      | , a flurry of bomb                               
##       protest       | , the authorities said.                          
##       protest       | of segregated lunch counters here                
##       protest       | the war. than 20,000                             
##      protesters     | marched. On Campus A                             
##       protests      | against the military intervention and            
##      protesters     | , For today's 14 million                         
##       protest       | for peace, and the                               
##      protesters     | gathered on the student center                   
##       protests      | of the 1960' s                                   
##       protests      | also echo loudly in the                          
##      protesting     | the defeat last Friday by                        
##      Protestant     | and Jewish leaders around the                    
##       PROTEST       | ' RIGID' SYSTEM WITH                             
##       Protest       | ' Rigid' System With                             
##       protest       | against an educational system they               
##       protests      | ." This is not                                   
##       protest       | from doctors. Dr.                                
##       PROTEST       | IN NEWARK: MEET OFFICIALS                        
##       PROTEST       | IN NEWARK Meet Officials of                      
##       protest       | against a nuclear power plant                    
##       protest       | , sang antinuclear songs today                   
##       protest       | was led by the Safe                              
##       protest       | ' would take place nationwide                    
##      protesters     | were Richard Falk, Millbank                      
##       protest       | ."" We are                                       
##   protestinggroup   | was the Rev. Paul                                
##       PROTEST       | : 23 HURT< SPAN                                  
##       PROTEST       | 23 Hurt in Clash of                              
##       protest       | ! of" brutality"                                 
##       protest       | against pockets of segregation in                
##       protest       | : meeting in a downtown                          
##       PROTEST       | CLOSES SCHOOL IN BRONX:                          
##       PROTEST       | CLOSES SCHOOL IN BRONX Science                   
##       protest       | over the arrest of three                         
##      Protesters     | who were assembled' in                           
##       protest       | the arrest: of the                               
##       Protest       | By EDWIN McDOWELL New York                       
##       Protest       | By EDWIN McDOWELL Women at                       
##       protest       | meeting called by the women                      
##       protest       | against it, and therefore                        
##       protest       | had ne visible effect on                         
##       protest       | had far-reaching implications for future         
##       Protest       | : Baby-For mula Protest at                       
##       Protest       | at Nestle By TESSA MELVIN                        
##       Protest       | By TESSA MELVIN WHITE PLAINS                     
##      protesting     | the Swiss conglomerate's promotion of            
##      protesters     | said, the formula becomes                        
##      protesters     | concluded, Jeads to increased                    
##      protesters     | named National Infact Day Nestle                 
##       protest       | as unfair and discriminatory.                    
##       Protest       | at Nestle Continued from Page                    
##       protest       | demands apply equally to American                
##       Protest       | leaders conceded that the Nestlé                 
##      protesters     | said that if they get                            
##      protesters     | said' thidden-persuader" marketing               
##      protesters     | said, promote formula to                         
##       protest       | , company officials said the                     
##       Protest       | New York Times( 1923-Current                     
##       Protest       | NEWARK, March 11(                                
##       PROTEST       | New York Times( 1923-Current                     
##       PROTEST       | McCOMB, Miss.,                                   
##       Protest       | By LESLIE BENNETTS New York                      
##       Protest       | By LESLIE BENNETTS The New                       
##       protest       | actions taken by the Film                        
##       protest       | ' announced yesterday that it                    
##       protest       | housing: conditions are'                         
##       protest       | arranged by the Com munity                       
##       protest       | was called off when"                             
##       protest       | supported by. the Harlem                         
##      protesters     | walked out of crowded Bailey                     
##       protest       | to the college administration.                   
##       protest       | , signed by six faculty                          
##       PROTEST       | WA eee AR: MARCH                                 
##       PROTEST       | WAR March Outside U.N.                           
##       protest       | against the Vietnam war.                         
##       protest       | against the war, Although                        
##       Protest       | New York Times( 1923-Current                     
##       Protest       | Special to The New York                          
##       Protest       | By GEORGE JAMES A 19-year-oid                    
##       protest       | in Flatbush yesterday by 150                     
##      protested      | the shooting outside an apartment                
##       protest       | , the mother of the                              
##       protest       | , Norman Reidy, said                             
##       protest       | rally in the rain.                               
##       protest       | demonstrations aimed at freeing four             
##       protest       | started last week when the                       
##      Protesters     | Are Held After Johnson Indiana                   
##      Protesters     | Are Held| ate nae                                
##      protesters     | who was held was the                             
##       protest       | increases since July 1975.                       
##       protest       | conditions in Hast Harlem.                       
##       Protest       | New York Times( 1923-Current                     
##       Protest       | MEDFORD, Mass.,                                  
##       protest       | the arrest of 19 students                        
##       Protest       | By WALLACE TURNER Special to                     
##       Protests      | | One student who is                             
##       protest       | commit-| tee argued hotly                        
##       protest       | committee, Robert Hurwitt,                       
##       protest       | lay with the city and                            
##      protested      | the occasion by dressing in                      
##       Protests      | Plan by Jersey To Store                          
##       Protests      | Plan by Jersey' To                               
##       protest       | . For a month since                              
##       protests      | there throughout the black community             
##      protesting     | the murder charge while two                      
##       Protest       | at Station Several hundred demonstrators         
##       protest       | the killing of the|                              
##      protesting     | a proposal now being studied                     
##       PROTEST       | :' FUN' PAINTING                                 
##       PROTEST       | vieusly displeased with the principal's          
##      protesting     | the dismissal) lof a                             
##       protest       | against the presence of the                      
##       Protest       | Proposed Park Expansion WASHINGTON May           
##      protester      | , dressed in a scruffy                           
##       Protest       | New York Times( 1923-Current                     
##       Protest       | Fifteen persons' protesting|                     
##      protesting     | | hiring practices in a                          
##      protesters     | , mostly Hunter students,                        
##      protesters     | until the administration learned early           
##       protest       | by locking themselves in the                     
##      protesters     | tried to storm the office                        
##       protest       | the presence of the Puerto                       
##       protest       | of the presence of 22                            
##       PROTEST       | FAST New York Times(                             
##       Protest       | in Buffalo New York Times                        
##       Protest       | In Buffalo BUFFALO, May                          
##      protesters     | , clapping shands and chanting                   
##       protests      | . Dr. Felton G                                   
##       Protest       | Nuclear Tests; Some Visit                        
##      protesting     | the resumption of nuclear testing                
##       Protests      | » By EDWARD C.                                   
##       Protest       | New York Times( 1923-Current                     
##       Protest       | CAMBRIDGE, Mass.,                                
##      protesting     | ' against the Reserve Officer                    
##       protest       | march recently in this town                      
##      protesters     | were arrested re, cently                         
##       PROTEST       | SITE New York Times(                             
##       PROTEST       | SITE GOLDEN, Colo.                               
##      protesters     | , known as the Rocky                             
##      protesting     | the actions of a subcontractor                   
##       Protest       | New York Times( 1923-Current                     
##       Protest       | CONCORD, Calif.,                                 
##       Protests      | Held at Churches Here as                         
##       Protests      | Held at Churches Here as                         
##       protest       | was to" stimulate involvement                    
##      Protestant     | denomination, as well as                         
##      Protesters     | Tagged.. New York                                
##      Protesters     | Tagged BUFFALO, April 30                         
##      protesters     | over the weekend. Each                           
##      protesting     | what they said was the                           
##       protest       | ." He defended the                               
##      Protesters     | Told By RUDY JOHNSON New                         
##      Protesters     | Told By RUDY JOHNSON Dr                          
##       protest       | march for better health service                  
##      protesters     | demanded, among other things                     
##       protest       | against the suspension of Patrolman              
##      Protestant     | Council and Rabbi Israel Mowshowitz              
##       Protest       | ... By EDWARD                                    
##       Protest       | The dispute most recently erupted                
##      protesting     | his performance at a club                        
##       protest       | by black promoters is part                       
##       protest       | , which, if successful                           
##       protest       | the company's plans to expand                    
##       PROTESTS      | ON WAR ARE FEW AND                               
##       PROTEST       | ' IN MEMORIAM':                                  
##       PROTESTS      | ON WAR AREFEW AND MILD                           
##       protest       | . In New Haven,                                  
##       protest       | appar ently did not catch                        
##      protesters     | gathered on the east steps                       
##      protested      | what they said was the                           
##       protest       | ," explained Leo Sacks                           
##       Protest       | Renewal at City Hall Hearing                     
##      protested      | 2 slum-clearance plan for Morningside            
##       Protest       | Renewal at City Hall Hearing                     
##       protest       | organizations who argued the case                
##       Protest       | By ROBERT LINDSEYSpecial to The                  
##       PROTEST       | AT WEAPONS LAB: Police                           
##       protests      | in at least 18 states                            
##       Protest       | By ROBERT LINDSEY Special to                     
##       protest       | called Disarmament Action Day that               
##       protest       | at Livermore, which at                           
##      protesters     | were taken several miles to                      
##       protests      | against the Vietnam| War                         
##       protest       | . Most said that they                            
##      protesters     | had had on the weapon                            
##       Protests      | at Several Sites Two other                       
##       protest       | near the United Nations in                       
##      protesters     | were arrested in front of                        
##       protests      | by Jewish groups."                               
##      protested      | proposals of a transit fare                      
##      Protesters     | , Many...                                        
##       Protest       | Delays in City Projects Fifty                    
##      protested      | delays in the city's rebuilding                  
##      Protesters     | , Many Unemployed, Want                          
##      protested      | delays in the city's"                            
##      protesters     | closed the westbound Jane of                     
##      protesters     | that he had come to                              
##      protesters     | outside his office windows yesterday             
##       PROTEST       | HELD APTER SEIZURE OI nt                         
##       Protest       | Held After Seizure of 7                          
##      protesters     | " almost caused this job                         
##       Protest       | at Columbia New York Times                       
##       Protest       | at Colurnbia More than 300                       
##       protest       | the response by the administration               
##      protesters     | stood in front of the                            
##       Protest       | the Delay on Annex at                            
##       Protest       | t By MICHAEL STERNE Shouting                     
##       protest       | on 149th Street in the                           
##       protest       | conditions at the school.                        
##      protested      | the number of police at                          
##       Protest       | Registration Plan: Professor.                    
##       protest       | proposed renewal of draft registration           
##       Protest       | Registration Plan By ROBERT BLAIR                
##       protests      | yesterday against President Carter's proposal    
##       protests      | of the 1960' s                                   
##       protests      | . One is Michael E                               
##       Protest       | in Cincinnati' New York                          
##       Protest       | in Cincinnati CINCINNATI, Feb                    
##       protest       | of the nation's involvement in                   
##       protest       | better not try to give                           
##       protest       | the penalties, said he                           
##      protesting     | 2 lowering of immigration restrictions           
##       protest       | stems from the fact that                         
##      protesters     | over loud speakers. Asked                        
##       protests      | . Demonstrations Today About 300                 
##      protesting     | what they described as profiteering              
##       Protest       | New York Times( 1923-Current                     
##       Protest       | KANSAS CITY, Mo.                                 
##      protestors     | carried signs reading" Death                     
##      protesters     | today. With the recent                           
##      protesting     | = taday's opening of the                         
##       PROTEST       | : Children join their elders                     
##      protested      | the selection of former President                
##       protest       | the rule. Protests from                          
##       Protests      | from Thompson and others ulti                    
##       Protest       | Bronx Arrests' New York                          
##       Protest       | Bronx Arrests| About 200                         
##       protest       | the arrests last Friday of                       
##      protesting     | the selling here of grapes                       
##       Protest       | Hanoi Bombing. New York                          
##       Protest       | Hanoi Bombing| WASHINGTON,                       
##       protest       | what Charles R. Hook                             
##       protest       | and was Joined by members                        
##      Protestant     | | denominations, the past                        
##      Protestant     | organization dedicated to converting Jews        
##       protests      | from individual Jews as well                     
##       protests      | ." The calls and                                 
##      Protestant     | group to: proselytize,                           
##       Protests      | Rent R: New York                                 
##       Protests      | Rent Rises By United Press                       
##       protest       | rising rents and lack of                         
##      Protesters     | Sit On Smokestacks in 3                          
##      Protesters     | Sit On Smokestacks in 3                          
##      protesters     | are members of the Greenpeace                    
##       protests      | involve plants that the organization'says        
##      protesters     | remained ona Magma Copper smelter                
##       protest       | against the suspension of Patrolman              
##       protest       | the conversion of| When                          
##      Protestant     | and Catholic peace groups and                    
##     Protestants     | are working together ya!                         
##      Protestant     | camp, evangelicals are beginning                 
##      Protesters     | and board members alike said                     
##       protest       | a BW. proposed 25-cent                           
##      protested      | that an environmental assessment prepared        
##       Protest       | At Rhode Island Prison CRANSTON                  
##       protest       | today in the maximum security                    
##       protest       | began. The prisoners contend                     
##       protests      | , which show no sign                             
##       protests      | , which have led to                              
##      protesters     | , led by Ernest N                                
##       protests      | began early in 1990-                             
##       protests      | have been as benign as                           
##       protests      | reached a critical level at                      
##      protesters     | shoved a table that crushed                      
##       protests      | , saying his" 15-year                            
##       protest       | on the steps of Borough                          
##       protests      | , called the board'                              
##       protests      | would continue, including at                     
##       protests      | as counterproductive." Tl                        
##       Protest       | a Planned Deer Hunt in                           
##       Protest       | a Planned Deer Hunt in                           
##       Protest       | on Exploitation by Whites Bv                     
##       protest       | housing conditions imposed on Negroes            
##       Protest       | Against Exploitation Continued From Page         
##      protesters     | against the Vietnam War converged                
##      Protesters     | Seized On Pennsylvania Base Spoval               
##      Protesters     | Seized© On Pennsylvania Base                     
##      protested      | the base's use to repair                         
##       protests      | , It was led by                                  
##      Protesters     | in China" Associated Press                       
##      Protesters     | in China By The Assoclated                       
##       PROTEST       | THE HOLDING OF..                                 
##       Protest       | the Holding of Classes on                        
##       protest       | was directed) against the                        
##       protest       | there. The steps,                                
##      protested      | yesterday afternoon outside Board of             
##       PROTEST       | : BUT PACIFISTS WHO BURNED                       
##       PROTEST       | But Pacifists Who Burned Cards                   
##       protest       | his call to active duty                          
##      protested      | the appearance of a Marine                       
##       Protest       | Muggings New York Times(                         
##       Protest       | Muggings Several hundred employees of            
##       protest       | what they said was a                             
##       protest       | the" genocide" against                           
##       Protest       | At Air Force Base Near                           
##       Protest       | At Air Force Base Near                           
##      protesters     | yesterday for trespassing at Strategic           
##       protests      | nationwide marking the 38th annive               
##       protest       | jeered and yelled" Send                          
##      protesters     | was released after being fingerprinted           
##      protesters     | from Minneapolis poured blood on                 
##       protest       | spokesman said it was their                      
##       protest       | ers planned to keep a                            
##      protesters     | ." They are just                                 
##       protest       | against the deployment of cruise                 
##       protest       | dem onstrations have been held                   
##       Protest       | Special to The New York                          
##       Protest       | Special to The New York                          
##       protests      | from students at some schools                    
##      Protesters     | On Filing Petitions in Cruzan                    
##      Protesters     | outside the Missouri Rehabilitation Center       
##      Protesters     | On Filing Petitions in Cruzan                    
##      protesters     | for their persistence, a                         
##      protesters     | to stop filing petitions with                    
##      protesters     | who wanted him to intervene                      
##       protest       | ,"' he said                                      
##      protesting     | what he said were'                               
##      protester      | said, warning.'                                  
##      protesting     | what they termed" sharp                          
##      Protesters     | Seize Library at Cornell By                      
##      Protesters     | Seize Library at Cornell By                      
##       protest       | of what their leaders said                       
##      protesters     | who have promulgated a list                      
##      protesters     | .'" Because of                                   
##      Protesters     | Photographed The demands call for                
##      protesters     | ,. and Dr.                                       
##       PROTESTS      | AT SAN QUENTIN JU:                               
##       Protests      | at San Quentin Justified SAN                     
##       protests      | , United States Attorney General                 
##      Protesters     | In Rutgers...                                    
##      Protesters     | By KEVIBERLY J. McLARIN                          
##       protests      | against Mr. Lawrence on                          
##      protesters     | interrupted a televised Rutgers basketball       
##       protest       | may have reached its high                        
##       Protest       | , Scars of Bias Spur                             
##      Protesters     | ways been active in Hispanic                     
##       protests      | over tuition increases in 1993                   
##       protest       | to Nazism and racist terror                      
##       Protest       | at Barbers Special to The                        
##       Protest       | at Barbers Special to The                        
##       protest       | the refusal of some barbers                      
##       Protest       | Their Removal From Cast New                      
##       Protest       | Their Removal From Cast The                      
##       Protest       | Restorations at the Met Glueck                   
##       Protest       | Restorations at the Met By                       
##       protest       | what they said was the                           
##       protest       | ." They go beneath                               
##      protestors     | marched in a ring on                             
##       protest       | in front. of apartments                          
##      protesting     | the removal of tenants by                        
##      Protested      | by Patients' Relatives By                        
##      Protested      | by Patients' Relatives By                        
##       protest       | .." It's just                                    
##       protest       | the state's recent cutbacks in                   
##       protest       | Medicaid cuts. that the                          
##       Protests      | Negro Camp-In' New York                          
##       Protests      | Negro Camp-In WASHINGTON, April                  
##       protest       | last week's" camp-in"                            
##       protest       | yesterday by members of Local                    
##       protest       | against lack o! progress                         
##       protest       | ended shortly after the police                   
##      protesters     | were arrested in the evening                     
##       protest       | march led by the Communist                       
##      protester      | hurled a rock at a                               
##      protesters     | broke into small groups and                      
##      protesters     | , tribal officials and'                          
##       protest       | as the work of an                                
##      Protesting     | the decision by Texas Woman's                    
##       protest       | march along the route used                       
##       protest       | modeled on the tactics that                      
##       protest       | leaders in Kingston, the                         
##      Protesting     | crowded classrooms and demanding a               
##       protest       | the rights of children in                        
##      protesters     | that'' goverment Tuns                            
##       Protest       | Cuomo Plan On Medicaid:                          
##       protest       | of Gov. Mario M                                  
##       Protest       | Cuomo Plan On Medicaid By                        
##       protest       | yes-. terday against a                           
##       protest-      | ing the 21-year rule of                          
##       protest       | the dismissal of Mr.                             
##      protested      | in front of Police Headquarters                  
##      protesting     | alleged discrimination. The athletic             
##       protest       | recent acts of violence directed                 
##      protesting     | the construction of the Shoreham                 
##      protesters     | and the private property rights                  
##      protesting     | the Shoreham nuclear plant,                      
##      protesters     | , said the decision marked                       
##      protesters     | , who were mainly residents                      
##      protesters     | , who did not have                               
##      protesters     | ; two hours after they                           
##      protesters     | in effect shifted the debate                     
##      protesters     | went to the Housing Au                           
##      protesters     | criticized the chairwoman for not                
##      protesters     | .' I won't be                                    
##      protesters     | , housing officials had noted                    
##      protesters     | were members of Acorn,                           
##       protest       | cuts in housing for homeless                     
##      Protesting     | the Arrest of Leader Continued                   
##      protesting     | for their freedom, Wednesday                     
##       protest       | . long-range goal is a                           
##       Protest       | at Hampshire..'                                  
##       Protest       | at Hampshire AMHERST, Mass                       
##      protesters     | . The president of Hampshire                     
##      protesters     | filed out of Dakin House                         
##       protest       | the treatment of minority students               
##       protest       | . The committee said it                          
##       protest       | began. That is why                               
##      protesters     | said. But speakers at                            
##       protest       | against a delay in a                             
##       protest       | , then marched to the                            
##       protest       | the board's integration. plan                    
##       PROTEST       | HERE INQUIRE By LEONARD BUDER                    
##       Protest       | Here Inquire About Enrollment By                 
##       protest       | the slaying last week the                        
##       protest       | alleged voter regising was not                   
##       protests      | and City Council with a                          
##       Protest       | the Jailing of 11'                               
##       Protest       | the Jailing of 11:                               
##       protest       | the jailing of 11 persons                        
##       protest       | the use of armed,                                
##       Protest       | Parade to City Hall:                             
##       Protest       | Parade to City Hall Connor                       
##       protest       | march by Negroes on City                         
##       protest       | against Mr. Connor's refusal                     
##      protesting     | alleged police discrimination. marched           
##      protested      | what they saw as rude                            
##      protesters     | showed up. The protesters                        
##      protesters     | , some dressed in Army                           
##       protest       | march of about 150 Negroes                       
##       protest       | the closing of a dance                           
##      protesting     | the arrest of a Hasidic                          
##      protester      | was arrested. Two days                           
##       protest       | what they said was a                             
##       Protest       | :' 80 Endorsement Withheld                       
##       Protest       | By BEN A. FRANKLIN                               
##      protesting     | the deportation Friday of a                      
##      protesters     | with nightsticks. The largest                    
##      protesters     | from marching on the Metro                       
##       protests      | of apartheid policies in South                   
##       PROTEST       | CLOSES 5 BLOCKS: LOWER                           
##       PROTEST       | . CLOSES 6 BLOCKS Lower                          
##       PROTEST       | : Refuse dumped on East                          
##       protest       | , which began at 6                               
##      PROTESTED      | HERE: BROOKLYN GROUP SAYS                        
##      PROTESTED      | HERE Brooklyn Group Says They                    
##      Protestant     | Council of New- York                             
##      Protestant     | min-| listers, Jewish                            
##      Protestant     | Ministers Association; and a                     
##       protest       | investments of the Royal Dutch                   
##      protestors     | have entered an office,                          
##      Protested      | by Abortion Foes at Rally                        
##       protest       | the nomination of Sandra Day                     
##      Protested      | by Abortion Foes at Rally                        
##       protests      | . The latest was on                              
##       protest       | the treatment of a convict                       
##       protests      | that included"' deposits                         
##       protest       | activities outside Pensacola clinics.            
##       protests      | convulsed cities and college campuses            
##      protesters     | stopped traffic, threw rocks                     
##      protesters     | , For two hours,                                 
##       protest       | against! the United States                       
##       protest       | the war, which he                                
##      protesters     | have been arrested in nonviolent                 
##      protesters     | blocked a road near the                          
##       Protest       | Harbour Village Housing Plan By                  
##       Protest       | : Harbour Village Housing Plan                   
##       protest       | the racial shooting of a                         
##       protest       | . The whites yelled back                         
##       protest       | the racial shooting of a                         
##       PROTEST       | SHOOTING New York Times(                         
##       PROTEST       | SHOOTING| KOSCIUSKO, Miss                        
##       protest       | against night riders' firing                     
##       Protest       | New York Times( 1923-Current                     
##       Protest       | Hundreds of youths who had                       
##      protesting     | a speech here by Vice                            
##       protest       | the appearance of the Vice                       
##       protest       | against United States policy in                  
##       protests      | . The special" no-speakers-al                    
##      protesting     | the ways of" grownups                            
##       protests      | in Buffalo in April-                             
##       protest       | or demonstration, _ established                  
##       Protest       | By MARTIN WALDRON Special to                     
##       Protest       | By MARTIN WALDRON Speclal to                     
##      protesting     | a school desegregation plan that                 
##       PROTEST       | LIBERAL LAW WHILE OTHERS BACK                    
##       Protest       | Libera! Law While Others                         
##       protests      | will not deter her.                              
##      Protesters     | ' Shouts: Civil.                                 
##      Protesters     | ' Shouts As members of                           
##       protest       | was filed about a samle                          
##      protesters     | from blockading abortion clinics.                
##       protests      | organized by Operation Rescue and                
##      protesters     | from blocking abortion clinics,                  
##      protesters     | ' strategy" represents a                         
##      protestere     | intarfared with wac the rioht                    
##      protesters     | intended to interfere with the                   
##       protest       | case. Justice John Paul                          
##       Protest       | a Plan to Freeze Financial                       
##       protest       | a freeze on financial aid                        
##      protesting     | the budget projections, including                
##       protest       | over a freeze on financial                       
##       protest       | message scrawled on his chest                    
##      Protesters     | Shout' Peace, Peace                              
##      protesters     | occasionally shouted" peace,                     
##       Protests      | Move By LES BROWN New                            
##       Protests      | Move By LES BROWN|                               
##       PROTEST       | TRIAL FOR MUTINY: G.I.GROUP                      
##       PROTEST       | TRIALFOR MUTINY G.|                              
##       protest       | . But the mutiny trial                           
##       protest       | against the Killing of a                         
##       protest       | literature and licking stamps.                   
##       protest       | the cancellation of an exhibition                
##       protest       | speakers." We think                              
##       protests      | planned in the Washington arts                   
##      protesters     | marched in muggy sunshine today                  
##       Protest       | a Busing Plan By M.S                             
##       Protest       | a Busing Plan Parents boycotted                  
##      protesting     | plans ito bus 170 pupils                         
##      Protesters     | on Coast In Standoff With                        
##      Protesters     | on Coast In Standoff With                        
##      protesters     | , opposed to the terms                           
##      protesters     | , who are housed in                              
##      protesters     | are opposed to ar i                              
##      protesters     | . The 487 women and                              
##       Protests      | Greet Removal of Top AIDS                        
##       Protests      | Greet Removal of Top AIDS                        
##      protested      | the action. The two                              
##      protesters     | appeared at a meeting of                         
##       protest       | organizer, Praised the AIDS                      
##      Protestant     | Episcopal Church ceremony.|                      
##     Protestants     | - Father Morton remarked,                        
##       protest       | . After the orderly gathering                    
##       Protest       | Effects of...                                    
##       Protest       | Effects of Fuel Shortage|                        
##       protest       | 3° 34: ithe                                      
##       protest       | was% peaceful, with                              
##       protest       | among drivers in the parking                     
##       protest       | ..:""                                            
##       protest       | was broken up at-3 AM                            
##      Protesting     | drivers again re: Hed                            
##       protest       | by passing on the names                          
##       protest       | centers on higher~ diesel                        
##       protest       | were sitting it out at                           
##       protest       | . The Education Department told                  
##      protested      | , saying that there is                           
##       PROTEST       | FILLING-IN OF F By JONATHAN                      
##       Protest       | Filling-In| of Facility to                       
##      protesters     | and the golfers, who                             
##      protested      | the cleanup on' other                            
##       Protest       | on Vietnam New York Times                        
##       Protest       | on Vietnam Reproduced with permission            
##       Protest       | Publication of Rushdie Novel'                    
##      protesters     | at the Manhattan office of                       
##       protests      | voiced by writers at demonstrations              
##       protest       | , which he supported,                            
##       Protest       | Contemplated Jetport Women from Hunterdon        
##      Protestant     | clergymen and educators in the                   
##       protests      | seemed either to ingore the                      
##       protest       | , had hoped for 1,000                            
##      protesting     | at a police station,                             
##      protesters     | were whites. In some                             
##      Protester      | | A group attempted to                           
##      protester      | was arrested and! charged                        
##      protested      | Ford's hirling policies, The                     
##       protest       | had been" a classic                              
##       Protests      | New York Times( 1923-Current                     
##       Protests      | HUNTSVILLE, Ala. Oct                             
##      protesters     | at the predominantly black state                 
##      protesteed     | the qu of the recent                             
##       Protest       | ' The commissioner said his                      
##       protest       | ," Mr. Sherman                                   
##       protest       | he was not seriously hurting                     
##       protest       | against alleged United States participation      
##       protest       | Mr. Rodtiguez's removal.                         
##       protest       | designed to win higher-farm prices               
##       Protests      | And Debates: Harvard New                         
##       Protests      | And Debates CAMBRIDGE, Mass                      
##       protest       | " eat ins''                                      
##      protesters     | willing to be quoted have                        
##       protests      | from Cabot and other parts                       
##      protesting     | members of the Communist Workers                 
##      protesters     | , wielding baseball bats,                        
##       protest       | against the Communists. Not                      
##       Protest       | . New York Times(                                
##       Protest       | | MONTGOMERY, Ala.                               
##       protest       | the fact that" we                                
##       protests      | . Mr.| Rodgers                                   
##       protest       | leaders said they were demonstrating             
##       PROTEST       | : PROTESTANTS AND A RABBI                        
##     PROTESTANTS     | AND A RABBI BACK CATHO                           
##       PROTEST       | Protestants and a Rabbi Back                     
##     Protestants     | and a Rabbi Back Catholics                       
##      Protestant     | clergymen and a rabbi from                       
##       protest       | instead of money into church'collection          
##       Protest       | Held' New York Times                             
##       Protest       | Hela WASHINGTON, May 3                           
##      protesters     | , maintaining a 36-hour vigil                    
##      protesters     | gathered to' hear speeches                       
##       Protest       | Over Discrimination:..                           
##       PROTEST       | IN CHICAGO: This was                             
##       Protest       | Over Discrimination. Special to                  
##       protest       | against al- that he would                        
##       protest       | |" a spokesman for                               
##       protest       | while philanthropy."'                            
##       protest       | .' The march,                                    
##      Protestant     | ministers and_ several} nuns                     
##       protest       | ' the school system as                           
##       Protest       | Grows Special to The New                         
##       PROTEST       | : JEWISH GROUP ASKS UNIVERSITY                   
##       PROTEST       | Jewish Group Asks University to                  
##       protest       | the stripping of the heavyweight                 
##      protested      | the visit of Isrqe HO                            
##       protest       | . He said other activities                       
##      protesting     | a system-wide policy that stipulates             
##       Protest       | Hundreds of parents and children                 
##       protest       | ! measures would be taken                        
##       protest       | the lack of crossing guards                      
##       protests      | and counterprotests led by blacks                
##   counterprotests   | led by blacks and Hasidic                        
##       protest       | demonstrations. The protests placed              
##       protests      | placed Mayor David N.                            
##       protest       | the Syrian Government's continued'               
##      protested      | formally to Secretary' General                   
##       protest       | to the State Department through                  
##      protested      | alleged incidents at the high                    
##       protest       | against, alleged police brutality                
##       protest       | in the park. Mr                                  
##      Protesters     | So loud were the jeers                           
##       Protest       | Destruction Of Dartmouth Shanties.               
##       Protest       | Destruction Of Dartmouth Shanties HANOVER        
##       protest       | the destruction of a shantytown                  
##       protest       | South Africa's racial policies.                  
##      protesters     | demanded the immediate suspension of             
##       Protests      | By The Associated Press Daniel                   
##      protesters     | had planned to block three                       
##      protesters     | were Joaded into a blue                          
##       protest       | plans for some 30 plants                         
##      protested      | that his cover would be                          
##       protest       | demonstration at Seattle! Community              
##       protest       | daily until their demand was                     
##       Protest       | Erupts at Tour's Last Stop                       
##       Protest       | Erupts at Tour's Last Stop                       
##      protesters     | , mostly Mexican-Americans, voiced               
##       Protest       | Reagan Plan WASHINGTON, April                    
##       protest       | of what they called Reagan                       
##       protest       | had been set by draft                            
##       PROTEST       | DISCHARGE OF SCHOC Special to                    
##       Protest       | Discharge of School's President Special          
##       protests      | is a suspicion that in                           
##      protester      | from igniting Old Giory at                       
##       protest       | what they called the"                            
##       protest       | advertisement spon-: sored by                    
##       protests      | surrounding| Father Berrigan's reassignment      
##       protest       | the disciplining of: clergy                      
##      protesters     | from a hastily called rival                      
##       Protest       | Rockwell Visit to Hofstra Special                
##       Protest       | Rockwell Visit to Hofstra Special                
##      protesting     | the scheduled| appearance on                     
##       PROTESTS      | :' APOLOGIZE, APOLOGIZE                          
##       PROTESTS      | ' Apologize, Apologize,                          
##      protested      | his proposed 5 per cent                          
##       PROTEST       | WA eee AR: MARCH                                 
##       PROTEST       | WAR March Outside U.N.                           
##       protest       | against the Vietnam war.                         
##       protest       | against the war, Although                        
##       protest       | Selective Service and the war                    
##       protest       | '" despairing" of                                
##       protest       | involved dor'sity, Boston University             
##       protests      | last month that helped oust                      
##      protesting     | segrega-' tion policies of                       
##       protests      | . Eleanor Smeal of the                           
##      protester      | , with rosary, demonstrating                     
##      protestors     | ' anger may drive the                            
##      protesters     | had a right to hold                              
##       protests      | for more than 20 years                           
##       protests      | in that city, said                               
##       Protest       | New York Times( 1923-Current                     
##       Protest       | WALTHAM, Mass.,                                  
##       protest       | the school's refusal to sell                     
##       protest       | and demonstrate all they want                    
##      protesting     | a Brandeis trustees' decision                    
##       protest       | ! protest in Homer.                              
##       protest       | in Homer. He and                                 
##       protest       | march said that one of                           
##       Protests      | were halted in sion in                           
##       protests      | reached a climax in January                      
##       protest       | group, Denominational Ministry Strategy          
##      protesting     | outside the center, but                          
##       Protests      | The protest campaign began in                    
##       protest       | campaign began in ear:                           
##       protests      | increased, about half of                         
##       protests      | ." T will be                                     
##       protest       | Macy's sale of! forcign-made                     
##      protesters     | , was a dramatic blow                            
##      protester      | outside his home suggested getting               
##       Protests      | New York Times( 1923-Current                     
##       Protests      | : ATLANTA, Aug.                                  
##      protesters     | today. Those arrested joined                     
##      protesting     | the imprisonment of a colleague                  
##       protests      | began. Many Refuse to                            
##      protesters     | have been released by disclosing                 
##      PROTESTERS     | STAGE PEACEFUL RALLY IN WASHINGTON               
##      PROTESTERS     | STAGE PEACEFUL RALLY IN WASHINGTON               
##      protesters     | called a" March Against                          
##      protested      | . The principa),                                 
##       protest       | and filed a court suit                           
##      protesting     | pare ents were upheld by                         
##      protested      | by 15 parents, representing                      
##      Protestant     | Episcopal Church's national ioffice said         
##       protest       | , at least not the                               
##      protesting     | United States in-| volvement                     
##       protest       | at the University of Iowa                        
##       protest       | at Columbia Uni versity against                  
##       protest       | , but it's on a                                  
##       protest       | would be 100 students.                           
##      protested      | the local public television station's            
##       protests      | attracted fewer than 100 students                
##       protest       | has disappeared entirely. A                      
##       protest       | rally at the University of                       
##      protesters     | ' make-' shift baricade                          
##      protesters     | ' barricades had been erected                    
##       protest       | coordinator and one of the                       
##      protesters     | reported that about a dozen                      
##      protesters     | massed outside the Conrad Hilton                 
##      protesters     | was halted by a solid                            
##      protesters     | , angered over the arrest                        
##       Protest       | And Face Suspension David Bird                   
##       Protest       | And Face Suspension lo protest                   
##       protest       | the planned closing of Power                     
##      protesters     | , the school will suspend                        
##      protesters     | cut classes to signal their                      
##       Protest       | Bias in Westchester Clubs By                     
##       protest       | what they said were discriminatory               
##       protest       | racial, religious and ethnic                     
##      protestors     | ." Reproduced with permission                    
##       PROTEST       | SEEKS AMNESTY FOR 12 AT                          
##       Protest       | Seeks Amnesty for, 12                            
##       protest       | ) disciplinary action begun after                
##      Protestors     | ," re-: mained                                   
##       protests      | in the mid-1960' s                               
##      Protesting     | Cuban boxers at Madison Square                   
##      Protesting     | concert of Cuban orchestra}                      
##       protest       | ,| tional debate,                                
##       protest       | " meeting over the suspension                    
##       protest       | " meeting of 300 black                           
##      protesting     | the death penalty Saturday outside               
##      Protesting     | Costs For the Democratic Convention              
##      Protesting     | Costs For the Democratic Convention              
##      protested      | to Democratic National Committee officials       
##      protested      | against what he termed"                          
##       protest       | over the slaughter of rabbits                    
##      protesting     | school policies. They were                       
##      protesting     | the retention of Superintendent of               
##      Protested      | in 3 Cities: The                                 
##      Protested      | in 3 Cities By DIRK                              
##       Protests      | in behalf of the homeless                        
##      protesters     | occupied one of the houses                       
##      protesting     | the fails prisoners: in                          
##       protests      | at both the: Cathedral                           
##       protest       | disrupted Sunday Mass. Priest                    
##       protests      | until he is reinstated,                          
##       protests      | end before any discussions take                  
##       protests      | . The Rev. Eddie                                 
##       protests      | , said that despite requests                     
##       protests      | would continue until the Bishop                  
##       protests      | stop and services resume before                  
##       protest       | against Long Island State Park                   
##       protest       | CORE Pickets at Jones Beach                      
##       protest       | would be announced next week                     
##       Protest       | Associated Press Times( 1923-Current             
##       Protest       | By The Associated Press Three                    
##       protests      | against Central Intelligence Agency recruiting   
##      protesters     | arrested yesterday, bringing to                  
##       protests      | , said Pauline Coker,                            
##      protesters     | contended the C.LA. was                          
##      protesters     | who tried to push through                        
##       PROTEST       | ON JERSEY BARBER: DREW                           
##       PROTEST       | ON JERSEY BARBER DrewStudents andChaplain        
##      protestors     | then dispersed. On the                           
##      Protested      | in Miami New York Times                          
##      Protested      | in Miami MIAMI, Jan                              
##      protested      | the deportation of a 20-year-old                 
##      protesting     | against the arrest of twenty-three               
##      protesting     | groups were! aware of                            
##       Protest       | Special to The New York                          
##       protest       | failure of the police to                         
##      protesting     | segregation. He has been                         
##       protests      | . Mr. Looby said                                 
##       protest       | march had come But,                              
##       Protest       | By JUDITH CUMMINGSSpecial to The                 
##       Protest       | By JUDITH CUMMINGS Special to                    
##       protest       | that has suddenly become more                    
##       protests      | in the days after the                            
##       protests      | have been over initial licensing                 
##      protesting     | the Playboy Channel. Viewers                     
##       protest       | may still have had an                            
##      protested      | : at J. High                                     
##       protest       | his' ruling Tonight?                             
##       protest       | demonstration by students last month             
##       protest       | was high considering it was                      
##       protest       | discrimination| New York chapters                
##      protesters     | from 40 states/ not                              
##      protesters     | thronged the New York Avenue                     
##   counter-protest   | by the Rev. Carl                                 
##       Protest       | : Campus Offices..                               
##       PROTEST       | : A guitar and 2                                 
##       Protest       | Campus Offices: Closes By                        
##       protest       | university cooperation with the Selective        
##       protest       | , which kept the-university                      
##       protests      | of the Free Speech Movement                      
##    protestors-at    | a meeting last' week                             
##      protesters     | were equipped with a public                      
##       protest       | discussions, some of the                         
##      protesters     | and of the Faculty Council                       
##       Protest       | Segjfegation,"" Atlanta                          
##       Protests      | Segrega| tion."                                  
##       protest       | segregation and we protest our                   
##       protest       | our segregated city,"                            
##      protesters     | did not have a permit                            
##       Protests      | Grow: U.S. BACKS                                 
##       Protests      | Grow By FRANCIS X.                               
##       protests      | against its South African Policies               
##       protest       | demonstrations continued outside the South       
##       Protests      | that began at the embassy                        
##      protesters     | were arrested in Washington today                
##      Protesters     | outside the embassy have charged                 
##      protesters     | gathered again at the embassy                    
##      protesters     | , then dropping charges.                         
##      protesters     | arrested today on charges of                     
##       protest       | outside the embassy has become                   
##       protest       | ." Mr. Crocker                                   
##      Protested      | SEADRIFT, Tex.,                                  
##       Protests      | , Deer Hunts Are Set                             
##       Protests      | , Deer Hunts Are Set                             
##       protests      | . They argue, that                               
##       Protest       | $ 300 Increase in Tuition                        
##       Protest       | $ 300 Increase in Tuition                        
##      protesting     | | a$ 300 tition                                  
##      protesters     | and with tenants of a                            
##       Protest       | Kilmer Center Closing By RICHARD                 
##       Protest       | Kilmer Center Closing By RICHARD                 
##      protesters     | who sat in the semicircle                        
##       Protest       | Vietnam In Rally at Goldwater                    
##       Protest       | Vietnam In Rally at Goldwater                    
##      protesting     | United States policy in Vietnam                  
##       Protest       | Off] Pending Citizen Review                      
##       protest       | public school textbooks ended today              
##       protest       | the school sie agreement to                      
##       protest       | march at the state]                              
##       protest       | }# leaders for an                                
##       protest       | of their own over|                               
##       Protest       | :< span..                                        
##       PROTEST       | ON COAST: Opponents of                           
##       Protest       | Special to The New York                          
##       protests      | against de facto| lems                           
##       Protest       | in Portland, Ore.                                
##       protest       | to keep it orderly.                              
##       protests      | and blockades at clinics that                    
##       Protests      | | New York Times(                                
##       Protests      | WICHITA, Kan.,                                   
##       protest       | here. Protesters knocked down                    
##      Protesters     | knocked down two barricades,                     
##      protesters     | ' ran toward the clinic                          
##      protesters     | from blocking entrances to the                   
##      protesters     | , who are under the                              
##      protesters     | were arrested, the Rev                           
##       protests      | . The marshal, Kent                              
##       protest       | leaders with failure to post                     
##      protesting     | the leading role of the                          
##       protests      | , hundreds of black,                             
##       protest       | in Austin, Tex.                                  
##       protest       | . Reproduced with permission of                  
##       protests      | , usually focused on a                           
##       protests      | , the coalition has argued                       
##       protests      | against plans by the Formosa                     
##       protests      | . The National Toxics Campaign                   
##      protesters     | contend that the proposed tower                  
##      protesters     | say the structural engineer for                  
##      protesting     | postponement of action on proposals              
##     Protestants     | from the northern and central                    
##      PROTESTED      | BY 800: STUDENT LEADERS                          
##      PROTESTED      | BY 800 Student Leaders Will                      
##       protest       | followed by a sit-in at                          
##       protest       | rally tonight and for a                          
##       protest       | , Jerry Bornstein and John                       
##      protestors     | fron the last decade.                            
##       Protest       | At Lincoln Memorial Special to                   
##       Protest       | At Lincoln Memorial Spectal to                   
##      protesters     | dropped plastic bags of blood                    
##      Protestant     | group for the separation of                      
##       Protest       | | JACKSON, Miss.                                 
##       protest       | hunger strikes at both jails                     
##       protest       | marches and heightening tensions here            
##       protests      | that erupted in 1974 and                         
##      protested      | the razing of the shanty                         
##      protesters     | ; also burned an American                        
##      protesting     | began to abate, police                           
##       Protest       | Reading' Huckleberry Finn'                       
##       Protest       | [ gave a distotted.                              
##      protested      | against the day. ook's                           
##       Protest       | City's Handling of AIDS Crisis                   
##      protester      | lay down in front of                             
##      protesters     | outside the windows of the                       
##       protests      | , the largest before yesterday                   
##      protesters     | sat in the street,                               
##      protesting     | " British imperialism in Ireland                 
##       protest       | . Most of the demParents                         
##       Protest       | New Site of Bank St                              
##       Protest       | New Site of Bank St                              
##      Protesters     | wearing T-shirts that said"                      
##      protesters     | . The hearing drew the                           
##      protesters     | but also from dissenting board                   
##      protesters     | . He said that he                                
##      Protesters     | for Soviet Jewry Urge Direct                     
##      Protesters     | for Soviet Jewry Urge Direct                     
##       protest       | leader." What we                                 
##      protesters     | were escorted by about 100                       
##       protest       | , organized by the Community                     
##       PROTESTS      | ANTI-RED RULINGS: 1,21 By                        
##       PROTESTS      | . ANT-RED RULINGS 4,200 Hear                     
##      protested      | tivo recent Supreme Court decisions              
##       PROTEST       | GATHERING: National Assembly for                 
##       Protests      | in... By                                         
##       Protests      | in Milwaukee By NATHANIEL SHEPPARD               
##      protesting     | the death and the way                            
##       protests      | mounted. In an interview                         
##      protesting     | the death last month of                          
##       protest       | " lack of Federal action                         
##       protest       | the lack of Federal action                       
##       Protest       | of a Death By The                                
##       Protest       | of a Death| By                                   
##      protesters     | blocked the front' jdoor                         
##       protest       | to use a side door                               
##      protesting     | the death of Juan Rodriguez                      
##       protests      | from par _ ents,                                 
##       protests      | by parents of disabled children                  
##       Protests      | by parents, groups that                          
##       protests      | by parents." And                                 
##       Protest       | , Pan$ 7 Ticket                                  
##       protest       | leaflets in front of the                         
##       Protest       | , Pan$ 7 Ticket                                  
##       protest       | the advent of$ 7                                 
##      protesters     | .'' It's a                                       
##       protest       | because it is in an                              
##      protesters     | dispersed, ticket buyers were                    
##       Protest       | By BRUCE LAMBERT New York                        
##       Protest       | By BRUCE LAMBERT Ina rare                        
##       protests      | by advocates of AIDS programs                    
##       protests      | , after Mr. Lisa                                 
##      PROTESTED      | HERE: STATE IS URGED                             
##    presiPROTESTED   | HERE tion Act. Gaining                           
##       Protest       | New York Times( 1923-Current                     
##       Protest       | ATLANTA, Aug. 17                                 
##       protests      | sponsored by the Student Nonviolent              
##       PROTESTS      | : 3 SCHOLARS HELD IN                             
##       PROTESTS      | 3 Scholars Held in Defacing                      
##       protests      | about tle arrest of three                        
##       Protest       | of Apartheid New York Times                      
##       Protest       | of Apartheid BERKELEY, Calif                     
##      protesters     | at the University of California                  
##       protest       | rally that attracted about 200                   
##       protests      | poured into television station WNTA-TV           
##      protesting     | that it was rude to                              
##      protested      | against spot announce: ments                     
##       protests      | began as soon as the                             
##      protesting     | in the first part of                             
##       protest       | Khrushchev's appearance| on your                 
##      protesting     | ." A spokesman said                              
##       protests      | took different coloring. Many                    
##      protested      | against the" bad taste                           
##       protests      | against the Radio Free Europe                    
##      protesters     | were killed by' highway                          
##      protesters     | ' pistols and rifles were                        
##       Protest       | to Wealthy School New York                       
##       Protest       | to Wealthy Sehssry HERSHEY,                      
##       protests      | | last week at Milton                            
##       Protest       | Over Suspension By LEONARD BUDER                 
##      protested      | strongly against a proposal that                 
##       protest       | against a request by the                         
##       protest       | . The move by the                                
##       protest       | the lack of a di-                                
##       protest       | that possibility.. Tomorrow                      
##      protesters     | , including Rabbi Meir Kahane                    
##       protest       | " if they march,                                 
##      protesting     | is that many innocent people                     
##       Protest       | on South Africa New York                         
##      protesters     | demonstrated at the White House                  
##       protests      | against South Africa's policies of               
##       Protest       | Day. The demonstrations included                 
##       protest       | ever against United States investment            
##       protests      | . Hundreds of protesters gathered                
##      protesters     | gathered at the CitiCorp Center                  
##      protesters     | had'"' picked                                    
##      Protesters     | around the country also circulated               
##      protesters     | gathered in front of the                         
##      protesters     | went to the South African                        
##      protesters     | that they were part of                           
##       protest       | the$ 400 million that                            
##       Protest       | on South Africa|~                                
##       protests      | were reported on campuses in                     
##      protesters     | staged a rally..                                 
##       protest       | against apartheid in South Africa                
##       protest       | meetings and motorcades. United                  
##      Protesters     | Arrested At Nuclear Power Plant                  
##      Protesters     | Arrested At Nuclear Power Plant                  
##       protests      | at the|$ 4.3                                     
##       protest       | anticipated approval by the Nuclear              
##       protests      | will continue indefinitely. Reproduced           
##       Protests      | The presence of the men                          
##       protest       | from Mr. Imperiale,                              
##       Protest       | Listing of Land for Nuclear                      
##       Protest       | Listing of Land for Nuclear                      
##      protesting     | the inclusion of their reservation               
##       protest       | the Federal Government's oeThe Departm           
##       Protest       | Proposal Restricting Cults: Protestants          
##     Protestants     | ,... By                                          
##       Protest       | Proposal Restricting Cults Protestants,          
##     Protestants     | , Catholics and Jews Assail                      
##      Protestant     | and Jewish leaders spoke out                     
##      Protestant     | Welfare Organizations, the New                   
##       Protest       | of Poor Are Seized Eating                        
##       Protest       | of Poor Are Seized|                              
##      protesters     | and appeared to accept their                     
##       Protest       | by Militants The convention was                  
##       Protest       | Here: SCHOOLS END TEST                           
##       Protest       | Here By MALCOLM W.                               
##       protest       | alleged racial digcrimination in housing         
##      protesting     | group, Rev. Layton                               
##      protesting     | organization has been trying to                  
##      protesters     | said morale was high after                       
##      protesters     | ' proposals but agreed to                        
##      protesters     | and Joseph A. Califano                           
##       protest       | leader,* Food is                                 
##       protests      | conducted around the country ended               
##       Protest       | Over Squatters: Four Officers                    
##       Protest       | Over Squatters Four Officers Are                 
##       protests      | over the eviction of about                       
##      protesters     | suffered minor injuries, officials               
##      protesters     | and the police and city                          
##      protesters     | built fires in nearby intersections              
##      protesters     | and police in riot gear                          
##      protesters     | left. Police cleared the                         
##      protesters     | who tried to stay.                               
##       protest       | were hurt, a spokesman                           
##       protest       | began shortly after noon,                        
##       protest       | homelessness, they said.                         
##      protesting     | the department's continued refusal to            
##      Protesters     | Are Arrested Near Boston.                        
##      Protesters     | Are Arrested Near Boston BEDFORD                 
##      protesting     | the Vietnam war were arrested                    
##      protesters     | outside Fort Chaffee's gate Where                
##      protesters     | , chanted slogans in Chinese                     
##       Protest       | New York Times( 1923-Current                     
##       Protest       | CLAREMONT, Calif.-                               
##      protested      | the incident. They circulated                    
##      Protesters     | ' Focus: Prices and                              
##      Protesters     | ' Focus: Prices and                              
##       protest       | movement set off across the                      
##       protest       | groups. May Affect Next                          
##      protesters     | have already selected a few                      
##       protest       | groups are writing handbooks of                  
##       protest       | groups, including independent farmers            
##       Protest       | in Washington Special to The                     
##       protests      | in Lafayette Park. All                           
##       Protest       | in Washington WASHINGTON, April                  
##       protest       | , said at a news                                 
##      protesters     | , a crowd of several                             
##       protest       | organizers and city and Federal                  
##       protest       | . A long-haired youth,                           
##       protest       | , was busy exhorting the                         
##       protest       | on a mass scale is                               
##       Protest       | By MICHAEL C. JENSEN                             
##       Protest       | By MICHAEL C. JENSEN                             
##      protesting     | high food prices invaded the                     
##      protested      | as. Mr. Grayson                                  
##      protesting     | for so long that many                            
##       Protest       | Draws 1,400 By RICHARD WITKIN                    
##      protesting     | his policy in Vietnam,                           
##      protested      | the raid. Four additional                        
##       protest       | against the arrest of 14                         
##      Protesters     | also damaged five police'                        
##      protesters     | were mostly youths who set                       
##       PROTEST       | ' New York Times(                                
##       PROTEST       | CAMBRIDGE, Mass.,                                
##      protested      | | today the designation of                       
##       protest       | were associated with Harvard as                  
##       Protest       | Special to The New Yerk                          
##       protest       | ' march of thousands here                        
##       protest       | movements among college faculties,               
##      protesting     | a temporary residence for homeless               
##       protest       | to the Most Rev.                                 
##       protest       | directly to Sister Ursala Marie                  
##       PROTEST       | : FORM A MOVE!                                   
##      Protesters     | in Milwaukee: Melee Erupts                       
##      Protesters     | in Milwaukee By DONALD JANSON                    
##      protesters     | guilty' of theft,                                
##      protesting     | spectators" if you can                           
##       protest       | songs. Singing Grows Louder                      
##      protester      | ! shouted as a girl                              
##       protest       | ' against the Vietnam war                        
##       protest       | in various ways,"                                
##       protest       | by violating valid laws.                         
##       Protest       | Housing Snerial to The New                       
##       protest       | the" ghetto" confinement                         
##       protest       | demonstrations pending the outcome of            
##       protest       | demonstrations at least until the                
##       protest       | at the City Hall.                                
##      Protestant     | and Roman Catholic faiths,                       
##      Protestant     | Parish in New York asked                         
##      Protestant     | Parish, New York.                                
##      Protestant     | Parish, New York;                                
##      Protestant     | Parish, New: York                                
##       protest       | march by 2,000 Negroes and                       
##       protests      | . Late tonight, Negro                            
##       protest       | march had been scheduled for                     
##      protesting     | proposed fare increases outside Hunter           
##       protest       | movement," he said                               
##       protest       | against a" get-tough"                            
##       protest       | this shameful manifestation" of                  
##       Protests      | at Bus Stations New York                         
##       Protests      | at Bus Stations DALLAS,                          
##       protests      | , which were organized by                        
##      protesters     | in wheelchairs and one blind                     
##       protest       | involving 25 people resulted in                  
##       Protest       | 7' New York Times                                
##       Protest       | | BUFFALO, April 18                              
##      protesting     | students| tore construction sheds                
##      protesting     | nuclear power.""                                 
##      protesters     | were recruited by a new                          
##       protests      | over construction of the Seabrook                
##       protests      | against the Seabrook plant as                    
##       Protest       | At Indian Point: 4,000                           
##      protesters     | climbed over and The New                         
##       Protest       | At Indian Point 4,000 at                         
##       protest       | at Consolidated Edison's Indian Point            
##      Protester      | Taken to Police Van One                          
##      protester      | at a police roadblock on                         
##       protest       | ," Joyce Hergenhan,                              
##      protesters     | rallied across the country to                    
##      protesters     | in Lower Alloways Creek,                         
##      protesters     | were arrested for similar civil                  
##       protest       | began at 1 P.M.                                  
##      protesters     | walked two miles through the                     
##      protesters     | remained in University Hall,                     
##       protest       | . Inside, students gathered                      
##       Protests      | within the Peace Corps against                   
##       protest       | and had promised to refer                        
##       protest       | about a housing program.                         
##       protest       | involving a housing program.                     
##       protest       | against the use of chemical                      
##       protest       | a pastoral letter denouncing abortion            
##       protest       | the war in Vietnam was                           
##       protests      | , demonstrations and lobbying campaigns          
##       protest       | after welfare benefits were ended                
##       protest       | against Admin-; istration policies               
##       protest       | herein at least a decade                         
##       protests      | later.'' President                               
##       protests      | were taken to the streets                        
##       protests      | , Miss Diaspend time lbbying                     
##      PROTESTERS     | KEPT FROM REAGAN VISIT:                          
##      protesters     | away from the Statehouse in                      
##       protest       | " against cuts, in                               
##       protest       | the proposed! lease of                           
##       PROTESTS      | VOWED- A.F.L.-C. 1.0                             
##       Protests      | Vowed- A.F.L.-C. 1.0                             
##       protests      | against job discrimination would he              
##       protests      | at construction sites, especially                
##       Protest       | Ending of Their Mass.                            
##       Protest       | Ending of Their Mass About                       
##      protesting     | a recent diocesan order that                     
##      protesting     | the fact that I am                               
##      Protesting     | Segregation of Negroes in South                  
##      protesting     | discrimination against Negroes in the            
##       protest       | .| A few girls                                   
##      Protestant     | Leaders Ask To Reply to                          
##      Protestant     | Leaders Ask' To Reply                            
##      Protestant     | denominations demanded time from CBS             
##      PROTESTED      | : SUBMARINE PLANT IS PICKETED                    
##      PROTESTED      | Submarine Plant Is Picketed by                   
##       protest       | is being staged by the                           
##      protested      | " Selma Friendship Day,                          
##      Protesters     | Win a Halt In Planned                            
##      Protesters     | Win a Halt In Planned                            
##      protesters     | vowed to stand between the                       
##      protesters     | and the hunters nor the                          
##      protesters     | and the police, and                              
##      protesters     | gathered Saturday on South Village               
##       Protest       | for Jobs for Negroes By                          
##       PROTEST       | FOR... istorical                                 
##       PROTEST       | BEGINS AT DINNER- FOOD                           
##       Protest       | Begins at Dinner- Food                           
##       protest       | against. conditions in the                       
##       protest       | remarks made about homosexuals by                
##       protest       | , the authorities said.                          
##      protesters     | , mourners and city officials                    
##       PROTEST       | U.S. ROLE IN AIDING                              
##       Protest       | U.S, Role in Aiding                              
##       protest       | against the| United States                       
##       protest       | lasted for an hour and                           
##      protesters     | have been arrested under a                       
##       PROTEST       | DOUBLE SESSIONS IN CHARLES SCHOOL                
##       Protest       | Double! Sessions in Charleston                   
##      protesting     | double sessions at an overcrowded                
##       Protests      | have disrupted classes at half                   
##       protest       | dismissals they say were based                   
##       protest       | over the removal of the                          
##      protesting     | the dismissal of the principals                  
##       Protest       | A Speech by Rusk In                              
##       Protest       | _A Speech by Rusk"                               
##      protesters     | . Campus unrest continued:                       
##      protesters     | presented arguments in court on                  
##      protesters     | ) have denied the college's                      
##       Protest       | group, Stop AIDS Now                             
##       protest       | was misdirected" The audience                    
##       protest       | the new decentralization' aw                     
##       Protest       | ..' New York                                     
##       Protest       | Forty adults and children yesterday              
##       Protest       | Ends ork Times( 1923-Current                     
##       Protest       | Ends Memphis, Nov.                               
##      protesters     | left the Administration and Science              
##      protesters     | that the environmental impact of                 
##      Protested      | Special to The New York                          
##      Protested      | | Speclal to The New                             
##      protesters     | standing on the courthouse steps                 
##       Protest       | , Not Poignancy, Marks                           
##       Protest       | , Not Poignancy, Marks                           
##      protesters     | content with ignant candlelight marches          
##       protests      | are likely to upstage the                        
##       protest       | group, who in different                          
##      Protesters     | , who had issues they                            
##      protesting     | here have AIDS and are                           
##      protesters     | from the entrance to the                         
##      protesters     | would be cited and released                      
##      Protesting     | parents contend. the books                       
##      Protesters     | Harass Him on Chilean Economy                    
##      Protesters     | Harass Him on Chilean Economy                    
##       protests      | are the effort of an                             
##       protests      | , Dr, Friedman is                                
##       Protest       | ; Honeywell Bars Arms Ha                         
##       Protest       | ; Honeywell Bars Arms H                          
##       protest       | against the arrests. Bottles                     
##       protest       | demonstration yesterday cent white and           
##      protesters     | who broke school rules by                        
##      protested      | the decision as harmful to                       
##       protest       | an administration plan to end                    
##      protesters     | filled the lobby and the                         
##       protest       | generated wide student support,                  
##      protesters     | left to attend classes.                          
##       protest       | . The hunger strike by                           
##      Protested      | By Maintenance Workers ge Discharge              
##      Protested      | ' By Maintenance Workers About                   
##       protest       | the discharge of eight employes                  
##      protesting     | before the bars and memorabilia                  
##      protester      | against what he perceived as                     
##       protest       | requirements that they use turtle-protecting     
##       protest       | ended about 5 P.M.                               
##       protests      | last spring against South Africa's               
##       protests      | at Dartmouth College in Hanover                  
##       protest       | the school's inaction, only                      
##       protest       | a decision by the school's                       
##       Protest       | at Medical School A group                        
##       protests      | until their schools accept a                     
##       protest       | and has embarrassed university administrators    
##       protest       | petition and the names of                        
##       protest       | by 165: convicts who                             
##       protest       | , which began after the                          
##       protest       | . He said the others                             
##      protesting     | convicts ranged in age from                      
##       protests      | here over efforts to lead                        
##      protesting     | groups in a West Jordan                          
##       Protest       | Is Latest in String of                           
##       Protest       | Is Latest in String of                           
##       protest       | of work rules, Mayor                             
##      protesting     | policemen stayed until a spokesman               
##       protest       | a lack of pay increases                          
##       protest       | , hanging banners in front                       
##      Protesters     | tried to get enough students                     
##      protesters     | was to drive all the                             
##       protests      | ." The ultimate aim                              
##      protesters     | was to drive all the                             
##      Protesting     | Diesel Oil Prices, Blockade                      
##      Protesting     | Diesel Oil Prices, Blockade                      
##       protest       | against rising fuel prices and                   
##      protesters     | and quelled the disturbance.                     
##       protest       | fish-ins on the Nisqually River                  
##       protests      | on the Puyallup River to                         
##       protest       | , and the idea has                               
##       protest       | against the slaying| of                          
##       Protest       | U.S-Role in Vietnam New                          
##      ToProtest      | U.S. Rolein Vietnam Special                      
##       protest       | United States policy in Vietnam                  
##       protest       | overcrowded conditions.< A                       
##       protest       | was led by a group                               
##       protest       | , to reiterate his desire                        
##       protest       | Cuba's exclusion from the meeting                
##       PROTEST       | ON SCHAEFEI By ROBERT McG                        
##       Protest       | on| Schaefer Plant Hiring                        
##       protest       | .| Mr. Hoffman                                   
##       PROTEST       | ' New York Times(                                
##       PROTEST       | LITTLE ROCK, Ark.                                
##      PROTESTERS     | By MARJORIE HUNTER Special to                    
##      Protesters     | Lobby in Capital for Cutoff                      
##       protests      | against the war in Southeast                     
##       protests      | . Most campuses were relatively                  
##       protest       | rally that attracted between 60,000              
##      protesters     | believe that massive rallies must                
##       protest       | against being barred from holding                
##       protest       | of, the exhibition for                           
##       protest       | because they felt they were                      
##      Protesters     | Arrested At Texas Nuclear Plant                  
##      protesters     | were arrested today after they                   
##       protest       | of the year. Forty-eight                         
##       protest       | the beat- struck on the                          
##       protest       | 1973 Supreme Court decision allowing             
##       PROTEST       | : ANTIWAR ARMBANDS IN SCHOOL                     
##       PROTEST       | Antiwar Armbands in School Bring                 
##      protesting     | segregation by two restaurants.                  
##       Protest       | Mistrial in Racial Slaying NATCHEZ               
##       protest       | a mistrial declared earlier in                   
##       protest       | segregation at the store's lunch                 
##       protest       | , by high school students                        
##       protest       | the tranfer of. Court                            
##       PROTEST       | FOR TEACHER WHO WAS DENIE                        
##       Protest       | for Teacher Who Was Denied                       
##       Protest       | was led by the Rev                               
##      protesting     | '' sadistic guards,                              
##      protesting     | what they said was the                           
##       protest       | , said Mr. Imen                                  
##       protest       | the executions' in a                             
##      protesting     | '' the massacre of                               
##       Protest       | in Washington Ends With 1                        
##       Protest       | in Washington Ends With 112                      
##      protesters     | , pre-| dominantly white                         
##      protesters     | . About 50 demonstrators ran                     
##       protest       | the conviction of five of                        
##       Protest       | as St. Louis Busing                              
##       Protest       | as St. Louis Busing                              
##       protest       | . The plan would put                             
##       protest       | ." Take our spirit                               
##      protested      | the ar:' nplete.reign                            
##       Protest       | Activities of Neo-Nazis Special to               
##       Protest       | Activities of Neo-Nazis| Special                 
##       protest       | the growing presence and violence                
##       PROTEST       | Nev York Times( 1923-Current                     
##       PROTEST       | NEWFANE, Vt, July                                
##       protest       | his visit here. The                              
##      protesting     | the winter vacation marched yesterday            
##       Protest       | Shifts Focus' To Re-Election                     
##       protest       | leader, member of the                            
##       protest       | the dismissal of 31 teachers                     
##      Protested      | No incidents were reported although              
##      PROTESTING     | TEACHERS' OUSTER: Pickets                        
##       Protest       | Mob Rioting by Students.                         
##       PROTEST       | CUTS IN SCHOOL SETUP:                            
##       PROTEST       | CUTS| IN SCHOOL SETUP                            
##      protesting     | obligatory service in the American               
##      protesting     | that too. He's going                             
##      protesting     | ."" I saw                                        
##      protesting     | the de'cision marched past the                   
##       Protest       | Blockade. New York Times                         
##       Protest       | Blockade ALAMEDA, Calif.                         
##       protest       | . The aircraft carrier,                          
##       protest       | fleet included several launches and              
##       protest       | meet. iow in the                                 
##       PROTEST       | : BUT UNIVER By WAYNE                            
##       PROTEST       | But University Refuses to Cancel                 
##      protested      | outside the university's administration building 
##       protest       | vowed to continue to picket                      
##      protested      | ," Mr. Fields                                    
##      protesting     | scheduled Davis Cup tennis matches               
##       Protest       | Poland's Curb on Intellectuals Special           
##       Protest       | Poland'sCurbon Intellectuals| Special to         
##       protest       | to the Polish-Government against                 
##       protest       | , the first of several                           
##      protested      | a lack of freedom in                             
##      protested      | to Poland, where the                             
##       protests      | that led to an upheaval                          
##       protest       | demonstrations aimed at winning broader          
##      Protesters     | Seize Dormitory New York Times                   
##      Protesters     | Seize Dormitory AMHERST, Mass                    
##       protest       | what they said was a                             
##       protest       | comes only days after more                       
##      protesters     | , Penny Premdas of New                           
##       protest       | but had not been given                           
##      Protested      | By ARNOLD H. LUBASCH                             
##      Protested      | By ARNOLD H. LUBASCH                             
##    Protestantism    | , Roman Catholicism and Judaism                  
##      Protestant     | denominations, the Rev.                          
##      Protestant     | , denominations begin a daily                    
##       protest       | the dismissal of John F                          
##       protest       | . City policemen, who                            
##      protesting     | group after Mr. Hatchett                         
##      protesters     | Reproduced with permission of the                
##       protest       | , which drew about 200                           
##      protesters     | began their| march from                          
##       Protests      | by Blacks DENVER, March                          
##      protesting     | the name calling incident,                       
##       protest       | march but) wound up                              
##       protest       | march by black students the                      
##       PROTEST       | EJECTION BY FIRE: WEST                           
##       PROTEST       | EJECTION BY FIRE West Side                       
##       Protest       | Is Settled By J.                                 
##       Protest       | Is Settled By 3.                                 
##      Protested      | by 25 New York Times                             
##      Protested      | by 25] tacked him                                
##      protesting     | what they claimed policy slip                    
##      protesting     | the shooting of Luis Rodriguez                   
##       protest       | . Mr. Britt said                                 
##       Protest       | Elimination of 9 Crossing Guards                 
##       Protest       | Elimination of 9 Crossing Guards                 
##       protest       | the elimination of nine school                   
##      protesters     | , most of them children                          
##       protest       | provided an opportunity to enjoy                 
##       protest       | against removal of school crossing               
##       protest       | , They had refused'                              
##       PROTESTS      | TO MCN few York Times                            
##       Protests      | to McNamara on Vietnam|                          
##       protest       | United States policies in Vietnam                
##      Protestant     | , Roman Catholic and Jewish                      
##      protesters     | have gone on a hunger                            
##      protesters     | and their supporters are demanding               
##       Protest       | Transcends War: Main Issue                       
##       Protest       | Transcends War By PAUL HOFMANN                   
##      protest.by     | a comparagas Flatbush ion yester-                
##      protesting     | the draft or the war                             
##       protest       | ganizers. DuBois influence was                   
##       protest       | on Thursday, said the                            
##       protest       | ' was an hoc-affair of                           
##       protests      | , at' Columbik University                        
##       PROTESTS      | MOUNT New York Times(                            
##       Protest       | New York Times( 1923-Current                     
##       Protest       | ITHACA, N. Y                                     
##       protest       | today against the war in                         
##       protest       | the logging of redwood trees                     
##      protested      | that they had misin:                             
##       protest       | racial discrimination and was lawful             
##      Protesting     | Delays, Stay Out of                              
##      Protesting     | Delays, Stay Out of                              
##       protest       | against court delays and bail                    
##       protest       | began, Correction Commissioner Benjamin          
##       protest       | to continue indefi'nitely. He                    
##       protest       | involves all but 16 of                           
##       protest       | group of 90 Mississippi field                    
##       protest       | . But Chief Nelson Murdock                       
##       protest       | the law, the coalition                           
##      Protesters     | Block Bronx Intersection| Police                 
##      protested      | conditions, tried to articulate                  
##      Protesters     | of School Fund Cuts Tie                          
##      Protesters     | of School Fund Cuts|                             
##       protest       | threatened budget cuts for schools               
##      protesters     | dispersed. Some drivers shouted                  
##       Protest       | at Courthouse Some 500 elementary                
##       protest       | against budget cuts outside the                  
##       protest       | budget cuts affecting the university             
##       protest       | meetings have been held,                         
##       protest       | , members of another group                       
##       protest       | have denied any connection to                    
##       protest       | march in support of the                          
##      protesting     | Su'perintendent Willis's retention and support   
##       protests      | from Hispanic res: dents                         
##       protests      | over missile burning and tough                   
##       protests      | erupted in Colorade. Even                        
##       protests      | . Lieut. Col.                                    
##       protests      | and passage of new environmental                 
##       protests      | . At Los Alamos,                                 
##       protest       | the slow pace of their                           
##      protesters     | are among 244 refugees from                      
##       protest       | . Such incidents, however                        
##       Protest       | Unpaved Streets| The group                       
##       PROTEST       | ST. FRANCIS CLOSING New                          
##       PROTEST       | ST. FRANCIS CLOSING Employes                     
##       protest       | plans to close the hospital                      
##      Protested      | By Negro Women. New                              
##      Protested      | By Negro Women Speclal to                        
##       PROTESTS      | : 12 SEIZED IN.                                  
##       PROTESTS      | 12 Seized in Demonstration by                    
##       protests      | took, place in'                                  
##       protest       | at P.S. 119,                                     
##      protested      | the move, and as                                 
##      Protesters     | Sought' Special to The                           
##      protesting     | alleged, police mistreatment.                    
##      protesters     | ." There was no                                  
##       protests      | , complaining that the military                  
##      protesters     | favor the growing and use                        
##      protesters     | say they oppose drug use                         
##       protests      | after she reported running into                  
##       Protests      | Mar Candidates' Debate New                       
##       Protests      | Mar Candidates' Debate)                          
##       protests      | inside and outside the hall                      
##       protest       | split-day school schedules, It                   
##       protest       | there in two years.                              
##       Protests      | Resume ENFIELD, N.                               
##      protesting     | the Supreme Court's recent decision              
##      Protesters     | Arrested By The Associated Press                 
##      Protesters     | helping Dr. Benjamin Spozk                       
##      Protesters     | Arrested| By The Associated                      
##      protesters     | were arrested yesterday as they                  
##       protests      | in recent days. At                               
##      protesters     | blockaded the 13 principal gates                 
##      protesters     | threw a red liquid at                            
##       Protest       | Budget Cuts: Shies From                          
##       Protest       | Budget Cuts By RICHARD F                         
##       protest       | rally, single-minded in its                      
##       protest       | Apostolate here, and Sister                      
##       protest       | , was trans-@ member                             
##       protest       | over that Government's racial policies           
##       protests      | and arrests at the embassy                       
##      protesting     | South Africa's newly imposed state               
##       protests      | at the embassy since last                        
##       protest       | employment practices and election procedures     
##       protest       | the town's system of electing                    
##       protest       | march down Berlin's main street                  
##      protesters     | at a shopping mall.                              
##       protests      | at the South African Embassy                     
##       protest       | , knocked on its door                            
##       protest       | outside Governor Rockefeller's apartment near    
##       protest       | was directed against the Governor's              
##      protesters     | of the war in Vietnam                            
##       protest       | alleged discrimina-| tory hiring                 
##      Protesters     | Arrested at Abortion Clinic New                  
##      Protesters     | Arrested at Abortion Clinic Thirty-five          
##       protest       | outside an abortion clinic in                    
##      protesting     | abortion, blocking the clinic's                  
##       PROTEST       | HITS POVERTY CUTS: THOUSANDS                     
##       PROTEST       | HITS POVERTY CUTS Thousands From                 
##       protest       | a$ 3.6-million cutback in                        
##       protests      | against secular humanism; who                    
##       protest       | Mr. Pataki's spending cuts                       
##      protested      | in Albany, Mr.                                   
##      Protesting     | Gov. George E.                                   
##      Protested      | in 3 Cities: The                                 
##      Protested      | in 3 Cities By DIRK                              
##       Protests      | in behalf of the homeless                        
##      protesters     | occupied one of the houses                       
##       Protests      | By IRVING SPIEGEL Special to                     
##       protest       | and dissent| from the                            
##      Protestant     | Council, meanwhile, called                       
##       protest       | what they regarded as Mr                         
##      Protestant     | min jster and a member                           
##       protest       | until 9: 30 A.M                                  
##       Protest       | Forty-five Negroes attended desegregated public  
##       protest       | . The segregationists are not                    
##       protests      | , including tractor parades into                 
##       PROTEST       | AT DANBURY Special to The                        
##       PROTEST       | AT DANBURY Special to'                           
##       protest       | , at least not the                               
##      protesting     | United States in-| volvement                     
##       protest       | at the University of Iowa                        
##       protest       | at Columbia Uni versity against                  
##       protest       | , but it's on a                                  
##       protest       | would be 100 students.                           
##      protested      | the local public television station's            
##       protests      | attracted fewer than 100 students                
##       protest       | has disappeared entirely. A                      
##       protest       | rally at the University of                       
##       protest       | an integration plan by which                     
##       Protest       | in New Bedford' New                              
##       Protest       | in New Redford NEW BEDFORD                       
##       protest       | was reported pat Mobile's|                       
##       Protest       | Impending Ouster of Teacher York                 
##       Protest       | Impending Ouster of Teacher Spectal              
##       protest       | the impending/ Board of                          
##       Protest       | To Back Harrisburg Seven'                        
##       Protest       | .-: To Back                                      
##       protest       | the trial of the Rev                             
##       Protest       | Trial To Begin: Indian                           
##       Protest       | Trial To Begin By LENA                           
##      protesters     | who are to go on                                 
##      protesters     | called for a complete shutdown                   
##      protested      | " de facto" secret                               
##       protests      | have had on the village                          
##      protesters     | , many of whom remained                          
##      protesters     | had not identified themselves,                   
##      protesters     | who had maintained their silence                 
##      PROTESTERS     | BALK A HARVARD DEAN:                             
##      PROTESTERS     | BALK A HARVARD DEAN He                           
##      Protesters     | , including Manhattan Borough President          
##      protesters     | , led by Assemblyman Leonard                     
##       Protest       | New School Head By DAVID                         
##       Protest       | New School Head By DAVID                         
##      protesting     | outside the Lexington School for                 
##       protests      | are straining the tight ly                       
##       Protest       | at Gallaudet The students,                       
##       protest       | at Gallaudet University in 1988                  
##      protesters     | are demanding that 51 percent                    
##      protesters     | said many hearing administrators at              
##       protest       | .'' Lexington is                                 
##       Protests      | - Motels Next Target Ben                         
##       protest       | next against violence is our                     
##      protesting     | carefully in proper picket form                  
##       PROTEST       | BIAS RULING Special to The                       
##       PROTEST       | BIAS RULING Special to The                       
##       protest       | a state ruling against racial                    
##      protesters     | resumed their blockade this morning              
##       Protest       | New York Times( 1923-Current                     
##       Protest       | WICHITA, Kan.,                                   
##      protesters     | . More than 100 demonstrators                    
##       protest       | at the Wichita Family Planning                   
##       protest       | , the police said.                               
##       Protest       | in San Francisco Is Largest                      
##       Protests      | Because of AIDS Blocked due                      
##       Protest       | in San Francisco Is Largest                      
##       protest       | the Pope's conservative theology and             
##      protesters     | did not confront him directly                    
##      protesters     | '. Despite glorious weather                      
##      protesters     | . The patients who met                           
##       protests      | gathered for a 17-hour prayer                    
##       protests      | against the Pope planned iby                     
##      Protesters     | Line Up Among the groups                         
##      protesting     | papal policies were the National                 
##      protesting     | the Pope's recent audience with                  
##       Protest       | Is Held at Private Building                      
##       Protests      | continued at a public construction               
##       PROTEST       | New York Times( 1923-Current                     
##       PROTEST       | DURHAM, N. C                                     
##       Protest       | POLICE WARNING DEFIED Mixed Group                
##       protest       | live-in at the office of                         
##      protestors     | into his office. Some                            
##      Protesting     | the distances involved in court-ordered          
##       protest       | court-ordered busing.| Roberta                   
##       Protest       | on Sales Tax New York                            
##       Protest       | on Sales Tax' Almost                             
##       protest       | ' a onecent increase in                          
##       protest       | , which began at!                                
##       protest       | on the tax Reproduced with                       
##      Protesters     | , Breaking Up Meeting By                         
##       protest       | , Dr. Gallagher said                             
##       protests      | and went to class.                               
##      protesters     | . He recently submitted his                      
##      protesting     | the United States stand in                       
##      Protestors     | Denounce Verdict Meanwhile, black                
##       protest       | the admission to a New                           
##       protests      | led to a day of                                  
##       protests      | that have spread across the                      
##       protests      | in Washington Heights last week                  
##      protesters     | marched in the neighborhood.                     
##       protest       | the shooting of Jose Garcia                      
##       Protests      | Pennsylvania Klan Rally New York                 
##       Protests      | Pennsylvania Klan Rally UNIONTOWN,               
##    counterprotest   | that drew 490 people.                            
##    counterprotest   | Saturday, sponsored by the                       
##    counterprotest   | was at the Fayette County                        
##       Protest       | in Texas New York Times                          
##       Protest       | in Texas AUSTIN, Tex                             
##       protest       | the lack of services available                   
##       protest       | what is seen as men                              
##       protests      | increase, many men profess                       
##      protesting     | alleged police brutality. The                    
##      protesting     | students held Confederate battle flags           
##      Protesters     | Disrupt Job Recruiting: Berkeley                 
##      Protesters     | Disrupt Job Recruiting BERKELEY,                 
##       Protest       | organizers said the company makes                
##      Protesters     | calling themselves Students Against Intervention 
##      protesters     | ' accu Reproduced with permission                
##      protested      | outside the placement center,                    
##       protest       | was in response to the                           
##      protesters     | were careful not to cross                        
##      Protesters     | confronting a police officer Wednesday           
##       protests      | , said his nephew's death                        
##       Protest       | New York Times( 1923-Current                     
##       Protest       | SAN FRANCISCO, April 19                          
##       protest       | the discharge last week of                       
##      Protesters     | Burlesque Bronze Nudes at Museum                 
##      Protesters     | Burlesque Bronze Nudes at Museum                 
##      protesting     | alleged discrimination took part last            
##       PROTEST       | EXCLUSION OF NEGRO. Special                      
##       PROTEST       | EXCLUSION OF NEGRO' Spectal                      
##       protest       | boycott of the reception today                   
##       protest       | abortion laws. The march                         
##      Protesting     | Arrest.. New York                                
##      Protesting     | Arrest, TUSKEGEE, Ala                            
##       protest       | the arrest of Mr.                                
##       protest       | march was planned for tomorrow                   
##       protest       | alleged job discrimination against Negroes       
##       Protest       | Trims In Cuomo's Budget:                         
##       Protest       | Trims in Budget Plat By                          
##       Protest       | Trims In Cuomo's Budget By                       
##       Protest       | ' Trims in Budget Plan                           
##       Protest       | Boy's Death By JOHN C                            
##       Protest       | Boy's Death The New York                         
##       protest       | was precipitated by the death                    
##      protesting     | what they called United States                   
##       protest       | demonstrations in city streets last              
##       Protest       | Succeeds As Library Takeover Ends                
##       Protest       | by Students Proves Successful at                 
##       Protest       | Succeeds As Library Takeover Ends                
##       Protest       | Althpugh the elimination of the                  
##       protest       | demonstration during opening ceremonies of       
##      protested      | he gan when the police                           
##       Protest       | Crash By JASON DePARLE New                       
##       Protest       | Crash By JASON DePARLE A                         
##       protest       | the January crash of Avianca                     
##      Protesters     | stopped at the control tower                     
##      protesters     | voiced suspicions of air traffic                 
##       protest       | air traffic controllers' handling                
##      protesters     | said they believe controllers.                   
##       protest       | was organized by Colombianos Unidos              
##       protest       | discrimina tion against Colombians.              
##       protest       | , the first black professor                      
##       protest       | the small number of women                        
##       protest       | . The appointments committee makes               
##       Protest       | Fees By ARNOLD H.                                
##       protest       | their class fees and their                       
##       Protest       | The New York State Workmen's                     
##       protest       | over the fee schedule imposed                    
##       protest       | , contending that under the                      
##       protest       | the quality of care patients                     
##      protesting     | the conditions- unclean conditions               
##       Protest       | At Lincoln Memorial Special to                   
##       Protest       | At Lincoln Memorial Spectal to                   
##      protesters     | dropped plastic bags of blood                    
##       PROTEST       | ON SELMA: REEB IS                                
##       PROTEST       | ON SELMA Reeb Is Hailed                          
##      protesting     | the" denial of voting                            
##       protest       | , a group of students                            
##       Protest       | ' New York Times(                                
##       Protest       | BIRMINIGHAM, Ala.,                               
##       protest       | alleged voter registration discrimination.       
##       Protest       | At an Abortion Clinic 7                          
##      protesters     | at a medical clinic during                       
##       protest       | Saturday. The demonstration outside              
##      protesters     | chained themselves to the door                   
##       PROTEST       | : REBUFFED ON BID FOR                            
##       PROTEST       | Rebuffed on Bid for Inquiry                      
##      Protested      | At Rally in Philadelphia New                     
##      Protested      | At Rally in Philadelphia PHILADELPHIA            
##       protest       | against racial violence from"                    
##       protests      | last November in which several                   
##       protest       | as evidence of increased racism                  
##       Protest       | in Jersey: Removal of                            
##       Protest       | in Jersey By WILLIAM E                           
##       protest       | against rising property taxes that               
##      protesters     | claim at least partial credit                    
##      protesters     | in these matters. But                            
##      protesters     | have organized the Ridgewood Committee           
##       Protest       | The leader of the Ridgewood                      
##       protest       | is A. S,                                         
##       protest       | , 22 children on roller                          
##       protest       | drew 50; pickets,                                
##       Protest       | Construction Delay By BARBARA CAMPBELL           
##       Protest       | Construction Delay By BARBARA CAMPBELL           
##      protesting     | the delay in construction of                     
##      Protested      | . New York Times(                                
##      Protested      | |" The New Yor                                   
##       protest       | the exclusion of Negroes from                    
##       protest       | at the consulate was against                     
##      protesting     | the South African violence,                      
##       protest       | ," Senator Ruiz said                             
##      protesters     | were reassigned to shore stations                
##      protestors     | ' three principal complaints,                    
##      protesting     | sailors, accused the Navy                        
##      protesters     | held a Meeting on the                            
##       protest       | meetings aboard the ship.                        
##       protests      | against the presence here of                     
##       protest       | action, about 100 Albanian                       
##      protesting     | Albania's control of Northern|                   
##       Protest       | New York Times( 1923-Current                     
##       Protest       | WICHITA, Kan.,                                   
##      protesters     | on charges of criminal trespass                  
##      Protesters     | New York Times( 1923-Current                     
##      Protesters     | DALLAS, May 22(                                  
##       protest       | demonstrations for the Republican National       
##      protesters     | as the city plans to                             
##       protests      | as the city is committing                        
##       PROTEST       | New York Times( 1925-Coret                       
##       PROTEST       | GREENSBORO, N. C                                 
##       protest       | against discrimination.: The                     
##      protesting     | the policy of not being                          
##       protest       | groups for damages. The                          
##       protest       | and civil disobedience,"                         
##       protest       | and the free speech rights                       
##       protests      | ." When they picket                              
##       protest       | groups for damages gives the                     
##      protester      | was carried into a police                        
##       protest       | case that directly poses the                     
##     protest-free    | buffer zone at an.                               
##      Protestant     | and Jewish groups reject the                     
##       protests      | was held yesterday in mid-Manhattan              
##      protesting     | the American role in Vietnam                     
##      protesters     | had rescheduled their rally for                  
##      protesters     | lus-! tily booed mention                         
##       Protest       | on Coast Exposes Carter Political                
##       Protest       | on Coast Exposes Carter Political                
##       protest       | of the Administration's policies.                
##       protest       | group. Yet another protest                       
##       protest       | against Mr. Carter,                              
##       Protest       | Dinner. His group expects                        
##       protests      | centered primarily on what they                  
##      protesting     | that a ring leader in                            
##       Protests      | on Diverse Interests: 80                         
##       Protests      | on Diverse Interests. By                         
##       protest       | against involvement in the civil                 
##       protest       | groups that flourished in the                    
##       protests      | and those of the 1960                            
##      protesting     | the nuclear arms race and                        
##      Protestant     | bodies by demonstrations and picketing           
##    Protestantism    | was loudly labeled as"                           
##      Protestant     | and Eastern Orthodox bodies with                 
##       protest       | the Soviet Union's treatment of                  
##       PROTESTS      | .' New York Times                                
##       PROTESTS      | : TALLADEGA, Ala.                                
##      protesters     | , too. In contrast                               
##       Protest       | Alleged Police Beating of Rider                  
##       Protest       | Alleged Police Beating of Rider                  
##      protested      | what they say was a                              
##      protesters     | , shortly before 9 P.M                           
##      protesters     | said, a third transit                            
##      protesters     | and Mr. Sutton,                                  
##       protest       | group went to the district                       
##       Protest       | Wanes New York Times(                            
##       Protest       | wanes TUSCALOOSA, Ala.                           
##       protest       | that began with: a                               
##      protesting     | alleged poor food and service                    
##       protest       | . GNo transfer of prisoners                      
##      protesters     | were arrested in Washington today                
##      protesters     | were arrested in Washington:                     
##      protesters     | were removed. High Court                         
##      terprotest     | , forming a human chain                          
##    counterprotest   | , also declared their actions                    
##      Protested      | ' New York Times(                                
##      Protested      | WASHINGTON, July 9(                              
##       Protest       | Pressed On TV News:                              
##       Protest       | </ span><                                        
##       Protest       | Pressed On TV News By                            
##       protest       | letter was seen as a                             
##  permission.Protest | Pressed on TV News Continued                     
##       Protest       | Cancels Denver Parade..                          
##       Protest       | Cancels Denver Parade DENVER,                    
##       protests      | began, and classes were                          
##      protesting     | overcrowded conditions and alleged discriminatory
##       Protest       | Lilco's Rate Plan Special to                     
##       Protest       | Lilico's Rate Plan Special to                    
##       protest       | proposals that would raise electric              
##       protests      | in which 85 demonstrators were                   
##      protesters     | defied a court order allowing                    
##      protesting     | shipments of stockpiled steel,                   
##      protesters     | Thursday, but elsewhere,                         
##       protest       | appeared to have abated.                         
##      Protesters     | _ By FRANK J.                                    
##       protest       | seemed to have abated.                           
##      protested      | an 8 P.M.-to-5 A.M.                              
##       protest       | march of 2,000 students on                       
##      protesters     | had terrorized other stu-'                       
##       protest       | what they said was police                        
##       protest       | that continued earlv this morning                
##       protest       | overcrowded conditions after an automatic        
##       Protest       | Here Against Nuclear Testing.                    
##       Protest       | Here Against Nuclear Testing'                    
##       protest       | against the Soviet tests and                     
##       protest       | began with a conversation in                     
##       protest       | march was supposed to begin                      
##       protest       | the rising cost of middle-income                 
##       Protest       | of Boston Integration Plan:                      
##       Protest       | of Boston Integration Plan he                    
##      Protestant     | ° Sunday School lesson materials                 
##      Protestant     | leader said that even when                       
##      Protestant     | religious texts. The school's                    
##      protesting     | neo-nazism and_antiSemitism to the Consul-General
##       Protest       | on Casey Special to The                          
##      protesting     | Brown's acceptance of$ 50,000                    
##       protest       | .' If we meant                                   
##      protesters     | in their suit against the                        
##      protesters     | jumped onto the hoods of                         
##      protester      | and knocked him to the                           
##       Protests      | and Industry Praise:.                            
##       Protests      | and Industry Praise By THOMAS                    
##       Protests      | and Industry Praise Continued From               
##       protest       | county cuts in training programs                 
##       protest       | , to turn in his                                 
##      protested      | county cuts near the County                      
##      protesting     | new system of special welfare                    
##       Protest       | Barghoorn's Arrest' New York                     
##       Protest       | Barghoorn's Arrest NEW HAVEN,                    
##       protest       | the arrest of Prof.                              
##       Protest       | At H.E.W. Offi ice                               
##       Protest       | At H.E.W. Office WASHINGTON                      
##       protest       | today. Several hundred women                     
##       protest       | sign at en" We                                   
##       protest       | groups in years in New                           
##      protesters     | are a meld of mailmen                            
##       protest       | on the Fourth of July                            
##       protest       | .'' We're not                                    
##       protest       | : slogan:''                                      
##       protest       | group has argued isince 1982                     
##      protesting     | a two-month» stalemate'                          
##       protests      | since the Supreme Court declined                 
##       Protest       | Slaying of 13 in Londonderry                     
##       Protest       | Slaying of 13 in Londonderry                     
##      protesting     | the killing of 13 éivilians                      
##       protests      | had Reproduced with permission of                
##       protest       | " the unholy political alliance                  
##       protest       | . against the recent censure                     
##       Protest       | Over Housing- By DOUGLAS                         
##       PROTEST       | RENTING BIAS IN RYE New                          
##       PROTEST       | RENTING BIAS IN RYE Special                      
##       Protest       | At Air Force Base Near                           
##       Protest       | At Air Force Base Near                           
##      protesters     | yesterday for trespassing at Strategic           
##       protests      | nationwide marking the 38th annive               
##       protest       | jeered and yelled" Send                          
##      protesters     | was released after being fingerprinted           
##      protesters     | from Minneapolis poured blood on                 
##       protest       | spokesman said it was their                      
##       protest       | ers planned to keep a                            
##      protesters     | ." They are just                                 
##       protest       | against the deployment of cruise                 
##       protest       | march in the capital's history                   
##       protest       | , in 1971, drew                                  
##       protest       | , especially when members of                     
##       protest       | . It was not Clear                               
##      protestors     | , who filled the staircase                       
##       protests      | , Captain Agoglia partly mollified               
##      protestors     | , who met privately with                         
##       protest       | was Reproduced with permission of                
##       Protest       | Sit-In Held MEND had received                    
##       protest       | , ed a weekend sit-in                            
##       Protest       | in Brooklyn By MICHAEL KNIGHT                    
##       Protest       | in Brooklyn By MICHAEL KNIGHT                    
##       protest       | march through the Brownsville section            
##      protesters     | were part of, a                                  
##      protesters     | had attempted to. block                          
##      protesting     | ; what they described as                         
##       protest       | was sponsored by a coalition                     
##      Protesters     | Say Navy Boats Ran Over                          
##      Protesters     | Say Navy Boats Ran Over                          
##      protesters     | , Richard O'Barry, best                          
##      protesters     | contended that a 1,200-pound explosive           
##       protest       | on Friday. Mr.                                   
##       protest       | against the Navy explo-|                         
##       protests      | , too.                                           
##       protest       | at an F. W                                       
##       protest       | against Negro school conditions.                 
##       protest       | group on behalf of people                        
##       protest       | . Two freelance photographers made               
##       protests      | on Capitol Hill called to                        
##       protests      | , Mr. Snyder led                                 
##       protest       | and arrests had been coordinated                 
##       protest       | , Mr. Nichols said                               
##       Protest       | As Vote Is Canceled New                          
##       Protest       | As Vote Is Canceled CARNEGIE                     
##       protest       | . The merchants allege that                      
##       protest       | . the lower court's judgment                     
##       Protests      | Staged' It has organized                         
##       protest       | any tax increase, Mr                             
##       protest       | ! against the resumption of                      
##       Protests      | From Parents By GENE I                           
##       Protests      | From Parents By GENE I                           
##      protested      | their children having to attend                  
##      Protesters     | Arrested At Nucle: 5                             
##      Protesters     | Arrested At Nuclear Plant's Gates                
##       Protest       | coordinated by the Washington-based Nuclear      
##      protesters     | gathered across from the White                   
##      protesters     | turned out for a march                           
##       Protest       | New York Times( 19                               
##       Protest       | Jailing' InSoybean' Liberation                   
##       protest       | this weekend in an effort                        
##       protest       | since the killing of a                           
##      protesters     | walked about 10 abreast,                         
##      protesters     | shouted,' Animals!                               
##       protest       | was the fourth march staged                      
##       protest       | since the racial killing of                      
##      protesters     | marched through the heart of                     
##      protesters     | prepared to board four buses                     
##       Protest       | Jehovah's Witness Tower Plan:                    
##       Protest       | Jehovah's Witness Tower Plan By                  
##      Protested      | Continued From Page B1 or                        
##       Protest       | Damage to Artworks New York                      
##       Protest       | Damage to Artworks ITHACA,                       
##       protest       | began on Friday when an                          
##       protest       | , about 120 Hispanic students                    
##      protesters     | rushed toward the building's entrance            
##      protesters     | demanded to meet with Cornell's                  
##       protest       | leaders on Nov. 30                               
##      protesters     | rejected his offer, insisting                    
##       protest       | against the university's taking over             
##      protesters     | was limited, to the                              
##       Protests      | Against Riverside Research Institute Are         
##       Protests      | Agains By DOUGLAS C.                             
##       protest       | could hardly have surprised the                  
##       protests      | have increased. The demonstrators                
##      protester      | who had written to him                           
##     Protestants     | who frequently demonstrate at the                
##      protesters     | were monses, but the                             
##       protests      | at the Riverside Institute.                      
##      protesters     | as people who sought martyrdom                   
##      protesters     | , but gave up when                               
##      protesters     | were being unrealistic in calling                
##       protests      | .'' The problems                                 
##      protesters     | in particular, in which                          
##      protesters     | marched to the water,                            
##       protest       | , but attendance on a                            
##       protest       | - met separately and voted                       
##       protest       | over ithe war.|                                  
##      protesting     | students could apply to the                      
##       protests      | . They were in by                                
##       protests      | , was closed yesterday and                       
##       Protest       | . New York Times(                                
##       Protest       | MIAMI, May 23(                                   
##       protest       | Loday by Cuban refugees demanding                
##       protest       | and some children were kept                      
##       Protest       | Special to The New York                          
##       Protest       | Special to The New York                          
##       protest       | the transfer of their children                   
##       protest       | was: the only:incident.                          
##       Protest       | Pay COLUMBUS, Ohio,                              
##       protest       | their failure to win pay                         
##       Protest       | Grant From Marcos MEDFORD,                       
##       PROTEST       | DECISION: OPPOSE ADDITION OF                     
##       PROTEST       | DECISION Oppose Addition of Negroes              
##       protest       | a council decision to add                        
##      Protestant     | and East ern Orthodox denominations              
##       PROTEST       | ON' UNEQUAL' New                                 
##       Protest       | on' Unequal' Jobs                                
##       protest       | " unequal" job opportunities                     
##      protesting     | because five stores in the                       
##       protest       | said they would continue the                     
##       protest       | plans to close St.                               
##       protest       | was sponsored by a new                           
##       protest       | the fatal shooting of a                          
##       Protest       | New York Times( 1923-Current                     
##       Protest       | A group of 70 parents                            
##      PROTESTING     | PAROLE REGUL/ to The                             
##      Protesting     | Parole Regulations of Jersey iS                  
##       protest       | against what the inmates called                  
##       Protest       | : Marchers in Manhattan-                         
##       Protest       | Marchers in Manhattan- Boycott                   
##      protesting     | the racial attack in Howard                      
##       protest       | organizers and participants."                    
##      Protesters     | against racism marching down Fifth               
##       protests      | , and those black officials                      
##       protest       | and sympathized with it,                         
##      protesters     | ' frustration and concern about                  
##       protests      | in the wake of the                               
##      protesters     | away from Cen, tral                              
##       protest       | group,:' United                                  
##      protesters     | will eventually be able to                       
##     protest-ers     | , for beth national political                    
##       protest       | " érs on the 6                                   
##       Protest       | in the Park?'                                    
##       protest       | , and some believed that                         
##       protest       | , said that the city                             
##       protest       | ." I think the                                   
##       Protest       | Owl Decision' New York                           
##       Protest       | Ow! Decision ROSEBURG,                           
##       protest       | limits on Federal logging aimed                  
##       protest       | the recent killing of Negroes                    
##       Protests      | Elsewhere Other schoo] developments              
##       protest       | the Augusta and Jackson killings                 
##       protest       | against the deaths in the                        
##      Protesters     | In Berkeley and Arrest 41                        
##      Protesters     | In Berkeley and Arrest 41                        
##       Protests      | Slaying Of Principal in Georgia                  
##       Protests      | Slaying Of Principal in Georgia                  
##      protesting     | the killing of a white                           
##       protests      | from civil rights leaders,                       
##      Protesting     | that" the city seems                             
##      protested      | by Dr. Green and                                 
##       protest       | march on Thursday to the                         
##      Protesters     | Seized at White House Special                    
##      Protesters     | Seized at White House Special                    
##       protest       | against continued American bombing in            
##      protested      | the transfer of William H                        
##       Protest       | : Tax Revolt Could Affect                        
##       Protest       | Tax Revolt Could Affect Control                  
##       protest       | with no recourse in this                         
##       protest       | , met last week with                             
##      protest's      | sputtering out before voters can                 
##      protesters     | are circulating statewide, has                   
##       protest       | , John Budzash, a                                
##       protest       | group Hands Across New Jersey                    
##       protest       | , State Treasurer Douglas Berman                 
##      Protestant     | supremacy." I am                                 
##       Protest       | New York Times( 1923-Current                     
##       Protest       | NEW LONDON, Conn.                                
##      protesting     | nuclear weapons have been sentenced              
##      protester      | was sentenced Tuesday to a                       
##      protesters     | received sixmonth terms. The                     
##       Protests      | At Community Board's Meetings By                 
##       Protests      | At Community Board's Meetings By                 
##       protests      | at the board's monthly meetings                  
##       protests      | , which have resuited in                         
##      protesters     | - led by Ernest N                                
##       protests      | began early in 1990 as                           
##      protesters     | would be invited."                               
##       PROTESTS      | LIBRARY CLOSING: ACTORS AND                      
##       PROTESTS      | . LIBRARY CLOSING Actors and                     
##       Protest       | Is Staged The several hundred                    
##      protesting     | the curtailment of services at                   
##       protest       | was addressed particularly to the                
##       Protest       | Inside St. Patrick's:                            
##       Protest       | Inside St. Patrick's By                          
##       Protest       | ful negotiations to end the                      
##       protest       | the presence of the homeless                     
##      protesters     | ? No women testified before                      
##       Protest       | at Williams College New York                     
##       Protest       | at Williams College WILLIAMSTOWN,                
##       protest       | the college's investments in companies           
##       Protest       | Damage to Artworks New York                      
##       Protest       | Damage to Artworks ITHACA,                       
##       protest       | began on Friday when an                          
##       protest       | , about 120 Hispanic students                    
##      protesters     | rushed toward the building's entrance            
##      protesters     | demanded to meet with Cornell's                  
##       protest       | leaders on Nov. 30                               
##      protesters     | rejected his offer, insisting                    
##       PROTEST       | : EXCLUSION OF 3 WOMEN                           
##       PROTEST       | Exclusion of 3 Women From                        
##       protest       | against the exclusion of three                   
##       Protest       | New York Times( 1923-Current                     
##       Protest       | LOS ANGELES, Oct.                                
##       protest       | AIDS drug policies. Many                         
##       protest       | outside the Federal Building in                  
##       protest       | was part of a nationwide                         
##      protestors     | .'' They've only                                 
##       Protests      | At Yale and Georgetown By                        
##       Protests      | At Yale and Georgetown By                        
##      protesting     | Yale University's investments in companies       
##       protest       | of South Africa's racial policies                
##      protested      | lately against what they contend                 
##       protest       | marches and demonstrations in'                   
##      protested      | a paper by an Australian                         
##       protest       | marches to demand a stop                         
##       protest       | is Ordered to Court Today                        
##       protest       | against the| and the                             
##       Protest       | New York Times( 1923-Current                     
##       Protest       | Seven people were removed from                   
##       protest       | against plans for a new                          
##      protestors     | , who oppose the possible                        
##      protestors     | and two patrolmen received mirtor                
##       Protests      | Slaying by Police Officer ical                   
##       Protests      | Slaying by Police Officer DETROIT                
##       protest       | against discrimination. Leaders of               
##       Protest       | Rights Stand' ATLANTA,                           
##      PROTESTERS     | ! THUNDER- ROCK!                                 
##      Protesters     | ' Thunder~~ Rockefeller                          
##      protesters     | did today, forcing the                           
##       protest       | when Governor Rockefeller of New                 
##      protesting     | the plight of Washington's homeless              
##       PROTEST       | E New York Times(                                
##       Protest       | by War Foes~ BOSTON                              
##      protesters     | . When the marshals arrived                      
##      protesters     | trying to block the path                         
##       PROTEST       | : EXPERIMENTAL PUPILS SEEK MORE                  
##       PROTEST       | Experimental Pupils Seek More Say                
##       protest       | yesterday on the lawn outside                    
##       protest       | was the answer."                                 
##       protest       | Southern lunch-counter segregalon. Reproduced    
##      protesting     | the school board's decision not                  
##      protesters     | refused to abide by an                           
##       protest       | resulting from a pay dispute                     
##       Protest       | Increases in Bridge Tolls New                    
##       Protest       | Increases in Bridge Tolls The                    
##       PROTESTS      | HELD IN TWO BOROUGHS,                            
##       PROTESTS      | HELD IN TWO BOROUGHS Antiwar                     
##       protest       | the continuation of the war                      
##       Protests      | on Salvador Are Staged Across                    
##      protesting     | U.S. involvement in El                           
##       Protests      | on Salvador Are Staged Across                    
##       protest       | the increasing United States military            
##      protesters     | drew parallels with the early                    
##       protest       | rally in May 1968.                               
##       protests      | against American involvement in the              
##       protests      | on such issues as American                       
##       Protest       | activities began Sunday at Ohio                  
##       protest       | activities began last Saturday.                  
##       protest       | activity before there has been                   
##       protests      | about Vietnam didn't begin until                 
##       protest       | against U.S. intervention in                     
##       Protest       | Layoffs New York Times(                          
##       Protest       | Layoffs MIDDLEBURY, Vt.                          
##       protest       | recent staff cuts and what                       
##      Protestant     | denominations. Many of those                     
##       protest       | the Board of Education's action                  
##       protests      | against Soviet domination of the                 
##      protesters     | , many of whom had                               
##      protesters     | had been injured in the                          
##       Protest       | By C. GERALD FRASER                              
##       protest       | the university's" ties with                      
##       protest       | the arrest of the six                            
##       protest       | demonstrations last month resulted!              
##       protest       | demonstrations in Chester, Pa                    
##       protest       | demonStrations, had said upon                    
##       Protests      | Special to The New York                          
##       protest       | in which 26 persons were                         
##      protesters     | and their supporters. Now                        
##       protest       | aimed at getting more diesel                     
##      protesting     | truckers to prevent other drivers                
##       Protest       | Sought National leaders of the                   
##       protest       | action to spread, to                             
##       protest       | against the high cost of                         
##       protest       | by 14 black members of                           
##       protest       | , but not on the                                 
##       Protest       | Stirs Strong Reaction Among Alamni               
##       protests      | that usually end in arrests                      
##      Protesters     | Call for More Help For                           
##      Protesters     | Call for More Help For                           
##      PROTESTED      | : Some of about 250                              
##       protest       | the Soviet PIR The New                           
##       Protests      | were held around the world                       
##       Protest       | Bar On Some Folksingers by                       
##       Protest       | Bar American Broadcasting Com pany's             
##       protest       | ' particularly the demonstration tonight         
##      Protestant     | ministers. the Net leys                          
##       protest       | the limitation of membership for                 
##       protest       | against the church's policy,                     
##       PROTEST       | HAUL LITTER 1 New York                           
##       Protest       | Haul, eration was staged                         
##       protest       | police brutality and demand the                  
##      Protestant     | denomination in the state,                       
##       Protest       | Killing: Killing Ruled.                          
##       Protest       | Killing By HOWELL RAINES Special                 
##       protest       | Mayor David Vann's refusal to                    
##       protest       | here since the 1963 demonstrations               
##      protesters     | on the street outside City                       
##       protest       | strategies, and he questioned                    
##      Protesters     | Rally in New York Long                           
##       protesti      | the U.S. invasion of                             
##      protesting     | the American involvement. Reproduced             
##       Protest       | Plan To Raze 19th St                             
##       Protest       | Plan To Raze 19th St                             
##       protest       | the' hospital's plan to                          
##       PROTEST       | BUSING PLAN| PROVIDENCE,                         
##       protest       | ' against the city's school                      
##      protesters     | ." he copyright owner                            
##       Protests      | Grow on pg. 8                                    
##       Protests      | Grow on Nazis' Rally                             
##       Protests      | continued to mount neva yesterday                
##      protesting     | the issuance of a permit                         
##       protests      | to the Mayor and other                           
##       protest       | as a chance for an                               
##       PROTEST       | IN CHICAGO: Crowd protesting                     
##      protesting     | segregation in Chicago public schools            
##      protesting     | condi Reproduced with permission of              
##       PROTEST       | ON DAVIS New York Times                          
##       PROTEST       | ON DAVIS Students at Queens                      
##      protested      | yesterday the cancellation of a                  
##     The.protest     | took the form of 2                               
##       protest       | meeting in a classroom.                          
##       Protests      | : 10% Jump Sought                                
##       Protests      | 10% Jump Sought to                               
##      protested      | Con Edison's decision to pass                    
##       protests      | were filed with the P.S.C                        
##      protesters     | , who. include both                              
##       protest       | over the dismissal. of                           
##     protesting-     | racial segregation in Maryland restaurants       
##      protesters     | there: But all the                               
##      protesters     | ' demand that the cows                           
##      protesters     | call their" ragged gray                          
##      Protesters     | at Gouverneur Free 5 of                          
##      Protesters     | at Gouverneur Free 5 of                          
##       protest       | against the hospital cutback.                    
##      protesters     | boycotted the hearing. Several                   
##       Protest       | Special to The New York                          
##       Protest       | Special to The New York                          
##      protested      | racial discrimination in housing.                
##      protested      | by the volunteers: a                             
##       protest       | the requirement that they must                   
##       Protest       | Speci York Times' k                              
##       Protest       | } Special to The New                             
##       protest       | on South African racial separatism               
##       protest       | that" disrupts or materially                     
##       protests      | for the rest of the                              
##       protests      | against South African racism and                 
##      protesters     | .' The New York                                  
##       Protests      | Harry Darbee, an angler                          
##       Protests      | in Elizabeth Special to The                      
##       protest       | against alleged fob discrimination,              
##       protest       | yesterday caught the faculty,                    
##      protesters     | ,' then returning to                             
##       protest       | . They said that the                             
##      protesters     | . The demonstration was unexpected               
##      Protesters     | had hoped...                                     
##      protesters     | prayed last week outside the                     
##       protests      | froze the city of Wichita                        
##      Protesters     | had hoped convention week would                  
##       protests      | as a backdrop to the                             
##       protests      | outside clinics had returned to                  
##      protesters     | last month to hold a                             
##      protesters     | showed up to be shouted                          
##       protests      | at the clinics and a                             
##      protesters     | from interfering with clinics.                   
##       protest       | at the clinics. But                              
##      protesters     | over a network of 72                             
##       protests      | so furious that they have                        
##       protests      | that have forced some to                         
##      protesters     | maintain that they do not                        
##       protest       | noise, sanitation problems,                      
##       protests      | and the proposed legislation as

Tokenize texts: To simply tokenize a text, quanteda provides a powerful command called tokens(). This produces an intermediate object, consisting of a list of tokens in the form of character vectors, where each element of the list corresponds to an input document.

tokens(texts(doca_nyt_corpus)[2],remove_numbers = TRUE, remove_punct = TRUE, remove_separators = TRUE)
## Tokens consisting of 1 document.
## text2 :
##  [1] "Homosexuals"  "at"           "Harvard"      "Protesting"   "Navy"        
##  [6] "Hiring"       "New"          "York"         "Times"        "1923-Current"
## [11] "file"         "Mar"         
## [ ... and 178 more ]

Constructing a document-feature matrix

Tokenizing texts is an intermediate option, and most users will want to skip straight to constructing a document-feature matrix. For this, we have a Swiss-army knife function, called dfm(), which performs tokenization and tabulates the extracted features into a matrix of documents by features. Unlike the conservative approach taken by tokens(), the dfm() function applies certain options by default, such as tolower() – a separate function for lower-casing texts – and removes punctuation.

# make a dfm
my_dfm <- dfm(doca_nyt_corpus, remove = stopwords("english"), stem = TRUE, remove_punct = TRUE)
my_dfm[, 1:5]
## Document-feature matrix of: 2,000 documents, 5 features (80.8% sparse) and 2 docvars.
##        features
## docs    dinkin lead call stop street
##   text1      8    3    8    6     10
##   text2      0    0    0    0      0
##   text3      0    0    0    0      0
##   text4      0    0    3    0      0
##   text5      0    1    0    1      6
##   text6      0    0    2    0      2
## [ reached max_ndoc ... 1,994 more documents ]

Viewing the document-feature matrix: The dfm can be inspected in the Enviroment pane in RStudio, or by calling R’s View function. Calling plot on a dfm will display a wordcloud.

topfeatures(my_dfm, 20)  # 20 top words
##      said       new         |      time      york        mr   permiss    school 
##     10883      8439      6963      6711      6660      5553      4398      3716 
##   student     state      citi     group     polic     black   without   protest 
##      3523      3372      2978      2916      2836      2728      2674      2620 
##       one copyright     owner      year 
##      2574      2485      2462      2407
set.seed(100)
textplot_wordcloud(my_dfm, min_count = 6, random_order = FALSE,
                   rotation = .25, 
                   colors = RColorBrewer::brewer.pal(8,"Dark2"))
## Warning: colors is deprecated; use color instead

> term similarities

sim <- textstat_simil(my_dfm, my_dfm[, c("protest", "demonst", "student")], 
                      method = "cosine", margin = "features")
lapply(as.list(sim), head, 10)
## $protest
##      permiss    reproduct     proquest     reproduc 1923-current     demonstr 
##    0.5171692    0.5134348    0.5124899    0.5110776    0.5059638    0.5029151 
##    copyright         york     prohibit      without 
##    0.5025317    0.4985626    0.4913091    0.4880232 
## 
## $demonst
##  sonspeci      fre2    spcech    ascend   disacre safeauard    nublic   cerruti 
## 0.4082483 0.4082483 0.4082483 0.4082483 0.4082483 0.4082483 0.4082483 0.4082483 
##  16-block  riotscar 
## 0.4082483 0.4082483 
## 
## $student
##    campus   univers    colleg   faculti     class    demand      dent administr 
## 0.7033191 0.6401076 0.5833331 0.4972651 0.4505656 0.4388754 0.3952023 0.3910930 
##   without  columbia 
## 0.3889639 0.3881382

THE END…