gitextract_8frwjrok/ ├── README.md ├── oqa-core/ │ ├── README.md │ ├── build.sbt │ ├── models/ │ │ └── full.txt │ ├── questions.txt │ └── src/ │ └── main/ │ ├── resources/ │ │ ├── application.conf │ │ ├── edu/ │ │ │ └── knowitall/ │ │ │ ├── execution/ │ │ │ │ ├── stoplist.txt │ │ │ │ └── stopregex.txt │ │ │ ├── paraphrasing/ │ │ │ │ ├── rules/ │ │ │ │ │ └── rules.txt │ │ │ │ └── template/ │ │ │ │ └── templatesStops.txt │ │ │ ├── parsing/ │ │ │ │ └── cg/ │ │ │ │ ├── argFilters.txt │ │ │ │ ├── lexicon.txt │ │ │ │ ├── macros.txt │ │ │ │ └── relFilters.txt │ │ │ └── search/ │ │ │ └── qa/ │ │ │ ├── isa.txt │ │ │ └── tupleFeatures.txt │ │ ├── log4j.properties │ │ └── logback.xml │ └── scala/ │ └── edu/ │ └── knowitall/ │ ├── eval/ │ │ ├── Oracle.scala │ │ ├── OutputRecord.scala │ │ ├── SystemOutput.scala │ │ └── qa/ │ │ ├── QAOutputRecord.scala │ │ ├── QASystemOutput.scala │ │ └── QASystemRunner.scala │ ├── execution/ │ │ ├── AnswerFilter.scala │ │ ├── ConjunctiveQuery.scala │ │ ├── JoinPlanner.scala │ │ ├── QueryExecutor.scala │ │ ├── RelationalAlgebra.scala │ │ └── StopwordExecutor.scala │ ├── learning/ │ │ ├── CorrectnessModel.scala │ │ ├── FeatureFunction.scala │ │ ├── HiddenVariableModel.scala │ │ ├── InteractiveOracle.scala │ │ ├── LabeledDataOracle.scala │ │ ├── MemoryInteractiveOracle.scala │ │ ├── Perceptron.scala │ │ ├── QATrainer.scala │ │ ├── QueryTupleSimilarity.scala │ │ └── SparseVector.scala │ ├── lm/ │ │ └── LanguageModel.scala │ ├── model/ │ │ ├── Derivation.scala │ │ └── QaModel.scala │ ├── paraphrasing/ │ │ ├── Paraphrase.scala │ │ ├── ParaphraseDerivation.scala │ │ ├── Paraphraser.scala │ │ ├── rules/ │ │ │ ├── ParaphraseRule.scala │ │ │ └── ParaphraseRuleSet.scala │ │ └── template/ │ │ ├── LmParaphraseScorer.scala │ │ ├── ParaphraseScorer.scala │ │ ├── PmiLmParaphraseScorer.scala │ │ ├── PmiParaphraseScorer.scala │ │ ├── Template.scala │ │ ├── TemplateIndexer.scala │ │ ├── TemplateParaphraseGenerator.scala │ │ └── TemplateParaphraser.scala │ ├── parsing/ │ │ └── cg/ │ │ ├── CKY.scala │ │ ├── Categories.scala │ │ ├── CategoryPattern.scala │ │ ├── CgParser.scala │ │ ├── Combinators.scala │ │ ├── LexicalRule.scala │ │ ├── LexiconPreprocessor.scala │ │ ├── ParserFieldFilter.scala │ │ ├── PatternExtractor.scala │ │ └── SentencePattern.scala │ ├── relsyn/ │ │ ├── IsaRelSynClient.scala │ │ ├── ListRelSynClient.scala │ │ ├── RelSynClient.scala │ │ ├── RelSynRule.scala │ │ └── SolrRelSynClient.scala │ ├── search/ │ │ ├── Beam.scala │ │ ├── BeamSearch.scala │ │ ├── BestFirstSearch.scala │ │ ├── SearchAlgorithm.scala │ │ ├── SearchProblem.scala │ │ ├── Transition.scala │ │ └── qa/ │ │ ├── AbstractArgTransition.scala │ │ ├── AbstractedArgState.scala │ │ ├── AnswerState.scala │ │ ├── CgParseTransition.scala │ │ ├── DropQueryStopsTransition.scala │ │ ├── ExecutionTransition.scala │ │ ├── ParaphraseRuleTransition.scala │ │ ├── ProjectionTransition.scala │ │ ├── QaAction.scala │ │ ├── QaBeamSearch.scala │ │ ├── QaCostModel.scala │ │ ├── QaFeatures.scala │ │ ├── QaLayeredSearch.scala │ │ ├── QaSearchProblem.scala │ │ ├── QaState.scala │ │ ├── QaStateComparator.scala │ │ ├── QaStep.scala │ │ ├── QaTransitionModel.scala │ │ ├── QueryState.scala │ │ ├── QuestionState.scala │ │ ├── RelSynTransition.scala │ │ ├── TemplateTransition.scala │ │ ├── TupleFeatureTemplate.scala │ │ └── TupleState.scala │ ├── triplestore/ │ │ ├── IsaClient.scala │ │ └── TriplestoreClient.scala │ └── util/ │ ├── AlignedWordProcessor.scala │ ├── Counter.scala │ ├── DummyChunker.scala │ ├── HadoopUtils.scala │ ├── MathUtils.scala │ ├── NlpTools.scala │ ├── NlpUtils.scala │ ├── PPDBParser.scala │ ├── ResourceUtils.scala │ ├── StringUtils.scala │ ├── TimingUtils.scala │ ├── TuplePrinter.scala │ └── WikiAnswersSampler.scala ├── oqa-data/ │ ├── README.md │ ├── predictions/ │ │ ├── README.md │ │ ├── oqa-trec.txt │ │ ├── oqa-webquestions.txt │ │ ├── oqa-wikianswers.txt │ │ ├── paralex-trec.txt │ │ ├── paralex-webquestions.txt │ │ ├── paralex-wikianswers.txt │ │ ├── sempre-trec.txt │ │ ├── sempre-webquestions.txt │ │ └── sempre-wikianswers.txt │ └── src/ │ └── main/ │ └── scripts/ │ └── download-oqa-data.sh ├── oqa-lm/ │ ├── README.md │ └── src/ │ └── main/ │ └── scripts/ │ ├── build-lm.sh │ ├── install-kenlm.sh │ ├── server.py │ ├── start.sh │ └── stop.sh └── oqa-solr/ ├── README.md ├── paraphrase/ │ ├── README.txt │ ├── cloud-scripts/ │ │ ├── zkcli.bat │ │ └── zkcli.sh │ ├── contexts/ │ │ └── solr-jetty-context.xml │ ├── etc/ │ │ ├── create-solrtest.keystore.sh │ │ ├── jetty.xml │ │ ├── logging.properties │ │ ├── solrtest.keystore │ │ └── webdefault.xml │ ├── example-DIH/ │ │ ├── README.txt │ │ ├── hsqldb/ │ │ │ ├── ex.backup │ │ │ ├── ex.data │ │ │ ├── ex.log │ │ │ ├── ex.properties │ │ │ └── ex.script │ │ └── solr/ │ │ ├── db/ │ │ │ ├── conf/ │ │ │ │ ├── admin-extra.html │ │ │ │ ├── admin-extra.menu-bottom.html │ │ │ │ ├── admin-extra.menu-top.html │ │ │ │ ├── db-data-config.xml │ │ │ │ ├── elevate.xml │ │ │ │ ├── protwords.txt │ │ │ │ ├── schema.xml │ │ │ │ ├── scripts.conf │ │ │ │ ├── solrconfig.xml │ │ │ │ ├── stopwords.txt │ │ │ │ ├── synonyms.txt │ │ │ │ └── xslt/ │ │ │ │ ├── example.xsl │ │ │ │ ├── example_atom.xsl │ │ │ │ ├── example_rss.xsl │ │ │ │ └── luke.xsl │ │ │ └── lib/ │ │ │ ├── derby-10.9.1.0.jar │ │ │ └── hsqldb-1.8.0.10.jar │ │ ├── mail/ │ │ │ └── conf/ │ │ │ ├── admin-extra.html │ │ │ ├── admin-extra.menu-bottom.html │ │ │ ├── admin-extra.menu-top.html │ │ │ ├── data-config.xml │ │ │ ├── protwords.txt │ │ │ ├── schema.xml │ │ │ ├── solrconfig.xml │ │ │ ├── stopwords.txt │ │ │ └── synonyms.txt │ │ ├── rss/ │ │ │ └── conf/ │ │ │ ├── admin-extra.html │ │ │ ├── admin-extra.menu-bottom.html │ │ │ ├── admin-extra.menu-top.html │ │ │ ├── elevate.xml │ │ │ ├── protwords.txt │ │ │ ├── rss-data-config.xml │ │ │ ├── schema.xml │ │ │ ├── scripts.conf │ │ │ ├── solrconfig.xml │ │ │ ├── stopwords.txt │ │ │ └── synonyms.txt │ │ ├── solr/ │ │ │ └── conf/ │ │ │ ├── admin-extra.html │ │ │ ├── admin-extra.menu-bottom.html │ │ │ ├── admin-extra.menu-top.html │ │ │ ├── elevate.xml │ │ │ ├── protwords.txt │ │ │ ├── schema.xml │ │ │ ├── scripts.conf │ │ │ ├── solr-data-config.xml │ │ │ ├── solrconfig.xml │ │ │ ├── stopwords.txt │ │ │ └── synonyms.txt │ │ ├── solr.xml │ │ └── tika/ │ │ └── conf/ │ │ ├── admin-extra.html │ │ ├── admin-extra.menu-bottom.html │ │ ├── admin-extra.menu-top.html │ │ ├── schema.xml │ │ ├── solrconfig.xml │ │ └── tika-data-config.xml │ ├── exampledocs/ │ │ ├── books.csv │ │ ├── books.json │ │ ├── gb18030-example.xml │ │ ├── hd.xml │ │ ├── ipod_other.xml │ │ ├── ipod_video.xml │ │ ├── manufacturers.xml │ │ ├── mem.xml │ │ ├── money.xml │ │ ├── monitor.xml │ │ ├── monitor2.xml │ │ ├── mp500.xml │ │ ├── post.jar │ │ ├── post.sh │ │ ├── sd500.xml │ │ ├── solr.xml │ │ ├── test_utf8.sh │ │ ├── utf8-example.xml │ │ └── vidcard.xml │ ├── lib/ │ │ ├── ext/ │ │ │ ├── jcl-over-slf4j-1.6.6.jar │ │ │ ├── jul-to-slf4j-1.6.6.jar │ │ │ ├── log4j-1.2.16.jar │ │ │ ├── slf4j-api-1.6.6.jar │ │ │ └── slf4j-log4j12-1.6.6.jar │ │ ├── jetty-continuation-8.1.8.v20121106.jar │ │ ├── jetty-deploy-8.1.8.v20121106.jar │ │ ├── jetty-http-8.1.8.v20121106.jar │ │ ├── jetty-io-8.1.8.v20121106.jar │ │ ├── jetty-jmx-8.1.8.v20121106.jar │ │ ├── jetty-security-8.1.8.v20121106.jar │ │ ├── jetty-server-8.1.8.v20121106.jar │ │ ├── jetty-servlet-8.1.8.v20121106.jar │ │ ├── jetty-util-8.1.8.v20121106.jar │ │ ├── jetty-webapp-8.1.8.v20121106.jar │ │ ├── jetty-xml-8.1.8.v20121106.jar │ │ └── servlet-api-3.0.jar │ ├── multicore/ │ │ ├── README.txt │ │ ├── core0/ │ │ │ └── conf/ │ │ │ ├── schema.xml │ │ │ └── solrconfig.xml │ │ ├── core1/ │ │ │ └── conf/ │ │ │ ├── schema.xml │ │ │ └── solrconfig.xml │ │ ├── exampledocs/ │ │ │ ├── ipod_other.xml │ │ │ └── ipod_video.xml │ │ ├── solr.xml │ │ └── zoo.cfg │ ├── resources/ │ │ └── log4j.properties │ ├── solr/ │ │ ├── README.txt │ │ ├── paraphrase/ │ │ │ ├── README.txt │ │ │ ├── conf/ │ │ │ │ ├── admin-extra.html │ │ │ │ ├── admin-extra.menu-bottom.html │ │ │ │ ├── admin-extra.menu-top.html │ │ │ │ ├── currency.xml │ │ │ │ ├── elevate.xml │ │ │ │ ├── lang/ │ │ │ │ │ ├── contractions_ca.txt │ │ │ │ │ ├── contractions_fr.txt │ │ │ │ │ ├── contractions_ga.txt │ │ │ │ │ ├── contractions_it.txt │ │ │ │ │ ├── hyphenations_ga.txt │ │ │ │ │ ├── stemdict_nl.txt │ │ │ │ │ ├── stoptags_ja.txt │ │ │ │ │ ├── stopwords_ar.txt │ │ │ │ │ ├── stopwords_bg.txt │ │ │ │ │ ├── stopwords_ca.txt │ │ │ │ │ ├── stopwords_cz.txt │ │ │ │ │ ├── stopwords_da.txt │ │ │ │ │ ├── stopwords_de.txt │ │ │ │ │ ├── stopwords_el.txt │ │ │ │ │ ├── stopwords_en.txt │ │ │ │ │ ├── stopwords_es.txt │ │ │ │ │ ├── stopwords_eu.txt │ │ │ │ │ ├── stopwords_fa.txt │ │ │ │ │ ├── stopwords_fi.txt │ │ │ │ │ ├── stopwords_fr.txt │ │ │ │ │ ├── stopwords_ga.txt │ │ │ │ │ ├── stopwords_gl.txt │ │ │ │ │ ├── stopwords_hi.txt │ │ │ │ │ ├── stopwords_hu.txt │ │ │ │ │ ├── stopwords_hy.txt │ │ │ │ │ ├── stopwords_id.txt │ │ │ │ │ ├── stopwords_it.txt │ │ │ │ │ ├── stopwords_ja.txt │ │ │ │ │ ├── stopwords_lv.txt │ │ │ │ │ ├── stopwords_nl.txt │ │ │ │ │ ├── stopwords_no.txt │ │ │ │ │ ├── stopwords_pt.txt │ │ │ │ │ ├── stopwords_ro.txt │ │ │ │ │ ├── stopwords_ru.txt │ │ │ │ │ ├── stopwords_sv.txt │ │ │ │ │ ├── stopwords_th.txt │ │ │ │ │ ├── stopwords_tr.txt │ │ │ │ │ └── userdict_ja.txt │ │ │ │ ├── mapping-FoldToASCII.txt │ │ │ │ ├── mapping-ISOLatin1Accent.txt │ │ │ │ ├── protwords.txt │ │ │ │ ├── schema.xml │ │ │ │ ├── scripts.conf │ │ │ │ ├── solrconfig.xml │ │ │ │ ├── spellings.txt │ │ │ │ ├── stopwords.txt │ │ │ │ ├── synonyms.txt │ │ │ │ ├── update-script.js │ │ │ │ ├── velocity/ │ │ │ │ │ ├── VM_global_library.vm │ │ │ │ │ ├── browse.vm │ │ │ │ │ ├── cluster.vm │ │ │ │ │ ├── clusterResults.vm │ │ │ │ │ ├── debug.vm │ │ │ │ │ ├── did_you_mean.vm │ │ │ │ │ ├── facet_fields.vm │ │ │ │ │ ├── facet_pivot.vm │ │ │ │ │ ├── facet_queries.vm │ │ │ │ │ ├── facet_ranges.vm │ │ │ │ │ ├── facets.vm │ │ │ │ │ ├── footer.vm │ │ │ │ │ ├── head.vm │ │ │ │ │ ├── header.vm │ │ │ │ │ ├── hit.vm │ │ │ │ │ ├── hitGrouped.vm │ │ │ │ │ ├── join-doc.vm │ │ │ │ │ ├── jquery.autocomplete.css │ │ │ │ │ ├── jquery.autocomplete.js │ │ │ │ │ ├── layout.vm │ │ │ │ │ ├── main.css │ │ │ │ │ ├── product-doc.vm │ │ │ │ │ ├── query.vm │ │ │ │ │ ├── queryGroup.vm │ │ │ │ │ ├── querySpatial.vm │ │ │ │ │ ├── richtext-doc.vm │ │ │ │ │ ├── suggest.vm │ │ │ │ │ └── tabs.vm │ │ │ │ └── xslt/ │ │ │ │ ├── example.xsl │ │ │ │ ├── example_atom.xsl │ │ │ │ ├── example_rss.xsl │ │ │ │ ├── luke.xsl │ │ │ │ └── updateXml.xsl │ │ │ └── lib/ │ │ │ └── triplestore-lemmatizer-assembly-0.1.jar │ │ ├── solr.xml │ │ └── zoo.cfg │ ├── solr-webapp/ │ │ └── webapp/ │ │ ├── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── MANIFEST.MF │ │ │ └── NOTICE.txt │ │ ├── WEB-INF/ │ │ │ ├── lib/ │ │ │ │ ├── commons-cli-1.2.jar │ │ │ │ ├── commons-codec-1.7.jar │ │ │ │ ├── commons-fileupload-1.2.1.jar │ │ │ │ ├── commons-io-2.1.jar │ │ │ │ ├── commons-lang-2.6.jar │ │ │ │ ├── guava-13.0.1.jar │ │ │ │ ├── httpclient-4.2.3.jar │ │ │ │ ├── httpcore-4.2.2.jar │ │ │ │ ├── httpmime-4.2.3.jar │ │ │ │ ├── lucene-analyzers-common-4.3.0.jar │ │ │ │ ├── lucene-analyzers-kuromoji-4.3.0.jar │ │ │ │ ├── lucene-analyzers-phonetic-4.3.0.jar │ │ │ │ ├── lucene-codecs-4.3.0.jar │ │ │ │ ├── lucene-core-4.3.0.jar │ │ │ │ ├── lucene-grouping-4.3.0.jar │ │ │ │ ├── lucene-highlighter-4.3.0.jar │ │ │ │ ├── lucene-memory-4.3.0.jar │ │ │ │ ├── lucene-misc-4.3.0.jar │ │ │ │ ├── lucene-queries-4.3.0.jar │ │ │ │ ├── lucene-queryparser-4.3.0.jar │ │ │ │ ├── lucene-spatial-4.3.0.jar │ │ │ │ ├── lucene-suggest-4.3.0.jar │ │ │ │ ├── noggit-0.5.jar │ │ │ │ ├── org.restlet-2.1.1.jar │ │ │ │ ├── org.restlet.ext.servlet-2.1.1.jar │ │ │ │ ├── solr-core-4.3.0.jar │ │ │ │ ├── solr-solrj-4.3.0.jar │ │ │ │ ├── spatial4j-0.3.jar │ │ │ │ ├── wstx-asl-3.2.7.jar │ │ │ │ └── zookeeper-3.4.5.jar │ │ │ ├── web.xml │ │ │ └── weblogic.xml │ │ ├── admin.html │ │ ├── css/ │ │ │ ├── chosen.css │ │ │ └── styles/ │ │ │ ├── analysis.css │ │ │ ├── cloud.css │ │ │ ├── common.css │ │ │ ├── cores.css │ │ │ ├── dashboard.css │ │ │ ├── dataimport.css │ │ │ ├── index.css │ │ │ ├── java-properties.css │ │ │ ├── logging.css │ │ │ ├── menu.css │ │ │ ├── plugins.css │ │ │ ├── query.css │ │ │ ├── replication.css │ │ │ ├── schema-browser.css │ │ │ └── threads.css │ │ ├── img/ │ │ │ ├── ZeroClipboard.swf │ │ │ └── filetypes/ │ │ │ └── README │ │ ├── js/ │ │ │ ├── lib/ │ │ │ │ ├── ZeroClipboard.js │ │ │ │ ├── chosen.js │ │ │ │ ├── console.js │ │ │ │ ├── d3.js │ │ │ │ ├── highlight.js │ │ │ │ ├── jquery.autogrow.js │ │ │ │ ├── jquery.blockUI.js │ │ │ │ ├── jquery.cookie.js │ │ │ │ ├── jquery.form.js │ │ │ │ ├── jquery.jstree.js │ │ │ │ ├── jquery.sammy.js │ │ │ │ ├── jquery.timeago.js │ │ │ │ ├── linker.js │ │ │ │ └── order.js │ │ │ ├── main.js │ │ │ ├── require.js │ │ │ └── scripts/ │ │ │ ├── analysis.js │ │ │ ├── app.js │ │ │ ├── cloud.js │ │ │ ├── cores.js │ │ │ ├── dashboard.js │ │ │ ├── dataimport.js │ │ │ ├── file.js │ │ │ ├── index.js │ │ │ ├── java-properties.js │ │ │ ├── logging.js │ │ │ ├── ping.js │ │ │ ├── plugins.js │ │ │ ├── query.js │ │ │ ├── replication.js │ │ │ ├── schema-browser.js │ │ │ └── threads.js │ │ └── tpl/ │ │ ├── analysis.html │ │ ├── cloud.html │ │ ├── cores.html │ │ ├── dashboard.html │ │ ├── dataimport.html │ │ ├── index.html │ │ ├── logging.html │ │ ├── plugins.html │ │ ├── query.html │ │ ├── replication.html │ │ ├── schema-browser.html │ │ └── threads.html │ ├── start.jar │ └── webapps/ │ └── solr.war ├── relsyn/ │ ├── README.txt │ ├── cloud-scripts/ │ │ ├── zkcli.bat │ │ └── zkcli.sh │ ├── contexts/ │ │ └── solr-jetty-context.xml │ ├── etc/ │ │ ├── create-solrtest.keystore.sh │ │ ├── jetty.xml │ │ ├── logging.properties │ │ ├── solrtest.keystore │ │ └── webdefault.xml │ ├── example-DIH/ │ │ ├── README.txt │ │ ├── hsqldb/ │ │ │ ├── ex.backup │ │ │ ├── ex.data │ │ │ ├── ex.log │ │ │ ├── ex.properties │ │ │ └── ex.script │ │ └── solr/ │ │ ├── db/ │ │ │ ├── conf/ │ │ │ │ ├── admin-extra.html │ │ │ │ ├── admin-extra.menu-bottom.html │ │ │ │ ├── admin-extra.menu-top.html │ │ │ │ ├── db-data-config.xml │ │ │ │ ├── elevate.xml │ │ │ │ ├── protwords.txt │ │ │ │ ├── schema.xml │ │ │ │ ├── scripts.conf │ │ │ │ ├── solrconfig.xml │ │ │ │ ├── stopwords.txt │ │ │ │ ├── synonyms.txt │ │ │ │ └── xslt/ │ │ │ │ ├── example.xsl │ │ │ │ ├── example_atom.xsl │ │ │ │ ├── example_rss.xsl │ │ │ │ └── luke.xsl │ │ │ └── lib/ │ │ │ ├── derby-10.9.1.0.jar │ │ │ └── hsqldb-1.8.0.10.jar │ │ ├── mail/ │ │ │ └── conf/ │ │ │ ├── admin-extra.html │ │ │ ├── admin-extra.menu-bottom.html │ │ │ ├── admin-extra.menu-top.html │ │ │ ├── data-config.xml │ │ │ ├── protwords.txt │ │ │ ├── schema.xml │ │ │ ├── solrconfig.xml │ │ │ ├── stopwords.txt │ │ │ └── synonyms.txt │ │ ├── rss/ │ │ │ └── conf/ │ │ │ ├── admin-extra.html │ │ │ ├── admin-extra.menu-bottom.html │ │ │ ├── admin-extra.menu-top.html │ │ │ ├── elevate.xml │ │ │ ├── protwords.txt │ │ │ ├── rss-data-config.xml │ │ │ ├── schema.xml │ │ │ ├── scripts.conf │ │ │ ├── solrconfig.xml │ │ │ ├── stopwords.txt │ │ │ └── synonyms.txt │ │ ├── solr/ │ │ │ └── conf/ │ │ │ ├── admin-extra.html │ │ │ ├── admin-extra.menu-bottom.html │ │ │ ├── admin-extra.menu-top.html │ │ │ ├── elevate.xml │ │ │ ├── protwords.txt │ │ │ ├── schema.xml │ │ │ ├── scripts.conf │ │ │ ├── solr-data-config.xml │ │ │ ├── solrconfig.xml │ │ │ ├── stopwords.txt │ │ │ └── synonyms.txt │ │ ├── solr.xml │ │ └── tika/ │ │ └── conf/ │ │ ├── admin-extra.html │ │ ├── admin-extra.menu-bottom.html │ │ ├── admin-extra.menu-top.html │ │ ├── schema.xml │ │ ├── solrconfig.xml │ │ └── tika-data-config.xml │ ├── exampledocs/ │ │ ├── books.csv │ │ ├── books.json │ │ ├── gb18030-example.xml │ │ ├── hd.xml │ │ ├── ipod_other.xml │ │ ├── ipod_video.xml │ │ ├── manufacturers.xml │ │ ├── mem.xml │ │ ├── money.xml │ │ ├── monitor.xml │ │ ├── monitor2.xml │ │ ├── mp500.xml │ │ ├── post.jar │ │ ├── post.sh │ │ ├── sd500.xml │ │ ├── solr.xml │ │ ├── test_utf8.sh │ │ ├── utf8-example.xml │ │ └── vidcard.xml │ ├── lib/ │ │ ├── ext/ │ │ │ ├── jcl-over-slf4j-1.6.6.jar │ │ │ ├── jul-to-slf4j-1.6.6.jar │ │ │ ├── log4j-1.2.16.jar │ │ │ ├── slf4j-api-1.6.6.jar │ │ │ └── slf4j-log4j12-1.6.6.jar │ │ ├── jetty-continuation-8.1.8.v20121106.jar │ │ ├── jetty-deploy-8.1.8.v20121106.jar │ │ ├── jetty-http-8.1.8.v20121106.jar │ │ ├── jetty-io-8.1.8.v20121106.jar │ │ ├── jetty-jmx-8.1.8.v20121106.jar │ │ ├── jetty-security-8.1.8.v20121106.jar │ │ ├── jetty-server-8.1.8.v20121106.jar │ │ ├── jetty-servlet-8.1.8.v20121106.jar │ │ ├── jetty-util-8.1.8.v20121106.jar │ │ ├── jetty-webapp-8.1.8.v20121106.jar │ │ ├── jetty-xml-8.1.8.v20121106.jar │ │ └── servlet-api-3.0.jar │ ├── multicore/ │ │ ├── README.txt │ │ ├── core0/ │ │ │ └── conf/ │ │ │ ├── schema.xml │ │ │ └── solrconfig.xml │ │ ├── core1/ │ │ │ └── conf/ │ │ │ ├── schema.xml │ │ │ └── solrconfig.xml │ │ ├── exampledocs/ │ │ │ ├── ipod_other.xml │ │ │ └── ipod_video.xml │ │ ├── solr.xml │ │ └── zoo.cfg │ ├── resources/ │ │ └── log4j.properties │ ├── solr/ │ │ ├── README.txt │ │ ├── relsyn/ │ │ │ ├── README.txt │ │ │ ├── conf/ │ │ │ │ ├── admin-extra.html │ │ │ │ ├── admin-extra.menu-bottom.html │ │ │ │ ├── admin-extra.menu-top.html │ │ │ │ ├── currency.xml │ │ │ │ ├── elevate.xml │ │ │ │ ├── lang/ │ │ │ │ │ ├── contractions_ca.txt │ │ │ │ │ ├── contractions_fr.txt │ │ │ │ │ ├── contractions_ga.txt │ │ │ │ │ ├── contractions_it.txt │ │ │ │ │ ├── hyphenations_ga.txt │ │ │ │ │ ├── stemdict_nl.txt │ │ │ │ │ ├── stoptags_ja.txt │ │ │ │ │ ├── stopwords_ar.txt │ │ │ │ │ ├── stopwords_bg.txt │ │ │ │ │ ├── stopwords_ca.txt │ │ │ │ │ ├── stopwords_cz.txt │ │ │ │ │ ├── stopwords_da.txt │ │ │ │ │ ├── stopwords_de.txt │ │ │ │ │ ├── stopwords_el.txt │ │ │ │ │ ├── stopwords_en.txt │ │ │ │ │ ├── stopwords_es.txt │ │ │ │ │ ├── stopwords_eu.txt │ │ │ │ │ ├── stopwords_fa.txt │ │ │ │ │ ├── stopwords_fi.txt │ │ │ │ │ ├── stopwords_fr.txt │ │ │ │ │ ├── stopwords_ga.txt │ │ │ │ │ ├── stopwords_gl.txt │ │ │ │ │ ├── stopwords_hi.txt │ │ │ │ │ ├── stopwords_hu.txt │ │ │ │ │ ├── stopwords_hy.txt │ │ │ │ │ ├── stopwords_id.txt │ │ │ │ │ ├── stopwords_it.txt │ │ │ │ │ ├── stopwords_ja.txt │ │ │ │ │ ├── stopwords_lv.txt │ │ │ │ │ ├── stopwords_nl.txt │ │ │ │ │ ├── stopwords_no.txt │ │ │ │ │ ├── stopwords_pt.txt │ │ │ │ │ ├── stopwords_ro.txt │ │ │ │ │ ├── stopwords_ru.txt │ │ │ │ │ ├── stopwords_sv.txt │ │ │ │ │ ├── stopwords_th.txt │ │ │ │ │ ├── stopwords_tr.txt │ │ │ │ │ └── userdict_ja.txt │ │ │ │ ├── mapping-FoldToASCII.txt │ │ │ │ ├── mapping-ISOLatin1Accent.txt │ │ │ │ ├── protwords.txt │ │ │ │ ├── schema.xml │ │ │ │ ├── scripts.conf │ │ │ │ ├── solrconfig.xml │ │ │ │ ├── spellings.txt │ │ │ │ ├── stopwords.txt │ │ │ │ ├── synonyms.txt │ │ │ │ ├── update-script.js │ │ │ │ ├── velocity/ │ │ │ │ │ ├── VM_global_library.vm │ │ │ │ │ ├── browse.vm │ │ │ │ │ ├── cluster.vm │ │ │ │ │ ├── clusterResults.vm │ │ │ │ │ ├── debug.vm │ │ │ │ │ ├── did_you_mean.vm │ │ │ │ │ ├── facet_fields.vm │ │ │ │ │ ├── facet_pivot.vm │ │ │ │ │ ├── facet_queries.vm │ │ │ │ │ ├── facet_ranges.vm │ │ │ │ │ ├── facets.vm │ │ │ │ │ ├── footer.vm │ │ │ │ │ ├── head.vm │ │ │ │ │ ├── header.vm │ │ │ │ │ ├── hit.vm │ │ │ │ │ ├── hitGrouped.vm │ │ │ │ │ ├── join-doc.vm │ │ │ │ │ ├── jquery.autocomplete.css │ │ │ │ │ ├── jquery.autocomplete.js │ │ │ │ │ ├── layout.vm │ │ │ │ │ ├── main.css │ │ │ │ │ ├── product-doc.vm │ │ │ │ │ ├── query.vm │ │ │ │ │ ├── queryGroup.vm │ │ │ │ │ ├── querySpatial.vm │ │ │ │ │ ├── richtext-doc.vm │ │ │ │ │ ├── suggest.vm │ │ │ │ │ └── tabs.vm │ │ │ │ └── xslt/ │ │ │ │ ├── example.xsl │ │ │ │ ├── example_atom.xsl │ │ │ │ ├── example_rss.xsl │ │ │ │ ├── luke.xsl │ │ │ │ └── updateXml.xsl │ │ │ └── lib/ │ │ │ └── triplestore-lemmatizer-assembly-0.1.jar │ │ ├── solr.xml │ │ └── zoo.cfg │ ├── solr-webapp/ │ │ └── webapp/ │ │ ├── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── MANIFEST.MF │ │ │ └── NOTICE.txt │ │ ├── WEB-INF/ │ │ │ ├── lib/ │ │ │ │ ├── commons-cli-1.2.jar │ │ │ │ ├── commons-codec-1.7.jar │ │ │ │ ├── commons-fileupload-1.2.1.jar │ │ │ │ ├── commons-io-2.1.jar │ │ │ │ ├── commons-lang-2.6.jar │ │ │ │ ├── guava-13.0.1.jar │ │ │ │ ├── httpclient-4.2.3.jar │ │ │ │ ├── httpcore-4.2.2.jar │ │ │ │ ├── httpmime-4.2.3.jar │ │ │ │ ├── lucene-analyzers-common-4.3.0.jar │ │ │ │ ├── lucene-analyzers-kuromoji-4.3.0.jar │ │ │ │ ├── lucene-analyzers-phonetic-4.3.0.jar │ │ │ │ ├── lucene-codecs-4.3.0.jar │ │ │ │ ├── lucene-core-4.3.0.jar │ │ │ │ ├── lucene-grouping-4.3.0.jar │ │ │ │ ├── lucene-highlighter-4.3.0.jar │ │ │ │ ├── lucene-memory-4.3.0.jar │ │ │ │ ├── lucene-misc-4.3.0.jar │ │ │ │ ├── lucene-queries-4.3.0.jar │ │ │ │ ├── lucene-queryparser-4.3.0.jar │ │ │ │ ├── lucene-spatial-4.3.0.jar │ │ │ │ ├── lucene-suggest-4.3.0.jar │ │ │ │ ├── noggit-0.5.jar │ │ │ │ ├── org.restlet-2.1.1.jar │ │ │ │ ├── org.restlet.ext.servlet-2.1.1.jar │ │ │ │ ├── solr-core-4.3.0.jar │ │ │ │ ├── solr-solrj-4.3.0.jar │ │ │ │ ├── spatial4j-0.3.jar │ │ │ │ ├── wstx-asl-3.2.7.jar │ │ │ │ └── zookeeper-3.4.5.jar │ │ │ ├── web.xml │ │ │ └── weblogic.xml │ │ ├── admin.html │ │ ├── css/ │ │ │ ├── chosen.css │ │ │ └── styles/ │ │ │ ├── analysis.css │ │ │ ├── cloud.css │ │ │ ├── common.css │ │ │ ├── cores.css │ │ │ ├── dashboard.css │ │ │ ├── dataimport.css │ │ │ ├── index.css │ │ │ ├── java-properties.css │ │ │ ├── logging.css │ │ │ ├── menu.css │ │ │ ├── plugins.css │ │ │ ├── query.css │ │ │ ├── replication.css │ │ │ ├── schema-browser.css │ │ │ └── threads.css │ │ ├── img/ │ │ │ ├── ZeroClipboard.swf │ │ │ └── filetypes/ │ │ │ └── README │ │ ├── js/ │ │ │ ├── lib/ │ │ │ │ ├── ZeroClipboard.js │ │ │ │ ├── chosen.js │ │ │ │ ├── console.js │ │ │ │ ├── d3.js │ │ │ │ ├── highlight.js │ │ │ │ ├── jquery.autogrow.js │ │ │ │ ├── jquery.blockUI.js │ │ │ │ ├── jquery.cookie.js │ │ │ │ ├── jquery.form.js │ │ │ │ ├── jquery.jstree.js │ │ │ │ ├── jquery.sammy.js │ │ │ │ ├── jquery.timeago.js │ │ │ │ ├── linker.js │ │ │ │ └── order.js │ │ │ ├── main.js │ │ │ ├── require.js │ │ │ └── scripts/ │ │ │ ├── analysis.js │ │ │ ├── app.js │ │ │ ├── cloud.js │ │ │ ├── cores.js │ │ │ ├── dashboard.js │ │ │ ├── dataimport.js │ │ │ ├── file.js │ │ │ ├── index.js │ │ │ ├── java-properties.js │ │ │ ├── logging.js │ │ │ ├── ping.js │ │ │ ├── plugins.js │ │ │ ├── query.js │ │ │ ├── replication.js │ │ │ ├── schema-browser.js │ │ │ └── threads.js │ │ └── tpl/ │ │ ├── analysis.html │ │ ├── cloud.html │ │ ├── cores.html │ │ ├── dashboard.html │ │ ├── dataimport.html │ │ ├── index.html │ │ ├── logging.html │ │ ├── plugins.html │ │ ├── query.html │ │ ├── replication.html │ │ ├── schema-browser.html │ │ └── threads.html │ ├── start.jar │ └── webapps/ │ └── solr.war ├── src/ │ └── main/ │ └── scripts/ │ ├── create-indexes-small.sh │ ├── create-indexes.sh │ ├── index-relsyn.py │ ├── index.py │ ├── start-all.sh │ ├── start.sh │ ├── stop-all.sh │ ├── stop.sh │ └── utils.py └── triplestore/ ├── README.txt ├── cloud-scripts/ │ ├── zkcli.bat │ └── zkcli.sh ├── contexts/ │ └── solr-jetty-context.xml ├── etc/ │ ├── create-solrtest.keystore.sh │ ├── jetty.xml │ ├── logging.properties │ ├── solrtest.keystore │ └── webdefault.xml ├── example-DIH/ │ ├── README.txt │ ├── hsqldb/ │ │ ├── ex.backup │ │ ├── ex.data │ │ ├── ex.log │ │ ├── ex.properties │ │ └── ex.script │ └── solr/ │ ├── db/ │ │ ├── conf/ │ │ │ ├── admin-extra.html │ │ │ ├── admin-extra.menu-bottom.html │ │ │ ├── admin-extra.menu-top.html │ │ │ ├── db-data-config.xml │ │ │ ├── elevate.xml │ │ │ ├── protwords.txt │ │ │ ├── schema.xml │ │ │ ├── scripts.conf │ │ │ ├── solrconfig.xml │ │ │ ├── stopwords.txt │ │ │ ├── synonyms.txt │ │ │ └── xslt/ │ │ │ ├── example.xsl │ │ │ ├── example_atom.xsl │ │ │ ├── example_rss.xsl │ │ │ └── luke.xsl │ │ └── lib/ │ │ ├── derby-10.9.1.0.jar │ │ └── hsqldb-1.8.0.10.jar │ ├── mail/ │ │ └── conf/ │ │ ├── admin-extra.html │ │ ├── admin-extra.menu-bottom.html │ │ ├── admin-extra.menu-top.html │ │ ├── data-config.xml │ │ ├── protwords.txt │ │ ├── schema.xml │ │ ├── solrconfig.xml │ │ ├── stopwords.txt │ │ └── synonyms.txt │ ├── rss/ │ │ └── conf/ │ │ ├── admin-extra.html │ │ ├── admin-extra.menu-bottom.html │ │ ├── admin-extra.menu-top.html │ │ ├── elevate.xml │ │ ├── protwords.txt │ │ ├── rss-data-config.xml │ │ ├── schema.xml │ │ ├── scripts.conf │ │ ├── solrconfig.xml │ │ ├── stopwords.txt │ │ └── synonyms.txt │ ├── solr/ │ │ └── conf/ │ │ ├── admin-extra.html │ │ ├── admin-extra.menu-bottom.html │ │ ├── admin-extra.menu-top.html │ │ ├── elevate.xml │ │ ├── protwords.txt │ │ ├── schema.xml │ │ ├── scripts.conf │ │ ├── solr-data-config.xml │ │ ├── solrconfig.xml │ │ ├── stopwords.txt │ │ └── synonyms.txt │ ├── solr.xml │ └── tika/ │ └── conf/ │ ├── admin-extra.html │ ├── admin-extra.menu-bottom.html │ ├── admin-extra.menu-top.html │ ├── schema.xml │ ├── solrconfig.xml │ └── tika-data-config.xml ├── exampledocs/ │ ├── books.csv │ ├── books.json │ ├── gb18030-example.xml │ ├── hd.xml │ ├── ipod_other.xml │ ├── ipod_video.xml │ ├── manufacturers.xml │ ├── mem.xml │ ├── money.xml │ ├── monitor.xml │ ├── monitor2.xml │ ├── mp500.xml │ ├── post.jar │ ├── post.sh │ ├── sd500.xml │ ├── solr.xml │ ├── test_utf8.sh │ ├── utf8-example.xml │ └── vidcard.xml ├── lib/ │ ├── ext/ │ │ ├── jcl-over-slf4j-1.6.6.jar │ │ ├── jul-to-slf4j-1.6.6.jar │ │ ├── log4j-1.2.16.jar │ │ ├── slf4j-api-1.6.6.jar │ │ └── slf4j-log4j12-1.6.6.jar │ ├── jetty-continuation-8.1.8.v20121106.jar │ ├── jetty-deploy-8.1.8.v20121106.jar │ ├── jetty-http-8.1.8.v20121106.jar │ ├── jetty-io-8.1.8.v20121106.jar │ ├── jetty-jmx-8.1.8.v20121106.jar │ ├── jetty-security-8.1.8.v20121106.jar │ ├── jetty-server-8.1.8.v20121106.jar │ ├── jetty-servlet-8.1.8.v20121106.jar │ ├── jetty-util-8.1.8.v20121106.jar │ ├── jetty-webapp-8.1.8.v20121106.jar │ ├── jetty-xml-8.1.8.v20121106.jar │ └── servlet-api-3.0.jar ├── multicore/ │ ├── README.txt │ ├── core0/ │ │ └── conf/ │ │ ├── schema.xml │ │ └── solrconfig.xml │ ├── core1/ │ │ └── conf/ │ │ ├── schema.xml │ │ └── solrconfig.xml │ ├── exampledocs/ │ │ ├── ipod_other.xml │ │ └── ipod_video.xml │ ├── solr.xml │ └── zoo.cfg ├── resources/ │ └── log4j.properties ├── solr/ │ ├── README.txt │ ├── solr.xml │ ├── triplestore/ │ │ ├── README.txt │ │ ├── conf/ │ │ │ ├── admin-extra.html │ │ │ ├── admin-extra.menu-bottom.html │ │ │ ├── admin-extra.menu-top.html │ │ │ ├── currency.xml │ │ │ ├── elevate.xml │ │ │ ├── lang/ │ │ │ │ ├── contractions_ca.txt │ │ │ │ ├── contractions_fr.txt │ │ │ │ ├── contractions_ga.txt │ │ │ │ ├── contractions_it.txt │ │ │ │ ├── hyphenations_ga.txt │ │ │ │ ├── stemdict_nl.txt │ │ │ │ ├── stoptags_ja.txt │ │ │ │ ├── stopwords_ar.txt │ │ │ │ ├── stopwords_bg.txt │ │ │ │ ├── stopwords_ca.txt │ │ │ │ ├── stopwords_cz.txt │ │ │ │ ├── stopwords_da.txt │ │ │ │ ├── stopwords_de.txt │ │ │ │ ├── stopwords_el.txt │ │ │ │ ├── stopwords_en.txt │ │ │ │ ├── stopwords_es.txt │ │ │ │ ├── stopwords_eu.txt │ │ │ │ ├── stopwords_fa.txt │ │ │ │ ├── stopwords_fi.txt │ │ │ │ ├── stopwords_fr.txt │ │ │ │ ├── stopwords_ga.txt │ │ │ │ ├── stopwords_gl.txt │ │ │ │ ├── stopwords_hi.txt │ │ │ │ ├── stopwords_hu.txt │ │ │ │ ├── stopwords_hy.txt │ │ │ │ ├── stopwords_id.txt │ │ │ │ ├── stopwords_it.txt │ │ │ │ ├── stopwords_ja.txt │ │ │ │ ├── stopwords_lv.txt │ │ │ │ ├── stopwords_nl.txt │ │ │ │ ├── stopwords_no.txt │ │ │ │ ├── stopwords_pt.txt │ │ │ │ ├── stopwords_ro.txt │ │ │ │ ├── stopwords_ru.txt │ │ │ │ ├── stopwords_sv.txt │ │ │ │ ├── stopwords_th.txt │ │ │ │ ├── stopwords_tr.txt │ │ │ │ └── userdict_ja.txt │ │ │ ├── mapping-FoldToASCII.txt │ │ │ ├── mapping-ISOLatin1Accent.txt │ │ │ ├── protwords.txt │ │ │ ├── schema.xml │ │ │ ├── scripts.conf │ │ │ ├── solrconfig.xml │ │ │ ├── spellings.txt │ │ │ ├── stopwords.txt │ │ │ ├── synonyms.txt │ │ │ ├── update-script.js │ │ │ ├── velocity/ │ │ │ │ ├── VM_global_library.vm │ │ │ │ ├── browse.vm │ │ │ │ ├── cluster.vm │ │ │ │ ├── clusterResults.vm │ │ │ │ ├── debug.vm │ │ │ │ ├── did_you_mean.vm │ │ │ │ ├── facet_fields.vm │ │ │ │ ├── facet_pivot.vm │ │ │ │ ├── facet_queries.vm │ │ │ │ ├── facet_ranges.vm │ │ │ │ ├── facets.vm │ │ │ │ ├── footer.vm │ │ │ │ ├── head.vm │ │ │ │ ├── header.vm │ │ │ │ ├── hit.vm │ │ │ │ ├── hitGrouped.vm │ │ │ │ ├── join-doc.vm │ │ │ │ ├── jquery.autocomplete.css │ │ │ │ ├── jquery.autocomplete.js │ │ │ │ ├── layout.vm │ │ │ │ ├── main.css │ │ │ │ ├── product-doc.vm │ │ │ │ ├── query.vm │ │ │ │ ├── queryGroup.vm │ │ │ │ ├── querySpatial.vm │ │ │ │ ├── richtext-doc.vm │ │ │ │ ├── suggest.vm │ │ │ │ └── tabs.vm │ │ │ └── xslt/ │ │ │ ├── example.xsl │ │ │ ├── example_atom.xsl │ │ │ ├── example_rss.xsl │ │ │ ├── luke.xsl │ │ │ └── updateXml.xsl │ │ └── lib/ │ │ └── triplestore-lemmatizer-assembly-0.1.jar │ └── zoo.cfg ├── solr-webapp/ │ └── webapp/ │ ├── META-INF/ │ │ ├── LICENSE.txt │ │ ├── MANIFEST.MF │ │ └── NOTICE.txt │ ├── WEB-INF/ │ │ ├── lib/ │ │ │ ├── commons-cli-1.2.jar │ │ │ ├── commons-codec-1.7.jar │ │ │ ├── commons-fileupload-1.2.1.jar │ │ │ ├── commons-io-2.1.jar │ │ │ ├── commons-lang-2.6.jar │ │ │ ├── guava-13.0.1.jar │ │ │ ├── httpclient-4.2.3.jar │ │ │ ├── httpcore-4.2.2.jar │ │ │ ├── httpmime-4.2.3.jar │ │ │ ├── lucene-analyzers-common-4.3.0.jar │ │ │ ├── lucene-analyzers-kuromoji-4.3.0.jar │ │ │ ├── lucene-analyzers-phonetic-4.3.0.jar │ │ │ ├── lucene-codecs-4.3.0.jar │ │ │ ├── lucene-core-4.3.0.jar │ │ │ ├── lucene-grouping-4.3.0.jar │ │ │ ├── lucene-highlighter-4.3.0.jar │ │ │ ├── lucene-memory-4.3.0.jar │ │ │ ├── lucene-misc-4.3.0.jar │ │ │ ├── lucene-queries-4.3.0.jar │ │ │ ├── lucene-queryparser-4.3.0.jar │ │ │ ├── lucene-spatial-4.3.0.jar │ │ │ ├── lucene-suggest-4.3.0.jar │ │ │ ├── noggit-0.5.jar │ │ │ ├── org.restlet-2.1.1.jar │ │ │ ├── org.restlet.ext.servlet-2.1.1.jar │ │ │ ├── solr-core-4.3.0.jar │ │ │ ├── solr-solrj-4.3.0.jar │ │ │ ├── spatial4j-0.3.jar │ │ │ ├── wstx-asl-3.2.7.jar │ │ │ └── zookeeper-3.4.5.jar │ │ ├── web.xml │ │ └── weblogic.xml │ ├── admin.html │ ├── css/ │ │ ├── chosen.css │ │ └── styles/ │ │ ├── analysis.css │ │ ├── cloud.css │ │ ├── common.css │ │ ├── cores.css │ │ ├── dashboard.css │ │ ├── dataimport.css │ │ ├── index.css │ │ ├── java-properties.css │ │ ├── logging.css │ │ ├── menu.css │ │ ├── plugins.css │ │ ├── query.css │ │ ├── replication.css │ │ ├── schema-browser.css │ │ └── threads.css │ ├── img/ │ │ ├── ZeroClipboard.swf │ │ └── filetypes/ │ │ └── README │ ├── js/ │ │ ├── lib/ │ │ │ ├── ZeroClipboard.js │ │ │ ├── chosen.js │ │ │ ├── console.js │ │ │ ├── d3.js │ │ │ ├── highlight.js │ │ │ ├── jquery.autogrow.js │ │ │ ├── jquery.blockUI.js │ │ │ ├── jquery.cookie.js │ │ │ ├── jquery.form.js │ │ │ ├── jquery.jstree.js │ │ │ ├── jquery.sammy.js │ │ │ ├── jquery.timeago.js │ │ │ ├── linker.js │ │ │ └── order.js │ │ ├── main.js │ │ ├── require.js │ │ └── scripts/ │ │ ├── analysis.js │ │ ├── app.js │ │ ├── cloud.js │ │ ├── cores.js │ │ ├── dashboard.js │ │ ├── dataimport.js │ │ ├── file.js │ │ ├── index.js │ │ ├── java-properties.js │ │ ├── logging.js │ │ ├── ping.js │ │ ├── plugins.js │ │ ├── query.js │ │ ├── replication.js │ │ ├── schema-browser.js │ │ └── threads.js │ └── tpl/ │ ├── analysis.html │ ├── cloud.html │ ├── cores.html │ ├── dashboard.html │ ├── dataimport.html │ ├── index.html │ ├── logging.html │ ├── plugins.html │ ├── query.html │ ├── replication.html │ ├── schema-browser.html │ └── threads.html ├── start.jar └── webapps/ └── solr.war