Implemented lossy and lossless MARC-8 encoding.
authorAdam Dickmeiss <adam@indexdata.dk>
Mon, 31 Mar 2008 21:12:25 +0000 (23:12 +0200)
committerAdam Dickmeiss <adam@indexdata.dk>
Mon, 31 Mar 2008 21:12:25 +0000 (23:12 +0200)
The lossy encoding is named marc8-lossy. The lossless encoding is named
marc8-lossless.

src/siconv.c
test/Makefile.am
test/marccol1.u8.2.lst
test/marccol5.u8.1.lst [new file with mode: 0644]
test/marccol5.u8.2.lst [new file with mode: 0644]
test/marccol5.u8.marc [new file with mode: 0644]
test/tsticonv.c
test/tstmarccol.sh

index 3a9c8e1..27b54ee 100644 (file)
@@ -35,6 +35,7 @@
 
 #include <yaz/xmalloc.h>
 #include <yaz/nmem.h>
+#include <yaz/snprintf.h>
 #include "iconv-p.h"
 
 typedef unsigned long yaz_conv_func_t(unsigned char *inp, size_t inbytesleft,
@@ -95,6 +96,7 @@ struct yaz_iconv_struct {
 
     unsigned write_marc8_second_half_char;
     unsigned long write_marc8_last;
+    int write_marc8_ncr;
     const char *write_marc8_lpage;
     const char *write_marc8_g0;
     const char *write_marc8_g1;
@@ -575,9 +577,6 @@ static size_t flush_combos(yaz_iconv_t cd,
                            char **outbuf, size_t *outbytesleft)
 {
     unsigned long y = cd->write_marc8_last;
-    unsigned char byte;
-    char out_buf[4];
-    size_t out_no = 0;
 
     if (!y)
         return 0;
@@ -591,25 +590,38 @@ static size_t flush_combos(yaz_iconv_t cd,
             return r;
     }
 
-    byte = (unsigned char )((y>>16) & 0xff);
-    if (byte)
-        out_buf[out_no++] = byte;
-    byte = (unsigned char)((y>>8) & 0xff);
-    if (byte)
-        out_buf[out_no++] = byte;
-    byte = (unsigned char )(y & 0xff);
-    if (byte)
-        out_buf[out_no++] = byte;
-
-    if (out_no + 2 >= *outbytesleft)
+    if (9 >= *outbytesleft)
     {
         cd->my_errno = YAZ_ICONV_E2BIG;
         return (size_t) (-1);
     }
+    if (cd->write_marc8_ncr)
+    {
+        yaz_snprintf(*outbuf, 9, "&#x%04x;", y);
+        (*outbytesleft) -= 8;
+        (*outbuf) += 8;
+    }
+    else
+    {
+        char out_buf[4];
+        size_t out_no = 0;
+        unsigned char byte;
+
+
+        byte = (unsigned char )((y>>16) & 0xff);
+        if (byte)
+            out_buf[out_no++] = byte;
+        byte = (unsigned char)((y>>8) & 0xff);
+        if (byte)
+            out_buf[out_no++] = byte;
+        byte = (unsigned char )(y & 0xff);
+        if (byte)
+            out_buf[out_no++] = byte;
+        memcpy(*outbuf, out_buf, out_no);
+        *outbuf += out_no;
+        (*outbytesleft) -= out_no;
+    }
 
-    memcpy(*outbuf, out_buf, out_no);
-    *outbuf += out_no;
-    (*outbytesleft) -= out_no;
     if (cd->write_marc8_second_half_char)
     {
         *(*outbuf)++ = cd->write_marc8_second_half_char;
@@ -617,6 +629,7 @@ static size_t flush_combos(yaz_iconv_t cd,
     }        
 
     cd->write_marc8_last = 0;
+    cd->write_marc8_ncr = 0;
     cd->write_marc8_lpage = 0;
     cd->write_marc8_second_half_char = 0;
     return 0;
@@ -674,14 +687,27 @@ static size_t yaz_write_marc8_page_chr(yaz_iconv_t cd,
 
 
 static size_t yaz_write_marc8_2(yaz_iconv_t cd, unsigned long x,
-                                char **outbuf, size_t *outbytesleft)
+                                char **outbuf, size_t *outbytesleft,
+                                int loss_mode)
 {
     int comb = 0;
+    int enable_ncr = 0;
     const char *page_chr = 0;
     unsigned long y = lookup_marc8(cd, x, &comb, &page_chr);
 
     if (!y)
-        return (size_t) (-1);
+    {
+        if (loss_mode == 0 || cd->my_errno != YAZ_ICONV_EILSEQ)
+            return (size_t) (-1);
+        page_chr = ESC "(B";
+        if (loss_mode == 1)
+            y = '|';
+        else
+        {
+            y = x; 
+            enable_ncr = 1;
+        }
+    }
 
     if (comb)
     {
@@ -713,6 +739,7 @@ static size_t yaz_write_marc8_2(yaz_iconv_t cd, unsigned long x,
 
         cd->write_marc8_last = y;
         cd->write_marc8_lpage = page_chr;
+        cd->write_marc8_ncr = enable_ncr;
     }
     return 0;
 }
@@ -727,8 +754,31 @@ static size_t yaz_flush_marc8(yaz_iconv_t cd,
     return yaz_write_marc8_page_chr(cd, outbuf, outbytesleft, ESC "(B");
 }
 
-static size_t yaz_write_marc8(yaz_iconv_t cd, unsigned long x,
-                              char **outbuf, size_t *outbytesleft)
+static size_t yaz_write_marc8_generic(yaz_iconv_t cd, unsigned long x,
+                                      char **outbuf, size_t *outbytesleft,
+                                      int loss_mode);
+
+static size_t yaz_write_marc8_normal(yaz_iconv_t cd, unsigned long x,
+                                     char **outbuf, size_t *outbytesleft)
+{
+    return yaz_write_marc8_generic(cd, x, outbuf, outbytesleft, 0);
+}
+
+static size_t yaz_write_marc8_lossy(yaz_iconv_t cd, unsigned long x,
+                                    char **outbuf, size_t *outbytesleft)
+{
+    return yaz_write_marc8_generic(cd, x, outbuf, outbytesleft, 1);
+}
+
+static size_t yaz_write_marc8_lossless(yaz_iconv_t cd, unsigned long x,
+                                    char **outbuf, size_t *outbytesleft)
+{
+    return yaz_write_marc8_generic(cd, x, outbuf, outbytesleft, 2);
+}
+
+static size_t yaz_write_marc8_generic(yaz_iconv_t cd, unsigned long x,
+                                      char **outbuf, size_t *outbytesleft,
+                                      int loss_mode)
 {
     int i;
     for (i = 0; latin1_comb[i].x1; i++)
@@ -743,11 +793,11 @@ static size_t yaz_write_marc8(yaz_iconv_t cd, unsigned long x,
             const char *lpage = cd->write_marc8_lpage;
 
             r = yaz_write_marc8_2(cd, latin1_comb[i].x1,
-                                  outbuf, outbytesleft);
+                                  outbuf, outbytesleft, loss_mode);
             if (r)
                 return r;
             r = yaz_write_marc8_2(cd, latin1_comb[i].x2,
-                                  outbuf, outbytesleft);
+                                  outbuf, outbytesleft, loss_mode);
             if (r && cd->my_errno == YAZ_ICONV_E2BIG)
             {
                 /* not enough room. reset output to original values */
@@ -759,7 +809,7 @@ static size_t yaz_write_marc8(yaz_iconv_t cd, unsigned long x,
             return r;
         }
     }
-    return yaz_write_marc8_2(cd, x, outbuf, outbytesleft);
+    return yaz_write_marc8_2(cd, x, outbuf, outbytesleft, loss_mode);
 }
 
 
@@ -846,12 +896,22 @@ yaz_iconv_t yaz_iconv_open (const char *tocode, const char *fromcode)
             cd->write_handle = yaz_write_UCS4LE;
         else if (!yaz_matchstr(tocode, "MARC8"))
         {
-            cd->write_handle = yaz_write_marc8;
+            cd->write_handle = yaz_write_marc8_normal;
             cd->flush_handle = yaz_flush_marc8;
         }
         else if (!yaz_matchstr(tocode, "MARC8s"))
         {
-            cd->write_handle = yaz_write_marc8;
+            cd->write_handle = yaz_write_marc8_normal;
+            cd->flush_handle = yaz_flush_marc8;
+        }
+        else if (!yaz_matchstr(tocode, "MARC8lossy"))
+        {
+            cd->write_handle = yaz_write_marc8_lossy;
+            cd->flush_handle = yaz_flush_marc8;
+        }
+        else if (!yaz_matchstr(tocode, "MARC8lossless"))
+        {
+            cd->write_handle = yaz_write_marc8_lossless;
             cd->flush_handle = yaz_flush_marc8;
         }
         else if (!yaz_matchstr(tocode, "advancegreek"))
@@ -939,6 +999,7 @@ size_t yaz_iconv(yaz_iconv_t cd, char **inbuf, size_t *inbytesleft,
         
         cd->write_marc8_second_half_char = 0;
         cd->write_marc8_last = 0;
+        cd->write_marc8_ncr = 0;
         cd->write_marc8_lpage = 0;
         cd->write_marc8_g0 = ESC "(B";
         cd->write_marc8_g1 = 0;
index c4d059a..9f5ed92 100644 (file)
@@ -26,6 +26,7 @@ EXTRA_DIST = tstodr.asn tstodrcodec.c tstodrcodec.h cqlsample \
  marccol2.u8.marc marccol2.u8.1.lst marccol2.u8.2.lst \
  marccol3.u8.marc marccol3.u8.1.lst marccol3.u8.2.lst \
  marccol4.u8.marc marccol4.u8.1.lst marccol4.u8.2.lst \
+ marccol5.u8.marc marccol5.u8.1.lst marccol5.u8.2.lst \
  tst_record_conv.xsl 
 
 YAZCOMP = ../util/yaz-asncomp
index 557fdef..ce20bf7 100644 (file)
 880 0  $6 260-04/$1 $a 合肥市 : $b 安徽 文艺 出版社 : $b 安徽省 新華 書店 发行, $c 1984.
 880  0 $6 440-05/$1 $a 青年 文学 丛书
 
-01502nam a2200301 a 4500
+01516nam a2200301 a 4500
 001    86117080 /ACN
 003 DLC
 005 19870219000000.0
 740 01 $a Shan Kan Ning Chʻing 4 sheng (chʻü) chʻiang ti chen mu lu.
 880 00 $6 245-01/$1 $a 陕甘宁青 四省(区) 强 地震 目录 : $b 公元[前] 1177年-公元 1982年 / $c 国家 地震局 兰州 地震 研究所.
 880    $6 250-02/$1 $a 第1版.
-880 0  $6 260-03/$1 $a 西安 : $b 陕西 学 技术 出版社 : $b 陕西省 新華 書店 叱行, $c 1985.
+880 0  $6 260-03/$1 $a 西安 : $b 陕西 &#x79f1;学 技术 出版社 : $b 陕西省 新華 書店 叱行, $c 1985.
 880 20 $6 710-04/$1 $a 国家 地震局 兰州 地震 研究所.
 
 01333cam a2200337 a 4500
diff --git a/test/marccol5.u8.1.lst b/test/marccol5.u8.1.lst
new file mode 100644 (file)
index 0000000..47a0501
--- /dev/null
@@ -0,0 +1,354 @@
+01385cam a2200301Ka 4500
+001 ocm57665435 
+003 OCoLC
+005 20080328102918.0
+008 050215s2004    ii       d    000 0 eng d
+040    $a ACN $c ACN $d OCLCQ $d IXA $d OCL
+020    $a 8176500623
+020    $a 9788176500623
+035    $a (OCoLC)57665435
+041 0  $a beneng
+092    $a 491.44321
+090    $a PK1687 $b .E65 2004
+049    $a LNNA
+245 00 $6 880-01 $a English-Bengali Bengali-English combined dictionary = $b Iṃrājī - Bāṃlā Bāṃlā - Iṃrājī samshukuta diksánarī / $c compiled by Debasis Adhikary.
+260    $a New Delhi : $b World of Learning : $b Distributed by Star Publications, $c 2004.
+300    $a 1518 p. ; $c 23 cm.
+500    $a "More than 90,000 total words from English to Bengali and Bengali to English."
+546    $a Bengali and English.
+650  0 $a English language $v Dictionaries $x Bengali.
+650  0 $a Bengali language $v Dictionaries $x English.
+700 1  $a Adhikary, Debasis.
+880 00 $6 245-01 $a English-Bengali Bengali-English combined dictionary = $b ইংরাজী - বাংলা বাংলা - ইংরাজী সংযুক্ত ডিক্শনরী / $c compiled by Debasis Adhikary.
+880 31 $6 246-00 $a ইংরাজী - বাংলা বাংলা - ইংরাজী সংযুক্ত ডিক্শনরী
+994    $a C0 $b LNN
+
+02873nam a22005053i 4500
+001 ocm86174229 
+003 OCoLC
+005 20080328102918.0
+008 070326s1977    ii       b    000 0 san d
+040    $a STF $c STF
+035    $a (OCoLC)86174229
+041 0  $a san $a hin
+050 04 $a PK511 $b 1977
+049    $a LNNA
+100 0  $6 880-01 $a Pāṇini.
+240 10 $a Aṣṭādhyāyī
+245 10 $6 880-02 $a Aṣṭādhyāyīsūtrapāṭhaḥ : $b Pāṇinīyaśikṣā-liṅgānuśāsanasahitaśca / $c Maharṣipāṇinipraṇītaḥ ; upoddhātalekhakaḥ Śrīnārāyaṇa Miśraḥ.
+246 15 $a Aṣṭādhyāyīsūtrapāṭha : $b with Pāṇinīyaśikṣā and Liṅgānuśāsana
+250    $6 880-03 $a 1. saṃskaraṇa.
+260    $6 880-04 $a Vārāṇasī ; $a Dillī : $b Caukhambhā Oriyanṭāliyā ; $a Vārāṇasī : $b anya prāptisthāna, Caukhambhā Viśvabhāratī, $c 1977.
+300    $a 100 p.
+440  0 $6 880-05 $a Gokuladāsa Saṃskr̥ta granthamālā ; $v 29
+546    $a In Sanskrit; introd. in Hindi.
+500    $a "Sampādakaḥ Śrīnārāyaṇa Miśraḥ"--Cover.
+500    $a Added title page in English.
+504    $a Includes bibliographical references.
+650  0 $a Sanskrit language $x Grammar.
+650  0 $a Sanskrit language $x Accents and accentuation.
+700 02 $6 880-06 $a Pāṇini. $t Pāṇinīyaśikṣā.
+700 02 $6 880-07 $a Pāṇini. $t Liṅgānuśāsana.
+700 1  $6 880-08 $a Miśra, Śrīnārāyaṇa.
+740 02 $6 880-09 $a Pāṇinīyaśikṣā.
+740 02 $6 880-10 $a Liṅgānuśāsana.
+880 0  $6 100-01 $a पाणिनी.
+880 10 $6 240-00 $a अष्टाध्यायी
+880 10 $6 245-02 $a अष्टाध्यायीसूत्रपाठः : $b पाणिणीयशिक्षा-लिङ्गानुशासनसहितश्र्च / $c महर्षिपाणिनिप्रणीतः ; उपोद्घातलेखकः श्रीनारायण मिश्रः.
+880    $6 250-03 $a 1. संस्करण.
+880    $6 260-04 $a वाराणसी ; $a दिल्ली : $b चौखम्भा ओरियन्टालिया ; $a वाराणसी : $b अन्य प्राप्तिस्थान, चौखम्भा विश्वभारती, $c 1977.
+880  0 $6 440-05 $a गोकुलदास संस्कृत ग्रन्थमाला ; $v 29
+880 02 $6 700-06 $a पाणिनी. $t पाणिणीयशिक्षा
+880 02 $6 700-07 $a पाणिनी. $t लिङ्गानुशासन.
+880 1  $6 700-08 $a मिश्र, श्रीनारायण.
+880 02 $6 740-09 $a पाणिणीयशिक्षा.
+880 02 $6 740-10 $a लिङ्गानुशासन.
+994    $a C0 $b LNN
+
+02242cam a2200433Ia 4500
+001 ocm44944167 
+003 OCoLC
+005 20080328102918.0
+008 000906s2000    ilua          000 0 tam d
+040    $a OCO $c OCO $d OCL $d OCLCQ $d TEF
+020    $a 0967621208 : $c $24.95
+020    $a 9780967621203
+035    $a (OCoLC)44944167
+041 1  $a tameng $h tam
+050  4 $a PL4758.9.T5 $b T5
+082 04 $a 894.811 $b T597t
+049    $a LNNA
+100 0  $a Tiruvaḷḷuvar.
+240 10 $6 880-01 $a Thirukku ral. $l Tamil & English
+245 10 $6 880-02 $a Thirukkural : $b Thamizh Marai = Tirukkural : the Holy Scripture / $c [by Tiruvalluvar ; English translation by P.S. Sundaram.].
+250    $a 1st ed.
+260    $a Woodridge, Ill. : $b International Tamil Language Foundation, $c c2000.
+300    $a 1813 p. : $b ill. (some col.) ; $c 20 cm.
+500    $a Tamil text, with English translation.
+500    $a "An edition of this translation was published by Penguin Books in 1991."
+500    $a Section 2 and section 3, English translation from Tamil by R. Natarajan.
+546    $a Text in Tamil and English.
+500    $a Non-Latin script record.
+600 00 $a Tiruvaḷḷuvar.
+650  0 $a Tamil literature $v Translations into English.
+650  0 $a Tamil language materials $x Bilingual.
+740 02 $a Handbook of Tamil culture and heritage.
+740 02 $a Tamils guide to future.
+880 10 $6 240-01 $a திரூக்கு றள். $l Tamil & English
+880 10 $6 245-02 $a திரூக்குறள் : $b தமிழ் மறை = Tirukkural : the Holy Scripture / $c [by Tiruvalluvar ; English translation by P.S. Sundaram.]
+880 0  $6 505-00 $a Section 1: திரூக்குறள் : Tirukkural -- Section 2: தறிழ்ப் பண்பாட்டூக் கையேடூ : The handbook of Tamil culture and heritage -- Section 3: தமிழின எதிர்கால வழிகாட்டி : Tamils guide to future.
+880 02 $6 740-00 $a தமிழ்ப் பண்பாட்டூக் கையேடூ : The handbook of Tamil culture and heritage.
+880 02 $6 740-00 $a தமிழின எதிர்கால வழிகாட்டி : Tamils guide to future.
+994    $a C0 $b LNN
+
+01025cam a2200301Ia 4500
+001 ocm62425106 
+003 OCoLC
+005 20080328102918.0
+008 051203s2002    th            000 f thaod
+040    $a TEF $c TEF $d LNQ $d OCL
+020    $a 9749204808
+020    $a 9789749204801
+035    $a (OCoLC)62425106
+090    $a PL4209.D837 $b P57 2002
+049    $a LNNA
+100 0  $6 880-01 $a Dūangtawan.
+245 10 $6 880-02 $a Phračhan sǣnkon / $c Dūangtawan.
+250    $6 880-03 $a Phim khrang thī 3.
+260    $6 880-04 $a Krung Thēp : $b Phimkham Samnakphim, $c 2545 [2002]
+300    $a 154 p. ; $c 21 cm.
+500    $a Novel.
+546    $a In Thai.
+655  7 $a Humorous fiction. $2 gsafd
+880 0  $6 100-01 $a ดวงตะวัน.
+880 10 $6 245-02 $a พระจันทร์แสนกล / $c ดวงตะวัน.
+880    $6 250-03 $a พิมพ์ครั้งที่ 3.
+880    $6 260-04 $a กรุงเทพฯ : $b พิมพ์คำ สานักพิมพ์, $c 2545.
+994    $a C0 $b LNN
+
+02684cam a2200409 a 4500
+001 14876782
+005 20071121181842.0
+008 990326s1997    ai a     b    001 0 armo 
+035    $a (Uk)006855813
+906    $a p $b cbc $c undeter $d u $e ncip $f 20 $g y-nonroman
+010    $a    99189840 
+040    $a DLC $b eng $c DLC $d DLC-R $d Uk
+043    $a a-ai--- $a a-tu---
+050 00 $a BX121 $b .S63 1997
+100 1  $6 880-01 $a Smbatyantsʿ, Artak, $c Episkopos, $d 1876-1937
+245 10 $6 880-02 $a Artak Episkopos Smbatyantsʿ (Taushetsʿi) : hogevor, grakan, patma-banasirakan gortsuneutʿyuně ev gndakaharutʿyuně, 1876-1937 tʿtʿ. / $c kazmetsʿ Sandro Behbudyan.
+260    $6 880-03 $a Erevan : $b "Anahit", $c 1997.
+300    $a 691 p. : $b ill. ; $c 27 cm.
+440  0 $6 880-04 $a Vaveragrer Hay Ekeghetsʿu patmutʿyan ; $v girkʿ 3
+500    $6 880-05 $a At head of title: Hayastani Hanrapetutʿyan Kaṛavarutʿyann aṛěntʿer. Arkhivayin Gortsi Varchʿutʿyun. Arvesti, Grakanutʿyan ev Mamuli Pʿastatʿghtʿeri Petakan Kentronakan Arkhiv.
+504    $a Includes bibliographical references and indexes.
+600 10 $6 880-06 $a Smbatyantsʿ, Artak, $c Episkopos, $d 1876-1937
+610 20 $6 880-07 $a Armenian Church $x History $v Sources.
+650  0 $a Armenians $z Turkey.
+651  0 $a Armenia $x History $y 1801-1900 $v Sources.
+651  0 $a Armenia $x History $y 1901- $v Sources.
+700 1  $6 880-08 $a Behbudyan, Sandro $q (Sandro Artashesi), $d 1934-
+852 41 $a British Library $b OC $j HEC.1994.a.294/3
+880 1  $6 100-01 / $a Սմբատյանց, Արտակ, $c Եբիսկոպոս, $d 1876-1937.
+880 10 $6 245-02 / $a Արտակ Եբիսկոպոս Սմբատյանց (Տաուշեցի) : հոգեվոր, գրական պատմա-բանասիրական գործունեությունը եվ գնդակահարությունը, 1876-1937 թթ. / $c կազմեց Սանդրո Բեհբության.
+880    $6 260-03 / $a Երեվան : $b «Անահիտ», $c 1997.
+880  0 $6 440-04 / $a Վավերագրեր Հայ Եկեղեցու պատմության ; $v գիրք 3
+880    $6 500-05 / $a Տիտղոսի գլուխ: Հայաստանի Հանրապետության Կառավարության առընթեր. Արխիվային Գործի Վարչություն. Արվեստի, Գրականության եվ Մամուլի Բաստաթղթերի Պետական Կենտրոնական Արխիվ.
+880 10 $6 600-06 / $a Սմբատյանց, Արտակ, $c Եբիսկոպոս, $d 1876-1937.
+880 20 $6 610-07 / $a Հայաստանեայց Ս. Եկեղեցի $x Պատմութիւն $v Աղբիւրներ.
+880 1  $6 700-08 / $a Բեհբության, Սանդրո, $q (Սանդրո Արտաշեսի), $d 1934-
+985    $a armenian LC
+
+01466 am a2200349 a 4500
+001 14876783
+005 20071121181846.0
+008 040502m19461951sy ac         000 0 arm  
+035    $a (Uk)006881105
+906    $a p $b cbc $c undeter $d u $e ncip $f 20 $g y-nonroman
+010    $a   2003207810
+035    $a (OCoLC)ocm51506679
+040    $a DLC $b eng $c DLC $d OCoLC $d Uk
+043    $a a-sy---
+050 00 $a BV4539.A75 $b M36
+245 00 $6 880-01 $a Mananay : $b taregrkʿoyk.
+260    $6 880-02 $a Halēp : $b Hratarakutʿiwn Hogewor Eghbarutʿean Eritasardatsʿ, $c 1946-1951
+300    $a 2 v. : $b ill., ports. ; $c 23 cm.
+505 0  $a [1]. 1946, 5-6. 1950-1951.
+610 20 $6 880-03 $a Hogewor Eghbayrutʿiwn Eritasardatsʿ.
+650  0 $a Armenians $x Religious life $z Syria.
+650  0 $a Almanacs, Armenian $z Syria.
+650  0 $a Youth $x Religious life $z Syria.
+650  0 $a Armenians $z Syria $x Social life and customs.
+650  0 $a Armenians $z Lebanon $x Social life and customs.
+710 2  $6 880-04 $a Hogewor Eghbayrutʿiwn Eritasardatsʿ.
+852 41 $a British Library $b OC $j HEC.2002.a.492
+880 00 $6 245-01 / $a Մանանայ : $b տարեգրքոյկ.
+880    $6 260-02 / $a Հալէպ : $b Հրատարակութիւն Հոգեւոր Եղբայրութեան Երիտասրդաց, $c 1946-1951.
+880 20 $6 610-03 / $a Հոգեւոր Եղբայրութիւն Երիտասրդաց.
+880 2  $6 710-04 / $a Հոգեւոր Եղբայրութիւն Երիտասրդաց.
+985    $a armenian LC
+
+01818cab a2200385 a 4500
+001 14877410
+005 20071121185010.0
+008 040502m18971900enkmr|p       0   z0arm  
+035    $a (Uk)002848266
+906    $a p $b cbc $c undeter $d u $e ncip $f 20 $g y-nonroman
+010    $a   2007970004
+019 x  $a 2532250240
+040    $a Uk $b eng $c Uk
+245 00 $6 880-01 $a Mart : $b [amsatʿertʿ, ōrgan Hnchʿakean Kusaktsʿutʿean].
+246 3  $a Mard
+260    $6 880-02 $a London : $b [Sotsʿial Demokrat Hnchʿakean Kusaktsʿutʿiwn], $c 1897-1900.
+300    $a v. ; $c 44 cm.
+500    $a "Battle": an Armenian political newspaper.
+500    $a "Mart" published after 1897, as "Hnchʿak" could not be due to legal proceedings.
+505 0  $a I year, no. 1 (15 Apr., 1897)-10 (10 Apr., 1898); II year, no. 11 (7 May, 1898)-16 (Mar., 1899); III year, no. 17 (Aug., 1899)-27 (Oct., 1900)
+610 20 $6 880-03 $a Sotsʿial Demokrat Hnchʿakean Kusaktsʿutʿiwn
+650  0 $a Armenian periodicals.
+650  0 $a Armenians $x Politics and government.
+651  0 $a Armenia $x Politics and government.
+651  0 $a Armenia $x History $y 1801-1900.
+655  4 $a Periodical publications.- London
+710 2  $6 880-04 $a Sotsʿial Demokrat Hnchʿakean Kusaktsʿutʿiwn
+740 0  $6 880-05 $a Hnchʿak.
+852 41 $a British Library $b HMNTS $j OP.411
+880 00 $6 245-01 / $a Մարտ : $b [ամսաթերթ, օրգան Հնչակեան Կուսակցութեան].
+880    $6 260-02 / $a Լոնդոն : $b [Սոցիալ Դեմոկրատ Հնչակեան Կուսակցութիւն], $c 1897-1900.
+880 20 $6 610-03 / $a Սոցիալ Դեմոկրատ Հնչակեան Կուսակցութիւն.
+880 2  $6 710-04 / $a Սոցիալ Դեմոկրատ Հնչակեան Կուսակցութիւն.
+880 0  $6 740-05 / $a Հնչակ.
+985    $a armenian
+
+03105cab a2200601 a 4500
+001 14877413
+005 20071121185021.0
+008 000316d18551865fr er p       0   z0armod
+035    $a (Uk)002863571
+906    $a p $b cbc $c undeter $d u $e ncip $f 20 $g y-nonroman
+010    $a   2007970007
+019 x  $a 2541830122
+035    $a (OCoLC)43646516
+040    $a Uk $b eng $c Uk
+041 1  $a arm $a fre $a rus $h arm
+043    $a a-ai--- $a e------
+245 00 $6 880-01 $a Maseatsʿ aghawni : $b awetaber Hayastaneaytsʿ / $c [khmb. Gabriēl Ayvazeantsʿ].
+246 15 $a Colombe du Massis
+246 15 $a Messager de l'Arménie
+246 13 $6 880-02 $a Maseatsʿ aghawni awetaber Hayastaneaytsʿ
+246 14 $6 880-03 $a Maseatsʿ aghawni ew Tsiatsan Hayastaneaytsʿ $f <Sept. 1861->
+246 30 $6 880-04 $a Tsiatsan Hayastaneaytsʿ $f <Sept. 1861->
+246 30 $6 880-05 $a Awetaber Hayastaneaytsʿ
+260    $6 880-06 $a Pʿariz : $b [Khmbagir ew hratarakichʿ Gabriēl Ayvazeantsʿ], $c 1855- $e (Paris : $f Imp. W. Remquet)
+300    $a v. : $b ill., ports. ; $c 32 cm.
+310    $a Biweekly, $b <1 Sept. 1861->
+321    $a Monthly, $b Jan. 1855->
+362 0  $6 880-07 $a 1. tari, tʿiw 1 (Hunuar 1855)-
+362 1  $a Ceased in 1865.
+500    $6 880-08 $a Imprint varies: Paris : i Granotsʿi Chaniki Aramean, Jan. 1856-> ; Theodosia : Khalipean Usumnaran, <Sept. 1861->
+500    $6 880-09 $a Latest issue consulted: 6. tari, tʿiw 17 (15 Sept. 1861)
+505 0  $a Vol. I (1855); vol. II (1856); vol. III (1857); vol. VI, 1-8 (1861)
+515    $a Not published in 1859.
+546    $a In Armenian and French.
+650  0 $a Armenians $v Periodicals.
+650  0 $a Armenians $z Foreign countries $v Periodicals.
+650  0 $a Armenians $v Biography $v Periodicals.
+651  0 $a Armenia $v Periodicals.
+651  0 $a Europe $v 19th century $v Periodicals.
+655  4 $a Periodical publications.- Paris
+700 1  $6 880-10 $a Ayvazovskʿi, Gabriēl, $d 1812-1880.
+852 41 $a British Library $b OC $j 17070.g.5.
+880 00 $6 245-01 / $a Մասեաց աղաւնի : $b աւետաբեր Հայաստանեայց / $c [խմբ. Գաբրիէլ Այվազեանց].
+880 13 $6 246-02 / $a Մասեաց աղաւնի աւետաբեր Հայաստանեայց
+880 14 $6 246-03 / $a Մասեաց աղաւնի եւ Ծիածան Հայաստանեայց $f <Սեպտ. 1861->
+880 30 $6 246-04 / $a Ծիածան Հայաստանեայց $f <Սեպտ. 1861->
+880 30 $6 246-05 / $a Աւետաբեր Հայաստանեայց
+880    $6 260-06 / $a Փարիզ : $b [Խմբագիր և հրատարակիչ Գաբրիէլ Այվազեանց], $c 1855- $e (Paris : $f Imp. W. Remquet)
+880 0  $6 362-07 / $a 1. տարի, թիւ 1 (Յունուար 1855)-
+880    $6 500-08 / $a Տարբեր հրատ.: Փարիզ : ի Գրանոցի Ճանիկի Արամեան, Յունուար 1856-> ; Թեոդոսիա : Խալիպեան Ուսումնարան, <Սեպտ. 1861->
+880    $6 500-09 / $a Քննուած վերջին թիւ: 6. տարի, թիւ 17 (15 Սեպտ. 1861)
+880 1  $6 700-10 / $a Այվազեանց, Գաբրիէլ $d 1812-1880.
+985    $a armenian
+
+01794 ab a2200349 a 4500
+001 14877417
+005 20071121185036.0
+008 040502m18121816it wu|p       0   a0arm  
+035    $a (Uk)002870975
+906    $a p $b cbc $c undeter $d u $e ncip $f 20 $g y-nonroman
+010    $a   2007970012
+019 x  $a 2543960295
+040    $a Uk $b eng $c Uk
+245 00 $6 880-01 $a Ditak Biwzandean : $b shabatʿatʿertʿ apa erkshapatʿatʿertʿ, patmutʿiwn kʿaghakʿagan u paterazmakan, banasirakan, ekeghetsakan / $c khmb. Grigor Gaparachean, M. Pʿiwskiwlean, M. Jakhjakhean.
+246 3  $a Tidag Piwzantean
+260    $6 880-02 $a i Venetik : $b i Vans Srboyn Ghazaru, $c 1812-1816.
+300    $a v. ; $c 23 cm.
+500    $a Began 1808; ceased 1816.
+650  0 $a Armenians $v Periodicals.
+651  0 $a Europe $x History $y 1789-1815 $v Periodicals.
+651  0 $a Europe $x Politics and government $y 1789-1915 $v Periodicals.
+651  0 $a France $x History $y Consulate and First Empire, 1799-1815 $v Periodicals.
+700 1  $6 880-03 $a Karapetean, Grigor Khapaṛachi
+700 1  $6 880-04 $a Pʿiwskiwlean, M.
+700 1  $6 880-05 $a Jakhjakhean, Manuēl.
+852 41 $a British Library $b OC $j 17070.d.3.
+880 00 $6 245-01 / $a Դիտակ Բիւզանդեան : $b շաբաթաթերթ ապա երկշաբաթաթերթ, պատմութիւն քաղաքական ու պատերազմական, բանասիրական, եկեղեցական / $c խմբ. Գրիգոր Գապարաճեան, Մ. Փիւսկիւլեան, Մ. Ջախջախեան.
+880    $6 260-02 / $a ի Վենետիկ : $b ի Վանս Սրբոյն Ղազարու, $c 1812-1816.
+880 1  $6 700-03 / $a Կարապետեան, Գրիգոր Խապառաճի.
+880 1  $6 700-04 / $a Փիւսկիւլեան, Մ.
+880 1  $6 700-05 / $a Ջախջախեան, Մանուէլ.
+985    $a armenian
+
+01672cam a2200325 a 4500
+001 14877418
+005 20071121185039.0
+008 040502m19481961ai acf   b    000 0darm  
+035    $a (Uk)006842308
+906    $a p $b cbc $c undeter $d u $e ncip $f 20 $g y-nonroman
+010    $a   2007970013
+040    $a Uk $b eng $c Uk
+100 1  $6 880-01 $a Abovyan, Khachʿatur, $d 1805-1848
+240 10 $a Works. $f 1948
+245 10 $6 880-02 $a Erkeri liakatar zhoghovatsu utʿ hatorov / $c Kh. Abovyan ; [khmb. kolegia, Av. Isahakyan ... [et al.]].
+246 15 $6 880-03 $a Polnoe sobranie sochineniǐ v vosʹmi tomakh
+260    $6 880-04 $a Erevan : $b HSSṚ Gitutʿyunneri Akademiai Hratarakchʿutʿyun, $c 1948-1961.
+300    $a 8 v. in 10 books : $b ill., port. ; $c 26 cm.
+500    $a Illustrated end-papers.
+650  0 $a Armenian literature.
+700 1  $6 880-05 $a Isahakyan, Avetikʿ, $d 1875-1957
+710 2  $6 880-06 $a M. Abeghyani Anvan Grakanutʻyan Institut.
+852 41 $a British Library $b OC $j 17046.h.1
+880 1  $6 100-01 / $a Աբովյան, Խաչատուր, $d 1805-1848.
+880 10 $6 245-02 / $a Երկերի լիակատար ժողովածու ութ հատորով / $c Խ. Աբովյան ; [խմբ. կոլեգիա Ավ. Իսահակյան ... [և ուրշն.]].
+880 15 $6 246-03 / $a Полное собрание сочинений в восьми томах
+880    $6 260-04 / $a Երեվան : $b ՀՍՍՌ Գիտությունների Ակադեմիաի Հրատարակչություն, $c 1948-1961.
+880 1  $6 700-05 / $a Իսահակյան, Ավետիք, $d 1875-1957.
+880 2  $6 710-06 / $a Մ. Աբեղյանի Անվան Գրականության Ինստիտուտ.
+985    $a armenian
+
+01187cab a2200301 a 4500
+001 14879015
+005 20071203081856.0
+008 040502m18641877tu mr|p       0   z0arm  
+035    $a (Uk)002824493
+906    $a p $b cbc $c undeter $d u $e ncip $f 20 $g y-nonroman
+010    $a   2007970001
+019 x  $a 2520240032
+040    $a Uk $b eng $c Uk
+245 00 $6 880-01 $a Hoys : $b [drōshak hayreneats, amsagir banasirakan].
+246 3  $a Huys
+246 3  $a Yuys
+260    $6 880-02 $a Armash : $b [Armashi Vankʿ], $c 1864-1877.
+300    $a v. ; $c 23 cm.
+500    $a Hoys. “Hope,” a monthly magazine of literature in modern Armenian, Western dialect, printed at the Convent of the Mother of God at Armash.
+505 0  $a Vol. I, 1-12 (1864-1865), II, 13-24 (1865-1866)
+650  0 $a Armenian literature $v Periodicals.
+650  0 $a Armenian language $v Periodicals.
+650  0 $a Armenians $x Religious life.
+655  4 $a Periodical publications.- Armash
+852 41 $a British Library $b OC $j 17070.g.3.
+880 00 $6 245-01 / $a Յոյս : $b դրօշակ հայրենեաց, ամսագիր բանասիրական].
+880    $6 260-02 / $a Արմաշ : $b [Արմաշի Վանք], $c 1864-1877.
+985    $a armenian2
+
diff --git a/test/marccol5.u8.2.lst b/test/marccol5.u8.2.lst
new file mode 100644 (file)
index 0000000..5f2ff9b
--- /dev/null
@@ -0,0 +1,354 @@
+01741cam a2200301Ka 4500
+001 ocm57665435 
+003 OCoLC
+005 20080328102918.0
+008 050215s2004    ii       d    000 0 eng d
+040    $a ACN $c ACN $d OCLCQ $d IXA $d OCL
+020    $a 8176500623
+020    $a 9788176500623
+035    $a (OCoLC)57665435
+041 0  $a beneng
+092    $a 491.44321
+090    $a PK1687 $b .E65 2004
+049    $a LNNA
+245 00 $6 880-01 $a English-Bengali Bengali-English combined dictionary = $b Iṃrājī - Bāṃlā Bāṃlā - Iṃrājī samshukuta diksánarī / $c compiled by Debasis Adhikary.
+260    $a New Delhi : $b World of Learning : $b Distributed by Star Publications, $c 2004.
+300    $a 1518 p. ; $c 23 cm.
+500    $a "More than 90,000 total words from English to Bengali and Bengali to English."
+546    $a Bengali and English.
+650  0 $a English language $v Dictionaries $x Bengali.
+650  0 $a Bengali language $v Dictionaries $x English.
+700 1  $a Adhikary, Debasis.
+880 00 $6 245-01 $a English-Bengali Bengali-English combined dictionary = $b &#x0987;&#x0982;&#x09b0;&#x09be;&#x099c;&#x09c0; - &#x09ac;&#x09be;&#x0982;&#x09b2;&#x09be; &#x09ac;&#x09be;&#x0982;&#x09b2;&#x09be; - &#x0987;&#x0982;&#x09b0;&#x09be;&#x099c;&#x09c0; &#x09b8;&#x0982;&#x09af;&#x09c1;&#x0995;&#x09cd;&#x09a4; &#x09a1;&#x09bf;&#x0995;&#x09cd;&#x09b6;&#x09a8;&#x09b0;&#x09c0; / $c compiled by Debasis Adhikary.
+880 31 $6 246-00 $a &#x0987;&#x0982;&#x09b0;&#x09be;&#x099c;&#x09c0; - &#x09ac;&#x09be;&#x0982;&#x09b2;&#x09be; &#x09ac;&#x09be;&#x0982;&#x09b2;&#x09be; - &#x0987;&#x0982;&#x09b0;&#x09be;&#x099c;&#x09c0; &#x09b8;&#x0982;&#x09af;&#x09c1;&#x0995;&#x09cd;&#x09a4; &#x09a1;&#x09bf;&#x0995;&#x09cd;&#x09b6;&#x09a8;&#x09b0;&#x09c0;
+994    $a C0 $b LNN
+
+04253nam a22005053i 4500
+001 ocm86174229 
+003 OCoLC
+005 20080328102918.0
+008 070326s1977    ii       b    000 0 san d
+040    $a STF $c STF
+035    $a (OCoLC)86174229
+041 0  $a san $a hin
+050 04 $a PK511 $b 1977
+049    $a LNNA
+100 0  $6 880-01 $a Pāṇini.
+240 10 $a Aṣṭādhyāyī
+245 10 $6 880-02 $a Aṣṭādhyāyīsūtrapāṭhaḥ : $b Pāṇinīyaśikṣā-liṅgānuśāsanasahitaśca / $c Maharṣipāṇinipraṇītaḥ ; upoddhātalekhakaḥ Śrīnārāyaṇa Miśraḥ.
+246 15 $a Aṣṭādhyāyīsūtrapāṭha : $b with Pāṇinīyaśikṣā and Liṅgānuśāsana
+250    $6 880-03 $a 1. saṃskaraṇa.
+260    $6 880-04 $a Vārāṇasī ; $a Dillī : $b Caukhambhā Oriyanṭāliyā ; $a Vārāṇasī : $b anya prāptisthāna, Caukhambhā Viśvabhāratī, $c 1977.
+300    $a 100 p.
+440  0 $6 880-05 $a Gokuladāsa Saṃskr̥ta granthamālā ; $v 29
+546    $a In Sanskrit; introd. in Hindi.
+500    $a "Sampādakaḥ Śrīnārāyaṇa Miśraḥ"--Cover.
+500    $a Added title page in English.
+504    $a Includes bibliographical references.
+650  0 $a Sanskrit language $x Grammar.
+650  0 $a Sanskrit language $x Accents and accentuation.
+700 02 $6 880-06 $a Pāṇini. $t Pāṇinīyaśikṣā.
+700 02 $6 880-07 $a Pāṇini. $t Liṅgānuśāsana.
+700 1  $6 880-08 $a Miśra, Śrīnārāyaṇa.
+740 02 $6 880-09 $a Pāṇinīyaśikṣā.
+740 02 $6 880-10 $a Liṅgānuśāsana.
+880 0  $6 100-01 $a &#x092a;&#x093e;&#x0923;&#x093f;&#x0928;&#x0940;.
+880 10 $6 240-00 $a &#x0905;&#x0937;&#x094d;&#x091f;&#x093e;&#x0927;&#x094d;&#x092f;&#x093e;&#x092f;&#x0940;
+880 10 $6 245-02 $a &#x0905;&#x0937;&#x094d;&#x091f;&#x093e;&#x0927;&#x094d;&#x092f;&#x093e;&#x092f;&#x0940;&#x0938;&#x0942;&#x0924;&#x094d;&#x0930;&#x092a;&#x093e;&#x0920;&#x0903; : $b &#x092a;&#x093e;&#x0923;&#x093f;&#x0923;&#x0940;&#x092f;&#x0936;&#x093f;&#x0915;&#x094d;&#x0937;&#x093e;-&#x0932;&#x093f;&#x0919;&#x094d;&#x0917;&#x093e;&#x0928;&#x0941;&#x0936;&#x093e;&#x0938;&#x0928;&#x0938;&#x0939;&#x093f;&#x0924;&#x0936;&#x094d;&#x0930;&#x094d;&#x091a; / $c &#x092e;&#x0939;&#x0930;&#x094d;&#x0937;&#x093f;&#x092a;&#x093e;&#x0923;&#x093f;&#x0928;&#x093f;&#x092a;&#x094d;&#x0930;&#x0923;&#x0940;&#x0924;&#x0903; ; &#x0909;&#x092a;&#x094b;&#x0926;&#x094d;&#x0918;&#x093e;&#x0924;&#x0932;&#x0947;&#x0916;&#x0915;&#x0903; &#x0936;&#x094d;&#x0930;&#x0940;&#x0928;&#x093e;&#x0930;&#x093e;&#x092f;&#x0923; &#x092e;&#x093f;&#x0936;&#x094d;&#x0930;&#x0903;.
+880    $6 250-03 $a 1. &#x0938;&#x0902;&#x0938;&#x094d;&#x0915;&#x0930;&#x0923;.
+880    $6 260-04 $a &#x0935;&#x093e;&#x0930;&#x093e;&#x0923;&#x0938;&#x0940; ; $a &#x0926;&#x093f;&#x0932;&#x094d;&#x0932;&#x0940; : $b &#x091a;&#x094c;&#x0916;&#x092e;&#x094d;&#x092d;&#x093e; &#x0913;&#x0930;&#x093f;&#x092f;&#x0928;&#x094d;&#x091f;&#x093e;&#x0932;&#x093f;&#x092f;&#x093e; ; $a &#x0935;&#x093e;&#x0930;&#x093e;&#x0923;&#x0938;&#x0940; : $b &#x0905;&#x0928;&#x094d;&#x092f; &#x092a;&#x094d;&#x0930;&#x093e;&#x092a;&#x094d;&#x0924;&#x093f;&#x0938;&#x094d;&#x0925;&#x093e;&#x0928;, &#x091a;&#x094c;&#x0916;&#x092e;&#x094d;&#x092d;&#x093e; &#x0935;&#x093f;&#x0936;&#x094d;&#x0935;&#x092d;&#x093e;&#x0930;&#x0924;&#x0940;, $c 1977.
+880  0 $6 440-05 $a &#x0917;&#x094b;&#x0915;&#x0941;&#x0932;&#x0926;&#x093e;&#x0938; &#x0938;&#x0902;&#x0938;&#x094d;&#x0915;&#x0943;&#x0924; &#x0917;&#x094d;&#x0930;&#x0928;&#x094d;&#x0925;&#x092e;&#x093e;&#x0932;&#x093e; ; $v 29
+880 02 $6 700-06 $a &#x092a;&#x093e;&#x0923;&#x093f;&#x0928;&#x0940;. $t &#x092a;&#x093e;&#x0923;&#x093f;&#x0923;&#x0940;&#x092f;&#x0936;&#x093f;&#x0915;&#x094d;&#x0937;&#x093e;
+880 02 $6 700-07 $a &#x092a;&#x093e;&#x0923;&#x093f;&#x0928;&#x0940;. $t &#x0932;&#x093f;&#x0919;&#x094d;&#x0917;&#x093e;&#x0928;&#x0941;&#x0936;&#x093e;&#x0938;&#x0928;.
+880 1  $6 700-08 $a &#x092e;&#x093f;&#x0936;&#x094d;&#x0930;, &#x0936;&#x094d;&#x0930;&#x0940;&#x0928;&#x093e;&#x0930;&#x093e;&#x092f;&#x0923;.
+880 02 $6 740-09 $a &#x092a;&#x093e;&#x0923;&#x093f;&#x0923;&#x0940;&#x092f;&#x0936;&#x093f;&#x0915;&#x094d;&#x0937;&#x093e;.
+880 02 $6 740-10 $a &#x0932;&#x093f;&#x0919;&#x094d;&#x0917;&#x093e;&#x0928;&#x0941;&#x0936;&#x093e;&#x0938;&#x0928;.
+994    $a C0 $b LNN
+
+02913cam a2200433Ia 4500
+001 ocm44944167 
+003 OCoLC
+005 20080328102918.0
+008 000906s2000    ilua          000 0 tam d
+040    $a OCO $c OCO $d OCL $d OCLCQ $d TEF
+020    $a 0967621208 : $c $24.95
+020    $a 9780967621203
+035    $a (OCoLC)44944167
+041 1  $a tameng $h tam
+050  4 $a PL4758.9.T5 $b T5
+082 04 $a 894.811 $b T597t
+049    $a LNNA
+100 0  $a Tiruvaḷḷuvar.
+240 10 $6 880-01 $a Thirukku ral. $l Tamil & English
+245 10 $6 880-02 $a Thirukkural : $b Thamizh Marai = Tirukkural : the Holy Scripture / $c [by Tiruvalluvar ; English translation by P.S. Sundaram.].
+250    $a 1st ed.
+260    $a Woodridge, Ill. : $b International Tamil Language Foundation, $c c2000.
+300    $a 1813 p. : $b ill. (some col.) ; $c 20 cm.
+500    $a Tamil text, with English translation.
+500    $a "An edition of this translation was published by Penguin Books in 1991."
+500    $a Section 2 and section 3, English translation from Tamil by R. Natarajan.
+546    $a Text in Tamil and English.
+500    $a Non-Latin script record.
+600 00 $a Tiruvaḷḷuvar.
+650  0 $a Tamil literature $v Translations into English.
+650  0 $a Tamil language materials $x Bilingual.
+740 02 $a Handbook of Tamil culture and heritage.
+740 02 $a Tamils guide to future.
+880 10 $6 240-01 $a &#x0ba4;&#x0bbf;&#x0bb0;&#x0bc2;&#x0b95;&#x0bcd;&#x0b95;&#x0bc1; &#x0bb1;&#x0bb3;&#x0bcd;. $l Tamil & English
+880 10 $6 245-02 $a &#x0ba4;&#x0bbf;&#x0bb0;&#x0bc2;&#x0b95;&#x0bcd;&#x0b95;&#x0bc1;&#x0bb1;&#x0bb3;&#x0bcd; : $b &#x0ba4;&#x0bae;&#x0bbf;&#x0bb4;&#x0bcd; &#x0bae;&#x0bb1;&#x0bc8; = Tirukkural : the Holy Scripture / $c [by Tiruvalluvar ; English translation by P.S. Sundaram.]
+880 0  $6 505-00 $a Section 1: &#x0ba4;&#x0bbf;&#x0bb0;&#x0bc2;&#x0b95;&#x0bcd;&#x0b95;&#x0bc1;&#x0bb1;&#x0bb3;&#x0bcd; : Tirukkural -- Section 2: &#x0ba4;&#x0bb1;&#x0bbf;&#x0bb4;&#x0bcd;&#x0baa;&#x0bcd; &#x0baa;&#x0ba3;&#x0bcd;&#x0baa;&#x0bbe;&#x0b9f;&#x0bcd;&#x0b9f;&#x0bc2;&#x0b95;&#x0bcd; &#x0b95;&#x0bc8;&#x0baf;&#x0bc7;&#x0b9f;&#x0bc2; : The handbook of Tamil culture and heritage -- Section 3: &#x0ba4;&#x0bae;&#x0bbf;&#x0bb4;&#x0bbf;&#x0ba9; &#x0b8e;&#x0ba4;&#x0bbf;&#x0bb0;&#x0bcd;&#x0b95;&#x0bbe;&#x0bb2; &#x0bb5;&#x0bb4;&#x0bbf;&#x0b95;&#x0bbe;&#x0b9f;&#x0bcd;&#x0b9f;&#x0bbf; : Tamils guide to future.
+880 02 $6 740-00 $a &#x0ba4;&#x0bae;&#x0bbf;&#x0bb4;&#x0bcd;&#x0baa;&#x0bcd; &#x0baa;&#x0ba3;&#x0bcd;&#x0baa;&#x0bbe;&#x0b9f;&#x0bcd;&#x0b9f;&#x0bc2;&#x0b95;&#x0bcd; &#x0b95;&#x0bc8;&#x0baf;&#x0bc7;&#x0b9f;&#x0bc2; : The handbook of Tamil culture and heritage.
+880 02 $6 740-00 $a &#x0ba4;&#x0bae;&#x0bbf;&#x0bb4;&#x0bbf;&#x0ba9; &#x0b8e;&#x0ba4;&#x0bbf;&#x0bb0;&#x0bcd;&#x0b95;&#x0bbe;&#x0bb2; &#x0bb5;&#x0bb4;&#x0bbf;&#x0b95;&#x0bbe;&#x0b9f;&#x0bcd;&#x0b9f;&#x0bbf; : Tamils guide to future.
+994    $a C0 $b LNN
+
+01358cam a2200301Ia 4500
+001 ocm62425106 
+003 OCoLC
+005 20080328102918.0
+008 051203s2002    th            000 f thaod
+040    $a TEF $c TEF $d LNQ $d OCL
+020    $a 9749204808
+020    $a 9789749204801
+035    $a (OCoLC)62425106
+090    $a PL4209.D837 $b P57 2002
+049    $a LNNA
+100 0  $6 880-01 $a Dūangtawan.
+245 10 $6 880-02 $a Phračhan sǣnkon / $c Dūangtawan.
+250    $6 880-03 $a Phim khrang thī 3.
+260    $6 880-04 $a Krung Thēp : $b Phimkham Samnakphim, $c 2545 [2002]
+300    $a 154 p. ; $c 21 cm.
+500    $a Novel.
+546    $a In Thai.
+655  7 $a Humorous fiction. $2 gsafd
+880 0  $6 100-01 $a &#x0e14;&#x0e27;&#x0e07;&#x0e15;&#x0e30;&#x0e27;&#x0e31;&#x0e19;.
+880 10 $6 245-02 $a &#x0e1e;&#x0e23;&#x0e30;&#x0e08;&#x0e31;&#x0e19;&#x0e17;&#x0e23;&#x0e4c;&#x0e41;&#x0e2a;&#x0e19;&#x0e01;&#x0e25; / $c &#x0e14;&#x0e27;&#x0e07;&#x0e15;&#x0e30;&#x0e27;&#x0e31;&#x0e19;.
+880    $6 250-03 $a &#x0e1e;&#x0e34;&#x0e21;&#x0e1e;&#x0e4c;&#x0e04;&#x0e23;&#x0e31;&#x0e49;&#x0e07;&#x0e17;&#x0e35;&#x0e48; 3.
+880    $6 260-04 $a &#x0e01;&#x0e23;&#x0e38;&#x0e07;&#x0e40;&#x0e17;&#x0e1e;&#x0e2f; : $b &#x0e1e;&#x0e34;&#x0e21;&#x0e1e;&#x0e4c;&#x0e04;&#x0e33; &#x0e2a;&#x0e32;&#x0e19;&#x0e31;&#x0e01;&#x0e1e;&#x0e34;&#x0e21;&#x0e1e;&#x0e4c;, $c 2545.
+994    $a C0 $b LNN
+
+05353cam a2200409 a 4500
+001 14876782
+005 20071121181842.0
+008 990326s1997    ai a     b    001 0 armo 
+035    $a (Uk)006855813
+906    $a p $b cbc $c undeter $d u $e ncip $f 20 $g y-nonroman
+010    $a    99189840 
+040    $a DLC $b eng $c DLC $d DLC-R $d Uk
+043    $a a-ai--- $a a-tu---
+050 00 $a BX121 $b .S63 1997
+100 1  $6 880-01 $a Smbatyants&#x02bf;, Artak, $c Episkopos, $d 1876-1937
+245 10 $6 880-02 $a Artak Episkopos Smbatyants&#x02bf; (Taushets&#x02bf;i) : hogevor, grakan, patma-banasirakan gortsuneut&#x02bf;yuně ev gndakaharut&#x02bf;yuně, 1876-1937 t&#x02bf;t&#x02bf;. / $c kazmets&#x02bf; Sandro Behbudyan.
+260    $6 880-03 $a Erevan : $b "Anahit", $c 1997.
+300    $a 691 p. : $b ill. ; $c 27 cm.
+440  0 $6 880-04 $a Vaveragrer Hay Ekeghets&#x02bf;u patmut&#x02bf;yan ; $v girk&#x02bf; 3
+500    $6 880-05 $a At head of title: Hayastani Hanrapetut&#x02bf;yan Kaṛavarut&#x02bf;yann aṛěnt&#x02bf;er. Arkhivayin Gortsi Varch&#x02bf;ut&#x02bf;yun. Arvesti, Grakanut&#x02bf;yan ev Mamuli P&#x02bf;astat&#x02bf;ght&#x02bf;eri Petakan Kentronakan Arkhiv.
+504    $a Includes bibliographical references and indexes.
+600 10 $6 880-06 $a Smbatyants&#x02bf;, Artak, $c Episkopos, $d 1876-1937
+610 20 $6 880-07 $a Armenian Church $x History $v Sources.
+650  0 $a Armenians $z Turkey.
+651  0 $a Armenia $x History $y 1801-1900 $v Sources.
+651  0 $a Armenia $x History $y 1901- $v Sources.
+700 1  $6 880-08 $a Behbudyan, Sandro $q (Sandro Artashesi), $d 1934-
+852 41 $a British Library $b OC $j HEC.1994.a.294/3
+880 1  $6 100-01 / $a &#x054d;&#x0574;&#x0562;&#x0561;&#x057f;&#x0575;&#x0561;&#x0576;&#x0581;, &#x0531;&#x0580;&#x057f;&#x0561;&#x056f;, $c &#x0535;&#x0562;&#x056b;&#x057d;&#x056f;&#x0578;&#x057a;&#x0578;&#x057d;, $d 1876-1937.
+880 10 $6 245-02 / $a &#x0531;&#x0580;&#x057f;&#x0561;&#x056f; &#x0535;&#x0562;&#x056b;&#x057d;&#x056f;&#x0578;&#x057a;&#x0578;&#x057d; &#x054d;&#x0574;&#x0562;&#x0561;&#x057f;&#x0575;&#x0561;&#x0576;&#x0581; (&#x054f;&#x0561;&#x0578;&#x0582;&#x0577;&#x0565;&#x0581;&#x056b;) : &#x0570;&#x0578;&#x0563;&#x0565;&#x057e;&#x0578;&#x0580;, &#x0563;&#x0580;&#x0561;&#x056f;&#x0561;&#x0576; &#x057a;&#x0561;&#x057f;&#x0574;&#x0561;-&#x0562;&#x0561;&#x0576;&#x0561;&#x057d;&#x056b;&#x0580;&#x0561;&#x056f;&#x0561;&#x0576; &#x0563;&#x0578;&#x0580;&#x056e;&#x0578;&#x0582;&#x0576;&#x0565;&#x0578;&#x0582;&#x0569;&#x0575;&#x0578;&#x0582;&#x0576;&#x0568; &#x0565;&#x057e; &#x0563;&#x0576;&#x0564;&#x0561;&#x056f;&#x0561;&#x0570;&#x0561;&#x0580;&#x0578;&#x0582;&#x0569;&#x0575;&#x0578;&#x0582;&#x0576;&#x0568;, 1876-1937 &#x0569;&#x0569;. / $c &#x056f;&#x0561;&#x0566;&#x0574;&#x0565;&#x0581; &#x054d;&#x0561;&#x0576;&#x0564;&#x0580;&#x0578; &#x0532;&#x0565;&#x0570;&#x0562;&#x0578;&#x0582;&#x0569;&#x0575;&#x0561;&#x0576;.
+880    $6 260-03 / $a &#x0535;&#x0580;&#x0565;&#x057e;&#x0561;&#x0576; : $b «&#x0531;&#x0576;&#x0561;&#x0570;&#x056b;&#x057f;», $c 1997.
+880  0 $6 440-04 / $a &#x054e;&#x0561;&#x057e;&#x0565;&#x0580;&#x0561;&#x0563;&#x0580;&#x0565;&#x0580; &#x0540;&#x0561;&#x0575; &#x0535;&#x056f;&#x0565;&#x0572;&#x0565;&#x0581;&#x0578;&#x0582; &#x057a;&#x0561;&#x057f;&#x0574;&#x0578;&#x0582;&#x0569;&#x0575;&#x0561;&#x0576; ; $v &#x0563;&#x056b;&#x0580;&#x0584; 3
+880    $6 500-05 / $a &#x054f;&#x056b;&#x057f;&#x0572;&#x0578;&#x057d;&#x056b; &#x0563;&#x056c;&#x0578;&#x0582;&#x056d;: &#x0540;&#x0561;&#x0575;&#x0561;&#x057d;&#x057f;&#x0561;&#x0576;&#x056b; &#x0540;&#x0561;&#x0576;&#x0580;&#x0561;&#x057a;&#x0565;&#x057f;&#x0578;&#x0582;&#x0569;&#x0575;&#x0561;&#x0576; &#x053f;&#x0561;&#x057c;&#x0561;&#x057e;&#x0561;&#x0580;&#x0578;&#x0582;&#x0569;&#x0575;&#x0561;&#x0576; &#x0561;&#x057c;&#x0568;&#x0576;&#x0569;&#x0565;&#x0580;. &#x0531;&#x0580;&#x056d;&#x056b;&#x057e;&#x0561;&#x0575;&#x056b;&#x0576; &#x0533;&#x0578;&#x0580;&#x056e;&#x056b; &#x054e;&#x0561;&#x0580;&#x0579;&#x0578;&#x0582;&#x0569;&#x0575;&#x0578;&#x0582;&#x0576;. &#x0531;&#x0580;&#x057e;&#x0565;&#x057d;&#x057f;&#x056b;, &#x0533;&#x0580;&#x0561;&#x056f;&#x0561;&#x0576;&#x0578;&#x0582;&#x0569;&#x0575;&#x0561;&#x0576; &#x0565;&#x057e; &#x0544;&#x0561;&#x0574;&#x0578;&#x0582;&#x056c;&#x056b; &#x0532;&#x0561;&#x057d;&#x057f;&#x0561;&#x0569;&#x0572;&#x0569;&#x0565;&#x0580;&#x056b; &#x054a;&#x0565;&#x057f;&#x0561;&#x056f;&#x0561;&#x0576; &#x053f;&#x0565;&#x0576;&#x057f;&#x0580;&#x0578;&#x0576;&#x0561;&#x056f;&#x0561;&#x0576; &#x0531;&#x0580;&#x056d;&#x056b;&#x057e;.
+880 10 $6 600-06 / $a &#x054d;&#x0574;&#x0562;&#x0561;&#x057f;&#x0575;&#x0561;&#x0576;&#x0581;, &#x0531;&#x0580;&#x057f;&#x0561;&#x056f;, $c &#x0535;&#x0562;&#x056b;&#x057d;&#x056f;&#x0578;&#x057a;&#x0578;&#x057d;, $d 1876-1937.
+880 20 $6 610-07 / $a &#x0540;&#x0561;&#x0575;&#x0561;&#x057d;&#x057f;&#x0561;&#x0576;&#x0565;&#x0561;&#x0575;&#x0581; &#x054d;. &#x0535;&#x056f;&#x0565;&#x0572;&#x0565;&#x0581;&#x056b; $x &#x054a;&#x0561;&#x057f;&#x0574;&#x0578;&#x0582;&#x0569;&#x056b;&#x0582;&#x0576; $v &#x0531;&#x0572;&#x0562;&#x056b;&#x0582;&#x0580;&#x0576;&#x0565;&#x0580;.
+880 1  $6 700-08 / $a &#x0532;&#x0565;&#x0570;&#x0562;&#x0578;&#x0582;&#x0569;&#x0575;&#x0561;&#x0576;, &#x054d;&#x0561;&#x0576;&#x0564;&#x0580;&#x0578;, $q (&#x054d;&#x0561;&#x0576;&#x0564;&#x0580;&#x0578; &#x0531;&#x0580;&#x057f;&#x0561;&#x0577;&#x0565;&#x057d;&#x056b;), $d 1934-
+985    $a armenian LC
+
+02251 am a2200349 a 4500
+001 14876783
+005 20071121181846.0
+008 040502m19461951sy ac         000 0 arm  
+035    $a (Uk)006881105
+906    $a p $b cbc $c undeter $d u $e ncip $f 20 $g y-nonroman
+010    $a   2003207810
+035    $a (OCoLC)ocm51506679
+040    $a DLC $b eng $c DLC $d OCoLC $d Uk
+043    $a a-sy---
+050 00 $a BV4539.A75 $b M36
+245 00 $6 880-01 $a Mananay : $b taregrk&#x02bf;oyk.
+260    $6 880-02 $a Halēp : $b Hratarakut&#x02bf;iwn Hogewor Eghbarut&#x02bf;ean Eritasardats&#x02bf;, $c 1946-1951
+300    $a 2 v. : $b ill., ports. ; $c 23 cm.
+505 0  $a [1]. 1946, 5-6. 1950-1951.
+610 20 $6 880-03 $a Hogewor Eghbayrut&#x02bf;iwn Eritasardats&#x02bf;.
+650  0 $a Armenians $x Religious life $z Syria.
+650  0 $a Almanacs, Armenian $z Syria.
+650  0 $a Youth $x Religious life $z Syria.
+650  0 $a Armenians $z Syria $x Social life and customs.
+650  0 $a Armenians $z Lebanon $x Social life and customs.
+710 2  $6 880-04 $a Hogewor Eghbayrut&#x02bf;iwn Eritasardats&#x02bf;.
+852 41 $a British Library $b OC $j HEC.2002.a.492
+880 00 $6 245-01 / $a &#x0544;&#x0561;&#x0576;&#x0561;&#x0576;&#x0561;&#x0575; : $b &#x057f;&#x0561;&#x0580;&#x0565;&#x0563;&#x0580;&#x0584;&#x0578;&#x0575;&#x056f;.
+880    $6 260-02 / $a &#x0540;&#x0561;&#x056c;&#x0567;&#x057a; : $b &#x0540;&#x0580;&#x0561;&#x057f;&#x0561;&#x0580;&#x0561;&#x056f;&#x0578;&#x0582;&#x0569;&#x056b;&#x0582;&#x0576; &#x0540;&#x0578;&#x0563;&#x0565;&#x0582;&#x0578;&#x0580; &#x0535;&#x0572;&#x0562;&#x0561;&#x0575;&#x0580;&#x0578;&#x0582;&#x0569;&#x0565;&#x0561;&#x0576; &#x0535;&#x0580;&#x056b;&#x057f;&#x0561;&#x057d;&#x0580;&#x0564;&#x0561;&#x0581;, $c 1946-1951.
+880 20 $6 610-03 / $a &#x0540;&#x0578;&#x0563;&#x0565;&#x0582;&#x0578;&#x0580; &#x0535;&#x0572;&#x0562;&#x0561;&#x0575;&#x0580;&#x0578;&#x0582;&#x0569;&#x056b;&#x0582;&#x0576; &#x0535;&#x0580;&#x056b;&#x057f;&#x0561;&#x057d;&#x0580;&#x0564;&#x0561;&#x0581;.
+880 2  $6 710-04 / $a &#x0540;&#x0578;&#x0563;&#x0565;&#x0582;&#x0578;&#x0580; &#x0535;&#x0572;&#x0562;&#x0561;&#x0575;&#x0580;&#x0578;&#x0582;&#x0569;&#x056b;&#x0582;&#x0576; &#x0535;&#x0580;&#x056b;&#x057f;&#x0561;&#x057d;&#x0580;&#x0564;&#x0561;&#x0581;.
+985    $a armenian LC
+
+02855cab a2200385 a 4500
+001 14877410
+005 20071121185010.0
+008 040502m18971900enkmr|p       0   z0arm  
+035    $a (Uk)002848266
+906    $a p $b cbc $c undeter $d u $e ncip $f 20 $g y-nonroman
+010    $a   2007970004
+019 x  $a 2532250240
+040    $a Uk $b eng $c Uk
+245 00 $6 880-01 $a Mart : $b [amsat&#x02bf;ert&#x02bf;, ōrgan Hnch&#x02bf;akean Kusakts&#x02bf;ut&#x02bf;ean].
+246 3  $a Mard
+260    $6 880-02 $a London : $b [Sots&#x02bf;ial Demokrat Hnch&#x02bf;akean Kusakts&#x02bf;ut&#x02bf;iwn], $c 1897-1900.
+300    $a v. ; $c 44 cm.
+500    $a "Battle": an Armenian political newspaper.
+500    $a "Mart" published after 1897, as "Hnch&#x02bf;ak" could not be due to legal proceedings.
+505 0  $a I year, no. 1 (15 Apr., 1897)-10 (10 Apr., 1898); II year, no. 11 (7 May, 1898)-16 (Mar., 1899); III year, no. 17 (Aug., 1899)-27 (Oct., 1900)
+610 20 $6 880-03 $a Sots&#x02bf;ial Demokrat Hnch&#x02bf;akean Kusakts&#x02bf;ut&#x02bf;iwn
+650  0 $a Armenian periodicals.
+650  0 $a Armenians $x Politics and government.
+651  0 $a Armenia $x Politics and government.
+651  0 $a Armenia $x History $y 1801-1900.
+655  4 $a Periodical publications.- London
+710 2  $6 880-04 $a Sots&#x02bf;ial Demokrat Hnch&#x02bf;akean Kusakts&#x02bf;ut&#x02bf;iwn
+740 0  $6 880-05 $a Hnch&#x02bf;ak.
+852 41 $a British Library $b HMNTS $j OP.411
+880 00 $6 245-01 / $a &#x0544;&#x0561;&#x0580;&#x057f; : $b [&#x0561;&#x0574;&#x057d;&#x0561;&#x0569;&#x0565;&#x0580;&#x0569;, &#x0585;&#x0580;&#x0563;&#x0561;&#x0576; &#x0540;&#x0576;&#x0579;&#x0561;&#x056f;&#x0565;&#x0561;&#x0576; &#x053f;&#x0578;&#x0582;&#x057d;&#x0561;&#x056f;&#x0581;&#x0578;&#x0582;&#x0569;&#x0565;&#x0561;&#x0576;].
+880    $6 260-02 / $a &#x053c;&#x0578;&#x0576;&#x0564;&#x0578;&#x0576; : $b [&#x054d;&#x0578;&#x0581;&#x056b;&#x0561;&#x056c; &#x0534;&#x0565;&#x0574;&#x0578;&#x056f;&#x0580;&#x0561;&#x057f; &#x0540;&#x0576;&#x0579;&#x0561;&#x056f;&#x0565;&#x0561;&#x0576; &#x053f;&#x0578;&#x0582;&#x057d;&#x0561;&#x056f;&#x0581;&#x0578;&#x0582;&#x0569;&#x056b;&#x0582;&#x0576;], $c 1897-1900.
+880 20 $6 610-03 / $a &#x054d;&#x0578;&#x0581;&#x056b;&#x0561;&#x056c; &#x0534;&#x0565;&#x0574;&#x0578;&#x056f;&#x0580;&#x0561;&#x057f; &#x0540;&#x0576;&#x0579;&#x0561;&#x056f;&#x0565;&#x0561;&#x0576; &#x053f;&#x0578;&#x0582;&#x057d;&#x0561;&#x056f;&#x0581;&#x0578;&#x0582;&#x0569;&#x056b;&#x0582;&#x0576;.
+880 2  $6 710-04 / $a &#x054d;&#x0578;&#x0581;&#x056b;&#x0561;&#x056c; &#x0534;&#x0565;&#x0574;&#x0578;&#x056f;&#x0580;&#x0561;&#x057f; &#x0540;&#x0576;&#x0579;&#x0561;&#x056f;&#x0565;&#x0561;&#x0576; &#x053f;&#x0578;&#x0582;&#x057d;&#x0561;&#x056f;&#x0581;&#x0578;&#x0582;&#x0569;&#x056b;&#x0582;&#x0576;.
+880 0  $6 740-05 / $a &#x0540;&#x0576;&#x0579;&#x0561;&#x056f;.
+985    $a armenian
+
+05195cab a2200601 a 4500
+001 14877413
+005 20071121185021.0
+008 000316d18551865fr er p       0   z0armod
+035    $a (Uk)002863571
+906    $a p $b cbc $c undeter $d u $e ncip $f 20 $g y-nonroman
+010    $a   2007970007
+019 x  $a 2541830122
+035    $a (OCoLC)43646516
+040    $a Uk $b eng $c Uk
+041 1  $a arm $a fre $a rus $h arm
+043    $a a-ai--- $a e------
+245 00 $6 880-01 $a Maseats&#x02bf; aghawni : $b awetaber Hayastaneayts&#x02bf; / $c [khmb. Gabriēl Ayvazeants&#x02bf;].
+246 15 $a Colombe du Massis
+246 15 $a Messager de l'Arménie
+246 13 $6 880-02 $a Maseats&#x02bf; aghawni awetaber Hayastaneayts&#x02bf;
+246 14 $6 880-03 $a Maseats&#x02bf; aghawni ew Tsiatsan Hayastaneayts&#x02bf; $f <Sept. 1861->
+246 30 $6 880-04 $a Tsiatsan Hayastaneayts&#x02bf; $f <Sept. 1861->
+246 30 $6 880-05 $a Awetaber Hayastaneayts&#x02bf;
+260    $6 880-06 $a P&#x02bf;ariz : $b [Khmbagir ew hratarakich&#x02bf; Gabriēl Ayvazeants&#x02bf;], $c 1855- $e (Paris : $f Imp. W. Remquet)
+300    $a v. : $b ill., ports. ; $c 32 cm.
+310    $a Biweekly, $b <1 Sept. 1861->
+321    $a Monthly, $b Jan. 1855->
+362 0  $6 880-07 $a 1. tari, t&#x02bf;iw 1 (Hunuar 1855)-
+362 1  $a Ceased in 1865.
+500    $6 880-08 $a Imprint varies: Paris : i Granots&#x02bf;i Chaniki Aramean, Jan. 1856-> ; Theodosia : Khalipean Usumnaran, <Sept. 1861->
+500    $6 880-09 $a Latest issue consulted: 6. tari, t&#x02bf;iw 17 (15 Sept. 1861)
+505 0  $a Vol. I (1855); vol. II (1856); vol. III (1857); vol. VI, 1-8 (1861)
+515    $a Not published in 1859.
+546    $a In Armenian and French.
+650  0 $a Armenians $v Periodicals.
+650  0 $a Armenians $z Foreign countries $v Periodicals.
+650  0 $a Armenians $v Biography $v Periodicals.
+651  0 $a Armenia $v Periodicals.
+651  0 $a Europe $v 19th century $v Periodicals.
+655  4 $a Periodical publications.- Paris
+700 1  $6 880-10 $a Ayvazovsk&#x02bf;i, Gabriēl, $d 1812-1880.
+852 41 $a British Library $b OC $j 17070.g.5.
+880 00 $6 245-01 / $a &#x0544;&#x0561;&#x057d;&#x0565;&#x0561;&#x0581; &#x0561;&#x0572;&#x0561;&#x0582;&#x0576;&#x056b; : $b &#x0561;&#x0582;&#x0565;&#x057f;&#x0561;&#x0562;&#x0565;&#x0580; &#x0540;&#x0561;&#x0575;&#x0561;&#x057d;&#x057f;&#x0561;&#x0576;&#x0565;&#x0561;&#x0575;&#x0581; / $c [&#x056d;&#x0574;&#x0562;. &#x0533;&#x0561;&#x0562;&#x0580;&#x056b;&#x0567;&#x056c; &#x0531;&#x0575;&#x057e;&#x0561;&#x0566;&#x0565;&#x0561;&#x0576;&#x0581;].
+880 13 $6 246-02 / $a &#x0544;&#x0561;&#x057d;&#x0565;&#x0561;&#x0581; &#x0561;&#x0572;&#x0561;&#x0582;&#x0576;&#x056b; &#x0561;&#x0582;&#x0565;&#x057f;&#x0561;&#x0562;&#x0565;&#x0580; &#x0540;&#x0561;&#x0575;&#x0561;&#x057d;&#x057f;&#x0561;&#x0576;&#x0565;&#x0561;&#x0575;&#x0581;
+880 14 $6 246-03 / $a &#x0544;&#x0561;&#x057d;&#x0565;&#x0561;&#x0581; &#x0561;&#x0572;&#x0561;&#x0582;&#x0576;&#x056b; &#x0565;&#x0582; &#x053e;&#x056b;&#x0561;&#x056e;&#x0561;&#x0576; &#x0540;&#x0561;&#x0575;&#x0561;&#x057d;&#x057f;&#x0561;&#x0576;&#x0565;&#x0561;&#x0575;&#x0581; $f <&#x054d;&#x0565;&#x057a;&#x057f;. 1861->
+880 30 $6 246-04 / $a &#x053e;&#x056b;&#x0561;&#x056e;&#x0561;&#x0576; &#x0540;&#x0561;&#x0575;&#x0561;&#x057d;&#x057f;&#x0561;&#x0576;&#x0565;&#x0561;&#x0575;&#x0581; $f <&#x054d;&#x0565;&#x057a;&#x057f;. 1861->
+880 30 $6 246-05 / $a &#x0531;&#x0582;&#x0565;&#x057f;&#x0561;&#x0562;&#x0565;&#x0580; &#x0540;&#x0561;&#x0575;&#x0561;&#x057d;&#x057f;&#x0561;&#x0576;&#x0565;&#x0561;&#x0575;&#x0581;
+880    $6 260-06 / $a &#x0553;&#x0561;&#x0580;&#x056b;&#x0566; : $b [&#x053d;&#x0574;&#x0562;&#x0561;&#x0563;&#x056b;&#x0580; &#x0587; &#x0570;&#x0580;&#x0561;&#x057f;&#x0561;&#x0580;&#x0561;&#x056f;&#x056b;&#x0579; &#x0533;&#x0561;&#x0562;&#x0580;&#x056b;&#x0567;&#x056c; &#x0531;&#x0575;&#x057e;&#x0561;&#x0566;&#x0565;&#x0561;&#x0576;&#x0581;], $c 1855- $e (Paris : $f Imp. W. Remquet)
+880 0  $6 362-07 / $a 1. &#x057f;&#x0561;&#x0580;&#x056b;, &#x0569;&#x056b;&#x0582; 1 (&#x0545;&#x0578;&#x0582;&#x0576;&#x0578;&#x0582;&#x0561;&#x0580; 1855)-
+880    $6 500-08 / $a &#x054f;&#x0561;&#x0580;&#x0562;&#x0565;&#x0580; &#x0570;&#x0580;&#x0561;&#x057f;.: &#x0553;&#x0561;&#x0580;&#x056b;&#x0566; : &#x056b; &#x0533;&#x0580;&#x0561;&#x0576;&#x0578;&#x0581;&#x056b; &#x0543;&#x0561;&#x0576;&#x056b;&#x056f;&#x056b; &#x0531;&#x0580;&#x0561;&#x0574;&#x0565;&#x0561;&#x0576;, &#x0545;&#x0578;&#x0582;&#x0576;&#x0578;&#x0582;&#x0561;&#x0580; 1856-> ; &#x0539;&#x0565;&#x0578;&#x0564;&#x0578;&#x057d;&#x056b;&#x0561; : &#x053d;&#x0561;&#x056c;&#x056b;&#x057a;&#x0565;&#x0561;&#x0576; &#x0548;&#x0582;&#x057d;&#x0578;&#x0582;&#x0574;&#x0576;&#x0561;&#x0580;&#x0561;&#x0576;, <&#x054d;&#x0565;&#x057a;&#x057f;. 1861->
+880    $6 500-09 / $a &#x0554;&#x0576;&#x0576;&#x0578;&#x0582;&#x0561;&#x056e; &#x057e;&#x0565;&#x0580;&#x057b;&#x056b;&#x0576; &#x0569;&#x056b;&#x0582;: 6. &#x057f;&#x0561;&#x0580;&#x056b;, &#x0569;&#x056b;&#x0582; 17 (15 &#x054d;&#x0565;&#x057a;&#x057f;. 1861)
+880 1  $6 700-10 / $a &#x0531;&#x0575;&#x057e;&#x0561;&#x0566;&#x0565;&#x0561;&#x0576;&#x0581;, &#x0533;&#x0561;&#x0562;&#x0580;&#x056b;&#x0567;&#x056c; $d 1812-1880.
+985    $a armenian
+
+03142 ab a2200349 a 4500
+001 14877417
+005 20071121185036.0
+008 040502m18121816it wu|p       0   a0arm  
+035    $a (Uk)002870975
+906    $a p $b cbc $c undeter $d u $e ncip $f 20 $g y-nonroman
+010    $a   2007970012
+019 x  $a 2543960295
+040    $a Uk $b eng $c Uk
+245 00 $6 880-01 $a Ditak Biwzandean : $b shabat&#x02bf;at&#x02bf;ert&#x02bf; apa erkshapat&#x02bf;at&#x02bf;ert&#x02bf;, patmut&#x02bf;iwn k&#x02bf;aghak&#x02bf;agan u paterazmakan, banasirakan, ekeghetsakan / $c khmb. Grigor Gaparachean, M. P&#x02bf;iwskiwlean, M. Jakhjakhean.
+246 3  $a Tidag Piwzantean
+260    $6 880-02 $a i Venetik : $b i Vans Srboyn Ghazaru, $c 1812-1816.
+300    $a v. ; $c 23 cm.
+500    $a Began 1808; ceased 1816.
+650  0 $a Armenians $v Periodicals.
+651  0 $a Europe $x History $y 1789-1815 $v Periodicals.
+651  0 $a Europe $x Politics and government $y 1789-1915 $v Periodicals.
+651  0 $a France $x History $y Consulate and First Empire, 1799-1815 $v Periodicals.
+700 1  $6 880-03 $a Karapetean, Grigor Khapaṛachi
+700 1  $6 880-04 $a P&#x02bf;iwskiwlean, M.
+700 1  $6 880-05 $a Jakhjakhean, Manuēl.
+852 41 $a British Library $b OC $j 17070.d.3.
+880 00 $6 245-01 / $a &#x0534;&#x056b;&#x057f;&#x0561;&#x056f; &#x0532;&#x056b;&#x0582;&#x0566;&#x0561;&#x0576;&#x0564;&#x0565;&#x0561;&#x0576; : $b &#x0577;&#x0561;&#x0562;&#x0561;&#x0569;&#x0561;&#x0569;&#x0565;&#x0580;&#x0569; &#x0561;&#x057a;&#x0561; &#x0565;&#x0580;&#x056f;&#x0577;&#x0561;&#x0562;&#x0561;&#x0569;&#x0561;&#x0569;&#x0565;&#x0580;&#x0569;, &#x057a;&#x0561;&#x057f;&#x0574;&#x0578;&#x0582;&#x0569;&#x056b;&#x0582;&#x0576; &#x0584;&#x0561;&#x0572;&#x0561;&#x0584;&#x0561;&#x056f;&#x0561;&#x0576; &#x0578;&#x0582; &#x057a;&#x0561;&#x057f;&#x0565;&#x0580;&#x0561;&#x0566;&#x0574;&#x0561;&#x056f;&#x0561;&#x0576;, &#x0562;&#x0561;&#x0576;&#x0561;&#x057d;&#x056b;&#x0580;&#x0561;&#x056f;&#x0561;&#x0576;, &#x0565;&#x056f;&#x0565;&#x0572;&#x0565;&#x0581;&#x0561;&#x056f;&#x0561;&#x0576; / $c &#x056d;&#x0574;&#x0562;. &#x0533;&#x0580;&#x056b;&#x0563;&#x0578;&#x0580; &#x0533;&#x0561;&#x057a;&#x0561;&#x0580;&#x0561;&#x0573;&#x0565;&#x0561;&#x0576;, &#x0544;. &#x0553;&#x056b;&#x0582;&#x057d;&#x056f;&#x056b;&#x0582;&#x056c;&#x0565;&#x0561;&#x0576;, &#x0544;. &#x054b;&#x0561;&#x056d;&#x057b;&#x0561;&#x056d;&#x0565;&#x0561;&#x0576;.
+880    $6 260-02 / $a &#x056b; &#x054e;&#x0565;&#x0576;&#x0565;&#x057f;&#x056b;&#x056f; : $b &#x056b; &#x054e;&#x0561;&#x0576;&#x057d; &#x054d;&#x0580;&#x0562;&#x0578;&#x0575;&#x0576; &#x0542;&#x0561;&#x0566;&#x0561;&#x0580;&#x0578;&#x0582;, $c 1812-1816.
+880 1  $6 700-03 / $a &#x053f;&#x0561;&#x0580;&#x0561;&#x057a;&#x0565;&#x057f;&#x0565;&#x0561;&#x0576;, &#x0533;&#x0580;&#x056b;&#x0563;&#x0578;&#x0580; &#x053d;&#x0561;&#x057a;&#x0561;&#x057c;&#x0561;&#x0573;&#x056b;.
+880 1  $6 700-04 / $a &#x0553;&#x056b;&#x0582;&#x057d;&#x056f;&#x056b;&#x0582;&#x056c;&#x0565;&#x0561;&#x0576;, &#x0544;.
+880 1  $6 700-05 / $a &#x054b;&#x0561;&#x056d;&#x057b;&#x0561;&#x056d;&#x0565;&#x0561;&#x0576;, &#x0544;&#x0561;&#x0576;&#x0578;&#x0582;&#x0567;&#x056c;.
+985    $a armenian
+
+02797cam a2200325 a 4500
+001 14877418
+005 20071121185039.0
+008 040502m19481961ai acf   b    000 0darm  
+035    $a (Uk)006842308
+906    $a p $b cbc $c undeter $d u $e ncip $f 20 $g y-nonroman
+010    $a   2007970013
+040    $a Uk $b eng $c Uk
+100 1  $6 880-01 $a Abovyan, Khach&#x02bf;atur, $d 1805-1848
+240 10 $a Works. $f 1948
+245 10 $6 880-02 $a Erkeri liakatar zhoghovatsu ut&#x02bf; hatorov / $c Kh. Abovyan ; [khmb. kolegia, Av. Isahakyan ... [et al.]].
+246 15 $6 880-03 $a Polnoe sobranie sochineniǐ v vosʹmi tomakh
+260    $6 880-04 $a Erevan : $b HSSṚ Gitut&#x02bf;yunneri Akademiai Hratarakch&#x02bf;ut&#x02bf;yun, $c 1948-1961.
+300    $a 8 v. in 10 books : $b ill., port. ; $c 26 cm.
+500    $a Illustrated end-papers.
+650  0 $a Armenian literature.
+700 1  $6 880-05 $a Isahakyan, Avetik&#x02bf;, $d 1875-1957
+710 2  $6 880-06 $a M. Abeghyani Anvan Grakanutʻyan Institut.
+852 41 $a British Library $b OC $j 17046.h.1
+880 1  $6 100-01 / $a &#x0531;&#x0562;&#x0578;&#x057e;&#x0575;&#x0561;&#x0576;, &#x053d;&#x0561;&#x0579;&#x0561;&#x057f;&#x0578;&#x0582;&#x0580;, $d 1805-1848.
+880 10 $6 245-02 / $a &#x0535;&#x0580;&#x056f;&#x0565;&#x0580;&#x056b; &#x056c;&#x056b;&#x0561;&#x056f;&#x0561;&#x057f;&#x0561;&#x0580; &#x056a;&#x0578;&#x0572;&#x0578;&#x057e;&#x0561;&#x056e;&#x0578;&#x0582; &#x0578;&#x0582;&#x0569; &#x0570;&#x0561;&#x057f;&#x0578;&#x0580;&#x0578;&#x057e; / $c &#x053d;. &#x0531;&#x0562;&#x0578;&#x057e;&#x0575;&#x0561;&#x0576; ; [&#x056d;&#x0574;&#x0562;. &#x056f;&#x0578;&#x056c;&#x0565;&#x0563;&#x056b;&#x0561; &#x0531;&#x057e;. &#x053b;&#x057d;&#x0561;&#x0570;&#x0561;&#x056f;&#x0575;&#x0561;&#x0576; ... [&#x0587; &#x0578;&#x0582;&#x0580;&#x0577;&#x0576;.]].
+880 15 $6 246-03 / $a Полное собрание сочинений в восьми томах
+880    $6 260-04 / $a &#x0535;&#x0580;&#x0565;&#x057e;&#x0561;&#x0576; : $b &#x0540;&#x054d;&#x054d;&#x054c; &#x0533;&#x056b;&#x057f;&#x0578;&#x0582;&#x0569;&#x0575;&#x0578;&#x0582;&#x0576;&#x0576;&#x0565;&#x0580;&#x056b; &#x0531;&#x056f;&#x0561;&#x0564;&#x0565;&#x0574;&#x056b;&#x0561;&#x056b; &#x0540;&#x0580;&#x0561;&#x057f;&#x0561;&#x0580;&#x0561;&#x056f;&#x0579;&#x0578;&#x0582;&#x0569;&#x0575;&#x0578;&#x0582;&#x0576;, $c 1948-1961.
+880 1  $6 700-05 / $a &#x053b;&#x057d;&#x0561;&#x0570;&#x0561;&#x056f;&#x0575;&#x0561;&#x0576;, &#x0531;&#x057e;&#x0565;&#x057f;&#x056b;&#x0584;, $d 1875-1957.
+880 2  $6 710-06 / $a &#x0544;. &#x0531;&#x0562;&#x0565;&#x0572;&#x0575;&#x0561;&#x0576;&#x056b; &#x0531;&#x0576;&#x057e;&#x0561;&#x0576; &#x0533;&#x0580;&#x0561;&#x056f;&#x0561;&#x0576;&#x0578;&#x0582;&#x0569;&#x0575;&#x0561;&#x0576; &#x053b;&#x0576;&#x057d;&#x057f;&#x056b;&#x057f;&#x0578;&#x0582;&#x057f;.
+985    $a armenian
+
+01512cab a2200301 a 4500
+001 14879015
+005 20071203081856.0
+008 040502m18641877tu mr|p       0   z0arm  
+035    $a (Uk)002824493
+906    $a p $b cbc $c undeter $d u $e ncip $f 20 $g y-nonroman
+010    $a   2007970001
+019 x  $a 2520240032
+040    $a Uk $b eng $c Uk
+245 00 $6 880-01 $a Hoys : $b [drōshak hayreneats, amsagir banasirakan].
+246 3  $a Huys
+246 3  $a Yuys
+260    $6 880-02 $a Armash : $b [Armashi Vank&#x02bf;], $c 1864-1877.
+300    $a v. ; $c 23 cm.
+500    $a Hoys. “Hope,” a monthly magazine of literature in modern Armenian, Western dialect, printed at the Convent of the Mother of God at Armash.
+505 0  $a Vol. I, 1-12 (1864-1865), II, 13-24 (1865-1866)
+650  0 $a Armenian literature $v Periodicals.
+650  0 $a Armenian language $v Periodicals.
+650  0 $a Armenians $x Religious life.
+655  4 $a Periodical publications.- Armash
+852 41 $a British Library $b OC $j 17070.g.3.
+880 00 $6 245-01 / $a &#x0545;&#x0578;&#x0575;&#x057d; : $b &#x0564;&#x0580;&#x0585;&#x0577;&#x0561;&#x056f; &#x0570;&#x0561;&#x0575;&#x0580;&#x0565;&#x0576;&#x0565;&#x0561;&#x0581;, &#x0561;&#x0574;&#x057d;&#x0561;&#x0563;&#x056b;&#x0580; &#x0562;&#x0561;&#x0576;&#x0561;&#x057d;&#x056b;&#x0580;&#x0561;&#x056f;&#x0561;&#x0576;].
+880    $6 260-02 / $a &#x0531;&#x0580;&#x0574;&#x0561;&#x0577; : $b [&#x0531;&#x0580;&#x0574;&#x0561;&#x0577;&#x056b; &#x054e;&#x0561;&#x0576;&#x0584;], $c 1864-1877.
+985    $a armenian2
+
diff --git a/test/marccol5.u8.marc b/test/marccol5.u8.marc
new file mode 100644 (file)
index 0000000..8b26e85
--- /dev/null
@@ -0,0 +1 @@
+01385cam a2200301Ka 4500001001300000003000600013005001700019008004100036040003000077020001500107020001800122035002000140041001100160092001400171090002200185049000900207245017900216260007900395300002200474500008300496546002500579650004500604650004500649700002300694880022100717880013300938994001201071\1eocm57665435 \1eOCoLC\1e20080328102918.0\1e050215s2004    ii       d    000 0 eng d\1e  \1faACN\1fcACN\1fdOCLCQ\1fdIXA\1fdOCL\1e  \1fa8176500623\1e  \1fa9788176500623\1e  \1fa(OCoLC)57665435\1e\1fabeneng\1e  \1fa491.44321\1e  \1faPK1687\1fb.E65 2004\1e  \1faLNNA\1e00\1f6880-01\1faEnglish-Bengali Bengali-English combined dictionary =\1fbIṃrājī - Bāṃlā Bāṃlā - Iṃrājī samshukuta diksánarī /\1fccompiled by Debasis Adhikary.\1e  \1faNew Delhi :\1fbWorld of Learning :\1fbDistributed by Star Publications,\1fc2004.\1e  \1fa1518 p. ;\1fc23 cm.\1e  \1fa"More than 90,000 total words from English to Bengali and Bengali to English."\1e  \1faBengali and English.\1e 0\1faEnglish language\1fvDictionaries\1fxBengali.\1e 0\1faBengali language\1fvDictionaries\1fxEnglish.\1e\1faAdhikary, Debasis.\1e00\1f6245-01\1faEnglish-Bengali Bengali-English combined dictionary =\1fbইংরাজী - বাংলা বাংলা - ইংরাজী সংযুক্ত ডিক্শনরী /\1fccompiled by Debasis Adhikary.\1e31\1f6246-00\1faইংরাজী - বাংলা বাংলা - ইংরাজী সংযুক্ত ডিক্শনরী\1e  \1faC0\1fbLNN\1e\1d02873nam a22005053i 4500001001300000003000600013005001700019008004100036040001300077035002000090041001300110050001600123049000900139100002400148240002500172245020900197246010100406250003100507260016100538300001100699440006000710546003500770500006200805500003300867504004100900650003200941650004900973700005201022700004801074700004401122740003901166740003501205880003201240880004601272880033401318880003801652880026101690880009601951880007302047880007102120880006102191880005302252880005002305994001202355\1eocm86174229 \1eOCoLC\1e20080328102918.0\1e070326s1977    ii       b    000 0 san d\1e  \1faSTF\1fcSTF\1e  \1fa(OCoLC)86174229\1e\1fasan\1fahin\1e04\1faPK511\1fb1977\1e  \1faLNNA\1e\1f6880-01\1faPāṇini.\1e10\1faAṣṭādhyāyī\1e10\1f6880-02\1faAṣṭādhyāyīsūtrapāṭhaḥ :\1fbPāṇinīyaśikṣā-liṅgānuśāsanasahitaśca /\1fcMaharṣipāṇinipraṇītaḥ ; upoddhātalekhakaḥ Śrīnārāyaṇa Miśraḥ.\1e15\1faAṣṭādhyāyīsūtrapāṭha :\1fbwith Pāṇinīyaśikṣā and Liṅgānuśāsana\1e  \1f6880-03\1fa1. saṃskaraṇa.\1e  \1f6880-04\1faVārāṇasī ;\1faDillī :\1fbCaukhambhā Oriyanṭāliyā ;\1faVārāṇasī :\1fbanya prāptisthāna, Caukhambhā Viśvabhāratī,\1fc1977.\1e  \1fa100 p.\1e 0\1f6880-05\1faGokuladāsa Saṃskr̥ta granthamālā ;\1fv29\1e  \1faIn Sanskrit; introd. in Hindi.\1e  \1fa"Sampādakaḥ Śrīnārāyaṇa Miśraḥ"--Cover.\1e  \1faAdded title page in English.\1e  \1faIncludes bibliographical references.\1e 0\1faSanskrit language\1fxGrammar.\1e 0\1faSanskrit language\1fxAccents and accentuation.\1e02\1f6880-06\1faPāṇini.\1ftPāṇinīyaśikṣā.\1e02\1f6880-07\1faPāṇini.\1ftLiṅgānuśāsana.\1e\1f6880-08\1faMiśra, Śrīnārāyaṇa.\1e02\1f6880-09\1faPāṇinīyaśikṣā.\1e02\1f6880-10\1faLiṅgānuśāsana.\1e\1f6100-01\1faपाणिनी.\1e10\1f6240-00\1faअष्टाध्यायी\1e10\1f6245-02\1faअष्टाध्यायीसूत्रपाठः :\1fbपाणिणीयशिक्षा-लिङ्गानुशासनसहितश्र्च /\1fcमहर्षिपाणिनिप्रणीतः ; उपोद्घातलेखकः श्रीनारायण मिश्रः.\1e  \1f6250-03\1fa1. संस्करण.\1e  \1f6260-04\1faवाराणसी ;\1faदिल्ली :\1fbचौखम्भा ओरियन्टालिया ;\1faवाराणसी :\1fbअन्य प्राप्तिस्थान, चौखम्भा विश्वभारती,\1fc1977.\1e 0\1f6440-05\1faगोकुलदास संस्कृत ग्रन्थमाला ;\1fv29\1e02\1f6700-06\1faपाणिनी.\1ftपाणिणीयशिक्षा\1e02\1f6700-07\1faपाणिनी.\1ftलिङ्गानुशासन.\1e\1f6700-08\1faमिश्र, श्रीनारायण.\1e02\1f6740-09\1faपाणिणीयशिक्षा.\1e02\1f6740-10\1faलिङ्गानुशासन.\1e  \1faC0\1fbLNN\1e\1d02242cam a2200433Ia 4500001001300000003000600013005001700019008004100036040003000077020002500107020001800132035002000150041001600170050002000186082001900206049000900225100002200234240004300256245013700299250001200436260007200448300004200520500004200562500007700604500007700681546003100758500002900789600002200818650004900840650004100889740004400930740002800974880006501002880017001067880031601237880013301553880011001686994001201796\1eocm44944167 \1eOCoLC\1e20080328102918.0\1e000906s2000    ilua          000 0 tam d\1e  \1faOCO\1fcOCO\1fdOCL\1fdOCLCQ\1fdTEF\1e  \1fa0967621208 :\1fc$24.95\1e  \1fa9780967621203\1e  \1fa(OCoLC)44944167\1e\1fatameng\1fhtam\1e 4\1faPL4758.9.T5\1fbT5\1e04\1fa894.811\1fbT597t\1e  \1faLNNA\1e\1faTiruvaḷḷuvar.\1e10\1f6880-01\1faThirukku ral.\1flTamil & English\1e10\1f6880-02\1faThirukkural :\1fbThamizh Marai = Tirukkural : the Holy Scripture /\1fc[by Tiruvalluvar ; English translation by P.S. Sundaram.].\1e  \1fa1st ed.\1e  \1faWoodridge, Ill. :\1fbInternational Tamil Language Foundation,\1fcc2000.\1e  \1fa1813 p. :\1fbill. (some col.) ;\1fc20 cm.\1e  \1faTamil text, with English translation.\1e  \1fa"An edition of this translation was published by Penguin Books in 1991."\1e  \1faSection 2 and section 3, English translation from Tamil by R. Natarajan.\1e  \1faText in Tamil and English.\1e  \1faNon-Latin script record.\1e00\1faTiruvaḷḷuvar.\1e 0\1faTamil literature\1fvTranslations into English.\1e 0\1faTamil language materials\1fxBilingual.\1e02\1faHandbook of Tamil culture and heritage.\1e02\1faTamils guide to future.\1e10\1f6240-01\1faதிரூக்கு றள்.\1flTamil & English\1e10\1f6245-02\1faதிரூக்குறள் :\1fbதமிழ் மறை = Tirukkural : the Holy Scripture /\1fc[by Tiruvalluvar ; English translation by P.S. Sundaram.]\1e\1f6505-00\1faSection 1: திரூக்குறள் : Tirukkural -- Section 2: தறிழ்ப் பண்பாட்டூக் கையேடூ : The handbook of Tamil culture and heritage -- Section 3: தமிழின எதிர்கால வழிகாட்டி : Tamils guide to future.\1e02\1f6740-00\1faதமிழ்ப் பண்பாட்டூக் கையேடூ : The handbook of Tamil culture and heritage.\1e02\1f6740-00\1faதமிழின எதிர்கால வழிகாட்டி : Tamils guide to future.\1e  \1faC0\1fbLNN\1e\1d01025cam a2200301Ia 4500001001300000003000600013005001700019008004100036040002300077020001500100020001800115035002000133090002600153049000900179100002600188245005000214250003300264260006200297300002100359500001100380546001300391655002900404880003800433880008400471880005500555880010100610994001200711\1eocm62425106 \1eOCoLC\1e20080328102918.0\1e051203s2002    th            000 f thaod\1e  \1faTEF\1fcTEF\1fdLNQ\1fdOCL\1e  \1fa9749204808\1e  \1fa9789749204801\1e  \1fa(OCoLC)62425106\1e  \1faPL4209.D837\1fbP57 2002\1e  \1faLNNA\1e\1f6880-01\1faDūangtawan.\1e10\1f6880-02\1faPhračhan sǣnkon /\1fcDūangtawan.\1e  \1f6880-03\1faPhim khrang thī 3.\1e  \1f6880-04\1faKrung Thēp :\1fbPhimkham Samnakphim,\1fc2545 [2002]\1e  \1fa154 p. ;\1fc21 cm.\1e  \1faNovel.\1e  \1faIn Thai.\1e 7\1faHumorous fiction.\1f2gsafd\1e\1f6100-01\1faดวงตะวัน.\1e10\1f6245-02\1faพระจันทร์แสนกล /\1fcดวงตะวัน.\1e  \1f6250-03\1faพิมพ์ครั้งที่ 3.\1e  \1f6260-04\1faกรุงเทพฯ :\1fbพิมพ์คำ สานักพิมพ์,\1fc2545.\1e  \1faC0\1fbLNN\1e\1d02684cam a2200409 a 4500001000900000005001700009008004100026035001800067906004500085010001700130040002900147043002100176050002100197100005600218245018400274260003900458300002900497440006300526500020300589504005300792600005600845610004700901650002300948651004200971651003801013700005801051852004201109880007901151880028801230880005501518880009401573880032001667880007901987880010102066880009102167985001602258\1e14876782\1e20071121181842.0\1e990326s1997    ai a     b    001 0 armo \1e  \1fa(Uk)006855813\1e  \1fap\1fbcbc\1fcundeter\1fdu\1fencip\1ff20\1fgy-nonroman\1e  \1fa   99189840 \1e  \1faDLC\1fbeng\1fcDLC\1fdDLC-R\1fdUk\1e  \1faa-ai---\1faa-tu---\1e00\1faBX121\1fb.S63 1997\1e\1f6880-01\1faSmbatyantsʿ, Artak,\1fcEpiskopos,\1fd1876-1937\1e10\1f6880-02\1faArtak Episkopos Smbatyantsʿ (Taushetsʿi) : hogevor, grakan, patma-banasirakan gortsuneutʿyuně ev gndakaharutʿyuně, 1876-1937 tʿtʿ. /\1fckazmetsʿ Sandro Behbudyan.\1e  \1f6880-03\1faErevan :\1fb"Anahit",\1fc1997.\1e  \1fa691 p. :\1fbill. ;\1fc27 cm.\1e 0\1f6880-04\1faVaveragrer Hay Ekeghetsʿu patmutʿyan ;\1fvgirkʿ 3\1e  \1f6880-05\1faAt head of title: Hayastani Hanrapetutʿyan Kaṛavarutʿyann aṛěntʿer. Arkhivayin Gortsi Varchʿutʿyun. Arvesti, Grakanutʿyan ev Mamuli Pʿastatʿghtʿeri Petakan Kentronakan Arkhiv.\1e  \1faIncludes bibliographical references and indexes.\1e10\1f6880-06\1faSmbatyantsʿ, Artak,\1fcEpiskopos,\1fd1876-1937\1e20\1f6880-07\1faArmenian Church\1fxHistory\1fvSources.\1e 0\1faArmenians\1fzTurkey.\1e 0\1faArmenia\1fxHistory\1fy1801-1900\1fvSources.\1e 0\1faArmenia\1fxHistory\1fy1901-\1fvSources.\1e\1f6880-08\1faBehbudyan, Sandro\1fq(Sandro Artashesi),\1fd1934-\1e41\1faBritish Library\1fbOC\1fjHEC.1994.a.294/3\1e\1f6100-01 /\1faՍմբատյանց, Արտակ,\1fcԵբիսկոպոս,\1fd1876-1937.\1e10\1f6245-02 /\1faԱրտակ Եբիսկոպոս Սմբատյանց (Տաուշեցի) : հոգեվոր, գրական պատմա-բանասիրական գործունեությունը եվ գնդակահարությունը, 1876-1937 թթ. /\1fcկազմեց Սանդրո Բեհբության.\1e  \1f6260-03 /\1faԵրեվան :\1fb«Անահիտ»,\1fc1997.\1e 0\1f6440-04 /\1faՎավերագրեր Հայ Եկեղեցու պատմության ;\1fvգիրք 3\1e  \1f6500-05 /\1faՏիտղոսի գլուխ: Հայաստանի Հանրապետության Կառավարության առընթեր. Արխիվային Գործի Վարչություն. Արվեստի, Գրականության եվ Մամուլի Բաստաթղթերի Պետական Կենտրոնական Արխիվ.\1e10\1f6600-06 /\1faՍմբատյանց, Արտակ,\1fcԵբիսկոպոս,\1fd1876-1937.\1e20\1f6610-07 /\1faՀայաստանեայց Ս. Եկեղեցի\1fxՊատմութիւն\1fvԱղբիւրներ.\1e\1f6700-08 /\1faԲեհբության, Սանդրո,\1fq(Սանդրո Արտաշեսի),\1fd1934-\1e  \1faarmenian LC\1e\1d01466 am a2200349 a 4500001000900000005001700009008004100026035001800067906004500085010001700130035002300147040002900170043001200199050002000211245003700231260008800268300003500356505003100391610005100422650003800473650003100511650003400542650004700576650004900623710005100672852004000723880005400763880013100817880007600948880007601024985001601100\1e14876783\1e20071121181846.0\1e040502m19461951sy ac         000 0 arm  \1e  \1fa(Uk)006881105\1e  \1fap\1fbcbc\1fcundeter\1fdu\1fencip\1ff20\1fgy-nonroman\1e  \1fa  2003207810\1e  \1fa(OCoLC)ocm51506679\1e  \1faDLC\1fbeng\1fcDLC\1fdOCoLC\1fdUk\1e  \1faa-sy---\1e00\1faBV4539.A75\1fbM36\1e00\1f6880-01\1faMananay :\1fbtaregrkʿoyk.\1e  \1f6880-02\1faHalēp :\1fbHratarakutʿiwn Hogewor Eghbarutʿean Eritasardatsʿ,\1fc1946-1951\1e  \1fa2 v. :\1fbill., ports. ;\1fc23 cm.\1e\1fa[1]. 1946, 5-6. 1950-1951.\1e20\1f6880-03\1faHogewor Eghbayrutʿiwn Eritasardatsʿ.\1e 0\1faArmenians\1fxReligious life\1fzSyria.\1e 0\1faAlmanacs, Armenian\1fzSyria.\1e 0\1faYouth\1fxReligious life\1fzSyria.\1e 0\1faArmenians\1fzSyria\1fxSocial life and customs.\1e 0\1faArmenians\1fzLebanon\1fxSocial life and customs.\1e\1f6880-04\1faHogewor Eghbayrutʿiwn Eritasardatsʿ.\1e41\1faBritish Library\1fbOC\1fjHEC.2002.a.492\1e00\1f6245-01 /\1faՄանանայ :\1fbտարեգրքոյկ.\1e  \1f6260-02 /\1faՀալէպ :\1fbՀրատարակութիւն Հոգեւոր Եղբայրութեան Երիտասրդաց,\1fc1946-1951.\1e20\1f6610-03 /\1faՀոգեւոր Եղբայրութիւն Երիտասրդաց.\1e\1f6710-04 /\1faՀոգեւոր Եղբայրութիւն Երիտասրդաց.\1e  \1faarmenian LC\1e\1d01818cab a2200385 a 4500001000900000005001700009008004100026035001800067906004500085010001700130019001500147040001600162245007400178246000900252260008500261300001700346500004700363500008600410505014700496610006000643650002600703650004000729651003800769651003300807655003700840710006000877740002200937852003500959880010200994880011901096880008901215880008901304880002601393985001301419\1e14877410\1e20071121185010.0\1e040502m18971900enkmr|p       0   z0arm  \1e  \1fa(Uk)002848266\1e  \1fap\1fbcbc\1fcundeter\1fdu\1fencip\1ff20\1fgy-nonroman\1e  \1fa  2007970004\1e\1fa2532250240\1e  \1faUk\1fbeng\1fcUk\1e00\1f6880-01\1faMart :\1fb[amsatʿertʿ, ōrgan Hnchʿakean Kusaktsʿutʿean].\1e\1faMard\1e  \1f6880-02\1faLondon :\1fb[Sotsʿial Demokrat Hnchʿakean Kusaktsʿutʿiwn],\1fc1897-1900.\1e  \1fav. ;\1fc44 cm.\1e  \1fa"Battle": an Armenian political newspaper.\1e  \1fa"Mart" published after 1897, as "Hnchʿak" could not be due to legal proceedings.\1e\1faI year, no. 1 (15 Apr., 1897)-10 (10 Apr., 1898); II year, no. 11 (7 May, 1898)-16 (Mar., 1899); III year, no. 17 (Aug., 1899)-27 (Oct., 1900)\1e20\1f6880-03\1faSotsʿial Demokrat Hnchʿakean Kusaktsʿutʿiwn\1e 0\1faArmenian periodicals.\1e 0\1faArmenians\1fxPolitics and government.\1e 0\1faArmenia\1fxPolitics and government.\1e 0\1faArmenia\1fxHistory\1fy1801-1900.\1e 4\1faPeriodical publications.- London\1e\1f6880-04\1faSotsʿial Demokrat Hnchʿakean Kusaktsʿutʿiwn\1e\1f6880-05\1faHnchʿak.\1e41\1faBritish Library\1fbHMNTS\1fjOP.411\1e00\1f6245-01 /\1faՄարտ :\1fb[ամսաթերթ, օրգան Հնչակեան Կուսակցութեան].\1e  \1f6260-02 /\1faԼոնդոն :\1fb[Սոցիալ Դեմոկրատ Հնչակեան Կուսակցութիւն],\1fc1897-1900.\1e20\1f6610-03 /\1faՍոցիալ Դեմոկրատ Հնչակեան Կուսակցութիւն.\1e\1f6710-04 /\1faՍոցիալ Դեմոկրատ Հնչակեան Կուսակցութիւն.\1e\1f6740-05 /\1faՀնչակ.\1e  \1faarmenian\1e\1d03105cab a2200601 a 4500001000900000005001700009008004100026035001800067906004500085010001700130019001500147035002000162040001600182041002300198043002100221245009300242246002200335246002800357246005500385246007300440246005200513246003700565260011000602300003300712310003100745321002600776362004400802362002000846500012700866500007000993505007201063515002701135546002801162650002801190650004701218650003901265651002601304651003901330655003601369700004901405852003601454880013301490880008201623880010201705880007101807880005601878880013901934880006102073880020202134880009302336880006102429985001302490\1e14877413\1e20071121185021.0\1e000316d18551865fr er p       0   z0armod\1e  \1fa(Uk)002863571\1e  \1fap\1fbcbc\1fcundeter\1fdu\1fencip\1ff20\1fgy-nonroman\1e  \1fa  2007970007\1e\1fa2541830122\1e  \1fa(OCoLC)43646516\1e  \1faUk\1fbeng\1fcUk\1e\1faarm\1fafre\1farus\1fharm\1e  \1faa-ai---\1fae------\1e00\1f6880-01\1faMaseatsʿ aghawni :\1fbawetaber Hayastaneaytsʿ /\1fc[khmb. Gabriēl Ayvazeantsʿ].\1e15\1faColombe du Massis\1e15\1faMessager de l'Arménie\1e13\1f6880-02\1faMaseatsʿ aghawni awetaber Hayastaneaytsʿ\1e14\1f6880-03\1faMaseatsʿ aghawni ew Tsiatsan Hayastaneaytsʿ\1ff<Sept. 1861->\1e30\1f6880-04\1faTsiatsan Hayastaneaytsʿ\1ff<Sept. 1861->\1e30\1f6880-05\1faAwetaber Hayastaneaytsʿ\1e  \1f6880-06\1faPʿariz :\1fb[Khmbagir ew hratarakichʿ Gabriēl Ayvazeantsʿ],\1fc1855-\1fe(Paris :\1ffImp. W. Remquet)\1e  \1fav. :\1fbill., ports. ;\1fc32 cm.\1e  \1faBiweekly,\1fb<1 Sept. 1861->\1e  \1faMonthly,\1fbJan. 1855->\1e\1f6880-07\1fa1. tari, tʿiw 1 (Hunuar 1855)-\1e\1faCeased in 1865.\1e  \1f6880-08\1faImprint varies: Paris : i Granotsʿi Chaniki Aramean, Jan. 1856-> ; Theodosia : Khalipean Usumnaran, <Sept. 1861->\1e  \1f6880-09\1faLatest issue consulted: 6. tari, tʿiw 17 (15 Sept. 1861)\1e\1faVol. I (1855); vol. II (1856); vol. III (1857); vol. VI, 1-8 (1861)\1e  \1faNot published in 1859.\1e  \1faIn Armenian and French.\1e 0\1faArmenians\1fvPeriodicals.\1e 0\1faArmenians\1fzForeign countries\1fvPeriodicals.\1e 0\1faArmenians\1fvBiography\1fvPeriodicals.\1e 0\1faArmenia\1fvPeriodicals.\1e 0\1faEurope\1fv19th century\1fvPeriodicals.\1e 4\1faPeriodical publications.- Paris\1e\1f6880-10\1faAyvazovskʿi, Gabriēl,\1fd1812-1880.\1e41\1faBritish Library\1fbOC\1fj17070.g.5.\1e00\1f6245-01 /\1faՄասեաց աղաւնի :\1fbաւետաբեր Հայաստանեայց /\1fc[խմբ. Գաբրիէլ Այվազեանց].\1e13\1f6246-02 /\1faՄասեաց աղաւնի աւետաբեր Հայաստանեայց\1e14\1f6246-03 /\1faՄասեաց աղաւնի եւ Ծիածան Հայաստանեայց\1ff<Սեպտ. 1861->\1e30\1f6246-04 /\1faԾիածան Հայաստանեայց\1ff<Սեպտ. 1861->\1e30\1f6246-05 /\1faԱւետաբեր Հայաստանեայց\1e  \1f6260-06 /\1faՓարիզ :\1fb[Խմբագիր և հրատարակիչ Գաբրիէլ Այվազեանց],\1fc1855-\1fe(Paris :\1ffImp. W. Remquet)\1e\1f6362-07 /\1fa1. տարի, թիւ 1 (Յունուար 1855)-\1e  \1f6500-08 /\1faՏարբեր հրատ.: Փարիզ : ի Գրանոցի Ճանիկի Արամեան, Յունուար 1856-> ; Թեոդոսիա : Խալիպեան Ուսումնարան, <Սեպտ. 1861->\1e  \1f6500-09 /\1faՔննուած վերջին թիւ: 6. տարի, թիւ 17 (15 Սեպտ. 1861)\1e\1f6700-10 /\1faԱյվազեանց, Գաբրիէլ\1fd1812-1880.\1e  \1faarmenian\1e\1d01794 ab a2200349 a 4500001000900000005001700009008004100026035001800067906004500085010001700130019001500147040001600162245020800178246002100386260006000407300001700467500002900484650002800513651004500541651006100586651007300647700004400720700003000764700003500794852003600829880031900865880008801184880006701272880004201339880005001381985001301431\1e14877417\1e20071121185036.0\1e040502m18121816it wu|p       0   a0arm  \1e  \1fa(Uk)002870975\1e  \1fap\1fbcbc\1fcundeter\1fdu\1fencip\1ff20\1fgy-nonroman\1e  \1fa  2007970012\1e\1fa2543960295\1e  \1faUk\1fbeng\1fcUk\1e00\1f6880-01\1faDitak Biwzandean :\1fbshabatʿatʿertʿ apa erkshapatʿatʿertʿ, patmutʿiwn kʿaghakʿagan u paterazmakan, banasirakan, ekeghetsakan /\1fckhmb. Grigor Gaparachean, M. Pʿiwskiwlean, M. Jakhjakhean.\1e\1faTidag Piwzantean\1e  \1f6880-02\1fai Venetik :\1fbi Vans Srboyn Ghazaru,\1fc1812-1816.\1e  \1fav. ;\1fc23 cm.\1e  \1faBegan 1808; ceased 1816.\1e 0\1faArmenians\1fvPeriodicals.\1e 0\1faEurope\1fxHistory\1fy1789-1815\1fvPeriodicals.\1e 0\1faEurope\1fxPolitics and government\1fy1789-1915\1fvPeriodicals.\1e 0\1faFrance\1fxHistory\1fyConsulate and First Empire, 1799-1815\1fvPeriodicals.\1e\1f6880-03\1faKarapetean, Grigor Khapaṛachi\1e\1f6880-04\1faPʿiwskiwlean, M.\1e\1f6880-05\1faJakhjakhean, Manuēl.\1e41\1faBritish Library\1fbOC\1fj17070.d.3.\1e00\1f6245-01 /\1faԴիտակ Բիւզանդեան :\1fbշաբաթաթերթ ապա երկշաբաթաթերթ, պատմութիւն քաղաքական ու պատերազմական, բանասիրական, եկեղեցական /\1fcխմբ. Գրիգոր Գապարաճեան, Մ. Փիւսկիւլեան, Մ. Ջախջախեան.\1e  \1f6260-02 /\1faի Վենետիկ :\1fbի Վանս Սրբոյն Ղազարու,\1fc1812-1816.\1e\1f6700-03 /\1faԿարապետեան, Գրիգոր Խապառաճի.\1e\1f6700-04 /\1faՓիւսկիւլեան, Մ.\1e\1f6700-05 /\1faՋախջախեան, Մանուէլ.\1e  \1faarmenian\1e\1d01672cam a2200325 a 4500001000900000005001700009008004100026035001800067906004500085010001700130040001600147100004500163240001700208245011500225246005800340260008700398300004600485500002800531650002500559700004400584710005500628852003500683880006000718880018100778880009000959880013301049880006001182880009101242985001301333\1e14877418\1e20071121185039.0\1e040502m19481961ai acf   b    000 0darm  \1e  \1fa(Uk)006842308\1e  \1fap\1fbcbc\1fcundeter\1fdu\1fencip\1ff20\1fgy-nonroman\1e  \1fa  2007970013\1e  \1faUk\1fbeng\1fcUk\1e\1f6880-01\1faAbovyan, Khachʿatur,\1fd1805-1848\1e10\1faWorks.\1ff1948\1e10\1f6880-02\1faErkeri liakatar zhoghovatsu utʿ hatorov /\1fcKh. Abovyan ; [khmb. kolegia, Av. Isahakyan ... [et al.]].\1e15\1f6880-03\1faPolnoe sobranie sochineniǐ v vosʹmi tomakh\1e  \1f6880-04\1faErevan :\1fbHSSṚ Gitutʿyunneri Akademiai Hratarakchʿutʿyun,\1fc1948-1961.\1e  \1fa8 v. in 10 books :\1fbill., port. ;\1fc26 cm.\1e  \1faIllustrated end-papers.\1e 0\1faArmenian literature.\1e\1f6880-05\1faIsahakyan, Avetikʿ,\1fd1875-1957\1e\1f6880-06\1faM. Abeghyani Anvan Grakanutʻyan Institut.\1e41\1faBritish Library\1fbOC\1fj17046.h.1\1e\1f6100-01 /\1faԱբովյան, Խաչատուր,\1fd1805-1848.\1e10\1f6245-02 /\1faԵրկերի լիակատար ժողովածու ութ հատորով /\1fcԽ. Աբովյան ; [խմբ. կոլեգիա Ավ. Իսահակյան ... [և ուրշն.]].\1e15\1f6246-03 /\1faПолное собрание сочинений в восьми томах\1e  \1f6260-04 /\1faԵրեվան :\1fbՀՍՍՌ Գիտությունների Ակադեմիաի Հրատարակչություն,\1fc1948-1961.\1e\1f6700-05 /\1faԻսահակյան, Ավետիք,\1fd1875-1957.\1e\1f6710-06 /\1faՄ. Աբեղյանի Անվան Գրականության Ինստիտուտ.\1e  \1faarmenian\1e\1d01187cab a2200301 a 4500001000900000005001700009008004100026035001800067906004500085010001700130019001500147040001600162245006500178246000900243246000900252260005200261300001700313500014700330505005200477650003800529650003600567650003100603655003700634852003600671880009900707880006500806985001400871\1e14879015\1e20071203081856.0\1e040502m18641877tu mr|p       0   z0arm  \1e  \1fa(Uk)002824493\1e  \1fap\1fbcbc\1fcundeter\1fdu\1fencip\1ff20\1fgy-nonroman\1e  \1fa  2007970001\1e\1fa2520240032\1e  \1faUk\1fbeng\1fcUk\1e00\1f6880-01\1faHoys :\1fb[drōshak hayreneats, amsagir banasirakan].\1e\1faHuys\1e\1faYuys\1e  \1f6880-02\1faArmash :\1fb[Armashi Vankʿ],\1fc1864-1877.\1e  \1fav. ;\1fc23 cm.\1e  \1faHoys. “Hope,” a monthly magazine of literature in modern Armenian, Western dialect, printed at the Convent of the Mother of God at Armash.\1e\1faVol. I, 1-12 (1864-1865), II, 13-24 (1865-1866)\1e 0\1faArmenian literature\1fvPeriodicals.\1e 0\1faArmenian language\1fvPeriodicals.\1e 0\1faArmenians\1fxReligious life.\1e 4\1faPeriodical publications.- Armash\1e41\1faBritish Library\1fbOC\1fj17070.g.3.\1e00\1f6245-01 /\1faՅոյս :\1fbդրօշակ հայրենեաց, ամսագիր բանասիրական].\1e  \1f6260-02 /\1faԱրմաշ :\1fb[Արմաշի Վանք],\1fc1864-1877.\1e  \1faarmenian2\1e\1d
\ No newline at end of file
index 08394ed..c5184d7 100644 (file)
@@ -94,7 +94,7 @@ static int tst_convert_x(yaz_iconv_t cd, const char *buf, const char *cmpbuf,
 {
     int ret = 1;
     WRBUF b = wrbuf_alloc();
-    char outbuf[12];
+    char outbuf[16];
     size_t inbytesleft = strlen(buf);
     const char *inp = buf;
     int rounds = 0;
@@ -489,9 +489,9 @@ static void tst_marc8_to_latin1(void)
     yaz_iconv_close(cd);
 }
 
-static void tst_utf8_to_marc8(void)
+static void tst_utf8_to_marc8(const char *marc8_type)
 {
-    yaz_iconv_t cd = yaz_iconv_open("MARC8", "UTF-8");
+    yaz_iconv_t cd = yaz_iconv_open(marc8_type, "UTF-8");
 
     YAZ_CHECK(cd);
     if (!cd)
@@ -697,7 +697,9 @@ int main (int argc, char **argv)
     tst_advance_to_utf8();
     tst_utf8_to_advance();
 
-    tst_utf8_to_marc8();
+    tst_utf8_to_marc8("marc8");
+    tst_utf8_to_marc8("marc8lossy");
+    tst_utf8_to_marc8("marc8lossless");
 
     tst_latin1_to_marc8();
 
index f7d1ce4..0f20969 100755 (executable)
@@ -32,7 +32,7 @@ for f in ${srcdir}/marccol?.u8.marc; do
     fi
 
     filem=`echo $fb | sed 's/u8/m8/'`.marc
-    ../util/yaz-marcdump -o marc -f utf8 -t marc8 $f >$filem
+    ../util/yaz-marcdump -o marc -f utf8 -t marc8lossless $f >$filem
 
     DIFF=${fb}.2.lst.diff
     NEW=${fb}.2.lst.new