diff --git a/import/SolrMarc.jar b/import/SolrMarc.jar
index 6927f92571ef57e06fb186d535e97d5da25359c6..6e0dc8d1c7de1a80977ab92e1581abfd3783d864 100644
Binary files a/import/SolrMarc.jar and b/import/SolrMarc.jar differ
diff --git a/import/VuFindIndexer.jar b/import/VuFindIndexer.jar
index c9fd541ef9824d400e18f16ce5a29ea2be705b66..31506f82194ba0e25982848df5904856249ff7fd 100644
Binary files a/import/VuFindIndexer.jar and b/import/VuFindIndexer.jar differ
diff --git a/import/bin/deletefields b/import/bin/deletefields
new file mode 100644
index 0000000000000000000000000000000000000000..eb768bfeea7480305f02144bfea5dbd6ef58165d
--- /dev/null
+++ b/import/bin/deletefields
@@ -0,0 +1,30 @@
+#! /bin/bash
+# deletefields
+# delete specified fields or subfields from records
+# $Id: deletefields
+
+E_BADARGS=65
+
+scriptdir=$( (cd -P $(dirname $0) && pwd) )
+if ! [ -e $scriptdir/SolrMarc.jar ] 
+then
+  scriptdir=$( (cd -P $(dirname $0)/.. && pwd) )
+fi
+
+if ! [ -p /dev/stdin ]
+then  
+  if [ $# -eq 0 ]
+  then
+    echo "    Usage: `basename $0` [config.properties] ./path/to/marc.mrc "
+    echo "      Note that if the config.properties file is not specified the Jarfile will be searched for"
+    echo "      a file whose name ends with \"config.properties\""
+    echo "    Usage: cat /path/to/big/marcfile.mrc | `basename $0` 'fieldspec/search_string'"
+    echo "      would get the records in the file that have search_string in the fieldspec  (e.g. '245a/Jefferson')" 
+    exit $E_BADARGS
+  fi
+fi
+
+java -Dsolrmarc.main.class="org.solrmarc.marc.MarcPrinter" -Dmarc.delete_subfields="$1" -Dmarc.combine_records="" -jar $scriptdir/SolrMarc.jar translate $2 $3 
+
+exit 0
+
diff --git a/import/bin/deletefields.bat b/import/bin/deletefields.bat
new file mode 100644
index 0000000000000000000000000000000000000000..7f209aa359770cad5b14b586e6e3443f78144063
--- /dev/null
+++ b/import/bin/deletefields.bat
@@ -0,0 +1,20 @@
+@echo off
+:: filterrecords.bat
+:: Grep for marc records
+:: $Id: filterrecords.bat
+setlocal
+::Get the current batch file's short path
+for %%x in (%~f0) do set scriptdir=%%~dpsx
+for %%x in (%scriptdir%) do set scriptdir=%%~dpsx
+
+if EXIST %scriptdir%SolrMarc.jar goto doit
+pushd %scriptdir%..
+for %%x in (%CD%) do set scriptdir=%%~sx\
+popd
+
+:doit
+
+java -Dsolrmarc.main.class="org.solrmarc.marc.MarcPrinter" -Dmarc.delete_subfields="%1" -Dmarc.combine_records="" -jar %scriptdir%SolrMarc.jar translate %2 %3 
+goto done
+
+:done
diff --git a/import/bin/hathifetch b/import/bin/hathifetch
index cca756633acfe1685a04e78641ed9a5db5de2a5f..6ebd4ad87f9ebb802d6d0f4ffff625350a530bb8 100644
--- a/import/bin/hathifetch
+++ b/import/bin/hathifetch
@@ -20,6 +20,7 @@ then
     echo "      or : cat file_with_hathi_ids | `basename $0` [-s NumToSkip] [-n NumToReturn]"
     echo "      other options  -d = debug     retrieve and print the recordURL strings only"
     echo "                     -v = verbose   fetch records and print them out as Ascii Marc"
+    echo "                     -856 = add 856   add 856 fields to the records based on the 974 fields"
     echo "      Note: file_with_ids can be Hathi Record numbers only (one per line), or Hathi Data listings"
     echo "            like the following line where the Hathi Record number is one of several entries on a line."
     echo "      Note also that the program supports reading gzipped input files."
@@ -27,6 +28,6 @@ then
   fi
 fi
 
-java -Dsolrmarc.main.class="org.solrmarc.tools.HathiPlunderer" -jar $scriptdir/SolrMarc.jar $1 $2 $3 $4 $5 $6 $7 $8 $9 $10 $11 $12
+java -Dsolrmarc.main.class="org.solrmarc.tools.HathiPlunderer" -jar $scriptdir/SolrMarc.jar $1 $2 $3 $4 $5 $6 $7 $8 $9
 
-exit 0
+exit $?
diff --git a/import/bin/hathifetch.bat b/import/bin/hathifetch.bat
index 00ced14305184832d5a2b187a348f8171b9d03e9..84d55e78c6a2bdeae4daf660e1df3520e291c20c 100644
--- a/import/bin/hathifetch.bat
+++ b/import/bin/hathifetch.bat
@@ -20,6 +20,7 @@ if "%1"=="" GOTO doit
     echo "      or : cat file_with_hathi_ids | hathifetch.bat [-s NumToSkip] [-n NumToReturn]"
     echo "      other options  -d = debug     retrieve and print the recordURL strings only"
     echo "                     -v = verbose   fetch records and print them out as Ascii Marc"
+    echo "                     -856 = add856   add 856 fields to the records based on the 974 fields"
     echo "      Note: file_with_ids can be Hathi Record numbers only (one per line), or Hathi Data listings"
     echo "            like the following line where the Hathi Record number is one of several entries on a line."
     echo "      Note also that the program supports reading gzipped input files."
@@ -27,6 +28,6 @@ GOTO done
 
 :doit
 
-java -Dsolrmarc.main.class="org.solrmarc.marc.MarcPrinter" -jar %scriptdir%SolrMarc.jar index %1 %2 %3
+java -Dsolrmarc.main.class="org.solrmarc.tools.HathiPlunderer" -jar %scriptdir%SolrMarc.jar %1 %2 %3 %4 %5 %6 %7 %8 %9
 
 :done
diff --git a/import/bin/indextest b/import/bin/indextest
index d154787a1fe3efaf64d4690004a55b610a453c29..bba9cb67ad578debf07cec9e3f58f9d44ec6eea8 100644
--- a/import/bin/indextest
+++ b/import/bin/indextest
@@ -23,7 +23,7 @@ then
   fi
 fi
 
-java -Dsolrmarc.main.class="org.solrmarc.marc.MarcPrinter" -jar $scriptdir/SolrMarc.jar index $1 $2 $3
+java -Dsolrmarc.main.class="org.solrmarc.marc.MarcPrinter" -jar $scriptdir/SolrMarc.jar index $1 $2 $3 $4 $5 $6
 
 exit 0
 
diff --git a/import/bin/indextest.bat b/import/bin/indextest.bat
index 89769c131792dfb2b3f5f6c5f02433b2eb209b0d..95c6596f3ee850b6d25cb566c335f043c61b0b8d 100644
--- a/import/bin/indextest.bat
+++ b/import/bin/indextest.bat
@@ -16,4 +16,4 @@ popd
 :doit
 ::echo BatchPath = %scriptdir%
 
-java -Dsolrmarc.main.class="org.solrmarc.marc.MarcPrinter" -jar %scriptdir%SolrMarc.jar index %1 %2 %3
+java -Dsolrmarc.main.class="org.solrmarc.marc.MarcPrinter" -jar %scriptdir%SolrMarc.jar index %1 %2 %3 %4 %5 %6
diff --git a/import/bin/marcsort b/import/bin/marcsort
index 06f4c3b37899aa2ee619a1e7a1321b11f72c6b8c..b63a2c650357750caabd68f984f28c545ca369fd 100644
--- a/import/bin/marcsort
+++ b/import/bin/marcsort
@@ -17,7 +17,7 @@ then
     exit $E_BADARGS
 fi
 
-java -Dsolrmarc.main.class="org.solrmarc.marc.MarcSorter" -jar $scriptdir/SolrMarc.jar $1 $2
+java -Dsolrmarc.main.class="org.solrmarc.marc.MarcSorter" -jar $scriptdir/SolrMarc.jar $1 $2 $3
 
 exit 0
 
diff --git a/import/bin/marcupdate b/import/bin/marcupdate
index b950a28e7fc25779265451e34483686271a0a1c2..7bae1904e3f0a8a87ed106bbf61854626dcbde56 100644
--- a/import/bin/marcupdate
+++ b/import/bin/marcupdate
@@ -19,5 +19,5 @@ if [ $# -eq 0 ]
 
 java -Dsolrmarc.main.class="org.solrmarc.marc.MarcMerger" -jar $scriptdir/SolrMarc.jar $1 $2 $3 $4 $5 $6 $7 $8 $9
 
-exit 0
+exit $?
 
diff --git a/import/translation_maps/README_MAPS b/import/translation_maps/README_MAPS
index 898bd7cd063ab8185e6fc7cd5a0eae242051847d..b7f4196cd5f607f02928cb609de54687fcf9773f 100644
--- a/import/translation_maps/README_MAPS
+++ b/import/translation_maps/README_MAPS
@@ -1 +1 @@
-This is the directory in which you should place locally defined translation maps.
\ No newline at end of file
+This is the directory in which you should place locally defined translation maps.
diff --git a/import/translation_maps/getformat_mixin_map.properties b/import/translation_maps/getformat_mixin_map.properties
index e9ea9e990976029f515c3ef66688c1f62f8127b4..ecbc9931f563c77d333bc43b817143a924056075 100644
--- a/import/translation_maps/getformat_mixin_map.properties
+++ b/import/translation_maps/getformat_mixin_map.properties
@@ -1,188 +1,216 @@
 #ContentType
-Art = Visual Materials
-ArtReproduction = Visual Materials
-Atlas = Map|Atlas
-Book = Book
-BookCollection = Book
-BookComponentPart = Book
-BookSeries = Book
-BookSubunit = Book
-Chart = Visual Materials
-ComputerBibliographicData = Computer Resource
-ComputerCombination = Computer Resource
-ComputerDocument = Computer Resource
-ComputerFile = Computer Resource
-ComputerFont = Computer Resource
-ComputerGame = Computer Resource
-ComputerInteractiveMultimedia = Computer Resource
-ComputerNumericData = Computer Resource
-ComputerOnlineSystem = Computer Resource
-ComputerProgram = Computer Resource
-ComputerRepresentational = Computer Resource
-ComputerSound = Computer Resource
-Database = Computer Resource
-Diorama = Physical Object
-Filmstrip = Filmstrip
-FlashCard = Visual Materials
-Game = Physical Object
-Globe = Map|Globe|Physical Object
-Graphic = Visual Materials
-Image = Visual Materials
-Kit = Kit
-LooseLeaf = Journal/Magazine|Looseleaf
-Manuscript = Manuscript
-Map = Map
-MapBound = Map
-MapManuscript = Map|Manuscript
-MapSeparate = Map
-MapSerial = Map
-MapSeries = Map
-MapSingle = Map
-MicroscopeSlide = Physical Object
-MixedMaterial = Mixed Materials
-Model = Physical Object
-MotionPicture = Film
-MusicalScore = Musical Score
-MusicalScoreManuscript = Musical Score|Manuscript
-MusicRecording = Sound Recording
-Newspaper = Journal/Magazine
-Pamphlet = Visual Materials
-Periodical = Journal/Magazine
-PhysicalObject = Physical Object
-Picture = Visual Materials
-ProjectedMedium = Projected Medium
-Realia = Physical Object
-Serial = Journal/Magazine
-SerialComponentPart = Journal/Magazine
-SerialIntegratingResource = Journal/Magazine
-Slide = Visual Materials
-SoundRecording = Sound Recording
-SpecialInstructionalMaterial = Special Instructional Material
-TechnicalDrawing = Visual Materials
-Thesis = Thesis or Dissertation
-Toy = Physical Object
-Transparency = Visual Materials
-Video = Video
-Website = Online|Computer Resource
+ContentType.Art = Visual Materials
+ContentType.ArtReproduction = Visual Materials
+ContentType.Atlas = Map|Atlas
+ContentType.Book = Book
+ContentType.BookCollection = Book
+ContentType.BookComponentPart = Book
+ContentType.BookSeries = Journal/Magazine
+ContentType.BookSubunit = Book
+ContentType.Chart = Visual Materials
+ContentType.ComputerBibliographicData = Computer Resource
+ContentType.ComputerCombination = Computer Resource
+ContentType.ComputerDocument = null
+ContentType.ComputerFile = Computer Resource
+ContentType.ComputerFont = Computer Resource
+ContentType.ComputerGame = Computer Resource
+ContentType.ComputerInteractiveMultimedia = Computer Resource
+ContentType.ComputerNumericData = Computer Resource
+ContentType.ComputerOnlineSystem = Computer Resource
+ContentType.ComputerProgram = Computer Resource
+ContentType.ComputerRepresentational = Computer Resource
+ContentType.ComputerSound = Computer Resource
+ContentType.Database = Computer Resource
+ContentType.Diorama = Physical Object
+ContentType.Filmstrip = Visual Materials
+ContentType.FlashCard = Visual Materials
+ContentType.Game = Physical Object
+ContentType.GovernmentDocumentFederal = Government Document|Gov Doc Fed
+ContentType.GovernmentDocumentState = Government Document|Gov Doc State
+ContentType.GovernmentDocumentStateUniversity = Gov Doc Univ
+ContentType.GovernmentDocumentLocal = Gov Doc Local
+ContentType.GovernmentDocumentInternational = Government Document|Gov Doc Intl
+ContentType.GovernmentDocumentOther = Gov Doc Other
+ContentType.Globe = Map|Globe|Physical Object
+ContentType.Graphic = Visual Materials
+ContentType.Image = Visual Materials
+ContentType.Kit = Kit
+ContentType.LooseLeaf = Journal/Magazine|Looseleaf
+ContentType.Manuscript = Manuscript
+ContentType.Map = Map
+ContentType.MapBound = Map
+ContentType.MapManuscript = Map|Manuscript
+ContentType.MapSeparate = Map
+ContentType.MapSerial = Map
+ContentType.MapSeries = Map
+ContentType.MapSingle = Map
+ContentType.MicroscopeSlide = Physical Object
+ContentType.MixedMaterial = Mixed Materials
+ContentType.Model = Physical Object
+ContentType.MotionPicture = Film
+ContentType.MusicalScore = Musical Score
+ContentType.MusicalScoreManuscript = Musical Score|Manuscript
+ContentType.MusicRecording = Sound Recording
+ContentType.Newspaper = Journal/Magazine
+ContentType.Pamphlet = Visual Materials
+ContentType.Periodical = Journal/Magazine
+ContentType.PhysicalObject = Physical Object
+ContentType.Picture = Visual Materials
+ContentType.ProjectedMedium = Visual Materials
+ContentType.Realia = Visual Materials
+ContentType.Serial = Journal/Magazine
+ContentType.SerialComponentPart = Journal/Magazine
+ContentType.SerialIntegratingResource = Journal/Magazine
+ContentType.Slide = Visual Materials
+ContentType.SoundRecording = Sound Recording
+ContentType.SpecialInstructionalMaterial = Special Instructional Material
+ContentType.TechnicalDrawing = Visual Materials
+ContentType.Thesis = Thesis/Dissertation
+ContentType.Toy = Physical Object
+ContentType.Transparency = Visual Materials
+ContentType.Video = Video
+ContentType.VisualKit = Visual Materials
+ContentType.Website = Online|Computer Resource
 
 #MediaType
-ActivityCard = Visual Materials
-Atlas = Map|Atlas
-Braille = Braille
-Chart = Visual Materials
-Collage = Visual Materials
-ComputerCard = Computer Media
-ComputerChipCartridge =  Computer Media
-ComputerDiscCartridge =  Computer Media
-ComputerDisk =  Computer Media
-ComputerFloppyDisk =  Computer Media
-ComputerMagnetoOpticalDisc =  Computer Media
-ComputerOpticalDisc =  Computer Media
-ComputerOpticalDiscCartridge =  Computer Media
-ComputerOther =  Computer Media
-ComputerTapeCartridge =  Computer Media
-ComputerTapeCassette =  Computer Media
-ComputerTapeReel =  Computer Media
-Drawing = Visual Materials
-Electronic = Computer Resource
-ElectronicDirect = Computer Resource
-FilmCassette = Projected Medium
-FilmOther = Projected Medium
-Filmslip = Projected Medium
-Filmstrip = Projected Medium|Filmstrip
-FilmstripCartridge = Projected Medium|Filmstrip
-FilmstripRoll = Projected Medium|Filmstrip
-FlashCard = Visual Materials
-Globe = Map|Globe
-GlobeCelestial = Map|Globe
-GlobeEarthMoon = Map|Globe
-GlobeOther = Map|Globe
-GlobePlanetary = Map|Globe
-GlobeTerrestrial = Map|Globe
-Icon = Visual Materials
-ImageOther = Visual Materials
-ImagePrint = Visual Materials
-Kit = Kit
-LooseLeaf = Journal/Magazine|Looseleaf
-Map = Map
-MapDiagram = Map
-MapModel = Map
-MapOther = Map
-MapProfile = Map
-MapSection = Map
-MapView = Map
-Microfiche = Microform
-MicroficheCassette = Microform
-Microfilm = Microform
-MicrofilmCartridge = Microform
-MicrofilmCassette = Microform
-MicrofilmReel = Microform
-MicrofilmRoll = Microform
-MicrofilmSlip = Microform
-Microform = Microform
-MicroformApetureCard = Microform
-Microopaque = Microform
-MusicalScore = Musical Score
-Online = Online
-Painting = Visual Materials
-Photo = Visual Materials
-PhotomechanicalPrint = Visual Materials
-Photonegative = Visual Materials
-PhotoPrint = Visual Materials
-Picture = Visual Materials
-Postcard = Visual Materials
-Poster = Visual Materials
-Print = Visual Materials
-PrintLarge = Visual Materials
-ProjectedMediumOther = Projected Medium
-Radiograph = Visual Materials
-SensorImage = Visual Materials
-Slide = Visual Materials
-Software = Computer Resource
-SoundCartridge = Cartridge
-SoundCassette = Cassette
-SoundCylinder = Cylinder
-SoundDisc = null
-SoundDiscCD = CD
-SoundDiscLP = LP
-SoundRecordingOther = Other Media
-SoundRoll = Roll
-SoundTapeReel = Tape Reel
-SoundTrackFilm = Sound Track Film
-SoundWireRecording = Wire Recording
-StudyPrint = Visual Materials
-TactileCombination = Physical Object
-TactileMoon = Physical Object
-TactileNoWritingSystem = Physical Object
-TactileOther = Physical Object
-TextOther = Physical Object
-Transparency = Visual Materials
-Video8mm = Video 8mm
-VideoBeta = Video Beta
-VideoBetacam = Video Betacam
-VideoBetacamSP = Video Betacam SP
-VideoBluRay = DVD|Blu-Ray
-VideoCartridge = Video Other
-VideoCassette = Video Other
-VideoCapacitance = Video CED
-VideoD2 = Video D-2
-VideoDisc = Video Disc
-VideoDVD = DVD
-VideoEIAJ = Video EIAJ
-VideoHi8 = Video Hi 8mm
-VideoLaserdisc = Laserdisc
-VideoMII = Video M-II
-VideoOther = Video Other
-VideoQuadruplex = Video Quadraplex
-VideoReel = Video Other
-VideoSuperVHS = Super-VHS
-VideoTypeC = Video Type C
-VideoUMatic = Video U-Matic
-VideoVHS = VHS
+MediaType.ActivityCard = Visual Materials
+MediaType.Atlas = Map|Atlas
+MediaType.Braille = Braille
+MediaType.Chart = Visual Materials
+MediaType.Collage = Visual Materials
+MediaType.ComputerCard = Computer Media
+MediaType.ComputerChipCartridge =  Computer Media
+MediaType.ComputerDiscCartridge =  Computer Media
+MediaType.ComputerDisk =  Computer Media
+MediaType.ComputerFloppyDisk =  Computer Media
+MediaType.ComputerMagnetoOpticalDisc =  Computer Media
+MediaType.ComputerOpticalDisc =  Computer Media
+MediaType.ComputerOpticalDiscCartridge =  Computer Media
+MediaType.ComputerOther =  Computer Media
+MediaType.ComputerTapeCartridge =  Computer Media
+MediaType.ComputerTapeCassette =  Computer Media
+MediaType.ComputerTapeReel =  Computer Media
+MediaType.Drawing = Visual Materials
+MediaType.Electronic = Computer Resource
+MediaType.Electronic245 = null
+MediaType.ElectronicDirect = Computer Resource
+MediaType.FilmCassette = Visual Materials
+MediaType.FilmOther = Visual Materials
+MediaType.Filmslip = Visual Materials
+MediaType.Filmstrip = Visual Materials|Filmstrip
+MediaType.FilmstripCartridge = Visual Materials|Filmstrip
+MediaType.FilmstripRoll = Visual Materials|Filmstrip
+MediaType.FlashCard = Visual Materials
+MediaType.Globe = Map|Globe
+MediaType.GlobeCelestial = Map|Globe
+MediaType.GlobeEarthMoon = Map|Globe
+MediaType.GlobeOther = Map|Globe
+MediaType.GlobePlanetary = Map|Globe
+MediaType.GlobeTerrestrial = Map|Globe
+MediaType.Icon = Visual Materials
+MediaType.ImageOther = Visual Materials
+MediaType.ImagePrint = Visual Materials
+MediaType.Kit = Kit
+MediaType.LooseLeaf = Journal/Magazine|Looseleaf
+MediaType.Map = Map
+MediaType.MapDiagram = Map
+MediaType.MapModel = Map
+MediaType.MapOther = Map
+MediaType.MapProfile = Map
+MediaType.MapSection = Map
+MediaType.MapView = Map
+MediaType.Microfiche = Microform
+MediaType.MicroficheCassette = Microform
+MediaType.Microfilm = Microform
+MediaType.MicrofilmCartridge = Microform
+MediaType.MicrofilmCassette = Microform
+MediaType.MicrofilmReel = Microform
+MediaType.MicrofilmRoll = Microform
+MediaType.MicrofilmSlip = Microform
+MediaType.Microform = Microform
+MediaType.MicroformApetureCard = Microform
+MediaType.Microopaque = Microform
+MediaType.MusicalScore = Musical Score
+MediaType.Online = Online
+MediaType.Painting = Visual Materials
+MediaType.Photo = Visual Materials
+MediaType.PhotomechanicalPrint = Visual Materials
+MediaType.Photonegative = Visual Materials
+MediaType.PhotoPrint = Visual Materials
+MediaType.Picture = Visual Materials
+MediaType.Postcard = Visual Materials
+MediaType.Poster = Visual Materials
+MediaType.Print = Print
+MediaType.PrintLarge = Large Print
+MediaType.ProjectedMediumOther = Visual Materials
+MediaType.Radiograph = Visual Materials
+MediaType.SensorImage = Visual Materials
+MediaType.Slide = Visual Materials
+MediaType.Software = Computer Resource
+MediaType.SoundCartridge = Cartridge
+MediaType.SoundCassette = Cassette
+MediaType.SoundCylinder = Cylinder
+MediaType.SoundDisc = null
+MediaType.SoundDiscCD = CD
+MediaType.SoundDiscLP = LP
+MediaType.SoundRecordingOther = Other Media
+MediaType.SoundRoll = Roll
+MediaType.SoundTapeReel = Tape Reel
+MediaType.SoundTrackFilm = Sound Track Film
+MediaType.SoundWireRecording = Wire Recording
+MediaType.StudyPrint = Visual Materials
+MediaType.TactileCombination = Physical Object
+MediaType.TactileMoon = Physical Object
+MediaType.TactileNoWritingSystem = Physical Object
+MediaType.TactileOther = Physical Object
+MediaType.TextOther = Book
+MediaType.Transparency = Visual Materials
+MediaType.Video8mm = Video|Video 8mm
+MediaType.VideoBeta = Video|Video Beta
+MediaType.VideoBetacam = Video|Video Betacam
+MediaType.VideoBetacamSP = Video|Video Betacam SP
+MediaType.VideoBluRay = Video|DVD|Blu-Ray
+MediaType.VideoCartridge = Video|Video Other
+MediaType.VideoCassette = Video|Video Other
+MediaType.VideoCapacitance = Video|Video CED
+MediaType.VideoD2 = Video|Video D-2
+MediaType.VideoDisc = Video|Video Disc
+MediaType.VideoDVD = Video|DVD
+MediaType.VideoEIAJ = Video|Video EIAJ
+MediaType.VideoHi8 = Video|Video Hi 8mm
+MediaType.VideoLaserdisc = Video|Laserdisc
+MediaType.VideoMII = Video|Video M-II
+MediaType.VideoOther = Video|Video Other
+MediaType.VideoOnline = Video|Online Video
+MediaType.VideoQuadruplex = Video|Video Quadraplex
+MediaType.VideoReel = Video|Video Other
+MediaType.VideoSuperVHS = Video|Super-VHS
+MediaType.VideoTypeC = Video|Video Type C
+MediaType.VideoUMatic = Video|Video U-Matic
+MediaType.VideoVHS = Video|VHS
+MediaType.VideoVHS_From500 = VHS
+MediaType.VideoDVD_From500 = DVD
+MediaType.VideoLaserdisc_From500 = Laserdisc
+MediaType.VideoBeta_From500 = Video Beta
+MediaType.VideoVHS_From300 = VHS
+MediaType.VideoDVD_From300 = DVD
+MediaType.VideoLaserdisc_From300 = Laserdisc
+
+
+#FormOfItem
+FormOfItem.Microfilm = Microform
+FormOfItem.Microfiche = Microform
+FormOfItem.Microopaque = Microform
+FormOfItem.PrintLarge = Large Print
+FormOfItem.Braille = Braille
+FormOfItem.Online = Online
+FormOfItem.ElectronicDirect = Computer Resource
+FormOfItem.Electronic = Computer Resource
+FormOfItem.Print = Print
 
 #CombinedType
-EBook = EBook
-EJournal = EJournal
+CombinedType.EBook = EBook
+CombinedType.EJournal = EJournal
 
 #ControlType
-Archive = Archive
+ControlType.Archive = Archive
diff --git a/import/translation_maps/getformat_mixin_unmap_map.properties b/import/translation_maps/getformat_mixin_unmap_map.properties
new file mode 100644
index 0000000000000000000000000000000000000000..6a967b53aafd9492a9ee4f903e83195f7de413fd
--- /dev/null
+++ b/import/translation_maps/getformat_mixin_unmap_map.properties
@@ -0,0 +1,218 @@
+#ContentType
+ContentType.Art = (Leader[6]=g k o r OR 006[0]=g k o r) AND (008[33]=a OR 006[16]=a)
+ContentType.ArtReproduction = (Leader[6]=g k o r OR 006[0]=g k o r) AND (008[33]=c OR 006[16]=c)
+ContentType.Book = Leader[67]=am
+ContentType.BookCollection = Leader[67]=ac
+ContentType.BookComponentPart = Leader[67]=aa
+ContentType.BookSeries = (Leader[67]=as OR 006[0]=s) AND (008[21]=m OR 006[4]=m)
+ContentType.BookSubunit = Leader[67]=ad
+ContentType.Chart = (Leader[6]=g k o r OR 006[0]=g k o r) AND (008[33]=n OR 006[16]=n)
+ContentType.ComputerBibliographicData = (Leader[6]=m OR 006[0]=m) AND (008[26]=e OR 006[9]=e)
+ContentType.ComputerCombination = (Leader[6]=m OR 006[0]=m) AND (008[26]=m OR 006[9]=m)
+ContentType.ComputerDocument = (Leader[6]=m OR 006[0]=m) AND (008[26]=d OR 006[9]=d)
+ContentType.ComputerFile = (Leader[6]=m OR 006[0]=m)
+ContentType.ComputerFont = (Leader[6]=m OR 006[0]=m)AND 008[26]=f OR 006[9]=f)
+ContentType.ComputerGame = (Leader[6]=m OR 006[0]=m) AND (008[26]=g OR 006[9]=g)
+ContentType.ComputerInteractiveMultimedia = (Leader[6]=m OR 006[0]=m) AND (008[26]=i OR 006[9]=i)
+ContentType.ComputerNumericData = (Leader[6]=m OR 006[0]=m) AND (008[26]=a OR 006[9]=a)
+ContentType.ComputerOnlineSystem = (Leader[6]=m OR 006[0]=m) AND (008[26]=j OR 006[9]=j)
+ContentType.ComputerProgram = (Leader[6]=m OR 006[0]=m) AND (008[26]=b OR 006[9]=b)
+ContentType.ComputerRepresentational = (Leader[6]=m OR 006[0]=m) AND (008[26]=c OR 006[9]=c)
+ContentType.ComputerSound = (Leader[6]=m OR 006[0]=m) AND (008[26]=h OR 006[9]=h)
+ContentType.Database = (Leader[67]=as OR 006[0]=s) AND (008[21]=d OR 006[4]=d)
+ContentType.Diorama = (Leader[6]=g k o r OR 006[0]=g k o r) AND (008[33]=d OR 006[16]=d)
+ContentType.Filmstrip = (Leader[6]=g k o r OR 006[0]=g k o r) AND (008[33]=f OR 006[16]=f)
+ContentType.FlashCard = (Leader[6]=g k o r OR 006[0]=g k o r) AND (008[33]=o OR 006[16]=o)
+ContentType.Game = (Leader[6]=g k o r OR 006[0]=g k o r) AND (008[33]=g OR 006[16]=g)
+ContentType.GovernmentDocumentFederal = Leader[6]=a s  AND (008[28]=f  OR 006[11]=f )
+ContentType.GovernmentDocumentState = Leader[6]=a s  AND (008[28]=s m  OR 006[11]= s m )
+ContentType.GovernmentDocumentStateUniversity = Leader[6]=a s  AND (008[28]=s  OR 006[11]= s AND 260b contains University)
+ContentType.GovernmentDocumentLocal = Leader[6]=a s  AND (008[28]=c l  OR 006[11]= c l )
+ContentType.GovernmentDocumentInternational = Leader[6]=a s  AND (008[28]=i  OR 006[11]= i )
+ContentType.GovernmentDocumentOther = Leader[6]=a s  AND (008[28]=a o z  OR 006[11]= a o z )
+ContentType.Graphic = (Leader[6]=g k o r OR 006[0]=g k o r) AND (008[33]=k OR 006[16]=k)
+ContentType.Image = (Leader[6]=k OR 006[0]=k)
+ContentType.Kit = (Leader[6]=o OR 006[0]=o)
+ContentType.LooseLeaf = (Leader[6]=as OR 006[0]=s) AND (008[21]=l OR 006[4]=l)
+ContentType.Manuscript = (Leader[6]=t OR 006[0]=t)
+ContentType.Map = (Leader[6]=e OR 006[0]=e)
+ContentType.MapAtlas = (Leader[6]=e OR 006[0]=e) OR f AND (008[25]=e OR 006[8]=e)
+ContentType.MapBound = (Leader[6]=e OR 006[0]=e) OR f AND (008[25]=g OR 006[8]=g)
+ContentType.MapGlobe = (Leader[6]=e OR 006[0]=e) OR f AND (008[25]=d OR 006[8]=d)
+ContentType.MapManuscript = (Leader[6]=f OR 006[0]=f)
+ContentType.MapSeparate = (Leader[6]=e OR 006[0]=e) OR f AND (008[25]=f OR 006[8]=f)
+ContentType.MapSerial = (Leader[6]=e OR 006[0]=e) OR f AND (008[25]=c OR 006[8]=c)
+ContentType.MapSeries = (Leader[6]=e OR 006[0]=e) OR f AND (008[25]=b OR 006[8]=b)
+ContentType.MapSingle = (Leader[6]=e OR 006[0]=e) OR f AND (008[25]=a OR 006[8]=a)
+ContentType.MicroscopeSlide = (Leader[6]=g k o r OR 006[0]=g k o r) AND (008[33]=p OR 006[16]=p)
+ContentType.MixedMaterial = (Leader[6]=p OR 006[0]=p)
+ContentType.Model = (Leader[6]=g k o r OR 006[0]=g k o r) AND (008[33]=q OR 006[16]=q)
+ContentType.MotionPicture = (Leader[6]=g k o r OR 006[0]=g k o r) AND (008[33]=m OR 006[16]=m)
+ContentType.MusicalScore = (Leader[6]=c OR 006[0]=c)
+ContentType.MusicalScoreManuscript = (Leader[6]=d OR 006[0]=d)
+ContentType.MusicRecording = (Leader[6]=j OR 006[0]=j)
+ContentType.Newspaper = (Leader[67]=as OR 006[0]=s) AND (008[21]=n OR 006[4]=n)
+ContentType.Pamphlet = (Leader[6]=p OR 006[0]=p)
+ContentType.Periodical = (Leader[67]=as OR 006[0]=s) AND (008[21]=p OR 006[4]=p)
+ContentType.PhysicalObject = (Leader[6]=r OR 006[0]=r)
+ContentType.Picture = (Leader[6]=g k o r OR 006[0]=g k o r) AND (008[33]=i OR 006[16]=i)
+ContentType.ProjectedMedium = (Leader[6]=g OR 006[0]=g)
+ContentType.Realia = (Leader[6]=g k o r OR 006[0]=g k o r) AND (008[33]=r OR 006[16]=r)
+ContentType.Serial = (Leader[67]=as OR 006[0]=s)
+ContentType.SerialComponentPart = Leader[67]=ab
+ContentType.SerialIntegratingResource = Leader[67]=ai
+ContentType.Slide = (Leader[6]=g k o r OR 006[0]=g k o r) AND (008[33]=s OR 006[16]=s)
+ContentType.SoundRecording = (Leader[6]=i OR 006[0]=i)
+ContentType.SpecialInstructionalMaterial = (Leader[6]=n OR 006[0]=n)
+ContentType.TechnicalDrawing = (Leader[6]=g k o r OR 006[0]=g k o r) AND (008[33]=l OR 006[16]=l)
+ContentType.Thesis = Field 502 Not Empty
+ContentType.Toy = (Leader[6]=g k o r OR 006[0]=g k o r) AND (008[33]=w OR 006[16]=w)
+ContentType.Transparency = (Leader[6]=g k o r OR 006[0]=g k o r) AND (008[33]=t OR 006[16]=t)
+ContentType.Video = (Leader[6]=g k o r OR 006[0]=g k o r) AND (008[33]=v OR 006[16]=v)
+ContentType.VisualKit = (Leader[6]=g k o r OR 006[0]=g k o r) AND (008[33]=b OR 006[16]=b)
+ContentType.Website = (Leader[67]=as OR 006[0]=s) AND (008[21]=w OR 006[4]=w)
+
+#MediaType
+MediaType.ActivityCard = 007[01]=ka
+MediaType.Atlas = 007[01]=ad
+MediaType.Braille = 007[01]=fb OR 007[01]=tc
+MediaType.Chart = 007[01]=kn
+MediaType.Collage = 007[01]=kc
+MediaType.ComputerCard = 007[01]=ck
+MediaType.ComputerChipCartridge = 007[01]=cb
+MediaType.ComputerDiscCartridge = 007[01]=ce
+MediaType.ComputerDisk = 007[01]=cd
+MediaType.ComputerFloppyDisk = 007[01]=cj
+MediaType.ComputerMagnetoOpticalDisc = 007[01]=cm
+MediaType.ComputerOpticalDisc = 007[01]=co
+MediaType.ComputerOpticalDiscCartridge = 007[01]=cc
+MediaType.ComputerOther = 007[0]=c 007[1]!={abcdefhjkmor}
+MediaType.ComputerTapeCartridge = 007[01]=ca
+MediaType.ComputerTapeCassette = 007[01]=cf
+MediaType.ComputerTapeReel = 007[01]=ch
+MediaType.Drawing = 007[01]=kd
+MediaType.Electronic = Computer Resource
+MediaType.Electronic245 = 245h contains [electronic resource]
+MediaType.ElectronicDirect = Computer Resource
+MediaType.FilmCartridge = 007[01]=mc
+MediaType.FilmCassette = 007[01]=mf
+MediaType.FilmOther = 007[0]=m 007[1]!={cfor}
+MediaType.FilmRoll = 007[01]=mo
+MediaType.FilmReel = 007[01]=mr
+MediaType.Filmslip = 007[01]=gd
+MediaType.Filmstrip = 007[01]=gf
+MediaType.FilmstripCartridge = 007[01]=gc
+MediaType.FilmstripRoll = 007[01]=go
+MediaType.FlashCard = 007[01]=ko
+MediaType.GlobeCelestial = 007[01]=da
+MediaType.GlobeEarthMoon = 007[01]=de
+MediaType.GlobeOther = 007[0]=d 007[1]!={abce}
+MediaType.GlobePlanetary = 007[01]=db
+MediaType.GlobeTerrestrial = 007[01]=dc
+MediaType.Icon = 007[01]=kq
+MediaType.ImageOther = 007[0]=a 007[1]!={acdefghijklnopqrsv}
+MediaType.ImagePrint = 007[01]=kj
+MediaType.Kit = 007[0]=o
+MediaType.LooseLeaf = 007[01]=td
+MediaType.Map = 007[01]=aj
+MediaType.MapDiagram = 007[01]=ag
+MediaType.MapModel = 007[01]=aq
+MediaType.MapOther = 007[0]=a 007[1]!={dgjkqrsy}
+MediaType.MapProfile = 007[01]=ak
+MediaType.MapSection = 007[01]=as
+MediaType.MapView = 007[01]=ay
+MediaType.Microfiche = 007[01]=he
+MediaType.MicroficheCassette = 007[01]=hf
+MediaType.Microfilm = 007[0]=h 007[1]!={abcdefghj}
+MediaType.MicrofilmCartridge = 007[01]=hb
+MediaType.MicrofilmCassette = 007[01]=hc
+MediaType.MicrofilmReel = 007[01]=hd
+MediaType.MicrofilmRoll = 007[01]=hj
+MediaType.MicrofilmSlip = 007[01]=hh
+MediaType.Microform = Microform
+MediaType.MicroformApetureCard = 007[01]=ha
+MediaType.Microopaque = 007[01]=hg
+MediaType.MusicalScore = 007[0]=q
+MediaType.Online = 007[01]=cr OR has 856 field with indicator 40
+MediaType.Painting = 007[01]=ke
+MediaType.Photo = 007[01]=kv
+MediaType.PhotomechanicalPrint = 007[01]=kf
+MediaType.Photonegative = 007[01]=kg
+MediaType.PhotoPrint = 007[01]=kh
+MediaType.Picture = 007[01]=ki
+MediaType.Postcard = 007[01]=kp
+MediaType.Poster = 007[01]=kk
+MediaType.Print = 007[01]=ta
+MediaType.PrintLarge = 007[01]=tb
+MediaType.ProjectedMediumOther = 007[0]=g 007[1]!={cdfost}
+MediaType.Radiograph = 007[01]=kr
+MediaType.SensorImage = 007[01]=ar OR 007[0]=r
+MediaType.Slide = 007[01]=gs
+MediaType.Software = Computer Resource
+MediaType.SoundCartridge = 007[01]=sg
+MediaType.SoundCassette = 007[01]=ss
+MediaType.SoundCylinder = 007[01]=se
+MediaType.SoundDisc = 007[01]=sd
+MediaType.SoundDiscCD = 007[01]=sd AND 007[3]=f
+MediaType.SoundDiscLP = 007[01]=sd AND 007[3]=abde
+MediaType.SoundRecordingOther = 007[0]=s 007[1]!={cdefgirqstw}
+MediaType.SoundRoll = 007[01]=sq
+MediaType.SoundTapeReel = 007[01]=st
+MediaType.SoundTrackFilm = 007[01]=si
+MediaType.SoundWireRecording = 007[01]=sw
+MediaType.StudyPrint = 007[01]=ks
+MediaType.TactileCombination = 007[01]=fc
+MediaType.TactileMoon = 007[01]=fa
+MediaType.TactileNoWritingSystem = 007[01]=fd
+MediaType.TactileOther = 007[0]=f 007[1]!={abcd}
+MediaType.TextOther = 007[0]=t 007[1]!={abcd}
+MediaType.TechnicalDrawing = 007[01]=kl
+MediaType.Transparency = 007[01]=gt
+MediaType.Video8mm = 007[01]=vf AND 007[4]=p
+MediaType.VideoBeta = 007[01]=vf AND 007[4]=a
+MediaType.VideoBetacam = 007[01]=vf AND 007[4]=i
+MediaType.VideoBetacamSP = 007[01]=vf AND 007[4]=j
+MediaType.VideoBluRay = 007[01]=vd AND 007[4]=s
+MediaType.VideoCartridge = 007[01]=vc
+MediaType.VideoCassette = 007[01]=vf
+MediaType.VideoCapacitance = 007[01]=vd AND 007[4]=h
+MediaType.VideoD2 = 007[01]=vf AND 007[4]=o
+MediaType.VideoDisc = 007[01]=vd
+MediaType.VideoDVD = 007[01]=vd AND 007[4]=v
+MediaType.VideoEIAJ = 007[01]=vr AND 007[4]=d
+MediaType.VideoHi8 = 007[01]=vf AND 007[4]=q
+MediaType.VideoLaserdisc = 007[01]=vd AND 007[4]=g
+MediaType.VideoMII = 007[01]=vf AND 007[4]=m
+MediaType.VideoOther = 007[0]=v AND (007[1]!= {cdfr}  OR  007[4]!={abcdefghijkmopqsv}) AND NOT isOnline
+MediaType.VideoOnline = 007[0]=v AND (007[1]!= {cdfr}  OR  007[4]!={abcdefghijkmopqsv}) AND isOnline
+MediaType.VideoQuadruplex = 007[01]=vr AND 007[4]=f
+MediaType.VideoReel = 007[01]=vr
+MediaType.VideoSuperVHS = 007[01]=vf AND 007[4]=k
+MediaType.VideoTypeC = 007[01]=vr AND 007[4]=e
+MediaType.VideoUMatic = 007[01]=vf AND 007[4]=c
+MediaType.VideoVHS = 007[01]=vf AND 007[4]=b
+MediaType.VideoVHS_From500 = 500 or 538 field contains VHS
+MediaType.VideoDVD_From500 = 500 or 538 field contains DVD
+MediaType.VideoLaserdisc_From500 = 500 or 538 field contains Laserdisc
+MediaType.VideoBeta_From500 = 500 or 538 field contains Beta
+MediaType.VideoVHS_From300 = 300 field contains videocassette -- 1/2
+MediaType.VideoDVD_From300 = 300 field contains videodisc -- 4 1/2
+MediaType.VideoLaserdisc_From300 = 300 field contains videodisc -- 12
+
+#FormOfItem
+FormOfItem.Microfilm = 008[23]=a OR 006[6]=a OR 008[29]=a OR 006[12]=a
+FormOfItem.Microfiche = 008[23]=b OR 006[6]=b OR 008[29]=b OR 006[12]=b
+FormOfItem.Microopaque = 008[23]=c OR 006[6]=c OR 008[29]=c OR 006[12]=c
+FormOfItem.PrintLarge = 008[23]=d OR 006[6]=d OR 008[29]=d OR 006[12]=d
+FormOfItem.Braille = 008[23]=f OR 006[6]=f OR 008[29]=f OR 006[12]=f
+FormOfItem.Online = 008[23]=o OR 006[6]=o OR 008[29]=o OR 006[12]=o
+FormOfItem.ElectronicDirect = 008[23]=q OR 006[6]=q OR 008[29]=q OR 006[12]=q
+FormOfItem.Electronic = 008[23]=s OR 006[6]=s OR 08[29]=s OR 006[12]=s
+FormOfItem.Print = 008[23]=r OR 006[6]=r OR 008[29]=r OR 006[12]=r
+
+#CombinedType
+CombinedType.EBook = Is Book AND is Online
+CombinedType.EJournal = Is Serial AND is Online
+
+#ControlType
+ControlType.Archive = Archive