diff --git a/components/report_cards/chemical_probe/Summary.vue b/components/report_cards/chemical_probe/Summary.vue
index fc42f69ad61285fb7bd6978c1a79f1afd79090cf..801cc73d05963f9c095dcaffb40ed0aa07e6d380 100644
--- a/components/report_cards/chemical_probe/Summary.vue
+++ b/components/report_cards/chemical_probe/Summary.vue
@@ -38,6 +38,20 @@
                   <v-divider />
                 </div>
               </v-col>
+              <v-col cols="12">
+                <div>
+                  <b>Suitable for in vivo use:</b>
+                  {{
+                    getPropertyPalue(
+                      probeSummaryData,
+                      '_metadata.eubopen.in_vivo_use'
+                    )
+                      ? 'Yes'
+                      : 'No'
+                  }}
+                  <v-divider />
+                </div>
+              </v-col>
               <v-col cols="12">
                 <b>Download probe data package:</b>
                 <br /><br />
diff --git a/static/.well-known/acme-challenge/n0jyH4VzWPl79xddtOfP0AuGHgUaNOHIIDeI-8poDQo b/static/.well-known/acme-challenge/n0jyH4VzWPl79xddtOfP0AuGHgUaNOHIIDeI-8poDQo
new file mode 100644
index 0000000000000000000000000000000000000000..41955c988ba9d18275f3052263733bf06ca96f5a
--- /dev/null
+++ b/static/.well-known/acme-challenge/n0jyH4VzWPl79xddtOfP0AuGHgUaNOHIIDeI-8poDQo
@@ -0,0 +1 @@
+n0jyH4VzWPl79xddtOfP0AuGHgUaNOHIIDeI-8poDQo.TCI31DbLY_twuB55RoL-ORb15Dc11BbvqAb9vjc9D4I
\ No newline at end of file
diff --git a/store/probe/probeSummary.js b/store/probe/probeSummary.js
index 5e9e1a34d008346a193b14188c47433802406424..d888f844febb8e8419af61581d337250276915f6 100644
--- a/store/probe/probeSummary.js
+++ b/store/probe/probeSummary.js
@@ -19,7 +19,11 @@ export const mutations = {
 
 export const actions = {
   loadData({ commit, state, dispatch }, itemID) {
-    const docSource = ['pref_name', '_metadata.compound_generated.image_file']
+    const docSource = [
+      'pref_name',
+      '_metadata.compound_generated.image_file',
+      '_metadata.eubopen.in_vivo_use',
+    ]
     const entityID = EntityNames.EubopenCompound.entityID
     const indexName = IndexNames.getIndexNameFromEntityID(entityID)